diff --git a/apps/web/src/app/decks/_components/deck-toolbar/deck-toolbar-base-actions.tsx b/apps/web/src/app/decks/_components/deck-toolbar/deck-toolbar-base-actions.tsx index 1254526f14..dc9b468973 100644 --- a/apps/web/src/app/decks/_components/deck-toolbar/deck-toolbar-base-actions.tsx +++ b/apps/web/src/app/decks/_components/deck-toolbar/deck-toolbar-base-actions.tsx @@ -21,7 +21,7 @@ export const DeckToolbarBaseActions = ({ setShowPurchaseDialog }: Props) => { const { activeUser } = useActiveAccount(); const toggleUIProp = useGlobalStore((s) => s.toggleUiProp); - const { data: unread } = useQuery( + const { data: unread = 0 } = useQuery( getNotificationsUnreadCountQueryOptions( activeUser?.username, getAccessToken(activeUser?.username ?? "") diff --git a/apps/web/src/features/shared/navbar/navbar-notifications-button.tsx b/apps/web/src/features/shared/navbar/navbar-notifications-button.tsx index 0067603e86..13c36049f8 100644 --- a/apps/web/src/features/shared/navbar/navbar-notifications-button.tsx +++ b/apps/web/src/features/shared/navbar/navbar-notifications-button.tsx @@ -18,12 +18,13 @@ export function NavbarNotificationsButton({ onClick }: { onClick?: () => void }) const toggleUiProp = useGlobalStore((state) => state.toggleUiProp); const globalNotifications = useGlobalStore((state) => state.globalNotifications); - const { data: unread } = useQuery( + const { data, isPlaceholderData } = useQuery( getNotificationsUnreadCountQueryOptions( activeUser?.username, getAccessToken(activeUser?.username ?? "") ) ); + const unread = data ?? 0; const [ringing, setRinging] = useState(false); // Ref guard: remembers the first unread count seen after mount so the bell @@ -31,15 +32,17 @@ export function NavbarNotificationsButton({ onClick }: { onClick?: () => void }) const prevUnreadRef = useRef(undefined); useEffect(() => { - if (typeof unread !== "number") { + // Only counts from the server: the 0 shown while the first request runs is not a + // reading, and recording it would ring the bell as soon as the real count arrives. + if (isPlaceholderData || typeof data !== "number") { return; } const prev = prevUnreadRef.current; - prevUnreadRef.current = unread; - if (prev !== undefined && unread > prev) { + prevUnreadRef.current = data; + if (prev !== undefined && data > prev) { setRinging(true); } - }, [unread]); + }, [data, isPlaceholderData]); return ( ({ fetch: vi.fn<() => Promise>() })); +vi.mock("@ecency/sdk", async (importOriginal) => ({ + ...(await importOriginal()), + getNotificationsUnreadCountQueryOptions: (username?: string) => ({ + queryKey: ["notifications", "unread", username], + queryFn: () => unread.fetch(), + placeholderData: 0 + }) +})); +vi.mock("@/core/hooks", () => ({ + useActiveAccount: () => ({ activeUser: { username: "tester" } }) +})); + +import { NavbarNotificationsButton } from "@/features/shared/navbar/navbar-notifications-button"; + +const UNREAD_KEY = ["notifications", "unread", "tester"]; + +function deferred() { + let resolve: (value: T) => void = () => undefined; + const promise = new Promise((r) => { + resolve = r; + }); + return { promise, resolve }; +} + +const bell = (name: string) => screen.getByRole("button", { name }); +const isRinging = (button: HTMLElement) => button.querySelector(".animate-bell-ring") !== null; + +describe("NavbarNotificationsButton", () => { + beforeEach(() => { + unread.fetch.mockReset(); + }); + + it("does not ring for the count loaded with the page", async () => { + const first = deferred(); + unread.fetch.mockReturnValue(first.promise); + + renderWithQueryClient(); + // The placeholder 0 is on screen while the request runs: no badge. + expect(bell("user-nav.notifications")).toBeInTheDocument(); + + await act(async () => first.resolve(5)); + + const button = await waitFor(() => bell("user-nav.notifications-unread")); + expect(screen.getByText("5")).toBeInTheDocument(); + expect(isRinging(button)).toBe(false); + }); + + it("rings when the count rises while the page is open", async () => { + unread.fetch.mockResolvedValue(5); + const { queryClient } = renderWithQueryClient(); + const button = await waitFor(() => bell("user-nav.notifications-unread")); + expect(isRinging(button)).toBe(false); + + act(() => { + queryClient.setQueryData(UNREAD_KEY, 6); + }); + + expect(await screen.findByText("6")).toBeInTheDocument(); + expect(isRinging(bell("user-nav.notifications-unread"))).toBe(true); + }); + + it("shows no badge before the first count arrives", () => { + unread.fetch.mockReturnValue(deferred().promise); + renderWithQueryClient(); + + expect(bell("user-nav.notifications")).toBeInTheDocument(); + expect(screen.queryByText("0")).not.toBeInTheDocument(); + }); +}); diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 346226fd1a..9d1c9f4ff8 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.4.11 + +### Patch Changes + +- fix(sdk): unread notification count uses a placeholder, not initialData (#1852) + ## 2.4.10 ### Patch Changes diff --git a/packages/sdk/dist/browser/chunk-6EHAT3L6.js b/packages/sdk/dist/browser/chunk-6EHAT3L6.js deleted file mode 100644 index 48aceaceab..0000000000 --- a/packages/sdk/dist/browser/chunk-6EHAT3L6.js +++ /dev/null @@ -1,2 +0,0 @@ -import {c}from'./chunk-PS3MSD25.js';import {a}from'./chunk-6SASR6MC.js';import {queryOptions}from'@tanstack/react-query';function p(t,n){return queryOptions({queryKey:a.notifications.unreadCount(t),queryFn:async()=>n?(await(await fetch(`${c.privateApiHost}/private-api/notifications/unread`,{method:"POST",body:JSON.stringify({code:n}),headers:{"Content-Type":"application/json"}})).json()).count:0,enabled:!!t&&!!n,initialData:0,refetchInterval:6e4})}export{p as a};//# sourceMappingURL=chunk-6EHAT3L6.js.map -//# sourceMappingURL=chunk-6EHAT3L6.js.map \ No newline at end of file diff --git a/packages/sdk/dist/browser/chunk-6EHAT3L6.js.map b/packages/sdk/dist/browser/chunk-6EHAT3L6.js.map deleted file mode 100644 index 4688f4fd70..0000000000 --- a/packages/sdk/dist/browser/chunk-6EHAT3L6.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../src/modules/notifications/queries/get-notifications-unread-count-query-options.ts"],"names":["getNotificationsUnreadCountQueryOptions","activeUsername","code","queryOptions","QueryKeys","CONFIG"],"mappings":"yHAGO,SAASA,CAAAA,CACdC,CAAAA,CACAC,CAAAA,CACA,CACA,OAAOC,YAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,aAAA,CAAc,WAAA,CAAYH,CAAc,CAAA,CAC5D,OAAA,CAAS,SACFC,CAAAA,CAAAA,CAaS,KAAA,CAVG,MAAM,KAAA,CACrB,CAAA,EAAGG,CAAAA,CAAO,cAAc,CAAA,iCAAA,CAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAAH,CAAK,CAAC,CAAA,CAC7B,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,CAAA,EAC6B,IAAA,EAAK,EACtB,KAAA,CAbH,CAAA,CAeX,OAAA,CAAS,CAAC,CAACD,CAAAA,EAAkB,CAAC,CAACC,CAAAA,CAC/B,WAAA,CAAa,CAAA,CACb,eAAA,CAAiB,GACnB,CAAC,CACH","file":"chunk-6EHAT3L6.js","sourcesContent":["import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getNotificationsUnreadCountQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.unreadCount(activeUsername),\n queryFn: async () => {\n if (!code) {\n return 0;\n }\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/notifications/unread`,\n {\n method: \"POST\",\n body: JSON.stringify({ code }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n const data = (await response.json()) as { count: number };\n return data.count;\n },\n enabled: !!activeUsername && !!code,\n initialData: 0,\n refetchInterval: 60000,\n });\n}\n"]} \ No newline at end of file diff --git a/packages/sdk/dist/browser/chunk-GOO7V6OB.js b/packages/sdk/dist/browser/chunk-GOO7V6OB.js new file mode 100644 index 0000000000..9639a6aa67 --- /dev/null +++ b/packages/sdk/dist/browser/chunk-GOO7V6OB.js @@ -0,0 +1,2 @@ +import {c}from'./chunk-PS3MSD25.js';import {a}from'./chunk-6SASR6MC.js';import {queryOptions}from'@tanstack/react-query';function p(t,n){return queryOptions({queryKey:a.notifications.unreadCount(t),queryFn:async()=>{if(!n)throw new Error("Missing access token");return (await(await fetch(`${c.privateApiHost}/private-api/notifications/unread`,{method:"POST",body:JSON.stringify({code:n}),headers:{"Content-Type":"application/json"}})).json()).count},enabled:!!t&&!!n,placeholderData:0,refetchInterval:6e4})}export{p as a};//# sourceMappingURL=chunk-GOO7V6OB.js.map +//# sourceMappingURL=chunk-GOO7V6OB.js.map \ No newline at end of file diff --git a/packages/sdk/dist/browser/chunk-GOO7V6OB.js.map b/packages/sdk/dist/browser/chunk-GOO7V6OB.js.map new file mode 100644 index 0000000000..338412c706 --- /dev/null +++ b/packages/sdk/dist/browser/chunk-GOO7V6OB.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../src/modules/notifications/queries/get-notifications-unread-count-query-options.ts"],"names":["getNotificationsUnreadCountQueryOptions","activeUsername","code","queryOptions","QueryKeys","CONFIG"],"mappings":"yHAGO,SAASA,EACdC,CAAAA,CACAC,CAAAA,CACA,CACA,OAAOC,YAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,cAAc,WAAA,CAAYH,CAAc,CAAA,CAC5D,OAAA,CAAS,SAAY,CAGnB,GAAI,CAACC,EACH,MAAM,IAAI,KAAA,CAAM,sBAAsB,EAaxC,OAAA,CADc,KAAA,CAVG,MAAM,KAAA,CACrB,GAAGG,CAAAA,CAAO,cAAc,CAAA,iCAAA,CAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,IAAA,CAAM,IAAA,CAAK,UAAU,CAAE,IAAA,CAAAH,CAAK,CAAC,CAAA,CAC7B,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,CAAA,EAC6B,IAAA,EAAK,EACtB,KACd,CAAA,CACA,OAAA,CAAS,CAAC,CAACD,CAAAA,EAAkB,CAAC,CAACC,EAK/B,eAAA,CAAiB,CAAA,CACjB,eAAA,CAAiB,GACnB,CAAC,CACH","file":"chunk-GOO7V6OB.js","sourcesContent":["import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getNotificationsUnreadCountQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.unreadCount(activeUsername),\n queryFn: async () => {\n // fetchQuery and refetch() ignore `enabled`, so a synthetic 0 returned here would be\n // cached as a real count. Same as the settings query: no code, no result.\n if (!code) {\n throw new Error(\"Missing access token\");\n }\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/notifications/unread`,\n {\n method: \"POST\",\n body: JSON.stringify({ code }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n const data = (await response.json()) as { count: number };\n return data.count;\n },\n enabled: !!activeUsername && !!code,\n // Placeholder, not initialData: initial data is stamped as fetched at creation,\n // so under a non-zero staleTime it counted as a fresh 0. fetchQuery returned it\n // without a request and observers skipped the fetch on mount until the next\n // refetchInterval. A placeholder still gives observers a number while loading.\n placeholderData: 0,\n refetchInterval: 60000,\n });\n}\n"]} \ No newline at end of file diff --git a/packages/sdk/dist/browser/index.d.ts b/packages/sdk/dist/browser/index.d.ts index 08b46ee763..ad743c89cd 100644 --- a/packages/sdk/dist/browser/index.d.ts +++ b/packages/sdk/dist/browser/index.d.ts @@ -6848,9 +6848,8 @@ declare function getCommunityPermissions({ communityType, userRole, subscribed, isModerator: boolean; }; -declare function getNotificationsUnreadCountQueryOptions(activeUsername: string | undefined, code: string | undefined): Omit<_tanstack_react_query.UseQueryOptions, "queryFn"> & { - initialData: number | (() => number); - queryFn?: _tanstack_react_query.QueryFunction | undefined; +declare function getNotificationsUnreadCountQueryOptions(activeUsername: string | undefined, code: string | undefined): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions, "queryFn"> & { + queryFn?: _tanstack_react_query.QueryFunction | undefined; } & { queryKey: (string | undefined)[] & { [dataTagSymbol]: number; diff --git a/packages/sdk/dist/browser/index.js b/packages/sdk/dist/browser/index.js index 4de866a4b3..66a5e463fe 100644 --- a/packages/sdk/dist/browser/index.js +++ b/packages/sdk/dist/browser/index.js @@ -1,2 +1,2 @@ -import'./chunk-L3YUYHOR.js';import'./chunk-K5E3ZZSJ.js';export{b as applySupportSettingsUpdate,a as updateSupportSettingsRequest,c as useUpdateSupportSettings}from'./chunk-IXNFP46B.js';import'./chunk-SXT7LI2W.js';export{b as getSupportSettingsQueryOptions,a as getSupportSettingsRequest}from'./chunk-IFTJDAPT.js';import'./chunk-DFUV45ZM.js';import'./chunk-JNT53INW.js';import'./chunk-ZO3UVKBD.js';export{a as getReceivedVestingSharesQueryOptions}from'./chunk-NPFWZGLZ.js';export{a as getRecurrentTransfersQueryOptions}from'./chunk-KG2QG2RD.js';export{a as getSavingsWithdrawFromQueryOptions}from'./chunk-LNTVY6MW.js';export{a as getVestingDelegationExpirationsQueryOptions}from'./chunk-PFOLNIKC.js';export{a as getVestingDelegationsQueryOptions}from'./chunk-5WUL6DB5.js';export{a as getWithdrawRoutesQueryOptions}from'./chunk-2DOZ3WKY.js';export{a as getHiveAssetWithdrawalRoutesQueryOptions}from'./chunk-AKJAHOVF.js';export{a as getHivePowerAssetTransactionsQueryOptions}from'./chunk-ER3MOLHM.js';export{a as getHivePowerDelegatesInfiniteQueryOptions}from'./chunk-ADN73NKF.js';export{a as getHivePowerDelegatingsQueryOptions}from'./chunk-L7GUKTWI.js';import'./chunk-Z6HCXX2D.js';export{a as getIncomingRcQueryOptions}from'./chunk-BY5SUSZA.js';export{a as getOpenOrdersQueryOptions}from'./chunk-NYBTNXST.js';export{a as getOutgoingRcDelegationsInfiniteQueryOptions}from'./chunk-ARXWFZCA.js';export{a as getAccountWalletAssetInfoQueryOptions}from'./chunk-WTK6BEGL.js';export{a as getPortfolioQueryOptions}from'./chunk-6OUG7BX7.js';export{a as getHivePowerAssetGeneralInfoQueryOptions}from'./chunk-ZQGFLWZL.js';export{a as getCollateralizedConversionRequestsQueryOptions}from'./chunk-UBHX5PWX.js';export{a as getConversionRequestsQueryOptions}from'./chunk-PKR72FDR.js';export{a as getHbdAssetGeneralInfoQueryOptions}from'./chunk-UL5MMRZR.js';export{a as getHbdAssetTransactionsQueryOptions}from'./chunk-4AD47DNH.js';export{a as getHiveAssetMetricQueryOptions}from'./chunk-LUMK7JH2.js';export{b as collectRequestedOperations,e as getHiveAssetTransactionsQueryOptions,c as getNextAccountHistoryPageParam,d as resolveAccountHistoryLimit,a as resolveHiveOperationFilters}from'./chunk-VQBJTW2I.js';export{a as getAccountDelegationsQueryOptions}from'./chunk-5RCSJKZ2.js';import'./chunk-CBY2JRNI.js';export{b as HIVE_OPERATION_NAME_BY_ID,a as HIVE_OPERATION_ORDERS}from'./chunk-WNPCOEEP.js';import'./chunk-IGHKYWMB.js';export{a as useTransferToSavings}from'./chunk-HWIRIHKN.js';export{a as useTransferToVesting}from'./chunk-ATIAH325.js';export{a as useTransfer}from'./chunk-RL4JUSOJ.js';export{a as useUndelegateEngineToken}from'./chunk-PHT5D5SJ.js';export{a as useUnstakeEngineToken}from'./chunk-XTO5EJQD.js';export{a as useWalletOperation}from'./chunk-APWH3BXY.js';import'./chunk-YRORZ7KC.js';import'./chunk-5V3SKJB4.js';import'./chunk-DU24I6PR.js';import'./chunk-4QAR4OZ6.js';import'./chunk-RWAOU3IW.js';import'./chunk-SS7WWOCL.js';import'./chunk-4VGOYRDD.js';import'./chunk-RZG34OLG.js';import'./chunk-D6A2HPDV.js';import'./chunk-SSQDUUSP.js';import'./chunk-IGAI6UM7.js';import'./chunk-HMGBVXPP.js';import'./chunk-AFLY3RSO.js';export{a as AssetOperation}from'./chunk-E3QPW73W.js';import'./chunk-LBI6JJ4F.js';import'./chunk-3JUDV3OG.js';import'./chunk-FGS357UW.js';import'./chunk-3T2TKEJV.js';import'./chunk-ZNBLDNPB.js';import'./chunk-QWZJ237K.js';export{a as useWithdrawVesting}from'./chunk-6F2VYD2R.js';export{a as useDelegateRc}from'./chunk-TOHDRQNB.js';export{a as useDelegateVestingShares}from'./chunk-7JDGWR7C.js';export{a as useEngineMarketOrder}from'./chunk-PVLU32MM.js';export{a as useSetWithdrawVestingRoute}from'./chunk-J4O4T7WU.js';export{a as useStakeEngineToken}from'./chunk-VI7KWZ6P.js';export{a as useTransferEngineToken}from'./chunk-FLPYBEQG.js';export{a as useTransferFromSavings}from'./chunk-2FV2UQMO.js';export{a as useTransferPoint}from'./chunk-Y6KHF5OF.js';export{a as useClaimEngineRewards}from'./chunk-DL2SPG4K.js';export{a as useClaimInterest}from'./chunk-B4JO4DHQ.js';export{a as useClaimRewards}from'./chunk-2OWIF2MC.js';export{a as useConvert}from'./chunk-DIFKKN3B.js';export{a as useDelegateEngineToken}from'./chunk-BXQBFNK4.js';export{a as HIVE_ACCOUNT_OPERATION_GROUPS}from'./chunk-C5OFPWDU.js';export{a as HIVE_OPERATION_LIST}from'./chunk-SKMR2A6V.js';import'./chunk-DAYFD3PK.js';import'./chunk-WJPIEG7L.js';export{c as getWitnessVoterCountQueryOptions,b as getWitnessVotersPageQueryOptions,a as getWitnessesInfiniteQueryOptions}from'./chunk-OOSWEX2A.js';import'./chunk-PY4WHRTI.js';import'./chunk-PALSESGC.js';import'./chunk-6GIFRNG7.js';export{a as useWitnessProxy}from'./chunk-SJIBCAXW.js';export{a as useWitnessVote}from'./chunk-TPT5OY3X.js';import'./chunk-O47JL7IZ.js';import'./chunk-D6MWW6M3.js';export{a as getRcDelegationPricesQueryOptions}from'./chunk-WFMUEFPX.js';import'./chunk-AZZELK3K.js';import'./chunk-CVUQZVBJ.js';import'./chunk-7PHOEE46.js';export{a as useBoostPlus}from'./chunk-QNTZ4VGW.js';export{a as useRcDelegation}from'./chunk-GOET4XRM.js';export{a as getBoostPlusAccountPricesQueryOptions}from'./chunk-SPALZPNC.js';export{a as getBoostPlusPricesQueryOptions}from'./chunk-SUB62EOJ.js';export{a as getPromotePriceQueryOptions}from'./chunk-TY5MBSGR.js';export{a as getRcDelegationActiveQueryOptions}from'./chunk-TKBA2OO2.js';import'./chunk-FMJ5QOV3.js';import'./chunk-IP2E55CF.js';export{a as getProposalVotesInfiniteQueryOptions}from'./chunk-CEDPN56F.js';export{a as getProposalsQueryOptions}from'./chunk-HWPZW7HE.js';export{a as getUserProposalVotesQueryOptions}from'./chunk-5TH3YJTG.js';import'./chunk-NNPMJCLC.js';import'./chunk-WMKLBBUS.js';import'./chunk-BQKIK2W3.js';import'./chunk-T65GQ4BQ.js';export{a as useProposalCreate}from'./chunk-NP4CCEIK.js';export{a as useProposalVote}from'./chunk-H2SHJVOZ.js';export{a as getProposalQueryOptions}from'./chunk-QUTY5ZEQ.js';import'./chunk-MFTNNG4H.js';import'./chunk-AKZUBWFC.js';import'./chunk-GK7FJLUB.js';export{a as getQuestsQueryOptions}from'./chunk-IS2CTIHQ.js';import'./chunk-DE3LARI7.js';import'./chunk-VYIILY4V.js';export{a as buyStreakFreezeRequest,b as useBuyStreakFreeze}from'./chunk-PA2573LU.js';export{a as QUEST_CATALOG,c as QUEST_MIN_CONTENT_LENGTH,g as STREAK_FREEZE_MAX_OWNED,f as STREAK_FREEZE_PRICE,e as earnsQuestContentCredit,b as getQuestCatalogEntry,d as measureQuestContentLength}from'./chunk-XTSVV73U.js';import'./chunk-6CVSQD6P.js';import'./chunk-ERVFIFKV.js';import'./chunk-LVDPMLN3.js';import'./chunk-PCPLYEAC.js';import'./chunk-ZXVQNHKJ.js';export{a as estimateRcPrecheck}from'./chunk-GLU7C3FB.js';export{a as priceRcUsage}from'./chunk-KMM5LEOT.js';export{b as SIGNATURE_BYTES,a as TRANSACTION_HEADER_BYTES,e as countVoteResourceUsage,d as estimateVoteTransactionBytes,c as stringFieldBytes}from'./chunk-DX3UNW47.js';export{a as computeResourceCost,b as countCommentResourceUsage,d as estimateCommentRcCost,c as estimateCommentTransactionBytes}from'./chunk-UNI2VKFW.js';export{a as RC_RESOURCE_NAMES}from'./chunk-L76TLK2I.js';export{a as getAccountRcQueryOptions}from'./chunk-SCHW77S2.js';export{a as getRcResourceParamsQueryOptions}from'./chunk-HIYSKDMQ.js';export{a as getRcStatsQueryOptions}from'./chunk-44HTBQJJ.js';import'./chunk-OYDQE5XW.js';import'./chunk-UG3UOIGW.js';import'./chunk-4IZXNBTJ.js';import'./chunk-E74HEJ6D.js';export{a as getSearchAccountQueryOptions}from'./chunk-IP4SMT4U.js';export{a as getSearchApiInfiniteQueryOptions}from'./chunk-E5HAKJ5S.js';export{a as getSearchPathQueryOptions}from'./chunk-SBK6IIER.js';export{b as getControversialRisingInfiniteQueryOptions,a as searchQueryOptions}from'./chunk-NTNSQ6XO.js';export{a as getSearchTopicsQueryOptions}from'./chunk-PU62E7IE.js';export{a as SIMILAR_ENTRIES_MIN_RENDER,b as getSimilarEntriesQueryOptions}from'./chunk-VO7VRRA4.js';export{c as MAX_SEARCH_QUERY_LENGTH,b as MAX_SEARCH_TAGS,h as SearchQuery,a as SearchType,g as buildSearchQuery,d as normalizeSearchAuthor,e as normalizeSearchCategory,f as normalizeSearchTags}from'./chunk-Z6C7IUBJ.js';export{a as search,c as searchPath,b as similar}from'./chunk-O3ZSK7PE.js';import'./chunk-RXGIT5EC.js';import'./chunk-LEYBAREX.js';import'./chunk-EPHCAUBF.js';import'./chunk-EFKF2IBG.js';export{a as getNewsletterSenderQueryOptions}from'./chunk-SNRX7A4Z.js';import'./chunk-5GFWRJRU.js';import'./chunk-MDV3JG4V.js';import'./chunk-KY3JOFKF.js';export{a as useLeaveDigest}from'./chunk-YDZQJSJW.js';export{a as usePreviewNewsletterIssue,b as useSendNewsletterIssue}from'./chunk-3LC7GMQM.js';export{a as useSubscribeDigest}from'./chunk-2ZQT6WMV.js';export{a as useUnsubscribeAllDigests}from'./chunk-C4IDSDFV.js';export{a as getDigestSubscriptionsQueryOptions}from'./chunk-6BUKZV2S.js';export{a as getNewsletterIssuesQueryOptions}from'./chunk-Z3KT4J5H.js';export{a as getNewsletterPostsQueryOptions}from'./chunk-OAGFCL5S.js';import'./chunk-KVW2RKGQ.js';import'./chunk-L7DZG4SC.js';import'./chunk-L5KOWVW4.js';import'./chunk-2JPCHMLX.js';import'./chunk-YYJ2IDAN.js';import'./chunk-IS2437KO.js';export{a as getAnnouncementsQueryOptions}from'./chunk-6X7SZGR2.js';export{a as getNotificationsInfiniteQueryOptions}from'./chunk-TMWS2AOE.js';export{a as getNotificationsSettingsQueryOptions}from'./chunk-VQTDYIJA.js';export{a as getNotificationsUnreadCountQueryOptions}from'./chunk-6EHAT3L6.js';export{a as getSpotlightsQueryOptions}from'./chunk-TIZYKOHR.js';import'./chunk-PJLT54LJ.js';export{a as NotificationFilter}from'./chunk-FN4YAGAN.js';export{b as ALL_NOTIFY_TYPES,c as NotificationViewType,a as NotifyTypes}from'./chunk-UQ7TLT2E.js';import'./chunk-LBD4TLFC.js';export{a as useMarkNotificationsRead}from'./chunk-UT226ZD7.js';export{a as useSetLastRead}from'./chunk-2IVGAXUS.js';import'./chunk-T7JSRYPW.js';import'./chunk-6RURF54U.js';export{a as getChainPropertiesQueryOptions}from'./chunk-E22XFAHY.js';import'./chunk-K3PZHU55.js';export{a as useSignOperationByKeychain}from'./chunk-EUIG3AY6.js';export{a as useSignOperationByHivesigner}from'./chunk-3GI45IZI.js';export{a as useSignOperationByKey}from'./chunk-LZODFMPP.js';export{a as OPERATION_AUTHORITY_MAP,b as getCustomJsonAuthority,d as getOperationAuthority,c as getProposalAuthority,e as getRequiredAuthority}from'./chunk-XVKIHWVE.js';import'./chunk-FNAAFCXA.js';import'./chunk-NUNOKSBB.js';export{a as PointTransactionType}from'./chunk-4GGWOCP2.js';import'./chunk-EGPFMYD6.js';import'./chunk-PBTICX6A.js';import'./chunk-FUNBST6Q.js';export{a as claimPointsRequest,b as useClaimPoints}from'./chunk-55DSHUXY.js';import'./chunk-P64NOTUC.js';export{a as getPointsAssetGeneralInfoQueryOptions}from'./chunk-O5KT4OJB.js';export{a as getPointsAssetTransactionsQueryOptions}from'./chunk-NCYY7T37.js';export{a as getPointsQueryOptions}from'./chunk-J7EYT7LI.js';import'./chunk-VHFB4X3G.js';import'./chunk-T35C7PKW.js';import'./chunk-NGIUURK6.js';export{a as POLLS_PROTOCOL_VERSION,b as PollPreferredInterpretation,c as mapMetaChoicesToPollChoices}from'./chunk-NYCPGSYO.js';import'./chunk-PSJIJNHD.js';export{a as usePollVote}from'./chunk-3PTAGQNB.js';export{a as getPollQueryOptions}from'./chunk-LCKQOTIC.js';import'./chunk-FP26ILFN.js';export{a as validatePostCreating}from'./chunk-5NUYVHXZ.js';import'./chunk-NYW7HACN.js';import'./chunk-GJCBQBOH.js';import'./chunk-TFUM24AN.js';import'./chunk-ZPSLSWUQ.js';import'./chunk-LP6ZZTIN.js';import'./chunk-NBNL2ABL.js';import'./chunk-IVB62MVD.js';import'./chunk-4ZTCRHJP.js';import'./chunk-GHLZQPWZ.js';import'./chunk-Y4GTNDGQ.js';export{a as useUpdateDraft}from'./chunk-IBUCPNIG.js';export{a as useUpdateReply}from'./chunk-G2XFCED6.js';export{a as useUploadImage}from'./chunk-4WKMFQ56.js';export{b as applyVoteCacheUpdate,a as isVoteAlreadyReflected,c as useVote}from'./chunk-WZH52WKS.js';export{a as useCrossPost}from'./chunk-BO5BPQTD.js';export{a as useDeleteComment}from'./chunk-L46LMXFK.js';export{a as useDeleteDraft}from'./chunk-IT5ZKI7I.js';export{a as useDeleteImage}from'./chunk-E52DF54T.js';export{a as useDeleteSchedule}from'./chunk-MLH3CRYP.js';export{a as useMoveSchedule}from'./chunk-SV4VYSFQ.js';export{a as usePromote}from'./chunk-B5XTWOOC.js';export{a as useReblog}from'./chunk-GZM2CRLM.js';export{a as useAddFragment}from'./chunk-R5GYBJXA.js';export{a as useEditFragment}from'./chunk-DTE3IZTI.js';import'./chunk-MJDVSN4Y.js';export{a as useRemoveFragment}from'./chunk-UDDXN3ZZ.js';export{a as useAddDraft}from'./chunk-SLKUQ6O5.js';export{a as useAddImage}from'./chunk-BWOMCW4V.js';export{a as useAddSchedule}from'./chunk-2YFW4BXN.js';export{a as resolveContentActivityType,b as useComment}from'./chunk-B3X4CN7M.js';import'./chunk-GESKM645.js';export{a as addOptimisticDiscussionEntry,b as removeOptimisticDiscussionEntry,c as restoreDiscussionSnapshots,e as restoreEntryInCache,d as updateEntryInCache}from'./chunk-EC22EJ65.js';export{a as EntriesCacheManagement}from'./chunk-3FYJNYUV.js';import'./chunk-T3C7MPZI.js';import'./chunk-T5FBPBZA.js';export{l as addDraft,h as addImage,o as addSchedule,n as deleteDraft,k as deleteImage,p as deleteSchedule,f as getNotificationSetting,d as getNotifications,r as getPromotedPost,g as markNotifications,q as moveSchedule,s as onboardEmail,e as saveNotificationSetting,a as signUp,b as subscribeEmail,m as updateDraft,i as uploadImage,j as uploadImageWithSignature,c as usrActivity}from'./chunk-BC6L7IKU.js';import'./chunk-PADTBRHI.js';export{a as ContentModerationReason,e as getContentModerationReason,d as isAuthorMuted,b as isHiddenPost,c as isLowTrustSeoPost}from'./chunk-6MDF7HRS.js';import'./chunk-G5JY7TOQ.js';export{b as HIDDEN_POST_MIN_VOTES,a as HIDDEN_POST_RSHARES_THRESHOLD,c as LOW_TRUST_REPUTATION_THRESHOLD}from'./chunk-CIJQ2CJO.js';export{a as hasExternalLink}from'./chunk-O2SDZXWK.js';export{b as getDigestSubscriptionsRequest,f as getNewsletterIssuesRequest,g as getNewsletterPostsRequest,e as getNewsletterSenderRequest,c as leaveDigestRequest,h as previewNewsletterSendRequest,i as sendNewsletterIssueRequest,a as subscribeDigestRequest,d as unsubscribeAllDigestsRequest}from'./chunk-JL3A467J.js';export{a as NewsletterApiError,b as NewsletterSendRefusedError}from'./chunk-7G26LVL7.js';import'./chunk-Q32W5ZVA.js';import'./chunk-OD3BXUH7.js';export{a as getCurationPostQueryOptions}from'./chunk-6BLP2SQQ.js';export{a as CURATION_RECOMMENDATIONS_PAGE_SIZE,b as getCurationRecommendationsInfiniteQueryOptions}from'./chunk-BSP2NE6N.js';export{a as CURATION_FEED_PAGE_SIZE,b as CURATION_FEED_STALE_MS,d as dedupeCurationPages,c as dedupePagesBy,f as getCurationFeedInfiniteQueryOptions,e as selectCurationFeedPages}from'./chunk-23QBH52U.js';export{a as getCurationRecommenderQueryOptions}from'./chunk-VSYAPP65.js';export{a as getCurationRosterAdminQueryOptions}from'./chunk-LRBAAPTI.js';export{a as getCurationRosterQueryOptions}from'./chunk-RJD4DRRL.js';export{a as getCurationStatusQueryOptions}from'./chunk-FAJDD5XQ.js';import'./chunk-ZS37TSA2.js';export{a as normalizeBroadcastTrxId,b as useCurationRecommend}from'./chunk-RW4IPYI7.js';export{a as CurationApiError,q as curationCursorRequest,s as curationDismissRecoRequest,o as curationMarkClearRequest,n as curationMarkRequest,p as curationMyMarksRequest,r as curationRecommendMetaRequest,i as curationRosterFeedRequest,k as curationRosterListRequest,m as curationRosterRetireRequest,l as curationRosterSetRequest,j as curationTickRequest,c as fetchCurationFeedPage,h as fetchCurationPost,f as fetchCurationRecommendationsPage,g as fetchCurationRecommenderStats,e as fetchCurationRoster,d as fetchCurationStatus,b as normalizeCurationParams}from'./chunk-27TWZ3S7.js';export{d as CURATION_APPS,g as CURATION_FLAG_REASONS,f as CURATION_MARK_STATES,a as CURATION_REASONS,b as CURATION_SORTS,c as CURATION_VIEWS,e as CURATION_WINDOWS}from'./chunk-DBTM3NHO.js';import'./chunk-Z47334IZ.js';import'./chunk-HW2JDX62.js';export{a as gameClaimRequest,b as useGameClaim}from'./chunk-SGDJO6CF.js';import'./chunk-6XTHIKKI.js';export{a as getGameStatusCheckQueryOptions}from'./chunk-KYO6AQZO.js';import'./chunk-MZFOOSNO.js';import'./chunk-LFIQGW4J.js';import'./chunk-LTCTZTWV.js';import'./chunk-E6AVTQM6.js';import'./chunk-D3BXSCNB.js';import'./chunk-7ZQFDB5J.js';import'./chunk-YCJ6ITKZ.js';import'./chunk-URZDQ4RC.js';import'./chunk-O2XILO6Y.js';import'./chunk-2M7656Z5.js';import'./chunk-CGP5WLEN.js';import'./chunk-MXVEGA7V.js';import'./chunk-LGHM4T2P.js';import'./chunk-EC3XSQ3W.js';import'./chunk-T6JRXHX2.js';import'./chunk-NRYARUJ6.js';import'./chunk-2ADXSSFM.js';export{a as getHiveEngineUnclaimedRewardsQueryOptions}from'./chunk-OKHXWPWX.js';export{a as getHiveEngineBalancesWithUsdQueryOptions}from'./chunk-FCBON3NU.js';import'./chunk-JW2FMXBH.js';export{a as HiveEngineToken}from'./chunk-AEYCCH23.js';export{a as formattedNumber}from'./chunk-H6P3JKST.js';export{a as getHiveEngineTokenGeneralInfoQueryOptions}from'./chunk-SI22EXYM.js';export{a as getHiveAssetGeneralInfoQueryOptions}from'./chunk-RCNAGK2Q.js';export{a as getAllHiveEngineTokensQueryOptions}from'./chunk-U5TB2GOJ.js';export{a as getHiveEngineTokensMetricsQueryOptions}from'./chunk-PYDD6PLF.js';export{a as getHiveEngineTokenTransactionsQueryOptions}from'./chunk-3WF3MOCN.js';export{a as getHiveEngineTokensBalancesQueryOptions}from'./chunk-7OVL2VHR.js';export{a as getHiveEngineTokensMarketQueryOptions}from'./chunk-WLYATELA.js';export{a as getHiveEngineTokensMetadataQueryOptions}from'./chunk-MNUQD4VD.js';export{d as getHiveEngineMetrics,c as getHiveEngineOpenOrders,a as getHiveEngineOrderBook,i as getHiveEngineTokenMetrics,h as getHiveEngineTokenTransactions,f as getHiveEngineTokensBalances,e as getHiveEngineTokensMarket,g as getHiveEngineTokensMetadata,b as getHiveEngineTradeHistory,j as getHiveEngineUnclaimedRewards}from'./chunk-QKX5CO6H.js';import'./chunk-3CJSIICX.js';export{a as ThreeSpeakIntegration}from'./chunk-VQMU22RZ.js';import'./chunk-JR773DIW.js';import'./chunk-WVIS6GI2.js';import'./chunk-3PGB6BXX.js';import'./chunk-L3WLHLL7.js';import'./chunk-3VAPXV4C.js';import'./chunk-SPE376WZ.js';export{a as THREESPEAK_BENEFICIARY_ACCOUNT,b as THREESPEAK_BENEFICIARY_WEIGHT,d as enforceThreeSpeakBeneficiary,c as hasThreeSpeakEmbed,e as isThreeSpeakBeneficiary}from'./chunk-J2RSYJY7.js';import'./chunk-427WIQBA.js';import'./chunk-HN3FNZPH.js';export{a as getHivePoshLinksQueryOptions}from'./chunk-XFN4V4YP.js';export{a as HiveSignerIntegration}from'./chunk-AAEXP2VH.js';import'./chunk-SN4QY6WW.js';import'./chunk-RNLKBK7U.js';import'./chunk-BOC4ZCKN.js';import'./chunk-RLQQ5AYH.js';export{a as getStatsQueryOptions}from'./chunk-6SSSOZ3N.js';import'./chunk-RF65JQ4N.js';import'./chunk-QTSBWQN3.js';import'./chunk-FQC3GOL5.js';import'./chunk-TMD54KD6.js';import'./chunk-TN6M52BG.js';import'./chunk-XQ3JSYP3.js';import'./chunk-CA3ZNFIJ.js';import'./chunk-DRBJHZYB.js';import'./chunk-ZPA2E7DJ.js';export{a as getCurrentMedianHistoryPriceQueryOptions}from'./chunk-C3NO2DVX.js';export{a as getFeedHistoryQueryOptions}from'./chunk-FMQADCF4.js';export{a as getHiveHbdStatsQueryOptions}from'./chunk-63MKM5DT.js';export{a as getMarketDataQueryOptions}from'./chunk-M3K5DTGR.js';export{a as getMarketHistoryQueryOptions}from'./chunk-MDDCT7BS.js';export{a as getMarketStatisticsQueryOptions}from'./chunk-3RI3I7EI.js';export{a as getOrderBookQueryOptions}from'./chunk-D4TMU4UP.js';export{a as getTradeHistoryQueryOptions}from'./chunk-FXFYFSG3.js';import'./chunk-5IANTVAI.js';export{a as useLimitOrderCancel}from'./chunk-FTYLBBVF.js';export{a as useLimitOrderCreate}from'./chunk-2ASC3V2D.js';export{b as getCurrencyRate,d as getCurrencyRates,c as getCurrencyTokenRate,e as getHivePrice,a as getMarketData}from'./chunk-MZYPSQ3E.js';export{a as isDmcaCurationPath,c as maskDmcaCurationPages,b as maskDmcaCurationRow}from'./chunk-IB5AVAVA.js';export{b as isExcludedByFlags,a as isOnAbuseList}from'./chunk-DM7XOACW.js';import'./chunk-FBDRGX6R.js';import'./chunk-JEPIMNMP.js';export{a as getBadActorsQueryOptions}from'./chunk-JPB5PP73.js';import'./chunk-CZH6JK2O.js';export{b as getCommunityPermissions,a as getCommunityType}from'./chunk-WRFKAMQC.js';import'./chunk-7X55ONNC.js';import'./chunk-JGL7R625.js';export{a as ROLES,b as roleMap}from'./chunk-W44ZUQWY.js';import'./chunk-SBX6GRA7.js';import'./chunk-AKDSYBBN.js';import'./chunk-CAR5E4X6.js';export{a as getAccountNotificationsInfiniteQueryOptions}from'./chunk-IPUJY5AC.js';export{a as getCommunitiesQueryOptions}from'./chunk-WWSHY2RH.js';export{a as getCommunityContextQueryOptions}from'./chunk-4ISYBNGD.js';export{a as getCommunityQueryOptions}from'./chunk-IJEWTYPA.js';export{a as SUBSCRIBERS_PAGE_SIZE,c as getCommunitySubscribersInfiniteQueryOptions,b as getCommunitySubscribersQueryOptions}from'./chunk-7HAM4O2L.js';export{a as getRewardedCommunitiesQueryOptions}from'./chunk-OZDZIGY5.js';import'./chunk-TWMJ24GT.js';export{a as useUpdateCommunity}from'./chunk-JDIDJJJP.js';export{a as useMutePost}from'./chunk-XPUBZBUT.js';export{a as usePinPost}from'./chunk-QPZZAYI6.js';export{a as useRegisterCommunityRewards}from'./chunk-WH7I2UKW.js';export{a as useSetCommunityRole}from'./chunk-EQMP6VJI.js';export{a as useSubscribeCommunity}from'./chunk-NDA2SSCP.js';export{a as useUnsubscribeCommunity}from'./chunk-U6ZAKAGN.js';export{d as dedupeAndSortKeyAuths,a as getAccountFullQueryOptions,c as useAccountRelationsUpdate,i as useAccountRevokeKey,g as useAccountRevokePosting,b as useAccountUpdate,e as useAccountUpdateKeyAuths,f as useAccountUpdatePassword,h as useAccountUpdateRecovery}from'./chunk-ISZPF4EI.js';import'./chunk-4WKE2XGF.js';export{a as useAccountFavoriteAdd}from'./chunk-BCRZHIDE.js';export{a as useAccountFavoriteDelete}from'./chunk-PPUIB5BL.js';import'./chunk-UO5T3I3Y.js';export{a as useBookmarkAdd}from'./chunk-TUPSPHAD.js';export{a as useBookmarkDelete}from'./chunk-EBYMRQSY.js';import'./chunk-HJD6VPI2.js';export{a as useFavoriteTagAdd}from'./chunk-P3KO343Z.js';export{a as favoriteTagDeleteMutationOptions,b as useFavoriteTagDelete}from'./chunk-QHHMD72J.js';export{a as addFavoriteTagRequest,b as deleteFavoriteTagRequest}from'./chunk-DARVLG5G.js';import'./chunk-VZ3HC27T.js';import'./chunk-K6KG27QU.js';import'./chunk-MXZUXS2T.js';import'./chunk-DZJPBPDM.js';import'./chunk-Q6RU3KGW.js';import'./chunk-QXZV7SQZ.js';import'./chunk-43XPOPPI.js';import'./chunk-MG2CUUIU.js';import'./chunk-RRM3GFML.js';import'./chunk-YCSYCWOU.js';import'./chunk-64CXOUJ6.js';import'./chunk-FKVFBS2Q.js';import'./chunk-DMZUW7I3.js';export{a as getSearchFriendsQueryOptions}from'./chunk-UI5UUHGZ.js';export{a as ACCOUNT_OPERATION_GROUPS,b as ALL_ACCOUNT_OPERATIONS,c as getTransactionsInfiniteQueryOptions}from'./chunk-HRRZDP2G.js';export{a as lookupAccountsQueryOptions}from'./chunk-DWGBR3U4.js';export{a as getSearchAccountsByUsernameQueryOptions}from'./chunk-WSHI25RH.js';import'./chunk-CVCK6FCN.js';import'./chunk-RW7OFBMA.js';import'./chunk-4P43NNO2.js';export{a as getFollowingQueryOptions}from'./chunk-QLHPONWP.js';export{a as getFriendsInfiniteQueryOptions}from'./chunk-RUPBIXKT.js';export{a as getMutedUsersQueryOptions}from'./chunk-VQQAU2LB.js';export{a as getProMembersQueryOptions,b as proMembersSet}from'./chunk-OGQE2IXI.js';export{a as getProfilesQueryOptions}from'./chunk-MFPJI5UX.js';export{a as getReferralsInfiniteQueryOptions}from'./chunk-QVQS44RY.js';export{a as getReferralsStatsQueryOptions}from'./chunk-AZFWBGXS.js';export{a as getRelationshipBetweenAccountsQueryOptions}from'./chunk-3IAUVG4M.js';export{a as getBalanceHistoryInfiniteQueryOptions}from'./chunk-GP5PU4LQ.js';export{b as getBookmarksInfiniteQueryOptions,a as getBookmarksQueryOptions}from'./chunk-BYMCNRLQ.js';export{a as getBotsQueryOptions}from'./chunk-OS4F5F5X.js';export{a as getFavoriteTagCheckQueryOptions}from'./chunk-RQ37QCXG.js';export{b as getFavoriteTagsInfiniteQueryOptions,a as getFavoriteTagsQueryOptions}from'./chunk-D77PO2XF.js';export{b as getFavoritesInfiniteQueryOptions,a as getFavoritesQueryOptions}from'./chunk-Y5BVSYEI.js';export{a as getFollowCountQueryOptions}from'./chunk-EXA7CMQ7.js';export{a as getFollowersQueryOptions}from'./chunk-HJH6F4JF.js';export{a as getAccountPendingRecoveryQueryOptions}from'./chunk-BLZS6SWE.js';export{a as getAccountRecoveriesQueryOptions}from'./chunk-7QWCUQCC.js';export{a as getAccountReputationsQueryOptions}from'./chunk-C4OJWVSL.js';export{a as getAccountSubscriptionsQueryOptions}from'./chunk-KUAH2DDC.js';export{a as getAccountVoteHistoryInfiniteQueryOptions}from'./chunk-CEMSQO5C.js';export{a as getAccountsQueryOptions}from'./chunk-ADB3Z4AQ.js';export{a as getAggregatedBalanceQueryOptions}from'./chunk-G5RI7TAM.js';export{a as useClaimAccount}from'./chunk-VKCPRMZQ.js';export{a as useCreateAccount}from'./chunk-IOICGELH.js';export{a as useFollow}from'./chunk-QUQCSNPB.js';export{a as useGrantPostingPermission}from'./chunk-RAXKSEAC.js';export{a as useUnfollow}from'./chunk-JDUTDDWL.js';export{a as checkFavoriteQueryOptions}from'./chunk-CDNZEVB7.js';export{a as checkUsernameWalletsPendingQueryOptions}from'./chunk-TJMJNASC.js';export{b as buildRevokeKeysOp,a as canRevokeFromAuthority}from'./chunk-NT4ZVSWI.js';import'./chunk-7LYG3TN4.js';export{d as downVotingPower,c as powerRechargeTime,f as rcPower,e as rewardsToStakeRatio,b as votingPower,a as votingRshares,g as votingValue}from'./chunk-IOFQ5TE5.js';export{a as normalizeTag}from'./chunk-UAUQ6LK3.js';export{a as parseAccounts}from'./chunk-AZ7QNEWY.js';export{e as buildPostingJsonMetadata,f as buildProfileMetadata,b as extractAccountProfile,d as parsePostingMetadataRoot,a as parseProfileMetadata,c as pickRicherMetadataSnapshot}from'./chunk-BWMECQQM.js';export{a as accountNameByteLength,b as isQueryableAccountName}from'./chunk-HU5GXRZC.js';import'./chunk-YIEREOQK.js';export{a as getWavesTrendingAuthorsQueryOptions}from'./chunk-P5WF6ROR.js';export{a as getWavesTrendingTagsQueryOptions}from'./chunk-MVSRXAYE.js';export{a as getTrendingTagsQueryOptions}from'./chunk-D7NEZTJF.js';export{a as getTrendingTagsWithStatsQueryOptions}from'./chunk-7EPNELN6.js';export{a as getUserPostVoteQueryOptions}from'./chunk-KZL377G4.js';export{a as getWavesByAccountQueryOptions}from'./chunk-UUFYYXB7.js';export{a as getWavesByHostQueryOptions}from'./chunk-R7QIVOYV.js';export{a as getWavesByTagQueryOptions}from'./chunk-WMH56CV7.js';export{a as getWavesFeedQueryOptions,b as getWavesLatestFeedQueryOptions}from'./chunk-GWKWS4FN.js';export{a as getWavesFollowingQueryOptions}from'./chunk-OWBMCCUG.js';export{a as getPostQueryOptions}from'./chunk-NJGGSUIS.js';export{a as getPostTipsQueryOptions}from'./chunk-PV2BUL4S.js';export{a as getPostsRankedInfiniteQueryOptions,b as getPostsRankedQueryOptions}from'./chunk-RSXCAMZ2.js';export{a as getPromotedPostsQuery}from'./chunk-P7VYK3ZJ.js';export{a as getRebloggedByQueryOptions}from'./chunk-SFOJLAXQ.js';export{a as getReblogsQueryOptions}from'./chunk-4ENXSMO6.js';export{b as getSchedulesInfiniteQueryOptions,a as getSchedulesQueryOptions}from'./chunk-PMYQKXPJ.js';export{a as getShortsFeedQueryOptions}from'./chunk-CVEKIBVU.js';export{c as getVisibleFirstLevelThreadItems,d as mapThreadItemsToWaveEntries,a as normalizeWaveEntryFromApi,b as toEntryArray}from'./chunk-4ZN4YIPC.js';export{a as getDeletedEntryQueryOptions}from'./chunk-RMSMLAHC.js';export{a as SortOrder,d as getDiscussionQueryOptions,c as getDiscussionsQueryOptions,b as sortDiscussions}from'./chunk-3ZI5KHRM.js';export{b as getDraftsInfiniteQueryOptions,a as getDraftsQueryOptions}from'./chunk-YOVH5UVW.js';export{a as getEntryActiveVotesQueryOptions}from'./chunk-OYINSU2C.js';export{b as getFragmentsInfiniteQueryOptions,a as getFragmentsQueryOptions}from'./chunk-H3VSNOEB.js';export{b as getGalleryImagesQueryOptions,c as getImagesInfiniteQueryOptions,a as getImagesQueryOptions}from'./chunk-AJ4OSG3A.js';export{a as getNormalizePostQueryOptions}from'./chunk-RYN77CAO.js';export{a as getPostHeaderQueryOptions}from'./chunk-LVJVELHJ.js';export{a as getAccountPostsInfiniteQueryOptions,b as getAccountPostsQueryOptions}from'./chunk-ANIDU27S.js';export{a as getCommentHistoryQueryOptions}from'./chunk-DTFV5UWG.js';export{a as getContentQueryOptions}from'./chunk-X7QIV5LV.js';export{a as getContentRepliesQueryOptions}from'./chunk-XF62BAXI.js';import'./chunk-BQQBJVQK.js';export{c as buildProposalCreateOp,d as buildProposalVoteOp,e as buildRemoveProposalOp,f as buildUpdateProposalOp,b as buildWitnessProxyOp,a as buildWitnessVoteOp}from'./chunk-RZVMZQO7.js';export{a as BuySellTransactionType,b as OrderIdPrefix,f as buildClaimRewardBalanceOp,e as buildLimitOrderCancelOp,c as buildLimitOrderCreateOp,d as buildLimitOrderCreateOpWithType}from'./chunk-AEIA5MPL.js';export{a as buildFollowOp,c as buildIgnoreOp,e as buildSetLastReadOps,b as buildUnfollowOp,d as buildUnignoreOp}from'./chunk-K3LA2I7M.js';export{f as buildCancelTransferFromSavingsOp,g as buildClaimInterestOps,m as buildCollateralizedConvertOp,l as buildConvertOp,p as buildDelegateRcOp,j as buildDelegateVestingSharesOp,o as buildEngineClaimOp,n as buildEngineOp,b as buildMultiTransferOps,c as buildRecurrentTransferOp,k as buildSetWithdrawVestingRouteOp,e as buildTransferFromSavingsOp,a as buildTransferOp,d as buildTransferToSavingsOp,h as buildTransferToVestingOp,i as buildWithdrawVestingOp}from'./chunk-UKK6NLAT.js';export{c as buildAccountCreateOp,b as buildAccountUpdate2Op,a as buildAccountUpdateOp,h as buildChangeRecoveryAccountOp,e as buildClaimAccountOp,d as buildCreateClaimedAccountOp,f as buildGrantPostingPermissionOp,j as buildRecoverAccountOp,i as buildRequestAccountRecoveryOp,g as buildRevokePostingPermissionOp}from'./chunk-QYY3VHLJ.js';export{h as buildFlagPostOp,f as buildMutePostOp,g as buildMuteUserOp,e as buildPinPostOp,c as buildSetRoleOp,a as buildSubscribeOp,b as buildUnsubscribeOp,d as buildUpdateCommunityOp}from'./chunk-OBSTAXZB.js';export{b as buildCommentOp,c as buildCommentOptionsOp,d as buildDeleteCommentOp,e as buildReblogOp,a as buildVoteOp}from'./chunk-EOSE4FQA.js';export{i as buildActiveCustomJsonOp,a as buildBoostPlusOp,h as buildCommunityRegistrationOp,d as buildCurationRecommendOp,e as buildCurationUnrecommendOp,g as buildMultiPointTransferOps,f as buildPointTransferOp,j as buildPostingCustomJsonOp,c as buildPromoteOp,b as buildRcDelegationOp}from'./chunk-4COFIDSX.js';import'./chunk-OLWGQU5G.js';export{a as bridgeApiCall,d as getAccountPosts,i as getCommunities,h as getCommunity,g as getDiscussion,e as getPost,f as getPostHeader,c as getPostsRanked,n as getProfiles,m as getRelationshipBetweenAccounts,l as getSubscribers,k as getSubscriptions,j as normalizePost,b as resolvePost}from'./chunk-UVXZ4YTY.js';import'./chunk-KOW6RD5A.js';export{a as verifyPostOnAlternateNode}from'./chunk-SGLS2W3U.js';import'./chunk-UDTSZCKX.js';import'./chunk-IYNPA3LL.js';export{a as getAiGeneratePriceQueryOptions}from'./chunk-BORDHOQP.js';export{a as getAiImagesQueryOptions}from'./chunk-TW7DS2NF.js';export{a as getAiTranscribePriceQueryOptions}from'./chunk-C57XPJHI.js';import'./chunk-3T5UETKK.js';import'./chunk-VYGYMSIX.js';export{a as useAiAssist}from'./chunk-G3Z743HF.js';export{a as useAiTranscribe}from'./chunk-VS7MHMIU.js';export{a as invalidateGenerateImageCaches,b as useGenerateImage}from'./chunk-TWXS72BS.js';export{a as getAiAssistPriceQueryOptions}from'./chunk-7R2QU6TT.js';import'./chunk-43SXBWKK.js';import'./chunk-EYTMAOL5.js';export{a as getDiscoverLeaderboardQueryOptions}from'./chunk-6POI64N4.js';export{a as getPageStatsQueryOptions}from'./chunk-B5PLC54M.js';import'./chunk-HYUT6RGC.js';import'./chunk-OVWINIEX.js';import'./chunk-H2AJTU6C.js';import'./chunk-RPC3RKDZ.js';export{a as getDiscoverCurationQueryOptions}from'./chunk-Y2SFTEVM.js';export{a as EcencyAnalytics}from'./chunk-GVIJPBYU.js';export{a as useRecordActivity}from'./chunk-PEL4IET7.js';import'./chunk-RXSU3TYG.js';export{a as hsTokenRenew}from'./chunk-3XW7V3AZ.js';import'./chunk-FRKFK4CP.js';export{a as getDynamicPropsQueryOptions,b as getRewardFundQueryOptions}from'./chunk-ZSXZEEHA.js';import'./chunk-HYWGW2KG.js';import'./chunk-SWB5BEBJ.js';import'./chunk-PRS4VWQ6.js';import'./chunk-7FGO3WVP.js';import'./chunk-ZOBESNHF.js';import'./chunk-AZAGIEQM.js';export{a as broadcastJson}from'./chunk-GIH5UFQA.js';export{a as BROADCAST_INCLUSION_DELAY_MS,b as invalidateAfterBroadcast}from'./chunk-CNB64U7U.js';export{a as useBroadcastMutation}from'./chunk-4ETWXS3L.js';import'./chunk-SYDLFCXU.js';export{a as ErrorType,c as formatError,f as isInfoError,g as isNetworkError,e as isResourceCreditsError,b as parseChainError,d as shouldTriggerAuthFallback}from'./chunk-M37RR3MH.js';import'./chunk-SPR2OKTO.js';export{a as getBoundFetch}from'./chunk-SEACJS36.js';export{a as isCommunity}from'./chunk-573LJIGZ.js';export{a as isEmptyDate}from'./chunk-W3MCL2F4.js';export{a as isWrappedResponse,b as normalizeToWrappedResponse}from'./chunk-ASN6FTIA.js';export{b as NaiMap,a as Symbol,c as parseAsset}from'./chunk-32QJ72HH.js';export{a as vestsToHp}from'./chunk-ZMMG2HSI.js';export{b as decodeObj,a as encodeObj}from'./chunk-QKTP4NPT.js';export{c as broadcastOperations,d as broadcastOperationsAsync,f as calculateRCMana,e as calculateVPMana,b as isWif,a as sha256}from'./chunk-4TJ4KSFV.js';export{c as EcencyQueriesManager,b as getQueryClient,a as makeQueryClient}from'./chunk-VZPJHJWH.js';export{c as CONFIG,d as ConfigManager,a as INTERNAL_API_TIMEOUT_MS,b as SERVER_GC_TIME_MS}from'./chunk-PS3MSD25.js';export{a as QueryKeys}from'./chunk-6SASR6MC.js';export{a as utf8ByteLength,b as varintByteLength}from'./chunk-JKLDB3J3.js';export{a as withTimeoutSignal}from'./chunk-JDGZ4DHM.js';import'./chunk-PSJ6RBU7.js';export{a as Memo}from'./chunk-XI5ATHCU.js';export{e as hiveTxUtils}from'./chunk-B2ML2BDO.js';export{a as PrivateKey}from'./chunk-CPEOHI6I.js';import'./chunk-APUAN7MV.js';import'./chunk-W6CLJQB7.js';export{a as HiveTxTransaction}from'./chunk-NFECEVG5.js';import'./chunk-FKX7MTR7.js';import'./chunk-SZZYFGT3.js';export{l as callREST,j as callRPC,k as callRPCBroadcast,m as callWithQuorum}from'./chunk-UB5YHSMC.js';import'./chunk-PQSG5K4Y.js';export{b as PublicKey,a as Signature}from'./chunk-GLLSYDNK.js';import'./chunk-KT7GFFA7.js';export{a as hiveTxConfig}from'./chunk-S364K442.js';import'./chunk-C32KFGFA.js';import'./chunk-G27OY2BI.js';import'./chunk-OS3FCYZY.js';//# sourceMappingURL=index.js.map +import'./chunk-L3YUYHOR.js';import'./chunk-K5E3ZZSJ.js';export{b as applySupportSettingsUpdate,a as updateSupportSettingsRequest,c as useUpdateSupportSettings}from'./chunk-IXNFP46B.js';import'./chunk-SXT7LI2W.js';export{b as getSupportSettingsQueryOptions,a as getSupportSettingsRequest}from'./chunk-IFTJDAPT.js';import'./chunk-DFUV45ZM.js';import'./chunk-JNT53INW.js';import'./chunk-ZO3UVKBD.js';export{a as getReceivedVestingSharesQueryOptions}from'./chunk-NPFWZGLZ.js';export{a as getRecurrentTransfersQueryOptions}from'./chunk-KG2QG2RD.js';export{a as getSavingsWithdrawFromQueryOptions}from'./chunk-LNTVY6MW.js';export{a as getVestingDelegationExpirationsQueryOptions}from'./chunk-PFOLNIKC.js';export{a as getVestingDelegationsQueryOptions}from'./chunk-5WUL6DB5.js';export{a as getWithdrawRoutesQueryOptions}from'./chunk-2DOZ3WKY.js';export{a as getHiveAssetWithdrawalRoutesQueryOptions}from'./chunk-AKJAHOVF.js';export{a as getHivePowerAssetTransactionsQueryOptions}from'./chunk-ER3MOLHM.js';export{a as getHivePowerDelegatesInfiniteQueryOptions}from'./chunk-ADN73NKF.js';export{a as getHivePowerDelegatingsQueryOptions}from'./chunk-L7GUKTWI.js';import'./chunk-Z6HCXX2D.js';export{a as getIncomingRcQueryOptions}from'./chunk-BY5SUSZA.js';export{a as getOpenOrdersQueryOptions}from'./chunk-NYBTNXST.js';export{a as getOutgoingRcDelegationsInfiniteQueryOptions}from'./chunk-ARXWFZCA.js';export{a as getAccountWalletAssetInfoQueryOptions}from'./chunk-WTK6BEGL.js';export{a as getPortfolioQueryOptions}from'./chunk-6OUG7BX7.js';export{a as getHivePowerAssetGeneralInfoQueryOptions}from'./chunk-ZQGFLWZL.js';export{a as getCollateralizedConversionRequestsQueryOptions}from'./chunk-UBHX5PWX.js';export{a as getConversionRequestsQueryOptions}from'./chunk-PKR72FDR.js';export{a as getHbdAssetGeneralInfoQueryOptions}from'./chunk-UL5MMRZR.js';export{a as getHbdAssetTransactionsQueryOptions}from'./chunk-4AD47DNH.js';export{a as getHiveAssetMetricQueryOptions}from'./chunk-LUMK7JH2.js';export{b as collectRequestedOperations,e as getHiveAssetTransactionsQueryOptions,c as getNextAccountHistoryPageParam,d as resolveAccountHistoryLimit,a as resolveHiveOperationFilters}from'./chunk-VQBJTW2I.js';export{a as getAccountDelegationsQueryOptions}from'./chunk-5RCSJKZ2.js';import'./chunk-CBY2JRNI.js';export{b as HIVE_OPERATION_NAME_BY_ID,a as HIVE_OPERATION_ORDERS}from'./chunk-WNPCOEEP.js';import'./chunk-IGHKYWMB.js';export{a as useTransferToSavings}from'./chunk-HWIRIHKN.js';export{a as useTransferToVesting}from'./chunk-ATIAH325.js';export{a as useTransfer}from'./chunk-RL4JUSOJ.js';export{a as useUndelegateEngineToken}from'./chunk-PHT5D5SJ.js';export{a as useUnstakeEngineToken}from'./chunk-XTO5EJQD.js';export{a as useWalletOperation}from'./chunk-APWH3BXY.js';import'./chunk-YRORZ7KC.js';import'./chunk-5V3SKJB4.js';import'./chunk-DU24I6PR.js';import'./chunk-4QAR4OZ6.js';import'./chunk-RWAOU3IW.js';import'./chunk-SS7WWOCL.js';import'./chunk-4VGOYRDD.js';import'./chunk-RZG34OLG.js';import'./chunk-D6A2HPDV.js';import'./chunk-SSQDUUSP.js';import'./chunk-IGAI6UM7.js';import'./chunk-HMGBVXPP.js';import'./chunk-AFLY3RSO.js';export{a as AssetOperation}from'./chunk-E3QPW73W.js';import'./chunk-LBI6JJ4F.js';import'./chunk-3JUDV3OG.js';import'./chunk-FGS357UW.js';import'./chunk-3T2TKEJV.js';import'./chunk-ZNBLDNPB.js';import'./chunk-QWZJ237K.js';export{a as useWithdrawVesting}from'./chunk-6F2VYD2R.js';export{a as useDelegateRc}from'./chunk-TOHDRQNB.js';export{a as useDelegateVestingShares}from'./chunk-7JDGWR7C.js';export{a as useEngineMarketOrder}from'./chunk-PVLU32MM.js';export{a as useSetWithdrawVestingRoute}from'./chunk-J4O4T7WU.js';export{a as useStakeEngineToken}from'./chunk-VI7KWZ6P.js';export{a as useTransferEngineToken}from'./chunk-FLPYBEQG.js';export{a as useTransferFromSavings}from'./chunk-2FV2UQMO.js';export{a as useTransferPoint}from'./chunk-Y6KHF5OF.js';export{a as useClaimEngineRewards}from'./chunk-DL2SPG4K.js';export{a as useClaimInterest}from'./chunk-B4JO4DHQ.js';export{a as useClaimRewards}from'./chunk-2OWIF2MC.js';export{a as useConvert}from'./chunk-DIFKKN3B.js';export{a as useDelegateEngineToken}from'./chunk-BXQBFNK4.js';export{a as HIVE_ACCOUNT_OPERATION_GROUPS}from'./chunk-C5OFPWDU.js';export{a as HIVE_OPERATION_LIST}from'./chunk-SKMR2A6V.js';import'./chunk-DAYFD3PK.js';import'./chunk-WJPIEG7L.js';export{c as getWitnessVoterCountQueryOptions,b as getWitnessVotersPageQueryOptions,a as getWitnessesInfiniteQueryOptions}from'./chunk-OOSWEX2A.js';import'./chunk-PY4WHRTI.js';import'./chunk-PALSESGC.js';import'./chunk-6GIFRNG7.js';export{a as useWitnessProxy}from'./chunk-SJIBCAXW.js';export{a as useWitnessVote}from'./chunk-TPT5OY3X.js';import'./chunk-O47JL7IZ.js';import'./chunk-D6MWW6M3.js';export{a as getRcDelegationPricesQueryOptions}from'./chunk-WFMUEFPX.js';import'./chunk-AZZELK3K.js';import'./chunk-CVUQZVBJ.js';import'./chunk-7PHOEE46.js';export{a as useBoostPlus}from'./chunk-QNTZ4VGW.js';export{a as useRcDelegation}from'./chunk-GOET4XRM.js';export{a as getBoostPlusAccountPricesQueryOptions}from'./chunk-SPALZPNC.js';export{a as getBoostPlusPricesQueryOptions}from'./chunk-SUB62EOJ.js';export{a as getPromotePriceQueryOptions}from'./chunk-TY5MBSGR.js';export{a as getRcDelegationActiveQueryOptions}from'./chunk-TKBA2OO2.js';import'./chunk-FMJ5QOV3.js';import'./chunk-IP2E55CF.js';export{a as getProposalVotesInfiniteQueryOptions}from'./chunk-CEDPN56F.js';export{a as getProposalsQueryOptions}from'./chunk-HWPZW7HE.js';export{a as getUserProposalVotesQueryOptions}from'./chunk-5TH3YJTG.js';import'./chunk-NNPMJCLC.js';import'./chunk-WMKLBBUS.js';import'./chunk-BQKIK2W3.js';import'./chunk-T65GQ4BQ.js';export{a as useProposalCreate}from'./chunk-NP4CCEIK.js';export{a as useProposalVote}from'./chunk-H2SHJVOZ.js';export{a as getProposalQueryOptions}from'./chunk-QUTY5ZEQ.js';import'./chunk-MFTNNG4H.js';import'./chunk-AKZUBWFC.js';import'./chunk-GK7FJLUB.js';export{a as getQuestsQueryOptions}from'./chunk-IS2CTIHQ.js';import'./chunk-DE3LARI7.js';import'./chunk-VYIILY4V.js';export{a as buyStreakFreezeRequest,b as useBuyStreakFreeze}from'./chunk-PA2573LU.js';export{a as QUEST_CATALOG,c as QUEST_MIN_CONTENT_LENGTH,g as STREAK_FREEZE_MAX_OWNED,f as STREAK_FREEZE_PRICE,e as earnsQuestContentCredit,b as getQuestCatalogEntry,d as measureQuestContentLength}from'./chunk-XTSVV73U.js';import'./chunk-6CVSQD6P.js';import'./chunk-ERVFIFKV.js';import'./chunk-LVDPMLN3.js';import'./chunk-PCPLYEAC.js';import'./chunk-ZXVQNHKJ.js';export{a as estimateRcPrecheck}from'./chunk-GLU7C3FB.js';export{a as priceRcUsage}from'./chunk-KMM5LEOT.js';export{b as SIGNATURE_BYTES,a as TRANSACTION_HEADER_BYTES,e as countVoteResourceUsage,d as estimateVoteTransactionBytes,c as stringFieldBytes}from'./chunk-DX3UNW47.js';export{a as computeResourceCost,b as countCommentResourceUsage,d as estimateCommentRcCost,c as estimateCommentTransactionBytes}from'./chunk-UNI2VKFW.js';export{a as RC_RESOURCE_NAMES}from'./chunk-L76TLK2I.js';export{a as getAccountRcQueryOptions}from'./chunk-SCHW77S2.js';export{a as getRcResourceParamsQueryOptions}from'./chunk-HIYSKDMQ.js';export{a as getRcStatsQueryOptions}from'./chunk-44HTBQJJ.js';import'./chunk-OYDQE5XW.js';import'./chunk-UG3UOIGW.js';import'./chunk-4IZXNBTJ.js';import'./chunk-E74HEJ6D.js';export{a as getSearchAccountQueryOptions}from'./chunk-IP4SMT4U.js';export{a as getSearchApiInfiniteQueryOptions}from'./chunk-E5HAKJ5S.js';export{a as getSearchPathQueryOptions}from'./chunk-SBK6IIER.js';export{b as getControversialRisingInfiniteQueryOptions,a as searchQueryOptions}from'./chunk-NTNSQ6XO.js';export{a as getSearchTopicsQueryOptions}from'./chunk-PU62E7IE.js';export{a as SIMILAR_ENTRIES_MIN_RENDER,b as getSimilarEntriesQueryOptions}from'./chunk-VO7VRRA4.js';export{c as MAX_SEARCH_QUERY_LENGTH,b as MAX_SEARCH_TAGS,h as SearchQuery,a as SearchType,g as buildSearchQuery,d as normalizeSearchAuthor,e as normalizeSearchCategory,f as normalizeSearchTags}from'./chunk-Z6C7IUBJ.js';export{a as search,c as searchPath,b as similar}from'./chunk-O3ZSK7PE.js';import'./chunk-RXGIT5EC.js';import'./chunk-LEYBAREX.js';import'./chunk-EPHCAUBF.js';import'./chunk-EFKF2IBG.js';export{a as getNewsletterSenderQueryOptions}from'./chunk-SNRX7A4Z.js';import'./chunk-5GFWRJRU.js';import'./chunk-MDV3JG4V.js';import'./chunk-KY3JOFKF.js';export{a as useLeaveDigest}from'./chunk-YDZQJSJW.js';export{a as usePreviewNewsletterIssue,b as useSendNewsletterIssue}from'./chunk-3LC7GMQM.js';export{a as useSubscribeDigest}from'./chunk-2ZQT6WMV.js';export{a as useUnsubscribeAllDigests}from'./chunk-C4IDSDFV.js';export{a as getDigestSubscriptionsQueryOptions}from'./chunk-6BUKZV2S.js';export{a as getNewsletterIssuesQueryOptions}from'./chunk-Z3KT4J5H.js';export{a as getNewsletterPostsQueryOptions}from'./chunk-OAGFCL5S.js';import'./chunk-KVW2RKGQ.js';import'./chunk-L7DZG4SC.js';import'./chunk-L5KOWVW4.js';import'./chunk-2JPCHMLX.js';import'./chunk-YYJ2IDAN.js';import'./chunk-IS2437KO.js';export{a as getAnnouncementsQueryOptions}from'./chunk-6X7SZGR2.js';export{a as getNotificationsInfiniteQueryOptions}from'./chunk-TMWS2AOE.js';export{a as getNotificationsSettingsQueryOptions}from'./chunk-VQTDYIJA.js';export{a as getNotificationsUnreadCountQueryOptions}from'./chunk-GOO7V6OB.js';export{a as getSpotlightsQueryOptions}from'./chunk-TIZYKOHR.js';import'./chunk-PJLT54LJ.js';export{a as NotificationFilter}from'./chunk-FN4YAGAN.js';export{b as ALL_NOTIFY_TYPES,c as NotificationViewType,a as NotifyTypes}from'./chunk-UQ7TLT2E.js';import'./chunk-LBD4TLFC.js';export{a as useMarkNotificationsRead}from'./chunk-UT226ZD7.js';export{a as useSetLastRead}from'./chunk-2IVGAXUS.js';import'./chunk-T7JSRYPW.js';import'./chunk-6RURF54U.js';export{a as getChainPropertiesQueryOptions}from'./chunk-E22XFAHY.js';import'./chunk-K3PZHU55.js';export{a as useSignOperationByKeychain}from'./chunk-EUIG3AY6.js';export{a as useSignOperationByHivesigner}from'./chunk-3GI45IZI.js';export{a as useSignOperationByKey}from'./chunk-LZODFMPP.js';export{a as OPERATION_AUTHORITY_MAP,b as getCustomJsonAuthority,d as getOperationAuthority,c as getProposalAuthority,e as getRequiredAuthority}from'./chunk-XVKIHWVE.js';import'./chunk-FNAAFCXA.js';import'./chunk-NUNOKSBB.js';export{a as PointTransactionType}from'./chunk-4GGWOCP2.js';import'./chunk-EGPFMYD6.js';import'./chunk-PBTICX6A.js';import'./chunk-FUNBST6Q.js';export{a as claimPointsRequest,b as useClaimPoints}from'./chunk-55DSHUXY.js';import'./chunk-P64NOTUC.js';export{a as getPointsAssetGeneralInfoQueryOptions}from'./chunk-O5KT4OJB.js';export{a as getPointsAssetTransactionsQueryOptions}from'./chunk-NCYY7T37.js';export{a as getPointsQueryOptions}from'./chunk-J7EYT7LI.js';import'./chunk-VHFB4X3G.js';import'./chunk-T35C7PKW.js';import'./chunk-NGIUURK6.js';export{a as POLLS_PROTOCOL_VERSION,b as PollPreferredInterpretation,c as mapMetaChoicesToPollChoices}from'./chunk-NYCPGSYO.js';import'./chunk-PSJIJNHD.js';export{a as usePollVote}from'./chunk-3PTAGQNB.js';export{a as getPollQueryOptions}from'./chunk-LCKQOTIC.js';import'./chunk-FP26ILFN.js';export{a as validatePostCreating}from'./chunk-5NUYVHXZ.js';import'./chunk-NYW7HACN.js';import'./chunk-GJCBQBOH.js';import'./chunk-TFUM24AN.js';import'./chunk-ZPSLSWUQ.js';import'./chunk-LP6ZZTIN.js';import'./chunk-NBNL2ABL.js';import'./chunk-IVB62MVD.js';import'./chunk-4ZTCRHJP.js';import'./chunk-GHLZQPWZ.js';import'./chunk-Y4GTNDGQ.js';export{a as useUpdateDraft}from'./chunk-IBUCPNIG.js';export{a as useUpdateReply}from'./chunk-G2XFCED6.js';export{a as useUploadImage}from'./chunk-4WKMFQ56.js';export{b as applyVoteCacheUpdate,a as isVoteAlreadyReflected,c as useVote}from'./chunk-WZH52WKS.js';export{a as useCrossPost}from'./chunk-BO5BPQTD.js';export{a as useDeleteComment}from'./chunk-L46LMXFK.js';export{a as useDeleteDraft}from'./chunk-IT5ZKI7I.js';export{a as useDeleteImage}from'./chunk-E52DF54T.js';export{a as useDeleteSchedule}from'./chunk-MLH3CRYP.js';export{a as useMoveSchedule}from'./chunk-SV4VYSFQ.js';export{a as usePromote}from'./chunk-B5XTWOOC.js';export{a as useReblog}from'./chunk-GZM2CRLM.js';export{a as useAddFragment}from'./chunk-R5GYBJXA.js';export{a as useEditFragment}from'./chunk-DTE3IZTI.js';import'./chunk-MJDVSN4Y.js';export{a as useRemoveFragment}from'./chunk-UDDXN3ZZ.js';export{a as useAddDraft}from'./chunk-SLKUQ6O5.js';export{a as useAddImage}from'./chunk-BWOMCW4V.js';export{a as useAddSchedule}from'./chunk-2YFW4BXN.js';export{a as resolveContentActivityType,b as useComment}from'./chunk-B3X4CN7M.js';import'./chunk-GESKM645.js';export{a as addOptimisticDiscussionEntry,b as removeOptimisticDiscussionEntry,c as restoreDiscussionSnapshots,e as restoreEntryInCache,d as updateEntryInCache}from'./chunk-EC22EJ65.js';export{a as EntriesCacheManagement}from'./chunk-3FYJNYUV.js';import'./chunk-T3C7MPZI.js';import'./chunk-T5FBPBZA.js';export{l as addDraft,h as addImage,o as addSchedule,n as deleteDraft,k as deleteImage,p as deleteSchedule,f as getNotificationSetting,d as getNotifications,r as getPromotedPost,g as markNotifications,q as moveSchedule,s as onboardEmail,e as saveNotificationSetting,a as signUp,b as subscribeEmail,m as updateDraft,i as uploadImage,j as uploadImageWithSignature,c as usrActivity}from'./chunk-BC6L7IKU.js';import'./chunk-PADTBRHI.js';export{a as ContentModerationReason,e as getContentModerationReason,d as isAuthorMuted,b as isHiddenPost,c as isLowTrustSeoPost}from'./chunk-6MDF7HRS.js';import'./chunk-G5JY7TOQ.js';export{b as HIDDEN_POST_MIN_VOTES,a as HIDDEN_POST_RSHARES_THRESHOLD,c as LOW_TRUST_REPUTATION_THRESHOLD}from'./chunk-CIJQ2CJO.js';export{a as hasExternalLink}from'./chunk-O2SDZXWK.js';export{b as getDigestSubscriptionsRequest,f as getNewsletterIssuesRequest,g as getNewsletterPostsRequest,e as getNewsletterSenderRequest,c as leaveDigestRequest,h as previewNewsletterSendRequest,i as sendNewsletterIssueRequest,a as subscribeDigestRequest,d as unsubscribeAllDigestsRequest}from'./chunk-JL3A467J.js';export{a as NewsletterApiError,b as NewsletterSendRefusedError}from'./chunk-7G26LVL7.js';import'./chunk-Q32W5ZVA.js';import'./chunk-OD3BXUH7.js';export{a as getCurationPostQueryOptions}from'./chunk-6BLP2SQQ.js';export{a as CURATION_RECOMMENDATIONS_PAGE_SIZE,b as getCurationRecommendationsInfiniteQueryOptions}from'./chunk-BSP2NE6N.js';export{a as CURATION_FEED_PAGE_SIZE,b as CURATION_FEED_STALE_MS,d as dedupeCurationPages,c as dedupePagesBy,f as getCurationFeedInfiniteQueryOptions,e as selectCurationFeedPages}from'./chunk-23QBH52U.js';export{a as getCurationRecommenderQueryOptions}from'./chunk-VSYAPP65.js';export{a as getCurationRosterAdminQueryOptions}from'./chunk-LRBAAPTI.js';export{a as getCurationRosterQueryOptions}from'./chunk-RJD4DRRL.js';export{a as getCurationStatusQueryOptions}from'./chunk-FAJDD5XQ.js';import'./chunk-ZS37TSA2.js';export{a as normalizeBroadcastTrxId,b as useCurationRecommend}from'./chunk-RW4IPYI7.js';export{a as CurationApiError,q as curationCursorRequest,s as curationDismissRecoRequest,o as curationMarkClearRequest,n as curationMarkRequest,p as curationMyMarksRequest,r as curationRecommendMetaRequest,i as curationRosterFeedRequest,k as curationRosterListRequest,m as curationRosterRetireRequest,l as curationRosterSetRequest,j as curationTickRequest,c as fetchCurationFeedPage,h as fetchCurationPost,f as fetchCurationRecommendationsPage,g as fetchCurationRecommenderStats,e as fetchCurationRoster,d as fetchCurationStatus,b as normalizeCurationParams}from'./chunk-27TWZ3S7.js';export{d as CURATION_APPS,g as CURATION_FLAG_REASONS,f as CURATION_MARK_STATES,a as CURATION_REASONS,b as CURATION_SORTS,c as CURATION_VIEWS,e as CURATION_WINDOWS}from'./chunk-DBTM3NHO.js';import'./chunk-Z47334IZ.js';import'./chunk-HW2JDX62.js';export{a as gameClaimRequest,b as useGameClaim}from'./chunk-SGDJO6CF.js';import'./chunk-6XTHIKKI.js';export{a as getGameStatusCheckQueryOptions}from'./chunk-KYO6AQZO.js';import'./chunk-MZFOOSNO.js';import'./chunk-LFIQGW4J.js';import'./chunk-LTCTZTWV.js';import'./chunk-E6AVTQM6.js';import'./chunk-D3BXSCNB.js';import'./chunk-7ZQFDB5J.js';import'./chunk-YCJ6ITKZ.js';import'./chunk-URZDQ4RC.js';import'./chunk-O2XILO6Y.js';import'./chunk-2M7656Z5.js';import'./chunk-CGP5WLEN.js';import'./chunk-MXVEGA7V.js';import'./chunk-LGHM4T2P.js';import'./chunk-EC3XSQ3W.js';import'./chunk-T6JRXHX2.js';import'./chunk-NRYARUJ6.js';import'./chunk-2ADXSSFM.js';export{a as getHiveEngineUnclaimedRewardsQueryOptions}from'./chunk-OKHXWPWX.js';export{a as getHiveEngineBalancesWithUsdQueryOptions}from'./chunk-FCBON3NU.js';import'./chunk-JW2FMXBH.js';export{a as HiveEngineToken}from'./chunk-AEYCCH23.js';export{a as formattedNumber}from'./chunk-H6P3JKST.js';export{a as getHiveEngineTokenGeneralInfoQueryOptions}from'./chunk-SI22EXYM.js';export{a as getHiveAssetGeneralInfoQueryOptions}from'./chunk-RCNAGK2Q.js';export{a as getAllHiveEngineTokensQueryOptions}from'./chunk-U5TB2GOJ.js';export{a as getHiveEngineTokensMetricsQueryOptions}from'./chunk-PYDD6PLF.js';export{a as getHiveEngineTokenTransactionsQueryOptions}from'./chunk-3WF3MOCN.js';export{a as getHiveEngineTokensBalancesQueryOptions}from'./chunk-7OVL2VHR.js';export{a as getHiveEngineTokensMarketQueryOptions}from'./chunk-WLYATELA.js';export{a as getHiveEngineTokensMetadataQueryOptions}from'./chunk-MNUQD4VD.js';export{d as getHiveEngineMetrics,c as getHiveEngineOpenOrders,a as getHiveEngineOrderBook,i as getHiveEngineTokenMetrics,h as getHiveEngineTokenTransactions,f as getHiveEngineTokensBalances,e as getHiveEngineTokensMarket,g as getHiveEngineTokensMetadata,b as getHiveEngineTradeHistory,j as getHiveEngineUnclaimedRewards}from'./chunk-QKX5CO6H.js';import'./chunk-3CJSIICX.js';export{a as ThreeSpeakIntegration}from'./chunk-VQMU22RZ.js';import'./chunk-JR773DIW.js';import'./chunk-WVIS6GI2.js';import'./chunk-3PGB6BXX.js';import'./chunk-L3WLHLL7.js';import'./chunk-3VAPXV4C.js';import'./chunk-SPE376WZ.js';export{a as THREESPEAK_BENEFICIARY_ACCOUNT,b as THREESPEAK_BENEFICIARY_WEIGHT,d as enforceThreeSpeakBeneficiary,c as hasThreeSpeakEmbed,e as isThreeSpeakBeneficiary}from'./chunk-J2RSYJY7.js';import'./chunk-427WIQBA.js';import'./chunk-HN3FNZPH.js';export{a as getHivePoshLinksQueryOptions}from'./chunk-XFN4V4YP.js';export{a as HiveSignerIntegration}from'./chunk-AAEXP2VH.js';import'./chunk-SN4QY6WW.js';import'./chunk-RNLKBK7U.js';import'./chunk-BOC4ZCKN.js';import'./chunk-RLQQ5AYH.js';export{a as getStatsQueryOptions}from'./chunk-6SSSOZ3N.js';import'./chunk-RF65JQ4N.js';import'./chunk-QTSBWQN3.js';import'./chunk-FQC3GOL5.js';import'./chunk-TMD54KD6.js';import'./chunk-TN6M52BG.js';import'./chunk-XQ3JSYP3.js';import'./chunk-CA3ZNFIJ.js';import'./chunk-DRBJHZYB.js';import'./chunk-ZPA2E7DJ.js';export{a as getCurrentMedianHistoryPriceQueryOptions}from'./chunk-C3NO2DVX.js';export{a as getFeedHistoryQueryOptions}from'./chunk-FMQADCF4.js';export{a as getHiveHbdStatsQueryOptions}from'./chunk-63MKM5DT.js';export{a as getMarketDataQueryOptions}from'./chunk-M3K5DTGR.js';export{a as getMarketHistoryQueryOptions}from'./chunk-MDDCT7BS.js';export{a as getMarketStatisticsQueryOptions}from'./chunk-3RI3I7EI.js';export{a as getOrderBookQueryOptions}from'./chunk-D4TMU4UP.js';export{a as getTradeHistoryQueryOptions}from'./chunk-FXFYFSG3.js';import'./chunk-5IANTVAI.js';export{a as useLimitOrderCancel}from'./chunk-FTYLBBVF.js';export{a as useLimitOrderCreate}from'./chunk-2ASC3V2D.js';export{b as getCurrencyRate,d as getCurrencyRates,c as getCurrencyTokenRate,e as getHivePrice,a as getMarketData}from'./chunk-MZYPSQ3E.js';export{a as isDmcaCurationPath,c as maskDmcaCurationPages,b as maskDmcaCurationRow}from'./chunk-IB5AVAVA.js';export{b as isExcludedByFlags,a as isOnAbuseList}from'./chunk-DM7XOACW.js';import'./chunk-FBDRGX6R.js';import'./chunk-JEPIMNMP.js';export{a as getBadActorsQueryOptions}from'./chunk-JPB5PP73.js';import'./chunk-CZH6JK2O.js';export{b as getCommunityPermissions,a as getCommunityType}from'./chunk-WRFKAMQC.js';import'./chunk-7X55ONNC.js';import'./chunk-JGL7R625.js';export{a as ROLES,b as roleMap}from'./chunk-W44ZUQWY.js';import'./chunk-SBX6GRA7.js';import'./chunk-AKDSYBBN.js';import'./chunk-CAR5E4X6.js';export{a as getAccountNotificationsInfiniteQueryOptions}from'./chunk-IPUJY5AC.js';export{a as getCommunitiesQueryOptions}from'./chunk-WWSHY2RH.js';export{a as getCommunityContextQueryOptions}from'./chunk-4ISYBNGD.js';export{a as getCommunityQueryOptions}from'./chunk-IJEWTYPA.js';export{a as SUBSCRIBERS_PAGE_SIZE,c as getCommunitySubscribersInfiniteQueryOptions,b as getCommunitySubscribersQueryOptions}from'./chunk-7HAM4O2L.js';export{a as getRewardedCommunitiesQueryOptions}from'./chunk-OZDZIGY5.js';import'./chunk-TWMJ24GT.js';export{a as useUpdateCommunity}from'./chunk-JDIDJJJP.js';export{a as useMutePost}from'./chunk-XPUBZBUT.js';export{a as usePinPost}from'./chunk-QPZZAYI6.js';export{a as useRegisterCommunityRewards}from'./chunk-WH7I2UKW.js';export{a as useSetCommunityRole}from'./chunk-EQMP6VJI.js';export{a as useSubscribeCommunity}from'./chunk-NDA2SSCP.js';export{a as useUnsubscribeCommunity}from'./chunk-U6ZAKAGN.js';export{d as dedupeAndSortKeyAuths,a as getAccountFullQueryOptions,c as useAccountRelationsUpdate,i as useAccountRevokeKey,g as useAccountRevokePosting,b as useAccountUpdate,e as useAccountUpdateKeyAuths,f as useAccountUpdatePassword,h as useAccountUpdateRecovery}from'./chunk-ISZPF4EI.js';import'./chunk-4WKE2XGF.js';export{a as useAccountFavoriteAdd}from'./chunk-BCRZHIDE.js';export{a as useAccountFavoriteDelete}from'./chunk-PPUIB5BL.js';import'./chunk-UO5T3I3Y.js';export{a as useBookmarkAdd}from'./chunk-TUPSPHAD.js';export{a as useBookmarkDelete}from'./chunk-EBYMRQSY.js';import'./chunk-HJD6VPI2.js';export{a as useFavoriteTagAdd}from'./chunk-P3KO343Z.js';export{a as favoriteTagDeleteMutationOptions,b as useFavoriteTagDelete}from'./chunk-QHHMD72J.js';export{a as addFavoriteTagRequest,b as deleteFavoriteTagRequest}from'./chunk-DARVLG5G.js';import'./chunk-VZ3HC27T.js';import'./chunk-K6KG27QU.js';import'./chunk-MXZUXS2T.js';import'./chunk-DZJPBPDM.js';import'./chunk-Q6RU3KGW.js';import'./chunk-QXZV7SQZ.js';import'./chunk-43XPOPPI.js';import'./chunk-MG2CUUIU.js';import'./chunk-RRM3GFML.js';import'./chunk-YCSYCWOU.js';import'./chunk-64CXOUJ6.js';import'./chunk-FKVFBS2Q.js';import'./chunk-DMZUW7I3.js';export{a as getSearchFriendsQueryOptions}from'./chunk-UI5UUHGZ.js';export{a as ACCOUNT_OPERATION_GROUPS,b as ALL_ACCOUNT_OPERATIONS,c as getTransactionsInfiniteQueryOptions}from'./chunk-HRRZDP2G.js';export{a as lookupAccountsQueryOptions}from'./chunk-DWGBR3U4.js';export{a as getSearchAccountsByUsernameQueryOptions}from'./chunk-WSHI25RH.js';import'./chunk-CVCK6FCN.js';import'./chunk-RW7OFBMA.js';import'./chunk-4P43NNO2.js';export{a as getFollowingQueryOptions}from'./chunk-QLHPONWP.js';export{a as getFriendsInfiniteQueryOptions}from'./chunk-RUPBIXKT.js';export{a as getMutedUsersQueryOptions}from'./chunk-VQQAU2LB.js';export{a as getProMembersQueryOptions,b as proMembersSet}from'./chunk-OGQE2IXI.js';export{a as getProfilesQueryOptions}from'./chunk-MFPJI5UX.js';export{a as getReferralsInfiniteQueryOptions}from'./chunk-QVQS44RY.js';export{a as getReferralsStatsQueryOptions}from'./chunk-AZFWBGXS.js';export{a as getRelationshipBetweenAccountsQueryOptions}from'./chunk-3IAUVG4M.js';export{a as getBalanceHistoryInfiniteQueryOptions}from'./chunk-GP5PU4LQ.js';export{b as getBookmarksInfiniteQueryOptions,a as getBookmarksQueryOptions}from'./chunk-BYMCNRLQ.js';export{a as getBotsQueryOptions}from'./chunk-OS4F5F5X.js';export{a as getFavoriteTagCheckQueryOptions}from'./chunk-RQ37QCXG.js';export{b as getFavoriteTagsInfiniteQueryOptions,a as getFavoriteTagsQueryOptions}from'./chunk-D77PO2XF.js';export{b as getFavoritesInfiniteQueryOptions,a as getFavoritesQueryOptions}from'./chunk-Y5BVSYEI.js';export{a as getFollowCountQueryOptions}from'./chunk-EXA7CMQ7.js';export{a as getFollowersQueryOptions}from'./chunk-HJH6F4JF.js';export{a as getAccountPendingRecoveryQueryOptions}from'./chunk-BLZS6SWE.js';export{a as getAccountRecoveriesQueryOptions}from'./chunk-7QWCUQCC.js';export{a as getAccountReputationsQueryOptions}from'./chunk-C4OJWVSL.js';export{a as getAccountSubscriptionsQueryOptions}from'./chunk-KUAH2DDC.js';export{a as getAccountVoteHistoryInfiniteQueryOptions}from'./chunk-CEMSQO5C.js';export{a as getAccountsQueryOptions}from'./chunk-ADB3Z4AQ.js';export{a as getAggregatedBalanceQueryOptions}from'./chunk-G5RI7TAM.js';export{a as useClaimAccount}from'./chunk-VKCPRMZQ.js';export{a as useCreateAccount}from'./chunk-IOICGELH.js';export{a as useFollow}from'./chunk-QUQCSNPB.js';export{a as useGrantPostingPermission}from'./chunk-RAXKSEAC.js';export{a as useUnfollow}from'./chunk-JDUTDDWL.js';export{a as checkFavoriteQueryOptions}from'./chunk-CDNZEVB7.js';export{a as checkUsernameWalletsPendingQueryOptions}from'./chunk-TJMJNASC.js';export{b as buildRevokeKeysOp,a as canRevokeFromAuthority}from'./chunk-NT4ZVSWI.js';import'./chunk-7LYG3TN4.js';export{d as downVotingPower,c as powerRechargeTime,f as rcPower,e as rewardsToStakeRatio,b as votingPower,a as votingRshares,g as votingValue}from'./chunk-IOFQ5TE5.js';export{a as normalizeTag}from'./chunk-UAUQ6LK3.js';export{a as parseAccounts}from'./chunk-AZ7QNEWY.js';export{e as buildPostingJsonMetadata,f as buildProfileMetadata,b as extractAccountProfile,d as parsePostingMetadataRoot,a as parseProfileMetadata,c as pickRicherMetadataSnapshot}from'./chunk-BWMECQQM.js';export{a as accountNameByteLength,b as isQueryableAccountName}from'./chunk-HU5GXRZC.js';import'./chunk-YIEREOQK.js';export{a as getWavesTrendingAuthorsQueryOptions}from'./chunk-P5WF6ROR.js';export{a as getWavesTrendingTagsQueryOptions}from'./chunk-MVSRXAYE.js';export{a as getTrendingTagsQueryOptions}from'./chunk-D7NEZTJF.js';export{a as getTrendingTagsWithStatsQueryOptions}from'./chunk-7EPNELN6.js';export{a as getUserPostVoteQueryOptions}from'./chunk-KZL377G4.js';export{a as getWavesByAccountQueryOptions}from'./chunk-UUFYYXB7.js';export{a as getWavesByHostQueryOptions}from'./chunk-R7QIVOYV.js';export{a as getWavesByTagQueryOptions}from'./chunk-WMH56CV7.js';export{a as getWavesFeedQueryOptions,b as getWavesLatestFeedQueryOptions}from'./chunk-GWKWS4FN.js';export{a as getWavesFollowingQueryOptions}from'./chunk-OWBMCCUG.js';export{a as getPostQueryOptions}from'./chunk-NJGGSUIS.js';export{a as getPostTipsQueryOptions}from'./chunk-PV2BUL4S.js';export{a as getPostsRankedInfiniteQueryOptions,b as getPostsRankedQueryOptions}from'./chunk-RSXCAMZ2.js';export{a as getPromotedPostsQuery}from'./chunk-P7VYK3ZJ.js';export{a as getRebloggedByQueryOptions}from'./chunk-SFOJLAXQ.js';export{a as getReblogsQueryOptions}from'./chunk-4ENXSMO6.js';export{b as getSchedulesInfiniteQueryOptions,a as getSchedulesQueryOptions}from'./chunk-PMYQKXPJ.js';export{a as getShortsFeedQueryOptions}from'./chunk-CVEKIBVU.js';export{c as getVisibleFirstLevelThreadItems,d as mapThreadItemsToWaveEntries,a as normalizeWaveEntryFromApi,b as toEntryArray}from'./chunk-4ZN4YIPC.js';export{a as getDeletedEntryQueryOptions}from'./chunk-RMSMLAHC.js';export{a as SortOrder,d as getDiscussionQueryOptions,c as getDiscussionsQueryOptions,b as sortDiscussions}from'./chunk-3ZI5KHRM.js';export{b as getDraftsInfiniteQueryOptions,a as getDraftsQueryOptions}from'./chunk-YOVH5UVW.js';export{a as getEntryActiveVotesQueryOptions}from'./chunk-OYINSU2C.js';export{b as getFragmentsInfiniteQueryOptions,a as getFragmentsQueryOptions}from'./chunk-H3VSNOEB.js';export{b as getGalleryImagesQueryOptions,c as getImagesInfiniteQueryOptions,a as getImagesQueryOptions}from'./chunk-AJ4OSG3A.js';export{a as getNormalizePostQueryOptions}from'./chunk-RYN77CAO.js';export{a as getPostHeaderQueryOptions}from'./chunk-LVJVELHJ.js';export{a as getAccountPostsInfiniteQueryOptions,b as getAccountPostsQueryOptions}from'./chunk-ANIDU27S.js';export{a as getCommentHistoryQueryOptions}from'./chunk-DTFV5UWG.js';export{a as getContentQueryOptions}from'./chunk-X7QIV5LV.js';export{a as getContentRepliesQueryOptions}from'./chunk-XF62BAXI.js';import'./chunk-BQQBJVQK.js';export{c as buildProposalCreateOp,d as buildProposalVoteOp,e as buildRemoveProposalOp,f as buildUpdateProposalOp,b as buildWitnessProxyOp,a as buildWitnessVoteOp}from'./chunk-RZVMZQO7.js';export{a as BuySellTransactionType,b as OrderIdPrefix,f as buildClaimRewardBalanceOp,e as buildLimitOrderCancelOp,c as buildLimitOrderCreateOp,d as buildLimitOrderCreateOpWithType}from'./chunk-AEIA5MPL.js';export{a as buildFollowOp,c as buildIgnoreOp,e as buildSetLastReadOps,b as buildUnfollowOp,d as buildUnignoreOp}from'./chunk-K3LA2I7M.js';export{f as buildCancelTransferFromSavingsOp,g as buildClaimInterestOps,m as buildCollateralizedConvertOp,l as buildConvertOp,p as buildDelegateRcOp,j as buildDelegateVestingSharesOp,o as buildEngineClaimOp,n as buildEngineOp,b as buildMultiTransferOps,c as buildRecurrentTransferOp,k as buildSetWithdrawVestingRouteOp,e as buildTransferFromSavingsOp,a as buildTransferOp,d as buildTransferToSavingsOp,h as buildTransferToVestingOp,i as buildWithdrawVestingOp}from'./chunk-UKK6NLAT.js';export{c as buildAccountCreateOp,b as buildAccountUpdate2Op,a as buildAccountUpdateOp,h as buildChangeRecoveryAccountOp,e as buildClaimAccountOp,d as buildCreateClaimedAccountOp,f as buildGrantPostingPermissionOp,j as buildRecoverAccountOp,i as buildRequestAccountRecoveryOp,g as buildRevokePostingPermissionOp}from'./chunk-QYY3VHLJ.js';export{h as buildFlagPostOp,f as buildMutePostOp,g as buildMuteUserOp,e as buildPinPostOp,c as buildSetRoleOp,a as buildSubscribeOp,b as buildUnsubscribeOp,d as buildUpdateCommunityOp}from'./chunk-OBSTAXZB.js';export{b as buildCommentOp,c as buildCommentOptionsOp,d as buildDeleteCommentOp,e as buildReblogOp,a as buildVoteOp}from'./chunk-EOSE4FQA.js';export{i as buildActiveCustomJsonOp,a as buildBoostPlusOp,h as buildCommunityRegistrationOp,d as buildCurationRecommendOp,e as buildCurationUnrecommendOp,g as buildMultiPointTransferOps,f as buildPointTransferOp,j as buildPostingCustomJsonOp,c as buildPromoteOp,b as buildRcDelegationOp}from'./chunk-4COFIDSX.js';import'./chunk-OLWGQU5G.js';export{a as bridgeApiCall,d as getAccountPosts,i as getCommunities,h as getCommunity,g as getDiscussion,e as getPost,f as getPostHeader,c as getPostsRanked,n as getProfiles,m as getRelationshipBetweenAccounts,l as getSubscribers,k as getSubscriptions,j as normalizePost,b as resolvePost}from'./chunk-UVXZ4YTY.js';import'./chunk-KOW6RD5A.js';export{a as verifyPostOnAlternateNode}from'./chunk-SGLS2W3U.js';import'./chunk-UDTSZCKX.js';import'./chunk-IYNPA3LL.js';export{a as getAiGeneratePriceQueryOptions}from'./chunk-BORDHOQP.js';export{a as getAiImagesQueryOptions}from'./chunk-TW7DS2NF.js';export{a as getAiTranscribePriceQueryOptions}from'./chunk-C57XPJHI.js';import'./chunk-3T5UETKK.js';import'./chunk-VYGYMSIX.js';export{a as useAiAssist}from'./chunk-G3Z743HF.js';export{a as useAiTranscribe}from'./chunk-VS7MHMIU.js';export{a as invalidateGenerateImageCaches,b as useGenerateImage}from'./chunk-TWXS72BS.js';export{a as getAiAssistPriceQueryOptions}from'./chunk-7R2QU6TT.js';import'./chunk-43SXBWKK.js';import'./chunk-EYTMAOL5.js';export{a as getDiscoverLeaderboardQueryOptions}from'./chunk-6POI64N4.js';export{a as getPageStatsQueryOptions}from'./chunk-B5PLC54M.js';import'./chunk-HYUT6RGC.js';import'./chunk-OVWINIEX.js';import'./chunk-H2AJTU6C.js';import'./chunk-RPC3RKDZ.js';export{a as getDiscoverCurationQueryOptions}from'./chunk-Y2SFTEVM.js';export{a as EcencyAnalytics}from'./chunk-GVIJPBYU.js';export{a as useRecordActivity}from'./chunk-PEL4IET7.js';import'./chunk-RXSU3TYG.js';export{a as hsTokenRenew}from'./chunk-3XW7V3AZ.js';import'./chunk-FRKFK4CP.js';export{a as getDynamicPropsQueryOptions,b as getRewardFundQueryOptions}from'./chunk-ZSXZEEHA.js';import'./chunk-HYWGW2KG.js';import'./chunk-SWB5BEBJ.js';import'./chunk-PRS4VWQ6.js';import'./chunk-7FGO3WVP.js';import'./chunk-ZOBESNHF.js';import'./chunk-AZAGIEQM.js';export{a as broadcastJson}from'./chunk-GIH5UFQA.js';export{a as BROADCAST_INCLUSION_DELAY_MS,b as invalidateAfterBroadcast}from'./chunk-CNB64U7U.js';export{a as useBroadcastMutation}from'./chunk-4ETWXS3L.js';import'./chunk-SYDLFCXU.js';export{a as ErrorType,c as formatError,f as isInfoError,g as isNetworkError,e as isResourceCreditsError,b as parseChainError,d as shouldTriggerAuthFallback}from'./chunk-M37RR3MH.js';import'./chunk-SPR2OKTO.js';export{a as getBoundFetch}from'./chunk-SEACJS36.js';export{a as isCommunity}from'./chunk-573LJIGZ.js';export{a as isEmptyDate}from'./chunk-W3MCL2F4.js';export{a as isWrappedResponse,b as normalizeToWrappedResponse}from'./chunk-ASN6FTIA.js';export{b as NaiMap,a as Symbol,c as parseAsset}from'./chunk-32QJ72HH.js';export{a as vestsToHp}from'./chunk-ZMMG2HSI.js';export{b as decodeObj,a as encodeObj}from'./chunk-QKTP4NPT.js';export{c as broadcastOperations,d as broadcastOperationsAsync,f as calculateRCMana,e as calculateVPMana,b as isWif,a as sha256}from'./chunk-4TJ4KSFV.js';export{c as EcencyQueriesManager,b as getQueryClient,a as makeQueryClient}from'./chunk-VZPJHJWH.js';export{c as CONFIG,d as ConfigManager,a as INTERNAL_API_TIMEOUT_MS,b as SERVER_GC_TIME_MS}from'./chunk-PS3MSD25.js';export{a as QueryKeys}from'./chunk-6SASR6MC.js';export{a as utf8ByteLength,b as varintByteLength}from'./chunk-JKLDB3J3.js';export{a as withTimeoutSignal}from'./chunk-JDGZ4DHM.js';import'./chunk-PSJ6RBU7.js';export{a as Memo}from'./chunk-XI5ATHCU.js';export{e as hiveTxUtils}from'./chunk-B2ML2BDO.js';export{a as PrivateKey}from'./chunk-CPEOHI6I.js';import'./chunk-APUAN7MV.js';import'./chunk-W6CLJQB7.js';export{a as HiveTxTransaction}from'./chunk-NFECEVG5.js';import'./chunk-FKX7MTR7.js';import'./chunk-SZZYFGT3.js';export{l as callREST,j as callRPC,k as callRPCBroadcast,m as callWithQuorum}from'./chunk-UB5YHSMC.js';import'./chunk-PQSG5K4Y.js';export{b as PublicKey,a as Signature}from'./chunk-GLLSYDNK.js';import'./chunk-KT7GFFA7.js';export{a as hiveTxConfig}from'./chunk-S364K442.js';import'./chunk-C32KFGFA.js';import'./chunk-G27OY2BI.js';import'./chunk-OS3FCYZY.js';//# sourceMappingURL=index.js.map //# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/packages/sdk/dist/browser/modules/notifications/index.js b/packages/sdk/dist/browser/modules/notifications/index.js index 7061b6b52c..8c35e22c47 100644 --- a/packages/sdk/dist/browser/modules/notifications/index.js +++ b/packages/sdk/dist/browser/modules/notifications/index.js @@ -1,2 +1,2 @@ -import'../../chunk-KVW2RKGQ.js';import'../../chunk-L7DZG4SC.js';import'../../chunk-L5KOWVW4.js';import'../../chunk-2JPCHMLX.js';import'../../chunk-YYJ2IDAN.js';import'../../chunk-IS2437KO.js';export{a as getAnnouncementsQueryOptions}from'../../chunk-6X7SZGR2.js';export{a as getNotificationsInfiniteQueryOptions}from'../../chunk-TMWS2AOE.js';export{a as getNotificationsSettingsQueryOptions}from'../../chunk-VQTDYIJA.js';export{a as getNotificationsUnreadCountQueryOptions}from'../../chunk-6EHAT3L6.js';export{a as getSpotlightsQueryOptions}from'../../chunk-TIZYKOHR.js';import'../../chunk-PJLT54LJ.js';export{a as NotificationFilter}from'../../chunk-FN4YAGAN.js';export{b as ALL_NOTIFY_TYPES,c as NotificationViewType,a as NotifyTypes}from'../../chunk-UQ7TLT2E.js';import'../../chunk-LBD4TLFC.js';export{a as useMarkNotificationsRead}from'../../chunk-UT226ZD7.js';export{a as useSetLastRead}from'../../chunk-2IVGAXUS.js';import'../../chunk-BC6L7IKU.js';import'../../chunk-BQQBJVQK.js';import'../../chunk-RZVMZQO7.js';import'../../chunk-AEIA5MPL.js';import'../../chunk-K3LA2I7M.js';import'../../chunk-UKK6NLAT.js';import'../../chunk-QYY3VHLJ.js';import'../../chunk-OBSTAXZB.js';import'../../chunk-EOSE4FQA.js';import'../../chunk-4COFIDSX.js';import'../../chunk-ZSXZEEHA.js';import'../../chunk-HYWGW2KG.js';import'../../chunk-SWB5BEBJ.js';import'../../chunk-PRS4VWQ6.js';import'../../chunk-7FGO3WVP.js';import'../../chunk-ZOBESNHF.js';import'../../chunk-AZAGIEQM.js';import'../../chunk-GIH5UFQA.js';import'../../chunk-CNB64U7U.js';import'../../chunk-4ETWXS3L.js';import'../../chunk-SYDLFCXU.js';import'../../chunk-M37RR3MH.js';import'../../chunk-SPR2OKTO.js';import'../../chunk-SEACJS36.js';import'../../chunk-573LJIGZ.js';import'../../chunk-W3MCL2F4.js';import'../../chunk-ASN6FTIA.js';import'../../chunk-32QJ72HH.js';import'../../chunk-ZMMG2HSI.js';import'../../chunk-QKTP4NPT.js';import'../../chunk-4TJ4KSFV.js';import'../../chunk-VZPJHJWH.js';import'../../chunk-PS3MSD25.js';import'../../chunk-6SASR6MC.js';import'../../chunk-JKLDB3J3.js';import'../../chunk-JDGZ4DHM.js';import'../../chunk-PSJ6RBU7.js';import'../../chunk-XI5ATHCU.js';import'../../chunk-B2ML2BDO.js';import'../../chunk-CPEOHI6I.js';import'../../chunk-APUAN7MV.js';import'../../chunk-W6CLJQB7.js';import'../../chunk-NFECEVG5.js';import'../../chunk-FKX7MTR7.js';import'../../chunk-SZZYFGT3.js';import'../../chunk-UB5YHSMC.js';import'../../chunk-PQSG5K4Y.js';import'../../chunk-GLLSYDNK.js';import'../../chunk-KT7GFFA7.js';import'../../chunk-S364K442.js';import'../../chunk-C32KFGFA.js';import'../../chunk-G27OY2BI.js';import'../../chunk-OS3FCYZY.js';//# sourceMappingURL=index.js.map +import'../../chunk-KVW2RKGQ.js';import'../../chunk-L7DZG4SC.js';import'../../chunk-L5KOWVW4.js';import'../../chunk-2JPCHMLX.js';import'../../chunk-YYJ2IDAN.js';import'../../chunk-IS2437KO.js';export{a as getAnnouncementsQueryOptions}from'../../chunk-6X7SZGR2.js';export{a as getNotificationsInfiniteQueryOptions}from'../../chunk-TMWS2AOE.js';export{a as getNotificationsSettingsQueryOptions}from'../../chunk-VQTDYIJA.js';export{a as getNotificationsUnreadCountQueryOptions}from'../../chunk-GOO7V6OB.js';export{a as getSpotlightsQueryOptions}from'../../chunk-TIZYKOHR.js';import'../../chunk-PJLT54LJ.js';export{a as NotificationFilter}from'../../chunk-FN4YAGAN.js';export{b as ALL_NOTIFY_TYPES,c as NotificationViewType,a as NotifyTypes}from'../../chunk-UQ7TLT2E.js';import'../../chunk-LBD4TLFC.js';export{a as useMarkNotificationsRead}from'../../chunk-UT226ZD7.js';export{a as useSetLastRead}from'../../chunk-2IVGAXUS.js';import'../../chunk-BC6L7IKU.js';import'../../chunk-BQQBJVQK.js';import'../../chunk-RZVMZQO7.js';import'../../chunk-AEIA5MPL.js';import'../../chunk-K3LA2I7M.js';import'../../chunk-UKK6NLAT.js';import'../../chunk-QYY3VHLJ.js';import'../../chunk-OBSTAXZB.js';import'../../chunk-EOSE4FQA.js';import'../../chunk-4COFIDSX.js';import'../../chunk-ZSXZEEHA.js';import'../../chunk-HYWGW2KG.js';import'../../chunk-SWB5BEBJ.js';import'../../chunk-PRS4VWQ6.js';import'../../chunk-7FGO3WVP.js';import'../../chunk-ZOBESNHF.js';import'../../chunk-AZAGIEQM.js';import'../../chunk-GIH5UFQA.js';import'../../chunk-CNB64U7U.js';import'../../chunk-4ETWXS3L.js';import'../../chunk-SYDLFCXU.js';import'../../chunk-M37RR3MH.js';import'../../chunk-SPR2OKTO.js';import'../../chunk-SEACJS36.js';import'../../chunk-573LJIGZ.js';import'../../chunk-W3MCL2F4.js';import'../../chunk-ASN6FTIA.js';import'../../chunk-32QJ72HH.js';import'../../chunk-ZMMG2HSI.js';import'../../chunk-QKTP4NPT.js';import'../../chunk-4TJ4KSFV.js';import'../../chunk-VZPJHJWH.js';import'../../chunk-PS3MSD25.js';import'../../chunk-6SASR6MC.js';import'../../chunk-JKLDB3J3.js';import'../../chunk-JDGZ4DHM.js';import'../../chunk-PSJ6RBU7.js';import'../../chunk-XI5ATHCU.js';import'../../chunk-B2ML2BDO.js';import'../../chunk-CPEOHI6I.js';import'../../chunk-APUAN7MV.js';import'../../chunk-W6CLJQB7.js';import'../../chunk-NFECEVG5.js';import'../../chunk-FKX7MTR7.js';import'../../chunk-SZZYFGT3.js';import'../../chunk-UB5YHSMC.js';import'../../chunk-PQSG5K4Y.js';import'../../chunk-GLLSYDNK.js';import'../../chunk-KT7GFFA7.js';import'../../chunk-S364K442.js';import'../../chunk-C32KFGFA.js';import'../../chunk-G27OY2BI.js';import'../../chunk-OS3FCYZY.js';//# sourceMappingURL=index.js.map //# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/packages/sdk/dist/browser/modules/notifications/queries/get-notifications-unread-count-query-options.js b/packages/sdk/dist/browser/modules/notifications/queries/get-notifications-unread-count-query-options.js index ea99ea93c1..5c0c8a2009 100644 --- a/packages/sdk/dist/browser/modules/notifications/queries/get-notifications-unread-count-query-options.js +++ b/packages/sdk/dist/browser/modules/notifications/queries/get-notifications-unread-count-query-options.js @@ -1,2 +1,2 @@ -export{a as getNotificationsUnreadCountQueryOptions}from'../../../chunk-6EHAT3L6.js';import'../../../chunk-ZSXZEEHA.js';import'../../../chunk-HYWGW2KG.js';import'../../../chunk-SWB5BEBJ.js';import'../../../chunk-PRS4VWQ6.js';import'../../../chunk-7FGO3WVP.js';import'../../../chunk-ZOBESNHF.js';import'../../../chunk-AZAGIEQM.js';import'../../../chunk-GIH5UFQA.js';import'../../../chunk-CNB64U7U.js';import'../../../chunk-4ETWXS3L.js';import'../../../chunk-SYDLFCXU.js';import'../../../chunk-M37RR3MH.js';import'../../../chunk-SPR2OKTO.js';import'../../../chunk-SEACJS36.js';import'../../../chunk-573LJIGZ.js';import'../../../chunk-W3MCL2F4.js';import'../../../chunk-ASN6FTIA.js';import'../../../chunk-32QJ72HH.js';import'../../../chunk-ZMMG2HSI.js';import'../../../chunk-QKTP4NPT.js';import'../../../chunk-4TJ4KSFV.js';import'../../../chunk-VZPJHJWH.js';import'../../../chunk-PS3MSD25.js';import'../../../chunk-6SASR6MC.js';import'../../../chunk-JKLDB3J3.js';import'../../../chunk-JDGZ4DHM.js';import'../../../chunk-PSJ6RBU7.js';import'../../../chunk-XI5ATHCU.js';import'../../../chunk-B2ML2BDO.js';import'../../../chunk-CPEOHI6I.js';import'../../../chunk-APUAN7MV.js';import'../../../chunk-W6CLJQB7.js';import'../../../chunk-NFECEVG5.js';import'../../../chunk-FKX7MTR7.js';import'../../../chunk-SZZYFGT3.js';import'../../../chunk-UB5YHSMC.js';import'../../../chunk-PQSG5K4Y.js';import'../../../chunk-GLLSYDNK.js';import'../../../chunk-KT7GFFA7.js';import'../../../chunk-S364K442.js';import'../../../chunk-C32KFGFA.js';import'../../../chunk-G27OY2BI.js';import'../../../chunk-OS3FCYZY.js';//# sourceMappingURL=get-notifications-unread-count-query-options.js.map +export{a as getNotificationsUnreadCountQueryOptions}from'../../../chunk-GOO7V6OB.js';import'../../../chunk-ZSXZEEHA.js';import'../../../chunk-HYWGW2KG.js';import'../../../chunk-SWB5BEBJ.js';import'../../../chunk-PRS4VWQ6.js';import'../../../chunk-7FGO3WVP.js';import'../../../chunk-ZOBESNHF.js';import'../../../chunk-AZAGIEQM.js';import'../../../chunk-GIH5UFQA.js';import'../../../chunk-CNB64U7U.js';import'../../../chunk-4ETWXS3L.js';import'../../../chunk-SYDLFCXU.js';import'../../../chunk-M37RR3MH.js';import'../../../chunk-SPR2OKTO.js';import'../../../chunk-SEACJS36.js';import'../../../chunk-573LJIGZ.js';import'../../../chunk-W3MCL2F4.js';import'../../../chunk-ASN6FTIA.js';import'../../../chunk-32QJ72HH.js';import'../../../chunk-ZMMG2HSI.js';import'../../../chunk-QKTP4NPT.js';import'../../../chunk-4TJ4KSFV.js';import'../../../chunk-VZPJHJWH.js';import'../../../chunk-PS3MSD25.js';import'../../../chunk-6SASR6MC.js';import'../../../chunk-JKLDB3J3.js';import'../../../chunk-JDGZ4DHM.js';import'../../../chunk-PSJ6RBU7.js';import'../../../chunk-XI5ATHCU.js';import'../../../chunk-B2ML2BDO.js';import'../../../chunk-CPEOHI6I.js';import'../../../chunk-APUAN7MV.js';import'../../../chunk-W6CLJQB7.js';import'../../../chunk-NFECEVG5.js';import'../../../chunk-FKX7MTR7.js';import'../../../chunk-SZZYFGT3.js';import'../../../chunk-UB5YHSMC.js';import'../../../chunk-PQSG5K4Y.js';import'../../../chunk-GLLSYDNK.js';import'../../../chunk-KT7GFFA7.js';import'../../../chunk-S364K442.js';import'../../../chunk-C32KFGFA.js';import'../../../chunk-G27OY2BI.js';import'../../../chunk-OS3FCYZY.js';//# sourceMappingURL=get-notifications-unread-count-query-options.js.map //# sourceMappingURL=get-notifications-unread-count-query-options.js.map \ No newline at end of file diff --git a/packages/sdk/dist/browser/modules/notifications/queries/index.js b/packages/sdk/dist/browser/modules/notifications/queries/index.js index d982f50b18..2f1030c545 100644 --- a/packages/sdk/dist/browser/modules/notifications/queries/index.js +++ b/packages/sdk/dist/browser/modules/notifications/queries/index.js @@ -1,2 +1,2 @@ -import'../../../chunk-IS2437KO.js';export{a as getAnnouncementsQueryOptions}from'../../../chunk-6X7SZGR2.js';export{a as getNotificationsInfiniteQueryOptions}from'../../../chunk-TMWS2AOE.js';export{a as getNotificationsSettingsQueryOptions}from'../../../chunk-VQTDYIJA.js';export{a as getNotificationsUnreadCountQueryOptions}from'../../../chunk-6EHAT3L6.js';export{a as getSpotlightsQueryOptions}from'../../../chunk-TIZYKOHR.js';import'../../../chunk-PJLT54LJ.js';import'../../../chunk-FN4YAGAN.js';import'../../../chunk-UQ7TLT2E.js';import'../../../chunk-ZSXZEEHA.js';import'../../../chunk-HYWGW2KG.js';import'../../../chunk-SWB5BEBJ.js';import'../../../chunk-PRS4VWQ6.js';import'../../../chunk-7FGO3WVP.js';import'../../../chunk-ZOBESNHF.js';import'../../../chunk-AZAGIEQM.js';import'../../../chunk-GIH5UFQA.js';import'../../../chunk-CNB64U7U.js';import'../../../chunk-4ETWXS3L.js';import'../../../chunk-SYDLFCXU.js';import'../../../chunk-M37RR3MH.js';import'../../../chunk-SPR2OKTO.js';import'../../../chunk-SEACJS36.js';import'../../../chunk-573LJIGZ.js';import'../../../chunk-W3MCL2F4.js';import'../../../chunk-ASN6FTIA.js';import'../../../chunk-32QJ72HH.js';import'../../../chunk-ZMMG2HSI.js';import'../../../chunk-QKTP4NPT.js';import'../../../chunk-4TJ4KSFV.js';import'../../../chunk-VZPJHJWH.js';import'../../../chunk-PS3MSD25.js';import'../../../chunk-6SASR6MC.js';import'../../../chunk-JKLDB3J3.js';import'../../../chunk-JDGZ4DHM.js';import'../../../chunk-PSJ6RBU7.js';import'../../../chunk-XI5ATHCU.js';import'../../../chunk-B2ML2BDO.js';import'../../../chunk-CPEOHI6I.js';import'../../../chunk-APUAN7MV.js';import'../../../chunk-W6CLJQB7.js';import'../../../chunk-NFECEVG5.js';import'../../../chunk-FKX7MTR7.js';import'../../../chunk-SZZYFGT3.js';import'../../../chunk-UB5YHSMC.js';import'../../../chunk-PQSG5K4Y.js';import'../../../chunk-GLLSYDNK.js';import'../../../chunk-KT7GFFA7.js';import'../../../chunk-S364K442.js';import'../../../chunk-C32KFGFA.js';import'../../../chunk-G27OY2BI.js';import'../../../chunk-OS3FCYZY.js';//# sourceMappingURL=index.js.map +import'../../../chunk-IS2437KO.js';export{a as getAnnouncementsQueryOptions}from'../../../chunk-6X7SZGR2.js';export{a as getNotificationsInfiniteQueryOptions}from'../../../chunk-TMWS2AOE.js';export{a as getNotificationsSettingsQueryOptions}from'../../../chunk-VQTDYIJA.js';export{a as getNotificationsUnreadCountQueryOptions}from'../../../chunk-GOO7V6OB.js';export{a as getSpotlightsQueryOptions}from'../../../chunk-TIZYKOHR.js';import'../../../chunk-PJLT54LJ.js';import'../../../chunk-FN4YAGAN.js';import'../../../chunk-UQ7TLT2E.js';import'../../../chunk-ZSXZEEHA.js';import'../../../chunk-HYWGW2KG.js';import'../../../chunk-SWB5BEBJ.js';import'../../../chunk-PRS4VWQ6.js';import'../../../chunk-7FGO3WVP.js';import'../../../chunk-ZOBESNHF.js';import'../../../chunk-AZAGIEQM.js';import'../../../chunk-GIH5UFQA.js';import'../../../chunk-CNB64U7U.js';import'../../../chunk-4ETWXS3L.js';import'../../../chunk-SYDLFCXU.js';import'../../../chunk-M37RR3MH.js';import'../../../chunk-SPR2OKTO.js';import'../../../chunk-SEACJS36.js';import'../../../chunk-573LJIGZ.js';import'../../../chunk-W3MCL2F4.js';import'../../../chunk-ASN6FTIA.js';import'../../../chunk-32QJ72HH.js';import'../../../chunk-ZMMG2HSI.js';import'../../../chunk-QKTP4NPT.js';import'../../../chunk-4TJ4KSFV.js';import'../../../chunk-VZPJHJWH.js';import'../../../chunk-PS3MSD25.js';import'../../../chunk-6SASR6MC.js';import'../../../chunk-JKLDB3J3.js';import'../../../chunk-JDGZ4DHM.js';import'../../../chunk-PSJ6RBU7.js';import'../../../chunk-XI5ATHCU.js';import'../../../chunk-B2ML2BDO.js';import'../../../chunk-CPEOHI6I.js';import'../../../chunk-APUAN7MV.js';import'../../../chunk-W6CLJQB7.js';import'../../../chunk-NFECEVG5.js';import'../../../chunk-FKX7MTR7.js';import'../../../chunk-SZZYFGT3.js';import'../../../chunk-UB5YHSMC.js';import'../../../chunk-PQSG5K4Y.js';import'../../../chunk-GLLSYDNK.js';import'../../../chunk-KT7GFFA7.js';import'../../../chunk-S364K442.js';import'../../../chunk-C32KFGFA.js';import'../../../chunk-G27OY2BI.js';import'../../../chunk-OS3FCYZY.js';//# sourceMappingURL=index.js.map //# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/packages/sdk/dist/node/index.cjs b/packages/sdk/dist/node/index.cjs index a49ff1358e..7be85a9e68 100644 --- a/packages/sdk/dist/node/index.cjs +++ b/packages/sdk/dist/node/index.cjs @@ -1,4 +1,4 @@ -'use strict';var reactQuery=require('@tanstack/react-query'),utils_js=require('@noble/hashes/utils.js'),legacy_js=require('@noble/hashes/legacy.js'),Mn=require('bs58'),secp256k1_js=require('@noble/curves/secp256k1.js'),sha2_js=require('@noble/hashes/sha2.js'),aes_js=require('@noble/ciphers/aes.js'),Co=require('hivesigner');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var Mn__default=/*#__PURE__*/_interopDefault(Mn);var Co__default=/*#__PURE__*/_interopDefault(Co);var Is=Object.defineProperty;var kt=(e,t)=>{for(var r in t)Is(e,r,{get:t[r],enumerable:true});};var Tt=new ArrayBuffer(0),Ft=null,qt=null;function Ds(){return Ft||(typeof TextEncoder<"u"?Ft=new TextEncoder:Ft={encode(e){let t=[];for(let r=0;r>6,128|n&63);else if(n>=55296&&n<=56319&&r+1>18,128|n>>12&63,128|n>>6&63,128|n&63);}else t.push(224|n>>12,128|n>>6&63,128|n&63);}return new Uint8Array(t)}}),Ft}function Tn(){return qt||(typeof TextDecoder<"u"?qt=new TextDecoder:qt={decode(e){let t=e instanceof ArrayBuffer?new Uint8Array(e):new Uint8Array(e.buffer,e.byteOffset,e.byteLength),r="";for(let n=0;n>10),56320+(i&1023)));}return r}}),qt}var D=class e{static LITTLE_ENDIAN=true;static BIG_ENDIAN=false;static DEFAULT_CAPACITY=16;static DEFAULT_ENDIAN=e.BIG_ENDIAN;buffer;view;offset;markedOffset;limit;littleEndian;constructor(t=e.DEFAULT_CAPACITY,r=e.DEFAULT_ENDIAN){this.buffer=t===0?Tt:new ArrayBuffer(t),this.view=t===0?new DataView(Tt):new DataView(this.buffer),this.offset=0,this.markedOffset=-1,this.limit=t,this.littleEndian=r;}static allocate(t,r){return new e(t,r)}static concat(t,r){let n=0;for(let a=0;a0&&(n.buffer=t.buffer,n.offset=t.byteOffset,n.limit=t.byteOffset+t.byteLength,n.view=new DataView(t.buffer));else if(t instanceof ArrayBuffer)n=new e(0,r),t.byteLength>0&&(n.buffer=t,n.offset=0,n.limit=t.byteLength,n.view=t.byteLength>0?new DataView(t):new DataView(Tt));else if(Array.isArray(t))n=new e(t.length,r),n.limit=t.length,new Uint8Array(n.buffer).set(t);else throw TypeError("Illegal buffer");return n}writeBytes(t,r){return this.append(t,r)}writeInt8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setInt8(r,t),n&&(this.offset+=1),this}writeByte(t,r){return this.writeInt8(t,r)}writeUint8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setUint8(r,t),n&&(this.offset+=1),this}writeUInt8(t,r){return this.writeUint8(t,r)}readUint8(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint8(t);return r&&(this.offset+=1),n}readUInt8(t){return this.readUint8(t)}writeInt16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setInt16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeShort(t,r){return this.writeInt16(t,r)}writeUint16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setUint16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeUInt16(t,r){return this.writeUint16(t,r)}writeInt32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setInt32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeInt(t,r){return this.writeInt32(t,r)}writeUint32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setUint32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeUInt32(t,r){return this.writeUint32(t,r)}readUint32(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint32(t,this.littleEndian);return r&&(this.offset+=4),n}readUInt32=this.readUint32;append(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o;return t instanceof e?(o=new Uint8Array(t.buffer,t.offset,t.limit-t.offset),t.offset+=o.length):t instanceof Uint8Array?o=t:t instanceof ArrayBuffer?o=new Uint8Array(t):o=new Uint8Array(t),o.length<=0?this:(r+o.length>this.buffer.byteLength&&this.resize(r+o.length),new Uint8Array(this.buffer).set(o,r),n&&(this.offset+=o.length),this)}clone(t){let r=new e(0,this.littleEndian);return t?(r.buffer=new ArrayBuffer(this.buffer.byteLength),new Uint8Array(r.buffer).set(new Uint8Array(this.buffer)),r.view=new DataView(r.buffer)):(r.buffer=this.buffer,r.view=this.view),r.offset=this.offset,r.markedOffset=this.markedOffset,r.limit=this.limit,r}copy(t,r){if(t===void 0&&(t=this.offset),r===void 0&&(r=this.limit),t===r)return new e(0,this.littleEndian);let n=r-t,o=new e(n,this.littleEndian);return o.offset=0,o.limit=n,new Uint8Array(o.buffer).set(new Uint8Array(this.buffer).subarray(t,r),0),o}copyTo(t,r,n,o){let i=typeof r>"u",s=typeof n>"u";r=i?t.offset:r,n=s?this.offset:n,o=o===void 0?this.limit:o;let a=o-n;return a===0?t:(t.ensureCapacity(r+a),new Uint8Array(t.buffer).set(new Uint8Array(this.buffer).subarray(n,o),r),s&&(this.offset+=a),i&&(t.offset+=a),this)}ensureCapacity(t){let r=this.buffer.byteLength;return rt?r:t):this}flip(){return this.limit=this.offset,this.offset=0,this}resize(t){if(this.buffer.byteLength"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigInt64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeLong(t,r){return this.writeInt64(t,r)}readInt64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigInt64(t,this.littleEndian);return r&&(this.offset+=8),n}readLong(t){return this.readInt64(t)}writeUint64(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigUint64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeUInt64(t,r){return this.writeUint64(t,r)}readUint64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigUint64(t,this.littleEndian);return r&&(this.offset+=8),n}readUInt64(t){return this.readUint64(t)}toBuffer(t){let r=this.offset,n=this.limit;return !t&&r===0&&n===this.buffer.byteLength?this.buffer:r===n?Tt:this.buffer.slice(r,n)}toArrayBuffer(t){return this.toBuffer(t)}writeVarint32(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=this.calculateVarint32(t);for(r+o>this.buffer.byteLength&&this.resize(r+o),t>>>=0;t>=128;)this.view.setUint8(r++,t&127|128),t>>>=7;return this.view.setUint8(r++,t),n?(this.offset=r,this):o}readVarint32(t){let r=typeof t>"u";typeof t>"u"&&(t=this.offset);let n=0,o=0,i;do i=this.view.getUint8(t++),n<5&&(o|=(i&127)<<7*n),++n;while((i&128)!==0);return o|=0,r?(this.offset=t,o):{value:o,length:n}}calculateVarint32(t){return t=t>>>0,t<128?1:t<16384?2:t<1<<21?3:t<1<<28?4:5}writeVString(t,r){let n=typeof r>"u",o=n?this.offset:r,i=Ds().encode(t),s=i.length,a=this.calculateVarint32(s);return o+a+s>this.buffer.byteLength&&this.resize(o+a+s),this.writeVarint32(s,o),o+=a,new Uint8Array(this.buffer).set(i,o),o+=s,n?(this.offset=o,this):o-(r||0)}readVString(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=t,o=this.readVarint32(t),i=o.value,s=o.length;t+=s;let a=Tn().decode(new Uint8Array(this.buffer,t,i));return t+=i,r?(this.offset=t,a):{string:a,length:t-n}}readUTF8String(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=Tn().decode(new Uint8Array(this.buffer,r,t));return n?(this.offset+=t,o):{string:o,length:t}}};var O={nodes:["https://api.hive.blog","https://api.deathwing.me","https://api.openhive.network","https://api.syncad.com","https://rpc.mahdiyari.info"],restNodes:["https://api.hive.blog","https://rpc.mahdiyari.info","https://api.syncad.com","https://hiveapi.actifit.io","https://api.c0ff33a.uk"],restNodesByApi:{hivesense:["https://api.hive.blog","https://api.syncad.com"]},userAgent:"ecency-sdk",chain_id:"beeab0de00000000000000000000000000000000000000000000000000000000",address_prefix:"STM",timeout:5e3,broadcastTimeout:15e3,retry:5,resilience:{adaptiveTimeout:true,adaptiveTimeoutFloorMs:2e3,adaptiveTimeoutFactor:4,hedge:false,hedgeDelayFloorMs:750,hedgeDelayFactor:2,hedgeBucketCapacity:10,hedgeRefillPerSuccess:.1,totalBudgetFactor:2}},Fn=["bridge.get_ranked_posts","bridge.get_account_posts","bridge.get_post","bridge.get_discussion","bridge.get_profile","bridge.get_profiles","bridge.get_community","bridge.list_communities","condenser_api.get_accounts","condenser_api.get_content","condenser_api.get_dynamic_global_properties","condenser_api.get_trending_tags"],It=null,yr=e=>{if(e===null){It=null;return}if(!e||typeof e!="object")return;let t=typeof e.url=="string"?e.url.trim():"";if(!/^https?:\/\//i.test(t))return;let r={};if(e.headers&&typeof e.headers=="object")for(let[s,a]of Object.entries(e.headers))typeof a=="string"&&a&&!/[\u0000-\u001f\u007f]/.test(a)&&!/[\u0000-\u001f\u007f]/.test(s)&&(r[s]=a);let n=typeof e.timeoutMs=="number"&&Number.isFinite(e.timeoutMs)&&e.timeoutMs>0?e.timeoutMs:2e3,o=e.methods===void 0?[...Fn]:Array.isArray(e.methods)?e.methods.filter(s=>typeof s=="string"&&s.includes(".")):[];if(o.length===0)return;let i=(s,a)=>typeof s=="number"&&Number.isFinite(s)&&s>0?s:a;It={url:t,headers:r,timeoutMs:n,methods:o,failureThreshold:Math.floor(i(e.failureThreshold,3)),cooldownMs:i(e.cooldownMs,1e4),methodSet:new Set(o)};},hr=e=>Array.isArray(e)?[...new Set(e.filter(t=>typeof t=="string").map(t=>t.trim().replace(/\/+$/,"")).filter(t=>t.length>0&&/^https?:\/\/.+/.test(t)))]:[],_r=e=>{let t=hr(e);t.length&&(O.nodes=t);},wr=e=>{let t=hr(e);t.length&&(O.restNodes=t);},br=e=>{if(!e||typeof e!="object")return;let t={...O.restNodesByApi};for(let[r,n]of Object.entries(e)){let o=hr(n);o.length?t[r]=o:delete t[r];}O.restNodesByApi=t;},vr=e=>{if(typeof e!="string")return;let t=e.trim();!t||/[\u0000-\u001f\u007f]/.test(t)||(O.userAgent=t);},Ar=e=>{if(!e||typeof e!="object")return;let t=O.resilience,r=o=>typeof o=="boolean",n=o=>typeof o=="number"&&Number.isFinite(o)&&o>0;r(e.adaptiveTimeout)&&(t.adaptiveTimeout=e.adaptiveTimeout),n(e.adaptiveTimeoutFloorMs)&&(t.adaptiveTimeoutFloorMs=Math.max(e.adaptiveTimeoutFloorMs,2e3)),n(e.adaptiveTimeoutFactor)&&(t.adaptiveTimeoutFactor=e.adaptiveTimeoutFactor),r(e.hedge)&&(t.hedge=e.hedge),n(e.hedgeDelayFloorMs)&&(t.hedgeDelayFloorMs=e.hedgeDelayFloorMs),n(e.hedgeDelayFactor)&&(t.hedgeDelayFactor=e.hedgeDelayFactor),n(e.hedgeBucketCapacity)&&(t.hedgeBucketCapacity=e.hedgeBucketCapacity),n(e.hedgeRefillPerSuccess)&&(t.hedgeRefillPerSuccess=Math.min(e.hedgeRefillPerSuccess,1)),n(e.totalBudgetFactor)&&(t.totalBudgetFactor=Math.max(e.totalBudgetFactor,1));};var Re=class e{data;recovery;compressed;constructor(t,r,n){this.data=t,this.recovery=r,this.compressed=n??true;}static from(t){if(typeof t=="string"){let r=utils_js.hexToBytes(t),n=parseInt(utils_js.bytesToHex(r.subarray(0,1)),16)-31,o=true;n<0&&(o=false,n=n+4);let i=r.subarray(1);return new e(i,n,o)}else throw new Error("Expected string for data")}toBuffer(){let t=new Uint8Array(65).fill(0);return this.compressed?t[0]=this.recovery+31&255:t[0]=this.recovery+27&255,t.set(this.data,1),t}customToString(){return utils_js.bytesToHex(this.toBuffer())}toString(){return this.customToString()}getPublicKey(t){if(t instanceof Uint8Array&&t.length!==32||typeof t=="string"&&t.length!==64)throw new Error("Expected a valid sha256 hash as message");typeof t=="string"&&(t=utils_js.hexToBytes(t));let r=secp256k1_js.secp256k1.Signature.fromBytes(this.data,"compact"),n=new secp256k1_js.secp256k1.Signature(r.r,r.s,this.recovery);return new Y(n.recoverPublicKey(t).toBytes())}};var Y=class e{key;prefix;constructor(t,r){this.key=t,this.prefix=r??O.address_prefix;}static fromString(t){let r=O.address_prefix;if(typeof t!="string"||t.length<=r.length)throw new Error("Invalid public key");let n=t.slice(0,r.length);if(n!==r)throw new Error(`Public key must start with ${r}`);let o;try{o=Mn__default.default.decode(t.slice(r.length));}catch{throw new Error("Invalid public key encoding")}if(o.length!==37)throw new Error("Invalid public key length");let i=o.subarray(0,33),s=o.subarray(33,37),a=legacy_js.ripemd160(i).subarray(0,4);if(!Ns(s,a))throw new Error("Public key checksum mismatch");try{secp256k1_js.secp256k1.Point.fromBytes(i);}catch{throw new Error("Invalid public key")}return new e(i,n)}static from(t){return t instanceof e?t:e.fromString(t)}verify(t,r){return typeof r=="string"&&(r=Re.from(r)),secp256k1_js.secp256k1.verify(r.data,t,this.key,{prehash:false,format:"compact"})}toString(){return Ks(this.key,this.prefix)}toJSON(){return this.toString()}inspect(){return `PublicKey: ${this.toString()}`}},Ks=(e,t)=>{let r=legacy_js.ripemd160(e);return t+Mn__default.default.encode(new Uint8Array([...e,...r.subarray(0,4)]))},Ns=(e,t)=>{if(e.byteLength!==t.byteLength)return false;for(let r=0;r{throw new Error("Void can not be serialized")},b=(e,t)=>{e.writeVString(t);},Qs=(e,t)=>{e.writeInt16(t);},Qn=(e,t)=>{e.writeInt64(t);},Bn=(e,t)=>{e.writeUint8(t);},pe=(e,t)=>{e.writeUint16(t);},X=(e,t)=>{e.writeUint32(t);},Un=(e,t)=>{e.writeUint64(t);},be=(e,t)=>{e.writeByte(t?1:0);},Hn=e=>(t,r)=>{let[n,o]=r;t.writeVarint32(n),e[n](t,o);},I=(e,t)=>{let r=Dt.from(t),n=r.getPrecision();e.writeInt64(Math.round(r.amount*Math.pow(10,n))),e.writeUint8(n);for(let o=0;o<7;o++)e.writeUint8(r.symbol.charCodeAt(o)||0);},ke=(e,t)=>{e.writeUint32(Math.floor(new Date(t+"Z").getTime()/1e3));},ye=(e,t)=>{t===null||typeof t=="string"&&t.slice(-39)==="1111111111111111111111111111111114T1Anm"?e.append(new Uint8Array(33).fill(0)):e.append(Y.from(t).key);},Vn=(e=null)=>(t,r)=>{r=Kt.from(r);let n=r.buffer.length;if(e){if(n!==e)throw new Error(`Unable to serialize binary. Expected ${e} bytes, got ${n}`)}else t.writeVarint32(n);t.append(r.buffer);},jn=Vn(),Pr=(e,t)=>(r,n)=>{r.writeVarint32(n.length);for(let[o,i]of n)e(r,o),t(r,i);},V=e=>(t,r)=>{t.writeVarint32(r.length);for(let n of r)e(t,n);},le=e=>(t,r)=>{for(let[n,o]of e)try{o(t,r[n]);}catch(i){throw i.message=`${n}: ${i.message}`,i}},Me=e=>(t,r)=>{r!==void 0?(t.writeByte(1),e(t,r)):t.writeByte(0);},W=le([["weight_threshold",X],["account_auths",Pr(b,pe)],["key_auths",Pr(ye,pe)]]),Us=le([["account",b],["weight",pe]]),xr=le([["base",I],["quote",I]]),Hs=le([["account_creation_fee",I],["maximum_block_size",X],["hbd_interest_rate",pe]]),k=(e,t)=>{let r=le(t);return (n,o)=>{n.writeVarint32(e),r(n,o);}},E={};E.account_create=k(R.account_create,[["fee",I],["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b]]);E.account_create_with_delegation=k(R.account_create_with_delegation,[["fee",I],["delegation",I],["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b],["extensions",V(se)]]);E.account_update=k(R.account_update,[["account",b],["owner",Me(W)],["active",Me(W)],["posting",Me(W)],["memo_key",ye],["json_metadata",b]]);E.account_witness_proxy=k(R.account_witness_proxy,[["account",b],["proxy",b]]);E.account_witness_vote=k(R.account_witness_vote,[["account",b],["witness",b],["approve",be]]);E.cancel_transfer_from_savings=k(R.cancel_transfer_from_savings,[["from",b],["request_id",X]]);E.change_recovery_account=k(R.change_recovery_account,[["account_to_recover",b],["new_recovery_account",b],["extensions",V(se)]]);E.claim_account=k(R.claim_account,[["creator",b],["fee",I],["extensions",V(se)]]);E.claim_reward_balance=k(R.claim_reward_balance,[["account",b],["reward_hive",I],["reward_hbd",I],["reward_vests",I]]);E.comment=k(R.comment,[["parent_author",b],["parent_permlink",b],["author",b],["permlink",b],["title",b],["body",b],["json_metadata",b]]);E.comment_options=k(R.comment_options,[["author",b],["permlink",b],["max_accepted_payout",I],["percent_hbd",pe],["allow_votes",be],["allow_curation_rewards",be],["extensions",V(Hn([le([["beneficiaries",V(Us)]])]))]]);E.convert=k(R.convert,[["owner",b],["requestid",X],["amount",I]]);E.create_claimed_account=k(R.create_claimed_account,[["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b],["extensions",V(se)]]);E.custom=k(R.custom,[["required_auths",V(b)],["id",pe],["data",jn]]);E.custom_json=k(R.custom_json,[["required_auths",V(b)],["required_posting_auths",V(b)],["id",b],["json",b]]);E.decline_voting_rights=k(R.decline_voting_rights,[["account",b],["decline",be]]);E.delegate_vesting_shares=k(R.delegate_vesting_shares,[["delegator",b],["delegatee",b],["vesting_shares",I]]);E.delete_comment=k(R.delete_comment,[["author",b],["permlink",b]]);E.escrow_approve=k(R.escrow_approve,[["from",b],["to",b],["agent",b],["who",b],["escrow_id",X],["approve",be]]);E.escrow_dispute=k(R.escrow_dispute,[["from",b],["to",b],["agent",b],["who",b],["escrow_id",X]]);E.escrow_release=k(R.escrow_release,[["from",b],["to",b],["agent",b],["who",b],["receiver",b],["escrow_id",X],["hbd_amount",I],["hive_amount",I]]);E.escrow_transfer=k(R.escrow_transfer,[["from",b],["to",b],["hbd_amount",I],["hive_amount",I],["escrow_id",X],["agent",b],["fee",I],["json_meta",b],["ratification_deadline",ke],["escrow_expiration",ke]]);E.feed_publish=k(R.feed_publish,[["publisher",b],["exchange_rate",xr]]);E.limit_order_cancel=k(R.limit_order_cancel,[["owner",b],["orderid",X]]);E.limit_order_create=k(R.limit_order_create,[["owner",b],["orderid",X],["amount_to_sell",I],["min_to_receive",I],["fill_or_kill",be],["expiration",ke]]);E.limit_order_create2=k(R.limit_order_create2,[["owner",b],["orderid",X],["amount_to_sell",I],["exchange_rate",xr],["fill_or_kill",be],["expiration",ke]]);E.recover_account=k(R.recover_account,[["account_to_recover",b],["new_owner_authority",W],["recent_owner_authority",W],["extensions",V(se)]]);E.request_account_recovery=k(R.request_account_recovery,[["recovery_account",b],["account_to_recover",b],["new_owner_authority",W],["extensions",V(se)]]);E.reset_account=k(R.reset_account,[["reset_account",b],["account_to_reset",b],["new_owner_authority",W]]);E.set_reset_account=k(R.set_reset_account,[["account",b],["current_reset_account",b],["reset_account",b]]);E.set_withdraw_vesting_route=k(R.set_withdraw_vesting_route,[["from_account",b],["to_account",b],["percent",pe],["auto_vest",be]]);E.transfer=k(R.transfer,[["from",b],["to",b],["amount",I],["memo",b]]);E.transfer_from_savings=k(R.transfer_from_savings,[["from",b],["request_id",X],["to",b],["amount",I],["memo",b]]);E.transfer_to_savings=k(R.transfer_to_savings,[["from",b],["to",b],["amount",I],["memo",b]]);E.transfer_to_vesting=k(R.transfer_to_vesting,[["from",b],["to",b],["amount",I]]);E.vote=k(R.vote,[["voter",b],["author",b],["permlink",b],["weight",Qs]]);E.withdraw_vesting=k(R.withdraw_vesting,[["account",b],["vesting_shares",I]]);E.witness_update=k(R.witness_update,[["owner",b],["url",b],["block_signing_key",ye],["props",Hs],["fee",I]]);E.witness_set_properties=k(R.witness_set_properties,[["owner",b],["props",Pr(b,jn)],["extensions",V(se)]]);E.account_update2=k(R.account_update2,[["account",b],["owner",Me(W)],["active",Me(W)],["posting",Me(W)],["memo_key",Me(ye)],["json_metadata",b],["posting_json_metadata",b],["extensions",V(se)]]);E.create_proposal=k(R.create_proposal,[["creator",b],["receiver",b],["start_date",ke],["end_date",ke],["daily_pay",I],["subject",b],["permlink",b],["extensions",V(se)]]);E.update_proposal_votes=k(R.update_proposal_votes,[["voter",b],["proposal_ids",V(Qn)],["approve",be],["extensions",V(se)]]);E.remove_proposal=k(R.remove_proposal,[["proposal_owner",b],["proposal_ids",V(Qn)],["extensions",V(se)]]);var Vs=le([["end_date",ke]]);E.update_proposal=k(R.update_proposal,[["proposal_id",Un],["creator",b],["daily_pay",I],["subject",b],["permlink",b],["extensions",V(Hn([se,Vs]))]]);E.collateralized_convert=k(R.collateralized_convert,[["owner",b],["requestid",X],["amount",I]]);E.recurrent_transfer=k(R.recurrent_transfer,[["from",b],["to",b],["amount",I],["memo",b],["recurrence",pe],["executions",pe],["extensions",V(le([["type",Bn],["value",le([["pair_id",Bn]])]]))]]);var js=(e,t)=>{let r=E[t[0]];if(!r)throw new Error(`No serializer for operation: ${t[0]}`);try{r(e,t[1]);}catch(n){throw n.message=`${t[0]}: ${n.message}`,n}},Ls=le([["ref_block_num",pe],["ref_block_prefix",X],["expiration",ke],["operations",V(js)],["extensions",V(b)]]),$s=le([["from",ye],["to",ye],["nonce",Un],["check",X],["encrypted",Vn()]]),de={Asset:I,Memo:$s,Price:xr,PublicKey:ye,String:b,Transaction:Ls,UInt16:pe,UInt32:X};var lt=e=>new Promise(t=>setTimeout(t,e));var Jn=(()=>{try{return !(typeof navigator<"u"&&navigator.product==="ReactNative")&&typeof process<"u"&&process.versions!=null&&process.versions.node!=null}catch{return false}})();function Rr(){return Jn?{"User-Agent":O.userAgent}:{}}var Fe={served:0,fallback:0,skipped:0,fallbackByReason:{status:0,rpcerror:0,timeout:0,transport:0,validate:0,parse:0}},qe=class extends Error{constructor(r,n){super(n);this.reason=r;}reason},Ln=e=>e instanceof Error?e.message:typeof e=="string"?e:String(e),Nt=0,$n=0;async function Ws(e,t,r,n,o,i){let s=t.indexOf(".");if(s<=0||s===t.length-1)throw new qe("transport",`method without an api prefix: ${t}`);let{signal:a,cleanup:c}=Tr(Math.min(e.timeoutMs,n)),{signal:p,cleanup:l}=Ut(a,o);try{let m;try{m=await fetch(e.url,{method:"POST",body:JSON.stringify({api:t.slice(0,s),method:t.slice(s+1),params:r}),headers:{"Content-Type":"application/json",...Rr(),...e.headers},signal:p});}catch(g){throw o?.aborted?g:new qe(a.aborted?"timeout":"transport",Ln(g))}if(m.status!==200){try{await m.body?.cancel();}catch{}let g=m.status===502&&(m.headers.get("x-ssr-cache")??"").toUpperCase()==="RPCERROR";throw new qe(g?"rpcerror":"status",g?"proxy relayed a node error":`proxy answered ${m.status}`)}let f;try{f=await m.json();}catch(g){throw o?.aborted?g:new qe(a.aborted?"timeout":"parse",Ln(g))}if(i&&!i(f))throw new qe("validate","proxy result rejected by validator");return f}finally{c(),l();}}var Z=class extends Error{name="RPCError";data;code;stack=void 0;constructor(t){super(t.message),this.code=t.code,"data"in t&&(this.data=t.data);}},Be=class extends Error{node;rateLimitMs;isRateLimit;constructor(t,r,n={}){super(r),this.node=t,this.rateLimitMs=n.rateLimitMs??0,this.isRateLimit=n.isRateLimit??false;}};function Yn(e){if(!e)return 0;let t=Number(e);if(Number.isFinite(t))return t>0?t*1e3:0;let r=Date.parse(e);if(Number.isFinite(r)){let n=r-Date.now();return n>0?n:0}return 0}var Gs=["ECONNREFUSED","ENOTFOUND","EHOSTUNREACH","EAI_AGAIN"],zs=["Failed to fetch","NetworkError when attempting to fetch","Load failed","fetch failed"];function Js(e){if(!e)return "";let t=[String(e.name||""),String(e.message||""),String(e.code||"")],r=e.cause;for(let n=0;r&&n<5;n++)t.push(String(r.code||""),String(r.message||"")),r=r.cause;return t.join(" ")}function Ys(e){if(!e)return false;if(e instanceof Be)return true;if(e instanceof Z)return false;let t=Js(e);return !!(Gs.some(r=>t.includes(r))||zs.some(r=>t.includes(r))||e instanceof SyntaxError||/Unexpected token|JSON\.parse|Unexpected end of JSON/i.test(t))}function Or(e,t){return !!(e===-32603||e<=-32e3&&e>=-32099||e===-32601||e===-32602&&/unable to parse|endpoint data|internal/i.test(t))}function Xn(e){let t=e.indexOf(".");return t>0?e.slice(0,t):e}var Xs=1e4,Zs=6e4,ea=12e4,Wn=2,Gn=6e4,zn=12e4,ta=30,dt=.3,Sr=3,mt=5*6e4,Zn=6e4,eo=1e3,to=2e3,Bt=class{health=new Map;getOrCreate(t){let r=this.health.get(t);return r||(r={consecutiveFailures:0,lastFailureTime:0,rateLimitedUntil:0,rateLimitStreak:0,lastRateLimitAt:0,apiFailures:new Map,headBlock:0,headBlockUpdatedAt:0,ewmaLatencyMs:void 0,latencySampleCount:0,latencyUpdatedAt:0,lastProbeAt:Date.now(),apiLatency:new Map},this.health.set(t,r)),r}recordSuccess(t,r,n,o){let i=this.getOrCreate(t);if(i.consecutiveFailures=0,i.rateLimitStreak=0,r){let s=i.apiFailures.get(r);(!s||!(s.defective&&s.cooldownUntil>Date.now()))&&i.apiFailures.delete(r);}typeof n=="number"&&Number.isFinite(n)&&n>=0&&this.recordLatency(i,n,o??r);}recordSlowFailure(t,r,n){!Number.isFinite(r)||r=Sr&&o-i.updatedAt<=mt?i.ewmaMs:void 0}return this.isLatencyUsable(n,o)?n.ewmaLatencyMs:void 0}recordCensoredLatency(t,r,n){!Number.isFinite(r)||r<50||this.recordLatency(this.getOrCreate(t),r,n);}recordLatency(t,r,n){let o=Date.now();if(t.latencyUpdatedAt>0&&o-t.latencyUpdatedAt>mt&&(t.ewmaLatencyMs=void 0,t.latencySampleCount=0,t.apiLatency.clear()),t.ewmaLatencyMs=t.ewmaLatencyMs===void 0?r:dt*r+(1-dt)*t.ewmaLatencyMs,t.latencySampleCount++,t.latencyUpdatedAt=o,n!==void 0){let i=t.apiLatency.get(n);!i||o-i.updatedAt>mt?t.apiLatency.set(n,{ewmaMs:r,sampleCount:1,updatedAt:o}):(i.ewmaMs=dt*r+(1-dt)*i.ewmaMs,i.sampleCount++,i.updatedAt=o);}}recordFailure(t,r){let n=this.getOrCreate(t);if(r){let o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};(i.cooldownUntil>0&&i.cooldownUntil<=o||i.lastFailureTime>0&&o-i.lastFailureTime>3e4)&&(i.count=0,i.cooldownUntil=0),i.count++,i.lastFailureTime=o,i.count>=Wn&&(i.cooldownUntil=o+Gn),n.apiFailures.set(r,i);}else n.consecutiveFailures++,n.lastFailureTime=Date.now();}recordDefectiveResponse(t,r){let n=this.getOrCreate(t),o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};i.count=Math.max(i.count+1,Wn),i.lastFailureTime=o,i.cooldownUntil=o+Gn,i.defective=true,n.apiFailures.set(r,i);}recordRateLimit(t,r){let n=this.getOrCreate(t),o=Date.now();n.rateLimitStreak>0&&o-n.lastRateLimitAt>ea&&(n.rateLimitStreak=0);let i=typeof r=="number"&&Number.isFinite(r)&&r>0,s=i?r:Math.min(Xs*2**n.rateLimitStreak,Zs);i||n.rateLimitStreak++,n.lastRateLimitAt=o,n.rateLimitedUntil=i?o+s:Math.max(n.rateLimitedUntil,o+s),n.consecutiveFailures++,n.lastFailureTime=o;}recordHeadBlock(t,r){if(!r||!Number.isFinite(r))return;let n=this.getOrCreate(t);n.headBlock=r,n.headBlockUpdatedAt=Date.now();}consensusHeadBlock(){let t=Date.now(),r=[];for(let n of this.health.values())n.headBlock>0&&t-n.headBlockUpdatedAt<=zn&&r.push(n.headBlock);return r.length<2?0:(r.sort((n,o)=>n-o),r[Math.floor((r.length-1)/2)])}isNodeHealthy(t,r){let n=this.health.get(t);if(!n)return true;let o=Date.now();if(n.rateLimitedUntil>o||n.consecutiveFailures>=3&&o-n.lastFailureTime<3e4)return false;if(r){let s=n.apiFailures.get(r);if(s&&s.cooldownUntil>o)return false}let i=this.consensusHeadBlock();return !(i>0&&n.headBlock>0&&o-n.headBlockUpdatedAt<=zn&&i-n.headBlock>ta)}getOrderedNodes(t,r){let n=[],o=[];for(let c of t)this.isNodeHealthy(c,r)?n.push(c):o.push(c);if(n.length<=1)return [...n,...o];let i=Date.now(),s=n.map((c,p)=>({node:c,i:p,score:this.scoreNode(c,i)})).sort((c,p)=>c.score-p.score||c.i-p.i).map(c=>c.node),a=this.pickReprobeCandidate(n,i);return a&&s[0]!==a?[a,...s.filter(c=>c!==a),...o]:[...s,...o]}isLatencyUsable(t,r){return !!t&&t.ewmaLatencyMs!==void 0&&t.latencySampleCount>=Sr&&r-t.latencyUpdatedAt<=mt}scoreNode(t,r){let n=this.health.get(t);return this.isLatencyUsable(n,r)?n.ewmaLatencyMs:eo}pickReprobeCandidate(t,r){let n=r-Zn,o,i=1/0;for(let s of t){let a=this.getOrCreate(s),c=Math.max(a.latencyUpdatedAt,a.lastProbeAt);c<=n&&c=1-1e-9?(this.tokens-=1,true):false}refill(){this.clamp(),this.tokens=Math.min(O.resilience.hedgeBucketCapacity,this.tokens+O.resilience.hedgeRefillPerSuccess);}clamp(){this.tokens>O.resilience.hedgeBucketCapacity&&(this.tokens=O.resilience.hedgeBucketCapacity);}get available(){return this.tokens}reset(t=O.resilience.hedgeBucketCapacity){this.tokens=t;}},Er=new Cr;function Qt(e,t,r,n,o){let i=O.resilience;if(!i.adaptiveTimeout||o)return n;let s=e.getUsableLatencyMs(t,r);return s===void 0?n:Math.ceil(Math.min(n,Math.max(i.adaptiveTimeoutFloorMs,i.adaptiveTimeoutFactor*s)))}function kr(e,t,r,n){r instanceof Be?r.isRateLimit?e.recordRateLimit(t,r.rateLimitMs||void 0):e.recordFailure(t,n):r instanceof Z?e.recordFailure(t,n):e.recordFailure(t);}function ro(e,t,r,n){if(!n||typeof n!="object"||!r.includes("get_dynamic_global_properties"))return;let o=n.head_block_number;typeof o=="number"&&e.recordHeadBlock(t,o);}function ra(){if(typeof DOMException<"u")return new DOMException("The operation was aborted due to timeout","TimeoutError");let e=new Error("The operation was aborted due to timeout");return e.name="TimeoutError",e}function Tr(e){if(e=Math.ceil(e),typeof AbortSignal.timeout=="function")return {signal:AbortSignal.timeout(e),cleanup:()=>{}};let t=new AbortController,r=setTimeout(()=>t.abort(ra()),e);return {signal:t.signal,cleanup:()=>clearTimeout(r)}}function Ut(e,t){if(!t)return {signal:e,cleanup:()=>{}};if(typeof AbortSignal.any=="function")return {signal:AbortSignal.any([e,t]),cleanup:()=>{}};let r=new AbortController;if(e.aborted)return r.abort(e.reason),{signal:r.signal,cleanup:()=>{}};if(t.aborted)return r.abort(t.reason),{signal:r.signal,cleanup:()=>{}};let n=()=>r.abort(e.reason),o=()=>r.abort(t.reason);e.addEventListener("abort",n,{once:true}),t.addEventListener("abort",o,{once:true});let i=()=>{e.removeEventListener("abort",n),t.removeEventListener("abort",o);};return {signal:r.signal,cleanup:i}}var ft=async(e,t,r,n=O.timeout,o=false,i)=>{let s=Math.floor(Math.random()*1e8),a={jsonrpc:"2.0",method:t,params:r,id:s},{signal:c,cleanup:p}=Tr(n),{signal:l,cleanup:m}=Ut(c,i),f=()=>{p(),m();};try{let g=await fetch(e,{method:"POST",body:JSON.stringify(a),headers:{"Content-Type":"application/json",...Rr()},signal:l});if(g.status===429)throw new Be(e,"HTTP 429 Rate Limited",{rateLimitMs:Yn(g.headers.get("Retry-After")),isRateLimit:!0});if(g.status>=500&&g.status<600)throw new Be(e,`HTTP ${g.status} from ${e}`);let _=await g.json();if(!_||typeof _.id>"u"||_.id!==s||_.jsonrpc!=="2.0")throw new Error("JSONRPC id mismatch");if("result"in _)return _.result;if("error"in _){let A=_.error;throw "message"in A&&"code"in A?new Z(A):_.error}throw _}catch(g){if(g instanceof Z||g instanceof Be||i?.aborted)throw g;if(o)return ft(e,t,r,n,false,i);throw g}finally{f();}};function Mt(){return lt(50+Math.random()*50)}function na(e){let{method:t,params:r,api:n,primary:o,hedgePool:i,callerTimeout:s,explicitTimeout:a,deadlineAt:c,externalSignal:p,onHedgeFired:l,validate:m}=e;return new Promise((f,g)=>{let _=false,A=0,x=false,C=false,F,ce,Ee=0,P=[],H=$=>{if(!_){_=true,ce!==void 0&&(clearTimeout(ce),ce=void 0);for(let q of P)q.signal.aborted||q.abort();$();}},L=($,q)=>{A++;let ge=new AbortController;P.push(ge);let pt=Ut(ge.signal,p),qs=Qt(j,$,t,s,a),gr=Date.now();q||(Ee=gr),ft($,t,r,qs,false,pt.signal).then(ie=>{if(pt.cleanup(),A--,q||(C=true),!_){if(m&&!m(ie)){if(j.recordDefectiveResponse($,n),F=new Error(`[hive-tx] response validation failed for ${t} from ${$}`),!q&&!x){H(()=>g(F));return}A===0&&H(()=>g(F));return}j.recordSuccess($,n,Date.now()-gr,t),ro(j,$,t,ie),q?C||j.recordCensoredLatency(o,Date.now()-Ee,t):x||Er.refill(),H(()=>f(ie));}}).catch(ie=>{if(pt.cleanup(),A--,q||(C=true),!_){if(p?.aborted){H(()=>g(ie));return}if(ie instanceof Z&&!Or(ie.code,ie.message)){H(()=>g(ie));return}if(kr(j,$,ie,n),j.recordSlowFailure($,Date.now()-gr,t),F=ie,!q&&!x){H(()=>g(ie));return}A===0&&H(()=>g(F));}});};L(o,false);let Q=j.getUsableLatencyMs(o,t)??0,J=Qt(j,o,t,s,a),z=Math.min(Math.max(O.resilience.hedgeDelayFloorMs,O.resilience.hedgeDelayFactor*Q),.8*J);ce=setTimeout(()=>{if(ce=void 0,_||p?.aborted||Date.now()>=c)return;let $=i.filter(ge=>j.isNodeHealthy(ge,n));if($.length===0)return;let q=$[Math.floor(Math.random()*$.length)];Er.trySpend()&&(x=true,l(q),L(q,true));},z);})}var y=async(e,t=[],r,n=O.retry,o,i)=>{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an array");if(O.nodes.length===0)throw new Error("config.nodes is empty");let s=r!==void 0,a=r??O.timeout,c=Xn(e),p=It;if(p&&Jn&&p.methodSet.has(e))if(Date.now()<$n)Fe.skipped++;else try{let g=await Ws(p,e,t,a,o,i);return Fe.served++,Nt=0,g}catch(g){if(o?.aborted)throw g;Fe.fallback++;let _=g instanceof qe?g.reason:"transport";Fe.fallbackByReason[_]=(Fe.fallbackByReason[_]??0)+1,_==="rpcerror"?Nt=0:++Nt>=p.failureThreshold&&($n=Date.now()+p.cooldownMs,Nt=0);}let l=Date.now()+O.resilience.totalBudgetFactor*a,m=new Set,f;for(let g=0;g<=n&&!(g>0&&Date.now()>=l);g++){let _=j.getOrderedNodes(O.nodes,c),A=_.find(F=>!m.has(F));A||(m.clear(),A=_[0]),m.add(A);let x=[];if(O.resilience.hedge&&j.getUsableLatencyMs(A,e)!==void 0&&(x=_.filter(F=>!m.has(F)&&j.isNodeHealthy(F,c)).slice(0,3)),x.length>0)try{return await na({method:e,params:t,api:c,primary:A,hedgePool:x,callerTimeout:a,explicitTimeout:s,deadlineAt:l,externalSignal:o,onHedgeFired:F=>m.add(F),validate:i})}catch(F){if(F instanceof Z&&!Or(F.code,F.message)||o?.aborted)throw F;f=F,g{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an array");if(O.nodes.length===0)throw new Error("config.nodes is empty");let o=Xn(e),i=new Set,s;for(let a=0;a!i.has(l));if(!p)break;if(i.add(p),n?.aborted)throw new Error("Aborted");try{let l=await ft(p,e,t,r,!1,n);return j.recordSuccess(p,o),l}catch(l){if(l instanceof Z||n?.aborted||(kr(j,p,l,o),s=l,!Ys(l)))throw l}}throw s},oa={balance:"/balance-api",hafah:"/hafah-api",hafbe:"/hafbe-api",hivemind:"/hivemind-api",hivesense:"/hivesense-api",reputation:"/reputation-api","nft-tracker":"/nft-tracker-api",hafsql:"/hafsql",status:"/status-api"};async function te(e,t,r,n,o=O.retry,i){if(!Array.isArray(O.restNodes))throw new Error("config.restNodes is not an array");if(O.restNodes.length===0)throw new Error("config.restNodes is empty");let s=n!==void 0,a=n??O.timeout,c=Date.now()+O.resilience.totalBudgetFactor*a,p=`${e}:${t}`,l=O.restNodesByApi?.[e]?.length?O.restNodesByApi[e]:O.restNodes,m=new Set,f,g=false;for(let _=0;_<=o&&!(_>0&&Date.now()>=c);_++){let A=Te.getOrderedNodes(l,e),x=A.find(q=>!m.has(q));x||(m.clear(),x=A[0]),m.add(x);let C=x+oa[e],F=t,ce=r||{},Ee=new Set;Object.entries(ce).forEach(([q,ge])=>{F.includes(`{${q}}`)&&(F=F.replace(`{${q}}`,encodeURIComponent(String(ge))),Ee.add(q));});let P=new URL(C+F);if(Object.entries(ce).forEach(([q,ge])=>{Ee.has(q)||(Array.isArray(ge)?ge.forEach(pt=>P.searchParams.append(q,String(pt))):P.searchParams.set(q,String(ge)));}),i?.aborted)throw new Error("Aborted");g=false;let{signal:H,cleanup:L}=Tr(Qt(Te,x,p,a,s)),{signal:Q,cleanup:J}=Ut(H,i),z=()=>{L(),J();},$=Date.now();try{let q=await fetch(P.toString(),{signal:Q,headers:Rr()});if(q.status===404)throw new Error("HTTP 404 - Hint: can happen on wrong params");if(q.status===429)throw Te.recordRateLimit(x,Yn(q.headers.get("Retry-After"))||void 0),g=!0,new Error(`HTTP 429 Rate Limited by ${x}`);if(q.status===503)throw Te.recordFailure(x,e),g=!0,new Error(`HTTP 503 Service Unavailable from ${x}`);if(!q.ok)throw Te.recordFailure(x,e),g=!0,new Error(`HTTP ${q.status} from ${x}`);return Te.recordSuccess(x,e,Date.now()-$,p),q.json()}catch(q){if(q?.message?.includes("HTTP 404")||i?.aborted)throw q;g||Te.recordFailure(x,e),Te.recordSlowFailure(x,Date.now()-$,p),f=q,_{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an Array");if(r>O.nodes.length)throw new Error("quorum > config.nodes.length");let i=(c=>{let p=[...c];for(let l=p.length-1;l>0;l--){let m=Math.floor(Math.random()*(l+1));[p[l],p[m]]=[p[m],p[l]];}return p})(O.nodes),s=Math.min(r,i.length),a=[];for(;s>0&&i.length>0;){let c=i.splice(0,s),p=[],l=[];for(let f=0;fl.push(g)).catch(()=>{}));await Promise.all(p),a.push(...l);let m=ia(a,r);if(m)return m;if(s=Math.min(r,i.length),s===0)throw new Error("No more nodes available.")}throw new Error("Couldn't reach quorum.")};function ia(e,t){let r=new Map;for(let o of e){let i=JSON.stringify(o);r.has(i)||r.set(i,[]),r.get(i).push(o);}let n=Array.from(r.values()).find(o=>o.length>=t);return n?n[0]:null}var aa=utils_js.hexToBytes(O.chain_id),Qe=class e{transaction;expiration=6e4;txId;constructor(t){t?.transaction&&(t.transaction instanceof e?(this.transaction=t.transaction.transaction,this.expiration=t.transaction.expiration):this.transaction=t.transaction,this.transaction&&!Array.isArray(this.transaction.signatures)&&(this.transaction.signatures=[]),this.txId=this.digest().txId),t?.expiration&&(this.expiration=t.expiration);}async addOperation(t,r){this.transaction||await this.createTransaction(this.expiration),this.transaction.operations.push([t,r]);}sign(t){if(!this.transaction)throw new Error("First create a transaction by .addOperation()");if(this.transaction){let{digest:r,txId:n}=this.digest();Array.isArray(t)||(t=[t]);for(let o of t){let i=o.sign(r);this.transaction.signatures.push(i.customToString());}return this.txId=n,this.transaction}else throw new Error("No transaction to sign")}async broadcast(t=false){if(!this.transaction)throw new Error("Attempted to broadcast an empty transaction. Add operations by .addOperation()");if(this.transaction.signatures.length===0)throw new Error("Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)");try{await Ye("condenser_api.broadcast_transaction",[this.transaction]);}catch(i){if(!(i instanceof Z&&i.message.includes("Duplicate transaction check failed")))throw i}if(this.txId||(this.txId=this.digest().txId),!t)return {tx_id:this.txId,status:"unknown"};let r=60;await lt(1e3);let n=await this.checkStatus(),o=1;for(;n?.status!=="within_irreversible_block"&&n?.status!=="expired_irreversible"&&n?.status!=="too_old"&&o{let r=await y("condenser_api.get_dynamic_global_properties",[]),n=utils_js.hexToBytes(r.head_block_id),o=Number(new Uint32Array(n.buffer,n.byteOffset+4,1)[0]),i=new Date(Date.now()+t).toISOString().slice(0,-5);this.transaction={expiration:i,extensions:[],operations:[],ref_block_num:r.head_block_number&65535,ref_block_prefix:o,signatures:[]};}};var uo=new Uint8Array([128]),U=class e{key;constructor(t){this.key=t;try{secp256k1_js.secp256k1.getPublicKey(t);}catch{throw new Error("invalid private key")}}static from(t){return typeof t=="string"?e.fromString(t):new e(t)}static fromString(t){return new e(la(t).subarray(1))}static fromSeed(t){if(typeof t=="string")if(/^[0-9a-fA-F]+$/.test(t))t=utils_js.hexToBytes(t);else {let n=[];for(let o=0;o>6,128|i&63);else if(i>=55296&&i<=56319&&o+1>18,128|i>>12&63,128|i>>6&63,128|i&63);}else n.push(224|i>>12,128|i>>6&63,128|i&63);}t=new Uint8Array(n);}return new e(sha2_js.sha256(t))}static fromLogin(t,r,n="active"){let o=t+n+r;return e.fromSeed(o)}sign(t){let r=secp256k1_js.secp256k1.sign(t,this.key,{extraEntropy:true,format:"recovered",prehash:false}),n=parseInt(utils_js.bytesToHex(r.subarray(0,1)),16);return Re.from((n+31).toString(16)+utils_js.bytesToHex(r.subarray(1)))}createPublic(t){return new Y(secp256k1_js.secp256k1.getPublicKey(this.key),t)}toString(){return pa(new Uint8Array([...uo,...this.key]))}inspect(){let t=this.toString();return `PrivateKey: ${t.slice(0,6)}...${t.slice(-6)}`}getSharedSecret(t){let r=secp256k1_js.secp256k1.getSharedSecret(this.key,t.key);return sha2_js.sha512(r.subarray(1))}static randomKey(){return new e(secp256k1_js.secp256k1.keygen().secretKey)}},co=e=>sha2_js.sha256(sha2_js.sha256(e)),pa=e=>{let t=co(e);return Mn__default.default.encode(new Uint8Array([...e,...t.slice(0,4)]))},la=e=>{let t=Mn__default.default.decode(e);if(!so(t.slice(0,1),uo))throw new Error("Private key network id mismatch");let r=t.slice(-4),n=t.slice(0,-4),o=co(n).slice(0,4);if(!so(r,o))throw new Error("Private key checksum mismatch");return n},so=(e,t)=>{if(e===t)return true;if(e.byteLength!==t.byteLength)return false;let r=e.byteLength,n=0;for(;nfo(e,t,n,r),mo=(e,t,r,n,o)=>fo(e,t,r,n,o).message,fo=(e,t,r,n,o)=>{let i=r,s=e.getSharedSecret(t),a=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);a.writeUint64(i),a.append(s),a.flip();let c=sha2_js.sha512(new Uint8Array(a.toBuffer())),p=c.subarray(32,48),l=c.subarray(0,32),m=sha2_js.sha256(c).subarray(0,4),f=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);f.append(m),f.flip();let g=f.readUint32();if(o!==void 0){if(g!==o)throw new Error("Invalid key");n=ga(n,l,p);}else n=ya(n,l,p);return {nonce:i,message:n,checksum:g}},ga=(e,t,r)=>{let n=e;return n=aes_js.cbc(t,r).decrypt(n),n},ya=(e,t,r)=>{let n=e;return n=aes_js.cbc(t,r).encrypt(n),n},qr=null,ha=()=>{if(qr===null){let r=secp256k1_js.secp256k1.utils.randomSecretKey();qr=r[0]<<8|r[1];}let e=BigInt(Date.now()),t=++qr%65536;return e=e<{let t=Pa(e,33);return new Y(t)},wa=e=>e.readUint64(),ba=e=>e.readUint32(),va=e=>{let t=e.readVarint32(),r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())},Aa=e=>t=>{let r={},n=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);n.append(t),n.flip();for(let[o,i]of e)try{r[o]=i(n);}catch(s){throw s.message=`${o}: ${s.message}`,s}return r};function Pa(e,t){if(e){let r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())}else throw Error("No buffer found on first parameter")}var xa=Aa([["from",go],["to",go],["nonce",wa],["check",ba],["encrypted",va]]),yo={Memo:xa};var _o=(e,t,r,n)=>{if(!r.startsWith("#"))return r;r=r.substring(1),bo(),e=vo(e),t=Oa(t);let o=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);o.writeVString(r);let i=new Uint8Array(o.copy(0,o.offset).toBuffer()),{nonce:s,message:a,checksum:c}=lo(e,t,i,n),p=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);de.Memo(p,{check:c,encrypted:a,from:e.createPublic(),nonce:s,to:t}),p.flip();let l=new Uint8Array(p.toBuffer());return "#"+Mn__default.default.encode(l)},wo=(e,t)=>{if(!t.startsWith("#"))return t;t=t.substring(1),bo(),e=vo(e);let r=yo.Memo(Mn__default.default.decode(t)),{from:n,to:o,nonce:i,check:s,encrypted:a}=r,p=e.createPublic().toString()===new Y(n.key).toString()?new Y(o.key):new Y(n.key);r=mo(e,p,i,a,s);let l=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);return l.append(r),l.flip(),"#"+l.readVString()},Vt,bo=()=>{if(Vt===void 0){let e;Vt=true;try{let t="5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw",n=_o(t,"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA","#memo\u7231");e=wo(t,n);}finally{Vt=e==="#memo\u7231";}}if(Vt===false)throw new Error("This environment does not support encryption.")},vo=e=>typeof e=="string"?U.fromString(e):e,Oa=e=>typeof e=="string"?Y.fromString(e):e,Ao={decode:wo,encode:_o};var oe={};kt(oe,{buildWitnessSetProperties:()=>Ta,makeBitMaskFilter:()=>Ra,operations:()=>Ea,validateUsername:()=>Ca});var Ca=e=>{let t="Account name should ";if(!e)return t+"not be empty.";let r=e.length;if(r<3)return t+"be longer.";if(r>16)return t+"be shorter.";/\./.test(e)&&(t="Each account segment should ");let n=e.split("."),o=n.length;for(let i=0;ie.reduce(ka,[BigInt(0),BigInt(0)]).map(t=>t!==BigInt(0)?t.toString():null),ka=([e,t],r)=>r<64?[e|BigInt(1)<{let r={extensions:[],owner:e,props:[]};for(let n of Object.keys(t)){if(t[n]===void 0)continue;let o;switch(n){case "key":case "new_signing_key":o=de.PublicKey;break;case "account_subsidy_budget":case "account_subsidy_decay":case "maximum_block_size":o=de.UInt32;break;case "hbd_interest_rate":o=de.UInt16;break;case "url":o=de.String;break;case "hbd_exchange_rate":o=de.Price;break;case "account_creation_fee":o=de.Asset;break;default:throw new Error(`Unknown witness prop: ${n}`)}r.props.push([n,Fa(o,t[n])]);}return r.props.sort((n,o)=>n[0].localeCompare(o[0])),["witness_set_properties",r]},Fa=(e,t)=>{let r=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);return e(r,t),r.flip(),utils_js.bytesToHex(new Uint8Array(r.toBuffer()))};function zy(e){let t;if(typeof e=="string"){let r=[];for(let n=0;n>6,128|o&63);else if(o>=55296&&o<=56319&&n+1>18,128|o>>12&63,128|o>>6&63,128|o&63);}else r.push(224|o>>12,128|o>>6&63,128|o&63);}t=new Uint8Array(r);}else t=e;return sha2_js.sha256(t)}function Po(e){try{return U.fromString(e),!0}catch{return false}}async function ee(e,t){let r=new Qe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),Ye("condenser_api.broadcast_transaction_synchronous",[r.transaction])}async function xo(e,t){let r=new Qe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),r.broadcast(false)}var Ia=432e3;function Oo(e,t){let r=Date.now()/1e3-t.last_update_time,n=Number(t.current_mana)+r*e/Ia,o=Math.round(n/e*1e4);return !isFinite(o)||o<0?o=0:o>1e4&&(o=1e4),{current_mana:n,max_mana:e,percentage:o}}function Da(e){let t=parseFloat(e.vesting_shares),r=parseFloat(e.delegated_vesting_shares),n=parseFloat(e.received_vesting_shares),o=parseFloat(e.vesting_withdraw_rate),i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t-s-r+n}function Ir(e){let t=Da(e)*1e6;return Oo(t,e.voting_manabar)}function jt(e){return Oo(Number(e.max_rc),e.rc_manabar)}var So=(c=>(c.COMMON="common",c.INFO="info",c.INSUFFICIENT_RESOURCE_CREDITS="insufficient_resource_credits",c.MISSING_AUTHORITY="missing_authority",c.TOKEN_EXPIRED="token_expired",c.NETWORK="network",c.TIMEOUT="timeout",c.VALIDATION="validation",c))(So||{});function Xe(e){let t=e?.error_description?String(e.error_description):"",r=e?.message?String(e.message):"",n=e?.error?String(e.error):"",o=t||r||String(e||""),i=a=>!!(n&&a.test(n)||t&&a.test(t)||r&&a.test(r)||o&&a.test(o));if(i(/please wait to transact/i)||i(/insufficient rc/i)||i(/rc mana|rc account|resource credits/i))return {message:"Insufficient Resource Credits. Please wait or power up.",type:"insufficient_resource_credits",originalError:e};if(i(/you may only post once every/i))return {message:"Please wait before posting again (minimum 3 second interval between comments).",type:"common",originalError:e};if(i(/your current vote on this comment is identical/i))return {message:"You have already voted with the same weight.",type:"info",originalError:e};if(i(/must claim something/i))return {message:"You must claim rewards before performing this action.",type:"info",originalError:e};if(i(/cannot claim that much vests/i))return {message:"Cannot claim that amount. Please check your pending rewards.",type:"info",originalError:e};if(i(/cannot delete a comment with net positive/i))return {message:"Cannot delete a comment with positive votes.",type:"info",originalError:e};if(i(/children == 0/i))return {message:"Cannot delete a comment with replies.",type:"common",originalError:e};if(i(/comment_cashout/i))return {message:"Cannot modify a comment that has already been paid out.",type:"common",originalError:e};if(i(/votes evaluating for comment that is paid out is forbidden/i))return {message:"Cannot vote on posts that have already been paid out.",type:"common",originalError:e};if(i(/no (active|owner|posting|memo) key available/i))return {message:"Key not available. Please provide your key to sign this operation.",type:"missing_authority",originalError:e};if(i(/missing (required )?active authority/i))return {message:"Missing active authority. This operation requires your active key.",type:"missing_authority",originalError:e};if(i(/missing (required )?owner authority/i))return {message:"Missing owner authority. This operation requires your owner key.",type:"missing_authority",originalError:e};if(i(/missing (required )?posting authority/i))return {message:"Missing posting authority. Please check your login method.",type:"missing_authority",originalError:e};if(n==="invalid_grant"||n==="unauthorized_access"||i(/token expired/i)||i(/invalid token/i)||i(/\bunauthorized\b/i)||i(/\bforbidden\b/i))return {message:"Authentication token expired. Please log in again.",type:"token_expired",originalError:e};if(i(/has already reblogged/i)||i(/already reblogged this post/i))return {message:"You have already reblogged this post.",type:"info",originalError:e};if(i(/duplicate transaction/i))return {message:"This transaction has already been processed.",type:"info",originalError:e};if(i(/econnrefused/i)||i(/connection refused/i)||i(/failed to fetch/i)||i(/\bnetwork[-\s]?(request|error|timeout|unreachable|down|failed)\b/i))return {message:"Network error. Please check your connection and try again.",type:"network",originalError:e};if(i(/timeout/i)||i(/timed out/i))return {message:"Request timed out. Please try again.",type:"timeout",originalError:e};if(i(/account.*does not exist/i)||i(/account not found/i))return {message:"Account not found. Please check the username.",type:"validation",originalError:e};if(i(/invalid memo key/i))return {message:"Invalid memo key. Cannot encrypt message.",type:"validation",originalError:e};if(i(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i))return {message:"Insufficient funds for this transaction.",type:"validation",originalError:e};if(i(/\b(invalid|validation)\b/i))return {message:(e?.message||o).substring(0,150)||"Validation error occurred",type:"validation",originalError:e};if(e?.error_description&&typeof e.error_description=="string")return {message:e.error_description.substring(0,150),type:"common",originalError:e};if(e?.message&&typeof e.message=="string")return {message:e.message.substring(0,150),type:"common",originalError:e};let s;return typeof e=="object"&&e!==null?e.error_description?s=String(e.error_description):e.code?s=`Error code: ${e.code}`:o&&o!=="[object Object]"?s=o.substring(0,150):s="Unknown error occurred":s=o.substring(0,150)||"Unknown error occurred",{message:s,type:"common",originalError:e}}function Ka(e){let t=Xe(e);return [t.message,t.type]}function ve(e){let{type:t}=Xe(e);return t==="missing_authority"||t==="token_expired"}function Na(e){let{type:t}=Xe(e);return t==="insufficient_resource_credits"}function Ma(e){let{type:t}=Xe(e);return t==="info"}function Ba(e){let{type:t}=Xe(e);return t==="network"||t==="timeout"}async function Ae(e,t,r,n,o="posting",i,s,a="async"){let c=n?.adapter;switch(e){case "key":{if(!c)throw new Error("No adapter provided for key-based auth");let p=i;if(p===void 0)switch(o){case "owner":if(c.getOwnerKey)p=await c.getOwnerKey(t);else throw new Error("Owner key not supported by adapter. Owner operations (like account recovery) require master password login or manual key entry.");break;case "active":c.getActiveKey&&(p=await c.getActiveKey(t));break;case "memo":if(c.getMemoKey)p=await c.getMemoKey(t);else throw new Error("Memo key not supported by adapter. Use memo encryption methods instead.");break;default:p=await c.getPostingKey(t);break}if(!p)throw new Error(`No ${o} key available for ${t}`);let l=U.fromString(p);return a==="async"?await xo(r,l):await ee(r,l)}case "hiveauth":{if(!c?.broadcastWithHiveAuth)throw new Error("HiveAuth not supported by adapter");return await c.broadcastWithHiveAuth(t,r,o)}case "hivesigner":{if(!c)throw new Error("No adapter provided for HiveSigner auth");if(o!=="posting"){if(c.broadcastWithHiveSigner)return await c.broadcastWithHiveSigner(t,r,o);throw new Error(`HiveSigner access token cannot sign ${o} operations. No platform broadcast available.`)}let p=s!==void 0?s:await c.getAccessToken(t);if(p)try{return (await new Co__default.default.Client({accessToken:p}).broadcast(r)).result}catch(l){if(c.broadcastWithHiveSigner&&ve(l))return await c.broadcastWithHiveSigner(t,r,o);throw l}if(c.broadcastWithHiveSigner)return await c.broadcastWithHiveSigner(t,r,o);throw new Error(`No access token available for ${t}`)}case "keychain":{if(!c?.broadcastWithKeychain)throw new Error("Keychain not supported by adapter");return await c.broadcastWithKeychain(t,r,o)}case "custom":{if(!n?.broadcast)throw new Error("No custom broadcast function provided");return await n.broadcast(r,o)}default:throw new Error(`Unknown auth method: ${e}`)}}async function Ua(e,t,r,n="posting",o="async"){let i=r?.adapter;if(i?.getLoginType){let l=await i.getLoginType(e,n);if(l){let m=i.hasPostingAuthorization?await i.hasPostingAuthorization(e):false;if(n==="posting"&&m&&l==="key")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to key:",f);}if(n==="posting"&&m&&l==="keychain")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to keychain/snap:",f);}if(n==="posting"&&m&&l==="hiveauth")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to HiveAuth:",f);}try{return await Ae(l,e,t,r,n,void 0,void 0,o)}catch(f){if(ve(f)&&i.showAuthUpgradeUI&&(n==="posting"||n==="active")){let g=t.length>0?t[0][0]:"unknown",_=await i.showAuthUpgradeUI(n,g);if(!_)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await Ae(_,e,t,r,n,void 0,void 0,o)}throw f}}if(n==="posting")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(m){if(ve(m)&&i.showAuthUpgradeUI){let f=t.length>0?t[0][0]:"unknown",g=await i.showAuthUpgradeUI(n,f);if(!g)throw new Error(`No login type available for ${e}. Please log in again.`);return await Ae(g,e,t,r,n,void 0,void 0,o)}throw m}else if(n==="active"&&i.showAuthUpgradeUI){let m=t.length>0?t[0][0]:"unknown",f=await i.showAuthUpgradeUI(n,m);if(!f)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await Ae(f,e,t,r,n,void 0,void 0,o)}}let s=r?.fallbackChain??["key","hiveauth","hivesigner","keychain","custom"],a=new Map;for(let l of s)try{let m=!1,f="",g,_;switch(l){case "key":if(!i)m=!0,f="No adapter provided";else {let A;switch(n){case "owner":i.getOwnerKey&&(A=await i.getOwnerKey(e));break;case "active":i.getActiveKey&&(A=await i.getActiveKey(e));break;case "memo":i.getMemoKey&&(A=await i.getMemoKey(e));break;default:A=await i.getPostingKey(e);break}A?g=A:(m=!0,f=`No ${n} key available`);}break;case "hiveauth":i?.broadcastWithHiveAuth||(m=!0,f="HiveAuth not supported by adapter");break;case "hivesigner":if(!i)m=!0,f="No adapter provided";else {let A=await i.getAccessToken(e);A&&(_=A);}break;case "keychain":i?.broadcastWithKeychain||(m=!0,f="Keychain not supported by adapter");break;case "custom":r?.broadcast||(m=!0,f="No custom broadcast function provided");break}if(m){a.set(l,new Error(`Skipped: ${f}`));continue}return await Ae(l,e,t,r,n,g,_,o)}catch(m){if(a.set(l,m),!ve(m))throw m}if(!Array.from(a.values()).some(l=>!l.message.startsWith("Skipped:"))){let l=Array.from(a.entries()).map(([m,f])=>`${m}: ${f.message}`).join(", ");throw new Error(`[SDK][Broadcast] No auth methods attempted for ${e}. ${l}`)}let p=Array.from(a.entries()).map(([l,m])=>`${l}: ${m.message}`).join(", ");throw new Error(`[SDK][Broadcast] All auth methods failed for ${e}. Errors: ${p}`)}function v(e=[],t,r,n=()=>{},o,i="posting",s){let a=s?.broadcastMode??"async";return reactQuery.useMutation({onSuccess:n,onMutate:s?.onMutate,onError:s?.onError,onSettled:s?.onSettled,mutationKey:[...e,t],mutationFn:async c=>{if(!t)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let p=r(c);try{if(o?.enableFallback!==!1&&o?.adapter)return await Ua(t,p,o,i,a);if(o?.broadcast)return await o.broadcast(p,i);let l=o?.postingKey;if(l){if(i!=="posting")throw new Error(`[SDK][Broadcast] Legacy auth only supports posting authority, but '${i}' was requested. Use AuthContextV2 with an adapter for ${i} operations.`);let f=U.fromString(l);return await ee(p,f)}let m=o?.accessToken;if(m)return (await new Co__default.default.Client({accessToken:m}).broadcast(p)).result;throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}catch(l){throw l instanceof Z?new Error(l.message):l}}})}async function Eo(e,t,r,n){if(!e)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let o={id:t,required_auths:[],required_posting_auths:[e],json:JSON.stringify(r)};if(n?.broadcast)return n.broadcast([["custom_json",o]],"posting");let i=n?.postingKey;if(i){let c=U.fromString(i);return ee([["custom_json",o]],c)}let s=n?.accessToken;if(s)return (await new Co__default.default.Client({accessToken:s}).customJson([],[e],t,JSON.stringify(r))).result;let a=n?.adapter;if(a){let c=[["custom_json",o]];if(n?.loginType==="keychain"&&a.broadcastWithKeychain)return a.broadcastWithKeychain(e,c,"posting");if(n?.loginType==="hiveauth"&&a.broadcastWithHiveAuth)return a.broadcastWithHiveAuth(e,c,"posting")}throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}var lh=4e3;function S(e,t,r){if(e?.invalidateQueries){if(t==="sync")return e.invalidateQueries(r);setTimeout(()=>e.invalidateQueries?.(r),4e3);}}function Pe(e,t){let r=AbortSignal.timeout(e);if(!t)return r;if(typeof AbortSignal.any=="function")return AbortSignal.any([t,r]);let n=new AbortController,o=()=>{let i=t.aborted?t.reason:r.reason;n.abort(i),t.removeEventListener("abort",o),r.removeEventListener("abort",o);};return t.aborted?n.abort(t.reason):r.aborted?n.abort(r.reason):(t.addEventListener("abort",o,{once:true}),r.addEventListener("abort",o,{once:true})),n.signal}var Ue=(()=>{try{return process.env?.NODE_ENV==="development"}catch{return false}})(),ja=()=>{try{return process.env?.VITE_HELIUS_API_KEY}catch{return}},xe=1e4,Ro=120*1e3,Lt,La;function $a(){return Lt?Lt():La??=new reactQuery.QueryClient}var d={privateApiHost:"https://ecency.com",newsletterHost:void 0,defaultObserver:"ecency",clientId:"ecency-sdk",imageHost:"https://i.ecency.com",get hiveNodes(){return O.nodes},heliusApiKey:ja(),get queryClient(){return $a()},set queryClient(e){Lt=()=>e;},pollsApiHost:"https://poll.ecency.com",plausibleHost:"https://pl.ecency.com",dmcaAccounts:[],dmcaTags:[],dmcaPatterns:[],dmcaTagRegexes:[],dmcaPatternRegexes:[],_dmcaInitialized:false};exports.ConfigManager=void 0;(Ee=>{function e(P){d.queryClient=P;}Ee.setQueryClient=e;function t(P){Lt=P;}Ee.setQueryClientResolver=t;function r(P){d.privateApiHost=P;}Ee.setPrivateApiHost=r;function n(P){d.newsletterHost=P;}Ee.setNewsletterHost=n;function o(P){d.clientId=P;}Ee.setClientId=o;function i(P){if(typeof P!="string"||P.trim()==="")throw new Error("setDefaultObserver requires a non-empty Hive account. There is no empty-string opt-out; observer resolution would fall back to the post author while caching under an empty key.");d.defaultObserver=P;}Ee.setDefaultObserver=i;function s(){return d.privateApiHost?d.privateApiHost:typeof window<"u"&&window.location?.origin?window.location.origin:"https://ecency.com"}Ee.getValidatedBaseUrl=s;function a(P){d.pollsApiHost=P;}Ee.setPollsApiHost=a;function c(P){d.imageHost=P;}Ee.setImageHost=c;function p(P){_r(P);}Ee.setHiveNodes=p;function l(P){wr(P);}Ee.setRestNodes=l;function m(P){br(P);}Ee.setRestNodesByApi=m;function f(P){vr(P);}Ee.setUserAgent=f;function g(P){Ar(P);}Ee.setResilience=g;function _(P){yr(P);}Ee.setServerRpcProxy=_;function A(){return Fe}Ee.getServerRpcProxyStats=A;function x(P){if(/(\([^)]*[*+{][^)]*\))[*+{]/.test(P))return {safe:false,reason:"nested quantifiers detected"};if(/\([^|)]*\|[^)]*\)[*+{]/.test(P))return {safe:false,reason:"alternation with quantifier (potential overlap)"};if(/\([^)]*[*+][^)]*\)[*+]/.test(P))return {safe:false,reason:"repeated quantifiers (catastrophic backtracking risk)"};if(/\.\*\.\*/.test(P)||/\.\+\.\+/.test(P))return {safe:false,reason:"multiple greedy quantifiers on wildcards"};let H=/\.?\{(\d+),(\d+)\}/g,L;for(;(L=H.exec(P))!==null;){let[,Q,J]=L;if(parseInt(J,10)-parseInt(Q,10)>1e3)return {safe:false,reason:`excessive range: {${Q},${J}}`}}return {safe:true}}function C(P){let H=["a".repeat(50)+"x","ab".repeat(50)+"x","x".repeat(100),"aaa".repeat(30)+"bbb".repeat(30)+"x"],L=5;for(let Q of H){let J=Date.now();try{P.test(Q);let z=Date.now()-J;if(z>L)return {safe:!1,reason:`runtime test exceeded ${L}ms (took ${z}ms on input length ${Q.length})`}}catch(z){return {safe:false,reason:`runtime test threw error: ${z}`}}}return {safe:true}}function F(P,H=200){try{if(!P)return Ue&&console.warn("[SDK] DMCA pattern rejected: empty pattern"),null;if(P.length>H)return Ue&&console.warn(`[SDK] DMCA pattern rejected: length ${P.length} exceeds max ${H} - pattern: ${P.substring(0,50)}...`),null;let L=x(P);if(!L.safe)return Ue&&console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${L.reason}) - pattern: ${P.substring(0,50)}...`),null;let Q;try{Q=new RegExp(P);}catch(z){return Ue&&console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${P.substring(0,50)}...`,z),null}let J=C(Q);return J.safe?Q:(Ue&&console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${J.reason}) - pattern: ${P.substring(0,50)}...`),null)}catch(L){return Ue&&console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${P.substring(0,50)}...`,L),null}}function ce(P={}){let H=z=>Array.isArray(z)?z.filter($=>typeof $=="string"):[],L=P||{},Q={accounts:H(L.accounts),tags:H(L.tags),patterns:H(L.posts)};d.dmcaAccounts=Q.accounts,d.dmcaTags=Q.tags,d.dmcaPatterns=Q.patterns,d.dmcaTagRegexes=Q.tags.map(z=>F(z)).filter(z=>z!==null),d.dmcaPatternRegexes=[];let J=Q.tags.length-d.dmcaTagRegexes.length;!d._dmcaInitialized&&Ue&&(console.log("[SDK] DMCA configuration loaded:"),console.log(` - Accounts: ${Q.accounts.length}`),console.log(` - Tag patterns: ${d.dmcaTagRegexes.length}/${Q.tags.length} compiled (${J} rejected)`),console.log(` - Post patterns: ${Q.patterns.length} (using exact string matching)`),J>0&&console.warn(`[SDK] ${J} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`)),d._dmcaInitialized=true;}Ee.setDmcaLists=ce;})(exports.ConfigManager||={});function Ph(){return new reactQuery.QueryClient({defaultOptions:{queries:{refetchOnWindowFocus:false,refetchOnMount:false}}})}var w=()=>d.queryClient;exports.EcencyQueriesManager=void 0;(s=>{function e(a){return w().getQueryData(a)}s.getQueryData=e;function t(a){return w().getQueryData(a)}s.getInfiniteQueryData=t;async function r(a){return await w().prefetchQuery(a),e(a.queryKey)}s.prefetchQuery=r;async function n(a){return await w().prefetchInfiniteQuery(a),t(a.queryKey)}s.prefetchInfiniteQuery=n;function o(a){return {prefetch:()=>r(a),getData:()=>e(a.queryKey),useClientQuery:()=>reactQuery.useQuery(a),fetchAndGet:()=>w().fetchQuery(a)}}s.generateClientServerQuery=o;function i(a){return {prefetch:()=>n(a),getData:()=>t(a.queryKey),useClientQuery:()=>reactQuery.useInfiniteQuery(a),fetchAndGet:()=>w().fetchInfiniteQuery(a)}}s.generateClientServerInfiniteQuery=i;})(exports.EcencyQueriesManager||={});function Oh(e){return btoa(JSON.stringify(e))}function Sh(e){let t=atob(e);if(t[0]==="{")return JSON.parse(t)}var ko=(n=>(n.HIVE="HIVE",n.HBD="HBD",n.VESTS="VESTS",n))(ko||{}),$t=(e=>(e["@@000000021"]="HIVE",e["@@000000013"]="HBD",e["@@000000037"]="VESTS",e))($t||{});function T(e){if(typeof e=="string"){let t=e.split(" ");return {amount:parseFloat(t[0]),symbol:ko[t[1]]}}else return {amount:parseFloat(e.amount.toString())/Math.pow(10,e.precision),symbol:$t[e.nai]}}var Dr;function h(){if(!Dr){if(typeof globalThis.fetch!="function")throw new Error("[Ecency][SDK] - global fetch is not available");Dr=globalThis.fetch.bind(globalThis);}return Dr}function To(e){return typeof e=="string"?/^hive-\d+$/.test(e):false}function Ya(e){return e&&typeof e=="object"&&"data"in e&&"pagination"in e&&Array.isArray(e.data)}function re(e,t){return Ya(e)?e:{data:Array.isArray(e)?e:[],pagination:{total:Array.isArray(e)?e.length:0,limit:t,offset:0,has_next:false}}}function Ze(e,t){return e/1e6*t}function Fo(e){return e===void 0?true:parseInt(e.split("-")[0],10)<1980}var qo=60*1e3;function Oe(){return reactQuery.queryOptions({queryKey:u.core.dynamicProps(),refetchInterval:qo,staleTime:qo,queryFn:async({signal:e})=>{let[t,r,n,o,i]=await Promise.all([y("condenser_api.get_dynamic_global_properties",[],void 0,void 0,e),y("condenser_api.get_feed_history",[],void 0,void 0,e),y("condenser_api.get_chain_properties",[],void 0,void 0,e),y("condenser_api.get_reward_fund",["post"],void 0,void 0,e),y("database_api.get_hardfork_properties",{},void 0,void 0,e).catch(()=>({current_hardfork_version:"1.28.0",last_hardfork:28}))]),s=T(t.total_vesting_shares).amount,a=T(t.total_vesting_fund_hive).amount,c=0;Number.isFinite(s)&&s!==0&&Number.isFinite(a)&&(c=a/s*1e6);let p=T(r.current_median_history.base).amount,l=T(r.current_median_history.quote).amount,m=parseFloat(o.recent_claims),f=T(o.reward_balance).amount,g=Number(t.vote_power_reserve_rate??0),_=o.author_reward_curve??"linear",A=Number(o.content_constant??0),x=String(i.current_hardfork_version??"0.0.0"),C=Number(i.last_hardfork??0),F=t.hbd_print_rate,ce=t.hbd_interest_rate,Ee=t.head_block_number,P=a,H=s,L=T(t.virtual_supply).amount,Q=t.vesting_reward_percent||0,J=n.account_creation_fee;return {hivePerMVests:c,base:p,quote:l,fundRecentClaims:m,fundRewardBalance:f,votePowerReserveRate:g,authorRewardCurve:_,contentConstant:A,currentHardforkVersion:x,lastHardfork:C,hbdPrintRate:F,hbdInterestRate:ce,headBlock:Ee,totalVestingFund:P,totalVestingShares:H,virtualSupply:L,vestingRewardPercent:Q,accountCreationFee:J,raw:{globalDynamic:t,feedHistory:r,chainProps:n,rewardFund:o,hardforkProps:i}}}})}function Hh(e="post"){return reactQuery.queryOptions({queryKey:u.core.rewardFund(e),queryFn:()=>y("condenser_api.get_reward_fund",[e])})}function Ie(...e){let t=e.length;for(;t>0&&e[t-1]===void 0;)t--;return e.slice(0,t)}var u={posts:{entry:e=>["posts","entry",e],postHeader:(e,t)=>["posts","post-header",e,t],content:(e,t)=>["posts","content",e,t],contentReplies:(e,t)=>["posts","content-replies",e,t],accountPosts:(e,t,r,n)=>["posts","account-posts",e,t,r,n],accountPostsPage:(e,t,r,n,o,i)=>["posts","account-posts-page",e,t,r,n,o,i],userPostVote:(e,t,r)=>["posts","user-vote",e,t,r],reblogs:(e,t)=>["posts","reblogs",e,t],entryActiveVotes:(e,t)=>["posts","entry-active-votes",e,t],rebloggedBy:(e,t)=>["posts","reblogged-by",e,t],tips:(e,t)=>["posts","tips",e,t],normalize:(e,t)=>["posts","normalize",e,t],drafts:e=>["posts","drafts",e],draftsInfinite:(e,t)=>Ie("posts","drafts","infinite",e,t),schedules:e=>["posts","schedules",e],schedulesInfinite:(e,t)=>Ie("posts","schedules","infinite",e,t),fragments:e=>["posts","fragments",e],fragmentsInfinite:(e,t)=>Ie("posts","fragments","infinite",e,t),images:e=>["posts","images",e],galleryImages:e=>["posts","gallery-images",e],imagesInfinite:(e,t)=>Ie("posts","images","infinite",e,t),promoted:e=>["posts","promoted",e],_promotedPrefix:["posts","promoted"],accountPostsBlogPrefix:e=>["posts","account-posts",e,"blog"],postsRanked:(e,t,r,n)=>["posts","posts-ranked",e,t,r,n],postsRankedPage:(e,t,r,n,o,i)=>["posts","posts-ranked-page",e,t,r,n,o,i],discussions:(e,t,r,n)=>["posts","discussions",e,t,r,n],discussion:(e,t,r)=>["posts","discussion",e,t,r],deletedEntry:e=>["posts","deleted-entry",e],commentHistory:(e,t,r)=>["posts","comment-history",e,t,r],trendingTags:()=>["posts","trending-tags"],trendingTagsWithStats:e=>["posts","trending-tags","stats",e],wavesFeed:(e={})=>["posts","waves","feed",e.tag??"",e.following??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],shortsFeed:(e={})=>["posts","waves","shorts",e.tag??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],wavesByHost:e=>["posts","waves","by-host",e],wavesByTag:(e,t)=>["posts","waves","by-tag",e,t],wavesFollowing:(e,t)=>["posts","waves","following",e,t],wavesTrendingTags:(e,t)=>["posts","waves","trending-tags",e,t],wavesByAccount:(e,t)=>["posts","waves","by-account",e,t],wavesTrendingAuthors:e=>["posts","waves","trending-authors",e],_prefix:["posts"]},accounts:{full:e=>["get-account-full",e],list:(...e)=>["accounts","list",...e],friends:(e,t,r,n)=>["accounts","friends",e,t,r,n],searchFriends:(e,t,r)=>["accounts","friends","search",e,t,r],subscriptions:e=>["accounts","subscriptions",e],followCount:e=>["accounts","follow-count",e],recoveries:e=>["accounts","recoveries",e],pendingRecovery:e=>["accounts","recoveries",e,"pending-request"],checkWalletPending:(e,t)=>["accounts","check-wallet-pending",e,t],mutedUsers:e=>["accounts","muted-users",e],following:(e,t,r,n)=>["accounts","following",e,t,r,n],followers:(e,t,r,n)=>["accounts","followers",e,t,r,n],search:(e,t)=>["accounts","search",e,t],profiles:(e,t)=>["accounts","profiles",e,t],lookup:(e,t)=>["accounts","lookup",e,t],transactions:(e,t,r)=>["accounts","transactions",e,t,r],favorites:e=>["accounts","favorites",e],favoritesInfinite:(e,t)=>Ie("accounts","favorites","infinite",e,t),checkFavorite:(e,t)=>["accounts","favorites","check",e,t],favoriteTags:e=>["accounts","favorite-tags",e],favoriteTagsInfinite:(e,t)=>Ie("accounts","favorite-tags","infinite",e,t),checkFavoriteTag:(e,t)=>["accounts","favorite-tags","check",e,t],relations:(e,t)=>["accounts","relations",e,t],bots:()=>["accounts","bots"],voteHistory:(e,t)=>["accounts","vote-history",e,t],reputations:(e,t)=>["accounts","reputations",e,t],bookmarks:e=>["accounts","bookmarks",e],bookmarksInfinite:(e,t)=>Ie("accounts","bookmarks","infinite",e,t),referrals:e=>["accounts","referrals",e],referralsStats:e=>["accounts","referrals-stats",e],proMembers:()=>["accounts","pro-members"],_prefix:["accounts"]},notifications:{announcements:()=>["notifications","announcements"],spotlights:()=>["notifications","spotlights"],list:(e,t)=>["notifications",e,t],unreadCount:e=>["notifications","unread",e],settings:e=>["notifications","settings",e],_prefix:["notifications"]},core:{rewardFund:e=>["core","reward-fund",e],dynamicProps:()=>["core","dynamic-props"],chainProperties:()=>["core","chain-properties"],_prefix:["core"]},communities:{single:(e,t)=>["community","single",e,t],singlePrefix:e=>["community","single",e],context:(e,t)=>["community","context",e,t],rewarded:()=>["communities","rewarded"],list:(e,t,r)=>["communities","list",e,t,r],subscribers:e=>["communities","subscribers",e],subscribersInfinite:e=>["communities","subscribers","infinite",e],accountNotifications:(e,t)=>["communities","account-notifications",e,t]},proposals:{list:()=>["proposals","list"],proposal:e=>["proposals","proposal",e],votes:(e,t,r)=>["proposals","votes",e,t,r],votesPrefix:e=>["proposals","votes",e],votesByUser:e=>["proposals","votes","by-user",e]},search:{topics:(e,t)=>["search","topics",e,t],path:e=>["search","path",e],account:(e,t)=>["search","account",e,t],results:(e,t,r,n,o,i)=>["search",e,t,typeof r=="string"?r==="1"||r==="true":r,n,o,i],controversialRising:(e,t)=>["search","controversial-rising",e,t],similarEntries:(e,t,r)=>r?["search","similar-entries",e,t,r]:["search","similar-entries",e,t],api:(e,t,r,n,o,i)=>Ie("search","api",e,t,r,n,o,i)},witnesses:{list:e=>["witnesses","list",e],votes:e=>["witnesses","votes",e],proxy:()=>["witnesses","proxy"],voters:(e,t,r,n,o)=>["witnesses","voters",e,t,r,n,o],voterCount:e=>["witnesses","voter-count",e]},wallet:{outgoingRcDelegations:(e,t)=>["wallet","outgoing-rc-delegations",e,t],vestingDelegations:(e,t)=>["wallet","vesting-delegations",e,t],withdrawRoutes:e=>["wallet","withdraw-routes",e],incomingRc:e=>["wallet","incoming-rc",e],conversionRequests:e=>["wallet","conversion-requests",e],receivedVestingShares:e=>["wallet","received-vesting-shares",e],savingsWithdraw:e=>["wallet","savings-withdraw",e],openOrders:e=>["wallet","open-orders",e],collateralizedConversionRequests:e=>["wallet","collateralized-conversion-requests",e],recurrentTransfers:e=>["wallet","recurrent-transfers",e],balanceHistory:(e,t,r)=>["wallet","balance-history",e,t,r],aggregatedHistory:(e,t,r)=>r===void 0?["wallet","aggregated-history",e,t]:["wallet","aggregated-history",e,t,r],portfolio:(e,t,r)=>["wallet","portfolio","v2",e,t,r]},assets:{hiveGeneralInfo:e=>["assets","hive","general-info",e],hiveTransactions:(e,t,r)=>["assets","hive","transactions",e,t,r],hiveWithdrawalRoutes:e=>["assets","hive","withdrawal-routes",e],hiveMetrics:e=>["assets","hive","metrics",e],hbdGeneralInfo:e=>["assets","hbd","general-info",e],hbdTransactions:(e,t,r)=>["assets","hbd","transactions",e,t,r],hivePowerGeneralInfo:e=>["assets","hive-power","general-info",e],hivePowerDelegates:e=>["assets","hive-power","delegates",e],hivePowerDelegatings:e=>["assets","hive-power","delegatings",e],hivePowerTransactions:(e,t,r)=>["assets","hive-power","transactions",e,t,r],pointsGeneralInfo:e=>["assets","points","general-info",e],pointsTransactions:(e,t)=>["assets","points","transactions",e,t],ecencyAssetInfo:(e,t,r)=>["ecency-wallets","asset-info",e,t,r]},market:{statistics:()=>["market","statistics"],orderBook:e=>["market","order-book",e],history:(e,t,r)=>["market","history",e,t,r],feedHistory:()=>["market","feed-history"],hiveHbdStats:()=>["market","hive-hbd-stats"],data:(e,t,r,n)=>["market","data",e,t,r,n],tradeHistory:(e,t,r)=>["market","trade-history",e,t,r],currentMedianHistoryPrice:()=>["market","current-median-history-price"]},analytics:{discoverCuration:e=>["analytics","discover-curation",e],pageStats:(e,t,r,n)=>["analytics","page-stats",e,t,r,n],discoverLeaderboard:e=>["analytics","discover-leaderboard",e]},promotions:{promotePrice:()=>["promotions","promote-price"],boostPlusPrices:()=>["promotions","boost-plus-prices"],boostPlusAccounts:e=>["promotions","boost-plus-accounts",e]},resourceCredits:{account:e=>["resource-credits","account",e],stats:()=>["resource-credits","stats"],resourceParams:()=>["resource-credits","resource-params"]},points:{points:(e,t)=>["points",e,t],_prefix:e=>["points",e]},polls:{details:(e,t)=>["polls","details",e,t],vote:(e,t)=>e&&t?["polls","vote",e,t]:["polls","vote"],_prefix:["polls"]},operations:{chainProperties:()=>["operations","chain-properties"]},games:{statusCheck:(e,t)=>["games","status-check",e,t]},quests:{status:e=>["quests","status",e]},newsletter:{subscriptions:e=>["newsletter","subscriptions",e],sender:(e,t,r)=>["newsletter","sender",e,t,r],issues:(e,t,r)=>["newsletter","issues",e,t,r],posts:(e,t,r,n)=>["newsletter","posts",e,t,r,n],_prefix:["newsletter"]},support:{settings:e=>["support","settings",e],_prefix:["support"]},badActors:{list:()=>["bad-actors","list"],_prefix:["bad-actors"]},curation:{feed:(e={})=>["curation","feed",e],rosterFeed:(e,t={})=>["curation","roster-feed",e,t],status:()=>["curation","status"],roster:()=>["curation","roster"],rosterAdmin:e=>["curation","roster-admin",e],rosterAdminPrefix:()=>["curation","roster-admin"],recommendations:(e={})=>["curation","recommendations",e],_recommendationsPrefix:["curation","recommendations"],post:(e,t)=>["curation","post",e,t],recommender:e=>["curation","recommender",e],recommend:()=>["curation","recommend"],_prefix:["curation"]},ai:{prices:()=>["ai","prices"],assistPrices:e=>["ai","assist-prices",e],transcribePrice:e=>["ai","transcribe-price",e],images:e=>["ai","images",e],_prefix:["ai"]}};function yt(e){if(typeof TextEncoder<"u")return new TextEncoder().encode(e).length;let t=0;for(let r=0;r=55296&&n<=56319&&r+1>>=7;while(r>0);return t}function Gh(e){return reactQuery.queryOptions({queryKey:u.ai.prices(),queryFn:async()=>{let r=await h()(d.privateApiHost+"/private-api/ai-generate-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch AI generation prices: ${r.status}`);return await r.json()},staleTime:3e5,enabled:!!e})}function Xh(e,t){return reactQuery.queryOptions({queryKey:u.ai.images(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI image history: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:"always",enabled:!!e&&!!t})}function r_(e,t){return reactQuery.queryOptions({queryKey:u.ai.assistPrices(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-assist-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI assist prices: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function s_(e,t){return reactQuery.queryOptions({queryKey:u.ai.transcribePrice(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-transcribe-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI transcribe price: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function iu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function su(e){w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.images(e)});}function p_(e,t){return reactQuery.useMutation({mutationKey:["ai","generate-image"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][GenerateImage] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][GenerateImage] \u2013 access token wasn't found");let o=await h()(d.privateApiHost+"/private-api/ai-generate-image",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,us:e,prompt:r.prompt,aspect_ratio:r.aspect_ratio??"1:1",power:r.power??1,idempotency_key:r.idempotency_key??iu()})});if(!o.ok){let s=await o.text(),a={};try{a=JSON.parse(s);}catch{}let c=new Error(`[SDK][AI][GenerateImage] \u2013 failed with status ${o.status}${s?`: ${s}`:""}`);throw c.status=o.status,c.data=a,c}if(o.status===202){let s={};try{s=await o.json();}catch{}let a=new Error("[SDK][AI][GenerateImage] \u2013 delivery pending");throw a.status=202,a.data=s,a}return await o.json()},onSuccess:()=>{e&&su(e);}})}function uu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function f_(e,t){return reactQuery.useMutation({mutationKey:["ai","assist"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Assist] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][Assist] \u2013 access token wasn't found");let o=await h()(d.privateApiHost+"/private-api/ai-assist",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:r.code??t,us:e,action:r.action,text:r.text,idempotency_key:uu()})});if(!o.ok){let i=await o.text(),s={};try{s=JSON.parse(i);}catch{}let a=new Error(`[SDK][AI][Assist] \u2013 failed with status ${o.status}${i?`: ${i}`:""}`);throw a.status=o.status,a.data=s,a}return await o.json()},onSuccess:r=>{e&&(r.cost>0&&w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.assistPrices(e)}));}})}function pu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function __(e,t){return reactQuery.useMutation({mutationKey:["ai","transcribe"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Transcribe] \u2013 username wasn't provided");let n=r.code??t;if(!n)throw new Error("[SDK][AI][Transcribe] \u2013 access token wasn't found");let o=new FormData;o.append("code",n),o.append("duration_ms",String(Math.round(r.durationMs))),o.append("idempotency_key",r.idempotency_key??pu()),o.append("audio",r.audio,r.fileName??"clip.webm");let s=await h()(d.privateApiHost+"/private-api/ai-transcribe",{method:"POST",body:o});if(!s.ok){let a=await s.text(),c={};try{c=JSON.parse(a);}catch{}throw Object.assign(new Error(`[SDK][AI][Transcribe] \u2013 failed with status ${s.status}${a?`: ${a}`:""}`),{status:s.status,data:c})}return await s.json()},onSuccess:r=>{e&&(r.cost>0&&w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.transcribePrice(e)}));}})}function Kr(e){return !e.posting_json_metadata&&!e.json_metadata}function du(e){return e?Object.values(e).some(t=>typeof t=="string"?t.length>0:t!=null):false}function M(e){return reactQuery.queryOptions({queryKey:u.accounts.full(e),queryFn:async({signal:t})=>{if(!e)return null;let[r,n]=await Promise.all([y("condenser_api.get_accounts",[[e]],void 0,void 0,t,p=>Array.isArray(p)),y("bridge.get_profile",{account:e},void 0,void 0,t).catch(p=>{if(t?.aborted)throw p;return null})]);if(!r?.[0])return null;let o=r[0];if(Kr(o)&&du(n?.metadata?.profile)){let p=await y("condenser_api.get_accounts",[[e]],void 0,void 0,t,l=>Array.isArray(l)&&(!l[0]||!Kr(l[0])));if(p[0]&&!Kr(p[0]))o=p[0];else throw new Error(`[SDK][Accounts] \u2013 inconsistent account row for ${e}: empty json metadata while hivemind profile is populated`)}let i=He(o.posting_json_metadata),s=n?.stats,a=s?{account:o.name,follower_count:s.followers??0,following_count:s.following??0}:void 0,c=n?.reputation??0;return {name:o.name,owner:o.owner,active:o.active,posting:o.posting,memo_key:o.memo_key,post_count:o.post_count,created:o.created,posting_json_metadata:o.posting_json_metadata,last_vote_time:o.last_vote_time,last_post:o.last_post,json_metadata:o.json_metadata,reward_hive_balance:o.reward_hive_balance,reward_hbd_balance:o.reward_hbd_balance,reward_vesting_hive:o.reward_vesting_hive,reward_vesting_balance:o.reward_vesting_balance,balance:o.balance,hbd_balance:o.hbd_balance,savings_balance:o.savings_balance,savings_hbd_balance:o.savings_hbd_balance,savings_hbd_last_interest_payment:o.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:o.savings_hbd_seconds_last_update,savings_hbd_seconds:o.savings_hbd_seconds,next_vesting_withdrawal:o.next_vesting_withdrawal,pending_claimed_accounts:o.pending_claimed_accounts,vesting_shares:o.vesting_shares,delegated_vesting_shares:o.delegated_vesting_shares,received_vesting_shares:o.received_vesting_shares,vesting_withdraw_rate:o.vesting_withdraw_rate,to_withdraw:o.to_withdraw,withdrawn:o.withdrawn,curation_rewards:o.curation_rewards===void 0?void 0:Number(o.curation_rewards),posting_rewards:o.posting_rewards===void 0?void 0:Number(o.posting_rewards),witness_votes:o.witness_votes,proxy:o.proxy,recovery_account:o.recovery_account,proxied_vsf_votes:o.proxied_vsf_votes,voting_manabar:o.voting_manabar,voting_power:o.voting_power,downvote_manabar:o.downvote_manabar,follow_stats:a,reputation:c,profile:i}},enabled:!!e,staleTime:6e4})}var mu=new Set(["__proto__","constructor","prototype"]);function Wt(e){if(!e||typeof e!="object"||Array.isArray(e))return false;let t=Object.getPrototypeOf(e);return t===null||t===Object.prototype}function Io(e,t){let r={...e};for(let n of Object.keys(t)){if(mu.has(n))continue;let o=t[n],i=r[n];Wt(o)&&Wt(i)?r[n]=Io(i,o):r[n]=o;}return r}function fu(e){if(!(!e||!Array.isArray(e)))return e.map(({meta:t,...r})=>{if(!t||typeof t!="object")return {...r,meta:t};let{privateKey:n,username:o,...i}=t;return {...r,meta:i}})}function He(e){if(!e)return {};try{let t=JSON.parse(e);if(t&&typeof t=="object"&&t.profile&&typeof t.profile=="object")return t.profile}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata:",t,{length:e?.length??0});}return {}}function Do(e){return He(e?.posting_json_metadata)}function Ko(e,t){if(!e)return t;if(!t)return e;let r=Object.keys(He(e.posting_json_metadata)).length;return Object.keys(He(t.posting_json_metadata)).length>r?t:e}function gu(e){if(!e)return {};try{let t=JSON.parse(e);if(Wt(t))return t}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata root:",t,{length:e?.length??0});}return {}}function No({existingPostingJsonMetadata:e,profile:t,tokens:r}){let n=gu(e),o=Wt(n.profile)?n.profile:{},i=Nr({existingProfile:o,profile:t,tokens:r});return JSON.stringify({...n,profile:i})}function Nr({existingProfile:e,profile:t,tokens:r}){let{tokens:n,version:o,...i}=t??{},s=Io(e??{},i);return s.tokens&&!Array.isArray(s.tokens)&&(s.tokens=void 0),r!==void 0?s.tokens=r&&r.length>0?r:[]:n!==void 0&&(s.tokens=n),s.tokens=fu(s.tokens),s.version=2,s}function Gt(e){return e.map(t=>{let r={name:t.name,owner:t.owner,active:t.active,posting:t.posting,memo_key:t.memo_key,post_count:t.post_count,created:t.created,reputation:t.reputation,posting_json_metadata:t.posting_json_metadata,last_vote_time:t.last_vote_time,last_post:t.last_post,json_metadata:t.json_metadata,reward_hive_balance:t.reward_hive_balance,reward_hbd_balance:t.reward_hbd_balance,reward_vesting_hive:t.reward_vesting_hive,reward_vesting_balance:t.reward_vesting_balance,balance:t.balance,hbd_balance:t.hbd_balance,savings_balance:t.savings_balance,savings_hbd_balance:t.savings_hbd_balance,savings_hbd_last_interest_payment:t.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:t.savings_hbd_seconds_last_update,savings_hbd_seconds:t.savings_hbd_seconds,next_vesting_withdrawal:t.next_vesting_withdrawal,pending_claimed_accounts:t.pending_claimed_accounts,vesting_shares:t.vesting_shares,delegated_vesting_shares:t.delegated_vesting_shares,received_vesting_shares:t.received_vesting_shares,vesting_withdraw_rate:t.vesting_withdraw_rate,to_withdraw:t.to_withdraw,withdrawn:t.withdrawn,witness_votes:t.witness_votes,proxy:t.proxy,recovery_account:t.recovery_account,proxied_vsf_votes:t.proxied_vsf_votes,voting_manabar:t.voting_manabar,voting_power:t.voting_power,downvote_manabar:t.downvote_manabar},n=He(t.posting_json_metadata);if(!n||Object.keys(n).length===0)try{let o=JSON.parse(t.json_metadata||"{}");o.profile&&(n=o.profile);}catch{}return (!n||Object.keys(n).length===0)&&(n={about:"",cover_image:"",location:"",name:"",profile_image:"",website:""}),{...r,profile:n}})}function yu(e){return new TextEncoder().encode(e).length}function et(e){return e?yu(e)<=16:false}function I_(e){return reactQuery.queryOptions({queryKey:u.accounts.list(...e),enabled:e.length>0,queryFn:async()=>{let t=e.filter(et);if(t.length===0)return [];let r=await y("condenser_api.get_accounts",[t],void 0,void 0,void 0,n=>Array.isArray(n));return Gt(r??[])}})}function B_(e){return reactQuery.queryOptions({queryKey:u.accounts.followCount(e),queryFn:()=>y("condenser_api.get_follow_count",[e])})}function j_(e,t,r="blog",n=100){return reactQuery.queryOptions({queryKey:u.accounts.followers(e,t,r,n),queryFn:()=>y("condenser_api.get_followers",[e,t,r,n]),enabled:!!e})}function z_(e,t,r="blog",n=100){return reactQuery.queryOptions({queryKey:u.accounts.following(e,t,r,n),queryFn:()=>y("condenser_api.get_following",[e,t,r,n]),enabled:!!e})}var Mo=1e3,Au=20;function ew(e){return reactQuery.queryOptions({queryKey:u.accounts.mutedUsers(e),queryFn:async()=>{let t=[],r="";for(let n=0;ns.following);if(i[0]===r&&(i=i.slice(1)),!i.length||(t.push(...i),o.lengthet(e)?y("condenser_api.lookup_accounts",[e,t]):[],enabled:!!e,staleTime:1/0})}function lw(e,t=5,r=[]){return reactQuery.queryOptions({queryKey:u.accounts.search(e,r),enabled:!!e,queryFn:async()=>(await y("condenser_api.lookup_accounts",[e,t])).filter(o=>r.length>0?!r.includes(o):true)})}var Su=new Set(["ownerPublicKey","activePublicKey","postingPublicKey","memoPublicKey"]);function gw(e,t){return reactQuery.queryOptions({queryKey:u.accounts.checkWalletPending(e,t??null),queryFn:async()=>{if(!e||!t)return {exist:false};let n=await h()(d.privateApiHost+"/private-api/wallets",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,code:t})});if(!n.ok)return {exist:false};let o=await n.json(),i=Array.isArray(o)?o.flatMap(s=>{if(!s||typeof s!="object")return [];let a=s,c=typeof a.token=="string"?a.token:void 0;if(!c)return [];let p=a.meta&&typeof a.meta=="object"?{...a.meta}:{},l={},m=typeof a.address=="string"&&a.address?a.address:void 0,g=(typeof a.status=="number"?a.status===3:void 0)??false;m&&(l.address=m),l.show=g;let _={symbol:c,currency:c,address:m,show:g,type:"CHAIN",meta:l},A=[];for(let[x,C]of Object.entries(p))typeof x=="string"&&(Su.has(x)||typeof C!="string"||!C||/^[A-Z0-9]{2,10}$/.test(x)&&A.push({symbol:x,currency:x,address:C,show:g,type:"CHAIN",meta:{address:C,show:g}}));return [_,...A]}):[];return {exist:i.length>0,tokens:i.length?i:void 0,wallets:i.length?i:void 0}},refetchOnMount:true})}function Bo(e,t){return reactQuery.queryOptions({queryKey:u.accounts.relations(e,t),enabled:!!e&&!!t,refetchOnMount:false,refetchInterval:36e5,queryFn:async()=>{let r={follows:false,ignores:false,blacklists:false,follows_muted:false,follows_blacklists:false};return !e||!t?r:await y("bridge.get_relationship_between_accounts",[e,t])??r}})}function xw(e){return reactQuery.queryOptions({queryKey:u.accounts.subscriptions(e),enabled:!!e,queryFn:async({signal:t})=>await y("bridge.list_all_subscriptions",{account:e},void 0,void 0,t)??[]})}function Ew(e,t){return reactQuery.queryOptions({queryKey:u.accounts.bookmarks(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Bookmarks] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/bookmarks",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Rw(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.accounts.bookmarksInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch bookmarks: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function qw(e,t){return reactQuery.queryOptions({queryKey:u.accounts.favorites(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/favorites",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Iw(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.accounts.favoritesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/favorites?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorites: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Mw(e,t,r){return reactQuery.queryOptions({queryKey:u.accounts.checkFavorite(e,r),enabled:!!e&&!!t&&!!r,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");if(!r)throw new Error("[SDK][Accounts][Favorites] \u2013 no target username");let o=await h()(d.privateApiHost+"/private-api/favorites-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:r})});if(!o.ok)throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check failed with status ${o.status}: ${o.statusText}`);let i=await o.json();if(typeof i!="boolean")throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check returned invalid type: expected boolean, got ${typeof i}`);return i}})}function Hw(e,t){return reactQuery.queryOptions({queryKey:u.accounts.favoriteTags(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");let n=await h()(d.privateApiHost+"/private-api/favorite-tags",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch favorite tags: ${n.status}`);return await n.json()}})}function Vw(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.accounts.favoriteTagsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/favorite-tags?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorite tags: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}var Ku=/^[a-z0-9-]{1,32}$/,Nu=/^hive-\d+$/;function Se(e){if(typeof e!="string")return null;let t=e.trim().toLowerCase();return t.startsWith("#")&&(t=t.slice(1)),!Ku.test(t)||Nu.test(t)?null:t}function zw(e,t,r){let n=Se(r);return reactQuery.queryOptions({queryKey:u.accounts.checkFavoriteTag(e??"",n??""),enabled:!!e&&!!t&&n!==null,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");if(n===null)return false;let i=await h()(d.privateApiHost+"/private-api/favorite-tags-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,tag:n})});if(!i.ok)throw new Error(`[SDK][Accounts][FavoriteTags] \u2013 favorite-tags-check failed with status ${i.status}: ${i.statusText}`);let s=await i.json();if(typeof s!="boolean")throw new Error(`[SDK][Accounts][FavoriteTags] \u2013 favorite-tags-check returned invalid type: expected boolean, got ${typeof s}`);return s}})}function Zw(e,t){return reactQuery.queryOptions({enabled:!!e&&!!t,queryKey:u.accounts.recoveries(e),queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts] Missing username or access token");return (await h()(d.privateApiHost+"/private-api/recoveries",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function ob(e){return reactQuery.queryOptions({enabled:!!e,queryKey:u.accounts.pendingRecovery(e),queryFn:()=>y("database_api.find_change_recovery_account_requests",{accounts:[e]})})}function pb(e,t=50){return reactQuery.queryOptions({queryKey:u.accounts.reputations(e,t),enabled:!!e,queryFn:async()=>!e||!et(e)?[]:y("condenser_api.get_account_reputations",[e,t])})}var K=oe.operations,Qo={transfers:[K.transfer,K.transfer_to_savings,K.transfer_from_savings,K.cancel_transfer_from_savings,K.fill_transfer_from_savings,K.recurrent_transfer,K.fill_recurrent_transfer,K.escrow_transfer],"market-orders":[K.fill_convert_request,K.fill_order,K.fill_collateralized_convert_request,K.limit_order_create2,K.limit_order_create,K.limit_order_cancel],interests:[K.interest],"stake-operations":[K.return_vesting_delegation,K.withdraw_vesting,K.transfer_to_vesting,K.set_withdraw_vesting_route,K.update_proposal_votes,K.fill_vesting_withdraw,K.account_witness_proxy,K.delegate_vesting_shares],rewards:[K.author_reward,K.curation_reward,K.producer_reward,K.claim_reward_balance,K.comment_benefactor_reward,K.liquidity_reward,K.proposal_pay]},Vu=Array.from(new Set(Object.values(Qo).flat()));function ju(e){return e.block*1e7+e.trx_in_block*100+e.op_pos}function Lu(e){return e.replace(/_operation$/,"")}function $u(e){return typeof e=="object"&&e!==null&&"nai"in e&&"amount"in e&&"precision"in e}function Wu(e){if(!$u(e))return e;let t=T(e),r=$t[e.nai]??"UNKNOWN";return `${t.amount.toFixed(e.precision)} ${r}`}function Gu(e){let t={};for(let[r,n]of Object.entries(e))t[r]=Wu(n);return t}function _b(e,t=20,r=""){let n=r?Qo[r]:Vu;return reactQuery.infiniteQueryOptions({queryKey:u.accounts.transactions(e??"",r,t),initialPageParam:null,queryFn:async({pageParam:o,signal:i})=>{if(!e)return {entries:[],currentPage:0};let s=async m=>{let f={"account-name":e,"operation-types":n.join(","),"page-size":t};return m!==null&&(f.page=m),await te("hafah","/accounts/{account-name}/operations",f,void 0,void 0,i)},a=m=>m.operations_result.map(f=>{let g=Lu(f.op.type);return {...Gu(f.op.value),num:ju(f),type:g,timestamp:f.timestamp,trx_id:f.trx_id}}),c=await s(o),p=a(c),l=o??c.total_pages;if(o===null&&p.length1)try{let m=await s(c.total_pages-1);p=[...p,...a(m)],l=c.total_pages-1;}catch(m){if(i?.aborted)throw m}return {entries:p,currentPage:l}},getNextPageParam:o=>{let i=o.currentPage-1;return i>=1?i:void 0}})}function Ab(){return reactQuery.queryOptions({queryKey:u.accounts.bots(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/public/bots",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch bots: ${e.status}`);return e.json()},refetchOnMount:true,staleTime:1/0})}function Sb(e){return reactQuery.infiniteQueryOptions({queryKey:u.accounts.referrals(e),initialPageParam:{maxId:void 0},queryFn:async({pageParam:t})=>{let{maxId:r}=t??{},n=exports.ConfigManager.getValidatedBaseUrl(),o=new URL(`/private-api/referrals/${e}`,n);r!==void 0&&o.searchParams.set("max_id",r.toString());let i=await fetch(o.toString(),{method:"GET",headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`Failed to fetch referrals: ${i.status}`);return i.json()},getNextPageParam:t=>{let r=t?.[t.length-1]?.id;return typeof r=="number"?{maxId:r}:void 0}})}function kb(e){return reactQuery.queryOptions({queryKey:u.accounts.referralsStats(e),queryFn:async()=>{let t=await fetch(d.privateApiHost+`/private-api/referrals/${e}/stats`,{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch referral stats: ${t.status}`);let r=await t.json();if(!r)throw new Error("No Referrals for this user!");return {total:r.total??0,rewarded:r.rewarded??0}}})}function Kb(e,t,r){let{followType:n="blog",limit:o=100,enabled:i=true}=r??{};return reactQuery.infiniteQueryOptions({queryKey:u.accounts.friends(e,t,n,o),initialPageParam:{startFollowing:""},enabled:i,refetchOnMount:true,queryFn:async({pageParam:s})=>{let{startFollowing:a}=s,l=(await y(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,a===""?null:a,n,o])).map(g=>t==="following"?g.following:g.follower);return (await y("bridge.get_profiles",{accounts:l,observer:void 0})??[]).map(g=>({name:g.name,reputation:g.reputation,active:g.active}))},getNextPageParam:s=>s&&s.length===o?{startFollowing:s[s.length-1].name}:void 0})}var ec=30;function Ub(e,t,r){return reactQuery.queryOptions({queryKey:u.accounts.searchFriends(e,t,r),refetchOnMount:false,enabled:false,queryFn:async()=>{if(!r)return [];let n=r.slice(0,-1),s=(await y(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,n,"blog",1e3])).map(c=>t==="following"?c.following:c.follower).filter(c=>c.toLowerCase().includes(r.toLowerCase())).slice(0,ec);return (await y("bridge.get_profiles",{accounts:s,observer:void 0}))?.map(c=>({name:c.name,full_name:c.metadata.profile?.name||"",reputation:c.reputation,active:c.active}))??[]}})}function $b(e=20){return reactQuery.infiniteQueryOptions({queryKey:u.posts.trendingTags(),queryFn:async({pageParam:{afterTag:t}})=>y("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!n.name.startsWith("hive-")).map(n=>n.name)),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length>0?{afterTag:t[t.length-1]}:void 0,staleTime:3600*1e3})}function Xb(e=250){return reactQuery.infiniteQueryOptions({queryKey:u.posts.trendingTagsWithStats(e),queryFn:async({pageParam:{afterTag:t}})=>y("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!To(n.name))),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length?{afterTag:t[t.length-1].name}:void 0,staleTime:1/0})}function tt(e,t){return reactQuery.queryOptions({queryKey:u.posts.fragments(e),queryFn:async()=>t?(await h()(d.privateApiHost+"/private-api/fragments",{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json():[],enabled:!!e&&!!t})}function rv(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.posts.fragmentsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/fragments?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch fragments: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function sv(e="feed"){return reactQuery.queryOptions({queryKey:u.posts.promoted(e),queryFn:async()=>{let t=exports.ConfigManager.getValidatedBaseUrl(),r=new URL("/private-api/promoted-entries",t);return e==="waves"&&r.searchParams.append("short_content","1"),await(await h()(r.toString(),{method:"GET",headers:{"Content-Type":"application/json"}})).json()}})}function lv(e){return reactQuery.queryOptions({queryKey:u.posts.entryActiveVotes(e?.author,e?.permlink),queryFn:async()=>y("condenser_api.get_active_votes",[e?.author,e?.permlink]),enabled:!!e})}function yv(e,t,r){return reactQuery.queryOptions({queryKey:u.posts.userPostVote(e,t,r),queryFn:async()=>(await y("database_api.list_votes",{start:[e,t,r],limit:1,order:"by_voter_comment"}))?.votes?.[0]||null,enabled:!!e&&!!t&&!!r})}function vv(e,t){return reactQuery.queryOptions({queryKey:u.posts.content(e,t),enabled:!!e&&!!t,queryFn:async()=>y("condenser_api.get_content",[e,t])})}function Sv(e,t){return reactQuery.queryOptions({queryKey:u.posts.contentReplies(e,t),enabled:!!e&&!!t,queryFn:async()=>y("condenser_api.get_content_replies",{author:e,permlink:t})})}function Tv(e,t){return reactQuery.queryOptions({queryKey:u.posts.postHeader(e,t),queryFn:async()=>y("bridge.get_post_header",{author:e,permlink:t}),initialData:null})}function ne(e){return Array.isArray(e)?e.map(t=>Uo(t)):Uo(e)}function Uo(e){if(!e)return e;let t=`@${e.author}/${e.permlink}`;return d.dmcaPatterns.includes(t)||d.dmcaPatternRegexes.some(n=>n.test(t))?{...e,body:"This post is not available due to a copyright/fraudulent claim.",title:""}:e}async function Ho(e,t,r){try{let n=await Ht("bridge.get_post",{author:e,permlink:t,observer:r},1);if(n&&typeof n=="object"&&n.author===e&&n.permlink===t)return n}catch{}return null}function Vo(e,t,r="",n){let o=t?.trim(),i=`/@${e}/${o??""}`;return reactQuery.queryOptions({queryKey:u.posts.entry(i),queryFn:async()=>{if(!o||o==="undefined")return null;let s=await y("bridge.get_post",{author:e,permlink:o,observer:r});if(!s){let c=await Ho(e,o,r);if(!c)return null;let p=n!==void 0?{...c,num:n}:c;return ne(p)}let a=n!==void 0?{...s,num:n}:s;return ne(a)},enabled:!!e&&!!t&&t.trim()!==""&&t.trim()!=="undefined"})}function ae(e,t,r){return y(`bridge.${e}`,t,void 0,void 0,r)}async function jo(e,t,r,n){let{json_metadata:o}=e;if(o?.original_author&&o?.original_permlink&&o.tags?.[0]==="cross-post")try{let i=await dc(o.original_author,o.original_permlink,t,r,n);return i?{...e,original_entry:i,num:r}:e}catch{return e}return {...e,num:r}}async function Lo(e,t,r){let n=e.map(ht),o=await Promise.all(n.map(i=>jo(i,t,void 0,r)));return ne(o)}async function $o(e,t="",r="",n=20,o="",i="",s){let a=await ae("get_ranked_posts",{sort:e,start_author:t,start_permlink:r,limit:n,tag:o,observer:i},s);return Array.isArray(a)?Lo(a,i,s):(a!=null&&console.warn(`[SDK] get_ranked_posts returned ${typeof a} instead of an array for sort=${e}; treating as no results.`),null)}async function Mr(e,t,r="",n="",o=20,i="",s){if(d.dmcaAccounts.includes(t))return [];let a=await ae("get_account_posts",{sort:e,account:t,start_author:r,start_permlink:n,limit:o,observer:i},s);return Array.isArray(a)?Lo(a,i,s):(a!=null&&console.warn(`[SDK] get_account_posts returned ${typeof a} instead of an array for account=${t}, sort=${e}; treating as no results.`),null)}function ht(e){let t={...e,active_votes:Array.isArray(e.active_votes)?[...e.active_votes]:[],beneficiaries:Array.isArray(e.beneficiaries)?[...e.beneficiaries]:[],blacklists:Array.isArray(e.blacklists)?[...e.blacklists]:[],replies:Array.isArray(e.replies)?[...e.replies]:[],stats:e.stats?{...e.stats}:null},r=["author","title","body","created","category","permlink","url","updated"];for(let n of r)t[n]==null&&(t[n]="");return t.author_reputation==null&&(t.author_reputation=0),t.children==null&&(t.children=0),t.depth==null&&(t.depth=0),t.net_rshares==null&&(t.net_rshares=0),t.payout==null&&(t.payout=0),t.percent_hbd==null&&(t.percent_hbd=0),t.stats||(t.stats={flag_weight:0,gray:false,hide:false,total_votes:0}),t.author_payout_value==null&&(t.author_payout_value="0.000 HBD"),t.curator_payout_value==null&&(t.curator_payout_value="0.000 HBD"),t.max_accepted_payout==null&&(t.max_accepted_payout="1000000.000 HBD"),t.payout_at==null&&(t.payout_at=""),t.pending_payout_value==null&&(t.pending_payout_value="0.000 HBD"),t.promoted==null&&(t.promoted="0.000 HBD"),t.is_paidout==null&&(t.is_paidout=false),t}async function dc(e="",t="",r="",n,o){let i=await ae("get_post",{author:e,permlink:t,observer:r},o);if(i){let s=ht(i),a=await jo(s,r,n,o);return ne(a)}}async function $v(e="",t=""){let r=await ae("get_post_header",{author:e,permlink:t});return r&&ht(r)}async function Wo(e,t,r){let n=await ae("get_discussion",{author:e,permlink:t,observer:r||e});if(n){let o={};for(let[i,s]of Object.entries(n))o[i]=ht(s);return o}return n}async function Go(e,t=""){return ae("get_community",{name:e,observer:t})}async function Wv(e="",t=100,r,n="rank",o=""){return ae("list_communities",{last:e,limit:t,query:r,sort:n,observer:o})}async function zo(e){let t=await ae("normalize_post",{post:e});return t&&ht(t)}async function Gv(e){return ae("list_all_subscriptions",{account:e})}async function zv(e){return ae("list_subscribers",{community:e})}async function Jv(e,t){return ae("get_relationship_between_accounts",[e,t])}async function zt(e,t){return ae("get_profiles",{accounts:e,observer:t})}var Yo=(o=>(o.trending="trending",o.author_reputation="author_reputation",o.votes="votes",o.created="created",o))(Yo||{});function Br(e){let t=e.match(/^(\d+\.?\d*)\s*([A-Z]+)$/);return t?{amount:parseFloat(t[1]),symbol:t[2]}:{amount:0,symbol:""}}function mc(e,t,r){let n=l=>Br(l.pending_payout_value).amount+Br(l.author_payout_value).amount+Br(l.curator_payout_value).amount,o=l=>l.net_rshares<0,i=l=>e.json_metadata?.pinned_reply===`${l.author}/${l.permlink}`,s={trending:(l,m)=>{if(o(l))return 1;if(o(m))return -1;let f=n(l),g=n(m);return f!==g?g-f:0},author_reputation:(l,m)=>{let f=l.author_reputation,g=m.author_reputation;return f>g?-1:f{let f=l.children,g=m.children;return f>g?-1:f{if(o(l))return 1;if(o(m))return -1;let f=Date.parse(l.created),g=Date.parse(m.created);return f>g?-1:fi(l)),p=a[c];return c>=0&&(a.splice(c,1),a.unshift(p)),a}function Xo(e,t="created",r=true,n){let o=n||d.defaultObserver;return reactQuery.queryOptions({queryKey:u.posts.discussions(e?.author,e?.permlink,t,o),queryFn:async()=>{if(!e)return [];let i=await y("bridge.get_discussion",{author:e.author,permlink:e.permlink,observer:o}),s=i?Array.from(Object.values(i)):[];return ne(s)},enabled:r&&!!e,select:i=>mc(e,i,t),structuralSharing:(i,s)=>{if(!i||!s)return s;let a=i.filter(l=>l.is_optimistic===true),c=new Set(s.map(l=>`${l.author}/${l.permlink}`)),p=a.filter(l=>!c.has(`${l.author}/${l.permlink}`));return p.length>0?[...s,...p]:s}})}function nA(e,t,r,n=true){let o=r||d.defaultObserver;return reactQuery.queryOptions({queryKey:u.posts.discussion(e,t,o),enabled:n&&!!e&&!!t,queryFn:async()=>Wo(e,t,o)})}function pA(e,t="posts",r=20,n="",o=true){return reactQuery.infiniteQueryOptions({queryKey:u.posts.accountPosts(e??"",t,r,n),enabled:!!e&&o,initialPageParam:{author:void 0,permlink:void 0,hasNextPage:true},queryFn:async({pageParam:i,signal:s})=>{if(!i?.hasNextPage||!e)return [];let a=await Mr(t,e,i.author??"",i.permlink??"",r,n,s);return ne(a??[])},getNextPageParam:i=>{let s=i?.[i.length-1],a=(i?.length??0)===r;if(a)return {author:s?.author,permlink:s?.permlink,hasNextPage:a}}})}function lA(e,t="posts",r="",n="",o=20,i="",s=true){return reactQuery.queryOptions({queryKey:u.posts.accountPostsPage(e??"",t,r,n,o,i),enabled:!!e&&s,queryFn:async({signal:a}={})=>{if(!e)return [];let c=await Mr(t,e,r,n,o,i,a);return ne(c??[])}})}var Zo=new Map;function _c(e){let t=Zo.get(e);return t||(t=r=>({...r,pages:r.pages.map(n=>wc(n,e))}),Zo.set(e,t)),t}function wc(e,t){let r=e.filter(i=>i.stats?.is_pinned),n=e.filter(i=>!i.stats?.is_pinned);if(t==="hot")return [...r,...n];let o=[...n].sort((i,s)=>new Date(s.created).getTime()-new Date(i.created).getTime());return [...r,...o]}function wA(e,t,r=20,n="",o=true,i={}){return reactQuery.infiniteQueryOptions({queryKey:u.posts.postsRanked(e,t,r,n),queryFn:async({pageParam:s,signal:a})=>{let c=t;d.dmcaTagRegexes.some(l=>l.test(t))&&(c="");let p=await y("bridge.get_ranked_posts",{sort:e,start_author:s.author,start_permlink:s.permlink,limit:r,tag:c,observer:n},void 0,void 0,a);if(p==null)return [];if(!Array.isArray(p))throw new Error(`[SDK] get_ranked_posts returned ${typeof p} for sort=${e}`);return ne(p)},select:_c(e),enabled:o,initialPageParam:{author:void 0,permlink:void 0},getNextPageParam:s=>{let a=s?.[s.length-1];if(a)return {author:a.author,permlink:a.permlink}}})}function bA(e,t="",r="",n=20,o="",i="",s=true){return reactQuery.queryOptions({queryKey:u.posts.postsRankedPage(e,t,r,n,o,i),enabled:s,queryFn:async({signal:a}={})=>{let c=o;d.dmcaTagRegexes.some(l=>l.test(o))&&(c="");let p=await $o(e,t,r,n,c,i,a);return ne(p??[])}})}function OA(e,t,r=200){return reactQuery.queryOptions({queryKey:u.posts.reblogs(e??"",r),queryFn:async()=>(await y("condenser_api.get_blog_entries",[e??t,0,r])).filter(o=>o.author!==t&&!o.reblogged_on.startsWith("1970-")).map(o=>({author:o.author,permlink:o.permlink})),enabled:!!e})}function kA(e,t){return reactQuery.queryOptions({queryKey:u.posts.rebloggedBy(e??"",t??""),queryFn:async()=>{if(!e||!t)return [];let r=await y("condenser_api.get_reblogged_by",[e,t]);return Array.isArray(r)?r:[]},enabled:!!e&&!!t})}function IA(e,t){return reactQuery.queryOptions({queryKey:u.posts.schedules(e),queryFn:async()=>{if(!e||!t)return [];let n=await h()(d.privateApiHost+"/private-api/schedules",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch schedules: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function DA(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.posts.schedulesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/schedules?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch schedules: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function BA(e,t){return reactQuery.queryOptions({queryKey:u.posts.drafts(e),queryFn:async()=>{if(!e||!t)return [];let n=await h()(d.privateApiHost+"/private-api/drafts",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch drafts: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function QA(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.posts.draftsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/drafts?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch drafts: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}async function ti(e){let r=await h()(d.privateApiHost+"/private-api/images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch images: ${r.status}`);return r.json()}function jA(e,t){return reactQuery.queryOptions({queryKey:u.posts.images(e),queryFn:async()=>!e||!t?[]:ti(t),enabled:!!e&&!!t})}function LA(e,t){return reactQuery.queryOptions({queryKey:u.posts.galleryImages(e),queryFn:async()=>!e||!t?[]:ti(t),enabled:!!e&&!!t})}function $A(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.posts.imagesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/images?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch images: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function JA(e,t,r=false){return reactQuery.queryOptions({queryKey:u.posts.commentHistory(e,t,r),queryFn:async({signal:n})=>{let o=await fetch(d.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:t,onlyMeta:r?"1":""}),signal:n});if(!o.ok)throw new Error(`Failed to fetch comment history: ${o.status}`);return o.json()},enabled:!!e&&!!t})}function Rc(e,t){let r=e?.trim(),n=t?.trim();if(!r||!n)throw new Error("Invalid entry path: author and permlink are required");let o=r.replace(/^@+/,""),i=n.replace(/^\/+/,"");if(!o||!i)throw new Error("Invalid entry path: author and permlink cannot be empty after normalization");return `@${o}/${i}`}function eP(e,t){let r=t?.trim(),n=e?.trim(),o=!!n&&!!r&&r!=="undefined",i=o?Rc(n,r):"";return reactQuery.queryOptions({queryKey:u.posts.deletedEntry(i),queryFn:async({signal:s})=>{let a=await fetch(d.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:r||""}),signal:s});if(!a.ok)throw new Error(`Failed to fetch comment history: ${a.status}`);return a.json()},select:s=>{if(!s?.list?.[0])return null;let{body:a,title:c,tags:p}=s.list[0];return {body:a,title:c,tags:p}},enabled:o})}function oP(e,t,r=true){return reactQuery.queryOptions({queryKey:u.posts.tips(e,t),queryFn:async()=>{let n=`/private-api/post-tips/${encodeURIComponent(e)}/${encodeURIComponent(t)}`,o=await fetch(d.privateApiHost+n,{method:"GET",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch post tips: ${o.status}`);return o.json()},enabled:!!e&&!!t&&r,staleTime:60*1e3})}function Tc(e,t){return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,host:t}}function Fc(e){return {...e,id:e.id??e.post_id}}function _e(e,t){if(!e)return null;let r=e.container??e,n=Tc(r,t),o=e.parent?Fc(e.parent):void 0;return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,max_accepted_payout:e.max_accepted_payout||"1000000.000 HBD",pending_payout_value:e.pending_payout_value||"0.000 HBD",author_payout_value:e.author_payout_value||"0.000 HBD",curator_payout_value:e.curator_payout_value||"0.000 HBD",host:t,container:n,parent:o}}function qc(e){return Array.isArray(e)?e:[]}async function ri(e){let t=Xo(e,"created",true),r=await d.queryClient.fetchQuery(t),n=qc(r);if(n.length<=1)return [];let o=n.filter(({parent_author:s,parent_permlink:a})=>s===e.author&&a===e.permlink);return o.length===0?[]:o.filter(s=>!s.stats?.gray)}function ni(e,t,r){return e.length===0?[]:e.map(n=>{let o=e.find(i=>i.author===n.parent_author&&i.permlink===n.parent_permlink&&i.author!==r);return {...n,id:n.post_id,host:r,container:t,parent:o}}).filter(n=>n.container.post_id!==n.post_id).sort((n,o)=>new Date(o.created).getTime()-new Date(n.created).getTime())}var Kc=20;function oi(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,following:e.following?.trim().toLowerCase()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Kc}}async function ii({containers:e,tag:t,following:r,author:n,observer:o,limit:i},s,a){let c=exports.ConfigManager.getValidatedBaseUrl(),p=new URL("/private-api/waves/feed",c);p.searchParams.set("limit",String(i)),s&&p.searchParams.set("cursor",s),e.forEach(f=>p.searchParams.append("container",f)),t&&p.searchParams.set("tag",t),r&&p.searchParams.set("following",r),n&&p.searchParams.set("author",n),o&&p.searchParams.set("observer",o);let l=await fetch(p.toString(),{method:"GET",signal:a});if(!l.ok)throw new Error(`Failed to fetch waves feed: ${l.status}`);let m=await l.json();return !Array.isArray(m)||m.length===0?[]:m.map(f=>{let g=_e(f,f.host??"");return g?{...g,_cursor:f._cursor}:null}).filter(f=>!!f)}function dP(e={}){let t=oi(e),{containers:r,tag:n,following:o,author:i,observer:s,limit:a}=t;return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesFeed({containers:r,tag:n,following:o,author:i,observer:s,limit:a}),initialPageParam:void 0,queryFn:({pageParam:c,signal:p})=>ii(t,c,p),getNextPageParam:c=>{if(!(c.lengthii(t,void 0,c)})}var Mc=20;function Bc(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Mc}}async function Qc({containers:e,tag:t,author:r,observer:n,limit:o},i,s){let a=exports.ConfigManager.getValidatedBaseUrl(),c=new URL("/private-api/waves/shorts",a);c.searchParams.set("limit",String(o)),i&&c.searchParams.set("cursor",i),e.forEach(m=>c.searchParams.append("container",m)),t&&c.searchParams.set("tag",t),r&&c.searchParams.set("author",r),n&&c.searchParams.set("observer",n);let p=await fetch(c.toString(),{method:"GET",signal:s});if(!p.ok)throw new Error(`Failed to fetch shorts feed: ${p.status}`);let l=await p.json();return !Array.isArray(l)||l.length===0?[]:l.map(m=>{let f=_e(m,m.host??"");return f?{...f,active_votes:f.active_votes??[],video:m.video,_cursor:m._cursor}:null}).filter(m=>!!m)}function _P(e={}){let t=Bc(e),{containers:r,tag:n,author:o,observer:i,limit:s}=t;return reactQuery.infiniteQueryOptions({queryKey:u.posts.shortsFeed({containers:r,tag:n,author:o,observer:i,limit:s}),initialPageParam:void 0,queryFn:({pageParam:a,signal:c})=>Qc(t,a,c),getNextPageParam:a=>{if(!(a.length(l.id=l.post_id,l.host=e,l));for(let l of c){if(i&&l.post_id===i){i=void 0;continue}if(o+=1,l.stats?.gray){r=l.author,n=l.permlink;continue}let m;try{m=await ri(l);}catch(f){console.error("[SDK] getThreads get_discussion error:",f),r=l.author,n=l.permlink;continue}if(m.length===0){r=l.author,n=l.permlink;continue}return {entries:ni(m,l,e)}}let p=c[c.length-1];if(!p)return null;r=p.author,n=p.permlink;}return null}function OP(e){return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesByHost(e),initialPageParam:void 0,queryFn:async({pageParam:t})=>{let r=await jc(e,t);return r?r.entries:[]},getNextPageParam:t=>t?.[0]?.container})}var $c=40;function kP(e,t,r=$c){return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesByTag(e,t),initialPageParam:void 0,queryFn:async({signal:n})=>{try{let o=exports.ConfigManager.getValidatedBaseUrl(),i=new URL("/private-api/waves/tags",o);i.searchParams.set("container",e),i.searchParams.set("tag",t);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves by tag: ${s.status}`);return (await s.json()).slice(0,r).map(p=>_e(p,e)).filter(p=>!!p).sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves by tag",o),[]}},getNextPageParam:()=>{}})}function DP(e,t){let r=t?.trim().toLowerCase();return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesFollowing(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=exports.ConfigManager.getValidatedBaseUrl(),i=new URL("/private-api/waves/following",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves following feed: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let c=a.map(p=>_e(p,e)).filter(p=>!!p);return c.length===0?[]:c.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves following feed",o),[]}},getNextPageParam:()=>{}})}function BP(e,t=24){let r=e?.trim()||void 0;return reactQuery.queryOptions({queryKey:u.posts.wavesTrendingTags(r??"",t),queryFn:async({signal:n})=>{try{let o=exports.ConfigManager.getValidatedBaseUrl(),i=new URL("/private-api/waves/trending/tags",o);r&&i.searchParams.set("container",r),i.searchParams.set("hours",t.toString());let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves trending tags: ${s.status}`);return (await s.json()).map(({tag:c,posts:p})=>({tag:c,posts:p}))}catch(o){return console.error("[SDK] Failed to fetch waves trending tags",o),[]}}})}function jP(e,t){let r=t?.trim().toLowerCase();return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesByAccount(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=exports.ConfigManager.getValidatedBaseUrl(),i=new URL("/private-api/waves/account",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves for account: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let c=a.map(p=>_e(p,e)).filter(p=>!!p);return c.length===0?[]:c.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){throw console.error("[SDK] Failed to fetch waves for account",o),o}},getNextPageParam:()=>{}})}function GP(e){return reactQuery.queryOptions({queryKey:u.posts.wavesTrendingAuthors(e),queryFn:async({signal:t})=>{try{let r=exports.ConfigManager.getValidatedBaseUrl(),n=new URL("/private-api/waves/trending/authors",r);n.searchParams.set("container",e);let o=await fetch(n.toString(),{method:"GET",signal:t});if(!o.ok)throw new Error(`Failed to fetch waves trending authors: ${o.status}`);return (await o.json()).map(({author:s,posts:a})=>({author:s,posts:a}))}catch(r){throw console.error("[SDK] Failed to fetch waves trending authors",r),r}}})}function ZP(e,t=true){return reactQuery.queryOptions({queryKey:u.posts.normalize(e?.author??"",e?.permlink??""),enabled:t&&!!e,queryFn:async()=>zo(e)})}function Zc(e){return !!e&&typeof e=="object"&&"author"in e&&"permlink"in e&&"active_votes"in e}function si(e){let t=new Date(e);return (new Date().getTime()-t.getTime())/(1e3*60*60*24)}function a0(e,t){let{limit:r=20,filters:n=[],dayLimit:o=7}=t??{};return reactQuery.infiniteQueryOptions({queryKey:u.accounts.voteHistory(e,r),initialPageParam:{start:-1},queryFn:async({pageParam:i})=>{let{start:s}=i,a=await y("condenser_api.get_account_history",[e,s,r,...n]),p=a.map(([f,g])=>({...g.op[1],num:f,timestamp:g.timestamp})).filter(f=>f.voter===e&&f.weight!==0&&si(f.timestamp)<=o),l=[];for(let f of p){let g=await d.queryClient.fetchQuery(Vo(f.author,f.permlink));Zc(g)&&l.push(g);}let[m]=a;return {lastDate:m?si(m[1].timestamp):0,lastItemFetched:m?m[0]:s,entries:l}},getNextPageParam:i=>({start:i.lastItemFetched})})}function d0(e,t,r=true){return reactQuery.queryOptions({queryKey:u.accounts.profiles(e,t??""),enabled:r&&e.length>0,queryFn:async()=>zt(e,t)})}function _0(e,t="HIVE",r=200){return reactQuery.infiniteQueryOptions({queryKey:u.wallet.balanceHistory(e??"",t,r),initialPageParam:null,queryFn:async({pageParam:n,signal:o})=>{if(!e)return {entries:[],currentPage:0};let i={"account-name":e,"coin-type":t,"page-size":r,direction:"desc"};n!==null&&(i.page=n);let s=await te("balance","/accounts/{account-name}/balance-history",i,void 0,void 0,o);return {entries:s.operations_result,currentPage:n??s.total_pages}},getNextPageParam:n=>{let o=n.currentPage-1;return o>=1?o:void 0},enabled:!!e})}function P0(e,t="HIVE",r="yearly"){return reactQuery.queryOptions({queryKey:u.wallet.aggregatedHistory(e??"",t,r),queryFn:async()=>e?await te("balance","/accounts/{account-name}/aggregated-history",{"account-name":e,"coin-type":t,granularity:r}):[],enabled:!!e,staleTime:6e4})}function C0(){return reactQuery.queryOptions({queryKey:u.accounts.proMembers(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/pro-members",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch pro members: ${e.status}`);return e.json()},staleTime:300*1e3})}function E0(e){return new Set((e??[]).map(t=>t.toLowerCase()))}function I0(e,t,r){let n=reactQuery.useQueryClient(),{data:o}=reactQuery.useQuery(M(e));return v(["accounts","update"],e,i=>{let s=Ko(n.getQueryData(M(e).queryKey),o);if(!s)throw new Error("[SDK][Accounts] \u2013 cannot update not existing account");return [["account_update2",{account:e,json_metadata:"",extensions:[],posting_json_metadata:No({existingPostingJsonMetadata:s.posting_json_metadata,profile:i.profile,tokens:i.tokens})}]]},async(i,s)=>{n.setQueryData(M(e).queryKey,a=>{if(!a)return a;let c=JSON.parse(JSON.stringify(a));return c.profile=Nr({existingProfile:Do(a),profile:s.profile,tokens:s.tokens}),c}),await S(t?.adapter,r,[u.accounts.full(e)]);},t,void 0,{broadcastMode:r,onMutate:async()=>{if(e)try{await n.fetchQuery({...M(e),staleTime:0});}catch{}}})}function B0(e,t,r,n,o){return reactQuery.useMutation({mutationKey:["accounts","relation","update",e,t],mutationFn:async i=>{let s=Bo(e,t);await w().prefetchQuery(s);let a=w().getQueryData(s.queryKey);return await Eo(e,"follow",["follow",{follower:e,following:t,what:[...i==="toggle-ignore"&&!a?.ignores?["ignore"]:[],...i==="toggle-follow"&&!a?.follows?["blog"]:[]]}],r),{...a,ignores:i==="toggle-ignore"?!a?.ignores:a?.ignores,follows:i==="toggle-follow"?!a?.follows:a?.follows}},onError:o,onSuccess(i){n(i),w().setQueryData(u.accounts.relations(e,t),i),t&&w().invalidateQueries(M(t));}})}function Qr(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildVoteOp] Missing required parameters");if(n<-1e4||n>1e4)throw new Error("[SDK][buildVoteOp] Weight must be between -10000 and 10000");return ["vote",{voter:e,author:t,permlink:r,weight:n}]}function Ve(e,t,r,n,o,i,s){let a=[];if(e||a.push("author"),t||a.push("permlink"),n===void 0&&a.push("parentPermlink"),i||a.push("body"),a.length>0)throw new Error(`[SDK][buildCommentOp] Missing required parameters: ${a.join(", ")}`);return ["comment",{parent_author:r,parent_permlink:n,author:e,permlink:t,title:o,body:i,json_metadata:JSON.stringify(s)}]}function je(e,t,r,n,o,i,s){if(!e||!t)throw new Error("[SDK][buildCommentOptionsOp] Missing required parameters");return ["comment_options",{author:e,permlink:t,max_accepted_payout:r,percent_hbd:n,allow_votes:o,allow_curation_rewards:i,extensions:s}]}function Ur(e,t){if(!e||!t)throw new Error("[SDK][buildDeleteCommentOp] Missing required parameters");return ["delete_comment",{author:e,permlink:t}]}function Hr(e,t,r,n=false){if(!e||!t||!r)throw new Error("[SDK][buildReblogOp] Missing required parameters");let o={account:e,author:t,permlink:r};return n&&(o.delete="delete"),["custom_json",{id:"follow",json:JSON.stringify(["reblog",o]),required_auths:[],required_posting_auths:[e]}]}function Le(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferOp] Missing required parameters");return ["transfer",{from:e,to:t,amount:r,memo:n||""}]}function ap(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiTransferOps] Missing required parameters");return t.trim().split(/[\s,]+/).filter(Boolean).map(i=>Le(e,i.trim(),r,n))}function up(e,t,r,n,o,i){if(!e||!t||!r)throw new Error("[SDK][buildRecurrentTransferOp] Missing required parameters");if(o<24)throw new Error("[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours");return ["recurrent_transfer",{from:e,to:t,amount:r,memo:n||"",recurrence:o,executions:i,extensions:[]}]}function rt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferToSavingsOp] Missing required parameters");return ["transfer_to_savings",{from:e,to:t,amount:r,memo:n||""}]}function $e(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildTransferFromSavingsOp] Missing required parameters");return ["transfer_from_savings",{from:e,to:t,amount:r,memo:n||"",request_id:o}]}function ai(e,t){if(!e||t===void 0)throw new Error("[SDK][buildCancelTransferFromSavingsOp] Missing required parameters");return ["cancel_transfer_from_savings",{from:e,request_id:t}]}function _t(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildClaimInterestOps] Missing required parameters");return [$e(e,t,r,n,o),ai(e,o)]}function wt(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildTransferToVestingOp] Missing required parameters");return ["transfer_to_vesting",{from:e,to:t,amount:r}]}function bt(e,t){if(!e||!t)throw new Error("[SDK][buildWithdrawVestingOp] Missing required parameters");return ["withdraw_vesting",{account:e,vesting_shares:t}]}function vt(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildDelegateVestingSharesOp] Missing required parameters");return ["delegate_vesting_shares",{delegator:e,delegatee:t,vesting_shares:r}]}function At(e,t,r,n){if(!e||!t||r===void 0)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters");if(r<0||r>1e4)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000");return ["set_withdraw_vesting_route",{from_account:e,to_account:t,percent:r,auto_vest:n}]}function Pt(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildConvertOp] Missing required parameters");return ["convert",{owner:e,amount:t,requestid:r}]}function Vr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildCollateralizedConvertOp] Missing required parameters");return ["collateralized_convert",{owner:e,amount:t,requestid:r}]}function We(e,t,r,n="tokens"){return ["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:JSON.stringify({contractName:n,contractAction:t,contractPayload:r})}]}function jr(e,t){return ["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:JSON.stringify(t.map(r=>({symbol:r})))}]}function Lr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildDelegateRcOp] Missing required parameters");let n=t.includes(",")?t.split(",").map(o=>o.trim()):[t];return ["custom_json",{id:"rc",json:JSON.stringify(["delegate_rc",{from:e,delegatees:n,max_rc:r}]),required_auths:[],required_posting_auths:[e]}]}function $r(e,t){if(!e||!t)throw new Error("[SDK][buildFollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["blog"]}]),required_auths:[],required_posting_auths:[e]}]}function Jt(e,t){if(!e||!t)throw new Error("[SDK][buildUnfollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:[]}]),required_auths:[],required_posting_auths:[e]}]}function cp(e,t){if(!e||!t)throw new Error("[SDK][buildIgnoreOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["ignore"]}]),required_auths:[],required_posting_auths:[e]}]}function pp(e,t){if(!e||!t)throw new Error("[SDK][buildUnignoreOp] Missing required parameters");return Jt(e,t)}function Wr(e,t){if(!e)throw new Error("[SDK][buildSetLastReadOps] Missing required parameters");let r=t||new Date().toISOString().split(".")[0],n=["custom_json",{id:"notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}],o=["custom_json",{id:"ecency_notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}];return [n,o]}function Gr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildWitnessVoteOp] Missing required parameters");return ["account_witness_vote",{account:e,witness:t,approve:r}]}function zr(e,t){if(!e||t===void 0)throw new Error("[SDK][buildWitnessProxyOp] Missing required parameters");return ["account_witness_proxy",{account:e,proxy:t}]}function Jr(e,t){if(!e||!t.receiver||!t.subject||!t.permlink||!t.start||!t.end||!t.dailyPay)throw new Error("[SDK][buildProposalCreateOp] Missing required parameters");let r=new Date(t.start),n=new Date(t.end);if(r.toString()==="Invalid Date"||n.toString()==="Invalid Date")throw new Error("[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings");return ["create_proposal",{creator:e,receiver:t.receiver,start_date:t.start,end_date:t.end,daily_pay:t.dailyPay,subject:t.subject,permlink:t.permlink,extensions:[]}]}function Yr(e,t,r){if(!e||!t||t.length===0||r===void 0)throw new Error("[SDK][buildProposalVoteOp] Missing required parameters");return ["update_proposal_votes",{voter:e,proposal_ids:t,approve:r,extensions:[]}]}function lp(e,t){if(!e||!t||t.length===0)throw new Error("[SDK][buildRemoveProposalOp] Missing required parameters");return ["remove_proposal",{proposal_owner:e,proposal_ids:t,extensions:[]}]}function dp(e,t,r,n,o){if(e==null||typeof e!="number"||!t||!r||!n||!o)throw new Error("[SDK][buildUpdateProposalOp] Missing required parameters");return ["update_proposal",{proposal_id:e,creator:t,daily_pay:r,subject:n,permlink:o,extensions:[]}]}function Xr(e,t){if(!e||!t)throw new Error("[SDK][buildSubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["subscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function Zr(e,t){if(!e||!t)throw new Error("[SDK][buildUnsubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["unsubscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function en(e,t,r,n){if(!e||!t||!r||!n)throw new Error(`[SDK][buildSetRoleOp] Missing required parameters: username=${e}, community=${t}, account=${r}, role=${n}`);return ["custom_json",{id:"community",json:JSON.stringify(["setRole",{community:t,account:r,role:n}]),required_auths:[],required_posting_auths:[e]}]}function tn(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildUpdateCommunityOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["updateProps",{community:t,props:r}]),required_auths:[],required_posting_auths:[e]}]}function rn(e,t,r,n,o){if(!e||!t||!r||!n||o===void 0)throw new Error("[SDK][buildPinPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"pinPost":"unpinPost",{community:t,account:r,permlink:n}]),required_auths:[],required_posting_auths:[e]}]}function nn(e,t,r,n,o,i){if(!e||!t||!r||!n||i===void 0)throw new Error("[SDK][buildMutePostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([i?"mutePost":"unmutePost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}function mp(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildMuteUserOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"muteUser":"unmuteUser",{community:t,account:r,notes:n}]),required_auths:[],required_posting_auths:[e]}]}function fp(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildFlagPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["flagPost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}var ui=(r=>(r.Buy="buy",r.Sell="sell",r))(ui||{}),ci=(r=>(r.EMPTY="",r.SWAP="9",r))(ci||{});function Xt(e,t,r,n,o,i){if(!e||!t||!r||!o||i===void 0)throw new Error("[SDK][buildLimitOrderCreateOp] Missing required parameters");return ["limit_order_create",{owner:e,orderid:i,amount_to_sell:t,min_to_receive:r,fill_or_kill:n,expiration:o}]}function Yt(e,t=3){return e.toFixed(t)}function gp(e,t,r,n,o=""){if(!e||n===void 0||!Number.isFinite(t)||t<=0||!Number.isFinite(r)||r<=0)throw new Error("[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters");let i=new Date(Date.now());i.setDate(i.getDate()+27);let s=i.toISOString().split(".")[0],a=+`${o}${Math.floor(Date.now()/1e3).toString().slice(2)}`,c=n==="buy"?`${Yt(t,3)} HBD`:`${Yt(t,3)} HIVE`,p=n==="buy"?`${Yt(r,3)} HIVE`:`${Yt(r,3)} HBD`;return Xt(e,c,p,false,s,a)}function on(e,t){if(!e||t===void 0)throw new Error("[SDK][buildLimitOrderCancelOp] Missing required parameters");return ["limit_order_cancel",{owner:e,orderid:t}]}function sn(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildClaimRewardBalanceOp] Missing required parameters");return ["claim_reward_balance",{account:e,reward_hive:t,reward_hbd:r,reward_vests:n}]}function yp(e,t,r,n,o,i){if(!e||!o)throw new Error("[SDK][buildAccountUpdateOp] Missing required parameters");return ["account_update",{account:e,owner:t,active:r,posting:n,memo_key:o,json_metadata:i}]}function hp(e,t,r,n){if(!e||r===void 0)throw new Error("[SDK][buildAccountUpdate2Op] Missing required parameters");return ["account_update2",{account:e,json_metadata:t||"",posting_json_metadata:r,extensions:n||[]}]}function an(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildAccountCreateOp] Missing required parameters");let o={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},i={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},s={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["account_create",{creator:e,new_account_name:t,owner:o,active:i,posting:s,memo_key:r.memoPublicKey,json_metadata:"",fee:n}]}function un(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCreateClaimedAccountOp] Missing required parameters");let n={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},o={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},i={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["create_claimed_account",{creator:e,new_account_name:t,owner:n,active:o,posting:i,memo_key:r.memoPublicKey,json_metadata:"",extensions:[]}]}function cn(e,t){if(!e||!t)throw new Error("[SDK][buildClaimAccountOp] Missing required parameters");return ["claim_account",{creator:e,fee:t,extensions:[]}]}function pn(e,t,r,n,o,i){if(!e||!t||!r||!o)throw new Error("[SDK][buildGrantPostingPermissionOp] Missing required parameters");let s=t.account_auths.findIndex(([p])=>p===r),a=[...t.account_auths];s>=0?a[s]=[r,n]:a.push([r,n]);let c={...t,account_auths:a};return c.account_auths.sort((p,l)=>p[0]>l[0]?1:-1),["account_update",{account:e,posting:c,memo_key:o,json_metadata:i}]}function _p(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildRevokePostingPermissionOp] Missing required parameters");let i={...t,account_auths:t.account_auths.filter(([s])=>s!==r)};return ["account_update",{account:e,posting:i,memo_key:n,json_metadata:o}]}function wp(e,t,r=[]){if(!e||!t)throw new Error("[SDK][buildChangeRecoveryAccountOp] Missing required parameters");return ["change_recovery_account",{account_to_recover:e,new_recovery_account:t,extensions:r}]}function bp(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRequestAccountRecoveryOp] Missing required parameters");return ["request_account_recovery",{recovery_account:e,account_to_recover:t,new_owner_authority:r,extensions:n}]}function vp(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRecoverAccountOp] Missing required parameters");return ["recover_account",{account_to_recover:e,new_owner_authority:t,recent_owner_authority:r,extensions:n}]}function ln(e,t,r){if(!e||!t||!Number.isFinite(r))throw new Error("[SDK][buildBoostPlusOp] Missing required parameters");return ["custom_json",{id:"ecency_boost_plus",json:JSON.stringify({user:e,account:t,duration:r}),required_auths:[e],required_posting_auths:[]}]}function dn(e,t){if(!e||!Number.isInteger(t)||t<=0)throw new Error("[SDK][buildRcDelegationOp] Missing or invalid parameters");return ["custom_json",{id:"ecency_rc_delegation",json:JSON.stringify({user:e,duration:t}),required_auths:[e],required_posting_auths:[]}]}function mn(e,t,r,n){if(!e||!t||!r||!Number.isFinite(n))throw new Error("[SDK][buildPromoteOp] Missing required parameters");return ["custom_json",{id:"ecency_promote",json:JSON.stringify({user:e,author:t,permlink:r,duration:n}),required_auths:[e],required_posting_auths:[]}]}var Ap=["quality","underrated","newcomer","other"];function fn(e,t,r,n="quality"){if(!e||!t||!r)throw new Error("[SDK][buildCurationRecommendOp] Missing required parameters");if(!Ap.includes(n))throw new Error("[SDK][buildCurationRecommendOp] Unknown reason");return ["custom_json",{id:"ecency_curation",json:JSON.stringify({v:1,op:"recommend",author:t,permlink:r,reason:n}),required_auths:[],required_posting_auths:[e]}]}function gn(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCurationUnrecommendOp] Missing required parameters");return ["custom_json",{id:"ecency_curation",json:JSON.stringify({v:1,op:"unrecommend",author:t,permlink:r}),required_auths:[],required_posting_auths:[e]}]}function nt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildPointTransferOp] Missing required parameters");let o=r.replace(/POINTS\b/,"POINT");return ["custom_json",{id:"ecency_point_transfer",json:JSON.stringify({sender:e,receiver:t,amount:o,memo:n||""}),required_auths:[e],required_posting_auths:[]}]}function Pp(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiPointTransferOps] Missing required parameters");let o=t.trim().split(/[\s,]+/).filter(Boolean);if(o.length===0)throw new Error("[SDK][buildMultiPointTransferOps] Missing valid destinations");return o.map(i=>nt(e,i.trim(),r,n))}function yn(e){if(!e)throw new Error("[SDK][buildCommunityRegistrationOp] Missing required parameters");return ["custom_json",{id:"ecency_registration",json:JSON.stringify({name:e}),required_auths:[e],required_posting_auths:[]}]}function xp(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildActiveCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[e],required_posting_auths:[]}]}function Op(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildPostingCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[],required_posting_auths:[e]}]}function sx(e,t,r){return v(["accounts","follow"],e,({following:n})=>[$r(e,n)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.relations(e,o.following),u.accounts.full(o.following),u.accounts.followCount(o.following),u.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function px(e,t,r){return v(["accounts","unfollow"],e,({following:n})=>[Jt(e,n)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.relations(e,o.following),u.accounts.full(o.following),u.accounts.followCount(o.following),u.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function fx(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","bookmarks","add",e],mutationFn:async({author:o,permlink:i})=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/bookmarks-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:o,permlink:i,code:t})})).json()},onSuccess:()=>{r(),w().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function _x(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","bookmarks","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/bookmarks-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({id:o,code:t})})).json()},onSuccess:()=>{r(),w().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function Ax(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","favorites","add",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/favorites-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})})).json()},onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favorites(e)}),s.invalidateQueries({queryKey:u.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavorite(e,i)});},onError:n})}function Cx(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","favorites","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");let s=await h()(d.privateApiHost+"/private-api/favorites-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})});if(!s.ok)throw new Error(`Failed to delete favorite: ${s.status}`);return s.json()},onMutate:async o=>{if(!e)return;let i=w(),s=u.accounts.favorites(e),a=u.accounts.favoritesInfinite(e),c=u.accounts.checkFavorite(e,o);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a}),i.cancelQueries({queryKey:c})]);let p=i.getQueryData(s);p&&i.setQueryData(s,p.filter(g=>g.account!==o));let l=i.getQueryData(c);i.setQueryData(c,false);let m=i.getQueriesData({queryKey:a}),f=new Map(m);for(let[g,_]of m)_&&i.setQueryData(g,{..._,pages:_.pages.map(A=>({...A,data:A.data.filter(x=>x.account!==o)}))});return {previousList:p,previousInfinite:f,previousCheck:l}},onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favorites(e)}),s.invalidateQueries({queryKey:u.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavorite(e,i)});},onError:(o,i,s)=>{let a=w();if(s?.previousList&&a.setQueryData(u.accounts.favorites(e),s.previousList),s?.previousInfinite)for(let[c,p]of s.previousInfinite)a.setQueryData(c,p);s?.previousCheck!==void 0&&a.setQueryData(u.accounts.checkFavorite(e,i),s.previousCheck),n(o);}})}async function pi(e,t,r,n){if(!t||!r)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");let o=Se(n);if(o===null)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 invalid tag");let s=await h()(d.privateApiHost+"/private-api/"+e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({tag:o,code:r})});if(!s.ok)throw new Error(`Failed to ${e==="favorite-tags-add"?"add":"delete"} favorite tag: ${s.status}`);return await s.json()}function li(e,t,r){return pi("favorite-tags-add",e,t,r)}function di(e,t,r){return pi("favorite-tags-delete",e,t,r)}function Kx(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","favorite-tags","add",e],mutationFn:o=>li(e,t,o),onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favoriteTags(e)}),s.invalidateQueries({queryKey:u.accounts.favoriteTagsInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavoriteTag(e,Se(i)??i)});},onError:n})}function Fp(e,t,r,n){let o=i=>{let s=w();s.invalidateQueries({queryKey:u.accounts.favoriteTags(e)}),s.invalidateQueries({queryKey:u.accounts.favoriteTagsInfinite(e)}),i&&s.invalidateQueries({queryKey:u.accounts.checkFavoriteTag(e,i)});};return {mutationKey:["accounts","favorite-tags","delete",e],mutationFn:i=>di(e,t,i),onMutate:async i=>{let s=Se(i);if(!e||s===null)return;let a=w(),c=u.accounts.favoriteTags(e),p=u.accounts.favoriteTagsInfinite(e),l=u.accounts.checkFavoriteTag(e,s);await Promise.all([a.cancelQueries({queryKey:c}),a.cancelQueries({queryKey:p}),a.cancelQueries({queryKey:l})]);let m=a.getQueryData(c);m&&a.setQueryData(c,m.filter(A=>A.tag!==s));let f=a.getQueryData(l);a.setQueryData(l,false);let g=a.getQueriesData({queryKey:p}),_=new Map(g);for(let[A,x]of g)x&&a.setQueryData(A,{...x,pages:x.pages.map(C=>({...C,data:C.data.filter(F=>F.tag!==s)}))});return {normalized:s,previousList:m,previousInfinite:_,previousCheck:f}},onSuccess:(i,s)=>{r(),o(Se(s)??void 0);},onError:(i,s,a)=>{let c=w();if(a){a.previousList&&c.setQueryData(u.accounts.favoriteTags(e),a.previousList);for(let[l,m]of a.previousInfinite)c.setQueryData(l,m);let p=u.accounts.checkFavoriteTag(e,a.normalized);a.previousCheck!==void 0?c.setQueryData(p,a.previousCheck):c.removeQueries({queryKey:p,exact:true});}o(a?.normalized),n(i);}}}function Lx(e,t,r,n){return reactQuery.useMutation(Fp(e,t,r,n))}function Dp(e,t){let r=new Map;return e.forEach(([n,o])=>{r.set(n.toString(),o);}),t.forEach(([n,o])=>{r.set(n.toString(),o);}),Array.from(r.entries()).sort(([n],[o])=>n.localeCompare(o)).map(([n,o])=>[n,o])}function mi(e,t){let{data:r}=reactQuery.useQuery(M(e));return reactQuery.useMutation({mutationKey:["accounts","keys-update",e],mutationFn:async({keys:n,keepCurrent:o=false,currentKey:i,keysToRevoke:s=[],keysToRevokeByAuthority:a={}})=>{if(n.length===0)throw new Error("[SDK][Update password] \u2013 no new keys provided");if(!r)throw new Error("[SDK][Update password] \u2013 cannot update keys for anon user");let c=p=>{let l=JSON.parse(JSON.stringify(r[p])),f=[...a[p]||[],...a[p]===void 0?s:[]],g=o?l.key_auths.filter(([_])=>!f.includes(_.toString())):[];return l.key_auths=Dp(g,n.map((_,A)=>[_[p].createPublic().toString(),A+1])),l};return ee([["account_update",{account:e,json_metadata:r.json_metadata,owner:c("owner"),active:c("active"),posting:c("posting"),memo_key:n[0].memo_key.createPublic().toString()}]],i)},...t})}function tO(e,t){let{data:r}=reactQuery.useQuery(M(e)),{mutateAsync:n}=mi(e);return reactQuery.useMutation({mutationKey:["accounts","password-update",e],mutationFn:async({newPassword:o,currentPassword:i,keepCurrent:s})=>{if(!r)throw new Error("[SDK][Update password] \u2013 cannot update password for anon user");let a=U.fromLogin(e,i,"owner");return n({currentKey:a,keepCurrent:s,keys:[{owner:U.fromLogin(e,o,"owner"),active:U.fromLogin(e,o,"active"),posting:U.fromLogin(e,o,"posting"),memo_key:U.fromLogin(e,o,"memo")}]})},...t})}function aO(e,t,r){let n=reactQuery.useQueryClient(),{data:o}=reactQuery.useQuery(M(e));return reactQuery.useMutation({mutationKey:["accounts","revoke-posting",o?.name],mutationFn:async({accountName:i,type:s,key:a})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot revoke posting for anonymous user");let c=JSON.parse(JSON.stringify(o.posting));c.account_auths=c.account_auths.filter(([l])=>l!==i);let p={account:o.name,posting:c,memo_key:o.memo_key,json_metadata:o.json_metadata};if(s==="key"&&a)return ee([["account_update",p]],a);if(s==="keychain"){if(!r?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return r.adapter.broadcastWithKeychain(o.name,[["account_update",p]],"active")}else return !t.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing."),Co__default.default.sendOperation(["account_update",p],t.hsCallbackUrl?{callback:t.hsCallbackUrl}:{},()=>{})},onError:t.onError,onSuccess:(i,s,a)=>{t.onSuccess?.(i,s,a),n.setQueryData(M(e).queryKey,c=>({...c,posting:{...c?.posting,account_auths:c?.posting?.account_auths?.filter(([p])=>p!==s.accountName)??[]}}));}})}function fO(e,t,r,n){let{data:o}=reactQuery.useQuery(M(e));return reactQuery.useMutation({mutationKey:["accounts","recovery",o?.name],mutationFn:async({accountName:i,type:s,key:a,email:c})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot change recovery for anonymous user");let p={account_to_recover:o.name,new_recovery_account:i,extensions:[]};if(s==="ecency"){if(!t)throw new Error("[SDK][Accounts] \u2013 missing access token");let m=await h()(d.privateApiHost+"/private-api/recoveries-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,email:c,publicKeys:[...o.owner.key_auths,...o.active.key_auths,...o.posting.key_auths,o.memo_key]})});if(!m.ok)throw new Error(`[SDK][Accounts] Failed to add recovery: ${m.status}`);return m}else {if(s==="key"&&a)return ee([["change_recovery_account",p]],a);if(s==="keychain"){if(!n?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return n.adapter.broadcastWithKeychain(o.name,[["change_recovery_account",p]],"owner")}else return !r.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing."),Co__default.default.sendOperation(["change_recovery_account",p],r.hsCallbackUrl?{callback:r.hsCallbackUrl}:{},()=>{})}},onError:r.onError,onSuccess:r.onSuccess})}function yO(e,t){let r=e.key_auths.filter(([o])=>!t.has(String(o))).reduce((o,[,i])=>o+i,0),n=(e.account_auths??[]).reduce((o,[,i])=>o+i,0);return r+n>=e.weight_threshold}function fi(e,t){let r=new Set(t.map(s=>s.toString())),n=s=>s.key_auths.some(([a])=>r.has(String(a))),o=s=>{let a=JSON.parse(JSON.stringify(s));return a.key_auths=a.key_auths.filter(([c])=>!r.has(c.toString())),a},i=n(e.owner);return {account:e.name,json_metadata:e.json_metadata,owner:i?o(e.owner):void 0,active:o(e.active),posting:o(e.posting),memo_key:e.memo_key}}function AO(e,t){let{data:r}=reactQuery.useQuery(M(e));return reactQuery.useMutation({mutationKey:["accounts","revoke-key",r?.name],mutationFn:async({currentKey:n,revokingKey:o})=>{if(!r)throw new Error("[SDK][Revoke key] \u2013 cannot update keys for anon user");let i=Array.isArray(o)?o:[o],s=fi(r,i);return ee([["account_update",s]],n)},...t})}function SO(e,t,r){return v(["accounts","claimAccount"],e,({creator:n,fee:o="0.000 HIVE"})=>[cn(n,o)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(o.creator)]);},t,"active",{broadcastMode:r})}function kO(e,t,r){return v(["accounts","grant-posting-permission"],e,n=>[pn(e,n.currentPosting,n.grantedAccount,n.weightThreshold,n.memoKey,n.jsonMetadata)],async()=>{await S(t?.adapter,r,[u.accounts.full(e)]);},t,"active",{broadcastMode:r})}function IO(e,t,r){return v(["accounts","create"],e,n=>[n.useClaimed?un(e,n.newAccountName,n.keys):an(e,n.newAccountName,n.keys,n.fee)],async()=>{await S(t?.adapter,r,[u.accounts.full(e)]);},t,"active",{broadcastMode:r})}var hn=300*60*24,Wp=1e4,Gp=5e7;function gi(e){let t=T(e.vesting_shares).amount,r=T(e.received_vesting_shares).amount,n=T(e.delegated_vesting_shares).amount,o=T(e.vesting_withdraw_rate).amount,i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t+r-n-s}function zp(e,t,r){let n=e*1e6;return (t*r/1e4/50+1)*n/1e4}function Jp(e){if(Number.isFinite(e.lastHardfork))return e.lastHardfork>=28;let[t="0",r="0"]=(e.currentHardforkVersion??"0.0.0").split(".");return Number(t)>1||Number(t)===1&&Number(r)>=28}function Yp(e,t,r){let n=t.votePowerReserveRate||Number(t.raw?.globalDynamic?.vote_power_reserve_rate??0);if(!Number.isFinite(n)||n<=0)return 0;let o=gi(e);if(!Number.isFinite(o)||o<=0)return 0;let i=o*1e6,s=Math.ceil(i*r*60*60*24/Wp/(n*hn)),a=Ir(e),c=Math.min(a.current_mana,a.max_mana);return !Number.isFinite(c)||s>c?0:Math.max(s-Gp,0)}function Xp(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;if(Jp(t))return Yp(e,t,n);let o=0;try{if(o=gi(e),!Number.isFinite(o))return 0}catch{return 0}return zp(o,r,n)}function MO(e){return Ir(e).percentage/100}function BO(e){if(!Number.isFinite(e))throw new TypeError("Voting power must be a finite number");if(e<0||e>100)throw new RangeError("Voting power must be between 0 and 100");return (100-e)*100*hn/1e4}function QO(e){let t=parseFloat(e.vesting_shares)+parseFloat(e.received_vesting_shares)-parseFloat(e.delegated_vesting_shares),r=Math.floor(Date.now()/1e3)-e.downvote_manabar.last_update_time,n=t*1e6/4;if(n<=0)return 0;let o=parseFloat(e.downvote_manabar.current_mana.toString())+r*n/hn;o>n&&(o=n);let i=o*100/n;return isNaN(i)?0:i>100?100:i}function UO(e){let{curation_rewards:t,posting_rewards:r}=e;if(t===void 0||r===void 0)return null;let n=t+r,o=T(e.vesting_shares).amount-T(e.delegated_vesting_shares).amount;return !Number.isFinite(n)||!Number.isFinite(o)||o<=0?null:n/o}function HO(e){return jt(e).percentage/100}function VO(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;let{fundRecentClaims:o,fundRewardBalance:i,base:s,quote:a}=t;if(!Number.isFinite(o)||!Number.isFinite(i)||!Number.isFinite(s)||!Number.isFinite(a)||o===0||a===0)return 0;let c=Xp(e,t,r,n);return Number.isFinite(c)?c/o*i*(s/a):0}var Zp={vote:"posting",comment:"posting",delete_comment:"posting",comment_options:"posting",claim_reward_balance:"posting",cancel_transfer_from_savings:"active",collateralized_convert:"active",convert:"active",delegate_vesting_shares:"active",recurrent_transfer:"active",set_withdraw_vesting_route:"active",transfer:"active",transfer_from_savings:"active",transfer_to_savings:"active",transfer_to_vesting:"active",withdraw_vesting:"active",limit_order_create:"active",limit_order_cancel:"active",account_update:"active",account_update2:"active",claim_account:"active",create_claimed_account:"active",account_witness_proxy:"active",account_witness_vote:"active",remove_proposal:"active",update_proposal_votes:"active",change_recovery_account:"owner",request_account_recovery:"owner",recover_account:"owner",reset_account:"owner",set_reset_account:"owner"};function el(e){let t=e[0],r=e[1];if(t!=="custom_json")throw new Error("Operation is not a custom_json operation");let n=r;return n.required_auths&&n.required_auths.length>0?"active":(n.required_posting_auths&&n.required_posting_auths.length>0,"posting")}function tl(e){let t=e[0];if(t!=="create_proposal"&&t!=="update_proposal")throw new Error("Operation is not a proposal operation");return "active"}function rl(e){let t=e[0];return t==="custom_json"?el(e):t==="create_proposal"||t==="update_proposal"?tl(e):Zp[t]??"posting"}function LO(e){let t="posting";for(let r of e){let n=rl(r);if(n==="owner")return "owner";n==="active"&&t==="posting"&&(t="active");}return t}function JO(e){return reactQuery.useMutation({mutationKey:["operations","sign",e],mutationFn:({operation:t,keyOrSeed:r})=>{if(!e)throw new Error("[Operations][Sign] \u2013 cannot sign op with anon user");let n;return r.split(" ").length===12?n=U.fromLogin(e,r,"active"):Po(r)?n=U.fromString(r):n=U.from(r),ee([t],n)}})}function ZO(e,t,r="active"){return reactQuery.useMutation({mutationKey:["operations","sign-keychain",e],mutationFn:({operation:n})=>{if(!e)throw new Error("[SDK][Keychain] \u2013\xA0cannot sign operation with anon user");if(!t?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Keychain] \u2013 missing keychain broadcaster");return t.adapter.broadcastWithKeychain(e,[n],r)}})}function nS(e="/"){return reactQuery.useMutation({mutationKey:["operations","sign-hivesigner",e],mutationFn:async({operation:t})=>Co__default.default.sendOperation(t,{callback:e},()=>{})})}function aS(){return reactQuery.queryOptions({queryKey:["operations","chain-properties"],queryFn:async()=>await y("condenser_api.get_chain_properties",[])})}function yi(e,t,r){return {...e,...t??{},title:r.title,body:r.body}}function hi(e,t){return {...e??{},title:t.title,body:t.body}}function gS(e,t){return reactQuery.useMutation({mutationKey:["posts","add-fragment",e],mutationFn:async({title:r,body:n})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let i=await h()(d.privateApiHost+"/private-api/fragments-add",{method:"POST",body:JSON.stringify({code:t,title:r,body:n}),headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`[SDK][Posts] Failed to add fragment: ${i.status}`);return i.json()},onSuccess(r,n){let o=w(),i=hi(r,n);o.setQueryData(tt(e,t).queryKey,s=>[i,...s??[]]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map((a,c)=>c===0?{...a,data:[i,...a.data]}:a)});}})}function AS(e,t){return reactQuery.useMutation({mutationKey:["posts","edit-fragment",e],mutationFn:async({fragmentId:r,title:n,body:o})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let s=await h()(d.privateApiHost+"/private-api/fragments-update",{method:"POST",body:JSON.stringify({code:t,id:r,title:n,body:o}),headers:{"Content-Type":"application/json"}});if(!s.ok)throw new Error(`[SDK][Posts] Failed to update fragment: ${s.status}`);return s.json()},onSuccess(r,n){let o=w(),i=s=>yi(s,r,n);o.setQueryData(tt(e,t).queryKey,s=>s?.map(a=>a.id===n.fragmentId?i(a):a)??[]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map(a=>({...a,data:a.data.map(c=>c.id===n.fragmentId?i(c):c)}))});}})}function ES(e,t){return reactQuery.useMutation({mutationKey:["posts","remove-fragment",e],mutationFn:async({fragmentId:r})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let o=await h()(d.privateApiHost+"/private-api/fragments-delete",{method:"POST",body:JSON.stringify({code:t,id:r}),headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`[SDK][Posts] Failed to delete fragment: ${o.status}`);return o},onSuccess(r,n){let o=w();o.setQueryData(tt(e,t).queryKey,i=>[...i??[]].filter(({id:s})=>s!==n.fragmentId)),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},i=>i&&{...i,pages:i.pages.map(s=>({...s,data:s.data.filter(a=>a.id!==n.fragmentId)}))});}})}async function G(e){if(!e.ok){let r;try{r=await e.json();}catch{r=void 0;}let n=new Error(`Request failed with status ${e.status}`);throw n.status=e.status,n.data=r,n}let t=await e.text();if(!t||t.trim()==="")return "";try{return JSON.parse(t)}catch(r){return console.warn("[SDK] Failed to parse JSON response:",r,"Response:",t),""}}async function TS(e,t,r,n){let i=await h()(d.privateApiHost+"/private-api/account-create",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,email:t,referral:r,captcha_token:n})}),s=await G(i);return {status:i.status,data:s}}async function FS(e){let r=await h()(d.privateApiHost+"/private-api/subscribe",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e})}),n=await G(r);return {status:r.status,data:n}}async function qS(e,t,r="",n=""){let o={code:e,ty:t};r&&(o.bl=r),n&&(o.tx=n);let s=await h()(d.privateApiHost+"/private-api/usr-activity",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});await G(s);}async function IS(e,t,r=null,n=null){let o={code:e};t&&(o.filter=t),r&&(o.since=r),n&&(o.user=n);let s=await h()(d.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});return G(s)}async function DS(e,t,r,n,o,i){let s={code:e,username:t,token:i,system:r,allows_notify:n,notify_types:o},c=await h()(d.privateApiHost+"/private-api/register-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return G(c)}async function KS(e,t,r){let n={code:e,username:t,token:r},i=await h()(d.privateApiHost+"/private-api/detail-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}async function _i(e,t){let r={code:e};t&&(r.id=t);let o=await h()(d.privateApiHost+"/private-api/notifications/mark",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function wi(e,t){let r={code:e,url:t},o=await h()(d.privateApiHost+"/private-api/images-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}var ll="https://i.ecency.com";async function bi(e,t,r){let n=h(),o=new FormData;o.append("file",e);let i=await n(`${ll}/hs/${t}`,{method:"POST",body:o,signal:r});return G(i)}async function NS(e,t,r,n){let o=h(),i=new FormData;i.append("file",e);let s=await o(`${d.imageHost}/${t}/${r}`,{method:"POST",body:i,signal:n});return G(s)}async function vi(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/images-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Ai(e,t,r,n,o){let i={code:e,title:t,body:r,tags:n,meta:o},a=await h()(d.privateApiHost+"/private-api/drafts-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return G(a)}async function Pi(e,t,r,n,o,i){let s={code:e,id:t,title:r,body:n,tags:o,meta:i},c=await h()(d.privateApiHost+"/private-api/drafts-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return G(c)}async function xi(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/drafts-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Oi(e,t,r,n,o,i,s,a){let c={code:e,permlink:t,title:r,body:n,meta:o,schedule:s,reblog:a};i&&(c.options=i);let l=await h()(d.privateApiHost+"/private-api/schedules-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)});return G(l)}async function Si(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/schedules-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Ci(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/schedules-move",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function MS(e,t,r){let n={code:e,author:t,permlink:r},i=await h()(d.privateApiHost+"/private-api/promoted-post",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}async function BS(e,t,r){let n={username:e,email:t,friend:r},i=await h()(d.privateApiHost+"/private-api/account-create-friend",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}function jS(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","drafts","add",e],mutationFn:async({title:o,body:i,tags:s,meta:a})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addDraft");return Ai(t,o,i,s,a)},onSuccess:o=>{r?.();let i=w();o?.drafts?i.setQueryData(u.posts.drafts(e),o.drafts):i.invalidateQueries({queryKey:u.posts.drafts(e)}),i.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:n})}function zS(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","drafts","update",e],mutationFn:async({draftId:o,title:i,body:s,tags:a,meta:c})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for updateDraft");return Pi(t,o,i,s,a,c)},onSuccess:()=>{r?.();let o=w();o.invalidateQueries({queryKey:u.posts.drafts(e)}),o.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:n})}function tC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","drafts","delete",e],mutationFn:async({draftId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteDraft");return xi(t,o)},onMutate:async({draftId:o})=>{if(!e)return;let i=w(),s=u.posts.drafts(e),a=u.posts.draftsInfinite(e);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a})]);let c=i.getQueryData(s);c&&i.setQueryData(s,c.filter(m=>m._id!==o));let p=i.getQueriesData({queryKey:a}),l=new Map(p);for(let[m,f]of p)f&&i.setQueryData(m,{...f,pages:f.pages.map(g=>({...g,data:g.data.filter(_=>_._id!==o)}))});return {previousList:c,previousInfinite:l}},onSuccess:()=>{r?.();let o=w();o.invalidateQueries({queryKey:u.posts.drafts(e)}),o.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:(o,i,s)=>{let a=w();if(s?.previousList&&a.setQueryData(u.posts.drafts(e),s.previousList),s?.previousInfinite)for(let[c,p]of s.previousInfinite)a.setQueryData(c,p);n?.(o);}})}function sC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","schedules","add",e],mutationFn:async({permlink:o,title:i,body:s,meta:a,options:c,schedule:p,reblog:l})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addSchedule");return Oi(t,o,i,s,a,c,p,l)},onSuccess:()=>{r?.(),w().invalidateQueries({queryKey:u.posts.schedules(e)});},onError:n})}function lC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","schedules","delete",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteSchedule");return Si(t,o)},onSuccess:o=>{r?.();let i=w();o?i.setQueryData(u.posts.schedules(e),o):i.invalidateQueries({queryKey:u.posts.schedules(e)});},onError:n})}function yC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","schedules","move",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for moveSchedule");return Ci(t,o)},onSuccess:o=>{r?.();let i=w();o?i.setQueryData(u.posts.schedules(e),o):i.invalidateQueries({queryKey:u.posts.schedules(e)}),i.invalidateQueries({queryKey:u.posts.drafts(e)});},onError:n})}function vC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","images","add",e],mutationFn:async({url:o,code:i})=>{let s=i??t;if(!e||!s)throw new Error("[SDK][Posts] \u2013 missing auth for addImage");return wi(s,o)},onSuccess:()=>{r?.(),w().invalidateQueries({queryKey:u.posts.images(e)});},onError:n})}function SC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","images","delete",e],mutationFn:async({imageId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteImage");return vi(t,o)},onSuccess:(o,i)=>{r?.();let s=w(),{imageId:a}=i;s.setQueryData(["posts","images",e],c=>c?.filter(p=>p._id!==a)),s.setQueriesData({queryKey:["posts","images","infinite",e]},c=>c&&{...c,pages:c.pages.map(p=>({...p,data:p.data.filter(l=>l._id!==a)}))});},onError:n})}function kC(e,t){return reactQuery.useMutation({mutationKey:["posts","images","upload"],mutationFn:async({file:r,token:n,signal:o})=>bi(r,n,o),onSuccess:e,onError:t})}function er(e,t){return `/@${e}/${t}`}function vl(e,t,r){return (r??w()).getQueryData(u.posts.entry(er(e,t)))}function Al(e,t){(t??w()).setQueryData(u.posts.entry(er(e.author,e.permlink)),e);}function Zt(e,t,r,n){let o=n??w(),i=er(e,t),s=o.getQueryData(u.posts.entry(i));if(!s)return;let a=r(s);return o.setQueryData(u.posts.entry(i),a),s}exports.EntriesCacheManagement=void 0;(a=>{function e(c,p,l,m,f){Zt(c,p,g=>({...g,active_votes:l,stats:{...g.stats||{gray:false,hide:false,flag_weight:0,total_votes:0},total_votes:l.length,flag_weight:g.stats?.flag_weight||0},total_votes:l.length,payout:m,pending_payout_value:String(m)}),f);}a.updateVotes=e;function t(c,p,l,m){Zt(c,p,f=>({...f,reblogs:l}),m);}a.updateReblogsCount=t;function r(c,p,l,m){Zt(c,p,f=>({...f,children:l}),m);}a.updateRepliesCount=r;function n(c,p,l,m){Zt(p,l,f=>({...f,children:f.children+1,replies:[c,...f.replies]}),m);}a.addReply=n;function o(c,p){c.forEach(l=>Al(l,p));}a.updateEntries=o;function i(c,p,l){(l??w()).invalidateQueries({queryKey:u.posts.entry(er(c,p))});}a.invalidateEntry=i;function s(c,p,l){return vl(c,p,l)}a.getEntry=s;})(exports.EntriesCacheManagement||={});function Pl(e,t,r){let n=e.some(o=>o.voter===t);return r!==0?n:!n}function xl(e,t,r){let n=exports.EntriesCacheManagement.getEntry(t.author,t.permlink,r);if(!n?.active_votes||Pl(n.active_votes,e,t.weight))return;let o=[...n.active_votes.filter(s=>s.voter!==e),...t.weight!==0?[{rshares:t.weight,voter:e}]:[]],i=n.payout+(t.estimated??0);exports.EntriesCacheManagement.updateVotes(t.author,t.permlink,o,i,r);}function NC(e,t,r){return v(["posts","vote"],e,({author:n,permlink:o,weight:i})=>[Qr(e,n,o,i)],async(n,o)=>{xl(e,o);let i=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&i&&t.adapter.recordActivity(120,i,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let s=()=>{t.adapter.invalidateQueries([u.posts.entry(`/@${o.author}/${o.permlink}`),u.accounts.full(e)]);};(r??"async")==="async"?setTimeout(s,4e3):s();}},t,"posting",{broadcastMode:r??"async"})}function HC(e,t,r){return v(["posts","reblog"],e,({author:n,permlink:o,deleteReblog:i})=>[Hr(e,n,o,i??false)],async(n,o)=>{let i=exports.EntriesCacheManagement.getEntry(o.author,o.permlink);if(i){let p=Math.max(0,(i.reblogs??0)+(o.deleteReblog?-1:1));exports.EntriesCacheManagement.updateReblogsCount(o.author,o.permlink,p);}let s=n?.id??n?.tx_id;t?.adapter?.recordActivity&&s&&t.adapter.recordActivity(130,s,n?.block_num).catch(()=>{});let a=()=>{w().invalidateQueries({queryKey:u.posts.accountPostsBlogPrefix(e)}),t?.adapter?.invalidateQueries&&t.adapter.invalidateQueries([u.posts.entry(`/@${o.author}/${o.permlink}`),u.posts.rebloggedBy(o.author,o.permlink)]);};(r??"async")==="async"?setTimeout(a,4e3):a();},t,"posting",{broadcastMode:r??"async"})}function Ol(e){return e.isUpdate?null:e.parentAuthor?110:100}function $C(e,t,r){return v(["posts","comment"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((f,g)=>f.account.localeCompare(g.account));l.push([0,{beneficiaries:m.map(f=>({account:f.account,weight:f.weight}))}]);}o.push(je(n.author,n.permlink,i,s,a,c,l));}return o},async(n,o)=>{let i=!o.parentAuthor,s=Ol(o),a=n?.id??n?.tx_id;if(s!==null&&t?.adapter?.recordActivity&&a&&t.adapter.recordActivity(s,a,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let c=[u.accounts.full(e),u.resourceCredits.account(e)];if(!i){c.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let p=o.rootAuthor||o.parentAuthor,l=o.rootPermlink||o.parentPermlink;c.push({predicate:m=>{let f=m.queryKey;return Array.isArray(f)&&f[0]==="posts"&&f[1]==="discussions"&&f[2]===p&&f[3]===l}});}await t.adapter.invalidateQueries(c);}},t,"posting",{broadcastMode:r})}function zC(e,t,r,n){let o=n??w(),i=o.getQueriesData({predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="discussions"&&a[2]===t&&a[3]===r}});for(let[s,a]of i)a&&o.setQueryData(s,[e,...a]);}function Ei(e,t,r,n,o){let i=o??w(),s=new Map,a=i.getQueriesData({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===r&&p[3]===n}});for(let[c,p]of a)p&&(s.set(c,p),i.setQueryData(c,p.filter(l=>l.author!==e||l.permlink!==t)));return s}function Ri(e,t){let r=t??w();for(let[n,o]of e)r.setQueryData(n,o);}function JC(e,t,r,n){let o=n??w(),i=`/@${e}/${t}`,s=o.getQueryData(u.posts.entry(i));return s&&o.setQueryData(u.posts.entry(i),{...s,...r}),s}function YC(e,t,r,n){let o=n??w(),i=`/@${e}/${t}`;o.setQueryData(u.posts.entry(i),r);}function rE(e,t,r){return v(["posts","deleteComment"],e,({author:n,permlink:o})=>[Ur(n,o)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.accounts.full(e)];if(o.parentAuthor&&o.parentPermlink){i.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}});}await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r,onMutate:async n=>{let o=n.rootAuthor||n.parentAuthor,i=n.rootPermlink||n.parentPermlink;return o&&i?{snapshots:Ei(n.author,n.permlink,o,i)}:{}},onError:(n,o,i)=>{let{snapshots:s}=i??{};s&&Ri(s);}})}function sE(e,t,r){return v(["posts","cross-post"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,"",n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true}=n.options;o.push(je(n.author,n.permlink,i,s,a,c,[]));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.accounts.full(e),{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.parentPermlink}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"async"})}function pE(e,t,r){return v(["posts","update-reply"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((f,g)=>f.account.localeCompare(g.account));l.push([0,{beneficiaries:m.map(f=>({account:f.account,weight:f.weight}))}]);}o.push(je(n.author,n.permlink,i,s,a,c,l));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.resourceCredits.account(e)];i.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}}),await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r})}function fE(e,t,r){return v(["ecency","promote"],e,({author:n,permlink:o,duration:i})=>[mn(e,n,o,i)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...u.posts._promotedPrefix],[...u.points._prefix(e)],u.posts.entry(`/@${o.author}/${o.permlink}`)]);},t,"active",{broadcastMode:r})}var Sl=[3e3,3e3,3e3],Cl=e=>new Promise(t=>setTimeout(t,e));async function El(e,t){return y("condenser_api.get_content",[e,t])}async function Rl(e,t,r=0,n){let o=n?.delays??Sl,i;try{i=await El(e,t);}catch{i=void 0;}if(i||r>=o.length)return;let s=o[r];return s>0&&await Cl(s),Rl(e,t,r+1,n)}var ot={};kt(ot,{useRecordActivity:()=>_n});function Tl(){return typeof window<"u"&&window.location?{url:window.location.href,domain:window.location.host}:{url:"",domain:""}}function _n(e,t,r){return reactQuery.useMutation({mutationKey:["analytics",t],mutationFn:async()=>{if(!t)throw new Error("[SDK][Analytics] \u2013 no activity type provided");let n=h(),o=Tl(),i=r?.url??o.url,s=r?.domain??o.domain;try{await n(d.plausibleHost+"/api/event",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:t,url:i,domain:s,props:{username:e}})});}catch{}}})}function xE(e){return reactQuery.queryOptions({queryKey:["analytics","discover-leaderboard",e],queryFn:async({signal:t})=>{let r=await fetch(d.privateApiHost+`/private-api/leaderboard/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch leaderboard: ${r.status}`);return r.json()}})}function RE(e){return reactQuery.queryOptions({queryKey:["analytics","discover-curation",e],queryFn:async({signal:t})=>{let r=await fetch(d.privateApiHost+`/private-api/curation/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch curation data: ${r.status}`);let n=await r.json(),o=n.map(s=>s.account),i=await y("condenser_api.get_accounts",[o]);for(let s=0;sa.efficiency-s.efficiency),n}})}function qE(e,t=[],r=["visitors","pageviews","visit_duration"],n){let o=[...t].sort(),i=[...r].sort();return reactQuery.queryOptions({queryKey:["analytics","page-stats",e,o,i,n],queryFn:async({signal:s})=>{let a=await fetch(d.privateApiHost+"/api/stats",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,date_range:n}),signal:s});if(!a.ok)throw new Error(`Failed to fetch page stats: ${a.status}`);return a.json()},enabled:!!e,staleTime:0})}var tr="threespeakfund",BE=1100;function Dl(e){return /https?:\/\/([a-z0-9-]+\.)*3speak\.tv\/embed[?/]/i.test(e)}function QE(e,t){if(!Dl(t))return e;let r=e.find(n=>n.account===tr);return r&&r.weight===1100?e:r?e.map(n=>n.account===tr?{...n,weight:1100}:n):[...e,{account:tr,weight:1100}]}function UE(e){return e===tr}var vn={};kt(vn,{getAccountTokenQueryOptions:()=>bn,getAccountVideosQueryOptions:()=>Ul});var wn={};kt(wn,{getDecodeMemoQueryOptions:()=>Ml});function Ml(e,t,r){return reactQuery.queryOptions({queryKey:["integrations","hivesigner","decode-memo",e],queryFn:async()=>{if(r)return new Co__default.default.Client({accessToken:r}).decode(t)}})}var ki={queries:wn};function bn(e,t){return reactQuery.queryOptions({queryKey:["integrations","3speak","authenticate",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let n=await h()(`https://studio.3speak.tv/mobile/login?username=${e}&hivesigner=true`,{headers:{"Content-Type":"application/json"}}),o=ki.queries.getDecodeMemoQueryOptions(e,(await n.json()).memo,t);await w().prefetchQuery(o);let{memoDecoded:i}=w().getQueryData(o.queryKey);return i.replace("#","")}})}function Ul(e,t){return reactQuery.queryOptions({queryKey:["integrations","3speak","videos",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let r=bn(e,t);await w().prefetchQuery(r);let n=w().getQueryData(r.queryKey);if(!n)throw new Error("[SDK][Integrations][3Speak] \u2013 missing account token");return await(await h()("https://studio.3speak.tv/mobile/api/my-videos",{headers:{"Content-Type":"application/json",Authorization:`Bearer ${n}`}})).json()}})}var oR={queries:vn};function pR(e){return reactQuery.queryOptions({queryKey:["integrations","hiveposh","links",e],retry:false,queryFn:async()=>{try{let r=await h()(`https://hiveposh.com/api/v0/linked-accounts/${e}`,{headers:{"Content-Type":"application/json"}});if(r.status===400&&(await r.json().catch(()=>({})))?.message==="User Not Connected"||!r.ok)return null;let n=await r.json();return {twitter:{username:n.twitter_username,profile:n.twitter_profile},reddit:{username:n.reddit_username,profile:n.reddit_profile}}}catch{return null}}})}function fR({url:e,dimensions:t=[],metrics:r=["visitors","pageviews","visit_duration"],filterBy:n="event:page",dateRange:o,enabled:i=true}){return reactQuery.queryOptions({queryKey:["integrations","plausible",e,t,r,n,o],queryFn:async()=>{let a=await h()(`${d.privateApiHost}/api/stats`,{method:"POST",body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,filterBy:n,...o?{date_range:o}:{}}),headers:{"Content-Type":"application/json"}});if(!a.ok)throw new Error(`Failed to fetch Plausible stats: ${a.status}`);return await a.json()},enabled:!!e&&i,retry:1})}function _R(){return reactQuery.queryOptions({queryKey:["resource-credits","stats"],queryFn:async()=>(await y("rc_api.get_rc_stats",{})).rc_stats})}function AR(e){return reactQuery.queryOptions({queryKey:["resource-credits","account",e],queryFn:async()=>(await y("rc_api.find_rc_accounts",{accounts:[e]})).rc_accounts,enabled:!!e})}function CR(){return reactQuery.queryOptions({queryKey:u.resourceCredits.resourceParams(),staleTime:1440*60*1e3,gcTime:1/0,queryFn:async()=>await y("rc_api.get_resource_params",{})})}var rr=["resource_history_bytes","resource_new_accounts","resource_market_bytes","resource_state_bytes","resource_execution_time"];var Wl=11,Gl=65,zl=16,it=e=>BigInt(typeof e=="string"?e:Math.trunc(e));function An(e,t,r,n){if(r<=0||n<=0)return 0;let o=it(e.coeff_a),i=it(e.coeff_b),s=it(e.shift),a=it(n)*o>>s;a+=1n,a*=it(r);let c=i+(t>0?it(t):0n);return c===0n?0:Number(a/c+1n)}function Pn({transactionBytes:e,permlinkLength:t,signatures:r=1,beneficiaries:n=0,hasCommentOptions:o=false},i){let s=i.resource_state_bytes,a=i.resource_execution_time;return {resource_history_bytes:e,resource_new_accounts:0,resource_market_bytes:0,resource_state_bytes:s.comment_base_size+s.comment_permlink_char_size*t+s.transaction_base_size+s.comment_beneficiaries_member_size*n,resource_execution_time:a.comment_time+a.transaction_time+a.verify_authority_time*r+(o?a.comment_options_time:0)}}var we=e=>{let t=yt(e);return he(t)+t},Jl=e=>1+we(e.parent_author)+we(e.parent_permlink)+we(e.author)+we(e.permlink)+we(e.title)+we(e.body)+we(e.json_metadata),Yl=(e,t)=>{let r=t.beneficiaries??[],n=1+we(e.author)+we(e.permlink)+zl+2+2;return n+=he(r.length>0?1:0),r.length>0&&(n+=1+he(r.length),r.forEach(o=>{n+=we(o.account)+2;})),n};function xn({op:e,options:t,signatures:r=1}){let n=[Jl(e)];return t&&n.push(Yl(e,t)),Wl+he(n.length)+n.reduce((o,i)=>o+i,0)+he(r)+Gl*r}var Xl={ready:false,cost:0,transactionBytes:0,breakdown:[]};function FR({op:e,options:t,rcParams:r,rcStats:n,signatures:o=1}){if(!r?.resource_params||!r.size_info||!n?.pool||!n.share)return Xl;let i=xn({op:e,options:t,signatures:o}),s=Pn({transactionBytes:i,permlinkLength:yt(e.permlink),signatures:o,beneficiaries:t?.beneficiaries?.length??0,hasCommentOptions:!!t},r.size_info),a=Number(n.regen),c=0,p=[];return rr.forEach((l,m)=>{let f=r.resource_params[l],g=Number(n.pool[m]??0),_=Number(n.share[m]??0);if(!f||_<=0)return;let A=s[l]*Number(f.resource_dynamics_params.resource_unit??1),x=Number(BigInt(a)*BigInt(_)/10000n),C=An(f.price_curve_params,g,A,x);c+=C,p.push({resource:l,usage:A,cost:C});}),{ready:true,cost:c,transactionBytes:i,breakdown:p}}function On(e,t,r){let n=Number(r.regen),o=0,i=[];return rr.forEach((s,a)=>{let c=t.resource_params[s],p=Number(r.pool[a]??0),l=Number(r.share[a]??0);if(!c||l<=0)return;let m=e[s]*Number(c.resource_dynamics_params.resource_unit??1),f=Number(BigInt(n)*BigInt(l)/10000n),g=An(c.price_curve_params,p,m,f);o+=g,i.push({resource:s,usage:m,cost:g});}),{cost:o,breakdown:i}}var Zl=11,ed=65,Sn=e=>{let t=yt(e);return he(t)+t},td=()=>({resource_history_bytes:0,resource_new_accounts:0,resource_market_bytes:0,resource_state_bytes:0,resource_execution_time:0});function Ti(e,t=1){let r=1+Sn(e.voter)+Sn(e.author)+Sn(e.permlink)+2;return Zl+he(1)+r+he(t)+ed*t}function Fi({transactionBytes:e,signatures:t=1},r){let n=r.resource_state_bytes,o=r.resource_execution_time;return {...td(),resource_history_bytes:e,resource_state_bytes:n.vote_size+n.transaction_base_size,resource_execution_time:o.vote_time+o.transaction_time+o.verify_authority_time*t}}var qi={ready:false,currentMana:0,maxMana:0,avgCost:0,cost:0,transactionBytes:0,estimatedCost:0,willLikelyFail:false,deficit:0,remaining:0};function VR({rcAccount:e,rcStats:t,rcParams:r,operation:n,payload:o,fallback:i="minimal",buffer:s=1.2}){if(!e||!t?.ops)return qi;let{current_mana:a,max_mana:c}=jt(e),p=rd(n,o,i,r,t);if(!p)return {...qi,currentMana:a,maxMana:c};let{cost:l,transactionBytes:m}=p,f=Number.isFinite(s)&&s>0?s:1.2,g=l*f,_=a0?{cost:r,transactionBytes:0}:null}var od={author:"aaaaaaaaaa",permlink:"aaaaaaaaaaaaaaaaaaaa",parent_author:"",parent_permlink:"hive-100000",title:"",body:"",json_metadata:"{}"},id={voter:"aaaaaaaaaa",author:"aaaaaaaaaa",permlink:"aaaaaaaaaaaaaaaaaaaa"};function WR(e,t,r){return reactQuery.queryOptions({queryKey:["games","status-check",r,e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/get-game",{method:"POST",body:JSON.stringify({game_type:r,code:t}),headers:{"Content-Type":"application/json"}})).json()}})}async function ud(e,t,r){let o=await h()(d.privateApiHost+"/private-api/post-game",{method:"POST",body:JSON.stringify({game_type:t,code:e,key:r}),headers:{"Content-Type":"application/json"}}),i=(o.headers.get("content-type")??"").split(";")[0].trim().toLowerCase(),s=await o.text();if(!o.ok){let a=s&&i.includes("json")?`: ${s.slice(0,200)}`:"";throw new Error(`[SDK][Games] \u2013 failed with status ${o.status}${a}`)}if(!i.includes("json"))throw new Error(`[SDK][Games] \u2013 expected JSON but received "${i||"empty"}" response (status ${o.status})`);try{return JSON.parse(s)}catch{throw new Error(`[SDK][Games] \u2013 malformed JSON response (status ${o.status})`)}}function XR(e,t,r,n){let{mutateAsync:o}=_n(e,"spin-rolled");return reactQuery.useMutation({mutationKey:["games","post",r,e],mutationFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return ud(t,r,n)},onSuccess(){o();}})}function rk(e){let t=e?.replace("@","");return reactQuery.queryOptions({queryKey:u.quests.status(t),enabled:!!t,queryFn:async()=>{if(!t)throw new Error("[SDK][Quests] \u2013 username wasn't provided");let n=await h()(d.privateApiHost+"/private-api/quests",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:t})});if(!n.ok)throw new Error(`Failed to fetch quests: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:true})}var pd=[{id:"checkin",tier:"daily",goal:1,i18nKey:"checkin",icon:"check-circle"},{id:"post",tier:"daily",goal:1,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"daily",goal:3,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"daily",goal:10,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"daily",goal:1,i18nKey:"reblog",icon:"repeat"},{id:"spin",tier:"daily",goal:1,i18nKey:"spin",icon:"gift"},{id:"post",tier:"weekly",goal:5,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"weekly",goal:15,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"weekly",goal:50,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"weekly",goal:5,i18nKey:"reblog",icon:"repeat"},{id:"post",tier:"monthly",goal:20,i18nKey:"post",icon:"pencil"}];function ok(e,t){return pd.find(r=>r.tier===e&&r.id===t)}var ld=25;function dd(e){return Array.from((e??"").replace(/https?:\/\/\S+/g,"")).length}function ik(e){return dd(e)>ld}var sk=300,ak=2;function gd(){return typeof crypto<"u"&&typeof crypto.randomUUID=="function"?crypto.randomUUID():`${Date.now()}-${Math.random().toString(36).slice(2)}`}async function yd(e){let r=await h()(d.privateApiHost+"/private-api/streak-freeze/buy",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e,idempotency_key:gd()})});if(!r.ok){let n;try{n=await r.json();}catch{}let o=n?.message??`Failed to buy streak freeze: ${r.status}`,i=new Error(o);throw i.status=r.status,i.data=n,i}return await r.json()}function lk(e,t){let r=reactQuery.useQueryClient(),n=e?.replace("@","");return reactQuery.useMutation({mutationKey:["streak-freeze","buy",n],mutationFn:async()=>{if(!n||!t)throw new Error("[SDK][StreakFreeze] \u2013 missing auth");return yd(t)},onSuccess(){n&&r.invalidateQueries({queryKey:u.points._prefix(n)});},onSettled(){n&&r.invalidateQueries({queryKey:u.quests.status(n)});}})}function gk(e,t,r){return v(["communities","subscribe"],e,({community:n})=>[Xr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.subscriptions(e),[...u.communities.singlePrefix(o.community)],u.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"async"})}function wk(e,t,r){return v(["communities","unsubscribe"],e,({community:n})=>[Zr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.subscriptions(e),[...u.communities.singlePrefix(o.community)],u.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"sync"})}function Pk(e,t,r){return v(["communities","mutePost"],e,({community:n,author:o,permlink:i,notes:s,mute:a})=>[nn(e,n,o,i,s,a)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.posts.entry(`/@${o.author}/${o.permlink}`),["community","single",o.community],{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.community}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"sync"})}function Ck(e,t,r,n){return v(["communities","set-role",e],t,({account:o,role:i})=>[en(t,e,o,i)],async(o,i)=>{w().setQueriesData({queryKey:u.communities.singlePrefix(e)},a=>{if(!a)return a;let c=[...a.team??[]],p=c.findIndex(([l])=>l===i.account);return p>=0?c[p]=[c[p][0],i.role,c[p][2]??""]:c.push([i.account,i.role,""]),{...a,team:c}}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...u.communities.singlePrefix(e)],u.communities.context(i.account,e)]);},r,"posting",{broadcastMode:n??"async"})}function Tk(e,t,r,n){return v(["communities","update",e],t,o=>[tn(t,e,o)],async(o,i)=>{w().setQueriesData({queryKey:u.communities.singlePrefix(e)},a=>a&&{...a,...i}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...u.communities.singlePrefix(e)]]);},r,"posting",{broadcastMode:n??"async"})}function Dk(e,t,r){return v(["communities","registerRewards"],e,({name:n})=>[yn(n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...u.communities.singlePrefix(o.name)],[...u.points._prefix(e)]]);},t,"active",{broadcastMode:r})}function Bk(e,t,r){return v(["communities","pin-post"],e,({community:n,account:o,permlink:i,pin:s})=>[rn(e,n,o,i,s)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.posts.entry(`/@${o.account}/${o.permlink}`),[...u.communities.singlePrefix(o.community)]]);},t,"posting",{broadcastMode:r??"async"})}function jk(e,t,r=100,n=void 0,o=true){return reactQuery.queryOptions({queryKey:u.communities.list(e,t??"",r),enabled:o,queryFn:async()=>{let i=await y("bridge.list_communities",{last:"",limit:r,sort:e==="hot"?"rank":e,query:t||null,observer:n});return i?e==="hot"?i.sort(()=>Math.random()-.5):i:[]}})}function zk(e,t){return reactQuery.queryOptions({queryKey:u.communities.context(e,t),enabled:!!e&&!!t,queryFn:async()=>{let r=await y("bridge.get_community_context",{account:e,name:t});return {role:r?.role??"guest",subscribed:r?.subscribed??false}}})}function eT(e,t="",r=true){return reactQuery.queryOptions({queryKey:u.communities.single(e,t),enabled:r&&!!e,queryFn:async()=>Go(e??"",t)})}var Ii=100;async function Di(e,t){return await y("bridge.list_subscribers",{community:e,limit:Ii,...t?{last:t}:{}})??[]}function sT(e){return reactQuery.queryOptions({queryKey:u.communities.subscribers(e),queryFn:async()=>Di(e,null),staleTime:6e4})}function aT(e){return reactQuery.infiniteQueryOptions({queryKey:u.communities.subscribersInfinite(e),initialPageParam:null,queryFn:async({pageParam:t})=>Di(e,t),getNextPageParam:t=>t?.length>=Ii?t[t.length-1]?.[0]??null:null,staleTime:6e4})}function mT(e,t){return reactQuery.infiniteQueryOptions({queryKey:u.communities.accountNotifications(e,t),initialPageParam:null,queryFn:async({pageParam:r})=>await y("bridge.account_notifications",{account:e,limit:t,last_id:r??void 0})??[],getNextPageParam:r=>r?.length>=t?r[r.length-1].id:null})}function hT(){return reactQuery.queryOptions({queryKey:u.communities.rewarded(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/rewarded-communities",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch rewarded communities: ${e.status}`);return e.json()}})}var xd=(s=>(s.OWNER="owner",s.ADMIN="admin",s.MOD="mod",s.MEMBER="member",s.GUEST="guest",s.MUTED="muted",s))(xd||{}),wT={owner:["admin","mod","member","guest","muted"],admin:["mod","member","guest","muted"],mod:["member","guest","muted"]};function vT(e,t){return e.startsWith("hive-3")||t===3?"Council":e.startsWith("hive-2")||t===2?"Journal":"Topic"}function AT({communityType:e,userRole:t,subscribed:r}){let n=t==="muted"?false:e==="Topic"?true:["owner","admin","mod","member"].includes(t),o=(()=>{if(t==="muted")return false;switch(e){case "Topic":return true;case "Journal":return t!=="guest"||r;case "Council":return n}})(),i=["owner","admin","mod"].includes(t);return {canPost:n,canComment:o,isModerator:i}}function ST(e,t){return reactQuery.queryOptions({queryKey:u.notifications.unreadCount(e),queryFn:async()=>t?(await(await fetch(`${d.privateApiHost}/private-api/notifications/unread`,{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json()).count:0,enabled:!!e&&!!t,initialData:0,refetchInterval:6e4})}function kT(e,t,r=void 0){return reactQuery.infiniteQueryOptions({queryKey:u.notifications.list(e,r),queryFn:async({pageParam:n})=>{if(!t)return [];let o={code:t,filter:r,since:n,user:void 0},i=await fetch(d.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});if(!i.ok)return [];try{return await i.json()}catch{return []}},enabled:!!e&&!!t,initialPageParam:"",getNextPageParam:n=>n?.[n.length-1]?.id??"",refetchOnMount:true})}var Cd=(_=>(_.VOTES="rvotes",_.MENTIONS="mentions",_.FAVORITES="nfavorites",_.BOOKMARKS="nbookmarks",_.FOLLOWS="follows",_.REPLIES="replies",_.REBLOGS="reblogs",_.TRANSFERS="transfers",_.DELEGATIONS="delegations",_.PAYOUTS="payouts",_.SCHEDULED_PUBLISHED="scheduled_published",_.ACCOUNT_UPDATES="account_updates",_.WEEKLY_EARNINGS="weekly_earnings",_.TAGS="tags",_))(Cd||{});var Ed=(A=>(A[A.VOTE=1]="VOTE",A[A.MENTION=2]="MENTION",A[A.FOLLOW=3]="FOLLOW",A[A.COMMENT=4]="COMMENT",A[A.RE_BLOG=5]="RE_BLOG",A[A.TRANSFERS=6]="TRANSFERS",A[A.DELEGATIONS=10]="DELEGATIONS",A[A.FAVORITES=13]="FAVORITES",A[A.BOOKMARKS=15]="BOOKMARKS",A[A.PAYOUTS=19]="PAYOUTS",A[A.ACCOUNT_UPDATE=20]="ACCOUNT_UPDATE",A[A.WEEKLY_EARNINGS=21]="WEEKLY_EARNINGS",A[A.SCHEDULED_PUBLISHED=22]="SCHEDULED_PUBLISHED",A[A.TAGS=23]="TAGS",A.ALLOW_NOTIFY="ALLOW_NOTIFY",A))(Ed||{}),Ki=[1,2,3,4,5,6,10,13,15,19,20,21,22,23],Rd=(n=>(n.ALL="All",n.UNREAD="Unread",n.READ="Read",n))(Rd||{});function NT(e,t,r){return reactQuery.queryOptions({queryKey:u.notifications.settings(e),queryFn:async()=>{let n=e+"-web";if(!t)throw new Error("Missing access token");let o=await fetch(d.privateApiHost+"/private-api/detail-device",{body:JSON.stringify({code:t,username:e,token:n}),method:"POST",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch notification settings: ${o.status}`);return o.json()},enabled:!!e&&!!t,refetchOnMount:false,initialData:()=>({status:0,system:"web",allows_notify:0,notify_types:r?[]:[...Ki]})})}function UT(){return reactQuery.queryOptions({queryKey:u.notifications.announcements(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/announcements",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch announcements: ${e.status}`);return await e.json()||[]},staleTime:36e5})}function LT(e){return reactQuery.queryOptions({queryKey:u.notifications.spotlights(),queryFn:async()=>{let t=await fetch(d.privateApiHost+"/private-api/spotlights",{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch spotlights: ${t.status}`);return await t.json()||[]},staleTime:36e5})}function Id(e,t){return {...e,read:!t||t===e.id?1:e.read}}function Ni(e){return typeof e=="object"&&e!==null&&"pages"in e&&"pageParams"in e&&Array.isArray(e.pages)}function XT(e,t,r,n){let o=w();return reactQuery.useMutation({mutationKey:["notifications","mark-read",e],mutationFn:async({id:i})=>{if(!e||!t){process.env.NODE_ENV!=="production"&&console.warn("[SDK][Notifications] \u2013 missing auth for markNotifications");return}return _i(t,i)},onMutate:async({id:i})=>{if(!e||!t)return {previousData:[]};await o.cancelQueries({queryKey:u.notifications._prefix});let s=[],a=o.getQueriesData({queryKey:u.notifications._prefix,predicate:l=>{let m=l.state.data;return Ni(m)}});a.forEach(([l,m])=>{if(m&&Ni(m)){s.push([l,m]);let f={...m,pages:m.pages.map(g=>g.map(_=>Id(_,i)))};o.setQueryData(l,f);}});let c=u.notifications.unreadCount(e),p=o.getQueryData(c);return typeof p=="number"&&p>0&&(s.push([c,p]),i?a.some(([,m])=>m?.pages.some(f=>f.some(g=>g.id===i&&g.read===0)))&&o.setQueryData(c,p-1):o.setQueryData(c,0)),{previousData:s}},onSuccess:i=>{let s=typeof i=="object"&&i!==null?i.unread:void 0;typeof s=="number"&&o.setQueryData(u.notifications.unreadCount(e),s),r?.(s);},onError:(i,s,a)=>{a?.previousData&&a.previousData.forEach(([c,p])=>{o.setQueryData(c,p);}),n?.(i);},onSettled:()=>{o.invalidateQueries({queryKey:u.notifications._prefix});}})}function rF(e,t,r){return v(["notifications","set-last-read"],e,({date:n})=>Wr(e,n),async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.notifications.unreadCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function sF(e){return reactQuery.queryOptions({queryKey:["proposals","proposal",e],queryFn:async()=>{let r=(await y("condenser_api.find_proposals",[[e]]))[0];return new Date(r.start_date)=new Date?r.status="active":new Date(r.end_date){let t=(await y("database_api.list_proposals",{start:[-1],limit:500,order:"by_total_votes",order_direction:"descending",status:"all"})).proposals,r=t.filter(o=>o.status==="expired");return [...t.filter(o=>o.status!=="expired"),...r]}})}function yF(e,t,r){return reactQuery.infiniteQueryOptions({queryKey:["proposals","votes",e,t,r],initialPageParam:t,refetchOnMount:true,staleTime:0,queryFn:async({pageParam:n})=>{let s=(await y("condenser_api.list_proposal_votes",[[e,n??t],r,"by_proposal_voter"])).filter(l=>l.proposal?.proposal_id===e).map(l=>({id:l.id,voter:l.voter})),a=await y("condenser_api.get_accounts",[s.map(l=>l.voter)]),c=Gt(a);return s.map(l=>({...l,voterAccount:c.find(m=>l.voter===m.name)}))},getNextPageParam:n=>n?.[n.length-1]?.voter??void 0})}function bF(e){return reactQuery.queryOptions({queryKey:["proposals","votes","by-user",e],enabled:!!e&&e!=="",staleTime:60*1e3,queryFn:async()=>!e||e===""?[]:((await y("database_api.list_proposal_votes",{start:[e],limit:1e3,order:"by_voter_proposal",order_direction:"ascending",status:"votable"})).proposal_votes||[]).filter(n=>n.voter===e)})}function xF(e,t,r){return v(["proposals","vote"],e,({proposalIds:n,approve:o})=>[Yr(e,n,o)],async n=>{try{let o=n?.id??n?.tx_id;t?.adapter?.recordActivity&&o&&t.adapter.recordActivity(150,o,n?.block_num).catch(i=>{console.debug("[SDK][Proposals][useProposalVote] recordActivity failed",{activityType:150,blockNum:n?.block_num,transactionId:o,error:i});}),t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.proposals.list(),u.proposals.votesByUser(e)]);}catch(o){console.warn("[useProposalVote] Post-broadcast side-effect failed:",o);}},t,"active",{broadcastMode:r})}function EF(e,t,r){return v(["proposals","create"],e,n=>[Jr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.proposals.list()]);},t,"active",{broadcastMode:r})}function FF(e,t=50){return reactQuery.infiniteQueryOptions({queryKey:["wallet","vesting-delegations",e,t],initialPageParam:"",queryFn:async({pageParam:r})=>{let n=r?t+1:t,o=await y("condenser_api.get_vesting_delegations",[e,r||"",n]);return r&&o.length>0&&o[0]?.delegatee===r?o.slice(1,t+1):o},getNextPageParam:r=>!r||r.lengthte("balance","/accounts/{account-name}/delegations",{"account-name":e},void 0,void 0,t)})}function BF(e){return reactQuery.queryOptions({queryKey:["wallet","vesting-delegation-expirations",e],queryFn:async()=>e?(await y("database_api.find_vesting_delegation_expirations",{account:e})).delegations:[],enabled:!!e})}function VF(e){return reactQuery.queryOptions({queryKey:["wallet","conversion-requests",e],queryFn:()=>y("condenser_api.get_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function WF(e){return reactQuery.queryOptions({queryKey:["wallet","collateralized-conversion-requests",e],queryFn:()=>y("condenser_api.get_collateralized_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function YF(e){return reactQuery.queryOptions({queryKey:["wallet","savings-withdraw",e],queryFn:()=>y("condenser_api.get_savings_withdraw_from",[e]),select:t=>t.sort((r,n)=>r.request_id-n.request_id)})}function tq(e){return reactQuery.queryOptions({queryKey:["wallet","withdraw-routes",e],queryFn:()=>y("condenser_api.get_withdraw_routes",[e,"outgoing"])})}function iq(e){return reactQuery.queryOptions({queryKey:["wallet","open-orders",e],queryFn:()=>y("condenser_api.get_open_orders",[e]),select:t=>t.sort((r,n)=>r.orderid-n.orderid),enabled:!!e})}function pq(e,t=100){return reactQuery.infiniteQueryOptions({queryKey:["wallet","outgoing-rc-delegations",e,t],initialPageParam:null,queryFn:async({pageParam:r})=>{let o=(await y("rc_api.list_rc_direct_delegations",{start:[e,r??""],limit:t}).then(i=>i)).rc_direct_delegations||[];return r&&(o=o.filter(i=>i.to!==r)),o},getNextPageParam:r=>r.length===t?r[r.length-1].to:null})}function fq(e){return reactQuery.queryOptions({queryKey:["wallet","incoming-rc",e],enabled:!!e,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] - Missing username for incoming RC");let r=await h()(`${d.privateApiHost}/private-api/received-rc/${e}`);if(!r.ok)throw new Error(`Failed to fetch incoming RC: ${r.status}`);return r.json()}})}function zd(e){let r=(String(e).replace(/\D/g,"")||"0").padStart(7,"0");return `${r.slice(0,-6).replace(/^0+(?=\d)/,"")}.${r.slice(-6)} VESTS`}function or(e,t){return (t?.incoming_delegations??[]).map(r=>({delegator:r.delegator,raw:BigInt(String(r.amount).replace(/\D/g,"")||"0")})).sort((r,n)=>r.raw===n.raw?0:r.raw>n.raw?-1:1).map(({delegator:r,raw:n})=>({delegatee:e,delegator:r,vesting_shares:zd(n)}))}function vq(e){return reactQuery.queryOptions({queryKey:u.wallet.receivedVestingShares(e),enabled:!!e,queryFn:async()=>or(e,await w().fetchQuery({...nr(e),staleTime:6e4}))})}function Oq(e){return reactQuery.queryOptions({queryKey:["wallet","recurrent-transfers",e],queryFn:()=>y("condenser_api.find_recurrent_transfers",[e]),enabled:!!e})}function me(e){if(typeof e=="string"){let t=e.trim();return t.length>0?t:void 0}}function ue(e){if(typeof e=="number"&&Number.isFinite(e))return e;if(typeof e=="string"){let t=e.trim();if(!t)return;let r=Number.parseFloat(t);if(Number.isFinite(r))return r;let o=t.replace(/,/g,"").match(/[-+]?\d+(?:\.\d+)?/);if(o){let i=Number.parseFloat(o[0]);if(Number.isFinite(i))return i}}}function Zd(e){if(!e||typeof e!="object")return;let t=e;return {name:me(t.name)??"",symbol:me(t.symbol)??"",layer:me(t.layer)??"hive",balance:ue(t.balance)??0,fiatRate:ue(t.fiatRate)??0,currency:me(t.currency)??"usd",precision:ue(t.precision)??3,address:me(t.address),error:me(t.error),pendingRewards:ue(t.pendingRewards),pendingRewardsFiat:ue(t.pendingRewardsFiat),liquid:ue(t.liquid),liquidFiat:ue(t.liquidFiat),savings:ue(t.savings),savingsFiat:ue(t.savingsFiat),staked:ue(t.staked),stakedFiat:ue(t.stakedFiat),iconUrl:me(t.iconUrl),actions:t.actions??[],extraData:t.extraData??[],apr:ue(t.apr)}}function em(e){if(!e||typeof e!="object")return [];let t=[e],r=e;r.data&&typeof r.data=="object"&&t.push(r.data),r.result&&typeof r.result=="object"&&t.push(r.result),r.portfolio&&typeof r.portfolio=="object"&&t.push(r.portfolio);for(let n of t){if(Array.isArray(n))return n;if(n&&typeof n=="object")for(let o of ["wallets","tokens","assets","items","portfolio","balances"]){let i=n[o];if(Array.isArray(i))return i}}return []}function tm(e){if(!e||typeof e!="object")return;let t=e;return me(t.username)??me(t.name)??me(t.account)}function Mi(e,t="usd",r=true){return reactQuery.queryOptions({queryKey:["wallet","portfolio","v2",e,r?"only-enabled":"all",t],enabled:!!e,staleTime:6e4,refetchInterval:12e4,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] \u2013 username is required");let n=`${exports.ConfigManager.getValidatedBaseUrl()}/wallet-api/portfolio-v2`,o=await fetch(n,{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({username:e,onlyEnabled:r,currency:t})});if(!o.ok)throw new Error(`[SDK][Wallet] \u2013 Portfolio request failed (${o.status})`);let i=await o.json(),s=em(i).map(a=>Zd(a)).filter(a=>!!a).filter(a=>a.layer!=="spk");if(!s.length)throw new Error("[SDK][Wallet] \u2013 Portfolio payload contained no tokens");return {username:tm(i)??e,currency:me(i?.fiatCurrency??i?.currency)?.toUpperCase(),wallets:s}}})}function ir(e){return reactQuery.queryOptions({queryKey:["assets","hive","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(Oe().queryKey),r=w().getQueryData(M(e).queryKey),n=await y("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??"");if(!r)return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:0};let i=T(r.balance).amount,s=T(r.savings_balance).amount;return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:i+s,parts:[{name:"current",balance:i},{name:"savings",balance:s}]}}})}function Bi(e){return reactQuery.queryOptions({queryKey:["assets","hbd","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(M(e).queryKey),r=w().getQueryData(Oe().queryKey),n=1;return t?{name:"HBD",title:"Hive Dollar",price:n,accountBalance:T(t.hbd_balance).amount+T(t?.savings_hbd_balance).amount,apr:((r?.hbdInterestRate??0)/100).toFixed(3),parts:[{name:"current",balance:T(t.hbd_balance).amount},{name:"savings",balance:T(t.savings_hbd_balance).amount}]}:{name:"HBD",title:"Hive Dollar",price:n,accountBalance:0}}})}function im(e){let c=9.5-(e.headBlock-7e6)/25e4*.01;c<.95&&(c=.95);let p=e.vestingRewardPercent/1e4,l=e.virtualSupply,m=e.totalVestingFund;return (l*c*p/m).toFixed(3)}function Qi(e){return reactQuery.queryOptions({queryKey:["assets","hive-power","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(Oe().queryKey),r=w().getQueryData(M(e).queryKey);if(!t||!r)return {name:"HP",title:"Hive Power",price:0,accountBalance:0};let n=await y("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??""),i=Number.isFinite(o)?o:t.base/t.quote,s=T(r.vesting_shares).amount,a=T(r.delegated_vesting_shares).amount,c=T(r.received_vesting_shares).amount,p=T(r.vesting_withdraw_rate).amount,l=Math.max((Number(r.to_withdraw)-Number(r.withdrawn))/1e6,0),m=Fo(r.next_vesting_withdrawal)?0:Math.min(p,l),f=+Ze(s,t.hivePerMVests).toFixed(3),g=+Ze(a,t.hivePerMVests).toFixed(3),_=+Ze(c,t.hivePerMVests).toFixed(3),A=+Ze(l,t.hivePerMVests).toFixed(3),x=+Ze(m,t.hivePerMVests).toFixed(3),C=Math.max(f-A,0),F=Math.max(f-g,0);return {name:"HP",title:"Hive Power",price:i,accountBalance:+C.toFixed(3),apr:im(t),parts:[{name:"hp_balance",balance:f},{name:"available",balance:+F.toFixed(3)},{name:"outgoing_delegations",balance:g},{name:"incoming_delegations",balance:_},...A>0?[{name:"pending_power_down",balance:+A.toFixed(3)}]:[],...x>0&&x!==A?[{name:"next_power_down",balance:+x.toFixed(3)}]:[]]}}})}var N=oe.operations,Cn={transfers:[N.transfer,N.transfer_to_savings,N.transfer_from_savings,N.cancel_transfer_from_savings,N.recurrent_transfer,N.fill_recurrent_transfer,N.escrow_transfer,N.fill_recurrent_transfer],"market-orders":[N.fill_convert_request,N.fill_order,N.fill_collateralized_convert_request,N.limit_order_create2,N.limit_order_create,N.limit_order_cancel],interests:[N.interest],"stake-operations":[N.return_vesting_delegation,N.withdraw_vesting,N.transfer_to_vesting,N.set_withdraw_vesting_route,N.update_proposal_votes,N.fill_vesting_withdraw,N.account_witness_proxy,N.delegate_vesting_shares],rewards:[N.author_reward,N.curation_reward,N.producer_reward,N.claim_reward_balance,N.comment_benefactor_reward,N.liquidity_reward,N.proposal_pay],"":[]};var Jq=Object.keys(oe.operations);var Ui=oe.operations,Zq=Ui,eI=Object.entries(Ui).reduce((e,[t,r])=>(e[r]=t,e),{});var Hi=oe.operations;function am(e){return Object.prototype.hasOwnProperty.call(Hi,e)}function xt(e){let t=Array.isArray(e)?e:[e],r=t.includes(""),n=Array.from(new Set(t.filter(a=>a!=null&&a!==""))),o=r||n.length===0?"all":n.map(a=>a.toString()).sort().join("|"),i=new Set;r||n.forEach(a=>{if(a in Cn){Cn[a].forEach(c=>i.add(c));return}am(a)&&i.add(Hi[a]);});let s=pm(Array.from(i));return {filterKey:o,filterArgs:s}}function En(e){let t=Array.isArray(e)?e:[e];return new Set(t.filter(r=>r!=null&&r!==""))}function um(e){if(!e?.length)return;let t=Number(e[0]?.num??0);return Number.isFinite(t)&&t>0?t-1:void 0}function cm(e,t){return !Number.isFinite(e)||e<0?t:Math.min(t,e+1)}function pm(e){let t=0n,r=0n;return e.forEach(n=>{n<64?t|=1n<(await y("condenser_api.get_account_history",[e,s,cm(Number(s),t),...n])).map(c=>({num:c[0],type:c[1].op[0],timestamp:c[1].timestamp,trx_id:c[1].trx_id,...c[1].op[1]})),select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(c=>c.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return T(p.hive_payout).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return T(p.amount).symbol==="HIVE";case "transfer_from_savings":case "fill_transfer_from_savings":return T(p.amount).symbol==="HIVE";case "fill_recurrent_transfer":let m=T(p.amount);return ["HIVE"].includes(m.symbol);case "claim_reward_balance":return T(p.reward_hive).amount>0;case "curation_reward":case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":return true;case "limit_order_create2":return true;default:return i.has(p.type)}}))})})}function lI(e,t=20,r=[]){let{filterKey:n}=xt(r),o=En(r);return reactQuery.infiniteQueryOptions({...sr(e,t,r),queryKey:["assets","hbd","transactions",e,t,n],select:({pages:i,pageParams:s})=>({pageParams:s,pages:i.map(a=>a.filter(c=>{switch(c.type){case "author_reward":case "comment_benefactor_reward":return T(c.hbd_payout).amount>0;case "claim_reward_balance":return T(c.reward_hbd).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return T(c.amount).symbol==="HBD";case "transfer_from_savings":case "fill_transfer_from_savings":return T(c.amount).symbol==="HBD";case "fill_recurrent_transfer":let m=T(c.amount);return ["HBD"].includes(m.symbol);case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":case "proposal_pay":case "interest":return true;case "limit_order_create2":return true;default:return o.has(c.type)}}))})})}function yI(e,t=20,r=[]){let{filterKey:n}=xt(r),o=new Set(Array.isArray(r)?r:[r]),i=o.has("")||o.size===0;return reactQuery.infiniteQueryOptions({...sr(e,t,r),queryKey:["assets","hive-power","transactions",e,t,n],select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(c=>c.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return T(p.vesting_payout).amount>0;case "claim_reward_balance":return T(p.reward_vests).amount>0;case "transfer_to_vesting":return true;case "transfer":case "transfer_to_savings":case "recurrent_transfer":return ["VESTS","HP"].includes(T(p.amount).symbol);case "fill_recurrent_transfer":let f=T(p.amount);return ["VESTS","HP"].includes(f.symbol);case "curation_reward":case "withdraw_vesting":case "delegate_vesting_shares":case "fill_vesting_withdraw":case "return_vesting_delegation":case "producer_reward":case "set_withdraw_vesting_route":return true;default:return i||o.has(p.type)}}))})})}function Vi(e){let t=r=>r.toString().padStart(2,"0");return `${e.getFullYear()}-${t(e.getMonth()+1)}-${t(e.getDate())}T${t(e.getHours())}:${t(e.getMinutes())}:${t(e.getSeconds())}`}function Rn(e,t){return new Date(e.getTime()-t*1e3)}function bI(e=86400){return reactQuery.infiniteQueryOptions({queryKey:["assets","hive","metrics",e],queryFn:async({pageParam:[t,r]})=>(await y("condenser_api.get_market_history",[e,Vi(t),Vi(r)])).map(({hive:o,non_hive:i,open:s})=>({close:i.close/o.close,open:i.open/o.open,low:i.low/o.low,high:i.high/o.high,volume:o.volume,time:new Date(s)})),initialPageParam:[Rn(new Date,Math.max(100*e,28800)),new Date],getNextPageParam:(t,r,[n])=>[Rn(n,Math.max(100*e,28800)),Rn(n,e)]})}function xI(e){return reactQuery.queryOptions({queryKey:["assets","hive","withdrawal-routes",e],queryFn:()=>y("condenser_api.get_withdraw_routes",[e,"outgoing"]),enabled:!!e})}function EI(e,t=50){return reactQuery.queryOptions({queryKey:["assets","hive-power","delegates",e],enabled:!!e,queryFn:()=>y("condenser_api.get_vesting_delegations",[e,"",t])})}function II(e){return reactQuery.queryOptions({queryKey:u.assets.hivePowerDelegatings(e),enabled:!!e,queryFn:async()=>or(e,await w().fetchQuery({...nr(e),staleTime:6e4}))})}function MI(e=500){return reactQuery.queryOptions({queryKey:["market","order-book",e],queryFn:()=>y("condenser_api.get_order_book",[e])})}function HI(){return reactQuery.queryOptions({queryKey:["market","statistics"],queryFn:()=>y("condenser_api.get_ticker",[])})}function $I(e,t,r){let n=o=>o.toISOString().replace(/\.\d{3}Z$/,"");return reactQuery.queryOptions({queryKey:["market","history",e,t.getTime(),r.getTime()],queryFn:()=>y("condenser_api.get_market_history",[e,n(t),n(r)])})}function JI(){return reactQuery.queryOptions({queryKey:["market","hive-hbd-stats"],queryFn:async()=>{let e=await y("condenser_api.get_ticker",[]),t=new Date,r=new Date(t.getTime()-864e5),n=s=>s.toISOString().replace(/\.\d{3}Z$/,""),o=await y("condenser_api.get_market_history",[86400,n(r),n(t)]);return {price:+e.latest,close:o[0]?o[0].non_hive.open/o[0].hive.open:0,high:o[0]?o[0].non_hive.high/o[0].hive.high:0,low:o[0]?o[0].non_hive.low/o[0].hive.low:0,percent:o[0]?100-o[0].non_hive.open/o[0].hive.open*100/+e.latest:0,totalFromAsset:e.hive_volume.split(" ")[0],totalToAsset:e.hbd_volume.split(" ")[0]}}})}function eD(e,t,r,n){return reactQuery.queryOptions({queryKey:["market","data",e,t,r,n],queryFn:async({signal:o})=>{let i=h(),s=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,a=await i(s,{signal:o});if(!a.ok)throw new Error(`Failed to fetch market data: ${a.status}`);return a.json()}})}function ji(e){return e.toISOString().replace(/\.\d{3}Z$/,"")}function oD(e=1e3,t,r){let n=r??new Date,o=t??new Date(n.getTime()-600*60*1e3);return reactQuery.queryOptions({queryKey:["market","trade-history",e,o.getTime(),n.getTime()],queryFn:()=>y("condenser_api.get_trade_history",[ji(o),ji(n),e])})}function uD(){return reactQuery.queryOptions({queryKey:["market","feed-history"],queryFn:async()=>{try{return await y("condenser_api.get_feed_history",[])}catch(e){throw e}}})}function dD(){return reactQuery.queryOptions({queryKey:["market","current-median-history-price"],queryFn:async()=>{try{return await y("condenser_api.get_current_median_history_price",[])}catch(e){throw e}}})}function yD(e,t,r){return v(["market","limit-order-create"],e,n=>[Xt(e,n.amountToSell,n.minToReceive,n.fillOrKill,n.expiration,n.orderId)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function bD(e,t,r){return v(["market","limit-order-cancel"],e,({orderId:n})=>[on(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}async function Ot(e){let t=await e.json();if(!e.ok){let r=new Error(`Request failed with status ${e.status}`);throw r.status=e.status,r.data=t,r}return t}async function PD(e,t,r,n){let o=h(),i=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,s=await o(i);return Ot(s)}async function Li(e){if(e==="hbd")return 1;let t=h(),r=`https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${e}`,n=await t(r);return (await Ot(n)).hive_dollar[e]}async function xD(e,t){let n=await h()(d.privateApiHost+`/private-api/market-data/${e==="hbd"?"usd":e}/${t}`);return Ot(n)}async function OD(){let t=await h()(d.privateApiHost+"/private-api/market-data/latest");return Ot(t)}async function SD(){let t=await h()("https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd");return Ot(t)}var Om={"Content-type":"application/json"};async function Sm(e){let t=h(),r=exports.ConfigManager.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-api`,{method:"POST",body:JSON.stringify(e),headers:Om});if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 request failed with ${n.status}`);return (await n.json()).result}async function De(e,t){try{return await Sm(e)}catch{return t}}async function RD(e,t=50){let r={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:e},limit:t,offset:0},id:1},[n,o]=await Promise.all([De({...r,params:{...r.params,table:"buyBook",indexes:[{index:"price",descending:true}]}},[]),De({...r,params:{...r.params,table:"sellBook",indexes:[{index:"price",descending:false}]}},[])]),i=a=>a.sort((c,p)=>{let l=Number(c.price??0);return Number(p.price??0)-l}),s=a=>a.sort((c,p)=>{let l=Number(c.price??0),m=Number(p.price??0);return l-m});return {buy:i(n),sell:s(o)}}async function kD(e,t=50){return De({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"tradesHistory",query:{symbol:e},limit:t,offset:0,indexes:[{index:"timestamp",descending:true}]},id:1},[])}async function TD(e,t,r=100){let n={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:t,account:e},limit:r,offset:0},id:1},[o,i]=await Promise.all([De({...n,params:{...n.params,table:"buyBook",indexes:[{index:"timestamp",descending:true}]}},[]),De({...n,params:{...n.params,table:"sellBook",indexes:[{index:"timestamp",descending:true}]}},[])]),s=(p,l)=>(Number(p||0)*Number(l||0)).toFixed(8),a=o.map(p=>({id:p.txId,type:"buy",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:p.tokensLocked??s(p.quantity,p.price),timestamp:Number(p.timestamp??0)})),c=i.map(p=>({id:p.txId,type:"sell",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:s(p.quantity,p.price),timestamp:Number(p.timestamp??0)}));return [...a,...c].sort((p,l)=>l.timestamp-p.timestamp)}async function Cm(e,t){if(Array.isArray(e)&&e.length===0)return [];let r=Array.isArray(e)?{symbol:{$in:e}}:e?{symbol:e}:{};return De({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"metrics",query:{...r,...t?{account:t}:{}}},id:1},[])}async function st(e,t){return Cm(t,e)}async function ar(e){return De({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"balances",query:{account:e}},id:1},[])}async function ur(e){return De({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"tokens",query:{symbol:{$in:e}}},id:2},[])}async function $i(e,t,r,n){let o=h(),i=exports.ConfigManager.getValidatedBaseUrl(),s=new URL("/private-api/engine-account-history",i);s.searchParams.set("account",e),s.searchParams.set("symbol",t),s.searchParams.set("limit",r.toString()),s.searchParams.set("offset",n.toString());let a=await o(s.toString(),{method:"GET",headers:{"Content-type":"application/json"}});if(!a.ok)throw new Error(`[SDK][HiveEngine] \u2013 account history failed with ${a.status}`);return await a.json()}async function Wi(e,t="daily"){let r=h(),n=exports.ConfigManager.getValidatedBaseUrl(),o=new URL("/private-api/engine-chart-api",n);o.searchParams.set("symbol",e),o.searchParams.set("interval",t);let i=await r(o.toString(),{headers:{"Content-type":"application/json"}});if(!i.ok)throw new Error(`[SDK][HiveEngine] \u2013 chart failed with ${i.status}`);return await i.json()}async function Gi(e){let t=h(),r=exports.ConfigManager.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-reward-api/${e}?hive=1`);if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 rewards failed with ${n.status}`);return await n.json()}function cr(e){return reactQuery.queryOptions({queryKey:["assets","hive-engine","balances",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>ar(e)})}function MD(){return reactQuery.queryOptions({queryKey:["assets","hive-engine","markets"],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>st()})}function zi(e){return reactQuery.queryOptions({queryKey:["assets","hive-engine","metadata-list",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>ur(e)})}function LD(e,t,r=20){return reactQuery.infiniteQueryOptions({queryKey:["assets","hive-engine",t,"transactions",e],enabled:!!t&&!!e,initialPageParam:0,queryFn:async({pageParam:n})=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");return $i(e,t,r,n)},getNextPageParam:(n,o,i)=>(n?.length??0)===r?i+r:void 0,getPreviousPageParam:(n,o,i)=>i>0?i-r:void 0})}function zD(e,t="daily"){return reactQuery.queryOptions({queryKey:["assets","hive-engine",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>Wi(e,t)})}function ZD(e){return reactQuery.queryOptions({queryKey:["assets","hive-engine","unclaimed",e],staleTime:6e4,refetchInterval:9e4,enabled:!!e,queryFn:async()=>{try{let t=await Gi(e);return Object.values(t).filter(({pending_token:r})=>r>0)}catch{return []}}})}function Ji(e,t){return reactQuery.queryOptions({queryKey:["assets","hive-engine","all-tokens",e,t],queryFn:async()=>st(e,t)})}function at(e,t=void 0){let r={fractionDigits:3,prefix:"",suffix:""};t&&(r={...r,...t});let{fractionDigits:n,prefix:o,suffix:i}=r,s="";o&&(s+=o+" ");let a=Math.abs(parseFloat(e.toString()))<1e-4?0:e,c=typeof a=="string"?parseFloat(a):a;return s+=c.toLocaleString("en-US",{minimumFractionDigits:n,maximumFractionDigits:n,useGrouping:true}),i&&(s+=" "+i),s}var pr=class{symbol;name;icon;precision;stakingEnabled;delegationEnabled;balance;stake;stakedBalance;delegationsIn;delegationsOut;usdValue;constructor(t){this.symbol=t.symbol,this.name=t.name||"",this.icon=t.icon||"",this.precision=t.precision||0,this.stakingEnabled=t.stakingEnabled||false,this.delegationEnabled=t.delegationEnabled||false,this.balance=parseFloat(t.balance)||0,this.stake=parseFloat(t.stake)||0,this.delegationsIn=parseFloat(t.delegationsIn)||0,this.delegationsOut=parseFloat(t.delegationsOut)||0,this.stakedBalance=this.stake+this.delegationsIn-this.delegationsOut,this.usdValue=t.usdValue;}hasDelegations=()=>this.delegationEnabled?this.delegationsIn>0&&this.delegationsOut>0:false;delegations=()=>this.hasDelegations()?`(${at(this.stake,{fractionDigits:this.precision})} + ${at(this.delegationsIn,{fractionDigits:this.precision})} - ${at(this.delegationsOut,{fractionDigits:this.precision})})`:"";staked=()=>this.stakingEnabled?this.stakedBalance<1e-4?this.stakedBalance.toString():at(this.stakedBalance,{fractionDigits:this.precision}):"-";balanced=()=>this.balance<1e-4?this.balance.toString():at(this.balance,{fractionDigits:this.precision})};function pK(e,t,r){return reactQuery.queryOptions({queryKey:["assets","hive-engine","balances-with-usd",e,t,r],queryFn:async()=>{if(!e)throw new Error("[HiveEngine] No account in a balances query");let n=await ar(e),o=await ur(n.map(p=>p.symbol)),i=t?t.base/t.quote:0,s=Array.isArray(r)?r:[],a=n.map(p=>p.symbol).filter(p=>p!=="SWAP.HIVE"&&!s.some(l=>l.symbol===p)),c=[...s,...a.length?await st(void 0,a):[]];return n.map(p=>{let l=o.find(x=>x.symbol===p.symbol),m;if(l?.metadata)try{m=JSON.parse(l.metadata);}catch{m=void 0;}let f=c.find(x=>x.symbol===p.symbol),g=Number(f?.lastPrice??"0"),_=Number(p.balance),A=p.symbol==="SWAP.HIVE"?i*_:g===0?0:Number((g*i*_).toFixed(10));return new pr({symbol:p.symbol,name:l?.name??p.symbol,icon:m?.icon??"",precision:l?.precision??0,stakingEnabled:l?.stakingEnabled??false,delegationEnabled:l?.delegationEnabled??false,balance:p.balance,stake:p.stake,delegationsIn:p.delegationsIn,delegationsOut:p.delegationsOut,usdValue:A})})},enabled:!!e})}function Yi(e,t){return reactQuery.queryOptions({queryKey:["assets","hive-engine",t,"general-info",e],enabled:!!t&&!!e,staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");let r=w(),n=ir(e);await r.prefetchQuery(n);let o=r.getQueryData(n.queryKey),i=await r.ensureQueryData(zi([t])),s=await r.ensureQueryData(cr(e)),a=await r.ensureQueryData(Ji(void 0,t)),c=i?.find(x=>x.symbol===t),p=s?.find(x=>x.symbol===t),m=+(a?.find(x=>x.symbol===t)?.lastPrice??"0"),f=parseFloat(p?.balance??"0"),g=parseFloat(p?.stake??"0"),_=parseFloat(p?.pendingUnstake??"0"),A=[{name:"liquid",balance:f},{name:"staked",balance:g}];return _>0&&A.push({name:"unstaking",balance:_}),{name:t,title:c?.name??"",price:m===0?0:Number(m*(o?.price??0)),accountBalance:f+g,layer:"ENGINE",parts:A}}})}function St(e,t=0){return reactQuery.queryOptions({queryKey:["points",e,t],queryFn:async()=>{if(!e)throw new Error("Get points query \u2013 username wasn't provided");let r=e.replace("@",""),n=await fetch(d.privateApiHost+"/private-api/points",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r})});if(!n.ok)throw new Error(`Failed to fetch points: ${n.status}`);let o=await n.json(),i=await fetch(d.privateApiHost+"/private-api/point-list",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r,type:t})});if(!i.ok)throw new Error(`Failed to fetch point transactions: ${i.status}`);let s=await i.json();return {points:o.points,uPoints:o.unclaimed_points,transactions:s}},staleTime:3e4,refetchOnMount:true,enabled:!!e})}function Xi(e){return reactQuery.queryOptions({queryKey:["assets","points","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>(await w().prefetchQuery(St(e)),{name:"POINTS",title:"Ecency Points",price:.002,accountBalance:+(w().getQueryData(St(e).queryKey)?.points??0)})})}function EK(e,t){return reactQuery.queryOptions({queryKey:["assets","points","transactions",e,t],queryFn:async()=>(await(await fetch(`${d.privateApiHost}/private-api/point-list`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,type:t??0})})).json()).map(({created:o,type:i,amount:s,id:a,sender:c,receiver:p,memo:l})=>({created:new Date(o),type:i,results:[{amount:parseFloat(s),asset:"POINTS"}],id:a,from:c??void 0,to:p??void 0,memo:l??void 0}))})}function QK(e,t,r={refetch:false}){let n=w(),o=r.currency??"usd",i=async p=>(r.refetch?await n.fetchQuery(p):await n.prefetchQuery(p),n.getQueryData(p.queryKey)),s=async p=>{if(!p||o==="usd")return p;try{let l=await Li(o);return {...p,price:p.price*l}}catch(l){return console.warn(`Failed to convert price from USD to ${o}:`,l),p}},a=Mi(e,o,true),c=async()=>{try{let l=(await n.fetchQuery(a)).wallets.find(f=>f.symbol.toUpperCase()===t.toUpperCase());if(!l)return;let m=[];if(l.liquid!==void 0&&l.liquid!==null&&m.push({name:"liquid",balance:l.liquid}),l.staked!==void 0&&l.staked!==null&&l.staked>0&&m.push({name:"staked",balance:l.staked}),l.savings!==void 0&&l.savings!==null&&l.savings>0&&m.push({name:"savings",balance:l.savings}),l.extraData&&Array.isArray(l.extraData))for(let f of l.extraData){if(!f||typeof f!="object")continue;let g=f.dataKey,_=f.value;if(typeof _=="string"){let x=_.replace(/,/g,"").match(/[+-]?\s*(\d+(?:\.\d+)?)/);if(x){let C=Math.abs(Number.parseFloat(x[1]));g==="delegated_hive_power"?m.push({name:"outgoing_delegations",balance:C}):g==="received_hive_power"?m.push({name:"incoming_delegations",balance:C}):g==="powering_down_hive_power"&&m.push({name:"pending_power_down",balance:C});}}}return {name:l.symbol,title:l.name,price:l.fiatRate,accountBalance:l.balance,apr:l.apr?.toString(),layer:l.layer,pendingRewards:l.pendingRewards,parts:m}}catch{return}};return reactQuery.queryOptions({queryKey:["ecency-wallets","asset-info",e,t,o],queryFn:async()=>{let p=await c();if(p&&p.price>0)return p;let l;if(t==="HIVE")l=await i(ir(e));else if(t==="HP")l=await i(Qi(e));else if(t==="HBD")l=await i(Bi(e));else if(t==="POINTS")l=await i(Xi(e));else if((await n.ensureQueryData(cr(e))).some(f=>f.symbol===t))l=await i(Yi(e,t));else {if(p)return p;throw new Error(`[SDK][Wallet] \u2013 unrecognized asset "${t}"`)}if(p&&l&&l.price>0){let m=await s(l);return {...p,price:m.price}}return await s(l)}})}var Um=(C=>(C.Transfer="transfer",C.TransferToSavings="transfer-saving",C.WithdrawFromSavings="withdraw-saving",C.Delegate="delegate",C.PowerUp="power-up",C.PowerDown="power-down",C.WithdrawRoutes="withdraw-routes",C.ClaimInterest="claim-interest",C.Swap="swap",C.Convert="convert",C.Gift="gift",C.Promote="promote",C.Claim="claim",C.Buy="buy",C.Stake="stake",C.Unstake="unstake",C.Undelegate="undelegate",C))(Um||{});function $K(e,t,r){return v(["wallet","transfer"],e,n=>[Le(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function YK(e,t,r){return v(["wallet","transfer-point"],e,n=>[nt(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function rN(e,t,r){return v(["wallet","delegate-vesting-shares"],e,n=>[vt(e,n.delegatee,n.vestingShares)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.delegatee),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function aN(e,t,r){return v(["wallet","set-withdraw-vesting-route"],e,n=>[At(e,n.toAccount,n.percent,n.autoVest)],async(n,o)=>{await S(t?.adapter,r,[u.wallet.withdrawRoutes(e),u.accounts.full(e),u.accounts.full(o.toAccount)]);},t,"active",{broadcastMode:r})}function lN(e,t,r){return v(["wallet","transfer-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"transfer",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity,memo:n.memo}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"ssc-mainnet-hive",json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function yN(e,t,r){return v(["wallet","transfer-to-savings"],e,n=>[rt(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function vN(e,t,r){return v(["wallet","transfer-from-savings"],e,n=>[$e(e,n.to,n.amount,n.memo,n.requestId)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function SN(e,t,r){return v(["wallet","transfer-to-vesting"],e,n=>[wt(e,n.to,n.amount)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function TN(e,t,r){return v(["wallet","withdraw-vesting"],e,n=>[bt(e,n.vestingShares)],async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function KN(e,t,r){return v(["wallet","convert"],e,n=>[n.collateralized?Vr(e,n.amount,n.requestId):Pt(e,n.amount,n.requestId)],async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function UN(e,t,r){return v(["wallet","claim-interest"],e,n=>_t(e,n.to,n.amount,n.memo,n.requestId),async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}var Hm=5e3,lr=new Map;function $N(e,t,r){return v(["wallet","claim-rewards"],e,n=>[sn(e,n.rewardHive,n.rewardHbd,n.rewardVests)],()=>{let n=e??"__anonymous__",o=[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e],u.assets.hiveGeneralInfo(e),u.assets.hbdGeneralInfo(e),u.assets.hivePowerGeneralInfo(e)],i=lr.get(n);i&&(clearTimeout(i),lr.delete(n));let s=setTimeout(async()=>{try{let a=w(),p=(await Promise.allSettled(o.map(l=>a.invalidateQueries({queryKey:l})))).filter(l=>l.status==="rejected");p.length>0&&console.error("[SDK][Wallet][useClaimRewards] delayed invalidation rejected",{username:e,rejectedCount:p.length,rejected:p});}catch(a){console.error("[SDK][Wallet][useClaimRewards] delayed invalidation failed",{username:e,error:a});}finally{lr.delete(n);}},Hm);lr.set(n,s);},t,"posting",{broadcastMode:r})}function JN(e,t,r){return v(["wallet","delegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"delegate",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function eM(e,t,r){return v(["wallet","undelegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"undelegate",contractPayload:{symbol:n.symbol,from:n.from,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function oM(e,t,r){return v(["wallet","stake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"stake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function uM(e,t,r){return v(["wallet","unstake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"unstake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function dM(e,t,r){return v(["wallet","claim-engine-rewards"],e,n=>{let o=JSON.stringify(n.tokens.map(i=>({symbol:i})));return [["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"posting",{broadcastMode:r})}function yM(e,t,r){return v(["wallet","engine-market-order"],e,n=>{let o,i;n.action==="cancel"?(i="cancel",o={type:n.orderType,id:n.orderId}):(i=n.action,o={symbol:n.symbol,quantity:n.quantity,price:n.price});let s=JSON.stringify({contractName:"market",contractAction:i,contractPayload:o});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:s}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Vm(e,t,r){let{from:n,to:o="",amount:i="",memo:s=""}=r,a=r.request_id??Date.now()>>>0;switch(e){case "HIVE":switch(t){case "transfer":return [Le(n,o,i,s)];case "transfer-saving":return [rt(n,o,i,s)];case "withdraw-saving":return [$e(n,o,i,s,a)];case "power-up":return [wt(n,o,i)]}break;case "HBD":switch(t){case "transfer":return [Le(n,o,i,s)];case "transfer-saving":return [rt(n,o,i,s)];case "withdraw-saving":return [$e(n,o,i,s,a)];case "claim-interest":return _t(n,o,i,s,a);case "convert":return [Pt(n,i,Math.floor(Date.now()/1e3))]}break;case "HP":switch(t){case "power-down":return [bt(n,i)];case "delegate":return [vt(n,o,i)];case "withdraw-routes":return [At(r.from_account??n,r.to_account??o,r.percent??0,r.auto_vest??false)]}break;case "POINTS":if(t==="transfer"||t==="gift")return [nt(n,o,i,s)];break}return null}function jm(e,t,r){let{from:n,to:o="",amount:i=""}=r,s=typeof i=="string"&&i.includes(" ")?i.split(" ")[0]:String(i);switch(t){case "transfer":return [We(n,"transfer",{symbol:e,to:o,quantity:s,memo:r.memo??""})];case "stake":return [We(n,"stake",{symbol:e,to:o,quantity:s})];case "unstake":return [We(n,"unstake",{symbol:e,to:o,quantity:s})];case "delegate":return [We(n,"delegate",{symbol:e,to:o,quantity:s})];case "undelegate":return [We(n,"undelegate",{symbol:e,from:o,quantity:s})];case "claim":return [jr(n,[e])]}return null}function Lm(e){return e==="claim"?"posting":"active"}function AM(e,t,r,n,o){let{mutateAsync:i}=ot.useRecordActivity(e,r);return v(["ecency-wallets",t,r],e,s=>{let a=Vm(t,r,s);if(a)return a;let c=jm(t,r,s);if(c)return c;throw new Error(`[SDK][Wallet] \u2013 no operation builder for asset="${t}" operation="${r}"`)},()=>{i();let s=[];s.push(["ecency-wallets","asset-info",e,t]),t==="HIVE"&&s.push(["ecency-wallets","asset-info",e,"HP"]),s.push(["wallet","portfolio","v2",e]),setTimeout(()=>{s.forEach(a=>{w().invalidateQueries({queryKey:a});});},5e3);},n,Lm(r),{broadcastMode:o})}function SM(e,t,r){return v(["wallet","delegate-rc"],e,({to:n,maxRc:o})=>[Lr(e,n,o)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),u.resourceCredits.account(e),u.resourceCredits.account(o.to)]);},t,"active",{broadcastMode:r})}function kM(e,t,r){return v(["witnesses","vote"],e,({witness:n,approve:o})=>[Gr(e,n,o)],async()=>{try{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.witnesses.votes(e)]);}catch(n){console.warn("[useWitnessVote] Post-broadcast side-effect failed:",n);}},t,"active",{broadcastMode:r})}function IM(e,t,r){return v(["witnesses","proxy"],e,({proxy:n})=>[zr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.witnesses.proxy()]);},t,"active",{broadcastMode:r})}function Wm(e){return {owner:e.witness_name,total_missed:e.missed_blocks,url:e.url,props:{account_creation_fee:`${(e.account_creation_fee/1e3).toFixed(3)} HIVE`,account_subsidy_budget:0,maximum_block_size:e.block_size},hbd_exchange_rate:{base:`${e.price_feed.toFixed(3)} HBD`},available_witness_account_subsidies:0,running_version:e.version,signing_key:e.signing_key,last_hbd_exchange_update:e.feed_updated_at,rank:e.rank,vests:e.vests,voters_num:e.voters_num,voters_num_daily_change:e.voters_num_daily_change,price_feed:e.price_feed,hbd_interest_rate:e.hbd_interest_rate,last_confirmed_block_num:e.last_confirmed_block_num}}function QM(e){return reactQuery.infiniteQueryOptions({queryKey:u.witnesses.list(e),initialPageParam:1,queryFn:async({pageParam:t})=>(await te("hafbe","/witnesses",{"page-size":e,page:t})).witnesses.map(Wm),getNextPageParam:(t,r,n)=>t.length===e?n+1:void 0})}function UM(e,t,r,n="vests",o="desc"){return reactQuery.queryOptions({queryKey:u.witnesses.voters(e,t,r,n,o),queryFn:async({signal:i})=>await te("hafbe","/witnesses/{witness-name}/voters",{"witness-name":e,"page-size":r,page:t,sort:n,direction:o},void 0,void 0,i),enabled:!!e,staleTime:6e4})}function HM(e){return reactQuery.queryOptions({queryKey:u.witnesses.voterCount(e),queryFn:async()=>await te("hafbe","/witnesses/{witness-name}/voters/count",{"witness-name":e}),enabled:!!e,staleTime:6e4})}var Gm=(_=>(_[_.CHECKIN=10]="CHECKIN",_[_.LOGIN=20]="LOGIN",_[_.CHECKIN_EXTRA=30]="CHECKIN_EXTRA",_[_.POST=100]="POST",_[_.COMMENT=110]="COMMENT",_[_.VOTE=120]="VOTE",_[_.REBLOG=130]="REBLOG",_[_.DELEGATION=150]="DELEGATION",_[_.REFERRAL=160]="REFERRAL",_[_.COMMUNITY=170]="COMMUNITY",_[_.TRANSFER_SENT=998]="TRANSFER_SENT",_[_.TRANSFER_INCOMING=999]="TRANSFER_INCOMING",_[_.MINTED=991]="MINTED",_[_.BURNED=997]="BURNED",_))(Gm||{});async function Jm(e,t){if(!e)throw new Error("[SDK][Points][Claim] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][Points][Claim] \u2013 access token wasn't found");let n=await h()(d.privateApiHost+"/private-api/points-claim",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})}),o=(n.headers.get("content-type")??"").split(";")[0].trim().toLowerCase(),i=await n.text();if(!n.ok){if(n.status===406)try{return JSON.parse(i)}catch{return {message:i,code:n.status}}let s=i&&o.includes("json")?`: ${i.slice(0,200)}`:"";throw new Error(`[SDK][Points][Claim] \u2013 failed with status ${n.status}${s}`)}if(!o.includes("json"))throw new Error(`[SDK][Points][Claim] \u2013 expected JSON but received "${o||"empty"}" response (status ${n.status})`);try{return JSON.parse(i)}catch{throw new Error(`[SDK][Points][Claim] \u2013 malformed JSON response (status ${n.status})`)}}function zM(e,t,r,n){let{mutateAsync:o}=ot.useRecordActivity(e,"points-claimed");return reactQuery.useMutation({mutationFn:()=>Jm(e,t),onError:n,onSuccess:()=>{o(),w().setQueryData(St(e).queryKey,i=>i&&{...i,points:(parseFloat(i.points)+parseFloat(i.uPoints)).toFixed(3),uPoints:"0"}),r?.();}})}var es=/(^|\s)author:([^\s]+)/g,ts=/(^|\s)type:([^\s]+)/g,rs=/(^|\s)category:([^\s]+)/g,ns=/(^|\s)tag:([^\s]+)/g;var is=(n=>(n.ALL="",n.POST="post",n.COMMENT="comment",n))(is||{}),YM=5,XM=100;function ss(e){return e.trim().split(/\s+/)[0]??""}function Ym(e){return ss(e).replace(/^@+/,"").toLowerCase()}function Xm(e){return ss(e).replace(/^#+/,"").toLowerCase()}function Zm(e){let t=new Set;return e.split(/[\s,]+/).map(r=>r.replace(/^#+/,"").toLowerCase()).filter(r=>r===""||t.has(r)?false:(t.add(r),true))}function ZM({search:e="",author:t="",type:r="",category:n="",tags:o=[]}){let i=e.trim().replace(/\s+/g," "),s=Ym(t),a=Xm(n),c=Zm(Array.isArray(o)?o.join(","):o),p=[i];return s&&p.push(`author:${s}`),r&&p.push(`type:${r}`),a&&p.push(`category:${a}`),c.length>0&&p.push(`tag:${c.join(",")}`),{q:p.filter(l=>l!=="").join(" "),search:i,author:s,type:r,category:a,tags:c}}var os=class{query="";search="";author="";type="";category="";tags=[];constructor(t){this.query=t,this.search=t,this.grabAuthor(),this.grabType(),this.grabCategory(),this.grabTags(),this.grabSearch();}grab=t=>{let r=[...this.query.matchAll(t)];return r.length>0?r[0][2].trim():""};grabAuthor=()=>{this.author=this.grab(es);};grabType=()=>{let t=this.grab(ts);Object.values(is).includes(t)&&(this.type=t);};grabCategory=()=>{this.category=this.grab(rs);};grabTags=()=>{let t=new Set;this.tags=[...this.query.matchAll(ns)].flatMap(r=>r[2].split(",")).map(r=>r.trim()).filter(r=>r===""||t.has(r)?false:(t.add(r),true));};grabSearch=()=>{for([es,ts,rs,ns].forEach(t=>{this.search=this.search.replace(t,"$1");});this.search.indexOf(" ")!==-1;)this.search=this.search.replace(" "," ");this.search=this.search.trim();}};async function Ce(e,t){let n=await(async()=>{let o;try{o=await e.text();}catch{return}if(o!=="")try{return JSON.parse(o)}catch{return e.ok?void 0:o}})();if(!e.ok){let o=new Error(`Request failed with status ${e.status}`);throw o.status=e.status,o.data=n,o}if(n===void 0||t!==void 0&&!t(n))throw new Error("Response body was empty, invalid JSON, or not the expected shape");return n}function Ke(e){return typeof e=="object"&&e!==null&&Array.isArray(e.results)}var tf=reactQuery.isServer?0:3;function Ct(e,t){let{status:r}=t,n=r===408||r===429;return r!==void 0&&r>=400&&r<500&&!n?false:e{let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let c=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(a),signal:Pe(xe,s)});return Ce(c,Ke)},retry:Ct})}function pB(e,t,r=true){return reactQuery.infiniteQueryOptions({queryKey:u.search.controversialRising(e,t),initialPageParam:{sid:void 0,hasNextPage:true},queryFn:async({pageParam:n,signal:o})=>{if(!n.hasNextPage)return {hits:0,took:0,results:[]};let i,s=new Date;switch(t){case "today":i=new Date(s.getTime()-1440*60*1e3);break;case "week":i=new Date(s.getTime()-10080*60*1e3);break;case "month":i=new Date(s.getTime()-720*60*60*1e3);break;case "year":i=new Date(s.getTime()-365*24*60*60*1e3);break;default:i=void 0;}let a="* type:post",c=e==="rising"?"children":e,p=i?i.toISOString().split(".")[0]:void 0,l="0",m=t==="today"?50:200,f={q:a,sort:c,hide_low:l};p&&(f.since=p),n.sid&&(f.scroll_id=n.sid),(f.votes=m);let g=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(f),signal:Pe(xe,o)});return Ce(g,Ke)},getNextPageParam:n=>({sid:n?.scroll_id,hasNextPage:n.results.length>0}),enabled:r,retry:Ct})}async function fB(e,t,r,n,o,i,s){let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let p=await h()(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(a),signal:Pe(xe,s)});return Ce(p,Ke)}async function as(e,t,r=xe){let o=await h()(d.privateApiHost+"/search-api/similar",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(e),signal:Pe(r,t)});return Ce(o,Ke)}async function gB(e,t){let n=await h()(d.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify({q:e}),signal:Pe(xe,t)}),o=await Ce(n,Array.isArray);return o?.length>0?o:[e]}var sf=4368*60*60*1e3,af=4,uf=3e3,cf=2e3,pf=4e3,bB=2;function lf(e,t){return e.replace(/!\[[^\]]*\]\([^)]*\)/g," ").replace(/\[([^\]]*)\]\([^)]*\)/g,"$1").replace(/<[^>]+>/g," ").replace(/https?:\/\/\S+/g," ").replace(/\s+/g," ").trim().slice(0,t)}function df(e){let t=5381;for(let r=0;r>>0).toString(36)}function vB(e){let t=e.title??"",r=e.json_metadata?.tags,n=(Array.isArray(r)?r:[]).filter(s=>typeof s=="string"&&s!==""),o=lf(e.body??"",uf),i=df(`${t}|${n.join(",")}|${o}`);return reactQuery.queryOptions({queryKey:u.search.similarEntries(e.author,e.permlink,i),queryFn:async({signal:s})=>{let a=new Date(Date.now()-sf).toISOString().slice(0,19),c=await as({author:e.author,permlink:e.permlink,title:t,body:o,tags:n,since:a},s,typeof window>"u"?cf:pf),p=[],l=new Set;for(let m of c.results){if(p.length>=af)break;m.permlink!==e.permlink&&(m.tags??[]).indexOf("nsfw")===-1&&(l.has(m.author)||(l.add(m.author),p.push(m)));}return p},staleTime:300*1e3,retry:false})}function CB(e,t=5){let r=e.trim();return reactQuery.queryOptions({queryKey:u.search.account(r,t),queryFn:async()=>{let n=await y("condenser_api.lookup_accounts",[r,t]);return n.length===0?[]:zt(n)},enabled:!!r})}function FB(e,t=10){let r=e.trim();return reactQuery.queryOptions({queryKey:u.search.topics(r,t),queryFn:async()=>(await y("condenser_api.get_trending_tags",[r,t+1])).map(o=>o.name).filter(o=>o!==""&&!o.startsWith("hive-")).slice(0,t),enabled:!!r})}function MB(e,t,r,n,o,i){return reactQuery.infiniteQueryOptions({queryKey:u.search.api(e,t,r,n,o,i),queryFn:async({pageParam:s,signal:a})=>{let c={q:e,sort:t,hide_low:r};n&&(c.since=n),s&&(c.scroll_id=s),o!==void 0&&(c.votes=o),i&&(c.include_nsfw=1);let p=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(c),signal:Pe(xe,a)});return Ce(p,Ke)},initialPageParam:void 0,getNextPageParam:s=>s?.scroll_id,enabled:!!e,retry:Ct})}function HB(e){return reactQuery.queryOptions({queryKey:["search","path",e],queryFn:async()=>{let t=await fetch(d.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify({q:e})});if(!t.ok)throw new Error(`Search path failed: ${t.status}`);let r=await t.json();return r?.length>0?r:[e]}})}async function _f(e){let r=await h()(d.privateApiHost+"/private-api/support-settings",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let n;try{n=await r.json();}catch{}let o=n?.message??`Failed to fetch support settings: ${r.status}`,i=new Error(o);throw i.status=r.status,i.data=n,i}return await r.json()}function $B(e,t){let r=e?.replace("@","");return reactQuery.queryOptions({queryKey:u.support.settings(r),queryFn:()=>{if(!t)throw new Error("[SDK][Support] missing auth");return _f(t)},enabled:!!r&&!!t})}async function vf(e,t){let n=await h()(d.privateApiHost+"/private-api/support-settings-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e,beneficiary_percent:t.beneficiary_percent,curation_percent:t.curation_percent})});if(!n.ok){let o;try{o=await n.json();}catch{}let i=o?.message??`Failed to update support settings: ${n.status}`,s=new Error(i);throw s.status=n.status,s.data=o,s}return await n.json()}function Af(e,t,r){return e.setQueryData(u.support.settings(t),r),e.invalidateQueries({queryKey:u.support.settings(t)})}function YB(e,t){let r=reactQuery.useQueryClient(),n=e?.replace("@","");return reactQuery.useMutation({mutationKey:["support","settings-update",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Support] missing auth");return vf(t,o)},onSuccess(o){n&&Af(r,n,o);}})}function tQ(e){return reactQuery.queryOptions({queryKey:["promotions","boost-plus-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(d.privateApiHost+"/private-api/boost-plus-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch boost plus prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function iQ(e){return reactQuery.queryOptions({queryKey:["promotions","rc-delegation-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(d.privateApiHost+"/private-api/rc-delegation-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch RC delegation prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function cQ(e,t){return reactQuery.queryOptions({queryKey:["promotions","rc-delegation-active",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(d.privateApiHost+"/private-api/rc-delegation-active",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,username:e})});if(!r.ok)throw new Error(`Failed to fetch RC delegation active: ${r.status}`);let n=await r.json();return n&&n.expires&&n.user?{user:n.user,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function mQ(e){return reactQuery.queryOptions({queryKey:["promotions","promote-price"],queryFn:async()=>{let t=await fetch(d.privateApiHost+"/private-api/promote-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch promote prices: ${t.status}`);return await t.json()},enabled:!!e})}function hQ(e,t){return reactQuery.queryOptions({queryKey:["promotions","boost-plus-accounts",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(d.privateApiHost+"/private-api/boosted-plus-account",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:e})});if(!r.ok)throw new Error(`Failed to fetch boost plus account prices: ${r.status}`);let n=await r.json();return n?{account:n.account,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function vQ(e,t,r){return v(["promotions","boost-plus"],e,({account:n,duration:o})=>[ln(e,n,o)],async(n,{account:o})=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.promotions.boostPlusAccounts(o)]);},t,"active",{broadcastMode:r})}function OQ(e,t,r){return v(["promotions","rc-delegation"],e,({duration:n})=>[dn(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.resourceCredits.account(e),["promotions","rc-delegation-active",e]]);},t,"active",{broadcastMode:r})}async function EQ(e){let r=await h()(d.privateApiHost+"/auth-api/hs-token-refresh",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let o;try{o=await r.json();}catch{o=void 0;}let i=new Error(`Failed to refresh token: ${r.status}`);throw i.status=r.status,i.data=o,i}return await r.json()}var Rf="https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt";function FQ(){return reactQuery.queryOptions({queryKey:u.badActors.list(),queryFn:async({signal:e})=>{let t=await fetch(Rf,{signal:e});if(!t.ok)throw new Error(`Failed to fetch bad actors list: ${t.status}`);let r=await t.text();return new Set(r.split(` +'use strict';var reactQuery=require('@tanstack/react-query'),utils_js=require('@noble/hashes/utils.js'),legacy_js=require('@noble/hashes/legacy.js'),Mn=require('bs58'),secp256k1_js=require('@noble/curves/secp256k1.js'),sha2_js=require('@noble/hashes/sha2.js'),aes_js=require('@noble/ciphers/aes.js'),Co=require('hivesigner');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var Mn__default=/*#__PURE__*/_interopDefault(Mn);var Co__default=/*#__PURE__*/_interopDefault(Co);var Is=Object.defineProperty;var kt=(e,t)=>{for(var r in t)Is(e,r,{get:t[r],enumerable:true});};var Tt=new ArrayBuffer(0),Ft=null,qt=null;function Ds(){return Ft||(typeof TextEncoder<"u"?Ft=new TextEncoder:Ft={encode(e){let t=[];for(let r=0;r>6,128|n&63);else if(n>=55296&&n<=56319&&r+1>18,128|n>>12&63,128|n>>6&63,128|n&63);}else t.push(224|n>>12,128|n>>6&63,128|n&63);}return new Uint8Array(t)}}),Ft}function Tn(){return qt||(typeof TextDecoder<"u"?qt=new TextDecoder:qt={decode(e){let t=e instanceof ArrayBuffer?new Uint8Array(e):new Uint8Array(e.buffer,e.byteOffset,e.byteLength),r="";for(let n=0;n>10),56320+(i&1023)));}return r}}),qt}var D=class e{static LITTLE_ENDIAN=true;static BIG_ENDIAN=false;static DEFAULT_CAPACITY=16;static DEFAULT_ENDIAN=e.BIG_ENDIAN;buffer;view;offset;markedOffset;limit;littleEndian;constructor(t=e.DEFAULT_CAPACITY,r=e.DEFAULT_ENDIAN){this.buffer=t===0?Tt:new ArrayBuffer(t),this.view=t===0?new DataView(Tt):new DataView(this.buffer),this.offset=0,this.markedOffset=-1,this.limit=t,this.littleEndian=r;}static allocate(t,r){return new e(t,r)}static concat(t,r){let n=0;for(let a=0;a0&&(n.buffer=t.buffer,n.offset=t.byteOffset,n.limit=t.byteOffset+t.byteLength,n.view=new DataView(t.buffer));else if(t instanceof ArrayBuffer)n=new e(0,r),t.byteLength>0&&(n.buffer=t,n.offset=0,n.limit=t.byteLength,n.view=t.byteLength>0?new DataView(t):new DataView(Tt));else if(Array.isArray(t))n=new e(t.length,r),n.limit=t.length,new Uint8Array(n.buffer).set(t);else throw TypeError("Illegal buffer");return n}writeBytes(t,r){return this.append(t,r)}writeInt8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setInt8(r,t),n&&(this.offset+=1),this}writeByte(t,r){return this.writeInt8(t,r)}writeUint8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setUint8(r,t),n&&(this.offset+=1),this}writeUInt8(t,r){return this.writeUint8(t,r)}readUint8(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint8(t);return r&&(this.offset+=1),n}readUInt8(t){return this.readUint8(t)}writeInt16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setInt16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeShort(t,r){return this.writeInt16(t,r)}writeUint16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setUint16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeUInt16(t,r){return this.writeUint16(t,r)}writeInt32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setInt32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeInt(t,r){return this.writeInt32(t,r)}writeUint32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setUint32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeUInt32(t,r){return this.writeUint32(t,r)}readUint32(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint32(t,this.littleEndian);return r&&(this.offset+=4),n}readUInt32=this.readUint32;append(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o;return t instanceof e?(o=new Uint8Array(t.buffer,t.offset,t.limit-t.offset),t.offset+=o.length):t instanceof Uint8Array?o=t:t instanceof ArrayBuffer?o=new Uint8Array(t):o=new Uint8Array(t),o.length<=0?this:(r+o.length>this.buffer.byteLength&&this.resize(r+o.length),new Uint8Array(this.buffer).set(o,r),n&&(this.offset+=o.length),this)}clone(t){let r=new e(0,this.littleEndian);return t?(r.buffer=new ArrayBuffer(this.buffer.byteLength),new Uint8Array(r.buffer).set(new Uint8Array(this.buffer)),r.view=new DataView(r.buffer)):(r.buffer=this.buffer,r.view=this.view),r.offset=this.offset,r.markedOffset=this.markedOffset,r.limit=this.limit,r}copy(t,r){if(t===void 0&&(t=this.offset),r===void 0&&(r=this.limit),t===r)return new e(0,this.littleEndian);let n=r-t,o=new e(n,this.littleEndian);return o.offset=0,o.limit=n,new Uint8Array(o.buffer).set(new Uint8Array(this.buffer).subarray(t,r),0),o}copyTo(t,r,n,o){let i=typeof r>"u",s=typeof n>"u";r=i?t.offset:r,n=s?this.offset:n,o=o===void 0?this.limit:o;let a=o-n;return a===0?t:(t.ensureCapacity(r+a),new Uint8Array(t.buffer).set(new Uint8Array(this.buffer).subarray(n,o),r),s&&(this.offset+=a),i&&(t.offset+=a),this)}ensureCapacity(t){let r=this.buffer.byteLength;return rt?r:t):this}flip(){return this.limit=this.offset,this.offset=0,this}resize(t){if(this.buffer.byteLength"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigInt64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeLong(t,r){return this.writeInt64(t,r)}readInt64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigInt64(t,this.littleEndian);return r&&(this.offset+=8),n}readLong(t){return this.readInt64(t)}writeUint64(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigUint64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeUInt64(t,r){return this.writeUint64(t,r)}readUint64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigUint64(t,this.littleEndian);return r&&(this.offset+=8),n}readUInt64(t){return this.readUint64(t)}toBuffer(t){let r=this.offset,n=this.limit;return !t&&r===0&&n===this.buffer.byteLength?this.buffer:r===n?Tt:this.buffer.slice(r,n)}toArrayBuffer(t){return this.toBuffer(t)}writeVarint32(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=this.calculateVarint32(t);for(r+o>this.buffer.byteLength&&this.resize(r+o),t>>>=0;t>=128;)this.view.setUint8(r++,t&127|128),t>>>=7;return this.view.setUint8(r++,t),n?(this.offset=r,this):o}readVarint32(t){let r=typeof t>"u";typeof t>"u"&&(t=this.offset);let n=0,o=0,i;do i=this.view.getUint8(t++),n<5&&(o|=(i&127)<<7*n),++n;while((i&128)!==0);return o|=0,r?(this.offset=t,o):{value:o,length:n}}calculateVarint32(t){return t=t>>>0,t<128?1:t<16384?2:t<1<<21?3:t<1<<28?4:5}writeVString(t,r){let n=typeof r>"u",o=n?this.offset:r,i=Ds().encode(t),s=i.length,a=this.calculateVarint32(s);return o+a+s>this.buffer.byteLength&&this.resize(o+a+s),this.writeVarint32(s,o),o+=a,new Uint8Array(this.buffer).set(i,o),o+=s,n?(this.offset=o,this):o-(r||0)}readVString(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=t,o=this.readVarint32(t),i=o.value,s=o.length;t+=s;let a=Tn().decode(new Uint8Array(this.buffer,t,i));return t+=i,r?(this.offset=t,a):{string:a,length:t-n}}readUTF8String(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=Tn().decode(new Uint8Array(this.buffer,r,t));return n?(this.offset+=t,o):{string:o,length:t}}};var O={nodes:["https://api.hive.blog","https://api.deathwing.me","https://api.openhive.network","https://api.syncad.com","https://rpc.mahdiyari.info"],restNodes:["https://api.hive.blog","https://rpc.mahdiyari.info","https://api.syncad.com","https://hiveapi.actifit.io","https://api.c0ff33a.uk"],restNodesByApi:{hivesense:["https://api.hive.blog","https://api.syncad.com"]},userAgent:"ecency-sdk",chain_id:"beeab0de00000000000000000000000000000000000000000000000000000000",address_prefix:"STM",timeout:5e3,broadcastTimeout:15e3,retry:5,resilience:{adaptiveTimeout:true,adaptiveTimeoutFloorMs:2e3,adaptiveTimeoutFactor:4,hedge:false,hedgeDelayFloorMs:750,hedgeDelayFactor:2,hedgeBucketCapacity:10,hedgeRefillPerSuccess:.1,totalBudgetFactor:2}},Fn=["bridge.get_ranked_posts","bridge.get_account_posts","bridge.get_post","bridge.get_discussion","bridge.get_profile","bridge.get_profiles","bridge.get_community","bridge.list_communities","condenser_api.get_accounts","condenser_api.get_content","condenser_api.get_dynamic_global_properties","condenser_api.get_trending_tags"],It=null,yr=e=>{if(e===null){It=null;return}if(!e||typeof e!="object")return;let t=typeof e.url=="string"?e.url.trim():"";if(!/^https?:\/\//i.test(t))return;let r={};if(e.headers&&typeof e.headers=="object")for(let[s,a]of Object.entries(e.headers))typeof a=="string"&&a&&!/[\u0000-\u001f\u007f]/.test(a)&&!/[\u0000-\u001f\u007f]/.test(s)&&(r[s]=a);let n=typeof e.timeoutMs=="number"&&Number.isFinite(e.timeoutMs)&&e.timeoutMs>0?e.timeoutMs:2e3,o=e.methods===void 0?[...Fn]:Array.isArray(e.methods)?e.methods.filter(s=>typeof s=="string"&&s.includes(".")):[];if(o.length===0)return;let i=(s,a)=>typeof s=="number"&&Number.isFinite(s)&&s>0?s:a;It={url:t,headers:r,timeoutMs:n,methods:o,failureThreshold:Math.floor(i(e.failureThreshold,3)),cooldownMs:i(e.cooldownMs,1e4),methodSet:new Set(o)};},hr=e=>Array.isArray(e)?[...new Set(e.filter(t=>typeof t=="string").map(t=>t.trim().replace(/\/+$/,"")).filter(t=>t.length>0&&/^https?:\/\/.+/.test(t)))]:[],_r=e=>{let t=hr(e);t.length&&(O.nodes=t);},wr=e=>{let t=hr(e);t.length&&(O.restNodes=t);},br=e=>{if(!e||typeof e!="object")return;let t={...O.restNodesByApi};for(let[r,n]of Object.entries(e)){let o=hr(n);o.length?t[r]=o:delete t[r];}O.restNodesByApi=t;},vr=e=>{if(typeof e!="string")return;let t=e.trim();!t||/[\u0000-\u001f\u007f]/.test(t)||(O.userAgent=t);},Ar=e=>{if(!e||typeof e!="object")return;let t=O.resilience,r=o=>typeof o=="boolean",n=o=>typeof o=="number"&&Number.isFinite(o)&&o>0;r(e.adaptiveTimeout)&&(t.adaptiveTimeout=e.adaptiveTimeout),n(e.adaptiveTimeoutFloorMs)&&(t.adaptiveTimeoutFloorMs=Math.max(e.adaptiveTimeoutFloorMs,2e3)),n(e.adaptiveTimeoutFactor)&&(t.adaptiveTimeoutFactor=e.adaptiveTimeoutFactor),r(e.hedge)&&(t.hedge=e.hedge),n(e.hedgeDelayFloorMs)&&(t.hedgeDelayFloorMs=e.hedgeDelayFloorMs),n(e.hedgeDelayFactor)&&(t.hedgeDelayFactor=e.hedgeDelayFactor),n(e.hedgeBucketCapacity)&&(t.hedgeBucketCapacity=e.hedgeBucketCapacity),n(e.hedgeRefillPerSuccess)&&(t.hedgeRefillPerSuccess=Math.min(e.hedgeRefillPerSuccess,1)),n(e.totalBudgetFactor)&&(t.totalBudgetFactor=Math.max(e.totalBudgetFactor,1));};var Re=class e{data;recovery;compressed;constructor(t,r,n){this.data=t,this.recovery=r,this.compressed=n??true;}static from(t){if(typeof t=="string"){let r=utils_js.hexToBytes(t),n=parseInt(utils_js.bytesToHex(r.subarray(0,1)),16)-31,o=true;n<0&&(o=false,n=n+4);let i=r.subarray(1);return new e(i,n,o)}else throw new Error("Expected string for data")}toBuffer(){let t=new Uint8Array(65).fill(0);return this.compressed?t[0]=this.recovery+31&255:t[0]=this.recovery+27&255,t.set(this.data,1),t}customToString(){return utils_js.bytesToHex(this.toBuffer())}toString(){return this.customToString()}getPublicKey(t){if(t instanceof Uint8Array&&t.length!==32||typeof t=="string"&&t.length!==64)throw new Error("Expected a valid sha256 hash as message");typeof t=="string"&&(t=utils_js.hexToBytes(t));let r=secp256k1_js.secp256k1.Signature.fromBytes(this.data,"compact"),n=new secp256k1_js.secp256k1.Signature(r.r,r.s,this.recovery);return new Y(n.recoverPublicKey(t).toBytes())}};var Y=class e{key;prefix;constructor(t,r){this.key=t,this.prefix=r??O.address_prefix;}static fromString(t){let r=O.address_prefix;if(typeof t!="string"||t.length<=r.length)throw new Error("Invalid public key");let n=t.slice(0,r.length);if(n!==r)throw new Error(`Public key must start with ${r}`);let o;try{o=Mn__default.default.decode(t.slice(r.length));}catch{throw new Error("Invalid public key encoding")}if(o.length!==37)throw new Error("Invalid public key length");let i=o.subarray(0,33),s=o.subarray(33,37),a=legacy_js.ripemd160(i).subarray(0,4);if(!Ns(s,a))throw new Error("Public key checksum mismatch");try{secp256k1_js.secp256k1.Point.fromBytes(i);}catch{throw new Error("Invalid public key")}return new e(i,n)}static from(t){return t instanceof e?t:e.fromString(t)}verify(t,r){return typeof r=="string"&&(r=Re.from(r)),secp256k1_js.secp256k1.verify(r.data,t,this.key,{prehash:false,format:"compact"})}toString(){return Ks(this.key,this.prefix)}toJSON(){return this.toString()}inspect(){return `PublicKey: ${this.toString()}`}},Ks=(e,t)=>{let r=legacy_js.ripemd160(e);return t+Mn__default.default.encode(new Uint8Array([...e,...r.subarray(0,4)]))},Ns=(e,t)=>{if(e.byteLength!==t.byteLength)return false;for(let r=0;r{throw new Error("Void can not be serialized")},b=(e,t)=>{e.writeVString(t);},Qs=(e,t)=>{e.writeInt16(t);},Qn=(e,t)=>{e.writeInt64(t);},Bn=(e,t)=>{e.writeUint8(t);},pe=(e,t)=>{e.writeUint16(t);},X=(e,t)=>{e.writeUint32(t);},Un=(e,t)=>{e.writeUint64(t);},be=(e,t)=>{e.writeByte(t?1:0);},Hn=e=>(t,r)=>{let[n,o]=r;t.writeVarint32(n),e[n](t,o);},I=(e,t)=>{let r=Dt.from(t),n=r.getPrecision();e.writeInt64(Math.round(r.amount*Math.pow(10,n))),e.writeUint8(n);for(let o=0;o<7;o++)e.writeUint8(r.symbol.charCodeAt(o)||0);},ke=(e,t)=>{e.writeUint32(Math.floor(new Date(t+"Z").getTime()/1e3));},ye=(e,t)=>{t===null||typeof t=="string"&&t.slice(-39)==="1111111111111111111111111111111114T1Anm"?e.append(new Uint8Array(33).fill(0)):e.append(Y.from(t).key);},Vn=(e=null)=>(t,r)=>{r=Kt.from(r);let n=r.buffer.length;if(e){if(n!==e)throw new Error(`Unable to serialize binary. Expected ${e} bytes, got ${n}`)}else t.writeVarint32(n);t.append(r.buffer);},jn=Vn(),Pr=(e,t)=>(r,n)=>{r.writeVarint32(n.length);for(let[o,i]of n)e(r,o),t(r,i);},V=e=>(t,r)=>{t.writeVarint32(r.length);for(let n of r)e(t,n);},le=e=>(t,r)=>{for(let[n,o]of e)try{o(t,r[n]);}catch(i){throw i.message=`${n}: ${i.message}`,i}},Me=e=>(t,r)=>{r!==void 0?(t.writeByte(1),e(t,r)):t.writeByte(0);},W=le([["weight_threshold",X],["account_auths",Pr(b,pe)],["key_auths",Pr(ye,pe)]]),Us=le([["account",b],["weight",pe]]),xr=le([["base",I],["quote",I]]),Hs=le([["account_creation_fee",I],["maximum_block_size",X],["hbd_interest_rate",pe]]),k=(e,t)=>{let r=le(t);return (n,o)=>{n.writeVarint32(e),r(n,o);}},E={};E.account_create=k(R.account_create,[["fee",I],["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b]]);E.account_create_with_delegation=k(R.account_create_with_delegation,[["fee",I],["delegation",I],["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b],["extensions",V(se)]]);E.account_update=k(R.account_update,[["account",b],["owner",Me(W)],["active",Me(W)],["posting",Me(W)],["memo_key",ye],["json_metadata",b]]);E.account_witness_proxy=k(R.account_witness_proxy,[["account",b],["proxy",b]]);E.account_witness_vote=k(R.account_witness_vote,[["account",b],["witness",b],["approve",be]]);E.cancel_transfer_from_savings=k(R.cancel_transfer_from_savings,[["from",b],["request_id",X]]);E.change_recovery_account=k(R.change_recovery_account,[["account_to_recover",b],["new_recovery_account",b],["extensions",V(se)]]);E.claim_account=k(R.claim_account,[["creator",b],["fee",I],["extensions",V(se)]]);E.claim_reward_balance=k(R.claim_reward_balance,[["account",b],["reward_hive",I],["reward_hbd",I],["reward_vests",I]]);E.comment=k(R.comment,[["parent_author",b],["parent_permlink",b],["author",b],["permlink",b],["title",b],["body",b],["json_metadata",b]]);E.comment_options=k(R.comment_options,[["author",b],["permlink",b],["max_accepted_payout",I],["percent_hbd",pe],["allow_votes",be],["allow_curation_rewards",be],["extensions",V(Hn([le([["beneficiaries",V(Us)]])]))]]);E.convert=k(R.convert,[["owner",b],["requestid",X],["amount",I]]);E.create_claimed_account=k(R.create_claimed_account,[["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b],["extensions",V(se)]]);E.custom=k(R.custom,[["required_auths",V(b)],["id",pe],["data",jn]]);E.custom_json=k(R.custom_json,[["required_auths",V(b)],["required_posting_auths",V(b)],["id",b],["json",b]]);E.decline_voting_rights=k(R.decline_voting_rights,[["account",b],["decline",be]]);E.delegate_vesting_shares=k(R.delegate_vesting_shares,[["delegator",b],["delegatee",b],["vesting_shares",I]]);E.delete_comment=k(R.delete_comment,[["author",b],["permlink",b]]);E.escrow_approve=k(R.escrow_approve,[["from",b],["to",b],["agent",b],["who",b],["escrow_id",X],["approve",be]]);E.escrow_dispute=k(R.escrow_dispute,[["from",b],["to",b],["agent",b],["who",b],["escrow_id",X]]);E.escrow_release=k(R.escrow_release,[["from",b],["to",b],["agent",b],["who",b],["receiver",b],["escrow_id",X],["hbd_amount",I],["hive_amount",I]]);E.escrow_transfer=k(R.escrow_transfer,[["from",b],["to",b],["hbd_amount",I],["hive_amount",I],["escrow_id",X],["agent",b],["fee",I],["json_meta",b],["ratification_deadline",ke],["escrow_expiration",ke]]);E.feed_publish=k(R.feed_publish,[["publisher",b],["exchange_rate",xr]]);E.limit_order_cancel=k(R.limit_order_cancel,[["owner",b],["orderid",X]]);E.limit_order_create=k(R.limit_order_create,[["owner",b],["orderid",X],["amount_to_sell",I],["min_to_receive",I],["fill_or_kill",be],["expiration",ke]]);E.limit_order_create2=k(R.limit_order_create2,[["owner",b],["orderid",X],["amount_to_sell",I],["exchange_rate",xr],["fill_or_kill",be],["expiration",ke]]);E.recover_account=k(R.recover_account,[["account_to_recover",b],["new_owner_authority",W],["recent_owner_authority",W],["extensions",V(se)]]);E.request_account_recovery=k(R.request_account_recovery,[["recovery_account",b],["account_to_recover",b],["new_owner_authority",W],["extensions",V(se)]]);E.reset_account=k(R.reset_account,[["reset_account",b],["account_to_reset",b],["new_owner_authority",W]]);E.set_reset_account=k(R.set_reset_account,[["account",b],["current_reset_account",b],["reset_account",b]]);E.set_withdraw_vesting_route=k(R.set_withdraw_vesting_route,[["from_account",b],["to_account",b],["percent",pe],["auto_vest",be]]);E.transfer=k(R.transfer,[["from",b],["to",b],["amount",I],["memo",b]]);E.transfer_from_savings=k(R.transfer_from_savings,[["from",b],["request_id",X],["to",b],["amount",I],["memo",b]]);E.transfer_to_savings=k(R.transfer_to_savings,[["from",b],["to",b],["amount",I],["memo",b]]);E.transfer_to_vesting=k(R.transfer_to_vesting,[["from",b],["to",b],["amount",I]]);E.vote=k(R.vote,[["voter",b],["author",b],["permlink",b],["weight",Qs]]);E.withdraw_vesting=k(R.withdraw_vesting,[["account",b],["vesting_shares",I]]);E.witness_update=k(R.witness_update,[["owner",b],["url",b],["block_signing_key",ye],["props",Hs],["fee",I]]);E.witness_set_properties=k(R.witness_set_properties,[["owner",b],["props",Pr(b,jn)],["extensions",V(se)]]);E.account_update2=k(R.account_update2,[["account",b],["owner",Me(W)],["active",Me(W)],["posting",Me(W)],["memo_key",Me(ye)],["json_metadata",b],["posting_json_metadata",b],["extensions",V(se)]]);E.create_proposal=k(R.create_proposal,[["creator",b],["receiver",b],["start_date",ke],["end_date",ke],["daily_pay",I],["subject",b],["permlink",b],["extensions",V(se)]]);E.update_proposal_votes=k(R.update_proposal_votes,[["voter",b],["proposal_ids",V(Qn)],["approve",be],["extensions",V(se)]]);E.remove_proposal=k(R.remove_proposal,[["proposal_owner",b],["proposal_ids",V(Qn)],["extensions",V(se)]]);var Vs=le([["end_date",ke]]);E.update_proposal=k(R.update_proposal,[["proposal_id",Un],["creator",b],["daily_pay",I],["subject",b],["permlink",b],["extensions",V(Hn([se,Vs]))]]);E.collateralized_convert=k(R.collateralized_convert,[["owner",b],["requestid",X],["amount",I]]);E.recurrent_transfer=k(R.recurrent_transfer,[["from",b],["to",b],["amount",I],["memo",b],["recurrence",pe],["executions",pe],["extensions",V(le([["type",Bn],["value",le([["pair_id",Bn]])]]))]]);var js=(e,t)=>{let r=E[t[0]];if(!r)throw new Error(`No serializer for operation: ${t[0]}`);try{r(e,t[1]);}catch(n){throw n.message=`${t[0]}: ${n.message}`,n}},Ls=le([["ref_block_num",pe],["ref_block_prefix",X],["expiration",ke],["operations",V(js)],["extensions",V(b)]]),$s=le([["from",ye],["to",ye],["nonce",Un],["check",X],["encrypted",Vn()]]),de={Asset:I,Memo:$s,Price:xr,PublicKey:ye,String:b,Transaction:Ls,UInt16:pe,UInt32:X};var lt=e=>new Promise(t=>setTimeout(t,e));var Jn=(()=>{try{return !(typeof navigator<"u"&&navigator.product==="ReactNative")&&typeof process<"u"&&process.versions!=null&&process.versions.node!=null}catch{return false}})();function Rr(){return Jn?{"User-Agent":O.userAgent}:{}}var Fe={served:0,fallback:0,skipped:0,fallbackByReason:{status:0,rpcerror:0,timeout:0,transport:0,validate:0,parse:0}},qe=class extends Error{constructor(r,n){super(n);this.reason=r;}reason},Ln=e=>e instanceof Error?e.message:typeof e=="string"?e:String(e),Nt=0,$n=0;async function Ws(e,t,r,n,o,i){let s=t.indexOf(".");if(s<=0||s===t.length-1)throw new qe("transport",`method without an api prefix: ${t}`);let{signal:a,cleanup:c}=Tr(Math.min(e.timeoutMs,n)),{signal:p,cleanup:l}=Ut(a,o);try{let m;try{m=await fetch(e.url,{method:"POST",body:JSON.stringify({api:t.slice(0,s),method:t.slice(s+1),params:r}),headers:{"Content-Type":"application/json",...Rr(),...e.headers},signal:p});}catch(g){throw o?.aborted?g:new qe(a.aborted?"timeout":"transport",Ln(g))}if(m.status!==200){try{await m.body?.cancel();}catch{}let g=m.status===502&&(m.headers.get("x-ssr-cache")??"").toUpperCase()==="RPCERROR";throw new qe(g?"rpcerror":"status",g?"proxy relayed a node error":`proxy answered ${m.status}`)}let f;try{f=await m.json();}catch(g){throw o?.aborted?g:new qe(a.aborted?"timeout":"parse",Ln(g))}if(i&&!i(f))throw new qe("validate","proxy result rejected by validator");return f}finally{c(),l();}}var Z=class extends Error{name="RPCError";data;code;stack=void 0;constructor(t){super(t.message),this.code=t.code,"data"in t&&(this.data=t.data);}},Be=class extends Error{node;rateLimitMs;isRateLimit;constructor(t,r,n={}){super(r),this.node=t,this.rateLimitMs=n.rateLimitMs??0,this.isRateLimit=n.isRateLimit??false;}};function Yn(e){if(!e)return 0;let t=Number(e);if(Number.isFinite(t))return t>0?t*1e3:0;let r=Date.parse(e);if(Number.isFinite(r)){let n=r-Date.now();return n>0?n:0}return 0}var Gs=["ECONNREFUSED","ENOTFOUND","EHOSTUNREACH","EAI_AGAIN"],zs=["Failed to fetch","NetworkError when attempting to fetch","Load failed","fetch failed"];function Js(e){if(!e)return "";let t=[String(e.name||""),String(e.message||""),String(e.code||"")],r=e.cause;for(let n=0;r&&n<5;n++)t.push(String(r.code||""),String(r.message||"")),r=r.cause;return t.join(" ")}function Ys(e){if(!e)return false;if(e instanceof Be)return true;if(e instanceof Z)return false;let t=Js(e);return !!(Gs.some(r=>t.includes(r))||zs.some(r=>t.includes(r))||e instanceof SyntaxError||/Unexpected token|JSON\.parse|Unexpected end of JSON/i.test(t))}function Or(e,t){return !!(e===-32603||e<=-32e3&&e>=-32099||e===-32601||e===-32602&&/unable to parse|endpoint data|internal/i.test(t))}function Xn(e){let t=e.indexOf(".");return t>0?e.slice(0,t):e}var Xs=1e4,Zs=6e4,ea=12e4,Wn=2,Gn=6e4,zn=12e4,ta=30,dt=.3,Sr=3,mt=5*6e4,Zn=6e4,eo=1e3,to=2e3,Bt=class{health=new Map;getOrCreate(t){let r=this.health.get(t);return r||(r={consecutiveFailures:0,lastFailureTime:0,rateLimitedUntil:0,rateLimitStreak:0,lastRateLimitAt:0,apiFailures:new Map,headBlock:0,headBlockUpdatedAt:0,ewmaLatencyMs:void 0,latencySampleCount:0,latencyUpdatedAt:0,lastProbeAt:Date.now(),apiLatency:new Map},this.health.set(t,r)),r}recordSuccess(t,r,n,o){let i=this.getOrCreate(t);if(i.consecutiveFailures=0,i.rateLimitStreak=0,r){let s=i.apiFailures.get(r);(!s||!(s.defective&&s.cooldownUntil>Date.now()))&&i.apiFailures.delete(r);}typeof n=="number"&&Number.isFinite(n)&&n>=0&&this.recordLatency(i,n,o??r);}recordSlowFailure(t,r,n){!Number.isFinite(r)||r=Sr&&o-i.updatedAt<=mt?i.ewmaMs:void 0}return this.isLatencyUsable(n,o)?n.ewmaLatencyMs:void 0}recordCensoredLatency(t,r,n){!Number.isFinite(r)||r<50||this.recordLatency(this.getOrCreate(t),r,n);}recordLatency(t,r,n){let o=Date.now();if(t.latencyUpdatedAt>0&&o-t.latencyUpdatedAt>mt&&(t.ewmaLatencyMs=void 0,t.latencySampleCount=0,t.apiLatency.clear()),t.ewmaLatencyMs=t.ewmaLatencyMs===void 0?r:dt*r+(1-dt)*t.ewmaLatencyMs,t.latencySampleCount++,t.latencyUpdatedAt=o,n!==void 0){let i=t.apiLatency.get(n);!i||o-i.updatedAt>mt?t.apiLatency.set(n,{ewmaMs:r,sampleCount:1,updatedAt:o}):(i.ewmaMs=dt*r+(1-dt)*i.ewmaMs,i.sampleCount++,i.updatedAt=o);}}recordFailure(t,r){let n=this.getOrCreate(t);if(r){let o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};(i.cooldownUntil>0&&i.cooldownUntil<=o||i.lastFailureTime>0&&o-i.lastFailureTime>3e4)&&(i.count=0,i.cooldownUntil=0),i.count++,i.lastFailureTime=o,i.count>=Wn&&(i.cooldownUntil=o+Gn),n.apiFailures.set(r,i);}else n.consecutiveFailures++,n.lastFailureTime=Date.now();}recordDefectiveResponse(t,r){let n=this.getOrCreate(t),o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};i.count=Math.max(i.count+1,Wn),i.lastFailureTime=o,i.cooldownUntil=o+Gn,i.defective=true,n.apiFailures.set(r,i);}recordRateLimit(t,r){let n=this.getOrCreate(t),o=Date.now();n.rateLimitStreak>0&&o-n.lastRateLimitAt>ea&&(n.rateLimitStreak=0);let i=typeof r=="number"&&Number.isFinite(r)&&r>0,s=i?r:Math.min(Xs*2**n.rateLimitStreak,Zs);i||n.rateLimitStreak++,n.lastRateLimitAt=o,n.rateLimitedUntil=i?o+s:Math.max(n.rateLimitedUntil,o+s),n.consecutiveFailures++,n.lastFailureTime=o;}recordHeadBlock(t,r){if(!r||!Number.isFinite(r))return;let n=this.getOrCreate(t);n.headBlock=r,n.headBlockUpdatedAt=Date.now();}consensusHeadBlock(){let t=Date.now(),r=[];for(let n of this.health.values())n.headBlock>0&&t-n.headBlockUpdatedAt<=zn&&r.push(n.headBlock);return r.length<2?0:(r.sort((n,o)=>n-o),r[Math.floor((r.length-1)/2)])}isNodeHealthy(t,r){let n=this.health.get(t);if(!n)return true;let o=Date.now();if(n.rateLimitedUntil>o||n.consecutiveFailures>=3&&o-n.lastFailureTime<3e4)return false;if(r){let s=n.apiFailures.get(r);if(s&&s.cooldownUntil>o)return false}let i=this.consensusHeadBlock();return !(i>0&&n.headBlock>0&&o-n.headBlockUpdatedAt<=zn&&i-n.headBlock>ta)}getOrderedNodes(t,r){let n=[],o=[];for(let c of t)this.isNodeHealthy(c,r)?n.push(c):o.push(c);if(n.length<=1)return [...n,...o];let i=Date.now(),s=n.map((c,p)=>({node:c,i:p,score:this.scoreNode(c,i)})).sort((c,p)=>c.score-p.score||c.i-p.i).map(c=>c.node),a=this.pickReprobeCandidate(n,i);return a&&s[0]!==a?[a,...s.filter(c=>c!==a),...o]:[...s,...o]}isLatencyUsable(t,r){return !!t&&t.ewmaLatencyMs!==void 0&&t.latencySampleCount>=Sr&&r-t.latencyUpdatedAt<=mt}scoreNode(t,r){let n=this.health.get(t);return this.isLatencyUsable(n,r)?n.ewmaLatencyMs:eo}pickReprobeCandidate(t,r){let n=r-Zn,o,i=1/0;for(let s of t){let a=this.getOrCreate(s),c=Math.max(a.latencyUpdatedAt,a.lastProbeAt);c<=n&&c=1-1e-9?(this.tokens-=1,true):false}refill(){this.clamp(),this.tokens=Math.min(O.resilience.hedgeBucketCapacity,this.tokens+O.resilience.hedgeRefillPerSuccess);}clamp(){this.tokens>O.resilience.hedgeBucketCapacity&&(this.tokens=O.resilience.hedgeBucketCapacity);}get available(){return this.tokens}reset(t=O.resilience.hedgeBucketCapacity){this.tokens=t;}},Er=new Cr;function Qt(e,t,r,n,o){let i=O.resilience;if(!i.adaptiveTimeout||o)return n;let s=e.getUsableLatencyMs(t,r);return s===void 0?n:Math.ceil(Math.min(n,Math.max(i.adaptiveTimeoutFloorMs,i.adaptiveTimeoutFactor*s)))}function kr(e,t,r,n){r instanceof Be?r.isRateLimit?e.recordRateLimit(t,r.rateLimitMs||void 0):e.recordFailure(t,n):r instanceof Z?e.recordFailure(t,n):e.recordFailure(t);}function ro(e,t,r,n){if(!n||typeof n!="object"||!r.includes("get_dynamic_global_properties"))return;let o=n.head_block_number;typeof o=="number"&&e.recordHeadBlock(t,o);}function ra(){if(typeof DOMException<"u")return new DOMException("The operation was aborted due to timeout","TimeoutError");let e=new Error("The operation was aborted due to timeout");return e.name="TimeoutError",e}function Tr(e){if(e=Math.ceil(e),typeof AbortSignal.timeout=="function")return {signal:AbortSignal.timeout(e),cleanup:()=>{}};let t=new AbortController,r=setTimeout(()=>t.abort(ra()),e);return {signal:t.signal,cleanup:()=>clearTimeout(r)}}function Ut(e,t){if(!t)return {signal:e,cleanup:()=>{}};if(typeof AbortSignal.any=="function")return {signal:AbortSignal.any([e,t]),cleanup:()=>{}};let r=new AbortController;if(e.aborted)return r.abort(e.reason),{signal:r.signal,cleanup:()=>{}};if(t.aborted)return r.abort(t.reason),{signal:r.signal,cleanup:()=>{}};let n=()=>r.abort(e.reason),o=()=>r.abort(t.reason);e.addEventListener("abort",n,{once:true}),t.addEventListener("abort",o,{once:true});let i=()=>{e.removeEventListener("abort",n),t.removeEventListener("abort",o);};return {signal:r.signal,cleanup:i}}var ft=async(e,t,r,n=O.timeout,o=false,i)=>{let s=Math.floor(Math.random()*1e8),a={jsonrpc:"2.0",method:t,params:r,id:s},{signal:c,cleanup:p}=Tr(n),{signal:l,cleanup:m}=Ut(c,i),f=()=>{p(),m();};try{let g=await fetch(e,{method:"POST",body:JSON.stringify(a),headers:{"Content-Type":"application/json",...Rr()},signal:l});if(g.status===429)throw new Be(e,"HTTP 429 Rate Limited",{rateLimitMs:Yn(g.headers.get("Retry-After")),isRateLimit:!0});if(g.status>=500&&g.status<600)throw new Be(e,`HTTP ${g.status} from ${e}`);let _=await g.json();if(!_||typeof _.id>"u"||_.id!==s||_.jsonrpc!=="2.0")throw new Error("JSONRPC id mismatch");if("result"in _)return _.result;if("error"in _){let A=_.error;throw "message"in A&&"code"in A?new Z(A):_.error}throw _}catch(g){if(g instanceof Z||g instanceof Be||i?.aborted)throw g;if(o)return ft(e,t,r,n,false,i);throw g}finally{f();}};function Mt(){return lt(50+Math.random()*50)}function na(e){let{method:t,params:r,api:n,primary:o,hedgePool:i,callerTimeout:s,explicitTimeout:a,deadlineAt:c,externalSignal:p,onHedgeFired:l,validate:m}=e;return new Promise((f,g)=>{let _=false,A=0,x=false,C=false,F,ce,Ee=0,P=[],H=$=>{if(!_){_=true,ce!==void 0&&(clearTimeout(ce),ce=void 0);for(let q of P)q.signal.aborted||q.abort();$();}},L=($,q)=>{A++;let ge=new AbortController;P.push(ge);let pt=Ut(ge.signal,p),qs=Qt(j,$,t,s,a),gr=Date.now();q||(Ee=gr),ft($,t,r,qs,false,pt.signal).then(ie=>{if(pt.cleanup(),A--,q||(C=true),!_){if(m&&!m(ie)){if(j.recordDefectiveResponse($,n),F=new Error(`[hive-tx] response validation failed for ${t} from ${$}`),!q&&!x){H(()=>g(F));return}A===0&&H(()=>g(F));return}j.recordSuccess($,n,Date.now()-gr,t),ro(j,$,t,ie),q?C||j.recordCensoredLatency(o,Date.now()-Ee,t):x||Er.refill(),H(()=>f(ie));}}).catch(ie=>{if(pt.cleanup(),A--,q||(C=true),!_){if(p?.aborted){H(()=>g(ie));return}if(ie instanceof Z&&!Or(ie.code,ie.message)){H(()=>g(ie));return}if(kr(j,$,ie,n),j.recordSlowFailure($,Date.now()-gr,t),F=ie,!q&&!x){H(()=>g(ie));return}A===0&&H(()=>g(F));}});};L(o,false);let Q=j.getUsableLatencyMs(o,t)??0,J=Qt(j,o,t,s,a),z=Math.min(Math.max(O.resilience.hedgeDelayFloorMs,O.resilience.hedgeDelayFactor*Q),.8*J);ce=setTimeout(()=>{if(ce=void 0,_||p?.aborted||Date.now()>=c)return;let $=i.filter(ge=>j.isNodeHealthy(ge,n));if($.length===0)return;let q=$[Math.floor(Math.random()*$.length)];Er.trySpend()&&(x=true,l(q),L(q,true));},z);})}var y=async(e,t=[],r,n=O.retry,o,i)=>{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an array");if(O.nodes.length===0)throw new Error("config.nodes is empty");let s=r!==void 0,a=r??O.timeout,c=Xn(e),p=It;if(p&&Jn&&p.methodSet.has(e))if(Date.now()<$n)Fe.skipped++;else try{let g=await Ws(p,e,t,a,o,i);return Fe.served++,Nt=0,g}catch(g){if(o?.aborted)throw g;Fe.fallback++;let _=g instanceof qe?g.reason:"transport";Fe.fallbackByReason[_]=(Fe.fallbackByReason[_]??0)+1,_==="rpcerror"?Nt=0:++Nt>=p.failureThreshold&&($n=Date.now()+p.cooldownMs,Nt=0);}let l=Date.now()+O.resilience.totalBudgetFactor*a,m=new Set,f;for(let g=0;g<=n&&!(g>0&&Date.now()>=l);g++){let _=j.getOrderedNodes(O.nodes,c),A=_.find(F=>!m.has(F));A||(m.clear(),A=_[0]),m.add(A);let x=[];if(O.resilience.hedge&&j.getUsableLatencyMs(A,e)!==void 0&&(x=_.filter(F=>!m.has(F)&&j.isNodeHealthy(F,c)).slice(0,3)),x.length>0)try{return await na({method:e,params:t,api:c,primary:A,hedgePool:x,callerTimeout:a,explicitTimeout:s,deadlineAt:l,externalSignal:o,onHedgeFired:F=>m.add(F),validate:i})}catch(F){if(F instanceof Z&&!Or(F.code,F.message)||o?.aborted)throw F;f=F,g{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an array");if(O.nodes.length===0)throw new Error("config.nodes is empty");let o=Xn(e),i=new Set,s;for(let a=0;a!i.has(l));if(!p)break;if(i.add(p),n?.aborted)throw new Error("Aborted");try{let l=await ft(p,e,t,r,!1,n);return j.recordSuccess(p,o),l}catch(l){if(l instanceof Z||n?.aborted||(kr(j,p,l,o),s=l,!Ys(l)))throw l}}throw s},oa={balance:"/balance-api",hafah:"/hafah-api",hafbe:"/hafbe-api",hivemind:"/hivemind-api",hivesense:"/hivesense-api",reputation:"/reputation-api","nft-tracker":"/nft-tracker-api",hafsql:"/hafsql",status:"/status-api"};async function te(e,t,r,n,o=O.retry,i){if(!Array.isArray(O.restNodes))throw new Error("config.restNodes is not an array");if(O.restNodes.length===0)throw new Error("config.restNodes is empty");let s=n!==void 0,a=n??O.timeout,c=Date.now()+O.resilience.totalBudgetFactor*a,p=`${e}:${t}`,l=O.restNodesByApi?.[e]?.length?O.restNodesByApi[e]:O.restNodes,m=new Set,f,g=false;for(let _=0;_<=o&&!(_>0&&Date.now()>=c);_++){let A=Te.getOrderedNodes(l,e),x=A.find(q=>!m.has(q));x||(m.clear(),x=A[0]),m.add(x);let C=x+oa[e],F=t,ce=r||{},Ee=new Set;Object.entries(ce).forEach(([q,ge])=>{F.includes(`{${q}}`)&&(F=F.replace(`{${q}}`,encodeURIComponent(String(ge))),Ee.add(q));});let P=new URL(C+F);if(Object.entries(ce).forEach(([q,ge])=>{Ee.has(q)||(Array.isArray(ge)?ge.forEach(pt=>P.searchParams.append(q,String(pt))):P.searchParams.set(q,String(ge)));}),i?.aborted)throw new Error("Aborted");g=false;let{signal:H,cleanup:L}=Tr(Qt(Te,x,p,a,s)),{signal:Q,cleanup:J}=Ut(H,i),z=()=>{L(),J();},$=Date.now();try{let q=await fetch(P.toString(),{signal:Q,headers:Rr()});if(q.status===404)throw new Error("HTTP 404 - Hint: can happen on wrong params");if(q.status===429)throw Te.recordRateLimit(x,Yn(q.headers.get("Retry-After"))||void 0),g=!0,new Error(`HTTP 429 Rate Limited by ${x}`);if(q.status===503)throw Te.recordFailure(x,e),g=!0,new Error(`HTTP 503 Service Unavailable from ${x}`);if(!q.ok)throw Te.recordFailure(x,e),g=!0,new Error(`HTTP ${q.status} from ${x}`);return Te.recordSuccess(x,e,Date.now()-$,p),q.json()}catch(q){if(q?.message?.includes("HTTP 404")||i?.aborted)throw q;g||Te.recordFailure(x,e),Te.recordSlowFailure(x,Date.now()-$,p),f=q,_{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an Array");if(r>O.nodes.length)throw new Error("quorum > config.nodes.length");let i=(c=>{let p=[...c];for(let l=p.length-1;l>0;l--){let m=Math.floor(Math.random()*(l+1));[p[l],p[m]]=[p[m],p[l]];}return p})(O.nodes),s=Math.min(r,i.length),a=[];for(;s>0&&i.length>0;){let c=i.splice(0,s),p=[],l=[];for(let f=0;fl.push(g)).catch(()=>{}));await Promise.all(p),a.push(...l);let m=ia(a,r);if(m)return m;if(s=Math.min(r,i.length),s===0)throw new Error("No more nodes available.")}throw new Error("Couldn't reach quorum.")};function ia(e,t){let r=new Map;for(let o of e){let i=JSON.stringify(o);r.has(i)||r.set(i,[]),r.get(i).push(o);}let n=Array.from(r.values()).find(o=>o.length>=t);return n?n[0]:null}var aa=utils_js.hexToBytes(O.chain_id),Qe=class e{transaction;expiration=6e4;txId;constructor(t){t?.transaction&&(t.transaction instanceof e?(this.transaction=t.transaction.transaction,this.expiration=t.transaction.expiration):this.transaction=t.transaction,this.transaction&&!Array.isArray(this.transaction.signatures)&&(this.transaction.signatures=[]),this.txId=this.digest().txId),t?.expiration&&(this.expiration=t.expiration);}async addOperation(t,r){this.transaction||await this.createTransaction(this.expiration),this.transaction.operations.push([t,r]);}sign(t){if(!this.transaction)throw new Error("First create a transaction by .addOperation()");if(this.transaction){let{digest:r,txId:n}=this.digest();Array.isArray(t)||(t=[t]);for(let o of t){let i=o.sign(r);this.transaction.signatures.push(i.customToString());}return this.txId=n,this.transaction}else throw new Error("No transaction to sign")}async broadcast(t=false){if(!this.transaction)throw new Error("Attempted to broadcast an empty transaction. Add operations by .addOperation()");if(this.transaction.signatures.length===0)throw new Error("Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)");try{await Ye("condenser_api.broadcast_transaction",[this.transaction]);}catch(i){if(!(i instanceof Z&&i.message.includes("Duplicate transaction check failed")))throw i}if(this.txId||(this.txId=this.digest().txId),!t)return {tx_id:this.txId,status:"unknown"};let r=60;await lt(1e3);let n=await this.checkStatus(),o=1;for(;n?.status!=="within_irreversible_block"&&n?.status!=="expired_irreversible"&&n?.status!=="too_old"&&o{let r=await y("condenser_api.get_dynamic_global_properties",[]),n=utils_js.hexToBytes(r.head_block_id),o=Number(new Uint32Array(n.buffer,n.byteOffset+4,1)[0]),i=new Date(Date.now()+t).toISOString().slice(0,-5);this.transaction={expiration:i,extensions:[],operations:[],ref_block_num:r.head_block_number&65535,ref_block_prefix:o,signatures:[]};}};var uo=new Uint8Array([128]),U=class e{key;constructor(t){this.key=t;try{secp256k1_js.secp256k1.getPublicKey(t);}catch{throw new Error("invalid private key")}}static from(t){return typeof t=="string"?e.fromString(t):new e(t)}static fromString(t){return new e(la(t).subarray(1))}static fromSeed(t){if(typeof t=="string")if(/^[0-9a-fA-F]+$/.test(t))t=utils_js.hexToBytes(t);else {let n=[];for(let o=0;o>6,128|i&63);else if(i>=55296&&i<=56319&&o+1>18,128|i>>12&63,128|i>>6&63,128|i&63);}else n.push(224|i>>12,128|i>>6&63,128|i&63);}t=new Uint8Array(n);}return new e(sha2_js.sha256(t))}static fromLogin(t,r,n="active"){let o=t+n+r;return e.fromSeed(o)}sign(t){let r=secp256k1_js.secp256k1.sign(t,this.key,{extraEntropy:true,format:"recovered",prehash:false}),n=parseInt(utils_js.bytesToHex(r.subarray(0,1)),16);return Re.from((n+31).toString(16)+utils_js.bytesToHex(r.subarray(1)))}createPublic(t){return new Y(secp256k1_js.secp256k1.getPublicKey(this.key),t)}toString(){return pa(new Uint8Array([...uo,...this.key]))}inspect(){let t=this.toString();return `PrivateKey: ${t.slice(0,6)}...${t.slice(-6)}`}getSharedSecret(t){let r=secp256k1_js.secp256k1.getSharedSecret(this.key,t.key);return sha2_js.sha512(r.subarray(1))}static randomKey(){return new e(secp256k1_js.secp256k1.keygen().secretKey)}},co=e=>sha2_js.sha256(sha2_js.sha256(e)),pa=e=>{let t=co(e);return Mn__default.default.encode(new Uint8Array([...e,...t.slice(0,4)]))},la=e=>{let t=Mn__default.default.decode(e);if(!so(t.slice(0,1),uo))throw new Error("Private key network id mismatch");let r=t.slice(-4),n=t.slice(0,-4),o=co(n).slice(0,4);if(!so(r,o))throw new Error("Private key checksum mismatch");return n},so=(e,t)=>{if(e===t)return true;if(e.byteLength!==t.byteLength)return false;let r=e.byteLength,n=0;for(;nfo(e,t,n,r),mo=(e,t,r,n,o)=>fo(e,t,r,n,o).message,fo=(e,t,r,n,o)=>{let i=r,s=e.getSharedSecret(t),a=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);a.writeUint64(i),a.append(s),a.flip();let c=sha2_js.sha512(new Uint8Array(a.toBuffer())),p=c.subarray(32,48),l=c.subarray(0,32),m=sha2_js.sha256(c).subarray(0,4),f=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);f.append(m),f.flip();let g=f.readUint32();if(o!==void 0){if(g!==o)throw new Error("Invalid key");n=ga(n,l,p);}else n=ya(n,l,p);return {nonce:i,message:n,checksum:g}},ga=(e,t,r)=>{let n=e;return n=aes_js.cbc(t,r).decrypt(n),n},ya=(e,t,r)=>{let n=e;return n=aes_js.cbc(t,r).encrypt(n),n},qr=null,ha=()=>{if(qr===null){let r=secp256k1_js.secp256k1.utils.randomSecretKey();qr=r[0]<<8|r[1];}let e=BigInt(Date.now()),t=++qr%65536;return e=e<{let t=Pa(e,33);return new Y(t)},wa=e=>e.readUint64(),ba=e=>e.readUint32(),va=e=>{let t=e.readVarint32(),r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())},Aa=e=>t=>{let r={},n=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);n.append(t),n.flip();for(let[o,i]of e)try{r[o]=i(n);}catch(s){throw s.message=`${o}: ${s.message}`,s}return r};function Pa(e,t){if(e){let r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())}else throw Error("No buffer found on first parameter")}var xa=Aa([["from",go],["to",go],["nonce",wa],["check",ba],["encrypted",va]]),yo={Memo:xa};var _o=(e,t,r,n)=>{if(!r.startsWith("#"))return r;r=r.substring(1),bo(),e=vo(e),t=Oa(t);let o=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);o.writeVString(r);let i=new Uint8Array(o.copy(0,o.offset).toBuffer()),{nonce:s,message:a,checksum:c}=lo(e,t,i,n),p=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);de.Memo(p,{check:c,encrypted:a,from:e.createPublic(),nonce:s,to:t}),p.flip();let l=new Uint8Array(p.toBuffer());return "#"+Mn__default.default.encode(l)},wo=(e,t)=>{if(!t.startsWith("#"))return t;t=t.substring(1),bo(),e=vo(e);let r=yo.Memo(Mn__default.default.decode(t)),{from:n,to:o,nonce:i,check:s,encrypted:a}=r,p=e.createPublic().toString()===new Y(n.key).toString()?new Y(o.key):new Y(n.key);r=mo(e,p,i,a,s);let l=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);return l.append(r),l.flip(),"#"+l.readVString()},Vt,bo=()=>{if(Vt===void 0){let e;Vt=true;try{let t="5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw",n=_o(t,"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA","#memo\u7231");e=wo(t,n);}finally{Vt=e==="#memo\u7231";}}if(Vt===false)throw new Error("This environment does not support encryption.")},vo=e=>typeof e=="string"?U.fromString(e):e,Oa=e=>typeof e=="string"?Y.fromString(e):e,Ao={decode:wo,encode:_o};var oe={};kt(oe,{buildWitnessSetProperties:()=>Ta,makeBitMaskFilter:()=>Ra,operations:()=>Ea,validateUsername:()=>Ca});var Ca=e=>{let t="Account name should ";if(!e)return t+"not be empty.";let r=e.length;if(r<3)return t+"be longer.";if(r>16)return t+"be shorter.";/\./.test(e)&&(t="Each account segment should ");let n=e.split("."),o=n.length;for(let i=0;ie.reduce(ka,[BigInt(0),BigInt(0)]).map(t=>t!==BigInt(0)?t.toString():null),ka=([e,t],r)=>r<64?[e|BigInt(1)<{let r={extensions:[],owner:e,props:[]};for(let n of Object.keys(t)){if(t[n]===void 0)continue;let o;switch(n){case "key":case "new_signing_key":o=de.PublicKey;break;case "account_subsidy_budget":case "account_subsidy_decay":case "maximum_block_size":o=de.UInt32;break;case "hbd_interest_rate":o=de.UInt16;break;case "url":o=de.String;break;case "hbd_exchange_rate":o=de.Price;break;case "account_creation_fee":o=de.Asset;break;default:throw new Error(`Unknown witness prop: ${n}`)}r.props.push([n,Fa(o,t[n])]);}return r.props.sort((n,o)=>n[0].localeCompare(o[0])),["witness_set_properties",r]},Fa=(e,t)=>{let r=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);return e(r,t),r.flip(),utils_js.bytesToHex(new Uint8Array(r.toBuffer()))};function zy(e){let t;if(typeof e=="string"){let r=[];for(let n=0;n>6,128|o&63);else if(o>=55296&&o<=56319&&n+1>18,128|o>>12&63,128|o>>6&63,128|o&63);}else r.push(224|o>>12,128|o>>6&63,128|o&63);}t=new Uint8Array(r);}else t=e;return sha2_js.sha256(t)}function Po(e){try{return U.fromString(e),!0}catch{return false}}async function ee(e,t){let r=new Qe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),Ye("condenser_api.broadcast_transaction_synchronous",[r.transaction])}async function xo(e,t){let r=new Qe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),r.broadcast(false)}var Ia=432e3;function Oo(e,t){let r=Date.now()/1e3-t.last_update_time,n=Number(t.current_mana)+r*e/Ia,o=Math.round(n/e*1e4);return !isFinite(o)||o<0?o=0:o>1e4&&(o=1e4),{current_mana:n,max_mana:e,percentage:o}}function Da(e){let t=parseFloat(e.vesting_shares),r=parseFloat(e.delegated_vesting_shares),n=parseFloat(e.received_vesting_shares),o=parseFloat(e.vesting_withdraw_rate),i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t-s-r+n}function Ir(e){let t=Da(e)*1e6;return Oo(t,e.voting_manabar)}function jt(e){return Oo(Number(e.max_rc),e.rc_manabar)}var So=(c=>(c.COMMON="common",c.INFO="info",c.INSUFFICIENT_RESOURCE_CREDITS="insufficient_resource_credits",c.MISSING_AUTHORITY="missing_authority",c.TOKEN_EXPIRED="token_expired",c.NETWORK="network",c.TIMEOUT="timeout",c.VALIDATION="validation",c))(So||{});function Xe(e){let t=e?.error_description?String(e.error_description):"",r=e?.message?String(e.message):"",n=e?.error?String(e.error):"",o=t||r||String(e||""),i=a=>!!(n&&a.test(n)||t&&a.test(t)||r&&a.test(r)||o&&a.test(o));if(i(/please wait to transact/i)||i(/insufficient rc/i)||i(/rc mana|rc account|resource credits/i))return {message:"Insufficient Resource Credits. Please wait or power up.",type:"insufficient_resource_credits",originalError:e};if(i(/you may only post once every/i))return {message:"Please wait before posting again (minimum 3 second interval between comments).",type:"common",originalError:e};if(i(/your current vote on this comment is identical/i))return {message:"You have already voted with the same weight.",type:"info",originalError:e};if(i(/must claim something/i))return {message:"You must claim rewards before performing this action.",type:"info",originalError:e};if(i(/cannot claim that much vests/i))return {message:"Cannot claim that amount. Please check your pending rewards.",type:"info",originalError:e};if(i(/cannot delete a comment with net positive/i))return {message:"Cannot delete a comment with positive votes.",type:"info",originalError:e};if(i(/children == 0/i))return {message:"Cannot delete a comment with replies.",type:"common",originalError:e};if(i(/comment_cashout/i))return {message:"Cannot modify a comment that has already been paid out.",type:"common",originalError:e};if(i(/votes evaluating for comment that is paid out is forbidden/i))return {message:"Cannot vote on posts that have already been paid out.",type:"common",originalError:e};if(i(/no (active|owner|posting|memo) key available/i))return {message:"Key not available. Please provide your key to sign this operation.",type:"missing_authority",originalError:e};if(i(/missing (required )?active authority/i))return {message:"Missing active authority. This operation requires your active key.",type:"missing_authority",originalError:e};if(i(/missing (required )?owner authority/i))return {message:"Missing owner authority. This operation requires your owner key.",type:"missing_authority",originalError:e};if(i(/missing (required )?posting authority/i))return {message:"Missing posting authority. Please check your login method.",type:"missing_authority",originalError:e};if(n==="invalid_grant"||n==="unauthorized_access"||i(/token expired/i)||i(/invalid token/i)||i(/\bunauthorized\b/i)||i(/\bforbidden\b/i))return {message:"Authentication token expired. Please log in again.",type:"token_expired",originalError:e};if(i(/has already reblogged/i)||i(/already reblogged this post/i))return {message:"You have already reblogged this post.",type:"info",originalError:e};if(i(/duplicate transaction/i))return {message:"This transaction has already been processed.",type:"info",originalError:e};if(i(/econnrefused/i)||i(/connection refused/i)||i(/failed to fetch/i)||i(/\bnetwork[-\s]?(request|error|timeout|unreachable|down|failed)\b/i))return {message:"Network error. Please check your connection and try again.",type:"network",originalError:e};if(i(/timeout/i)||i(/timed out/i))return {message:"Request timed out. Please try again.",type:"timeout",originalError:e};if(i(/account.*does not exist/i)||i(/account not found/i))return {message:"Account not found. Please check the username.",type:"validation",originalError:e};if(i(/invalid memo key/i))return {message:"Invalid memo key. Cannot encrypt message.",type:"validation",originalError:e};if(i(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i))return {message:"Insufficient funds for this transaction.",type:"validation",originalError:e};if(i(/\b(invalid|validation)\b/i))return {message:(e?.message||o).substring(0,150)||"Validation error occurred",type:"validation",originalError:e};if(e?.error_description&&typeof e.error_description=="string")return {message:e.error_description.substring(0,150),type:"common",originalError:e};if(e?.message&&typeof e.message=="string")return {message:e.message.substring(0,150),type:"common",originalError:e};let s;return typeof e=="object"&&e!==null?e.error_description?s=String(e.error_description):e.code?s=`Error code: ${e.code}`:o&&o!=="[object Object]"?s=o.substring(0,150):s="Unknown error occurred":s=o.substring(0,150)||"Unknown error occurred",{message:s,type:"common",originalError:e}}function Ka(e){let t=Xe(e);return [t.message,t.type]}function ve(e){let{type:t}=Xe(e);return t==="missing_authority"||t==="token_expired"}function Na(e){let{type:t}=Xe(e);return t==="insufficient_resource_credits"}function Ma(e){let{type:t}=Xe(e);return t==="info"}function Ba(e){let{type:t}=Xe(e);return t==="network"||t==="timeout"}async function Ae(e,t,r,n,o="posting",i,s,a="async"){let c=n?.adapter;switch(e){case "key":{if(!c)throw new Error("No adapter provided for key-based auth");let p=i;if(p===void 0)switch(o){case "owner":if(c.getOwnerKey)p=await c.getOwnerKey(t);else throw new Error("Owner key not supported by adapter. Owner operations (like account recovery) require master password login or manual key entry.");break;case "active":c.getActiveKey&&(p=await c.getActiveKey(t));break;case "memo":if(c.getMemoKey)p=await c.getMemoKey(t);else throw new Error("Memo key not supported by adapter. Use memo encryption methods instead.");break;default:p=await c.getPostingKey(t);break}if(!p)throw new Error(`No ${o} key available for ${t}`);let l=U.fromString(p);return a==="async"?await xo(r,l):await ee(r,l)}case "hiveauth":{if(!c?.broadcastWithHiveAuth)throw new Error("HiveAuth not supported by adapter");return await c.broadcastWithHiveAuth(t,r,o)}case "hivesigner":{if(!c)throw new Error("No adapter provided for HiveSigner auth");if(o!=="posting"){if(c.broadcastWithHiveSigner)return await c.broadcastWithHiveSigner(t,r,o);throw new Error(`HiveSigner access token cannot sign ${o} operations. No platform broadcast available.`)}let p=s!==void 0?s:await c.getAccessToken(t);if(p)try{return (await new Co__default.default.Client({accessToken:p}).broadcast(r)).result}catch(l){if(c.broadcastWithHiveSigner&&ve(l))return await c.broadcastWithHiveSigner(t,r,o);throw l}if(c.broadcastWithHiveSigner)return await c.broadcastWithHiveSigner(t,r,o);throw new Error(`No access token available for ${t}`)}case "keychain":{if(!c?.broadcastWithKeychain)throw new Error("Keychain not supported by adapter");return await c.broadcastWithKeychain(t,r,o)}case "custom":{if(!n?.broadcast)throw new Error("No custom broadcast function provided");return await n.broadcast(r,o)}default:throw new Error(`Unknown auth method: ${e}`)}}async function Ua(e,t,r,n="posting",o="async"){let i=r?.adapter;if(i?.getLoginType){let l=await i.getLoginType(e,n);if(l){let m=i.hasPostingAuthorization?await i.hasPostingAuthorization(e):false;if(n==="posting"&&m&&l==="key")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to key:",f);}if(n==="posting"&&m&&l==="keychain")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to keychain/snap:",f);}if(n==="posting"&&m&&l==="hiveauth")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to HiveAuth:",f);}try{return await Ae(l,e,t,r,n,void 0,void 0,o)}catch(f){if(ve(f)&&i.showAuthUpgradeUI&&(n==="posting"||n==="active")){let g=t.length>0?t[0][0]:"unknown",_=await i.showAuthUpgradeUI(n,g);if(!_)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await Ae(_,e,t,r,n,void 0,void 0,o)}throw f}}if(n==="posting")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(m){if(ve(m)&&i.showAuthUpgradeUI){let f=t.length>0?t[0][0]:"unknown",g=await i.showAuthUpgradeUI(n,f);if(!g)throw new Error(`No login type available for ${e}. Please log in again.`);return await Ae(g,e,t,r,n,void 0,void 0,o)}throw m}else if(n==="active"&&i.showAuthUpgradeUI){let m=t.length>0?t[0][0]:"unknown",f=await i.showAuthUpgradeUI(n,m);if(!f)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await Ae(f,e,t,r,n,void 0,void 0,o)}}let s=r?.fallbackChain??["key","hiveauth","hivesigner","keychain","custom"],a=new Map;for(let l of s)try{let m=!1,f="",g,_;switch(l){case "key":if(!i)m=!0,f="No adapter provided";else {let A;switch(n){case "owner":i.getOwnerKey&&(A=await i.getOwnerKey(e));break;case "active":i.getActiveKey&&(A=await i.getActiveKey(e));break;case "memo":i.getMemoKey&&(A=await i.getMemoKey(e));break;default:A=await i.getPostingKey(e);break}A?g=A:(m=!0,f=`No ${n} key available`);}break;case "hiveauth":i?.broadcastWithHiveAuth||(m=!0,f="HiveAuth not supported by adapter");break;case "hivesigner":if(!i)m=!0,f="No adapter provided";else {let A=await i.getAccessToken(e);A&&(_=A);}break;case "keychain":i?.broadcastWithKeychain||(m=!0,f="Keychain not supported by adapter");break;case "custom":r?.broadcast||(m=!0,f="No custom broadcast function provided");break}if(m){a.set(l,new Error(`Skipped: ${f}`));continue}return await Ae(l,e,t,r,n,g,_,o)}catch(m){if(a.set(l,m),!ve(m))throw m}if(!Array.from(a.values()).some(l=>!l.message.startsWith("Skipped:"))){let l=Array.from(a.entries()).map(([m,f])=>`${m}: ${f.message}`).join(", ");throw new Error(`[SDK][Broadcast] No auth methods attempted for ${e}. ${l}`)}let p=Array.from(a.entries()).map(([l,m])=>`${l}: ${m.message}`).join(", ");throw new Error(`[SDK][Broadcast] All auth methods failed for ${e}. Errors: ${p}`)}function v(e=[],t,r,n=()=>{},o,i="posting",s){let a=s?.broadcastMode??"async";return reactQuery.useMutation({onSuccess:n,onMutate:s?.onMutate,onError:s?.onError,onSettled:s?.onSettled,mutationKey:[...e,t],mutationFn:async c=>{if(!t)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let p=r(c);try{if(o?.enableFallback!==!1&&o?.adapter)return await Ua(t,p,o,i,a);if(o?.broadcast)return await o.broadcast(p,i);let l=o?.postingKey;if(l){if(i!=="posting")throw new Error(`[SDK][Broadcast] Legacy auth only supports posting authority, but '${i}' was requested. Use AuthContextV2 with an adapter for ${i} operations.`);let f=U.fromString(l);return await ee(p,f)}let m=o?.accessToken;if(m)return (await new Co__default.default.Client({accessToken:m}).broadcast(p)).result;throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}catch(l){throw l instanceof Z?new Error(l.message):l}}})}async function Eo(e,t,r,n){if(!e)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let o={id:t,required_auths:[],required_posting_auths:[e],json:JSON.stringify(r)};if(n?.broadcast)return n.broadcast([["custom_json",o]],"posting");let i=n?.postingKey;if(i){let c=U.fromString(i);return ee([["custom_json",o]],c)}let s=n?.accessToken;if(s)return (await new Co__default.default.Client({accessToken:s}).customJson([],[e],t,JSON.stringify(r))).result;let a=n?.adapter;if(a){let c=[["custom_json",o]];if(n?.loginType==="keychain"&&a.broadcastWithKeychain)return a.broadcastWithKeychain(e,c,"posting");if(n?.loginType==="hiveauth"&&a.broadcastWithHiveAuth)return a.broadcastWithHiveAuth(e,c,"posting")}throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}var lh=4e3;function S(e,t,r){if(e?.invalidateQueries){if(t==="sync")return e.invalidateQueries(r);setTimeout(()=>e.invalidateQueries?.(r),4e3);}}function Pe(e,t){let r=AbortSignal.timeout(e);if(!t)return r;if(typeof AbortSignal.any=="function")return AbortSignal.any([t,r]);let n=new AbortController,o=()=>{let i=t.aborted?t.reason:r.reason;n.abort(i),t.removeEventListener("abort",o),r.removeEventListener("abort",o);};return t.aborted?n.abort(t.reason):r.aborted?n.abort(r.reason):(t.addEventListener("abort",o,{once:true}),r.addEventListener("abort",o,{once:true})),n.signal}var Ue=(()=>{try{return process.env?.NODE_ENV==="development"}catch{return false}})(),ja=()=>{try{return process.env?.VITE_HELIUS_API_KEY}catch{return}},xe=1e4,Ro=120*1e3,Lt,La;function $a(){return Lt?Lt():La??=new reactQuery.QueryClient}var d={privateApiHost:"https://ecency.com",newsletterHost:void 0,defaultObserver:"ecency",clientId:"ecency-sdk",imageHost:"https://i.ecency.com",get hiveNodes(){return O.nodes},heliusApiKey:ja(),get queryClient(){return $a()},set queryClient(e){Lt=()=>e;},pollsApiHost:"https://poll.ecency.com",plausibleHost:"https://pl.ecency.com",dmcaAccounts:[],dmcaTags:[],dmcaPatterns:[],dmcaTagRegexes:[],dmcaPatternRegexes:[],_dmcaInitialized:false};exports.ConfigManager=void 0;(Ee=>{function e(P){d.queryClient=P;}Ee.setQueryClient=e;function t(P){Lt=P;}Ee.setQueryClientResolver=t;function r(P){d.privateApiHost=P;}Ee.setPrivateApiHost=r;function n(P){d.newsletterHost=P;}Ee.setNewsletterHost=n;function o(P){d.clientId=P;}Ee.setClientId=o;function i(P){if(typeof P!="string"||P.trim()==="")throw new Error("setDefaultObserver requires a non-empty Hive account. There is no empty-string opt-out; observer resolution would fall back to the post author while caching under an empty key.");d.defaultObserver=P;}Ee.setDefaultObserver=i;function s(){return d.privateApiHost?d.privateApiHost:typeof window<"u"&&window.location?.origin?window.location.origin:"https://ecency.com"}Ee.getValidatedBaseUrl=s;function a(P){d.pollsApiHost=P;}Ee.setPollsApiHost=a;function c(P){d.imageHost=P;}Ee.setImageHost=c;function p(P){_r(P);}Ee.setHiveNodes=p;function l(P){wr(P);}Ee.setRestNodes=l;function m(P){br(P);}Ee.setRestNodesByApi=m;function f(P){vr(P);}Ee.setUserAgent=f;function g(P){Ar(P);}Ee.setResilience=g;function _(P){yr(P);}Ee.setServerRpcProxy=_;function A(){return Fe}Ee.getServerRpcProxyStats=A;function x(P){if(/(\([^)]*[*+{][^)]*\))[*+{]/.test(P))return {safe:false,reason:"nested quantifiers detected"};if(/\([^|)]*\|[^)]*\)[*+{]/.test(P))return {safe:false,reason:"alternation with quantifier (potential overlap)"};if(/\([^)]*[*+][^)]*\)[*+]/.test(P))return {safe:false,reason:"repeated quantifiers (catastrophic backtracking risk)"};if(/\.\*\.\*/.test(P)||/\.\+\.\+/.test(P))return {safe:false,reason:"multiple greedy quantifiers on wildcards"};let H=/\.?\{(\d+),(\d+)\}/g,L;for(;(L=H.exec(P))!==null;){let[,Q,J]=L;if(parseInt(J,10)-parseInt(Q,10)>1e3)return {safe:false,reason:`excessive range: {${Q},${J}}`}}return {safe:true}}function C(P){let H=["a".repeat(50)+"x","ab".repeat(50)+"x","x".repeat(100),"aaa".repeat(30)+"bbb".repeat(30)+"x"],L=5;for(let Q of H){let J=Date.now();try{P.test(Q);let z=Date.now()-J;if(z>L)return {safe:!1,reason:`runtime test exceeded ${L}ms (took ${z}ms on input length ${Q.length})`}}catch(z){return {safe:false,reason:`runtime test threw error: ${z}`}}}return {safe:true}}function F(P,H=200){try{if(!P)return Ue&&console.warn("[SDK] DMCA pattern rejected: empty pattern"),null;if(P.length>H)return Ue&&console.warn(`[SDK] DMCA pattern rejected: length ${P.length} exceeds max ${H} - pattern: ${P.substring(0,50)}...`),null;let L=x(P);if(!L.safe)return Ue&&console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${L.reason}) - pattern: ${P.substring(0,50)}...`),null;let Q;try{Q=new RegExp(P);}catch(z){return Ue&&console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${P.substring(0,50)}...`,z),null}let J=C(Q);return J.safe?Q:(Ue&&console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${J.reason}) - pattern: ${P.substring(0,50)}...`),null)}catch(L){return Ue&&console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${P.substring(0,50)}...`,L),null}}function ce(P={}){let H=z=>Array.isArray(z)?z.filter($=>typeof $=="string"):[],L=P||{},Q={accounts:H(L.accounts),tags:H(L.tags),patterns:H(L.posts)};d.dmcaAccounts=Q.accounts,d.dmcaTags=Q.tags,d.dmcaPatterns=Q.patterns,d.dmcaTagRegexes=Q.tags.map(z=>F(z)).filter(z=>z!==null),d.dmcaPatternRegexes=[];let J=Q.tags.length-d.dmcaTagRegexes.length;!d._dmcaInitialized&&Ue&&(console.log("[SDK] DMCA configuration loaded:"),console.log(` - Accounts: ${Q.accounts.length}`),console.log(` - Tag patterns: ${d.dmcaTagRegexes.length}/${Q.tags.length} compiled (${J} rejected)`),console.log(` - Post patterns: ${Q.patterns.length} (using exact string matching)`),J>0&&console.warn(`[SDK] ${J} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`)),d._dmcaInitialized=true;}Ee.setDmcaLists=ce;})(exports.ConfigManager||={});function Ph(){return new reactQuery.QueryClient({defaultOptions:{queries:{refetchOnWindowFocus:false,refetchOnMount:false}}})}var w=()=>d.queryClient;exports.EcencyQueriesManager=void 0;(s=>{function e(a){return w().getQueryData(a)}s.getQueryData=e;function t(a){return w().getQueryData(a)}s.getInfiniteQueryData=t;async function r(a){return await w().prefetchQuery(a),e(a.queryKey)}s.prefetchQuery=r;async function n(a){return await w().prefetchInfiniteQuery(a),t(a.queryKey)}s.prefetchInfiniteQuery=n;function o(a){return {prefetch:()=>r(a),getData:()=>e(a.queryKey),useClientQuery:()=>reactQuery.useQuery(a),fetchAndGet:()=>w().fetchQuery(a)}}s.generateClientServerQuery=o;function i(a){return {prefetch:()=>n(a),getData:()=>t(a.queryKey),useClientQuery:()=>reactQuery.useInfiniteQuery(a),fetchAndGet:()=>w().fetchInfiniteQuery(a)}}s.generateClientServerInfiniteQuery=i;})(exports.EcencyQueriesManager||={});function Oh(e){return btoa(JSON.stringify(e))}function Sh(e){let t=atob(e);if(t[0]==="{")return JSON.parse(t)}var ko=(n=>(n.HIVE="HIVE",n.HBD="HBD",n.VESTS="VESTS",n))(ko||{}),$t=(e=>(e["@@000000021"]="HIVE",e["@@000000013"]="HBD",e["@@000000037"]="VESTS",e))($t||{});function T(e){if(typeof e=="string"){let t=e.split(" ");return {amount:parseFloat(t[0]),symbol:ko[t[1]]}}else return {amount:parseFloat(e.amount.toString())/Math.pow(10,e.precision),symbol:$t[e.nai]}}var Dr;function h(){if(!Dr){if(typeof globalThis.fetch!="function")throw new Error("[Ecency][SDK] - global fetch is not available");Dr=globalThis.fetch.bind(globalThis);}return Dr}function To(e){return typeof e=="string"?/^hive-\d+$/.test(e):false}function Ya(e){return e&&typeof e=="object"&&"data"in e&&"pagination"in e&&Array.isArray(e.data)}function re(e,t){return Ya(e)?e:{data:Array.isArray(e)?e:[],pagination:{total:Array.isArray(e)?e.length:0,limit:t,offset:0,has_next:false}}}function Ze(e,t){return e/1e6*t}function Fo(e){return e===void 0?true:parseInt(e.split("-")[0],10)<1980}var qo=60*1e3;function Oe(){return reactQuery.queryOptions({queryKey:u.core.dynamicProps(),refetchInterval:qo,staleTime:qo,queryFn:async({signal:e})=>{let[t,r,n,o,i]=await Promise.all([y("condenser_api.get_dynamic_global_properties",[],void 0,void 0,e),y("condenser_api.get_feed_history",[],void 0,void 0,e),y("condenser_api.get_chain_properties",[],void 0,void 0,e),y("condenser_api.get_reward_fund",["post"],void 0,void 0,e),y("database_api.get_hardfork_properties",{},void 0,void 0,e).catch(()=>({current_hardfork_version:"1.28.0",last_hardfork:28}))]),s=T(t.total_vesting_shares).amount,a=T(t.total_vesting_fund_hive).amount,c=0;Number.isFinite(s)&&s!==0&&Number.isFinite(a)&&(c=a/s*1e6);let p=T(r.current_median_history.base).amount,l=T(r.current_median_history.quote).amount,m=parseFloat(o.recent_claims),f=T(o.reward_balance).amount,g=Number(t.vote_power_reserve_rate??0),_=o.author_reward_curve??"linear",A=Number(o.content_constant??0),x=String(i.current_hardfork_version??"0.0.0"),C=Number(i.last_hardfork??0),F=t.hbd_print_rate,ce=t.hbd_interest_rate,Ee=t.head_block_number,P=a,H=s,L=T(t.virtual_supply).amount,Q=t.vesting_reward_percent||0,J=n.account_creation_fee;return {hivePerMVests:c,base:p,quote:l,fundRecentClaims:m,fundRewardBalance:f,votePowerReserveRate:g,authorRewardCurve:_,contentConstant:A,currentHardforkVersion:x,lastHardfork:C,hbdPrintRate:F,hbdInterestRate:ce,headBlock:Ee,totalVestingFund:P,totalVestingShares:H,virtualSupply:L,vestingRewardPercent:Q,accountCreationFee:J,raw:{globalDynamic:t,feedHistory:r,chainProps:n,rewardFund:o,hardforkProps:i}}}})}function Hh(e="post"){return reactQuery.queryOptions({queryKey:u.core.rewardFund(e),queryFn:()=>y("condenser_api.get_reward_fund",[e])})}function Ie(...e){let t=e.length;for(;t>0&&e[t-1]===void 0;)t--;return e.slice(0,t)}var u={posts:{entry:e=>["posts","entry",e],postHeader:(e,t)=>["posts","post-header",e,t],content:(e,t)=>["posts","content",e,t],contentReplies:(e,t)=>["posts","content-replies",e,t],accountPosts:(e,t,r,n)=>["posts","account-posts",e,t,r,n],accountPostsPage:(e,t,r,n,o,i)=>["posts","account-posts-page",e,t,r,n,o,i],userPostVote:(e,t,r)=>["posts","user-vote",e,t,r],reblogs:(e,t)=>["posts","reblogs",e,t],entryActiveVotes:(e,t)=>["posts","entry-active-votes",e,t],rebloggedBy:(e,t)=>["posts","reblogged-by",e,t],tips:(e,t)=>["posts","tips",e,t],normalize:(e,t)=>["posts","normalize",e,t],drafts:e=>["posts","drafts",e],draftsInfinite:(e,t)=>Ie("posts","drafts","infinite",e,t),schedules:e=>["posts","schedules",e],schedulesInfinite:(e,t)=>Ie("posts","schedules","infinite",e,t),fragments:e=>["posts","fragments",e],fragmentsInfinite:(e,t)=>Ie("posts","fragments","infinite",e,t),images:e=>["posts","images",e],galleryImages:e=>["posts","gallery-images",e],imagesInfinite:(e,t)=>Ie("posts","images","infinite",e,t),promoted:e=>["posts","promoted",e],_promotedPrefix:["posts","promoted"],accountPostsBlogPrefix:e=>["posts","account-posts",e,"blog"],postsRanked:(e,t,r,n)=>["posts","posts-ranked",e,t,r,n],postsRankedPage:(e,t,r,n,o,i)=>["posts","posts-ranked-page",e,t,r,n,o,i],discussions:(e,t,r,n)=>["posts","discussions",e,t,r,n],discussion:(e,t,r)=>["posts","discussion",e,t,r],deletedEntry:e=>["posts","deleted-entry",e],commentHistory:(e,t,r)=>["posts","comment-history",e,t,r],trendingTags:()=>["posts","trending-tags"],trendingTagsWithStats:e=>["posts","trending-tags","stats",e],wavesFeed:(e={})=>["posts","waves","feed",e.tag??"",e.following??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],shortsFeed:(e={})=>["posts","waves","shorts",e.tag??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],wavesByHost:e=>["posts","waves","by-host",e],wavesByTag:(e,t)=>["posts","waves","by-tag",e,t],wavesFollowing:(e,t)=>["posts","waves","following",e,t],wavesTrendingTags:(e,t)=>["posts","waves","trending-tags",e,t],wavesByAccount:(e,t)=>["posts","waves","by-account",e,t],wavesTrendingAuthors:e=>["posts","waves","trending-authors",e],_prefix:["posts"]},accounts:{full:e=>["get-account-full",e],list:(...e)=>["accounts","list",...e],friends:(e,t,r,n)=>["accounts","friends",e,t,r,n],searchFriends:(e,t,r)=>["accounts","friends","search",e,t,r],subscriptions:e=>["accounts","subscriptions",e],followCount:e=>["accounts","follow-count",e],recoveries:e=>["accounts","recoveries",e],pendingRecovery:e=>["accounts","recoveries",e,"pending-request"],checkWalletPending:(e,t)=>["accounts","check-wallet-pending",e,t],mutedUsers:e=>["accounts","muted-users",e],following:(e,t,r,n)=>["accounts","following",e,t,r,n],followers:(e,t,r,n)=>["accounts","followers",e,t,r,n],search:(e,t)=>["accounts","search",e,t],profiles:(e,t)=>["accounts","profiles",e,t],lookup:(e,t)=>["accounts","lookup",e,t],transactions:(e,t,r)=>["accounts","transactions",e,t,r],favorites:e=>["accounts","favorites",e],favoritesInfinite:(e,t)=>Ie("accounts","favorites","infinite",e,t),checkFavorite:(e,t)=>["accounts","favorites","check",e,t],favoriteTags:e=>["accounts","favorite-tags",e],favoriteTagsInfinite:(e,t)=>Ie("accounts","favorite-tags","infinite",e,t),checkFavoriteTag:(e,t)=>["accounts","favorite-tags","check",e,t],relations:(e,t)=>["accounts","relations",e,t],bots:()=>["accounts","bots"],voteHistory:(e,t)=>["accounts","vote-history",e,t],reputations:(e,t)=>["accounts","reputations",e,t],bookmarks:e=>["accounts","bookmarks",e],bookmarksInfinite:(e,t)=>Ie("accounts","bookmarks","infinite",e,t),referrals:e=>["accounts","referrals",e],referralsStats:e=>["accounts","referrals-stats",e],proMembers:()=>["accounts","pro-members"],_prefix:["accounts"]},notifications:{announcements:()=>["notifications","announcements"],spotlights:()=>["notifications","spotlights"],list:(e,t)=>["notifications",e,t],unreadCount:e=>["notifications","unread",e],settings:e=>["notifications","settings",e],_prefix:["notifications"]},core:{rewardFund:e=>["core","reward-fund",e],dynamicProps:()=>["core","dynamic-props"],chainProperties:()=>["core","chain-properties"],_prefix:["core"]},communities:{single:(e,t)=>["community","single",e,t],singlePrefix:e=>["community","single",e],context:(e,t)=>["community","context",e,t],rewarded:()=>["communities","rewarded"],list:(e,t,r)=>["communities","list",e,t,r],subscribers:e=>["communities","subscribers",e],subscribersInfinite:e=>["communities","subscribers","infinite",e],accountNotifications:(e,t)=>["communities","account-notifications",e,t]},proposals:{list:()=>["proposals","list"],proposal:e=>["proposals","proposal",e],votes:(e,t,r)=>["proposals","votes",e,t,r],votesPrefix:e=>["proposals","votes",e],votesByUser:e=>["proposals","votes","by-user",e]},search:{topics:(e,t)=>["search","topics",e,t],path:e=>["search","path",e],account:(e,t)=>["search","account",e,t],results:(e,t,r,n,o,i)=>["search",e,t,typeof r=="string"?r==="1"||r==="true":r,n,o,i],controversialRising:(e,t)=>["search","controversial-rising",e,t],similarEntries:(e,t,r)=>r?["search","similar-entries",e,t,r]:["search","similar-entries",e,t],api:(e,t,r,n,o,i)=>Ie("search","api",e,t,r,n,o,i)},witnesses:{list:e=>["witnesses","list",e],votes:e=>["witnesses","votes",e],proxy:()=>["witnesses","proxy"],voters:(e,t,r,n,o)=>["witnesses","voters",e,t,r,n,o],voterCount:e=>["witnesses","voter-count",e]},wallet:{outgoingRcDelegations:(e,t)=>["wallet","outgoing-rc-delegations",e,t],vestingDelegations:(e,t)=>["wallet","vesting-delegations",e,t],withdrawRoutes:e=>["wallet","withdraw-routes",e],incomingRc:e=>["wallet","incoming-rc",e],conversionRequests:e=>["wallet","conversion-requests",e],receivedVestingShares:e=>["wallet","received-vesting-shares",e],savingsWithdraw:e=>["wallet","savings-withdraw",e],openOrders:e=>["wallet","open-orders",e],collateralizedConversionRequests:e=>["wallet","collateralized-conversion-requests",e],recurrentTransfers:e=>["wallet","recurrent-transfers",e],balanceHistory:(e,t,r)=>["wallet","balance-history",e,t,r],aggregatedHistory:(e,t,r)=>r===void 0?["wallet","aggregated-history",e,t]:["wallet","aggregated-history",e,t,r],portfolio:(e,t,r)=>["wallet","portfolio","v2",e,t,r]},assets:{hiveGeneralInfo:e=>["assets","hive","general-info",e],hiveTransactions:(e,t,r)=>["assets","hive","transactions",e,t,r],hiveWithdrawalRoutes:e=>["assets","hive","withdrawal-routes",e],hiveMetrics:e=>["assets","hive","metrics",e],hbdGeneralInfo:e=>["assets","hbd","general-info",e],hbdTransactions:(e,t,r)=>["assets","hbd","transactions",e,t,r],hivePowerGeneralInfo:e=>["assets","hive-power","general-info",e],hivePowerDelegates:e=>["assets","hive-power","delegates",e],hivePowerDelegatings:e=>["assets","hive-power","delegatings",e],hivePowerTransactions:(e,t,r)=>["assets","hive-power","transactions",e,t,r],pointsGeneralInfo:e=>["assets","points","general-info",e],pointsTransactions:(e,t)=>["assets","points","transactions",e,t],ecencyAssetInfo:(e,t,r)=>["ecency-wallets","asset-info",e,t,r]},market:{statistics:()=>["market","statistics"],orderBook:e=>["market","order-book",e],history:(e,t,r)=>["market","history",e,t,r],feedHistory:()=>["market","feed-history"],hiveHbdStats:()=>["market","hive-hbd-stats"],data:(e,t,r,n)=>["market","data",e,t,r,n],tradeHistory:(e,t,r)=>["market","trade-history",e,t,r],currentMedianHistoryPrice:()=>["market","current-median-history-price"]},analytics:{discoverCuration:e=>["analytics","discover-curation",e],pageStats:(e,t,r,n)=>["analytics","page-stats",e,t,r,n],discoverLeaderboard:e=>["analytics","discover-leaderboard",e]},promotions:{promotePrice:()=>["promotions","promote-price"],boostPlusPrices:()=>["promotions","boost-plus-prices"],boostPlusAccounts:e=>["promotions","boost-plus-accounts",e]},resourceCredits:{account:e=>["resource-credits","account",e],stats:()=>["resource-credits","stats"],resourceParams:()=>["resource-credits","resource-params"]},points:{points:(e,t)=>["points",e,t],_prefix:e=>["points",e]},polls:{details:(e,t)=>["polls","details",e,t],vote:(e,t)=>e&&t?["polls","vote",e,t]:["polls","vote"],_prefix:["polls"]},operations:{chainProperties:()=>["operations","chain-properties"]},games:{statusCheck:(e,t)=>["games","status-check",e,t]},quests:{status:e=>["quests","status",e]},newsletter:{subscriptions:e=>["newsletter","subscriptions",e],sender:(e,t,r)=>["newsletter","sender",e,t,r],issues:(e,t,r)=>["newsletter","issues",e,t,r],posts:(e,t,r,n)=>["newsletter","posts",e,t,r,n],_prefix:["newsletter"]},support:{settings:e=>["support","settings",e],_prefix:["support"]},badActors:{list:()=>["bad-actors","list"],_prefix:["bad-actors"]},curation:{feed:(e={})=>["curation","feed",e],rosterFeed:(e,t={})=>["curation","roster-feed",e,t],status:()=>["curation","status"],roster:()=>["curation","roster"],rosterAdmin:e=>["curation","roster-admin",e],rosterAdminPrefix:()=>["curation","roster-admin"],recommendations:(e={})=>["curation","recommendations",e],_recommendationsPrefix:["curation","recommendations"],post:(e,t)=>["curation","post",e,t],recommender:e=>["curation","recommender",e],recommend:()=>["curation","recommend"],_prefix:["curation"]},ai:{prices:()=>["ai","prices"],assistPrices:e=>["ai","assist-prices",e],transcribePrice:e=>["ai","transcribe-price",e],images:e=>["ai","images",e],_prefix:["ai"]}};function yt(e){if(typeof TextEncoder<"u")return new TextEncoder().encode(e).length;let t=0;for(let r=0;r=55296&&n<=56319&&r+1>>=7;while(r>0);return t}function Gh(e){return reactQuery.queryOptions({queryKey:u.ai.prices(),queryFn:async()=>{let r=await h()(d.privateApiHost+"/private-api/ai-generate-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch AI generation prices: ${r.status}`);return await r.json()},staleTime:3e5,enabled:!!e})}function Xh(e,t){return reactQuery.queryOptions({queryKey:u.ai.images(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI image history: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:"always",enabled:!!e&&!!t})}function r_(e,t){return reactQuery.queryOptions({queryKey:u.ai.assistPrices(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-assist-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI assist prices: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function s_(e,t){return reactQuery.queryOptions({queryKey:u.ai.transcribePrice(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-transcribe-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI transcribe price: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function iu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function su(e){w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.images(e)});}function p_(e,t){return reactQuery.useMutation({mutationKey:["ai","generate-image"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][GenerateImage] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][GenerateImage] \u2013 access token wasn't found");let o=await h()(d.privateApiHost+"/private-api/ai-generate-image",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,us:e,prompt:r.prompt,aspect_ratio:r.aspect_ratio??"1:1",power:r.power??1,idempotency_key:r.idempotency_key??iu()})});if(!o.ok){let s=await o.text(),a={};try{a=JSON.parse(s);}catch{}let c=new Error(`[SDK][AI][GenerateImage] \u2013 failed with status ${o.status}${s?`: ${s}`:""}`);throw c.status=o.status,c.data=a,c}if(o.status===202){let s={};try{s=await o.json();}catch{}let a=new Error("[SDK][AI][GenerateImage] \u2013 delivery pending");throw a.status=202,a.data=s,a}return await o.json()},onSuccess:()=>{e&&su(e);}})}function uu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function f_(e,t){return reactQuery.useMutation({mutationKey:["ai","assist"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Assist] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][Assist] \u2013 access token wasn't found");let o=await h()(d.privateApiHost+"/private-api/ai-assist",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:r.code??t,us:e,action:r.action,text:r.text,idempotency_key:uu()})});if(!o.ok){let i=await o.text(),s={};try{s=JSON.parse(i);}catch{}let a=new Error(`[SDK][AI][Assist] \u2013 failed with status ${o.status}${i?`: ${i}`:""}`);throw a.status=o.status,a.data=s,a}return await o.json()},onSuccess:r=>{e&&(r.cost>0&&w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.assistPrices(e)}));}})}function pu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function __(e,t){return reactQuery.useMutation({mutationKey:["ai","transcribe"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Transcribe] \u2013 username wasn't provided");let n=r.code??t;if(!n)throw new Error("[SDK][AI][Transcribe] \u2013 access token wasn't found");let o=new FormData;o.append("code",n),o.append("duration_ms",String(Math.round(r.durationMs))),o.append("idempotency_key",r.idempotency_key??pu()),o.append("audio",r.audio,r.fileName??"clip.webm");let s=await h()(d.privateApiHost+"/private-api/ai-transcribe",{method:"POST",body:o});if(!s.ok){let a=await s.text(),c={};try{c=JSON.parse(a);}catch{}throw Object.assign(new Error(`[SDK][AI][Transcribe] \u2013 failed with status ${s.status}${a?`: ${a}`:""}`),{status:s.status,data:c})}return await s.json()},onSuccess:r=>{e&&(r.cost>0&&w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.transcribePrice(e)}));}})}function Kr(e){return !e.posting_json_metadata&&!e.json_metadata}function du(e){return e?Object.values(e).some(t=>typeof t=="string"?t.length>0:t!=null):false}function M(e){return reactQuery.queryOptions({queryKey:u.accounts.full(e),queryFn:async({signal:t})=>{if(!e)return null;let[r,n]=await Promise.all([y("condenser_api.get_accounts",[[e]],void 0,void 0,t,p=>Array.isArray(p)),y("bridge.get_profile",{account:e},void 0,void 0,t).catch(p=>{if(t?.aborted)throw p;return null})]);if(!r?.[0])return null;let o=r[0];if(Kr(o)&&du(n?.metadata?.profile)){let p=await y("condenser_api.get_accounts",[[e]],void 0,void 0,t,l=>Array.isArray(l)&&(!l[0]||!Kr(l[0])));if(p[0]&&!Kr(p[0]))o=p[0];else throw new Error(`[SDK][Accounts] \u2013 inconsistent account row for ${e}: empty json metadata while hivemind profile is populated`)}let i=He(o.posting_json_metadata),s=n?.stats,a=s?{account:o.name,follower_count:s.followers??0,following_count:s.following??0}:void 0,c=n?.reputation??0;return {name:o.name,owner:o.owner,active:o.active,posting:o.posting,memo_key:o.memo_key,post_count:o.post_count,created:o.created,posting_json_metadata:o.posting_json_metadata,last_vote_time:o.last_vote_time,last_post:o.last_post,json_metadata:o.json_metadata,reward_hive_balance:o.reward_hive_balance,reward_hbd_balance:o.reward_hbd_balance,reward_vesting_hive:o.reward_vesting_hive,reward_vesting_balance:o.reward_vesting_balance,balance:o.balance,hbd_balance:o.hbd_balance,savings_balance:o.savings_balance,savings_hbd_balance:o.savings_hbd_balance,savings_hbd_last_interest_payment:o.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:o.savings_hbd_seconds_last_update,savings_hbd_seconds:o.savings_hbd_seconds,next_vesting_withdrawal:o.next_vesting_withdrawal,pending_claimed_accounts:o.pending_claimed_accounts,vesting_shares:o.vesting_shares,delegated_vesting_shares:o.delegated_vesting_shares,received_vesting_shares:o.received_vesting_shares,vesting_withdraw_rate:o.vesting_withdraw_rate,to_withdraw:o.to_withdraw,withdrawn:o.withdrawn,curation_rewards:o.curation_rewards===void 0?void 0:Number(o.curation_rewards),posting_rewards:o.posting_rewards===void 0?void 0:Number(o.posting_rewards),witness_votes:o.witness_votes,proxy:o.proxy,recovery_account:o.recovery_account,proxied_vsf_votes:o.proxied_vsf_votes,voting_manabar:o.voting_manabar,voting_power:o.voting_power,downvote_manabar:o.downvote_manabar,follow_stats:a,reputation:c,profile:i}},enabled:!!e,staleTime:6e4})}var mu=new Set(["__proto__","constructor","prototype"]);function Wt(e){if(!e||typeof e!="object"||Array.isArray(e))return false;let t=Object.getPrototypeOf(e);return t===null||t===Object.prototype}function Io(e,t){let r={...e};for(let n of Object.keys(t)){if(mu.has(n))continue;let o=t[n],i=r[n];Wt(o)&&Wt(i)?r[n]=Io(i,o):r[n]=o;}return r}function fu(e){if(!(!e||!Array.isArray(e)))return e.map(({meta:t,...r})=>{if(!t||typeof t!="object")return {...r,meta:t};let{privateKey:n,username:o,...i}=t;return {...r,meta:i}})}function He(e){if(!e)return {};try{let t=JSON.parse(e);if(t&&typeof t=="object"&&t.profile&&typeof t.profile=="object")return t.profile}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata:",t,{length:e?.length??0});}return {}}function Do(e){return He(e?.posting_json_metadata)}function Ko(e,t){if(!e)return t;if(!t)return e;let r=Object.keys(He(e.posting_json_metadata)).length;return Object.keys(He(t.posting_json_metadata)).length>r?t:e}function gu(e){if(!e)return {};try{let t=JSON.parse(e);if(Wt(t))return t}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata root:",t,{length:e?.length??0});}return {}}function No({existingPostingJsonMetadata:e,profile:t,tokens:r}){let n=gu(e),o=Wt(n.profile)?n.profile:{},i=Nr({existingProfile:o,profile:t,tokens:r});return JSON.stringify({...n,profile:i})}function Nr({existingProfile:e,profile:t,tokens:r}){let{tokens:n,version:o,...i}=t??{},s=Io(e??{},i);return s.tokens&&!Array.isArray(s.tokens)&&(s.tokens=void 0),r!==void 0?s.tokens=r&&r.length>0?r:[]:n!==void 0&&(s.tokens=n),s.tokens=fu(s.tokens),s.version=2,s}function Gt(e){return e.map(t=>{let r={name:t.name,owner:t.owner,active:t.active,posting:t.posting,memo_key:t.memo_key,post_count:t.post_count,created:t.created,reputation:t.reputation,posting_json_metadata:t.posting_json_metadata,last_vote_time:t.last_vote_time,last_post:t.last_post,json_metadata:t.json_metadata,reward_hive_balance:t.reward_hive_balance,reward_hbd_balance:t.reward_hbd_balance,reward_vesting_hive:t.reward_vesting_hive,reward_vesting_balance:t.reward_vesting_balance,balance:t.balance,hbd_balance:t.hbd_balance,savings_balance:t.savings_balance,savings_hbd_balance:t.savings_hbd_balance,savings_hbd_last_interest_payment:t.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:t.savings_hbd_seconds_last_update,savings_hbd_seconds:t.savings_hbd_seconds,next_vesting_withdrawal:t.next_vesting_withdrawal,pending_claimed_accounts:t.pending_claimed_accounts,vesting_shares:t.vesting_shares,delegated_vesting_shares:t.delegated_vesting_shares,received_vesting_shares:t.received_vesting_shares,vesting_withdraw_rate:t.vesting_withdraw_rate,to_withdraw:t.to_withdraw,withdrawn:t.withdrawn,witness_votes:t.witness_votes,proxy:t.proxy,recovery_account:t.recovery_account,proxied_vsf_votes:t.proxied_vsf_votes,voting_manabar:t.voting_manabar,voting_power:t.voting_power,downvote_manabar:t.downvote_manabar},n=He(t.posting_json_metadata);if(!n||Object.keys(n).length===0)try{let o=JSON.parse(t.json_metadata||"{}");o.profile&&(n=o.profile);}catch{}return (!n||Object.keys(n).length===0)&&(n={about:"",cover_image:"",location:"",name:"",profile_image:"",website:""}),{...r,profile:n}})}function yu(e){return new TextEncoder().encode(e).length}function et(e){return e?yu(e)<=16:false}function I_(e){return reactQuery.queryOptions({queryKey:u.accounts.list(...e),enabled:e.length>0,queryFn:async()=>{let t=e.filter(et);if(t.length===0)return [];let r=await y("condenser_api.get_accounts",[t],void 0,void 0,void 0,n=>Array.isArray(n));return Gt(r??[])}})}function B_(e){return reactQuery.queryOptions({queryKey:u.accounts.followCount(e),queryFn:()=>y("condenser_api.get_follow_count",[e])})}function j_(e,t,r="blog",n=100){return reactQuery.queryOptions({queryKey:u.accounts.followers(e,t,r,n),queryFn:()=>y("condenser_api.get_followers",[e,t,r,n]),enabled:!!e})}function z_(e,t,r="blog",n=100){return reactQuery.queryOptions({queryKey:u.accounts.following(e,t,r,n),queryFn:()=>y("condenser_api.get_following",[e,t,r,n]),enabled:!!e})}var Mo=1e3,Au=20;function ew(e){return reactQuery.queryOptions({queryKey:u.accounts.mutedUsers(e),queryFn:async()=>{let t=[],r="";for(let n=0;ns.following);if(i[0]===r&&(i=i.slice(1)),!i.length||(t.push(...i),o.lengthet(e)?y("condenser_api.lookup_accounts",[e,t]):[],enabled:!!e,staleTime:1/0})}function lw(e,t=5,r=[]){return reactQuery.queryOptions({queryKey:u.accounts.search(e,r),enabled:!!e,queryFn:async()=>(await y("condenser_api.lookup_accounts",[e,t])).filter(o=>r.length>0?!r.includes(o):true)})}var Su=new Set(["ownerPublicKey","activePublicKey","postingPublicKey","memoPublicKey"]);function gw(e,t){return reactQuery.queryOptions({queryKey:u.accounts.checkWalletPending(e,t??null),queryFn:async()=>{if(!e||!t)return {exist:false};let n=await h()(d.privateApiHost+"/private-api/wallets",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,code:t})});if(!n.ok)return {exist:false};let o=await n.json(),i=Array.isArray(o)?o.flatMap(s=>{if(!s||typeof s!="object")return [];let a=s,c=typeof a.token=="string"?a.token:void 0;if(!c)return [];let p=a.meta&&typeof a.meta=="object"?{...a.meta}:{},l={},m=typeof a.address=="string"&&a.address?a.address:void 0,g=(typeof a.status=="number"?a.status===3:void 0)??false;m&&(l.address=m),l.show=g;let _={symbol:c,currency:c,address:m,show:g,type:"CHAIN",meta:l},A=[];for(let[x,C]of Object.entries(p))typeof x=="string"&&(Su.has(x)||typeof C!="string"||!C||/^[A-Z0-9]{2,10}$/.test(x)&&A.push({symbol:x,currency:x,address:C,show:g,type:"CHAIN",meta:{address:C,show:g}}));return [_,...A]}):[];return {exist:i.length>0,tokens:i.length?i:void 0,wallets:i.length?i:void 0}},refetchOnMount:true})}function Bo(e,t){return reactQuery.queryOptions({queryKey:u.accounts.relations(e,t),enabled:!!e&&!!t,refetchOnMount:false,refetchInterval:36e5,queryFn:async()=>{let r={follows:false,ignores:false,blacklists:false,follows_muted:false,follows_blacklists:false};return !e||!t?r:await y("bridge.get_relationship_between_accounts",[e,t])??r}})}function xw(e){return reactQuery.queryOptions({queryKey:u.accounts.subscriptions(e),enabled:!!e,queryFn:async({signal:t})=>await y("bridge.list_all_subscriptions",{account:e},void 0,void 0,t)??[]})}function Ew(e,t){return reactQuery.queryOptions({queryKey:u.accounts.bookmarks(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Bookmarks] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/bookmarks",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Rw(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.accounts.bookmarksInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch bookmarks: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function qw(e,t){return reactQuery.queryOptions({queryKey:u.accounts.favorites(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/favorites",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Iw(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.accounts.favoritesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/favorites?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorites: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Mw(e,t,r){return reactQuery.queryOptions({queryKey:u.accounts.checkFavorite(e,r),enabled:!!e&&!!t&&!!r,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");if(!r)throw new Error("[SDK][Accounts][Favorites] \u2013 no target username");let o=await h()(d.privateApiHost+"/private-api/favorites-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:r})});if(!o.ok)throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check failed with status ${o.status}: ${o.statusText}`);let i=await o.json();if(typeof i!="boolean")throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check returned invalid type: expected boolean, got ${typeof i}`);return i}})}function Hw(e,t){return reactQuery.queryOptions({queryKey:u.accounts.favoriteTags(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");let n=await h()(d.privateApiHost+"/private-api/favorite-tags",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch favorite tags: ${n.status}`);return await n.json()}})}function Vw(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.accounts.favoriteTagsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/favorite-tags?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorite tags: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}var Ku=/^[a-z0-9-]{1,32}$/,Nu=/^hive-\d+$/;function Se(e){if(typeof e!="string")return null;let t=e.trim().toLowerCase();return t.startsWith("#")&&(t=t.slice(1)),!Ku.test(t)||Nu.test(t)?null:t}function zw(e,t,r){let n=Se(r);return reactQuery.queryOptions({queryKey:u.accounts.checkFavoriteTag(e??"",n??""),enabled:!!e&&!!t&&n!==null,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");if(n===null)return false;let i=await h()(d.privateApiHost+"/private-api/favorite-tags-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,tag:n})});if(!i.ok)throw new Error(`[SDK][Accounts][FavoriteTags] \u2013 favorite-tags-check failed with status ${i.status}: ${i.statusText}`);let s=await i.json();if(typeof s!="boolean")throw new Error(`[SDK][Accounts][FavoriteTags] \u2013 favorite-tags-check returned invalid type: expected boolean, got ${typeof s}`);return s}})}function Zw(e,t){return reactQuery.queryOptions({enabled:!!e&&!!t,queryKey:u.accounts.recoveries(e),queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts] Missing username or access token");return (await h()(d.privateApiHost+"/private-api/recoveries",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function ob(e){return reactQuery.queryOptions({enabled:!!e,queryKey:u.accounts.pendingRecovery(e),queryFn:()=>y("database_api.find_change_recovery_account_requests",{accounts:[e]})})}function pb(e,t=50){return reactQuery.queryOptions({queryKey:u.accounts.reputations(e,t),enabled:!!e,queryFn:async()=>!e||!et(e)?[]:y("condenser_api.get_account_reputations",[e,t])})}var K=oe.operations,Qo={transfers:[K.transfer,K.transfer_to_savings,K.transfer_from_savings,K.cancel_transfer_from_savings,K.fill_transfer_from_savings,K.recurrent_transfer,K.fill_recurrent_transfer,K.escrow_transfer],"market-orders":[K.fill_convert_request,K.fill_order,K.fill_collateralized_convert_request,K.limit_order_create2,K.limit_order_create,K.limit_order_cancel],interests:[K.interest],"stake-operations":[K.return_vesting_delegation,K.withdraw_vesting,K.transfer_to_vesting,K.set_withdraw_vesting_route,K.update_proposal_votes,K.fill_vesting_withdraw,K.account_witness_proxy,K.delegate_vesting_shares],rewards:[K.author_reward,K.curation_reward,K.producer_reward,K.claim_reward_balance,K.comment_benefactor_reward,K.liquidity_reward,K.proposal_pay]},Vu=Array.from(new Set(Object.values(Qo).flat()));function ju(e){return e.block*1e7+e.trx_in_block*100+e.op_pos}function Lu(e){return e.replace(/_operation$/,"")}function $u(e){return typeof e=="object"&&e!==null&&"nai"in e&&"amount"in e&&"precision"in e}function Wu(e){if(!$u(e))return e;let t=T(e),r=$t[e.nai]??"UNKNOWN";return `${t.amount.toFixed(e.precision)} ${r}`}function Gu(e){let t={};for(let[r,n]of Object.entries(e))t[r]=Wu(n);return t}function _b(e,t=20,r=""){let n=r?Qo[r]:Vu;return reactQuery.infiniteQueryOptions({queryKey:u.accounts.transactions(e??"",r,t),initialPageParam:null,queryFn:async({pageParam:o,signal:i})=>{if(!e)return {entries:[],currentPage:0};let s=async m=>{let f={"account-name":e,"operation-types":n.join(","),"page-size":t};return m!==null&&(f.page=m),await te("hafah","/accounts/{account-name}/operations",f,void 0,void 0,i)},a=m=>m.operations_result.map(f=>{let g=Lu(f.op.type);return {...Gu(f.op.value),num:ju(f),type:g,timestamp:f.timestamp,trx_id:f.trx_id}}),c=await s(o),p=a(c),l=o??c.total_pages;if(o===null&&p.length1)try{let m=await s(c.total_pages-1);p=[...p,...a(m)],l=c.total_pages-1;}catch(m){if(i?.aborted)throw m}return {entries:p,currentPage:l}},getNextPageParam:o=>{let i=o.currentPage-1;return i>=1?i:void 0}})}function Ab(){return reactQuery.queryOptions({queryKey:u.accounts.bots(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/public/bots",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch bots: ${e.status}`);return e.json()},refetchOnMount:true,staleTime:1/0})}function Sb(e){return reactQuery.infiniteQueryOptions({queryKey:u.accounts.referrals(e),initialPageParam:{maxId:void 0},queryFn:async({pageParam:t})=>{let{maxId:r}=t??{},n=exports.ConfigManager.getValidatedBaseUrl(),o=new URL(`/private-api/referrals/${e}`,n);r!==void 0&&o.searchParams.set("max_id",r.toString());let i=await fetch(o.toString(),{method:"GET",headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`Failed to fetch referrals: ${i.status}`);return i.json()},getNextPageParam:t=>{let r=t?.[t.length-1]?.id;return typeof r=="number"?{maxId:r}:void 0}})}function kb(e){return reactQuery.queryOptions({queryKey:u.accounts.referralsStats(e),queryFn:async()=>{let t=await fetch(d.privateApiHost+`/private-api/referrals/${e}/stats`,{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch referral stats: ${t.status}`);let r=await t.json();if(!r)throw new Error("No Referrals for this user!");return {total:r.total??0,rewarded:r.rewarded??0}}})}function Kb(e,t,r){let{followType:n="blog",limit:o=100,enabled:i=true}=r??{};return reactQuery.infiniteQueryOptions({queryKey:u.accounts.friends(e,t,n,o),initialPageParam:{startFollowing:""},enabled:i,refetchOnMount:true,queryFn:async({pageParam:s})=>{let{startFollowing:a}=s,l=(await y(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,a===""?null:a,n,o])).map(g=>t==="following"?g.following:g.follower);return (await y("bridge.get_profiles",{accounts:l,observer:void 0})??[]).map(g=>({name:g.name,reputation:g.reputation,active:g.active}))},getNextPageParam:s=>s&&s.length===o?{startFollowing:s[s.length-1].name}:void 0})}var ec=30;function Ub(e,t,r){return reactQuery.queryOptions({queryKey:u.accounts.searchFriends(e,t,r),refetchOnMount:false,enabled:false,queryFn:async()=>{if(!r)return [];let n=r.slice(0,-1),s=(await y(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,n,"blog",1e3])).map(c=>t==="following"?c.following:c.follower).filter(c=>c.toLowerCase().includes(r.toLowerCase())).slice(0,ec);return (await y("bridge.get_profiles",{accounts:s,observer:void 0}))?.map(c=>({name:c.name,full_name:c.metadata.profile?.name||"",reputation:c.reputation,active:c.active}))??[]}})}function $b(e=20){return reactQuery.infiniteQueryOptions({queryKey:u.posts.trendingTags(),queryFn:async({pageParam:{afterTag:t}})=>y("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!n.name.startsWith("hive-")).map(n=>n.name)),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length>0?{afterTag:t[t.length-1]}:void 0,staleTime:3600*1e3})}function Xb(e=250){return reactQuery.infiniteQueryOptions({queryKey:u.posts.trendingTagsWithStats(e),queryFn:async({pageParam:{afterTag:t}})=>y("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!To(n.name))),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length?{afterTag:t[t.length-1].name}:void 0,staleTime:1/0})}function tt(e,t){return reactQuery.queryOptions({queryKey:u.posts.fragments(e),queryFn:async()=>t?(await h()(d.privateApiHost+"/private-api/fragments",{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json():[],enabled:!!e&&!!t})}function rv(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.posts.fragmentsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/fragments?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch fragments: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function sv(e="feed"){return reactQuery.queryOptions({queryKey:u.posts.promoted(e),queryFn:async()=>{let t=exports.ConfigManager.getValidatedBaseUrl(),r=new URL("/private-api/promoted-entries",t);return e==="waves"&&r.searchParams.append("short_content","1"),await(await h()(r.toString(),{method:"GET",headers:{"Content-Type":"application/json"}})).json()}})}function lv(e){return reactQuery.queryOptions({queryKey:u.posts.entryActiveVotes(e?.author,e?.permlink),queryFn:async()=>y("condenser_api.get_active_votes",[e?.author,e?.permlink]),enabled:!!e})}function yv(e,t,r){return reactQuery.queryOptions({queryKey:u.posts.userPostVote(e,t,r),queryFn:async()=>(await y("database_api.list_votes",{start:[e,t,r],limit:1,order:"by_voter_comment"}))?.votes?.[0]||null,enabled:!!e&&!!t&&!!r})}function vv(e,t){return reactQuery.queryOptions({queryKey:u.posts.content(e,t),enabled:!!e&&!!t,queryFn:async()=>y("condenser_api.get_content",[e,t])})}function Sv(e,t){return reactQuery.queryOptions({queryKey:u.posts.contentReplies(e,t),enabled:!!e&&!!t,queryFn:async()=>y("condenser_api.get_content_replies",{author:e,permlink:t})})}function Tv(e,t){return reactQuery.queryOptions({queryKey:u.posts.postHeader(e,t),queryFn:async()=>y("bridge.get_post_header",{author:e,permlink:t}),initialData:null})}function ne(e){return Array.isArray(e)?e.map(t=>Uo(t)):Uo(e)}function Uo(e){if(!e)return e;let t=`@${e.author}/${e.permlink}`;return d.dmcaPatterns.includes(t)||d.dmcaPatternRegexes.some(n=>n.test(t))?{...e,body:"This post is not available due to a copyright/fraudulent claim.",title:""}:e}async function Ho(e,t,r){try{let n=await Ht("bridge.get_post",{author:e,permlink:t,observer:r},1);if(n&&typeof n=="object"&&n.author===e&&n.permlink===t)return n}catch{}return null}function Vo(e,t,r="",n){let o=t?.trim(),i=`/@${e}/${o??""}`;return reactQuery.queryOptions({queryKey:u.posts.entry(i),queryFn:async()=>{if(!o||o==="undefined")return null;let s=await y("bridge.get_post",{author:e,permlink:o,observer:r});if(!s){let c=await Ho(e,o,r);if(!c)return null;let p=n!==void 0?{...c,num:n}:c;return ne(p)}let a=n!==void 0?{...s,num:n}:s;return ne(a)},enabled:!!e&&!!t&&t.trim()!==""&&t.trim()!=="undefined"})}function ae(e,t,r){return y(`bridge.${e}`,t,void 0,void 0,r)}async function jo(e,t,r,n){let{json_metadata:o}=e;if(o?.original_author&&o?.original_permlink&&o.tags?.[0]==="cross-post")try{let i=await dc(o.original_author,o.original_permlink,t,r,n);return i?{...e,original_entry:i,num:r}:e}catch{return e}return {...e,num:r}}async function Lo(e,t,r){let n=e.map(ht),o=await Promise.all(n.map(i=>jo(i,t,void 0,r)));return ne(o)}async function $o(e,t="",r="",n=20,o="",i="",s){let a=await ae("get_ranked_posts",{sort:e,start_author:t,start_permlink:r,limit:n,tag:o,observer:i},s);return Array.isArray(a)?Lo(a,i,s):(a!=null&&console.warn(`[SDK] get_ranked_posts returned ${typeof a} instead of an array for sort=${e}; treating as no results.`),null)}async function Mr(e,t,r="",n="",o=20,i="",s){if(d.dmcaAccounts.includes(t))return [];let a=await ae("get_account_posts",{sort:e,account:t,start_author:r,start_permlink:n,limit:o,observer:i},s);return Array.isArray(a)?Lo(a,i,s):(a!=null&&console.warn(`[SDK] get_account_posts returned ${typeof a} instead of an array for account=${t}, sort=${e}; treating as no results.`),null)}function ht(e){let t={...e,active_votes:Array.isArray(e.active_votes)?[...e.active_votes]:[],beneficiaries:Array.isArray(e.beneficiaries)?[...e.beneficiaries]:[],blacklists:Array.isArray(e.blacklists)?[...e.blacklists]:[],replies:Array.isArray(e.replies)?[...e.replies]:[],stats:e.stats?{...e.stats}:null},r=["author","title","body","created","category","permlink","url","updated"];for(let n of r)t[n]==null&&(t[n]="");return t.author_reputation==null&&(t.author_reputation=0),t.children==null&&(t.children=0),t.depth==null&&(t.depth=0),t.net_rshares==null&&(t.net_rshares=0),t.payout==null&&(t.payout=0),t.percent_hbd==null&&(t.percent_hbd=0),t.stats||(t.stats={flag_weight:0,gray:false,hide:false,total_votes:0}),t.author_payout_value==null&&(t.author_payout_value="0.000 HBD"),t.curator_payout_value==null&&(t.curator_payout_value="0.000 HBD"),t.max_accepted_payout==null&&(t.max_accepted_payout="1000000.000 HBD"),t.payout_at==null&&(t.payout_at=""),t.pending_payout_value==null&&(t.pending_payout_value="0.000 HBD"),t.promoted==null&&(t.promoted="0.000 HBD"),t.is_paidout==null&&(t.is_paidout=false),t}async function dc(e="",t="",r="",n,o){let i=await ae("get_post",{author:e,permlink:t,observer:r},o);if(i){let s=ht(i),a=await jo(s,r,n,o);return ne(a)}}async function $v(e="",t=""){let r=await ae("get_post_header",{author:e,permlink:t});return r&&ht(r)}async function Wo(e,t,r){let n=await ae("get_discussion",{author:e,permlink:t,observer:r||e});if(n){let o={};for(let[i,s]of Object.entries(n))o[i]=ht(s);return o}return n}async function Go(e,t=""){return ae("get_community",{name:e,observer:t})}async function Wv(e="",t=100,r,n="rank",o=""){return ae("list_communities",{last:e,limit:t,query:r,sort:n,observer:o})}async function zo(e){let t=await ae("normalize_post",{post:e});return t&&ht(t)}async function Gv(e){return ae("list_all_subscriptions",{account:e})}async function zv(e){return ae("list_subscribers",{community:e})}async function Jv(e,t){return ae("get_relationship_between_accounts",[e,t])}async function zt(e,t){return ae("get_profiles",{accounts:e,observer:t})}var Yo=(o=>(o.trending="trending",o.author_reputation="author_reputation",o.votes="votes",o.created="created",o))(Yo||{});function Br(e){let t=e.match(/^(\d+\.?\d*)\s*([A-Z]+)$/);return t?{amount:parseFloat(t[1]),symbol:t[2]}:{amount:0,symbol:""}}function mc(e,t,r){let n=l=>Br(l.pending_payout_value).amount+Br(l.author_payout_value).amount+Br(l.curator_payout_value).amount,o=l=>l.net_rshares<0,i=l=>e.json_metadata?.pinned_reply===`${l.author}/${l.permlink}`,s={trending:(l,m)=>{if(o(l))return 1;if(o(m))return -1;let f=n(l),g=n(m);return f!==g?g-f:0},author_reputation:(l,m)=>{let f=l.author_reputation,g=m.author_reputation;return f>g?-1:f{let f=l.children,g=m.children;return f>g?-1:f{if(o(l))return 1;if(o(m))return -1;let f=Date.parse(l.created),g=Date.parse(m.created);return f>g?-1:fi(l)),p=a[c];return c>=0&&(a.splice(c,1),a.unshift(p)),a}function Xo(e,t="created",r=true,n){let o=n||d.defaultObserver;return reactQuery.queryOptions({queryKey:u.posts.discussions(e?.author,e?.permlink,t,o),queryFn:async()=>{if(!e)return [];let i=await y("bridge.get_discussion",{author:e.author,permlink:e.permlink,observer:o}),s=i?Array.from(Object.values(i)):[];return ne(s)},enabled:r&&!!e,select:i=>mc(e,i,t),structuralSharing:(i,s)=>{if(!i||!s)return s;let a=i.filter(l=>l.is_optimistic===true),c=new Set(s.map(l=>`${l.author}/${l.permlink}`)),p=a.filter(l=>!c.has(`${l.author}/${l.permlink}`));return p.length>0?[...s,...p]:s}})}function nA(e,t,r,n=true){let o=r||d.defaultObserver;return reactQuery.queryOptions({queryKey:u.posts.discussion(e,t,o),enabled:n&&!!e&&!!t,queryFn:async()=>Wo(e,t,o)})}function pA(e,t="posts",r=20,n="",o=true){return reactQuery.infiniteQueryOptions({queryKey:u.posts.accountPosts(e??"",t,r,n),enabled:!!e&&o,initialPageParam:{author:void 0,permlink:void 0,hasNextPage:true},queryFn:async({pageParam:i,signal:s})=>{if(!i?.hasNextPage||!e)return [];let a=await Mr(t,e,i.author??"",i.permlink??"",r,n,s);return ne(a??[])},getNextPageParam:i=>{let s=i?.[i.length-1],a=(i?.length??0)===r;if(a)return {author:s?.author,permlink:s?.permlink,hasNextPage:a}}})}function lA(e,t="posts",r="",n="",o=20,i="",s=true){return reactQuery.queryOptions({queryKey:u.posts.accountPostsPage(e??"",t,r,n,o,i),enabled:!!e&&s,queryFn:async({signal:a}={})=>{if(!e)return [];let c=await Mr(t,e,r,n,o,i,a);return ne(c??[])}})}var Zo=new Map;function _c(e){let t=Zo.get(e);return t||(t=r=>({...r,pages:r.pages.map(n=>wc(n,e))}),Zo.set(e,t)),t}function wc(e,t){let r=e.filter(i=>i.stats?.is_pinned),n=e.filter(i=>!i.stats?.is_pinned);if(t==="hot")return [...r,...n];let o=[...n].sort((i,s)=>new Date(s.created).getTime()-new Date(i.created).getTime());return [...r,...o]}function wA(e,t,r=20,n="",o=true,i={}){return reactQuery.infiniteQueryOptions({queryKey:u.posts.postsRanked(e,t,r,n),queryFn:async({pageParam:s,signal:a})=>{let c=t;d.dmcaTagRegexes.some(l=>l.test(t))&&(c="");let p=await y("bridge.get_ranked_posts",{sort:e,start_author:s.author,start_permlink:s.permlink,limit:r,tag:c,observer:n},void 0,void 0,a);if(p==null)return [];if(!Array.isArray(p))throw new Error(`[SDK] get_ranked_posts returned ${typeof p} for sort=${e}`);return ne(p)},select:_c(e),enabled:o,initialPageParam:{author:void 0,permlink:void 0},getNextPageParam:s=>{let a=s?.[s.length-1];if(a)return {author:a.author,permlink:a.permlink}}})}function bA(e,t="",r="",n=20,o="",i="",s=true){return reactQuery.queryOptions({queryKey:u.posts.postsRankedPage(e,t,r,n,o,i),enabled:s,queryFn:async({signal:a}={})=>{let c=o;d.dmcaTagRegexes.some(l=>l.test(o))&&(c="");let p=await $o(e,t,r,n,c,i,a);return ne(p??[])}})}function OA(e,t,r=200){return reactQuery.queryOptions({queryKey:u.posts.reblogs(e??"",r),queryFn:async()=>(await y("condenser_api.get_blog_entries",[e??t,0,r])).filter(o=>o.author!==t&&!o.reblogged_on.startsWith("1970-")).map(o=>({author:o.author,permlink:o.permlink})),enabled:!!e})}function kA(e,t){return reactQuery.queryOptions({queryKey:u.posts.rebloggedBy(e??"",t??""),queryFn:async()=>{if(!e||!t)return [];let r=await y("condenser_api.get_reblogged_by",[e,t]);return Array.isArray(r)?r:[]},enabled:!!e&&!!t})}function IA(e,t){return reactQuery.queryOptions({queryKey:u.posts.schedules(e),queryFn:async()=>{if(!e||!t)return [];let n=await h()(d.privateApiHost+"/private-api/schedules",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch schedules: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function DA(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.posts.schedulesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/schedules?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch schedules: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function BA(e,t){return reactQuery.queryOptions({queryKey:u.posts.drafts(e),queryFn:async()=>{if(!e||!t)return [];let n=await h()(d.privateApiHost+"/private-api/drafts",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch drafts: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function QA(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.posts.draftsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/drafts?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch drafts: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}async function ti(e){let r=await h()(d.privateApiHost+"/private-api/images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch images: ${r.status}`);return r.json()}function jA(e,t){return reactQuery.queryOptions({queryKey:u.posts.images(e),queryFn:async()=>!e||!t?[]:ti(t),enabled:!!e&&!!t})}function LA(e,t){return reactQuery.queryOptions({queryKey:u.posts.galleryImages(e),queryFn:async()=>!e||!t?[]:ti(t),enabled:!!e&&!!t})}function $A(e,t,r=10){return reactQuery.infiniteQueryOptions({queryKey:u.posts.imagesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/images?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch images: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function JA(e,t,r=false){return reactQuery.queryOptions({queryKey:u.posts.commentHistory(e,t,r),queryFn:async({signal:n})=>{let o=await fetch(d.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:t,onlyMeta:r?"1":""}),signal:n});if(!o.ok)throw new Error(`Failed to fetch comment history: ${o.status}`);return o.json()},enabled:!!e&&!!t})}function Rc(e,t){let r=e?.trim(),n=t?.trim();if(!r||!n)throw new Error("Invalid entry path: author and permlink are required");let o=r.replace(/^@+/,""),i=n.replace(/^\/+/,"");if(!o||!i)throw new Error("Invalid entry path: author and permlink cannot be empty after normalization");return `@${o}/${i}`}function eP(e,t){let r=t?.trim(),n=e?.trim(),o=!!n&&!!r&&r!=="undefined",i=o?Rc(n,r):"";return reactQuery.queryOptions({queryKey:u.posts.deletedEntry(i),queryFn:async({signal:s})=>{let a=await fetch(d.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:r||""}),signal:s});if(!a.ok)throw new Error(`Failed to fetch comment history: ${a.status}`);return a.json()},select:s=>{if(!s?.list?.[0])return null;let{body:a,title:c,tags:p}=s.list[0];return {body:a,title:c,tags:p}},enabled:o})}function oP(e,t,r=true){return reactQuery.queryOptions({queryKey:u.posts.tips(e,t),queryFn:async()=>{let n=`/private-api/post-tips/${encodeURIComponent(e)}/${encodeURIComponent(t)}`,o=await fetch(d.privateApiHost+n,{method:"GET",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch post tips: ${o.status}`);return o.json()},enabled:!!e&&!!t&&r,staleTime:60*1e3})}function Tc(e,t){return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,host:t}}function Fc(e){return {...e,id:e.id??e.post_id}}function _e(e,t){if(!e)return null;let r=e.container??e,n=Tc(r,t),o=e.parent?Fc(e.parent):void 0;return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,max_accepted_payout:e.max_accepted_payout||"1000000.000 HBD",pending_payout_value:e.pending_payout_value||"0.000 HBD",author_payout_value:e.author_payout_value||"0.000 HBD",curator_payout_value:e.curator_payout_value||"0.000 HBD",host:t,container:n,parent:o}}function qc(e){return Array.isArray(e)?e:[]}async function ri(e){let t=Xo(e,"created",true),r=await d.queryClient.fetchQuery(t),n=qc(r);if(n.length<=1)return [];let o=n.filter(({parent_author:s,parent_permlink:a})=>s===e.author&&a===e.permlink);return o.length===0?[]:o.filter(s=>!s.stats?.gray)}function ni(e,t,r){return e.length===0?[]:e.map(n=>{let o=e.find(i=>i.author===n.parent_author&&i.permlink===n.parent_permlink&&i.author!==r);return {...n,id:n.post_id,host:r,container:t,parent:o}}).filter(n=>n.container.post_id!==n.post_id).sort((n,o)=>new Date(o.created).getTime()-new Date(n.created).getTime())}var Kc=20;function oi(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,following:e.following?.trim().toLowerCase()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Kc}}async function ii({containers:e,tag:t,following:r,author:n,observer:o,limit:i},s,a){let c=exports.ConfigManager.getValidatedBaseUrl(),p=new URL("/private-api/waves/feed",c);p.searchParams.set("limit",String(i)),s&&p.searchParams.set("cursor",s),e.forEach(f=>p.searchParams.append("container",f)),t&&p.searchParams.set("tag",t),r&&p.searchParams.set("following",r),n&&p.searchParams.set("author",n),o&&p.searchParams.set("observer",o);let l=await fetch(p.toString(),{method:"GET",signal:a});if(!l.ok)throw new Error(`Failed to fetch waves feed: ${l.status}`);let m=await l.json();return !Array.isArray(m)||m.length===0?[]:m.map(f=>{let g=_e(f,f.host??"");return g?{...g,_cursor:f._cursor}:null}).filter(f=>!!f)}function dP(e={}){let t=oi(e),{containers:r,tag:n,following:o,author:i,observer:s,limit:a}=t;return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesFeed({containers:r,tag:n,following:o,author:i,observer:s,limit:a}),initialPageParam:void 0,queryFn:({pageParam:c,signal:p})=>ii(t,c,p),getNextPageParam:c=>{if(!(c.lengthii(t,void 0,c)})}var Mc=20;function Bc(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Mc}}async function Qc({containers:e,tag:t,author:r,observer:n,limit:o},i,s){let a=exports.ConfigManager.getValidatedBaseUrl(),c=new URL("/private-api/waves/shorts",a);c.searchParams.set("limit",String(o)),i&&c.searchParams.set("cursor",i),e.forEach(m=>c.searchParams.append("container",m)),t&&c.searchParams.set("tag",t),r&&c.searchParams.set("author",r),n&&c.searchParams.set("observer",n);let p=await fetch(c.toString(),{method:"GET",signal:s});if(!p.ok)throw new Error(`Failed to fetch shorts feed: ${p.status}`);let l=await p.json();return !Array.isArray(l)||l.length===0?[]:l.map(m=>{let f=_e(m,m.host??"");return f?{...f,active_votes:f.active_votes??[],video:m.video,_cursor:m._cursor}:null}).filter(m=>!!m)}function _P(e={}){let t=Bc(e),{containers:r,tag:n,author:o,observer:i,limit:s}=t;return reactQuery.infiniteQueryOptions({queryKey:u.posts.shortsFeed({containers:r,tag:n,author:o,observer:i,limit:s}),initialPageParam:void 0,queryFn:({pageParam:a,signal:c})=>Qc(t,a,c),getNextPageParam:a=>{if(!(a.length(l.id=l.post_id,l.host=e,l));for(let l of c){if(i&&l.post_id===i){i=void 0;continue}if(o+=1,l.stats?.gray){r=l.author,n=l.permlink;continue}let m;try{m=await ri(l);}catch(f){console.error("[SDK] getThreads get_discussion error:",f),r=l.author,n=l.permlink;continue}if(m.length===0){r=l.author,n=l.permlink;continue}return {entries:ni(m,l,e)}}let p=c[c.length-1];if(!p)return null;r=p.author,n=p.permlink;}return null}function OP(e){return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesByHost(e),initialPageParam:void 0,queryFn:async({pageParam:t})=>{let r=await jc(e,t);return r?r.entries:[]},getNextPageParam:t=>t?.[0]?.container})}var $c=40;function kP(e,t,r=$c){return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesByTag(e,t),initialPageParam:void 0,queryFn:async({signal:n})=>{try{let o=exports.ConfigManager.getValidatedBaseUrl(),i=new URL("/private-api/waves/tags",o);i.searchParams.set("container",e),i.searchParams.set("tag",t);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves by tag: ${s.status}`);return (await s.json()).slice(0,r).map(p=>_e(p,e)).filter(p=>!!p).sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves by tag",o),[]}},getNextPageParam:()=>{}})}function DP(e,t){let r=t?.trim().toLowerCase();return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesFollowing(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=exports.ConfigManager.getValidatedBaseUrl(),i=new URL("/private-api/waves/following",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves following feed: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let c=a.map(p=>_e(p,e)).filter(p=>!!p);return c.length===0?[]:c.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves following feed",o),[]}},getNextPageParam:()=>{}})}function BP(e,t=24){let r=e?.trim()||void 0;return reactQuery.queryOptions({queryKey:u.posts.wavesTrendingTags(r??"",t),queryFn:async({signal:n})=>{try{let o=exports.ConfigManager.getValidatedBaseUrl(),i=new URL("/private-api/waves/trending/tags",o);r&&i.searchParams.set("container",r),i.searchParams.set("hours",t.toString());let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves trending tags: ${s.status}`);return (await s.json()).map(({tag:c,posts:p})=>({tag:c,posts:p}))}catch(o){return console.error("[SDK] Failed to fetch waves trending tags",o),[]}}})}function jP(e,t){let r=t?.trim().toLowerCase();return reactQuery.infiniteQueryOptions({queryKey:u.posts.wavesByAccount(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=exports.ConfigManager.getValidatedBaseUrl(),i=new URL("/private-api/waves/account",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves for account: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let c=a.map(p=>_e(p,e)).filter(p=>!!p);return c.length===0?[]:c.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){throw console.error("[SDK] Failed to fetch waves for account",o),o}},getNextPageParam:()=>{}})}function GP(e){return reactQuery.queryOptions({queryKey:u.posts.wavesTrendingAuthors(e),queryFn:async({signal:t})=>{try{let r=exports.ConfigManager.getValidatedBaseUrl(),n=new URL("/private-api/waves/trending/authors",r);n.searchParams.set("container",e);let o=await fetch(n.toString(),{method:"GET",signal:t});if(!o.ok)throw new Error(`Failed to fetch waves trending authors: ${o.status}`);return (await o.json()).map(({author:s,posts:a})=>({author:s,posts:a}))}catch(r){throw console.error("[SDK] Failed to fetch waves trending authors",r),r}}})}function ZP(e,t=true){return reactQuery.queryOptions({queryKey:u.posts.normalize(e?.author??"",e?.permlink??""),enabled:t&&!!e,queryFn:async()=>zo(e)})}function Zc(e){return !!e&&typeof e=="object"&&"author"in e&&"permlink"in e&&"active_votes"in e}function si(e){let t=new Date(e);return (new Date().getTime()-t.getTime())/(1e3*60*60*24)}function a0(e,t){let{limit:r=20,filters:n=[],dayLimit:o=7}=t??{};return reactQuery.infiniteQueryOptions({queryKey:u.accounts.voteHistory(e,r),initialPageParam:{start:-1},queryFn:async({pageParam:i})=>{let{start:s}=i,a=await y("condenser_api.get_account_history",[e,s,r,...n]),p=a.map(([f,g])=>({...g.op[1],num:f,timestamp:g.timestamp})).filter(f=>f.voter===e&&f.weight!==0&&si(f.timestamp)<=o),l=[];for(let f of p){let g=await d.queryClient.fetchQuery(Vo(f.author,f.permlink));Zc(g)&&l.push(g);}let[m]=a;return {lastDate:m?si(m[1].timestamp):0,lastItemFetched:m?m[0]:s,entries:l}},getNextPageParam:i=>({start:i.lastItemFetched})})}function d0(e,t,r=true){return reactQuery.queryOptions({queryKey:u.accounts.profiles(e,t??""),enabled:r&&e.length>0,queryFn:async()=>zt(e,t)})}function _0(e,t="HIVE",r=200){return reactQuery.infiniteQueryOptions({queryKey:u.wallet.balanceHistory(e??"",t,r),initialPageParam:null,queryFn:async({pageParam:n,signal:o})=>{if(!e)return {entries:[],currentPage:0};let i={"account-name":e,"coin-type":t,"page-size":r,direction:"desc"};n!==null&&(i.page=n);let s=await te("balance","/accounts/{account-name}/balance-history",i,void 0,void 0,o);return {entries:s.operations_result,currentPage:n??s.total_pages}},getNextPageParam:n=>{let o=n.currentPage-1;return o>=1?o:void 0},enabled:!!e})}function P0(e,t="HIVE",r="yearly"){return reactQuery.queryOptions({queryKey:u.wallet.aggregatedHistory(e??"",t,r),queryFn:async()=>e?await te("balance","/accounts/{account-name}/aggregated-history",{"account-name":e,"coin-type":t,granularity:r}):[],enabled:!!e,staleTime:6e4})}function C0(){return reactQuery.queryOptions({queryKey:u.accounts.proMembers(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/pro-members",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch pro members: ${e.status}`);return e.json()},staleTime:300*1e3})}function E0(e){return new Set((e??[]).map(t=>t.toLowerCase()))}function I0(e,t,r){let n=reactQuery.useQueryClient(),{data:o}=reactQuery.useQuery(M(e));return v(["accounts","update"],e,i=>{let s=Ko(n.getQueryData(M(e).queryKey),o);if(!s)throw new Error("[SDK][Accounts] \u2013 cannot update not existing account");return [["account_update2",{account:e,json_metadata:"",extensions:[],posting_json_metadata:No({existingPostingJsonMetadata:s.posting_json_metadata,profile:i.profile,tokens:i.tokens})}]]},async(i,s)=>{n.setQueryData(M(e).queryKey,a=>{if(!a)return a;let c=JSON.parse(JSON.stringify(a));return c.profile=Nr({existingProfile:Do(a),profile:s.profile,tokens:s.tokens}),c}),await S(t?.adapter,r,[u.accounts.full(e)]);},t,void 0,{broadcastMode:r,onMutate:async()=>{if(e)try{await n.fetchQuery({...M(e),staleTime:0});}catch{}}})}function B0(e,t,r,n,o){return reactQuery.useMutation({mutationKey:["accounts","relation","update",e,t],mutationFn:async i=>{let s=Bo(e,t);await w().prefetchQuery(s);let a=w().getQueryData(s.queryKey);return await Eo(e,"follow",["follow",{follower:e,following:t,what:[...i==="toggle-ignore"&&!a?.ignores?["ignore"]:[],...i==="toggle-follow"&&!a?.follows?["blog"]:[]]}],r),{...a,ignores:i==="toggle-ignore"?!a?.ignores:a?.ignores,follows:i==="toggle-follow"?!a?.follows:a?.follows}},onError:o,onSuccess(i){n(i),w().setQueryData(u.accounts.relations(e,t),i),t&&w().invalidateQueries(M(t));}})}function Qr(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildVoteOp] Missing required parameters");if(n<-1e4||n>1e4)throw new Error("[SDK][buildVoteOp] Weight must be between -10000 and 10000");return ["vote",{voter:e,author:t,permlink:r,weight:n}]}function Ve(e,t,r,n,o,i,s){let a=[];if(e||a.push("author"),t||a.push("permlink"),n===void 0&&a.push("parentPermlink"),i||a.push("body"),a.length>0)throw new Error(`[SDK][buildCommentOp] Missing required parameters: ${a.join(", ")}`);return ["comment",{parent_author:r,parent_permlink:n,author:e,permlink:t,title:o,body:i,json_metadata:JSON.stringify(s)}]}function je(e,t,r,n,o,i,s){if(!e||!t)throw new Error("[SDK][buildCommentOptionsOp] Missing required parameters");return ["comment_options",{author:e,permlink:t,max_accepted_payout:r,percent_hbd:n,allow_votes:o,allow_curation_rewards:i,extensions:s}]}function Ur(e,t){if(!e||!t)throw new Error("[SDK][buildDeleteCommentOp] Missing required parameters");return ["delete_comment",{author:e,permlink:t}]}function Hr(e,t,r,n=false){if(!e||!t||!r)throw new Error("[SDK][buildReblogOp] Missing required parameters");let o={account:e,author:t,permlink:r};return n&&(o.delete="delete"),["custom_json",{id:"follow",json:JSON.stringify(["reblog",o]),required_auths:[],required_posting_auths:[e]}]}function Le(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferOp] Missing required parameters");return ["transfer",{from:e,to:t,amount:r,memo:n||""}]}function ap(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiTransferOps] Missing required parameters");return t.trim().split(/[\s,]+/).filter(Boolean).map(i=>Le(e,i.trim(),r,n))}function up(e,t,r,n,o,i){if(!e||!t||!r)throw new Error("[SDK][buildRecurrentTransferOp] Missing required parameters");if(o<24)throw new Error("[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours");return ["recurrent_transfer",{from:e,to:t,amount:r,memo:n||"",recurrence:o,executions:i,extensions:[]}]}function rt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferToSavingsOp] Missing required parameters");return ["transfer_to_savings",{from:e,to:t,amount:r,memo:n||""}]}function $e(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildTransferFromSavingsOp] Missing required parameters");return ["transfer_from_savings",{from:e,to:t,amount:r,memo:n||"",request_id:o}]}function ai(e,t){if(!e||t===void 0)throw new Error("[SDK][buildCancelTransferFromSavingsOp] Missing required parameters");return ["cancel_transfer_from_savings",{from:e,request_id:t}]}function _t(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildClaimInterestOps] Missing required parameters");return [$e(e,t,r,n,o),ai(e,o)]}function wt(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildTransferToVestingOp] Missing required parameters");return ["transfer_to_vesting",{from:e,to:t,amount:r}]}function bt(e,t){if(!e||!t)throw new Error("[SDK][buildWithdrawVestingOp] Missing required parameters");return ["withdraw_vesting",{account:e,vesting_shares:t}]}function vt(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildDelegateVestingSharesOp] Missing required parameters");return ["delegate_vesting_shares",{delegator:e,delegatee:t,vesting_shares:r}]}function At(e,t,r,n){if(!e||!t||r===void 0)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters");if(r<0||r>1e4)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000");return ["set_withdraw_vesting_route",{from_account:e,to_account:t,percent:r,auto_vest:n}]}function Pt(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildConvertOp] Missing required parameters");return ["convert",{owner:e,amount:t,requestid:r}]}function Vr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildCollateralizedConvertOp] Missing required parameters");return ["collateralized_convert",{owner:e,amount:t,requestid:r}]}function We(e,t,r,n="tokens"){return ["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:JSON.stringify({contractName:n,contractAction:t,contractPayload:r})}]}function jr(e,t){return ["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:JSON.stringify(t.map(r=>({symbol:r})))}]}function Lr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildDelegateRcOp] Missing required parameters");let n=t.includes(",")?t.split(",").map(o=>o.trim()):[t];return ["custom_json",{id:"rc",json:JSON.stringify(["delegate_rc",{from:e,delegatees:n,max_rc:r}]),required_auths:[],required_posting_auths:[e]}]}function $r(e,t){if(!e||!t)throw new Error("[SDK][buildFollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["blog"]}]),required_auths:[],required_posting_auths:[e]}]}function Jt(e,t){if(!e||!t)throw new Error("[SDK][buildUnfollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:[]}]),required_auths:[],required_posting_auths:[e]}]}function cp(e,t){if(!e||!t)throw new Error("[SDK][buildIgnoreOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["ignore"]}]),required_auths:[],required_posting_auths:[e]}]}function pp(e,t){if(!e||!t)throw new Error("[SDK][buildUnignoreOp] Missing required parameters");return Jt(e,t)}function Wr(e,t){if(!e)throw new Error("[SDK][buildSetLastReadOps] Missing required parameters");let r=t||new Date().toISOString().split(".")[0],n=["custom_json",{id:"notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}],o=["custom_json",{id:"ecency_notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}];return [n,o]}function Gr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildWitnessVoteOp] Missing required parameters");return ["account_witness_vote",{account:e,witness:t,approve:r}]}function zr(e,t){if(!e||t===void 0)throw new Error("[SDK][buildWitnessProxyOp] Missing required parameters");return ["account_witness_proxy",{account:e,proxy:t}]}function Jr(e,t){if(!e||!t.receiver||!t.subject||!t.permlink||!t.start||!t.end||!t.dailyPay)throw new Error("[SDK][buildProposalCreateOp] Missing required parameters");let r=new Date(t.start),n=new Date(t.end);if(r.toString()==="Invalid Date"||n.toString()==="Invalid Date")throw new Error("[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings");return ["create_proposal",{creator:e,receiver:t.receiver,start_date:t.start,end_date:t.end,daily_pay:t.dailyPay,subject:t.subject,permlink:t.permlink,extensions:[]}]}function Yr(e,t,r){if(!e||!t||t.length===0||r===void 0)throw new Error("[SDK][buildProposalVoteOp] Missing required parameters");return ["update_proposal_votes",{voter:e,proposal_ids:t,approve:r,extensions:[]}]}function lp(e,t){if(!e||!t||t.length===0)throw new Error("[SDK][buildRemoveProposalOp] Missing required parameters");return ["remove_proposal",{proposal_owner:e,proposal_ids:t,extensions:[]}]}function dp(e,t,r,n,o){if(e==null||typeof e!="number"||!t||!r||!n||!o)throw new Error("[SDK][buildUpdateProposalOp] Missing required parameters");return ["update_proposal",{proposal_id:e,creator:t,daily_pay:r,subject:n,permlink:o,extensions:[]}]}function Xr(e,t){if(!e||!t)throw new Error("[SDK][buildSubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["subscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function Zr(e,t){if(!e||!t)throw new Error("[SDK][buildUnsubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["unsubscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function en(e,t,r,n){if(!e||!t||!r||!n)throw new Error(`[SDK][buildSetRoleOp] Missing required parameters: username=${e}, community=${t}, account=${r}, role=${n}`);return ["custom_json",{id:"community",json:JSON.stringify(["setRole",{community:t,account:r,role:n}]),required_auths:[],required_posting_auths:[e]}]}function tn(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildUpdateCommunityOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["updateProps",{community:t,props:r}]),required_auths:[],required_posting_auths:[e]}]}function rn(e,t,r,n,o){if(!e||!t||!r||!n||o===void 0)throw new Error("[SDK][buildPinPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"pinPost":"unpinPost",{community:t,account:r,permlink:n}]),required_auths:[],required_posting_auths:[e]}]}function nn(e,t,r,n,o,i){if(!e||!t||!r||!n||i===void 0)throw new Error("[SDK][buildMutePostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([i?"mutePost":"unmutePost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}function mp(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildMuteUserOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"muteUser":"unmuteUser",{community:t,account:r,notes:n}]),required_auths:[],required_posting_auths:[e]}]}function fp(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildFlagPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["flagPost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}var ui=(r=>(r.Buy="buy",r.Sell="sell",r))(ui||{}),ci=(r=>(r.EMPTY="",r.SWAP="9",r))(ci||{});function Xt(e,t,r,n,o,i){if(!e||!t||!r||!o||i===void 0)throw new Error("[SDK][buildLimitOrderCreateOp] Missing required parameters");return ["limit_order_create",{owner:e,orderid:i,amount_to_sell:t,min_to_receive:r,fill_or_kill:n,expiration:o}]}function Yt(e,t=3){return e.toFixed(t)}function gp(e,t,r,n,o=""){if(!e||n===void 0||!Number.isFinite(t)||t<=0||!Number.isFinite(r)||r<=0)throw new Error("[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters");let i=new Date(Date.now());i.setDate(i.getDate()+27);let s=i.toISOString().split(".")[0],a=+`${o}${Math.floor(Date.now()/1e3).toString().slice(2)}`,c=n==="buy"?`${Yt(t,3)} HBD`:`${Yt(t,3)} HIVE`,p=n==="buy"?`${Yt(r,3)} HIVE`:`${Yt(r,3)} HBD`;return Xt(e,c,p,false,s,a)}function on(e,t){if(!e||t===void 0)throw new Error("[SDK][buildLimitOrderCancelOp] Missing required parameters");return ["limit_order_cancel",{owner:e,orderid:t}]}function sn(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildClaimRewardBalanceOp] Missing required parameters");return ["claim_reward_balance",{account:e,reward_hive:t,reward_hbd:r,reward_vests:n}]}function yp(e,t,r,n,o,i){if(!e||!o)throw new Error("[SDK][buildAccountUpdateOp] Missing required parameters");return ["account_update",{account:e,owner:t,active:r,posting:n,memo_key:o,json_metadata:i}]}function hp(e,t,r,n){if(!e||r===void 0)throw new Error("[SDK][buildAccountUpdate2Op] Missing required parameters");return ["account_update2",{account:e,json_metadata:t||"",posting_json_metadata:r,extensions:n||[]}]}function an(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildAccountCreateOp] Missing required parameters");let o={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},i={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},s={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["account_create",{creator:e,new_account_name:t,owner:o,active:i,posting:s,memo_key:r.memoPublicKey,json_metadata:"",fee:n}]}function un(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCreateClaimedAccountOp] Missing required parameters");let n={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},o={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},i={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["create_claimed_account",{creator:e,new_account_name:t,owner:n,active:o,posting:i,memo_key:r.memoPublicKey,json_metadata:"",extensions:[]}]}function cn(e,t){if(!e||!t)throw new Error("[SDK][buildClaimAccountOp] Missing required parameters");return ["claim_account",{creator:e,fee:t,extensions:[]}]}function pn(e,t,r,n,o,i){if(!e||!t||!r||!o)throw new Error("[SDK][buildGrantPostingPermissionOp] Missing required parameters");let s=t.account_auths.findIndex(([p])=>p===r),a=[...t.account_auths];s>=0?a[s]=[r,n]:a.push([r,n]);let c={...t,account_auths:a};return c.account_auths.sort((p,l)=>p[0]>l[0]?1:-1),["account_update",{account:e,posting:c,memo_key:o,json_metadata:i}]}function _p(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildRevokePostingPermissionOp] Missing required parameters");let i={...t,account_auths:t.account_auths.filter(([s])=>s!==r)};return ["account_update",{account:e,posting:i,memo_key:n,json_metadata:o}]}function wp(e,t,r=[]){if(!e||!t)throw new Error("[SDK][buildChangeRecoveryAccountOp] Missing required parameters");return ["change_recovery_account",{account_to_recover:e,new_recovery_account:t,extensions:r}]}function bp(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRequestAccountRecoveryOp] Missing required parameters");return ["request_account_recovery",{recovery_account:e,account_to_recover:t,new_owner_authority:r,extensions:n}]}function vp(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRecoverAccountOp] Missing required parameters");return ["recover_account",{account_to_recover:e,new_owner_authority:t,recent_owner_authority:r,extensions:n}]}function ln(e,t,r){if(!e||!t||!Number.isFinite(r))throw new Error("[SDK][buildBoostPlusOp] Missing required parameters");return ["custom_json",{id:"ecency_boost_plus",json:JSON.stringify({user:e,account:t,duration:r}),required_auths:[e],required_posting_auths:[]}]}function dn(e,t){if(!e||!Number.isInteger(t)||t<=0)throw new Error("[SDK][buildRcDelegationOp] Missing or invalid parameters");return ["custom_json",{id:"ecency_rc_delegation",json:JSON.stringify({user:e,duration:t}),required_auths:[e],required_posting_auths:[]}]}function mn(e,t,r,n){if(!e||!t||!r||!Number.isFinite(n))throw new Error("[SDK][buildPromoteOp] Missing required parameters");return ["custom_json",{id:"ecency_promote",json:JSON.stringify({user:e,author:t,permlink:r,duration:n}),required_auths:[e],required_posting_auths:[]}]}var Ap=["quality","underrated","newcomer","other"];function fn(e,t,r,n="quality"){if(!e||!t||!r)throw new Error("[SDK][buildCurationRecommendOp] Missing required parameters");if(!Ap.includes(n))throw new Error("[SDK][buildCurationRecommendOp] Unknown reason");return ["custom_json",{id:"ecency_curation",json:JSON.stringify({v:1,op:"recommend",author:t,permlink:r,reason:n}),required_auths:[],required_posting_auths:[e]}]}function gn(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCurationUnrecommendOp] Missing required parameters");return ["custom_json",{id:"ecency_curation",json:JSON.stringify({v:1,op:"unrecommend",author:t,permlink:r}),required_auths:[],required_posting_auths:[e]}]}function nt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildPointTransferOp] Missing required parameters");let o=r.replace(/POINTS\b/,"POINT");return ["custom_json",{id:"ecency_point_transfer",json:JSON.stringify({sender:e,receiver:t,amount:o,memo:n||""}),required_auths:[e],required_posting_auths:[]}]}function Pp(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiPointTransferOps] Missing required parameters");let o=t.trim().split(/[\s,]+/).filter(Boolean);if(o.length===0)throw new Error("[SDK][buildMultiPointTransferOps] Missing valid destinations");return o.map(i=>nt(e,i.trim(),r,n))}function yn(e){if(!e)throw new Error("[SDK][buildCommunityRegistrationOp] Missing required parameters");return ["custom_json",{id:"ecency_registration",json:JSON.stringify({name:e}),required_auths:[e],required_posting_auths:[]}]}function xp(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildActiveCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[e],required_posting_auths:[]}]}function Op(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildPostingCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[],required_posting_auths:[e]}]}function sx(e,t,r){return v(["accounts","follow"],e,({following:n})=>[$r(e,n)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.relations(e,o.following),u.accounts.full(o.following),u.accounts.followCount(o.following),u.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function px(e,t,r){return v(["accounts","unfollow"],e,({following:n})=>[Jt(e,n)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.relations(e,o.following),u.accounts.full(o.following),u.accounts.followCount(o.following),u.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function fx(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","bookmarks","add",e],mutationFn:async({author:o,permlink:i})=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/bookmarks-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:o,permlink:i,code:t})})).json()},onSuccess:()=>{r(),w().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function _x(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","bookmarks","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/bookmarks-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({id:o,code:t})})).json()},onSuccess:()=>{r(),w().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function Ax(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","favorites","add",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/favorites-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})})).json()},onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favorites(e)}),s.invalidateQueries({queryKey:u.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavorite(e,i)});},onError:n})}function Cx(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","favorites","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");let s=await h()(d.privateApiHost+"/private-api/favorites-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})});if(!s.ok)throw new Error(`Failed to delete favorite: ${s.status}`);return s.json()},onMutate:async o=>{if(!e)return;let i=w(),s=u.accounts.favorites(e),a=u.accounts.favoritesInfinite(e),c=u.accounts.checkFavorite(e,o);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a}),i.cancelQueries({queryKey:c})]);let p=i.getQueryData(s);p&&i.setQueryData(s,p.filter(g=>g.account!==o));let l=i.getQueryData(c);i.setQueryData(c,false);let m=i.getQueriesData({queryKey:a}),f=new Map(m);for(let[g,_]of m)_&&i.setQueryData(g,{..._,pages:_.pages.map(A=>({...A,data:A.data.filter(x=>x.account!==o)}))});return {previousList:p,previousInfinite:f,previousCheck:l}},onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favorites(e)}),s.invalidateQueries({queryKey:u.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavorite(e,i)});},onError:(o,i,s)=>{let a=w();if(s?.previousList&&a.setQueryData(u.accounts.favorites(e),s.previousList),s?.previousInfinite)for(let[c,p]of s.previousInfinite)a.setQueryData(c,p);s?.previousCheck!==void 0&&a.setQueryData(u.accounts.checkFavorite(e,i),s.previousCheck),n(o);}})}async function pi(e,t,r,n){if(!t||!r)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");let o=Se(n);if(o===null)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 invalid tag");let s=await h()(d.privateApiHost+"/private-api/"+e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({tag:o,code:r})});if(!s.ok)throw new Error(`Failed to ${e==="favorite-tags-add"?"add":"delete"} favorite tag: ${s.status}`);return await s.json()}function li(e,t,r){return pi("favorite-tags-add",e,t,r)}function di(e,t,r){return pi("favorite-tags-delete",e,t,r)}function Kx(e,t,r,n){return reactQuery.useMutation({mutationKey:["accounts","favorite-tags","add",e],mutationFn:o=>li(e,t,o),onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favoriteTags(e)}),s.invalidateQueries({queryKey:u.accounts.favoriteTagsInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavoriteTag(e,Se(i)??i)});},onError:n})}function Fp(e,t,r,n){let o=i=>{let s=w();s.invalidateQueries({queryKey:u.accounts.favoriteTags(e)}),s.invalidateQueries({queryKey:u.accounts.favoriteTagsInfinite(e)}),i&&s.invalidateQueries({queryKey:u.accounts.checkFavoriteTag(e,i)});};return {mutationKey:["accounts","favorite-tags","delete",e],mutationFn:i=>di(e,t,i),onMutate:async i=>{let s=Se(i);if(!e||s===null)return;let a=w(),c=u.accounts.favoriteTags(e),p=u.accounts.favoriteTagsInfinite(e),l=u.accounts.checkFavoriteTag(e,s);await Promise.all([a.cancelQueries({queryKey:c}),a.cancelQueries({queryKey:p}),a.cancelQueries({queryKey:l})]);let m=a.getQueryData(c);m&&a.setQueryData(c,m.filter(A=>A.tag!==s));let f=a.getQueryData(l);a.setQueryData(l,false);let g=a.getQueriesData({queryKey:p}),_=new Map(g);for(let[A,x]of g)x&&a.setQueryData(A,{...x,pages:x.pages.map(C=>({...C,data:C.data.filter(F=>F.tag!==s)}))});return {normalized:s,previousList:m,previousInfinite:_,previousCheck:f}},onSuccess:(i,s)=>{r(),o(Se(s)??void 0);},onError:(i,s,a)=>{let c=w();if(a){a.previousList&&c.setQueryData(u.accounts.favoriteTags(e),a.previousList);for(let[l,m]of a.previousInfinite)c.setQueryData(l,m);let p=u.accounts.checkFavoriteTag(e,a.normalized);a.previousCheck!==void 0?c.setQueryData(p,a.previousCheck):c.removeQueries({queryKey:p,exact:true});}o(a?.normalized),n(i);}}}function Lx(e,t,r,n){return reactQuery.useMutation(Fp(e,t,r,n))}function Dp(e,t){let r=new Map;return e.forEach(([n,o])=>{r.set(n.toString(),o);}),t.forEach(([n,o])=>{r.set(n.toString(),o);}),Array.from(r.entries()).sort(([n],[o])=>n.localeCompare(o)).map(([n,o])=>[n,o])}function mi(e,t){let{data:r}=reactQuery.useQuery(M(e));return reactQuery.useMutation({mutationKey:["accounts","keys-update",e],mutationFn:async({keys:n,keepCurrent:o=false,currentKey:i,keysToRevoke:s=[],keysToRevokeByAuthority:a={}})=>{if(n.length===0)throw new Error("[SDK][Update password] \u2013 no new keys provided");if(!r)throw new Error("[SDK][Update password] \u2013 cannot update keys for anon user");let c=p=>{let l=JSON.parse(JSON.stringify(r[p])),f=[...a[p]||[],...a[p]===void 0?s:[]],g=o?l.key_auths.filter(([_])=>!f.includes(_.toString())):[];return l.key_auths=Dp(g,n.map((_,A)=>[_[p].createPublic().toString(),A+1])),l};return ee([["account_update",{account:e,json_metadata:r.json_metadata,owner:c("owner"),active:c("active"),posting:c("posting"),memo_key:n[0].memo_key.createPublic().toString()}]],i)},...t})}function tO(e,t){let{data:r}=reactQuery.useQuery(M(e)),{mutateAsync:n}=mi(e);return reactQuery.useMutation({mutationKey:["accounts","password-update",e],mutationFn:async({newPassword:o,currentPassword:i,keepCurrent:s})=>{if(!r)throw new Error("[SDK][Update password] \u2013 cannot update password for anon user");let a=U.fromLogin(e,i,"owner");return n({currentKey:a,keepCurrent:s,keys:[{owner:U.fromLogin(e,o,"owner"),active:U.fromLogin(e,o,"active"),posting:U.fromLogin(e,o,"posting"),memo_key:U.fromLogin(e,o,"memo")}]})},...t})}function aO(e,t,r){let n=reactQuery.useQueryClient(),{data:o}=reactQuery.useQuery(M(e));return reactQuery.useMutation({mutationKey:["accounts","revoke-posting",o?.name],mutationFn:async({accountName:i,type:s,key:a})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot revoke posting for anonymous user");let c=JSON.parse(JSON.stringify(o.posting));c.account_auths=c.account_auths.filter(([l])=>l!==i);let p={account:o.name,posting:c,memo_key:o.memo_key,json_metadata:o.json_metadata};if(s==="key"&&a)return ee([["account_update",p]],a);if(s==="keychain"){if(!r?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return r.adapter.broadcastWithKeychain(o.name,[["account_update",p]],"active")}else return !t.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing."),Co__default.default.sendOperation(["account_update",p],t.hsCallbackUrl?{callback:t.hsCallbackUrl}:{},()=>{})},onError:t.onError,onSuccess:(i,s,a)=>{t.onSuccess?.(i,s,a),n.setQueryData(M(e).queryKey,c=>({...c,posting:{...c?.posting,account_auths:c?.posting?.account_auths?.filter(([p])=>p!==s.accountName)??[]}}));}})}function fO(e,t,r,n){let{data:o}=reactQuery.useQuery(M(e));return reactQuery.useMutation({mutationKey:["accounts","recovery",o?.name],mutationFn:async({accountName:i,type:s,key:a,email:c})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot change recovery for anonymous user");let p={account_to_recover:o.name,new_recovery_account:i,extensions:[]};if(s==="ecency"){if(!t)throw new Error("[SDK][Accounts] \u2013 missing access token");let m=await h()(d.privateApiHost+"/private-api/recoveries-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,email:c,publicKeys:[...o.owner.key_auths,...o.active.key_auths,...o.posting.key_auths,o.memo_key]})});if(!m.ok)throw new Error(`[SDK][Accounts] Failed to add recovery: ${m.status}`);return m}else {if(s==="key"&&a)return ee([["change_recovery_account",p]],a);if(s==="keychain"){if(!n?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return n.adapter.broadcastWithKeychain(o.name,[["change_recovery_account",p]],"owner")}else return !r.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing."),Co__default.default.sendOperation(["change_recovery_account",p],r.hsCallbackUrl?{callback:r.hsCallbackUrl}:{},()=>{})}},onError:r.onError,onSuccess:r.onSuccess})}function yO(e,t){let r=e.key_auths.filter(([o])=>!t.has(String(o))).reduce((o,[,i])=>o+i,0),n=(e.account_auths??[]).reduce((o,[,i])=>o+i,0);return r+n>=e.weight_threshold}function fi(e,t){let r=new Set(t.map(s=>s.toString())),n=s=>s.key_auths.some(([a])=>r.has(String(a))),o=s=>{let a=JSON.parse(JSON.stringify(s));return a.key_auths=a.key_auths.filter(([c])=>!r.has(c.toString())),a},i=n(e.owner);return {account:e.name,json_metadata:e.json_metadata,owner:i?o(e.owner):void 0,active:o(e.active),posting:o(e.posting),memo_key:e.memo_key}}function AO(e,t){let{data:r}=reactQuery.useQuery(M(e));return reactQuery.useMutation({mutationKey:["accounts","revoke-key",r?.name],mutationFn:async({currentKey:n,revokingKey:o})=>{if(!r)throw new Error("[SDK][Revoke key] \u2013 cannot update keys for anon user");let i=Array.isArray(o)?o:[o],s=fi(r,i);return ee([["account_update",s]],n)},...t})}function SO(e,t,r){return v(["accounts","claimAccount"],e,({creator:n,fee:o="0.000 HIVE"})=>[cn(n,o)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(o.creator)]);},t,"active",{broadcastMode:r})}function kO(e,t,r){return v(["accounts","grant-posting-permission"],e,n=>[pn(e,n.currentPosting,n.grantedAccount,n.weightThreshold,n.memoKey,n.jsonMetadata)],async()=>{await S(t?.adapter,r,[u.accounts.full(e)]);},t,"active",{broadcastMode:r})}function IO(e,t,r){return v(["accounts","create"],e,n=>[n.useClaimed?un(e,n.newAccountName,n.keys):an(e,n.newAccountName,n.keys,n.fee)],async()=>{await S(t?.adapter,r,[u.accounts.full(e)]);},t,"active",{broadcastMode:r})}var hn=300*60*24,Wp=1e4,Gp=5e7;function gi(e){let t=T(e.vesting_shares).amount,r=T(e.received_vesting_shares).amount,n=T(e.delegated_vesting_shares).amount,o=T(e.vesting_withdraw_rate).amount,i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t+r-n-s}function zp(e,t,r){let n=e*1e6;return (t*r/1e4/50+1)*n/1e4}function Jp(e){if(Number.isFinite(e.lastHardfork))return e.lastHardfork>=28;let[t="0",r="0"]=(e.currentHardforkVersion??"0.0.0").split(".");return Number(t)>1||Number(t)===1&&Number(r)>=28}function Yp(e,t,r){let n=t.votePowerReserveRate||Number(t.raw?.globalDynamic?.vote_power_reserve_rate??0);if(!Number.isFinite(n)||n<=0)return 0;let o=gi(e);if(!Number.isFinite(o)||o<=0)return 0;let i=o*1e6,s=Math.ceil(i*r*60*60*24/Wp/(n*hn)),a=Ir(e),c=Math.min(a.current_mana,a.max_mana);return !Number.isFinite(c)||s>c?0:Math.max(s-Gp,0)}function Xp(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;if(Jp(t))return Yp(e,t,n);let o=0;try{if(o=gi(e),!Number.isFinite(o))return 0}catch{return 0}return zp(o,r,n)}function MO(e){return Ir(e).percentage/100}function BO(e){if(!Number.isFinite(e))throw new TypeError("Voting power must be a finite number");if(e<0||e>100)throw new RangeError("Voting power must be between 0 and 100");return (100-e)*100*hn/1e4}function QO(e){let t=parseFloat(e.vesting_shares)+parseFloat(e.received_vesting_shares)-parseFloat(e.delegated_vesting_shares),r=Math.floor(Date.now()/1e3)-e.downvote_manabar.last_update_time,n=t*1e6/4;if(n<=0)return 0;let o=parseFloat(e.downvote_manabar.current_mana.toString())+r*n/hn;o>n&&(o=n);let i=o*100/n;return isNaN(i)?0:i>100?100:i}function UO(e){let{curation_rewards:t,posting_rewards:r}=e;if(t===void 0||r===void 0)return null;let n=t+r,o=T(e.vesting_shares).amount-T(e.delegated_vesting_shares).amount;return !Number.isFinite(n)||!Number.isFinite(o)||o<=0?null:n/o}function HO(e){return jt(e).percentage/100}function VO(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;let{fundRecentClaims:o,fundRewardBalance:i,base:s,quote:a}=t;if(!Number.isFinite(o)||!Number.isFinite(i)||!Number.isFinite(s)||!Number.isFinite(a)||o===0||a===0)return 0;let c=Xp(e,t,r,n);return Number.isFinite(c)?c/o*i*(s/a):0}var Zp={vote:"posting",comment:"posting",delete_comment:"posting",comment_options:"posting",claim_reward_balance:"posting",cancel_transfer_from_savings:"active",collateralized_convert:"active",convert:"active",delegate_vesting_shares:"active",recurrent_transfer:"active",set_withdraw_vesting_route:"active",transfer:"active",transfer_from_savings:"active",transfer_to_savings:"active",transfer_to_vesting:"active",withdraw_vesting:"active",limit_order_create:"active",limit_order_cancel:"active",account_update:"active",account_update2:"active",claim_account:"active",create_claimed_account:"active",account_witness_proxy:"active",account_witness_vote:"active",remove_proposal:"active",update_proposal_votes:"active",change_recovery_account:"owner",request_account_recovery:"owner",recover_account:"owner",reset_account:"owner",set_reset_account:"owner"};function el(e){let t=e[0],r=e[1];if(t!=="custom_json")throw new Error("Operation is not a custom_json operation");let n=r;return n.required_auths&&n.required_auths.length>0?"active":(n.required_posting_auths&&n.required_posting_auths.length>0,"posting")}function tl(e){let t=e[0];if(t!=="create_proposal"&&t!=="update_proposal")throw new Error("Operation is not a proposal operation");return "active"}function rl(e){let t=e[0];return t==="custom_json"?el(e):t==="create_proposal"||t==="update_proposal"?tl(e):Zp[t]??"posting"}function LO(e){let t="posting";for(let r of e){let n=rl(r);if(n==="owner")return "owner";n==="active"&&t==="posting"&&(t="active");}return t}function JO(e){return reactQuery.useMutation({mutationKey:["operations","sign",e],mutationFn:({operation:t,keyOrSeed:r})=>{if(!e)throw new Error("[Operations][Sign] \u2013 cannot sign op with anon user");let n;return r.split(" ").length===12?n=U.fromLogin(e,r,"active"):Po(r)?n=U.fromString(r):n=U.from(r),ee([t],n)}})}function ZO(e,t,r="active"){return reactQuery.useMutation({mutationKey:["operations","sign-keychain",e],mutationFn:({operation:n})=>{if(!e)throw new Error("[SDK][Keychain] \u2013\xA0cannot sign operation with anon user");if(!t?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Keychain] \u2013 missing keychain broadcaster");return t.adapter.broadcastWithKeychain(e,[n],r)}})}function nS(e="/"){return reactQuery.useMutation({mutationKey:["operations","sign-hivesigner",e],mutationFn:async({operation:t})=>Co__default.default.sendOperation(t,{callback:e},()=>{})})}function aS(){return reactQuery.queryOptions({queryKey:["operations","chain-properties"],queryFn:async()=>await y("condenser_api.get_chain_properties",[])})}function yi(e,t,r){return {...e,...t??{},title:r.title,body:r.body}}function hi(e,t){return {...e??{},title:t.title,body:t.body}}function gS(e,t){return reactQuery.useMutation({mutationKey:["posts","add-fragment",e],mutationFn:async({title:r,body:n})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let i=await h()(d.privateApiHost+"/private-api/fragments-add",{method:"POST",body:JSON.stringify({code:t,title:r,body:n}),headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`[SDK][Posts] Failed to add fragment: ${i.status}`);return i.json()},onSuccess(r,n){let o=w(),i=hi(r,n);o.setQueryData(tt(e,t).queryKey,s=>[i,...s??[]]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map((a,c)=>c===0?{...a,data:[i,...a.data]}:a)});}})}function AS(e,t){return reactQuery.useMutation({mutationKey:["posts","edit-fragment",e],mutationFn:async({fragmentId:r,title:n,body:o})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let s=await h()(d.privateApiHost+"/private-api/fragments-update",{method:"POST",body:JSON.stringify({code:t,id:r,title:n,body:o}),headers:{"Content-Type":"application/json"}});if(!s.ok)throw new Error(`[SDK][Posts] Failed to update fragment: ${s.status}`);return s.json()},onSuccess(r,n){let o=w(),i=s=>yi(s,r,n);o.setQueryData(tt(e,t).queryKey,s=>s?.map(a=>a.id===n.fragmentId?i(a):a)??[]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map(a=>({...a,data:a.data.map(c=>c.id===n.fragmentId?i(c):c)}))});}})}function ES(e,t){return reactQuery.useMutation({mutationKey:["posts","remove-fragment",e],mutationFn:async({fragmentId:r})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let o=await h()(d.privateApiHost+"/private-api/fragments-delete",{method:"POST",body:JSON.stringify({code:t,id:r}),headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`[SDK][Posts] Failed to delete fragment: ${o.status}`);return o},onSuccess(r,n){let o=w();o.setQueryData(tt(e,t).queryKey,i=>[...i??[]].filter(({id:s})=>s!==n.fragmentId)),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},i=>i&&{...i,pages:i.pages.map(s=>({...s,data:s.data.filter(a=>a.id!==n.fragmentId)}))});}})}async function G(e){if(!e.ok){let r;try{r=await e.json();}catch{r=void 0;}let n=new Error(`Request failed with status ${e.status}`);throw n.status=e.status,n.data=r,n}let t=await e.text();if(!t||t.trim()==="")return "";try{return JSON.parse(t)}catch(r){return console.warn("[SDK] Failed to parse JSON response:",r,"Response:",t),""}}async function TS(e,t,r,n){let i=await h()(d.privateApiHost+"/private-api/account-create",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,email:t,referral:r,captcha_token:n})}),s=await G(i);return {status:i.status,data:s}}async function FS(e){let r=await h()(d.privateApiHost+"/private-api/subscribe",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e})}),n=await G(r);return {status:r.status,data:n}}async function qS(e,t,r="",n=""){let o={code:e,ty:t};r&&(o.bl=r),n&&(o.tx=n);let s=await h()(d.privateApiHost+"/private-api/usr-activity",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});await G(s);}async function IS(e,t,r=null,n=null){let o={code:e};t&&(o.filter=t),r&&(o.since=r),n&&(o.user=n);let s=await h()(d.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});return G(s)}async function DS(e,t,r,n,o,i){let s={code:e,username:t,token:i,system:r,allows_notify:n,notify_types:o},c=await h()(d.privateApiHost+"/private-api/register-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return G(c)}async function KS(e,t,r){let n={code:e,username:t,token:r},i=await h()(d.privateApiHost+"/private-api/detail-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}async function _i(e,t){let r={code:e};t&&(r.id=t);let o=await h()(d.privateApiHost+"/private-api/notifications/mark",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function wi(e,t){let r={code:e,url:t},o=await h()(d.privateApiHost+"/private-api/images-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}var ll="https://i.ecency.com";async function bi(e,t,r){let n=h(),o=new FormData;o.append("file",e);let i=await n(`${ll}/hs/${t}`,{method:"POST",body:o,signal:r});return G(i)}async function NS(e,t,r,n){let o=h(),i=new FormData;i.append("file",e);let s=await o(`${d.imageHost}/${t}/${r}`,{method:"POST",body:i,signal:n});return G(s)}async function vi(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/images-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Ai(e,t,r,n,o){let i={code:e,title:t,body:r,tags:n,meta:o},a=await h()(d.privateApiHost+"/private-api/drafts-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return G(a)}async function Pi(e,t,r,n,o,i){let s={code:e,id:t,title:r,body:n,tags:o,meta:i},c=await h()(d.privateApiHost+"/private-api/drafts-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return G(c)}async function xi(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/drafts-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Oi(e,t,r,n,o,i,s,a){let c={code:e,permlink:t,title:r,body:n,meta:o,schedule:s,reblog:a};i&&(c.options=i);let l=await h()(d.privateApiHost+"/private-api/schedules-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)});return G(l)}async function Si(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/schedules-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Ci(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/schedules-move",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function MS(e,t,r){let n={code:e,author:t,permlink:r},i=await h()(d.privateApiHost+"/private-api/promoted-post",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}async function BS(e,t,r){let n={username:e,email:t,friend:r},i=await h()(d.privateApiHost+"/private-api/account-create-friend",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}function jS(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","drafts","add",e],mutationFn:async({title:o,body:i,tags:s,meta:a})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addDraft");return Ai(t,o,i,s,a)},onSuccess:o=>{r?.();let i=w();o?.drafts?i.setQueryData(u.posts.drafts(e),o.drafts):i.invalidateQueries({queryKey:u.posts.drafts(e)}),i.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:n})}function zS(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","drafts","update",e],mutationFn:async({draftId:o,title:i,body:s,tags:a,meta:c})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for updateDraft");return Pi(t,o,i,s,a,c)},onSuccess:()=>{r?.();let o=w();o.invalidateQueries({queryKey:u.posts.drafts(e)}),o.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:n})}function tC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","drafts","delete",e],mutationFn:async({draftId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteDraft");return xi(t,o)},onMutate:async({draftId:o})=>{if(!e)return;let i=w(),s=u.posts.drafts(e),a=u.posts.draftsInfinite(e);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a})]);let c=i.getQueryData(s);c&&i.setQueryData(s,c.filter(m=>m._id!==o));let p=i.getQueriesData({queryKey:a}),l=new Map(p);for(let[m,f]of p)f&&i.setQueryData(m,{...f,pages:f.pages.map(g=>({...g,data:g.data.filter(_=>_._id!==o)}))});return {previousList:c,previousInfinite:l}},onSuccess:()=>{r?.();let o=w();o.invalidateQueries({queryKey:u.posts.drafts(e)}),o.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:(o,i,s)=>{let a=w();if(s?.previousList&&a.setQueryData(u.posts.drafts(e),s.previousList),s?.previousInfinite)for(let[c,p]of s.previousInfinite)a.setQueryData(c,p);n?.(o);}})}function sC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","schedules","add",e],mutationFn:async({permlink:o,title:i,body:s,meta:a,options:c,schedule:p,reblog:l})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addSchedule");return Oi(t,o,i,s,a,c,p,l)},onSuccess:()=>{r?.(),w().invalidateQueries({queryKey:u.posts.schedules(e)});},onError:n})}function lC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","schedules","delete",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteSchedule");return Si(t,o)},onSuccess:o=>{r?.();let i=w();o?i.setQueryData(u.posts.schedules(e),o):i.invalidateQueries({queryKey:u.posts.schedules(e)});},onError:n})}function yC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","schedules","move",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for moveSchedule");return Ci(t,o)},onSuccess:o=>{r?.();let i=w();o?i.setQueryData(u.posts.schedules(e),o):i.invalidateQueries({queryKey:u.posts.schedules(e)}),i.invalidateQueries({queryKey:u.posts.drafts(e)});},onError:n})}function vC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","images","add",e],mutationFn:async({url:o,code:i})=>{let s=i??t;if(!e||!s)throw new Error("[SDK][Posts] \u2013 missing auth for addImage");return wi(s,o)},onSuccess:()=>{r?.(),w().invalidateQueries({queryKey:u.posts.images(e)});},onError:n})}function SC(e,t,r,n){return reactQuery.useMutation({mutationKey:["posts","images","delete",e],mutationFn:async({imageId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteImage");return vi(t,o)},onSuccess:(o,i)=>{r?.();let s=w(),{imageId:a}=i;s.setQueryData(["posts","images",e],c=>c?.filter(p=>p._id!==a)),s.setQueriesData({queryKey:["posts","images","infinite",e]},c=>c&&{...c,pages:c.pages.map(p=>({...p,data:p.data.filter(l=>l._id!==a)}))});},onError:n})}function kC(e,t){return reactQuery.useMutation({mutationKey:["posts","images","upload"],mutationFn:async({file:r,token:n,signal:o})=>bi(r,n,o),onSuccess:e,onError:t})}function er(e,t){return `/@${e}/${t}`}function vl(e,t,r){return (r??w()).getQueryData(u.posts.entry(er(e,t)))}function Al(e,t){(t??w()).setQueryData(u.posts.entry(er(e.author,e.permlink)),e);}function Zt(e,t,r,n){let o=n??w(),i=er(e,t),s=o.getQueryData(u.posts.entry(i));if(!s)return;let a=r(s);return o.setQueryData(u.posts.entry(i),a),s}exports.EntriesCacheManagement=void 0;(a=>{function e(c,p,l,m,f){Zt(c,p,g=>({...g,active_votes:l,stats:{...g.stats||{gray:false,hide:false,flag_weight:0,total_votes:0},total_votes:l.length,flag_weight:g.stats?.flag_weight||0},total_votes:l.length,payout:m,pending_payout_value:String(m)}),f);}a.updateVotes=e;function t(c,p,l,m){Zt(c,p,f=>({...f,reblogs:l}),m);}a.updateReblogsCount=t;function r(c,p,l,m){Zt(c,p,f=>({...f,children:l}),m);}a.updateRepliesCount=r;function n(c,p,l,m){Zt(p,l,f=>({...f,children:f.children+1,replies:[c,...f.replies]}),m);}a.addReply=n;function o(c,p){c.forEach(l=>Al(l,p));}a.updateEntries=o;function i(c,p,l){(l??w()).invalidateQueries({queryKey:u.posts.entry(er(c,p))});}a.invalidateEntry=i;function s(c,p,l){return vl(c,p,l)}a.getEntry=s;})(exports.EntriesCacheManagement||={});function Pl(e,t,r){let n=e.some(o=>o.voter===t);return r!==0?n:!n}function xl(e,t,r){let n=exports.EntriesCacheManagement.getEntry(t.author,t.permlink,r);if(!n?.active_votes||Pl(n.active_votes,e,t.weight))return;let o=[...n.active_votes.filter(s=>s.voter!==e),...t.weight!==0?[{rshares:t.weight,voter:e}]:[]],i=n.payout+(t.estimated??0);exports.EntriesCacheManagement.updateVotes(t.author,t.permlink,o,i,r);}function NC(e,t,r){return v(["posts","vote"],e,({author:n,permlink:o,weight:i})=>[Qr(e,n,o,i)],async(n,o)=>{xl(e,o);let i=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&i&&t.adapter.recordActivity(120,i,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let s=()=>{t.adapter.invalidateQueries([u.posts.entry(`/@${o.author}/${o.permlink}`),u.accounts.full(e)]);};(r??"async")==="async"?setTimeout(s,4e3):s();}},t,"posting",{broadcastMode:r??"async"})}function HC(e,t,r){return v(["posts","reblog"],e,({author:n,permlink:o,deleteReblog:i})=>[Hr(e,n,o,i??false)],async(n,o)=>{let i=exports.EntriesCacheManagement.getEntry(o.author,o.permlink);if(i){let p=Math.max(0,(i.reblogs??0)+(o.deleteReblog?-1:1));exports.EntriesCacheManagement.updateReblogsCount(o.author,o.permlink,p);}let s=n?.id??n?.tx_id;t?.adapter?.recordActivity&&s&&t.adapter.recordActivity(130,s,n?.block_num).catch(()=>{});let a=()=>{w().invalidateQueries({queryKey:u.posts.accountPostsBlogPrefix(e)}),t?.adapter?.invalidateQueries&&t.adapter.invalidateQueries([u.posts.entry(`/@${o.author}/${o.permlink}`),u.posts.rebloggedBy(o.author,o.permlink)]);};(r??"async")==="async"?setTimeout(a,4e3):a();},t,"posting",{broadcastMode:r??"async"})}function Ol(e){return e.isUpdate?null:e.parentAuthor?110:100}function $C(e,t,r){return v(["posts","comment"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((f,g)=>f.account.localeCompare(g.account));l.push([0,{beneficiaries:m.map(f=>({account:f.account,weight:f.weight}))}]);}o.push(je(n.author,n.permlink,i,s,a,c,l));}return o},async(n,o)=>{let i=!o.parentAuthor,s=Ol(o),a=n?.id??n?.tx_id;if(s!==null&&t?.adapter?.recordActivity&&a&&t.adapter.recordActivity(s,a,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let c=[u.accounts.full(e),u.resourceCredits.account(e)];if(!i){c.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let p=o.rootAuthor||o.parentAuthor,l=o.rootPermlink||o.parentPermlink;c.push({predicate:m=>{let f=m.queryKey;return Array.isArray(f)&&f[0]==="posts"&&f[1]==="discussions"&&f[2]===p&&f[3]===l}});}await t.adapter.invalidateQueries(c);}},t,"posting",{broadcastMode:r})}function zC(e,t,r,n){let o=n??w(),i=o.getQueriesData({predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="discussions"&&a[2]===t&&a[3]===r}});for(let[s,a]of i)a&&o.setQueryData(s,[e,...a]);}function Ei(e,t,r,n,o){let i=o??w(),s=new Map,a=i.getQueriesData({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===r&&p[3]===n}});for(let[c,p]of a)p&&(s.set(c,p),i.setQueryData(c,p.filter(l=>l.author!==e||l.permlink!==t)));return s}function Ri(e,t){let r=t??w();for(let[n,o]of e)r.setQueryData(n,o);}function JC(e,t,r,n){let o=n??w(),i=`/@${e}/${t}`,s=o.getQueryData(u.posts.entry(i));return s&&o.setQueryData(u.posts.entry(i),{...s,...r}),s}function YC(e,t,r,n){let o=n??w(),i=`/@${e}/${t}`;o.setQueryData(u.posts.entry(i),r);}function rE(e,t,r){return v(["posts","deleteComment"],e,({author:n,permlink:o})=>[Ur(n,o)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.accounts.full(e)];if(o.parentAuthor&&o.parentPermlink){i.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}});}await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r,onMutate:async n=>{let o=n.rootAuthor||n.parentAuthor,i=n.rootPermlink||n.parentPermlink;return o&&i?{snapshots:Ei(n.author,n.permlink,o,i)}:{}},onError:(n,o,i)=>{let{snapshots:s}=i??{};s&&Ri(s);}})}function sE(e,t,r){return v(["posts","cross-post"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,"",n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true}=n.options;o.push(je(n.author,n.permlink,i,s,a,c,[]));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.accounts.full(e),{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.parentPermlink}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"async"})}function pE(e,t,r){return v(["posts","update-reply"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((f,g)=>f.account.localeCompare(g.account));l.push([0,{beneficiaries:m.map(f=>({account:f.account,weight:f.weight}))}]);}o.push(je(n.author,n.permlink,i,s,a,c,l));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.resourceCredits.account(e)];i.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}}),await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r})}function fE(e,t,r){return v(["ecency","promote"],e,({author:n,permlink:o,duration:i})=>[mn(e,n,o,i)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...u.posts._promotedPrefix],[...u.points._prefix(e)],u.posts.entry(`/@${o.author}/${o.permlink}`)]);},t,"active",{broadcastMode:r})}var Sl=[3e3,3e3,3e3],Cl=e=>new Promise(t=>setTimeout(t,e));async function El(e,t){return y("condenser_api.get_content",[e,t])}async function Rl(e,t,r=0,n){let o=n?.delays??Sl,i;try{i=await El(e,t);}catch{i=void 0;}if(i||r>=o.length)return;let s=o[r];return s>0&&await Cl(s),Rl(e,t,r+1,n)}var ot={};kt(ot,{useRecordActivity:()=>_n});function Tl(){return typeof window<"u"&&window.location?{url:window.location.href,domain:window.location.host}:{url:"",domain:""}}function _n(e,t,r){return reactQuery.useMutation({mutationKey:["analytics",t],mutationFn:async()=>{if(!t)throw new Error("[SDK][Analytics] \u2013 no activity type provided");let n=h(),o=Tl(),i=r?.url??o.url,s=r?.domain??o.domain;try{await n(d.plausibleHost+"/api/event",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:t,url:i,domain:s,props:{username:e}})});}catch{}}})}function xE(e){return reactQuery.queryOptions({queryKey:["analytics","discover-leaderboard",e],queryFn:async({signal:t})=>{let r=await fetch(d.privateApiHost+`/private-api/leaderboard/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch leaderboard: ${r.status}`);return r.json()}})}function RE(e){return reactQuery.queryOptions({queryKey:["analytics","discover-curation",e],queryFn:async({signal:t})=>{let r=await fetch(d.privateApiHost+`/private-api/curation/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch curation data: ${r.status}`);let n=await r.json(),o=n.map(s=>s.account),i=await y("condenser_api.get_accounts",[o]);for(let s=0;sa.efficiency-s.efficiency),n}})}function qE(e,t=[],r=["visitors","pageviews","visit_duration"],n){let o=[...t].sort(),i=[...r].sort();return reactQuery.queryOptions({queryKey:["analytics","page-stats",e,o,i,n],queryFn:async({signal:s})=>{let a=await fetch(d.privateApiHost+"/api/stats",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,date_range:n}),signal:s});if(!a.ok)throw new Error(`Failed to fetch page stats: ${a.status}`);return a.json()},enabled:!!e,staleTime:0})}var tr="threespeakfund",BE=1100;function Dl(e){return /https?:\/\/([a-z0-9-]+\.)*3speak\.tv\/embed[?/]/i.test(e)}function QE(e,t){if(!Dl(t))return e;let r=e.find(n=>n.account===tr);return r&&r.weight===1100?e:r?e.map(n=>n.account===tr?{...n,weight:1100}:n):[...e,{account:tr,weight:1100}]}function UE(e){return e===tr}var vn={};kt(vn,{getAccountTokenQueryOptions:()=>bn,getAccountVideosQueryOptions:()=>Ul});var wn={};kt(wn,{getDecodeMemoQueryOptions:()=>Ml});function Ml(e,t,r){return reactQuery.queryOptions({queryKey:["integrations","hivesigner","decode-memo",e],queryFn:async()=>{if(r)return new Co__default.default.Client({accessToken:r}).decode(t)}})}var ki={queries:wn};function bn(e,t){return reactQuery.queryOptions({queryKey:["integrations","3speak","authenticate",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let n=await h()(`https://studio.3speak.tv/mobile/login?username=${e}&hivesigner=true`,{headers:{"Content-Type":"application/json"}}),o=ki.queries.getDecodeMemoQueryOptions(e,(await n.json()).memo,t);await w().prefetchQuery(o);let{memoDecoded:i}=w().getQueryData(o.queryKey);return i.replace("#","")}})}function Ul(e,t){return reactQuery.queryOptions({queryKey:["integrations","3speak","videos",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let r=bn(e,t);await w().prefetchQuery(r);let n=w().getQueryData(r.queryKey);if(!n)throw new Error("[SDK][Integrations][3Speak] \u2013 missing account token");return await(await h()("https://studio.3speak.tv/mobile/api/my-videos",{headers:{"Content-Type":"application/json",Authorization:`Bearer ${n}`}})).json()}})}var oR={queries:vn};function pR(e){return reactQuery.queryOptions({queryKey:["integrations","hiveposh","links",e],retry:false,queryFn:async()=>{try{let r=await h()(`https://hiveposh.com/api/v0/linked-accounts/${e}`,{headers:{"Content-Type":"application/json"}});if(r.status===400&&(await r.json().catch(()=>({})))?.message==="User Not Connected"||!r.ok)return null;let n=await r.json();return {twitter:{username:n.twitter_username,profile:n.twitter_profile},reddit:{username:n.reddit_username,profile:n.reddit_profile}}}catch{return null}}})}function fR({url:e,dimensions:t=[],metrics:r=["visitors","pageviews","visit_duration"],filterBy:n="event:page",dateRange:o,enabled:i=true}){return reactQuery.queryOptions({queryKey:["integrations","plausible",e,t,r,n,o],queryFn:async()=>{let a=await h()(`${d.privateApiHost}/api/stats`,{method:"POST",body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,filterBy:n,...o?{date_range:o}:{}}),headers:{"Content-Type":"application/json"}});if(!a.ok)throw new Error(`Failed to fetch Plausible stats: ${a.status}`);return await a.json()},enabled:!!e&&i,retry:1})}function _R(){return reactQuery.queryOptions({queryKey:["resource-credits","stats"],queryFn:async()=>(await y("rc_api.get_rc_stats",{})).rc_stats})}function AR(e){return reactQuery.queryOptions({queryKey:["resource-credits","account",e],queryFn:async()=>(await y("rc_api.find_rc_accounts",{accounts:[e]})).rc_accounts,enabled:!!e})}function CR(){return reactQuery.queryOptions({queryKey:u.resourceCredits.resourceParams(),staleTime:1440*60*1e3,gcTime:1/0,queryFn:async()=>await y("rc_api.get_resource_params",{})})}var rr=["resource_history_bytes","resource_new_accounts","resource_market_bytes","resource_state_bytes","resource_execution_time"];var Wl=11,Gl=65,zl=16,it=e=>BigInt(typeof e=="string"?e:Math.trunc(e));function An(e,t,r,n){if(r<=0||n<=0)return 0;let o=it(e.coeff_a),i=it(e.coeff_b),s=it(e.shift),a=it(n)*o>>s;a+=1n,a*=it(r);let c=i+(t>0?it(t):0n);return c===0n?0:Number(a/c+1n)}function Pn({transactionBytes:e,permlinkLength:t,signatures:r=1,beneficiaries:n=0,hasCommentOptions:o=false},i){let s=i.resource_state_bytes,a=i.resource_execution_time;return {resource_history_bytes:e,resource_new_accounts:0,resource_market_bytes:0,resource_state_bytes:s.comment_base_size+s.comment_permlink_char_size*t+s.transaction_base_size+s.comment_beneficiaries_member_size*n,resource_execution_time:a.comment_time+a.transaction_time+a.verify_authority_time*r+(o?a.comment_options_time:0)}}var we=e=>{let t=yt(e);return he(t)+t},Jl=e=>1+we(e.parent_author)+we(e.parent_permlink)+we(e.author)+we(e.permlink)+we(e.title)+we(e.body)+we(e.json_metadata),Yl=(e,t)=>{let r=t.beneficiaries??[],n=1+we(e.author)+we(e.permlink)+zl+2+2;return n+=he(r.length>0?1:0),r.length>0&&(n+=1+he(r.length),r.forEach(o=>{n+=we(o.account)+2;})),n};function xn({op:e,options:t,signatures:r=1}){let n=[Jl(e)];return t&&n.push(Yl(e,t)),Wl+he(n.length)+n.reduce((o,i)=>o+i,0)+he(r)+Gl*r}var Xl={ready:false,cost:0,transactionBytes:0,breakdown:[]};function FR({op:e,options:t,rcParams:r,rcStats:n,signatures:o=1}){if(!r?.resource_params||!r.size_info||!n?.pool||!n.share)return Xl;let i=xn({op:e,options:t,signatures:o}),s=Pn({transactionBytes:i,permlinkLength:yt(e.permlink),signatures:o,beneficiaries:t?.beneficiaries?.length??0,hasCommentOptions:!!t},r.size_info),a=Number(n.regen),c=0,p=[];return rr.forEach((l,m)=>{let f=r.resource_params[l],g=Number(n.pool[m]??0),_=Number(n.share[m]??0);if(!f||_<=0)return;let A=s[l]*Number(f.resource_dynamics_params.resource_unit??1),x=Number(BigInt(a)*BigInt(_)/10000n),C=An(f.price_curve_params,g,A,x);c+=C,p.push({resource:l,usage:A,cost:C});}),{ready:true,cost:c,transactionBytes:i,breakdown:p}}function On(e,t,r){let n=Number(r.regen),o=0,i=[];return rr.forEach((s,a)=>{let c=t.resource_params[s],p=Number(r.pool[a]??0),l=Number(r.share[a]??0);if(!c||l<=0)return;let m=e[s]*Number(c.resource_dynamics_params.resource_unit??1),f=Number(BigInt(n)*BigInt(l)/10000n),g=An(c.price_curve_params,p,m,f);o+=g,i.push({resource:s,usage:m,cost:g});}),{cost:o,breakdown:i}}var Zl=11,ed=65,Sn=e=>{let t=yt(e);return he(t)+t},td=()=>({resource_history_bytes:0,resource_new_accounts:0,resource_market_bytes:0,resource_state_bytes:0,resource_execution_time:0});function Ti(e,t=1){let r=1+Sn(e.voter)+Sn(e.author)+Sn(e.permlink)+2;return Zl+he(1)+r+he(t)+ed*t}function Fi({transactionBytes:e,signatures:t=1},r){let n=r.resource_state_bytes,o=r.resource_execution_time;return {...td(),resource_history_bytes:e,resource_state_bytes:n.vote_size+n.transaction_base_size,resource_execution_time:o.vote_time+o.transaction_time+o.verify_authority_time*t}}var qi={ready:false,currentMana:0,maxMana:0,avgCost:0,cost:0,transactionBytes:0,estimatedCost:0,willLikelyFail:false,deficit:0,remaining:0};function VR({rcAccount:e,rcStats:t,rcParams:r,operation:n,payload:o,fallback:i="minimal",buffer:s=1.2}){if(!e||!t?.ops)return qi;let{current_mana:a,max_mana:c}=jt(e),p=rd(n,o,i,r,t);if(!p)return {...qi,currentMana:a,maxMana:c};let{cost:l,transactionBytes:m}=p,f=Number.isFinite(s)&&s>0?s:1.2,g=l*f,_=a0?{cost:r,transactionBytes:0}:null}var od={author:"aaaaaaaaaa",permlink:"aaaaaaaaaaaaaaaaaaaa",parent_author:"",parent_permlink:"hive-100000",title:"",body:"",json_metadata:"{}"},id={voter:"aaaaaaaaaa",author:"aaaaaaaaaa",permlink:"aaaaaaaaaaaaaaaaaaaa"};function WR(e,t,r){return reactQuery.queryOptions({queryKey:["games","status-check",r,e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/get-game",{method:"POST",body:JSON.stringify({game_type:r,code:t}),headers:{"Content-Type":"application/json"}})).json()}})}async function ud(e,t,r){let o=await h()(d.privateApiHost+"/private-api/post-game",{method:"POST",body:JSON.stringify({game_type:t,code:e,key:r}),headers:{"Content-Type":"application/json"}}),i=(o.headers.get("content-type")??"").split(";")[0].trim().toLowerCase(),s=await o.text();if(!o.ok){let a=s&&i.includes("json")?`: ${s.slice(0,200)}`:"";throw new Error(`[SDK][Games] \u2013 failed with status ${o.status}${a}`)}if(!i.includes("json"))throw new Error(`[SDK][Games] \u2013 expected JSON but received "${i||"empty"}" response (status ${o.status})`);try{return JSON.parse(s)}catch{throw new Error(`[SDK][Games] \u2013 malformed JSON response (status ${o.status})`)}}function XR(e,t,r,n){let{mutateAsync:o}=_n(e,"spin-rolled");return reactQuery.useMutation({mutationKey:["games","post",r,e],mutationFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return ud(t,r,n)},onSuccess(){o();}})}function rk(e){let t=e?.replace("@","");return reactQuery.queryOptions({queryKey:u.quests.status(t),enabled:!!t,queryFn:async()=>{if(!t)throw new Error("[SDK][Quests] \u2013 username wasn't provided");let n=await h()(d.privateApiHost+"/private-api/quests",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:t})});if(!n.ok)throw new Error(`Failed to fetch quests: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:true})}var pd=[{id:"checkin",tier:"daily",goal:1,i18nKey:"checkin",icon:"check-circle"},{id:"post",tier:"daily",goal:1,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"daily",goal:3,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"daily",goal:10,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"daily",goal:1,i18nKey:"reblog",icon:"repeat"},{id:"spin",tier:"daily",goal:1,i18nKey:"spin",icon:"gift"},{id:"post",tier:"weekly",goal:5,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"weekly",goal:15,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"weekly",goal:50,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"weekly",goal:5,i18nKey:"reblog",icon:"repeat"},{id:"post",tier:"monthly",goal:20,i18nKey:"post",icon:"pencil"}];function ok(e,t){return pd.find(r=>r.tier===e&&r.id===t)}var ld=25;function dd(e){return Array.from((e??"").replace(/https?:\/\/\S+/g,"")).length}function ik(e){return dd(e)>ld}var sk=300,ak=2;function gd(){return typeof crypto<"u"&&typeof crypto.randomUUID=="function"?crypto.randomUUID():`${Date.now()}-${Math.random().toString(36).slice(2)}`}async function yd(e){let r=await h()(d.privateApiHost+"/private-api/streak-freeze/buy",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e,idempotency_key:gd()})});if(!r.ok){let n;try{n=await r.json();}catch{}let o=n?.message??`Failed to buy streak freeze: ${r.status}`,i=new Error(o);throw i.status=r.status,i.data=n,i}return await r.json()}function lk(e,t){let r=reactQuery.useQueryClient(),n=e?.replace("@","");return reactQuery.useMutation({mutationKey:["streak-freeze","buy",n],mutationFn:async()=>{if(!n||!t)throw new Error("[SDK][StreakFreeze] \u2013 missing auth");return yd(t)},onSuccess(){n&&r.invalidateQueries({queryKey:u.points._prefix(n)});},onSettled(){n&&r.invalidateQueries({queryKey:u.quests.status(n)});}})}function gk(e,t,r){return v(["communities","subscribe"],e,({community:n})=>[Xr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.subscriptions(e),[...u.communities.singlePrefix(o.community)],u.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"async"})}function wk(e,t,r){return v(["communities","unsubscribe"],e,({community:n})=>[Zr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.subscriptions(e),[...u.communities.singlePrefix(o.community)],u.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"sync"})}function Pk(e,t,r){return v(["communities","mutePost"],e,({community:n,author:o,permlink:i,notes:s,mute:a})=>[nn(e,n,o,i,s,a)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.posts.entry(`/@${o.author}/${o.permlink}`),["community","single",o.community],{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.community}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"sync"})}function Ck(e,t,r,n){return v(["communities","set-role",e],t,({account:o,role:i})=>[en(t,e,o,i)],async(o,i)=>{w().setQueriesData({queryKey:u.communities.singlePrefix(e)},a=>{if(!a)return a;let c=[...a.team??[]],p=c.findIndex(([l])=>l===i.account);return p>=0?c[p]=[c[p][0],i.role,c[p][2]??""]:c.push([i.account,i.role,""]),{...a,team:c}}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...u.communities.singlePrefix(e)],u.communities.context(i.account,e)]);},r,"posting",{broadcastMode:n??"async"})}function Tk(e,t,r,n){return v(["communities","update",e],t,o=>[tn(t,e,o)],async(o,i)=>{w().setQueriesData({queryKey:u.communities.singlePrefix(e)},a=>a&&{...a,...i}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...u.communities.singlePrefix(e)]]);},r,"posting",{broadcastMode:n??"async"})}function Dk(e,t,r){return v(["communities","registerRewards"],e,({name:n})=>[yn(n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...u.communities.singlePrefix(o.name)],[...u.points._prefix(e)]]);},t,"active",{broadcastMode:r})}function Bk(e,t,r){return v(["communities","pin-post"],e,({community:n,account:o,permlink:i,pin:s})=>[rn(e,n,o,i,s)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.posts.entry(`/@${o.account}/${o.permlink}`),[...u.communities.singlePrefix(o.community)]]);},t,"posting",{broadcastMode:r??"async"})}function jk(e,t,r=100,n=void 0,o=true){return reactQuery.queryOptions({queryKey:u.communities.list(e,t??"",r),enabled:o,queryFn:async()=>{let i=await y("bridge.list_communities",{last:"",limit:r,sort:e==="hot"?"rank":e,query:t||null,observer:n});return i?e==="hot"?i.sort(()=>Math.random()-.5):i:[]}})}function zk(e,t){return reactQuery.queryOptions({queryKey:u.communities.context(e,t),enabled:!!e&&!!t,queryFn:async()=>{let r=await y("bridge.get_community_context",{account:e,name:t});return {role:r?.role??"guest",subscribed:r?.subscribed??false}}})}function eT(e,t="",r=true){return reactQuery.queryOptions({queryKey:u.communities.single(e,t),enabled:r&&!!e,queryFn:async()=>Go(e??"",t)})}var Ii=100;async function Di(e,t){return await y("bridge.list_subscribers",{community:e,limit:Ii,...t?{last:t}:{}})??[]}function sT(e){return reactQuery.queryOptions({queryKey:u.communities.subscribers(e),queryFn:async()=>Di(e,null),staleTime:6e4})}function aT(e){return reactQuery.infiniteQueryOptions({queryKey:u.communities.subscribersInfinite(e),initialPageParam:null,queryFn:async({pageParam:t})=>Di(e,t),getNextPageParam:t=>t?.length>=Ii?t[t.length-1]?.[0]??null:null,staleTime:6e4})}function mT(e,t){return reactQuery.infiniteQueryOptions({queryKey:u.communities.accountNotifications(e,t),initialPageParam:null,queryFn:async({pageParam:r})=>await y("bridge.account_notifications",{account:e,limit:t,last_id:r??void 0})??[],getNextPageParam:r=>r?.length>=t?r[r.length-1].id:null})}function hT(){return reactQuery.queryOptions({queryKey:u.communities.rewarded(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/rewarded-communities",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch rewarded communities: ${e.status}`);return e.json()}})}var xd=(s=>(s.OWNER="owner",s.ADMIN="admin",s.MOD="mod",s.MEMBER="member",s.GUEST="guest",s.MUTED="muted",s))(xd||{}),wT={owner:["admin","mod","member","guest","muted"],admin:["mod","member","guest","muted"],mod:["member","guest","muted"]};function vT(e,t){return e.startsWith("hive-3")||t===3?"Council":e.startsWith("hive-2")||t===2?"Journal":"Topic"}function AT({communityType:e,userRole:t,subscribed:r}){let n=t==="muted"?false:e==="Topic"?true:["owner","admin","mod","member"].includes(t),o=(()=>{if(t==="muted")return false;switch(e){case "Topic":return true;case "Journal":return t!=="guest"||r;case "Council":return n}})(),i=["owner","admin","mod"].includes(t);return {canPost:n,canComment:o,isModerator:i}}function ST(e,t){return reactQuery.queryOptions({queryKey:u.notifications.unreadCount(e),queryFn:async()=>{if(!t)throw new Error("Missing access token");return (await(await fetch(`${d.privateApiHost}/private-api/notifications/unread`,{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json()).count},enabled:!!e&&!!t,placeholderData:0,refetchInterval:6e4})}function kT(e,t,r=void 0){return reactQuery.infiniteQueryOptions({queryKey:u.notifications.list(e,r),queryFn:async({pageParam:n})=>{if(!t)return [];let o={code:t,filter:r,since:n,user:void 0},i=await fetch(d.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});if(!i.ok)return [];try{return await i.json()}catch{return []}},enabled:!!e&&!!t,initialPageParam:"",getNextPageParam:n=>n?.[n.length-1]?.id??"",refetchOnMount:true})}var Cd=(_=>(_.VOTES="rvotes",_.MENTIONS="mentions",_.FAVORITES="nfavorites",_.BOOKMARKS="nbookmarks",_.FOLLOWS="follows",_.REPLIES="replies",_.REBLOGS="reblogs",_.TRANSFERS="transfers",_.DELEGATIONS="delegations",_.PAYOUTS="payouts",_.SCHEDULED_PUBLISHED="scheduled_published",_.ACCOUNT_UPDATES="account_updates",_.WEEKLY_EARNINGS="weekly_earnings",_.TAGS="tags",_))(Cd||{});var Ed=(A=>(A[A.VOTE=1]="VOTE",A[A.MENTION=2]="MENTION",A[A.FOLLOW=3]="FOLLOW",A[A.COMMENT=4]="COMMENT",A[A.RE_BLOG=5]="RE_BLOG",A[A.TRANSFERS=6]="TRANSFERS",A[A.DELEGATIONS=10]="DELEGATIONS",A[A.FAVORITES=13]="FAVORITES",A[A.BOOKMARKS=15]="BOOKMARKS",A[A.PAYOUTS=19]="PAYOUTS",A[A.ACCOUNT_UPDATE=20]="ACCOUNT_UPDATE",A[A.WEEKLY_EARNINGS=21]="WEEKLY_EARNINGS",A[A.SCHEDULED_PUBLISHED=22]="SCHEDULED_PUBLISHED",A[A.TAGS=23]="TAGS",A.ALLOW_NOTIFY="ALLOW_NOTIFY",A))(Ed||{}),Ki=[1,2,3,4,5,6,10,13,15,19,20,21,22,23],Rd=(n=>(n.ALL="All",n.UNREAD="Unread",n.READ="Read",n))(Rd||{});function NT(e,t,r){return reactQuery.queryOptions({queryKey:u.notifications.settings(e),queryFn:async()=>{let n=e+"-web";if(!t)throw new Error("Missing access token");let o=await fetch(d.privateApiHost+"/private-api/detail-device",{body:JSON.stringify({code:t,username:e,token:n}),method:"POST",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch notification settings: ${o.status}`);return o.json()},enabled:!!e&&!!t,refetchOnMount:false,initialData:()=>({status:0,system:"web",allows_notify:0,notify_types:r?[]:[...Ki]})})}function UT(){return reactQuery.queryOptions({queryKey:u.notifications.announcements(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/announcements",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch announcements: ${e.status}`);return await e.json()||[]},staleTime:36e5})}function LT(e){return reactQuery.queryOptions({queryKey:u.notifications.spotlights(),queryFn:async()=>{let t=await fetch(d.privateApiHost+"/private-api/spotlights",{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch spotlights: ${t.status}`);return await t.json()||[]},staleTime:36e5})}function Id(e,t){return {...e,read:!t||t===e.id?1:e.read}}function Ni(e){return typeof e=="object"&&e!==null&&"pages"in e&&"pageParams"in e&&Array.isArray(e.pages)}function XT(e,t,r,n){let o=w();return reactQuery.useMutation({mutationKey:["notifications","mark-read",e],mutationFn:async({id:i})=>{if(!e||!t){process.env.NODE_ENV!=="production"&&console.warn("[SDK][Notifications] \u2013 missing auth for markNotifications");return}return _i(t,i)},onMutate:async({id:i})=>{if(!e||!t)return {previousData:[]};await o.cancelQueries({queryKey:u.notifications._prefix});let s=[],a=o.getQueriesData({queryKey:u.notifications._prefix,predicate:l=>{let m=l.state.data;return Ni(m)}});a.forEach(([l,m])=>{if(m&&Ni(m)){s.push([l,m]);let f={...m,pages:m.pages.map(g=>g.map(_=>Id(_,i)))};o.setQueryData(l,f);}});let c=u.notifications.unreadCount(e),p=o.getQueryData(c);return typeof p=="number"&&p>0&&(s.push([c,p]),i?a.some(([,m])=>m?.pages.some(f=>f.some(g=>g.id===i&&g.read===0)))&&o.setQueryData(c,p-1):o.setQueryData(c,0)),{previousData:s}},onSuccess:i=>{let s=typeof i=="object"&&i!==null?i.unread:void 0;typeof s=="number"&&o.setQueryData(u.notifications.unreadCount(e),s),r?.(s);},onError:(i,s,a)=>{a?.previousData&&a.previousData.forEach(([c,p])=>{o.setQueryData(c,p);}),n?.(i);},onSettled:()=>{o.invalidateQueries({queryKey:u.notifications._prefix});}})}function rF(e,t,r){return v(["notifications","set-last-read"],e,({date:n})=>Wr(e,n),async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.notifications.unreadCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function sF(e){return reactQuery.queryOptions({queryKey:["proposals","proposal",e],queryFn:async()=>{let r=(await y("condenser_api.find_proposals",[[e]]))[0];return new Date(r.start_date)=new Date?r.status="active":new Date(r.end_date){let t=(await y("database_api.list_proposals",{start:[-1],limit:500,order:"by_total_votes",order_direction:"descending",status:"all"})).proposals,r=t.filter(o=>o.status==="expired");return [...t.filter(o=>o.status!=="expired"),...r]}})}function yF(e,t,r){return reactQuery.infiniteQueryOptions({queryKey:["proposals","votes",e,t,r],initialPageParam:t,refetchOnMount:true,staleTime:0,queryFn:async({pageParam:n})=>{let s=(await y("condenser_api.list_proposal_votes",[[e,n??t],r,"by_proposal_voter"])).filter(l=>l.proposal?.proposal_id===e).map(l=>({id:l.id,voter:l.voter})),a=await y("condenser_api.get_accounts",[s.map(l=>l.voter)]),c=Gt(a);return s.map(l=>({...l,voterAccount:c.find(m=>l.voter===m.name)}))},getNextPageParam:n=>n?.[n.length-1]?.voter??void 0})}function bF(e){return reactQuery.queryOptions({queryKey:["proposals","votes","by-user",e],enabled:!!e&&e!=="",staleTime:60*1e3,queryFn:async()=>!e||e===""?[]:((await y("database_api.list_proposal_votes",{start:[e],limit:1e3,order:"by_voter_proposal",order_direction:"ascending",status:"votable"})).proposal_votes||[]).filter(n=>n.voter===e)})}function xF(e,t,r){return v(["proposals","vote"],e,({proposalIds:n,approve:o})=>[Yr(e,n,o)],async n=>{try{let o=n?.id??n?.tx_id;t?.adapter?.recordActivity&&o&&t.adapter.recordActivity(150,o,n?.block_num).catch(i=>{console.debug("[SDK][Proposals][useProposalVote] recordActivity failed",{activityType:150,blockNum:n?.block_num,transactionId:o,error:i});}),t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.proposals.list(),u.proposals.votesByUser(e)]);}catch(o){console.warn("[useProposalVote] Post-broadcast side-effect failed:",o);}},t,"active",{broadcastMode:r})}function EF(e,t,r){return v(["proposals","create"],e,n=>[Jr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.proposals.list()]);},t,"active",{broadcastMode:r})}function FF(e,t=50){return reactQuery.infiniteQueryOptions({queryKey:["wallet","vesting-delegations",e,t],initialPageParam:"",queryFn:async({pageParam:r})=>{let n=r?t+1:t,o=await y("condenser_api.get_vesting_delegations",[e,r||"",n]);return r&&o.length>0&&o[0]?.delegatee===r?o.slice(1,t+1):o},getNextPageParam:r=>!r||r.lengthte("balance","/accounts/{account-name}/delegations",{"account-name":e},void 0,void 0,t)})}function BF(e){return reactQuery.queryOptions({queryKey:["wallet","vesting-delegation-expirations",e],queryFn:async()=>e?(await y("database_api.find_vesting_delegation_expirations",{account:e})).delegations:[],enabled:!!e})}function VF(e){return reactQuery.queryOptions({queryKey:["wallet","conversion-requests",e],queryFn:()=>y("condenser_api.get_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function WF(e){return reactQuery.queryOptions({queryKey:["wallet","collateralized-conversion-requests",e],queryFn:()=>y("condenser_api.get_collateralized_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function YF(e){return reactQuery.queryOptions({queryKey:["wallet","savings-withdraw",e],queryFn:()=>y("condenser_api.get_savings_withdraw_from",[e]),select:t=>t.sort((r,n)=>r.request_id-n.request_id)})}function tq(e){return reactQuery.queryOptions({queryKey:["wallet","withdraw-routes",e],queryFn:()=>y("condenser_api.get_withdraw_routes",[e,"outgoing"])})}function iq(e){return reactQuery.queryOptions({queryKey:["wallet","open-orders",e],queryFn:()=>y("condenser_api.get_open_orders",[e]),select:t=>t.sort((r,n)=>r.orderid-n.orderid),enabled:!!e})}function pq(e,t=100){return reactQuery.infiniteQueryOptions({queryKey:["wallet","outgoing-rc-delegations",e,t],initialPageParam:null,queryFn:async({pageParam:r})=>{let o=(await y("rc_api.list_rc_direct_delegations",{start:[e,r??""],limit:t}).then(i=>i)).rc_direct_delegations||[];return r&&(o=o.filter(i=>i.to!==r)),o},getNextPageParam:r=>r.length===t?r[r.length-1].to:null})}function fq(e){return reactQuery.queryOptions({queryKey:["wallet","incoming-rc",e],enabled:!!e,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] - Missing username for incoming RC");let r=await h()(`${d.privateApiHost}/private-api/received-rc/${e}`);if(!r.ok)throw new Error(`Failed to fetch incoming RC: ${r.status}`);return r.json()}})}function zd(e){let r=(String(e).replace(/\D/g,"")||"0").padStart(7,"0");return `${r.slice(0,-6).replace(/^0+(?=\d)/,"")}.${r.slice(-6)} VESTS`}function or(e,t){return (t?.incoming_delegations??[]).map(r=>({delegator:r.delegator,raw:BigInt(String(r.amount).replace(/\D/g,"")||"0")})).sort((r,n)=>r.raw===n.raw?0:r.raw>n.raw?-1:1).map(({delegator:r,raw:n})=>({delegatee:e,delegator:r,vesting_shares:zd(n)}))}function vq(e){return reactQuery.queryOptions({queryKey:u.wallet.receivedVestingShares(e),enabled:!!e,queryFn:async()=>or(e,await w().fetchQuery({...nr(e),staleTime:6e4}))})}function Oq(e){return reactQuery.queryOptions({queryKey:["wallet","recurrent-transfers",e],queryFn:()=>y("condenser_api.find_recurrent_transfers",[e]),enabled:!!e})}function me(e){if(typeof e=="string"){let t=e.trim();return t.length>0?t:void 0}}function ue(e){if(typeof e=="number"&&Number.isFinite(e))return e;if(typeof e=="string"){let t=e.trim();if(!t)return;let r=Number.parseFloat(t);if(Number.isFinite(r))return r;let o=t.replace(/,/g,"").match(/[-+]?\d+(?:\.\d+)?/);if(o){let i=Number.parseFloat(o[0]);if(Number.isFinite(i))return i}}}function Zd(e){if(!e||typeof e!="object")return;let t=e;return {name:me(t.name)??"",symbol:me(t.symbol)??"",layer:me(t.layer)??"hive",balance:ue(t.balance)??0,fiatRate:ue(t.fiatRate)??0,currency:me(t.currency)??"usd",precision:ue(t.precision)??3,address:me(t.address),error:me(t.error),pendingRewards:ue(t.pendingRewards),pendingRewardsFiat:ue(t.pendingRewardsFiat),liquid:ue(t.liquid),liquidFiat:ue(t.liquidFiat),savings:ue(t.savings),savingsFiat:ue(t.savingsFiat),staked:ue(t.staked),stakedFiat:ue(t.stakedFiat),iconUrl:me(t.iconUrl),actions:t.actions??[],extraData:t.extraData??[],apr:ue(t.apr)}}function em(e){if(!e||typeof e!="object")return [];let t=[e],r=e;r.data&&typeof r.data=="object"&&t.push(r.data),r.result&&typeof r.result=="object"&&t.push(r.result),r.portfolio&&typeof r.portfolio=="object"&&t.push(r.portfolio);for(let n of t){if(Array.isArray(n))return n;if(n&&typeof n=="object")for(let o of ["wallets","tokens","assets","items","portfolio","balances"]){let i=n[o];if(Array.isArray(i))return i}}return []}function tm(e){if(!e||typeof e!="object")return;let t=e;return me(t.username)??me(t.name)??me(t.account)}function Mi(e,t="usd",r=true){return reactQuery.queryOptions({queryKey:["wallet","portfolio","v2",e,r?"only-enabled":"all",t],enabled:!!e,staleTime:6e4,refetchInterval:12e4,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] \u2013 username is required");let n=`${exports.ConfigManager.getValidatedBaseUrl()}/wallet-api/portfolio-v2`,o=await fetch(n,{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({username:e,onlyEnabled:r,currency:t})});if(!o.ok)throw new Error(`[SDK][Wallet] \u2013 Portfolio request failed (${o.status})`);let i=await o.json(),s=em(i).map(a=>Zd(a)).filter(a=>!!a).filter(a=>a.layer!=="spk");if(!s.length)throw new Error("[SDK][Wallet] \u2013 Portfolio payload contained no tokens");return {username:tm(i)??e,currency:me(i?.fiatCurrency??i?.currency)?.toUpperCase(),wallets:s}}})}function ir(e){return reactQuery.queryOptions({queryKey:["assets","hive","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(Oe().queryKey),r=w().getQueryData(M(e).queryKey),n=await y("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??"");if(!r)return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:0};let i=T(r.balance).amount,s=T(r.savings_balance).amount;return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:i+s,parts:[{name:"current",balance:i},{name:"savings",balance:s}]}}})}function Bi(e){return reactQuery.queryOptions({queryKey:["assets","hbd","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(M(e).queryKey),r=w().getQueryData(Oe().queryKey),n=1;return t?{name:"HBD",title:"Hive Dollar",price:n,accountBalance:T(t.hbd_balance).amount+T(t?.savings_hbd_balance).amount,apr:((r?.hbdInterestRate??0)/100).toFixed(3),parts:[{name:"current",balance:T(t.hbd_balance).amount},{name:"savings",balance:T(t.savings_hbd_balance).amount}]}:{name:"HBD",title:"Hive Dollar",price:n,accountBalance:0}}})}function im(e){let c=9.5-(e.headBlock-7e6)/25e4*.01;c<.95&&(c=.95);let p=e.vestingRewardPercent/1e4,l=e.virtualSupply,m=e.totalVestingFund;return (l*c*p/m).toFixed(3)}function Qi(e){return reactQuery.queryOptions({queryKey:["assets","hive-power","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(Oe().queryKey),r=w().getQueryData(M(e).queryKey);if(!t||!r)return {name:"HP",title:"Hive Power",price:0,accountBalance:0};let n=await y("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??""),i=Number.isFinite(o)?o:t.base/t.quote,s=T(r.vesting_shares).amount,a=T(r.delegated_vesting_shares).amount,c=T(r.received_vesting_shares).amount,p=T(r.vesting_withdraw_rate).amount,l=Math.max((Number(r.to_withdraw)-Number(r.withdrawn))/1e6,0),m=Fo(r.next_vesting_withdrawal)?0:Math.min(p,l),f=+Ze(s,t.hivePerMVests).toFixed(3),g=+Ze(a,t.hivePerMVests).toFixed(3),_=+Ze(c,t.hivePerMVests).toFixed(3),A=+Ze(l,t.hivePerMVests).toFixed(3),x=+Ze(m,t.hivePerMVests).toFixed(3),C=Math.max(f-A,0),F=Math.max(f-g,0);return {name:"HP",title:"Hive Power",price:i,accountBalance:+C.toFixed(3),apr:im(t),parts:[{name:"hp_balance",balance:f},{name:"available",balance:+F.toFixed(3)},{name:"outgoing_delegations",balance:g},{name:"incoming_delegations",balance:_},...A>0?[{name:"pending_power_down",balance:+A.toFixed(3)}]:[],...x>0&&x!==A?[{name:"next_power_down",balance:+x.toFixed(3)}]:[]]}}})}var N=oe.operations,Cn={transfers:[N.transfer,N.transfer_to_savings,N.transfer_from_savings,N.cancel_transfer_from_savings,N.recurrent_transfer,N.fill_recurrent_transfer,N.escrow_transfer,N.fill_recurrent_transfer],"market-orders":[N.fill_convert_request,N.fill_order,N.fill_collateralized_convert_request,N.limit_order_create2,N.limit_order_create,N.limit_order_cancel],interests:[N.interest],"stake-operations":[N.return_vesting_delegation,N.withdraw_vesting,N.transfer_to_vesting,N.set_withdraw_vesting_route,N.update_proposal_votes,N.fill_vesting_withdraw,N.account_witness_proxy,N.delegate_vesting_shares],rewards:[N.author_reward,N.curation_reward,N.producer_reward,N.claim_reward_balance,N.comment_benefactor_reward,N.liquidity_reward,N.proposal_pay],"":[]};var Jq=Object.keys(oe.operations);var Ui=oe.operations,Zq=Ui,eI=Object.entries(Ui).reduce((e,[t,r])=>(e[r]=t,e),{});var Hi=oe.operations;function am(e){return Object.prototype.hasOwnProperty.call(Hi,e)}function xt(e){let t=Array.isArray(e)?e:[e],r=t.includes(""),n=Array.from(new Set(t.filter(a=>a!=null&&a!==""))),o=r||n.length===0?"all":n.map(a=>a.toString()).sort().join("|"),i=new Set;r||n.forEach(a=>{if(a in Cn){Cn[a].forEach(c=>i.add(c));return}am(a)&&i.add(Hi[a]);});let s=pm(Array.from(i));return {filterKey:o,filterArgs:s}}function En(e){let t=Array.isArray(e)?e:[e];return new Set(t.filter(r=>r!=null&&r!==""))}function um(e){if(!e?.length)return;let t=Number(e[0]?.num??0);return Number.isFinite(t)&&t>0?t-1:void 0}function cm(e,t){return !Number.isFinite(e)||e<0?t:Math.min(t,e+1)}function pm(e){let t=0n,r=0n;return e.forEach(n=>{n<64?t|=1n<(await y("condenser_api.get_account_history",[e,s,cm(Number(s),t),...n])).map(c=>({num:c[0],type:c[1].op[0],timestamp:c[1].timestamp,trx_id:c[1].trx_id,...c[1].op[1]})),select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(c=>c.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return T(p.hive_payout).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return T(p.amount).symbol==="HIVE";case "transfer_from_savings":case "fill_transfer_from_savings":return T(p.amount).symbol==="HIVE";case "fill_recurrent_transfer":let m=T(p.amount);return ["HIVE"].includes(m.symbol);case "claim_reward_balance":return T(p.reward_hive).amount>0;case "curation_reward":case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":return true;case "limit_order_create2":return true;default:return i.has(p.type)}}))})})}function lI(e,t=20,r=[]){let{filterKey:n}=xt(r),o=En(r);return reactQuery.infiniteQueryOptions({...sr(e,t,r),queryKey:["assets","hbd","transactions",e,t,n],select:({pages:i,pageParams:s})=>({pageParams:s,pages:i.map(a=>a.filter(c=>{switch(c.type){case "author_reward":case "comment_benefactor_reward":return T(c.hbd_payout).amount>0;case "claim_reward_balance":return T(c.reward_hbd).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return T(c.amount).symbol==="HBD";case "transfer_from_savings":case "fill_transfer_from_savings":return T(c.amount).symbol==="HBD";case "fill_recurrent_transfer":let m=T(c.amount);return ["HBD"].includes(m.symbol);case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":case "proposal_pay":case "interest":return true;case "limit_order_create2":return true;default:return o.has(c.type)}}))})})}function yI(e,t=20,r=[]){let{filterKey:n}=xt(r),o=new Set(Array.isArray(r)?r:[r]),i=o.has("")||o.size===0;return reactQuery.infiniteQueryOptions({...sr(e,t,r),queryKey:["assets","hive-power","transactions",e,t,n],select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(c=>c.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return T(p.vesting_payout).amount>0;case "claim_reward_balance":return T(p.reward_vests).amount>0;case "transfer_to_vesting":return true;case "transfer":case "transfer_to_savings":case "recurrent_transfer":return ["VESTS","HP"].includes(T(p.amount).symbol);case "fill_recurrent_transfer":let f=T(p.amount);return ["VESTS","HP"].includes(f.symbol);case "curation_reward":case "withdraw_vesting":case "delegate_vesting_shares":case "fill_vesting_withdraw":case "return_vesting_delegation":case "producer_reward":case "set_withdraw_vesting_route":return true;default:return i||o.has(p.type)}}))})})}function Vi(e){let t=r=>r.toString().padStart(2,"0");return `${e.getFullYear()}-${t(e.getMonth()+1)}-${t(e.getDate())}T${t(e.getHours())}:${t(e.getMinutes())}:${t(e.getSeconds())}`}function Rn(e,t){return new Date(e.getTime()-t*1e3)}function bI(e=86400){return reactQuery.infiniteQueryOptions({queryKey:["assets","hive","metrics",e],queryFn:async({pageParam:[t,r]})=>(await y("condenser_api.get_market_history",[e,Vi(t),Vi(r)])).map(({hive:o,non_hive:i,open:s})=>({close:i.close/o.close,open:i.open/o.open,low:i.low/o.low,high:i.high/o.high,volume:o.volume,time:new Date(s)})),initialPageParam:[Rn(new Date,Math.max(100*e,28800)),new Date],getNextPageParam:(t,r,[n])=>[Rn(n,Math.max(100*e,28800)),Rn(n,e)]})}function xI(e){return reactQuery.queryOptions({queryKey:["assets","hive","withdrawal-routes",e],queryFn:()=>y("condenser_api.get_withdraw_routes",[e,"outgoing"]),enabled:!!e})}function EI(e,t=50){return reactQuery.queryOptions({queryKey:["assets","hive-power","delegates",e],enabled:!!e,queryFn:()=>y("condenser_api.get_vesting_delegations",[e,"",t])})}function II(e){return reactQuery.queryOptions({queryKey:u.assets.hivePowerDelegatings(e),enabled:!!e,queryFn:async()=>or(e,await w().fetchQuery({...nr(e),staleTime:6e4}))})}function MI(e=500){return reactQuery.queryOptions({queryKey:["market","order-book",e],queryFn:()=>y("condenser_api.get_order_book",[e])})}function HI(){return reactQuery.queryOptions({queryKey:["market","statistics"],queryFn:()=>y("condenser_api.get_ticker",[])})}function $I(e,t,r){let n=o=>o.toISOString().replace(/\.\d{3}Z$/,"");return reactQuery.queryOptions({queryKey:["market","history",e,t.getTime(),r.getTime()],queryFn:()=>y("condenser_api.get_market_history",[e,n(t),n(r)])})}function JI(){return reactQuery.queryOptions({queryKey:["market","hive-hbd-stats"],queryFn:async()=>{let e=await y("condenser_api.get_ticker",[]),t=new Date,r=new Date(t.getTime()-864e5),n=s=>s.toISOString().replace(/\.\d{3}Z$/,""),o=await y("condenser_api.get_market_history",[86400,n(r),n(t)]);return {price:+e.latest,close:o[0]?o[0].non_hive.open/o[0].hive.open:0,high:o[0]?o[0].non_hive.high/o[0].hive.high:0,low:o[0]?o[0].non_hive.low/o[0].hive.low:0,percent:o[0]?100-o[0].non_hive.open/o[0].hive.open*100/+e.latest:0,totalFromAsset:e.hive_volume.split(" ")[0],totalToAsset:e.hbd_volume.split(" ")[0]}}})}function eD(e,t,r,n){return reactQuery.queryOptions({queryKey:["market","data",e,t,r,n],queryFn:async({signal:o})=>{let i=h(),s=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,a=await i(s,{signal:o});if(!a.ok)throw new Error(`Failed to fetch market data: ${a.status}`);return a.json()}})}function ji(e){return e.toISOString().replace(/\.\d{3}Z$/,"")}function oD(e=1e3,t,r){let n=r??new Date,o=t??new Date(n.getTime()-600*60*1e3);return reactQuery.queryOptions({queryKey:["market","trade-history",e,o.getTime(),n.getTime()],queryFn:()=>y("condenser_api.get_trade_history",[ji(o),ji(n),e])})}function uD(){return reactQuery.queryOptions({queryKey:["market","feed-history"],queryFn:async()=>{try{return await y("condenser_api.get_feed_history",[])}catch(e){throw e}}})}function dD(){return reactQuery.queryOptions({queryKey:["market","current-median-history-price"],queryFn:async()=>{try{return await y("condenser_api.get_current_median_history_price",[])}catch(e){throw e}}})}function yD(e,t,r){return v(["market","limit-order-create"],e,n=>[Xt(e,n.amountToSell,n.minToReceive,n.fillOrKill,n.expiration,n.orderId)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function bD(e,t,r){return v(["market","limit-order-cancel"],e,({orderId:n})=>[on(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}async function Ot(e){let t=await e.json();if(!e.ok){let r=new Error(`Request failed with status ${e.status}`);throw r.status=e.status,r.data=t,r}return t}async function PD(e,t,r,n){let o=h(),i=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,s=await o(i);return Ot(s)}async function Li(e){if(e==="hbd")return 1;let t=h(),r=`https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${e}`,n=await t(r);return (await Ot(n)).hive_dollar[e]}async function xD(e,t){let n=await h()(d.privateApiHost+`/private-api/market-data/${e==="hbd"?"usd":e}/${t}`);return Ot(n)}async function OD(){let t=await h()(d.privateApiHost+"/private-api/market-data/latest");return Ot(t)}async function SD(){let t=await h()("https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd");return Ot(t)}var Om={"Content-type":"application/json"};async function Sm(e){let t=h(),r=exports.ConfigManager.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-api`,{method:"POST",body:JSON.stringify(e),headers:Om});if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 request failed with ${n.status}`);return (await n.json()).result}async function De(e,t){try{return await Sm(e)}catch{return t}}async function RD(e,t=50){let r={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:e},limit:t,offset:0},id:1},[n,o]=await Promise.all([De({...r,params:{...r.params,table:"buyBook",indexes:[{index:"price",descending:true}]}},[]),De({...r,params:{...r.params,table:"sellBook",indexes:[{index:"price",descending:false}]}},[])]),i=a=>a.sort((c,p)=>{let l=Number(c.price??0);return Number(p.price??0)-l}),s=a=>a.sort((c,p)=>{let l=Number(c.price??0),m=Number(p.price??0);return l-m});return {buy:i(n),sell:s(o)}}async function kD(e,t=50){return De({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"tradesHistory",query:{symbol:e},limit:t,offset:0,indexes:[{index:"timestamp",descending:true}]},id:1},[])}async function TD(e,t,r=100){let n={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:t,account:e},limit:r,offset:0},id:1},[o,i]=await Promise.all([De({...n,params:{...n.params,table:"buyBook",indexes:[{index:"timestamp",descending:true}]}},[]),De({...n,params:{...n.params,table:"sellBook",indexes:[{index:"timestamp",descending:true}]}},[])]),s=(p,l)=>(Number(p||0)*Number(l||0)).toFixed(8),a=o.map(p=>({id:p.txId,type:"buy",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:p.tokensLocked??s(p.quantity,p.price),timestamp:Number(p.timestamp??0)})),c=i.map(p=>({id:p.txId,type:"sell",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:s(p.quantity,p.price),timestamp:Number(p.timestamp??0)}));return [...a,...c].sort((p,l)=>l.timestamp-p.timestamp)}async function Cm(e,t){if(Array.isArray(e)&&e.length===0)return [];let r=Array.isArray(e)?{symbol:{$in:e}}:e?{symbol:e}:{};return De({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"metrics",query:{...r,...t?{account:t}:{}}},id:1},[])}async function st(e,t){return Cm(t,e)}async function ar(e){return De({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"balances",query:{account:e}},id:1},[])}async function ur(e){return De({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"tokens",query:{symbol:{$in:e}}},id:2},[])}async function $i(e,t,r,n){let o=h(),i=exports.ConfigManager.getValidatedBaseUrl(),s=new URL("/private-api/engine-account-history",i);s.searchParams.set("account",e),s.searchParams.set("symbol",t),s.searchParams.set("limit",r.toString()),s.searchParams.set("offset",n.toString());let a=await o(s.toString(),{method:"GET",headers:{"Content-type":"application/json"}});if(!a.ok)throw new Error(`[SDK][HiveEngine] \u2013 account history failed with ${a.status}`);return await a.json()}async function Wi(e,t="daily"){let r=h(),n=exports.ConfigManager.getValidatedBaseUrl(),o=new URL("/private-api/engine-chart-api",n);o.searchParams.set("symbol",e),o.searchParams.set("interval",t);let i=await r(o.toString(),{headers:{"Content-type":"application/json"}});if(!i.ok)throw new Error(`[SDK][HiveEngine] \u2013 chart failed with ${i.status}`);return await i.json()}async function Gi(e){let t=h(),r=exports.ConfigManager.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-reward-api/${e}?hive=1`);if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 rewards failed with ${n.status}`);return await n.json()}function cr(e){return reactQuery.queryOptions({queryKey:["assets","hive-engine","balances",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>ar(e)})}function MD(){return reactQuery.queryOptions({queryKey:["assets","hive-engine","markets"],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>st()})}function zi(e){return reactQuery.queryOptions({queryKey:["assets","hive-engine","metadata-list",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>ur(e)})}function LD(e,t,r=20){return reactQuery.infiniteQueryOptions({queryKey:["assets","hive-engine",t,"transactions",e],enabled:!!t&&!!e,initialPageParam:0,queryFn:async({pageParam:n})=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");return $i(e,t,r,n)},getNextPageParam:(n,o,i)=>(n?.length??0)===r?i+r:void 0,getPreviousPageParam:(n,o,i)=>i>0?i-r:void 0})}function zD(e,t="daily"){return reactQuery.queryOptions({queryKey:["assets","hive-engine",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>Wi(e,t)})}function ZD(e){return reactQuery.queryOptions({queryKey:["assets","hive-engine","unclaimed",e],staleTime:6e4,refetchInterval:9e4,enabled:!!e,queryFn:async()=>{try{let t=await Gi(e);return Object.values(t).filter(({pending_token:r})=>r>0)}catch{return []}}})}function Ji(e,t){return reactQuery.queryOptions({queryKey:["assets","hive-engine","all-tokens",e,t],queryFn:async()=>st(e,t)})}function at(e,t=void 0){let r={fractionDigits:3,prefix:"",suffix:""};t&&(r={...r,...t});let{fractionDigits:n,prefix:o,suffix:i}=r,s="";o&&(s+=o+" ");let a=Math.abs(parseFloat(e.toString()))<1e-4?0:e,c=typeof a=="string"?parseFloat(a):a;return s+=c.toLocaleString("en-US",{minimumFractionDigits:n,maximumFractionDigits:n,useGrouping:true}),i&&(s+=" "+i),s}var pr=class{symbol;name;icon;precision;stakingEnabled;delegationEnabled;balance;stake;stakedBalance;delegationsIn;delegationsOut;usdValue;constructor(t){this.symbol=t.symbol,this.name=t.name||"",this.icon=t.icon||"",this.precision=t.precision||0,this.stakingEnabled=t.stakingEnabled||false,this.delegationEnabled=t.delegationEnabled||false,this.balance=parseFloat(t.balance)||0,this.stake=parseFloat(t.stake)||0,this.delegationsIn=parseFloat(t.delegationsIn)||0,this.delegationsOut=parseFloat(t.delegationsOut)||0,this.stakedBalance=this.stake+this.delegationsIn-this.delegationsOut,this.usdValue=t.usdValue;}hasDelegations=()=>this.delegationEnabled?this.delegationsIn>0&&this.delegationsOut>0:false;delegations=()=>this.hasDelegations()?`(${at(this.stake,{fractionDigits:this.precision})} + ${at(this.delegationsIn,{fractionDigits:this.precision})} - ${at(this.delegationsOut,{fractionDigits:this.precision})})`:"";staked=()=>this.stakingEnabled?this.stakedBalance<1e-4?this.stakedBalance.toString():at(this.stakedBalance,{fractionDigits:this.precision}):"-";balanced=()=>this.balance<1e-4?this.balance.toString():at(this.balance,{fractionDigits:this.precision})};function pK(e,t,r){return reactQuery.queryOptions({queryKey:["assets","hive-engine","balances-with-usd",e,t,r],queryFn:async()=>{if(!e)throw new Error("[HiveEngine] No account in a balances query");let n=await ar(e),o=await ur(n.map(p=>p.symbol)),i=t?t.base/t.quote:0,s=Array.isArray(r)?r:[],a=n.map(p=>p.symbol).filter(p=>p!=="SWAP.HIVE"&&!s.some(l=>l.symbol===p)),c=[...s,...a.length?await st(void 0,a):[]];return n.map(p=>{let l=o.find(x=>x.symbol===p.symbol),m;if(l?.metadata)try{m=JSON.parse(l.metadata);}catch{m=void 0;}let f=c.find(x=>x.symbol===p.symbol),g=Number(f?.lastPrice??"0"),_=Number(p.balance),A=p.symbol==="SWAP.HIVE"?i*_:g===0?0:Number((g*i*_).toFixed(10));return new pr({symbol:p.symbol,name:l?.name??p.symbol,icon:m?.icon??"",precision:l?.precision??0,stakingEnabled:l?.stakingEnabled??false,delegationEnabled:l?.delegationEnabled??false,balance:p.balance,stake:p.stake,delegationsIn:p.delegationsIn,delegationsOut:p.delegationsOut,usdValue:A})})},enabled:!!e})}function Yi(e,t){return reactQuery.queryOptions({queryKey:["assets","hive-engine",t,"general-info",e],enabled:!!t&&!!e,staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");let r=w(),n=ir(e);await r.prefetchQuery(n);let o=r.getQueryData(n.queryKey),i=await r.ensureQueryData(zi([t])),s=await r.ensureQueryData(cr(e)),a=await r.ensureQueryData(Ji(void 0,t)),c=i?.find(x=>x.symbol===t),p=s?.find(x=>x.symbol===t),m=+(a?.find(x=>x.symbol===t)?.lastPrice??"0"),f=parseFloat(p?.balance??"0"),g=parseFloat(p?.stake??"0"),_=parseFloat(p?.pendingUnstake??"0"),A=[{name:"liquid",balance:f},{name:"staked",balance:g}];return _>0&&A.push({name:"unstaking",balance:_}),{name:t,title:c?.name??"",price:m===0?0:Number(m*(o?.price??0)),accountBalance:f+g,layer:"ENGINE",parts:A}}})}function St(e,t=0){return reactQuery.queryOptions({queryKey:["points",e,t],queryFn:async()=>{if(!e)throw new Error("Get points query \u2013 username wasn't provided");let r=e.replace("@",""),n=await fetch(d.privateApiHost+"/private-api/points",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r})});if(!n.ok)throw new Error(`Failed to fetch points: ${n.status}`);let o=await n.json(),i=await fetch(d.privateApiHost+"/private-api/point-list",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r,type:t})});if(!i.ok)throw new Error(`Failed to fetch point transactions: ${i.status}`);let s=await i.json();return {points:o.points,uPoints:o.unclaimed_points,transactions:s}},staleTime:3e4,refetchOnMount:true,enabled:!!e})}function Xi(e){return reactQuery.queryOptions({queryKey:["assets","points","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>(await w().prefetchQuery(St(e)),{name:"POINTS",title:"Ecency Points",price:.002,accountBalance:+(w().getQueryData(St(e).queryKey)?.points??0)})})}function EK(e,t){return reactQuery.queryOptions({queryKey:["assets","points","transactions",e,t],queryFn:async()=>(await(await fetch(`${d.privateApiHost}/private-api/point-list`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,type:t??0})})).json()).map(({created:o,type:i,amount:s,id:a,sender:c,receiver:p,memo:l})=>({created:new Date(o),type:i,results:[{amount:parseFloat(s),asset:"POINTS"}],id:a,from:c??void 0,to:p??void 0,memo:l??void 0}))})}function QK(e,t,r={refetch:false}){let n=w(),o=r.currency??"usd",i=async p=>(r.refetch?await n.fetchQuery(p):await n.prefetchQuery(p),n.getQueryData(p.queryKey)),s=async p=>{if(!p||o==="usd")return p;try{let l=await Li(o);return {...p,price:p.price*l}}catch(l){return console.warn(`Failed to convert price from USD to ${o}:`,l),p}},a=Mi(e,o,true),c=async()=>{try{let l=(await n.fetchQuery(a)).wallets.find(f=>f.symbol.toUpperCase()===t.toUpperCase());if(!l)return;let m=[];if(l.liquid!==void 0&&l.liquid!==null&&m.push({name:"liquid",balance:l.liquid}),l.staked!==void 0&&l.staked!==null&&l.staked>0&&m.push({name:"staked",balance:l.staked}),l.savings!==void 0&&l.savings!==null&&l.savings>0&&m.push({name:"savings",balance:l.savings}),l.extraData&&Array.isArray(l.extraData))for(let f of l.extraData){if(!f||typeof f!="object")continue;let g=f.dataKey,_=f.value;if(typeof _=="string"){let x=_.replace(/,/g,"").match(/[+-]?\s*(\d+(?:\.\d+)?)/);if(x){let C=Math.abs(Number.parseFloat(x[1]));g==="delegated_hive_power"?m.push({name:"outgoing_delegations",balance:C}):g==="received_hive_power"?m.push({name:"incoming_delegations",balance:C}):g==="powering_down_hive_power"&&m.push({name:"pending_power_down",balance:C});}}}return {name:l.symbol,title:l.name,price:l.fiatRate,accountBalance:l.balance,apr:l.apr?.toString(),layer:l.layer,pendingRewards:l.pendingRewards,parts:m}}catch{return}};return reactQuery.queryOptions({queryKey:["ecency-wallets","asset-info",e,t,o],queryFn:async()=>{let p=await c();if(p&&p.price>0)return p;let l;if(t==="HIVE")l=await i(ir(e));else if(t==="HP")l=await i(Qi(e));else if(t==="HBD")l=await i(Bi(e));else if(t==="POINTS")l=await i(Xi(e));else if((await n.ensureQueryData(cr(e))).some(f=>f.symbol===t))l=await i(Yi(e,t));else {if(p)return p;throw new Error(`[SDK][Wallet] \u2013 unrecognized asset "${t}"`)}if(p&&l&&l.price>0){let m=await s(l);return {...p,price:m.price}}return await s(l)}})}var Um=(C=>(C.Transfer="transfer",C.TransferToSavings="transfer-saving",C.WithdrawFromSavings="withdraw-saving",C.Delegate="delegate",C.PowerUp="power-up",C.PowerDown="power-down",C.WithdrawRoutes="withdraw-routes",C.ClaimInterest="claim-interest",C.Swap="swap",C.Convert="convert",C.Gift="gift",C.Promote="promote",C.Claim="claim",C.Buy="buy",C.Stake="stake",C.Unstake="unstake",C.Undelegate="undelegate",C))(Um||{});function $K(e,t,r){return v(["wallet","transfer"],e,n=>[Le(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function YK(e,t,r){return v(["wallet","transfer-point"],e,n=>[nt(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function rN(e,t,r){return v(["wallet","delegate-vesting-shares"],e,n=>[vt(e,n.delegatee,n.vestingShares)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.delegatee),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function aN(e,t,r){return v(["wallet","set-withdraw-vesting-route"],e,n=>[At(e,n.toAccount,n.percent,n.autoVest)],async(n,o)=>{await S(t?.adapter,r,[u.wallet.withdrawRoutes(e),u.accounts.full(e),u.accounts.full(o.toAccount)]);},t,"active",{broadcastMode:r})}function lN(e,t,r){return v(["wallet","transfer-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"transfer",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity,memo:n.memo}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"ssc-mainnet-hive",json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function yN(e,t,r){return v(["wallet","transfer-to-savings"],e,n=>[rt(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function vN(e,t,r){return v(["wallet","transfer-from-savings"],e,n=>[$e(e,n.to,n.amount,n.memo,n.requestId)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function SN(e,t,r){return v(["wallet","transfer-to-vesting"],e,n=>[wt(e,n.to,n.amount)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function TN(e,t,r){return v(["wallet","withdraw-vesting"],e,n=>[bt(e,n.vestingShares)],async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function KN(e,t,r){return v(["wallet","convert"],e,n=>[n.collateralized?Vr(e,n.amount,n.requestId):Pt(e,n.amount,n.requestId)],async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function UN(e,t,r){return v(["wallet","claim-interest"],e,n=>_t(e,n.to,n.amount,n.memo,n.requestId),async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}var Hm=5e3,lr=new Map;function $N(e,t,r){return v(["wallet","claim-rewards"],e,n=>[sn(e,n.rewardHive,n.rewardHbd,n.rewardVests)],()=>{let n=e??"__anonymous__",o=[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e],u.assets.hiveGeneralInfo(e),u.assets.hbdGeneralInfo(e),u.assets.hivePowerGeneralInfo(e)],i=lr.get(n);i&&(clearTimeout(i),lr.delete(n));let s=setTimeout(async()=>{try{let a=w(),p=(await Promise.allSettled(o.map(l=>a.invalidateQueries({queryKey:l})))).filter(l=>l.status==="rejected");p.length>0&&console.error("[SDK][Wallet][useClaimRewards] delayed invalidation rejected",{username:e,rejectedCount:p.length,rejected:p});}catch(a){console.error("[SDK][Wallet][useClaimRewards] delayed invalidation failed",{username:e,error:a});}finally{lr.delete(n);}},Hm);lr.set(n,s);},t,"posting",{broadcastMode:r})}function JN(e,t,r){return v(["wallet","delegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"delegate",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function eM(e,t,r){return v(["wallet","undelegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"undelegate",contractPayload:{symbol:n.symbol,from:n.from,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function oM(e,t,r){return v(["wallet","stake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"stake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function uM(e,t,r){return v(["wallet","unstake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"unstake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function dM(e,t,r){return v(["wallet","claim-engine-rewards"],e,n=>{let o=JSON.stringify(n.tokens.map(i=>({symbol:i})));return [["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"posting",{broadcastMode:r})}function yM(e,t,r){return v(["wallet","engine-market-order"],e,n=>{let o,i;n.action==="cancel"?(i="cancel",o={type:n.orderType,id:n.orderId}):(i=n.action,o={symbol:n.symbol,quantity:n.quantity,price:n.price});let s=JSON.stringify({contractName:"market",contractAction:i,contractPayload:o});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:s}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Vm(e,t,r){let{from:n,to:o="",amount:i="",memo:s=""}=r,a=r.request_id??Date.now()>>>0;switch(e){case "HIVE":switch(t){case "transfer":return [Le(n,o,i,s)];case "transfer-saving":return [rt(n,o,i,s)];case "withdraw-saving":return [$e(n,o,i,s,a)];case "power-up":return [wt(n,o,i)]}break;case "HBD":switch(t){case "transfer":return [Le(n,o,i,s)];case "transfer-saving":return [rt(n,o,i,s)];case "withdraw-saving":return [$e(n,o,i,s,a)];case "claim-interest":return _t(n,o,i,s,a);case "convert":return [Pt(n,i,Math.floor(Date.now()/1e3))]}break;case "HP":switch(t){case "power-down":return [bt(n,i)];case "delegate":return [vt(n,o,i)];case "withdraw-routes":return [At(r.from_account??n,r.to_account??o,r.percent??0,r.auto_vest??false)]}break;case "POINTS":if(t==="transfer"||t==="gift")return [nt(n,o,i,s)];break}return null}function jm(e,t,r){let{from:n,to:o="",amount:i=""}=r,s=typeof i=="string"&&i.includes(" ")?i.split(" ")[0]:String(i);switch(t){case "transfer":return [We(n,"transfer",{symbol:e,to:o,quantity:s,memo:r.memo??""})];case "stake":return [We(n,"stake",{symbol:e,to:o,quantity:s})];case "unstake":return [We(n,"unstake",{symbol:e,to:o,quantity:s})];case "delegate":return [We(n,"delegate",{symbol:e,to:o,quantity:s})];case "undelegate":return [We(n,"undelegate",{symbol:e,from:o,quantity:s})];case "claim":return [jr(n,[e])]}return null}function Lm(e){return e==="claim"?"posting":"active"}function AM(e,t,r,n,o){let{mutateAsync:i}=ot.useRecordActivity(e,r);return v(["ecency-wallets",t,r],e,s=>{let a=Vm(t,r,s);if(a)return a;let c=jm(t,r,s);if(c)return c;throw new Error(`[SDK][Wallet] \u2013 no operation builder for asset="${t}" operation="${r}"`)},()=>{i();let s=[];s.push(["ecency-wallets","asset-info",e,t]),t==="HIVE"&&s.push(["ecency-wallets","asset-info",e,"HP"]),s.push(["wallet","portfolio","v2",e]),setTimeout(()=>{s.forEach(a=>{w().invalidateQueries({queryKey:a});});},5e3);},n,Lm(r),{broadcastMode:o})}function SM(e,t,r){return v(["wallet","delegate-rc"],e,({to:n,maxRc:o})=>[Lr(e,n,o)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),u.resourceCredits.account(e),u.resourceCredits.account(o.to)]);},t,"active",{broadcastMode:r})}function kM(e,t,r){return v(["witnesses","vote"],e,({witness:n,approve:o})=>[Gr(e,n,o)],async()=>{try{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.witnesses.votes(e)]);}catch(n){console.warn("[useWitnessVote] Post-broadcast side-effect failed:",n);}},t,"active",{broadcastMode:r})}function IM(e,t,r){return v(["witnesses","proxy"],e,({proxy:n})=>[zr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.witnesses.proxy()]);},t,"active",{broadcastMode:r})}function Wm(e){return {owner:e.witness_name,total_missed:e.missed_blocks,url:e.url,props:{account_creation_fee:`${(e.account_creation_fee/1e3).toFixed(3)} HIVE`,account_subsidy_budget:0,maximum_block_size:e.block_size},hbd_exchange_rate:{base:`${e.price_feed.toFixed(3)} HBD`},available_witness_account_subsidies:0,running_version:e.version,signing_key:e.signing_key,last_hbd_exchange_update:e.feed_updated_at,rank:e.rank,vests:e.vests,voters_num:e.voters_num,voters_num_daily_change:e.voters_num_daily_change,price_feed:e.price_feed,hbd_interest_rate:e.hbd_interest_rate,last_confirmed_block_num:e.last_confirmed_block_num}}function QM(e){return reactQuery.infiniteQueryOptions({queryKey:u.witnesses.list(e),initialPageParam:1,queryFn:async({pageParam:t})=>(await te("hafbe","/witnesses",{"page-size":e,page:t})).witnesses.map(Wm),getNextPageParam:(t,r,n)=>t.length===e?n+1:void 0})}function UM(e,t,r,n="vests",o="desc"){return reactQuery.queryOptions({queryKey:u.witnesses.voters(e,t,r,n,o),queryFn:async({signal:i})=>await te("hafbe","/witnesses/{witness-name}/voters",{"witness-name":e,"page-size":r,page:t,sort:n,direction:o},void 0,void 0,i),enabled:!!e,staleTime:6e4})}function HM(e){return reactQuery.queryOptions({queryKey:u.witnesses.voterCount(e),queryFn:async()=>await te("hafbe","/witnesses/{witness-name}/voters/count",{"witness-name":e}),enabled:!!e,staleTime:6e4})}var Gm=(_=>(_[_.CHECKIN=10]="CHECKIN",_[_.LOGIN=20]="LOGIN",_[_.CHECKIN_EXTRA=30]="CHECKIN_EXTRA",_[_.POST=100]="POST",_[_.COMMENT=110]="COMMENT",_[_.VOTE=120]="VOTE",_[_.REBLOG=130]="REBLOG",_[_.DELEGATION=150]="DELEGATION",_[_.REFERRAL=160]="REFERRAL",_[_.COMMUNITY=170]="COMMUNITY",_[_.TRANSFER_SENT=998]="TRANSFER_SENT",_[_.TRANSFER_INCOMING=999]="TRANSFER_INCOMING",_[_.MINTED=991]="MINTED",_[_.BURNED=997]="BURNED",_))(Gm||{});async function Jm(e,t){if(!e)throw new Error("[SDK][Points][Claim] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][Points][Claim] \u2013 access token wasn't found");let n=await h()(d.privateApiHost+"/private-api/points-claim",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})}),o=(n.headers.get("content-type")??"").split(";")[0].trim().toLowerCase(),i=await n.text();if(!n.ok){if(n.status===406)try{return JSON.parse(i)}catch{return {message:i,code:n.status}}let s=i&&o.includes("json")?`: ${i.slice(0,200)}`:"";throw new Error(`[SDK][Points][Claim] \u2013 failed with status ${n.status}${s}`)}if(!o.includes("json"))throw new Error(`[SDK][Points][Claim] \u2013 expected JSON but received "${o||"empty"}" response (status ${n.status})`);try{return JSON.parse(i)}catch{throw new Error(`[SDK][Points][Claim] \u2013 malformed JSON response (status ${n.status})`)}}function zM(e,t,r,n){let{mutateAsync:o}=ot.useRecordActivity(e,"points-claimed");return reactQuery.useMutation({mutationFn:()=>Jm(e,t),onError:n,onSuccess:()=>{o(),w().setQueryData(St(e).queryKey,i=>i&&{...i,points:(parseFloat(i.points)+parseFloat(i.uPoints)).toFixed(3),uPoints:"0"}),r?.();}})}var es=/(^|\s)author:([^\s]+)/g,ts=/(^|\s)type:([^\s]+)/g,rs=/(^|\s)category:([^\s]+)/g,ns=/(^|\s)tag:([^\s]+)/g;var is=(n=>(n.ALL="",n.POST="post",n.COMMENT="comment",n))(is||{}),YM=5,XM=100;function ss(e){return e.trim().split(/\s+/)[0]??""}function Ym(e){return ss(e).replace(/^@+/,"").toLowerCase()}function Xm(e){return ss(e).replace(/^#+/,"").toLowerCase()}function Zm(e){let t=new Set;return e.split(/[\s,]+/).map(r=>r.replace(/^#+/,"").toLowerCase()).filter(r=>r===""||t.has(r)?false:(t.add(r),true))}function ZM({search:e="",author:t="",type:r="",category:n="",tags:o=[]}){let i=e.trim().replace(/\s+/g," "),s=Ym(t),a=Xm(n),c=Zm(Array.isArray(o)?o.join(","):o),p=[i];return s&&p.push(`author:${s}`),r&&p.push(`type:${r}`),a&&p.push(`category:${a}`),c.length>0&&p.push(`tag:${c.join(",")}`),{q:p.filter(l=>l!=="").join(" "),search:i,author:s,type:r,category:a,tags:c}}var os=class{query="";search="";author="";type="";category="";tags=[];constructor(t){this.query=t,this.search=t,this.grabAuthor(),this.grabType(),this.grabCategory(),this.grabTags(),this.grabSearch();}grab=t=>{let r=[...this.query.matchAll(t)];return r.length>0?r[0][2].trim():""};grabAuthor=()=>{this.author=this.grab(es);};grabType=()=>{let t=this.grab(ts);Object.values(is).includes(t)&&(this.type=t);};grabCategory=()=>{this.category=this.grab(rs);};grabTags=()=>{let t=new Set;this.tags=[...this.query.matchAll(ns)].flatMap(r=>r[2].split(",")).map(r=>r.trim()).filter(r=>r===""||t.has(r)?false:(t.add(r),true));};grabSearch=()=>{for([es,ts,rs,ns].forEach(t=>{this.search=this.search.replace(t,"$1");});this.search.indexOf(" ")!==-1;)this.search=this.search.replace(" "," ");this.search=this.search.trim();}};async function Ce(e,t){let n=await(async()=>{let o;try{o=await e.text();}catch{return}if(o!=="")try{return JSON.parse(o)}catch{return e.ok?void 0:o}})();if(!e.ok){let o=new Error(`Request failed with status ${e.status}`);throw o.status=e.status,o.data=n,o}if(n===void 0||t!==void 0&&!t(n))throw new Error("Response body was empty, invalid JSON, or not the expected shape");return n}function Ke(e){return typeof e=="object"&&e!==null&&Array.isArray(e.results)}var tf=reactQuery.isServer?0:3;function Ct(e,t){let{status:r}=t,n=r===408||r===429;return r!==void 0&&r>=400&&r<500&&!n?false:e{let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let c=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(a),signal:Pe(xe,s)});return Ce(c,Ke)},retry:Ct})}function pB(e,t,r=true){return reactQuery.infiniteQueryOptions({queryKey:u.search.controversialRising(e,t),initialPageParam:{sid:void 0,hasNextPage:true},queryFn:async({pageParam:n,signal:o})=>{if(!n.hasNextPage)return {hits:0,took:0,results:[]};let i,s=new Date;switch(t){case "today":i=new Date(s.getTime()-1440*60*1e3);break;case "week":i=new Date(s.getTime()-10080*60*1e3);break;case "month":i=new Date(s.getTime()-720*60*60*1e3);break;case "year":i=new Date(s.getTime()-365*24*60*60*1e3);break;default:i=void 0;}let a="* type:post",c=e==="rising"?"children":e,p=i?i.toISOString().split(".")[0]:void 0,l="0",m=t==="today"?50:200,f={q:a,sort:c,hide_low:l};p&&(f.since=p),n.sid&&(f.scroll_id=n.sid),(f.votes=m);let g=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(f),signal:Pe(xe,o)});return Ce(g,Ke)},getNextPageParam:n=>({sid:n?.scroll_id,hasNextPage:n.results.length>0}),enabled:r,retry:Ct})}async function fB(e,t,r,n,o,i,s){let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let p=await h()(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(a),signal:Pe(xe,s)});return Ce(p,Ke)}async function as(e,t,r=xe){let o=await h()(d.privateApiHost+"/search-api/similar",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(e),signal:Pe(r,t)});return Ce(o,Ke)}async function gB(e,t){let n=await h()(d.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify({q:e}),signal:Pe(xe,t)}),o=await Ce(n,Array.isArray);return o?.length>0?o:[e]}var sf=4368*60*60*1e3,af=4,uf=3e3,cf=2e3,pf=4e3,bB=2;function lf(e,t){return e.replace(/!\[[^\]]*\]\([^)]*\)/g," ").replace(/\[([^\]]*)\]\([^)]*\)/g,"$1").replace(/<[^>]+>/g," ").replace(/https?:\/\/\S+/g," ").replace(/\s+/g," ").trim().slice(0,t)}function df(e){let t=5381;for(let r=0;r>>0).toString(36)}function vB(e){let t=e.title??"",r=e.json_metadata?.tags,n=(Array.isArray(r)?r:[]).filter(s=>typeof s=="string"&&s!==""),o=lf(e.body??"",uf),i=df(`${t}|${n.join(",")}|${o}`);return reactQuery.queryOptions({queryKey:u.search.similarEntries(e.author,e.permlink,i),queryFn:async({signal:s})=>{let a=new Date(Date.now()-sf).toISOString().slice(0,19),c=await as({author:e.author,permlink:e.permlink,title:t,body:o,tags:n,since:a},s,typeof window>"u"?cf:pf),p=[],l=new Set;for(let m of c.results){if(p.length>=af)break;m.permlink!==e.permlink&&(m.tags??[]).indexOf("nsfw")===-1&&(l.has(m.author)||(l.add(m.author),p.push(m)));}return p},staleTime:300*1e3,retry:false})}function CB(e,t=5){let r=e.trim();return reactQuery.queryOptions({queryKey:u.search.account(r,t),queryFn:async()=>{let n=await y("condenser_api.lookup_accounts",[r,t]);return n.length===0?[]:zt(n)},enabled:!!r})}function FB(e,t=10){let r=e.trim();return reactQuery.queryOptions({queryKey:u.search.topics(r,t),queryFn:async()=>(await y("condenser_api.get_trending_tags",[r,t+1])).map(o=>o.name).filter(o=>o!==""&&!o.startsWith("hive-")).slice(0,t),enabled:!!r})}function MB(e,t,r,n,o,i){return reactQuery.infiniteQueryOptions({queryKey:u.search.api(e,t,r,n,o,i),queryFn:async({pageParam:s,signal:a})=>{let c={q:e,sort:t,hide_low:r};n&&(c.since=n),s&&(c.scroll_id=s),o!==void 0&&(c.votes=o),i&&(c.include_nsfw=1);let p=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(c),signal:Pe(xe,a)});return Ce(p,Ke)},initialPageParam:void 0,getNextPageParam:s=>s?.scroll_id,enabled:!!e,retry:Ct})}function HB(e){return reactQuery.queryOptions({queryKey:["search","path",e],queryFn:async()=>{let t=await fetch(d.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify({q:e})});if(!t.ok)throw new Error(`Search path failed: ${t.status}`);let r=await t.json();return r?.length>0?r:[e]}})}async function _f(e){let r=await h()(d.privateApiHost+"/private-api/support-settings",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let n;try{n=await r.json();}catch{}let o=n?.message??`Failed to fetch support settings: ${r.status}`,i=new Error(o);throw i.status=r.status,i.data=n,i}return await r.json()}function $B(e,t){let r=e?.replace("@","");return reactQuery.queryOptions({queryKey:u.support.settings(r),queryFn:()=>{if(!t)throw new Error("[SDK][Support] missing auth");return _f(t)},enabled:!!r&&!!t})}async function vf(e,t){let n=await h()(d.privateApiHost+"/private-api/support-settings-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e,beneficiary_percent:t.beneficiary_percent,curation_percent:t.curation_percent})});if(!n.ok){let o;try{o=await n.json();}catch{}let i=o?.message??`Failed to update support settings: ${n.status}`,s=new Error(i);throw s.status=n.status,s.data=o,s}return await n.json()}function Af(e,t,r){return e.setQueryData(u.support.settings(t),r),e.invalidateQueries({queryKey:u.support.settings(t)})}function YB(e,t){let r=reactQuery.useQueryClient(),n=e?.replace("@","");return reactQuery.useMutation({mutationKey:["support","settings-update",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Support] missing auth");return vf(t,o)},onSuccess(o){n&&Af(r,n,o);}})}function tQ(e){return reactQuery.queryOptions({queryKey:["promotions","boost-plus-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(d.privateApiHost+"/private-api/boost-plus-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch boost plus prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function iQ(e){return reactQuery.queryOptions({queryKey:["promotions","rc-delegation-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(d.privateApiHost+"/private-api/rc-delegation-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch RC delegation prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function cQ(e,t){return reactQuery.queryOptions({queryKey:["promotions","rc-delegation-active",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(d.privateApiHost+"/private-api/rc-delegation-active",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,username:e})});if(!r.ok)throw new Error(`Failed to fetch RC delegation active: ${r.status}`);let n=await r.json();return n&&n.expires&&n.user?{user:n.user,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function mQ(e){return reactQuery.queryOptions({queryKey:["promotions","promote-price"],queryFn:async()=>{let t=await fetch(d.privateApiHost+"/private-api/promote-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch promote prices: ${t.status}`);return await t.json()},enabled:!!e})}function hQ(e,t){return reactQuery.queryOptions({queryKey:["promotions","boost-plus-accounts",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(d.privateApiHost+"/private-api/boosted-plus-account",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:e})});if(!r.ok)throw new Error(`Failed to fetch boost plus account prices: ${r.status}`);let n=await r.json();return n?{account:n.account,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function vQ(e,t,r){return v(["promotions","boost-plus"],e,({account:n,duration:o})=>[ln(e,n,o)],async(n,{account:o})=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.promotions.boostPlusAccounts(o)]);},t,"active",{broadcastMode:r})}function OQ(e,t,r){return v(["promotions","rc-delegation"],e,({duration:n})=>[dn(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.resourceCredits.account(e),["promotions","rc-delegation-active",e]]);},t,"active",{broadcastMode:r})}async function EQ(e){let r=await h()(d.privateApiHost+"/auth-api/hs-token-refresh",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let o;try{o=await r.json();}catch{o=void 0;}let i=new Error(`Failed to refresh token: ${r.status}`);throw i.status=r.status,i.data=o,i}return await r.json()}var Rf="https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt";function FQ(){return reactQuery.queryOptions({queryKey:u.badActors.list(),queryFn:async({signal:e})=>{let t=await fetch(Rf,{signal:e});if(!t.ok)throw new Error(`Failed to fetch bad actors list: ${t.status}`);let r=await t.text();return new Set(r.split(` `).filter(Boolean))},staleTime:1440*60*1e3,gcTime:1/0})}var IQ=1.1,kf=(r=>(r.NUMBER_OF_VOTES="number_of_votes",r.TOKENS="tokens",r))(kf||{});function DQ(e){return e?e.map((t,r)=>({choice_num:r+1,choice_text:t,votes:{total_votes:0,hive_hp:0,hive_proxied_hp:0,hive_hp_incl_proxied:0}})):[]}function qf(e){let t=e.poll_choices??[],r=e.poll_voters??[],n=e.poll_stats,o=t.map(a=>{let c=a.votes;return {choice_num:a.choice_num??0,choice_text:a.choice_text??"",votes:c?{total_votes:c.total_votes??0,hive_hp:c.hive_hp,hive_proxied_hp:c.hive_proxied_hp,hive_hp_incl_proxied:c.hive_hp_incl_proxied??null}:void 0}}),i=r.map(a=>({name:a.name??"",choices:a.choices??[],hive_hp:a.hive_hp,hive_proxied_hp:a.hive_proxied_hp,hive_hp_incl_proxied:a.hive_hp_incl_proxied})),s=n?{total_voting_accounts_num:n.total_voting_accounts_num??0,total_hive_hp:n.total_hive_hp,total_hive_proxied_hp:n.total_hive_proxied_hp,total_hive_hp_incl_proxied:n.total_hive_hp_incl_proxied??null}:void 0;return {author:e.author??"",permlink:e.permlink??"",question:e.question??"",poll_choices:o,poll_voters:i,poll_stats:s,poll_trx_id:e.poll_trx_id??"",status:e.status??"",end_time:e.end_time??"",preferred_interpretation:e.preferred_interpretation??"number_of_votes",max_choices_voted:e.max_choices_voted??1,filter_account_age_days:e.filter_account_age_days??0,protocol_version:e.protocol_version??0,created:e.created??"",post_title:e.post_title??"",post_body:e.post_body??"",parent_permlink:e.parent_permlink??"",tags:e.tags??[],image:e.image??[],token:e.token,community_membership:e.community_membership,allow_vote_changes:e.allow_vote_changes,ui_hide_res_until_voted:e.ui_hide_res_until_voted??false,platform:e.platform}}function QQ(e,t){return reactQuery.queryOptions({queryKey:u.polls.details(e??"",t??""),enabled:!!e&&!!t,gcTime:reactQuery.isServer?Ro:1800*1e3,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Polls] \u2013 missing author or permlink");let r=h(),n=`${d.pollsApiHost}/rpc/poll?author=eq.${encodeURIComponent(e)}&permlink=eq.${encodeURIComponent(t)}`,o=await r(n);if(!o.ok)throw new Error(`[SDK][Polls] \u2013 fetch failed: ${o.status}`);let i=await o.json();if(!Array.isArray(i)||!i[0])throw new Error("[SDK][Polls] \u2013 no poll data found");return qf(i[0])}})}function VQ(e,t,r){return v(u.polls.vote(),e??"",({pollTrxId:n,choices:o})=>{if(!e)throw new Error("[SDK][Polls] Cannot vote without an authenticated username");return [["custom_json",{id:"polls",required_auths:[],required_posting_auths:[e],json:JSON.stringify({poll:n,action:"vote",choices:o})}]]},void 0,t,"posting",{broadcastMode:r??"async"})}var If=-1e10,Df=5,Kf=30;var us=e=>Math.abs(e)>0&&Math.abs(e)<=100;function cs(e){if(typeof e=="number"&&us(e)||typeof e=="string"&&(e=Number(e),us(e)))return Math.floor(e);if(e===0)return 25;let t=false;e<0&&(t=true);let r=Math.log10(Math.abs(e));return r=Math.max(r-9,0),r<0&&(r=0),t&&(r*=-1),r=r*9+25,Math.floor(r)}var Nf=["ecency.com","ecency.app","hive.blog","hive.io","hiveblocks.com","peakd.com","snapie.io","hivesuite.app","leofinance.io","inleo.io","3speak.tv","d.buzz","waivio.com"],Mf=["imgur.com","images.hive.blog","files.peakd.com","i.ecency.com","images.ecency.com","steemitimages.com","cdn.steemitimages.com","media.giphy.com"],Bf=/\.(jpe?g|png|gif|webp|svg|bmp|avif)(\?|#|$)/i,Qf=/(?:https?:)?\/\/[^\s)<>"'\]]+/gi,Uf=/[.,;:!?'"]+$/;function Hf(e){let t=/^(?:https?:)?\/\/([^/?#]+)/i.exec(e);return t?t[1].toLowerCase().replace(/^www\./,""):""}function Vf(e){let t=e.replace(Uf,"");if(Bf.test(t))return false;let r=Hf(t);if(!r.includes("."))return false;let n=o=>r===o||r.endsWith("."+o);return !(Nf.some(n)||Mf.some(n))}function ps(e){if(!e)return false;let t=e.match(Qf);return t?t.some(Vf):false}var jf=(n=>(n.MOD_MUTED="mod_muted",n.DOWNVOTED="downvoted",n.LOW_TRUST="low_trust",n))(jf||{});function Lf(e){return e?.stats?.total_votes??e?.active_votes?.length??0}function $f(e,t){return (e??0)<-1e10&&t>=5}function Wf(e){let t=e?.author_reputation;return t==null?false:cs(t)<30&&ps(e?.body)}function JQ(e,t){return !!e&&!!t?.includes(e)}function YQ(e){return e?e.stats?.gray||e.stats?.hide?"mod_muted":$f(e.net_rshares,Lf(e))?"downvoted":Wf(e)?"low_trust":null:null}var ut=class extends Error{constructor(r,n,o){super(r);this.status=n;this.data=o;}status;data},Et=class extends ut{constructor(r,n,o,i,s){super(r,n,s);this.code=o;this.taken=i;}code;taken};function Ne(e){return `${d.newsletterHost??d.privateApiHost}/api/newsletter${e}`}async function ze(e){let t=await e.json().catch(()=>{});if(!e.ok)throw new ut(t?.error||`Request failed (${e.status})`,e.status,t);if(!t||typeof t!="object")throw new ut(`Unexpected response (${e.status})`,e.status);return t}async function ls(e,t){let n=await h()(Ne("/subscribe"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({...e,...t?{code:t}:{}})});return ze(n)}async function ds(e){let r=await h()(Ne("/subscriptions"),{headers:{"X-HS-Token":e}});return (await ze(r)).subscriptions??[]}async function ms(e,t){let n=await h()(Ne(`/subscriptions/${encodeURIComponent(e)}`),{method:"DELETE",headers:{"X-HS-Token":t}});await ze(n);}async function fs(e,t){let n=await h()(Ne("/unsubscribe-all"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e,code:t})});await ze(n);}async function gs(e,t,r){let o=await h()(Ne(`/sender?type=${e}&target=${encodeURIComponent(t)}`),{headers:{"X-HS-Token":r}});return ze(o)}async function ys(e,t,r){let o=await h()(Ne(`/issues?type=${e}&target=${encodeURIComponent(t)}`),{headers:{"X-HS-Token":r}});return (await ze(o)).issues??[]}async function hs(e,t,r,n=20){let i=await h()(Ne(`/posts?type=${e}&target=${encodeURIComponent(t)}&limit=${n}`),{headers:{"X-HS-Token":r}});return (await ze(i)).posts??[]}async function _s(e,t,r){let o=await h()(Ne(e),{method:"POST",headers:{"Content-Type":"application/json","X-HS-Token":r},body:JSON.stringify(t)}),i=await o.json().catch(()=>{});if(!o.ok)throw new Et(i?.error||`Request failed (${o.status})`,o.status,i?.code,i?.taken,i);if(!i||typeof i!="object")throw new Et(`Unexpected response (${o.status})`,o.status);return i}function ws(e,t){return _s("/send/preview",e,t)}function bs(e,t){return _s("/send",e,t)}function sU(e,t){let r=e?.replace("@","");return reactQuery.queryOptions({queryKey:u.newsletter.subscriptions(r),enabled:!!r&&!!t,queryFn:async()=>{if(!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return ds(t)},staleTime:6e4,retry:false})}function lU(e,t,r,n){let o=r?.replace("@","");return reactQuery.queryOptions({queryKey:u.newsletter.sender(e,t,o),enabled:!!o&&!!n&&!!t,queryFn:async()=>{if(!n)throw new Error("[SDK][Newsletter] \u2013 missing auth");return gs(e,t,n)},staleTime:5*6e4})}function yU(e,t,r,n){let o=r?.replace("@","");return reactQuery.queryOptions({queryKey:u.newsletter.issues(e,t,o),enabled:!!o&&!!n&&!!t,queryFn:async()=>{if(!n)throw new Error("[SDK][Newsletter] \u2013 missing auth");return ys(e,t,n)},staleTime:6e4})}function vU(e,t,r,n,o=20){let i=r?.replace("@","");return reactQuery.queryOptions({queryKey:u.newsletter.posts(e,t,i,o),enabled:!!i&&!!n&&!!t,queryFn:async()=>{if(!n)throw new Error("[SDK][Newsletter] \u2013 missing auth");return hs(e,t,n,o)},staleTime:6e4})}function SU(e,t){let r=reactQuery.useQueryClient(),n=e?.replace("@","");return reactQuery.useMutation({mutationKey:["newsletter","subscribe",n],mutationFn:o=>ls(o,t),onSuccess(){n&&r.invalidateQueries({queryKey:u.newsletter.subscriptions(n)});}})}function TU(e,t){let r=reactQuery.useQueryClient(),n=e?.replace("@","");return reactQuery.useMutation({mutationKey:["newsletter","leave",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return ms(o,t)},onSuccess(o,i){r.setQueryData(u.newsletter.subscriptions(n),s=>(s??[]).filter(a=>a.id!==i));}})}function KU(e,t){let r=reactQuery.useQueryClient(),n=e?.replace("@","");return reactQuery.useMutation({mutationKey:["newsletter","unsubscribe-all",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return fs(o,t)},onSuccess(o,i){r.setQueryData(u.newsletter.subscriptions(n),s=>(s??[]).filter(a=>a.email.toLowerCase()!==i.toLowerCase()));}})}function UU(e,t){let r=e?.replace("@","");return reactQuery.useMutation({mutationKey:["newsletter","send-preview",r],mutationFn:async n=>{if(!r||!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return ws(n,t)}})}function HU(e,t){let r=reactQuery.useQueryClient(),n=e?.replace("@","");return reactQuery.useMutation({mutationKey:["newsletter","send",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return bs(o,t)},onSuccess(o,i){r.invalidateQueries({queryKey:u.newsletter.issues(i.type,i.target,n)}),r.invalidateQueries({queryKey:u.newsletter.sender(i.type,i.target,n)});}})}var jU=["quality","underrated","newcomer","other"],LU=["queue","newest","unique","random"],$U=["queue","latest","new-authors","recommended","curated","all","excluded"],WU=["all","ecency","peakd","other"],GU=["12h","full","half","eighth","locked","all"],zU=["reviewed","snoozed","flagged","noted"],JU=["plagiarism","ai_slop","recycled","image_only","tag_abuse","farming","nsfw_untagged","other"];function XU(e){return !!e?.spaminator||!!e?.abuser}function ZU(e){return !!e?.ignorelist||!!e?.abuser||!!e?.blocked_tag||!!e?.nsfw||!!e?.patch_body||!!e?.negative_rep||!!e?.deleted}function ig(e,t){let r=`@${e}/${t}`;return d.dmcaPatterns.includes(r)||d.dmcaPatternRegexes.some(n=>n.test(r))}function sg(e){if(!e||!ig(e.author,e.permlink))return e;let t={...e,title:""};return "summary"in t&&(t.summary=null),"first_image"in t&&(t.first_image=null),t}function dr(e){let t=false,r=e.pages.map(n=>{let o=false,i=n.items.map(s=>{let a=sg(s);return a!==s&&(o=true),a});return o?(t=true,{...n,items:i}):n});return t?{...e,pages:r}:e}var ag="/private-api/curation-desk",Je=class extends Error{status;data;constructor(t,r,n){super(t),this.name="CurationApiError",this.status=r,this.data=n;}};function Rt(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}var mr=e=>Rt(e)&&Array.isArray(e.items),As=e=>Rt(e)&&Array.isArray(e.curators),ug=e=>Rt(e)&&Array.isArray(e.recommenders),cg=e=>Rt(e)&&"vp"in e,pg=["window_days","recommended","curated","dismissed","withdrawn","precision"],lg=e=>Rt(e)&&pg.every(t=>typeof e[t]=="number")&&typeof e.trusted=="boolean";async function Ps(e,t,r){if(!e.ok){let i;try{i=await e.json();}catch{i=void 0;}throw new Je(`Failed to ${t}: ${e.status}`,e.status,i)}let n=e.headers?.get?.("content-type")??"";if(n&&!n.includes("json"))throw new Je(`Unexpected response for ${t}`,e.status);let o;try{o=await e.json();}catch{throw new Je(`Unexpected response for ${t}`,e.status)}if(r&&!r(o))throw new Je(`Unexpected response for ${t}`,e.status);return o}var dg=/^hive-\d{5,6}$/,mg=/^[a-z0-9]{8,16}$/,fg=new Set(["hide_curated","hide_reviewed","hide_snoozed"]),xs=["sort","seed","view","app","community","window","rep_min","rep_max","min_words","max_words","has_images","new_authors","recommended","flagged","hide_curated","hide_reviewed","hide_snoozed","limit"];function fr(e={}){let t=e,r={};for(let n of xs){let o=t[n];if(o==null||o==="")continue;if(typeof o=="boolean"){fg.has(n)?o||(r[n]="0"):o&&(r[n]="1");continue}if(typeof o=="number"){if(!Number.isFinite(o))continue;r[n]=String(Math.trunc(o));continue}let i=String(o);(n==="app"||n==="window")&&i==="all"||n==="community"&&!dg.test(i)||n==="seed"&&!mg.test(i)||(r[n]=i);}return r.sort!=="random"&&delete r.seed,r}function gg(e,t){let r=new URLSearchParams;for(let o of xs)e[o]!==void 0&&r.set(o,e[o]);t&&r.set("cursor",t);let n=r.toString();return n?`?${n}`:""}function Os(e){return `${d.privateApiHost}${ag}${e}`}var yg=new Set(["localhost","127.0.0.1","::1","[::1]"]);function hg(e){let t=d.privateApiHost||"",r=typeof window<"u"?window.location?.href:void 0,n;try{n=r?new URL(t,r):new URL(t);}catch{return}if(n.protocol!=="https:"&&!(n.protocol==="http:"&&yg.has(n.hostname)))throw new Je(`Refusing to ${e} over an insecure connection`,0)}async function ct(e,t,r,n){let i=await h()(Os(e),{method:"GET",signal:r});return Ps(i,t,n)}async function fe(e,t,r,n,o,i){if(!t)throw new Error("[SDK][Curation] missing auth");hg(n);let a=await h()(Os(e),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({...r,code:t}),redirect:"error",signal:o});return Ps(a,n,i)}function Ss(e,t,r){return ct(`/feed${gg(fr(e),t)}`,"fetch curation feed",r,mr)}function Cs(e){return ct("/status","fetch curation status",e,cg)}function Es(e){return ct("/roster","fetch curation roster",e,As)}function Rs(e,t,r){let n=new URLSearchParams;e.sort&&n.set("sort",e.sort),e.limit&&n.set("limit",String(e.limit)),t&&n.set("cursor",t);let o=n.toString();return ct(`/recommendations${o?`?${o}`:""}`,"fetch curation recommendations",r,mr)}function ks(e,t){return ct(`/recommender/${encodeURIComponent(e)}`,"fetch recommender stats",t,lg)}function Ts(e,t,r){return ct(`/post/${encodeURIComponent(e)}/${encodeURIComponent(t)}`,"fetch curation post",r,ug)}function oH(e,t,r,n){let o={...fr(t)};return r&&(o.cursor=r),fe("/roster-feed",e,o,"fetch roster feed",n,mr)}function iH(e,t,r){return fe("/tick",e,{since:t.since,need:t.need.slice(0,100),visible:t.visible.slice(0,100)},"tick",r)}function Fs(e,t){return fe("/roster-list",e,{},"list roster",t,As)}function sH(e,t){let{curator:r,role:n,rules:o,note:i}=t;if(!r||!n)throw new Error("[SDK][Curation] roster set needs a curator and a role");let s={curator:r,role:n};return o&&(s.rules=o),i!==void 0&&(s.note=i),fe("/roster-set",e,s,"set curator")}function aH(e,t){if(!t)throw new Error("[SDK][Curation] roster retire needs a curator");return fe("/roster-retire",e,{curator:t},"retire curator")}function uH(e,t){let{author:r,permlink:n,state:o,reason:i,note:s,snooze_until:a,lane:c}=t;if(!r||!n||!o)throw new Error("[SDK][Curation] mark needs author, permlink and state");let p={author:r,permlink:n,state:o};return i&&(p.reason=i),s&&(p.note=s),a&&(p.snooze_until=a),c&&(p.lane=c),fe("/mark",e,p,"set mark")}function cH(e,t){if(!t.author||!t.permlink)throw new Error("[SDK][Curation] mark-clear needs author and permlink");return fe("/mark-clear",e,{author:t.author,permlink:t.permlink},"clear mark")}function pH(e,t={},r){let n={};return t.state&&(n.state=t.state),t.cursor&&(n.cursor=t.cursor),t.limit&&(n.limit=t.limit),fe("/marks",e,n,"fetch my marks",r,mr)}function lH(e,t){if(!Number.isFinite(t.post_id)||!t.action)throw new Error("[SDK][Curation] cursor needs post_id and action");let r={post_id:t.post_id,action:t.action};return t.reason&&(r.reason=t.reason),fe("/cursor",e,r,"move cursor")}var _g=/^[0-9a-f]{40}$/;function dH(e,t){let{author:r,permlink:n,trx_id:o,ua_class:i}=t;if(!r||!n||!i)throw new Error("[SDK][Curation] recommend-meta needs author, permlink and ua_class");let s={author:r,permlink:n,ua_class:i};return typeof o=="string"&&_g.test(o)&&(s.trx_id=o),fe("/recommend-meta",e,s,"send recommendation meta")}function mH(e,t){if(!t.author||!t.permlink||!t.action)throw new Error("[SDK][Curation] recommendation-dismiss needs author, permlink and action");return fe("/recommendation-dismiss",e,{author:t.author,permlink:t.permlink,action:t.action},"dismiss recommendation")}var bg=25,vg=1e4;function kn(e,t){let r=new Set,n=false,o=e.pages.map(i=>{let s=i.items.filter(a=>{let c=t(a);return r.has(c)?(n=true,false):(r.add(c),true)});return s.length===i.items.length?i:{...i,items:s}});return n?{...e,pages:o}:e}function Ag(e){return kn(e,t=>t.post_id)}function Pg(e){return dr(Ag(e))}function wH(e={}){let t=e.limit??bg,r=fr({...e,limit:t});return reactQuery.infiniteQueryOptions({queryKey:u.curation.feed(r),initialPageParam:void 0,queryFn:({pageParam:n,signal:o})=>Ss({...e,limit:t},n,o),getNextPageParam:n=>!n||n.items.lengthCs(e),staleTime:15e3})}function RH(){return reactQuery.queryOptions({queryKey:u.curation.roster(),queryFn:({signal:e})=>Es(e),staleTime:6e5})}function IH(e,t){return reactQuery.queryOptions({queryKey:u.curation.rosterAdmin(e),queryFn:({signal:r})=>Fs(t,r),enabled:!!e&&!!t,staleTime:6e4})}var Eg=25;function UH(e={}){let t=e.sort??"unique",r=e.limit??Eg,n={sort:t,limit:String(r)};return reactQuery.infiniteQueryOptions({queryKey:u.curation.recommendations(n),initialPageParam:void 0,queryFn:({pageParam:o,signal:i})=>Rs({sort:t,limit:r},o,i),getNextPageParam:o=>!o||o.items.lengthdr(kn(o,i=>`${i.author}/${i.permlink}`)),staleTime:1e4})}var kg=/^[a-z0-9.-]{3,16}$/,Tg=/^[a-z0-9-]{1,255}$/;function $H(e,t){let r=kg.test(e)&&Tg.test(t);return reactQuery.queryOptions({queryKey:u.curation.post(e,t),queryFn:({signal:n})=>{if(!r)throw new Error("[SDK][Curation] invalid author or permlink");return Ts(e,t,n)},enabled:r,staleTime:15e3})}var qg=/^[a-z0-9.-]{3,16}$/;function YH(e){let t=qg.test(e??"");return reactQuery.queryOptions({queryKey:u.curation.recommender(e),queryFn:({signal:r})=>{if(!t)throw new Error("[SDK][Curation] invalid recommender username");return ks(e,r)},enabled:t,staleTime:6e4})}function r1(e){if(!e||typeof e!="object")return null;let t=e,r=typeof t.tx_id=="string"?t.tx_id:typeof t.id=="string"?t.id:null;return r&&/^[0-9a-f]{40}$/.test(r)?r:null}function n1(e,t,r){return v(u.curation.recommend(),e,n=>[n.withdraw?gn(e,n.author,n.permlink):fn(e,n.author,n.permlink,n.reason)],async(n,o)=>{await S(t?.adapter,r,[u.curation.post(o.author,o.permlink),[...u.curation._recommendationsPrefix]]);},t,"posting",{broadcastMode:r})}/** * @license bytebuffer.ts (c) 2015 Daniel Wirtz * Backing buffer: ArrayBuffer, Accessor: DataView diff --git a/packages/sdk/dist/node/index.cjs.map b/packages/sdk/dist/node/index.cjs.map index 3f99e28402..dad57cb297 100644 --- a/packages/sdk/dist/node/index.cjs.map +++ b/packages/sdk/dist/node/index.cjs.map @@ -1 +1 @@ -{"version":3,"sources":["../../src/hive-tx/helpers/ByteBuffer.ts","../../src/hive-tx/config.ts","../../src/hive-tx/helpers/Signature.ts","../../src/hive-tx/helpers/PublicKey.ts","../../src/hive-tx/helpers/Asset.ts","../../src/hive-tx/helpers/HexBuffer.ts","../../src/hive-tx/helpers/serializer.ts","../../src/hive-tx/helpers/sleep.ts","../../src/hive-tx/helpers/call.ts","../../src/hive-tx/Transaction.ts","../../src/hive-tx/helpers/PrivateKey.ts","../../src/hive-tx/helpers/aes.ts","../../src/hive-tx/helpers/deserializer.ts","../../src/hive-tx/helpers/memo.ts","../../src/hive-tx/helpers/utils.ts","../../src/modules/core/hive-tx.ts","../../src/modules/core/errors/chain-errors.ts","../../src/modules/core/mutations/use-broadcast-mutation.ts","../../src/modules/core/mutations/broadcast-json.ts","../../src/modules/core/mutations/invalidate-after-broadcast.ts","../../src/modules/core/abort-signal.ts","../../src/modules/core/config.ts","../../src/modules/core/queries-manager.ts","../../src/modules/core/utils/decoder-encoder.ts","../../src/modules/core/utils/parse-asset.ts","../../src/modules/core/utils/get-bound-fetch.ts","../../src/modules/core/utils/is-community.ts","../../src/modules/core/utils/pagination-helpers.ts","../../src/modules/core/utils/vests-to-hp.ts","../../src/modules/core/utils/is-empty-date.ts","../../src/modules/core/queries/get-dynamic-props-query-options.ts","../../src/modules/core/queries/get-reward-fund-query-options.ts","../../src/modules/core/query-keys.ts","../../src/modules/core/utf8.ts","../../src/modules/ai/queries/get-ai-generate-price-query-options.ts","../../src/modules/ai/queries/get-ai-images-query-options.ts","../../src/modules/ai/queries/get-ai-assist-price-query-options.ts","../../src/modules/ai/queries/get-ai-transcribe-price-query-options.ts","../../src/modules/ai/mutations/use-generate-image.ts","../../src/modules/ai/mutations/use-ai-assist.ts","../../src/modules/ai/mutations/use-ai-transcribe.ts","../../src/modules/accounts/queries/get-account-full-query-options.ts","../../src/modules/accounts/utils/profile-metadata.ts","../../src/modules/accounts/utils/parse-accounts.ts","../../src/modules/accounts/utils/account-name-query.ts","../../src/modules/accounts/queries/get-accounts-query-options.ts","../../src/modules/accounts/queries/get-follow-count-query-options.ts","../../src/modules/accounts/queries/get-followers-query-options.ts","../../src/modules/accounts/queries/get-following-query-options.ts","../../src/modules/accounts/queries/get-muted-users-query-options.ts","../../src/modules/accounts/queries/lookup-accounts-query-options.ts","../../src/modules/accounts/queries/search-accounts-by-username-query-options.ts","../../src/modules/accounts/queries/check-username-wallets-pending-query-options.ts","../../src/modules/accounts/queries/get-relationship-between-accounts-query-options.ts","../../src/modules/accounts/queries/get-account-subscriptions-query-options.ts","../../src/modules/accounts/queries/get-bookmarks-query-options.ts","../../src/modules/accounts/queries/get-favorites-query-options.ts","../../src/modules/accounts/queries/check-favorite-query-options.ts","../../src/modules/accounts/queries/get-favorite-tags-query-options.ts","../../src/modules/accounts/utils/normalize-tag.ts","../../src/modules/accounts/queries/get-favorite-tag-check-query-options.ts","../../src/modules/accounts/queries/get-account-recoveries-query-options.ts","../../src/modules/accounts/queries/get-account-pending-recovery-query-options.ts","../../src/modules/accounts/queries/get-account-reputations-query-options.ts","../../src/modules/accounts/queries/get-transactions-infinite-query-options.ts","../../src/modules/accounts/queries/get-bots-query-options.ts","../../src/modules/accounts/queries/get-referrals-infinite-query-options.ts","../../src/modules/accounts/queries/get-referrals-stats-query-options.ts","../../src/modules/accounts/queries/get-friends-infinite-query-options.ts","../../src/modules/accounts/queries/get-search-friends-query-options.ts","../../src/modules/posts/queries/get-trending-tags-query-options.ts","../../src/modules/posts/queries/get-trending-tags-with-stats-query-options.ts","../../src/modules/posts/queries/get-fragments-query-options.ts","../../src/modules/posts/queries/get-promoted-posts-query-options.ts","../../src/modules/posts/queries/get-entry-active-votes-query-options.ts","../../src/modules/posts/queries/get-user-post-vote-query-options.ts","../../src/modules/posts/queries/get-content-query-options.ts","../../src/modules/posts/queries/get-content-replies-query-options.ts","../../src/modules/posts/queries/get-post-header-query-options.ts","../../src/modules/posts/utils/filter-dmca-entries.ts","../../src/modules/bridge/verify-on-alternate-node.ts","../../src/modules/posts/queries/get-post-query-options.ts","../../src/modules/bridge/requests.ts","../../src/modules/posts/queries/get-discussions-query-options.ts","../../src/modules/posts/queries/get-account-posts-query-options.ts","../../src/modules/posts/queries/get-posts-ranked-query-options.ts","../../src/modules/posts/queries/get-reblogs-query-options.ts","../../src/modules/posts/queries/get-reblogged-by-query-options.ts","../../src/modules/posts/queries/get-schedules-query-options.ts","../../src/modules/posts/queries/get-drafts-query-options.ts","../../src/modules/posts/queries/get-images-query-options.ts","../../src/modules/posts/queries/get-comment-history-query-options.ts","../../src/modules/posts/queries/get-deleted-entry-query-options.ts","../../src/modules/posts/queries/get-post-tips-query-options.ts","../../src/modules/posts/utils/waves-helpers.ts","../../src/modules/posts/queries/get-waves-feed-query-options.ts","../../src/modules/posts/queries/get-shorts-feed-query-options.ts","../../src/modules/posts/queries/get-waves-by-host-query-options.ts","../../src/modules/posts/queries/get-waves-by-tag-query-options.ts","../../src/modules/posts/queries/get-waves-following-query-options.ts","../../src/modules/posts/queries/get-waves-trending-tags-query-options.ts","../../src/modules/posts/queries/get-waves-by-account-query-options.ts","../../src/modules/posts/queries/get-waves-trending-authors-query-options.ts","../../src/modules/posts/queries/get-normalize-post-query-options.ts","../../src/modules/accounts/queries/get-account-vote-history-infinite-query-options.ts","../../src/modules/accounts/queries/get-profiles-query-options.ts","../../src/modules/accounts/queries/get-balance-history-query-options.ts","../../src/modules/accounts/queries/get-aggregated-balance-query-options.ts","../../src/modules/accounts/queries/get-pro-members-query-options.ts","../../src/modules/accounts/mutations/use-account-update.ts","../../src/modules/accounts/mutations/use-account-relations-update.ts","../../src/modules/operations/builders/content.ts","../../src/modules/operations/builders/wallet.ts","../../src/modules/operations/builders/social.ts","../../src/modules/operations/builders/governance.ts","../../src/modules/operations/builders/community.ts","../../src/modules/operations/builders/market.ts","../../src/modules/operations/builders/account.ts","../../src/modules/operations/builders/ecency.ts","../../src/modules/accounts/mutations/use-follow.ts","../../src/modules/accounts/mutations/use-unfollow.ts","../../src/modules/accounts/mutations/bookmarks/use-account-bookmark-add.ts","../../src/modules/accounts/mutations/bookmarks/use-account-bookmark-delete.ts","../../src/modules/accounts/mutations/favorites/use-account-favorite-add.ts","../../src/modules/accounts/mutations/favorites/use-account-favorite-delete.ts","../../src/modules/accounts/mutations/favorite-tags/requests.ts","../../src/modules/accounts/mutations/favorite-tags/use-favorite-tag-add.ts","../../src/modules/accounts/mutations/favorite-tags/use-favorite-tag-delete.ts","../../src/modules/accounts/mutations/use-account-update-key-auths.ts","../../src/modules/accounts/mutations/use-account-update-password.ts","../../src/modules/accounts/mutations/use-account-revoke-posting.ts","../../src/modules/accounts/mutations/use-account-update-recovery.ts","../../src/modules/accounts/mutations/build-revoke-keys-op.ts","../../src/modules/accounts/mutations/use-account-revoke-key.ts","../../src/modules/accounts/mutations/use-claim-account.ts","../../src/modules/accounts/mutations/use-grant-posting-permission.ts","../../src/modules/accounts/mutations/use-create-account.ts","../../src/modules/accounts/utils/account-power.ts","../../src/modules/operations/authority-map.ts","../../src/modules/operations/mutations/sign-operation-by-key.ts","../../src/modules/operations/mutations/sign-operation-by-keychain.ts","../../src/modules/operations/mutations/sign-operation-by-hivesigner.ts","../../src/modules/operations/queries/get-chain-properties-query-options.ts","../../src/modules/posts/utils/fragment-cache-helpers.ts","../../src/modules/posts/mutations/add-fragment.ts","../../src/modules/posts/mutations/edit-fragment.ts","../../src/modules/posts/mutations/remove-fragment.ts","../../src/modules/private-api/requests.ts","../../src/modules/posts/mutations/use-add-draft.ts","../../src/modules/posts/mutations/use-update-draft.ts","../../src/modules/posts/mutations/use-delete-draft.ts","../../src/modules/posts/mutations/use-add-schedule.ts","../../src/modules/posts/mutations/use-delete-schedule.ts","../../src/modules/posts/mutations/use-move-schedule.ts","../../src/modules/posts/mutations/use-add-image.ts","../../src/modules/posts/mutations/use-delete-image.ts","../../src/modules/posts/mutations/use-upload-image.ts","../../src/modules/posts/cache/entries-cache-management.ts","../../src/modules/posts/mutations/use-vote.ts","../../src/modules/posts/mutations/use-reblog.ts","../../src/modules/posts/mutations/use-comment.ts","../../src/modules/posts/cache/discussions-cache-utils.ts","../../src/modules/posts/mutations/use-delete-comment.ts","../../src/modules/posts/mutations/use-cross-post.ts","../../src/modules/posts/mutations/use-update-reply.ts","../../src/modules/posts/mutations/use-promote.ts","../../src/modules/posts/utils/validate-post-creating.ts","../../src/modules/analytics/mutations/index.ts","../../src/modules/analytics/mutations/use-record-activity.ts","../../src/modules/analytics/queries/get-discover-leaderboard-query-options.ts","../../src/modules/analytics/queries/get-discover-curation-query-options.ts","../../src/modules/analytics/queries/get-page-stats-query-options.ts","../../src/modules/integrations/3speak/functions/beneficiary.ts","../../src/modules/integrations/3speak/queries/index.ts","../../src/modules/integrations/hivesigner/queries/index.ts","../../src/modules/integrations/hivesigner/queries/get-decode-memo-query-options.ts","../../src/modules/integrations/hivesigner/index.ts","../../src/modules/integrations/3speak/queries/get-account-token-query-options.ts","../../src/modules/integrations/3speak/queries/get-account-videos-query-options.ts","../../src/modules/integrations/3speak/index.ts","../../src/modules/integrations/hiveposh/queries/get-hiveposh-links-query-options.ts","../../src/modules/integrations/plausible/queries/get-stats-query-options.ts","../../src/modules/resource-credits/queries/get-rc-stats-query-options.ts","../../src/modules/resource-credits/queries/get-account-rc-query-options.ts","../../src/modules/resource-credits/queries/get-rc-resource-params-query-options.ts","../../src/modules/resource-credits/types/resource-params.ts","../../src/modules/resource-credits/utils/estimate-comment-rc-cost.ts","../../src/modules/resource-credits/utils/price-rc-usage.ts","../../src/modules/resource-credits/utils/count-operation-usage.ts","../../src/modules/resource-credits/utils/estimate-rc-precheck.ts","../../src/modules/games/queries/game-status-check-query-options.ts","../../src/modules/games/mutations/game-claim.ts","../../src/modules/quests/queries/get-quests-query-options.ts","../../src/modules/quests/catalog.ts","../../src/modules/quests/mutations/buy-streak-freeze.ts","../../src/modules/communities/mutations/use-subscribe-community.ts","../../src/modules/communities/mutations/use-unsubscribe-community.ts","../../src/modules/communities/mutations/use-mute-post.ts","../../src/modules/communities/mutations/use-set-community-role.ts","../../src/modules/communities/mutations/use-update-community.ts","../../src/modules/communities/mutations/use-register-community-rewards.ts","../../src/modules/communities/mutations/use-pin-post.ts","../../src/modules/communities/queries/get-communities-query-options.ts","../../src/modules/communities/queries/get-community-context-query-options.ts","../../src/modules/communities/queries/get-community-query-options.ts","../../src/modules/communities/queries/get-community-subscribers-query-options.ts","../../src/modules/communities/queries/get-account-notifications-infinite-query-options.ts","../../src/modules/communities/queries/get-rewarded-communities-query-options.ts","../../src/modules/communities/types/community.ts","../../src/modules/communities/utils/index.ts","../../src/modules/notifications/queries/get-notifications-unread-count-query-options.ts","../../src/modules/notifications/queries/get-notifications-infinite-query-options.ts","../../src/modules/notifications/enums/notification-filter.ts","../../src/modules/notifications/enums/notify-types.ts","../../src/modules/notifications/queries/get-notifications-settings-query-options.ts","../../src/modules/notifications/queries/get-announcements-query-options.ts","../../src/modules/notifications/queries/get-spotlights-query-options.ts","../../src/modules/notifications/mutations/use-mark-notifications-read.ts","../../src/modules/notifications/mutations/use-set-last-read.ts","../../src/modules/proposals/queries/get-proposal-query-options.ts","../../src/modules/proposals/queries/get-proposals-query-options.ts","../../src/modules/proposals/queries/get-proposal-votes-query-options.ts","../../src/modules/proposals/queries/get-user-proposal-votes-query-options.ts","../../src/modules/proposals/mutations/use-proposal-vote.ts","../../src/modules/proposals/mutations/use-proposal-create.ts","../../src/modules/wallet/queries/get-vesting-delegations-query-options.ts","../../src/modules/wallet/queries/get-account-delegations-query-options.ts","../../src/modules/wallet/queries/get-vesting-delegation-expirations-query-options.ts","../../src/modules/wallet/queries/get-conversion-requests-query-options.ts","../../src/modules/wallet/queries/get-collateralized-conversion-requests-query-options.ts","../../src/modules/wallet/queries/get-savings-withdraw-from-query-options.ts","../../src/modules/wallet/queries/get-withdraw-routes-query-options.ts","../../src/modules/wallet/queries/get-open-orders-query-options.ts","../../src/modules/wallet/queries/get-outgoing-rc-delegations-infinite-query-options.ts","../../src/modules/wallet/queries/get-incoming-rc-query-options.ts","../../src/modules/wallet/utils/received-vesting-shares.ts","../../src/modules/wallet/queries/get-received-vesting-shares-query-options.ts","../../src/modules/wallet/queries/get-recurrent-transfers-query-options.ts","../../src/modules/wallet/queries/get-portfolio-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-general-info-query-options.ts","../../src/modules/wallet/queries/get-hbd-asset-general-info-query-options.ts","../../src/modules/wallet/queries/get-hive-power-asset-general-info-query-options.ts","../../src/modules/wallet/consts/hive-account-operation-groups.ts","../../src/modules/wallet/consts/hive-operation-list.ts","../../src/modules/wallet/consts/hive-operation-orders.ts","../../src/modules/wallet/queries/get-hive-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hbd-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hive-power-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-metric-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-withdrawal-routes-query-options.ts","../../src/modules/wallet/queries/get-hive-power-delegates-query-options.ts","../../src/modules/wallet/queries/get-hive-power-delegatings-query-options.ts","../../src/modules/market/queries/get-order-book-query-options.ts","../../src/modules/market/queries/get-market-statistics-query-options.ts","../../src/modules/market/queries/get-market-history-query-options.ts","../../src/modules/market/queries/get-hive-hbd-stats-query-options.ts","../../src/modules/market/queries/get-market-data-query-options.ts","../../src/modules/market/queries/get-trade-history-query-options.ts","../../src/modules/market/queries/get-feed-history-query-options.ts","../../src/modules/market/queries/get-current-median-history-price-query-options.ts","../../src/modules/market/mutations/use-limit-order-create.ts","../../src/modules/market/mutations/use-limit-order-cancel.ts","../../src/modules/market/requests.ts","../../src/modules/hive-engine/requests.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-balances-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-market-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-metadata-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-transactions-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-metrics-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-unclaimed-rewards-query-options.ts","../../src/modules/hive-engine/queries/get-all-hive-engine-tokens-query-options.ts","../../src/modules/hive-engine/utils/formatted-number.ts","../../src/modules/hive-engine/utils/hive-engine-token.ts","../../src/modules/hive-engine/queries/get-hive-engine-balances-with-usd-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-general-info-query-options.ts","../../src/modules/points/queries/get-points-query-options.ts","../../src/modules/points/queries/get-points-asset-general-info-query-options.ts","../../src/modules/points/queries/get-points-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-account-wallet-asset-info-query-options.ts","../../src/modules/wallet/types/asset-operation.ts","../../src/modules/wallet/mutations/use-transfer.ts","../../src/modules/wallet/mutations/use-transfer-point.ts","../../src/modules/wallet/mutations/use-delegate-vesting-shares.ts","../../src/modules/wallet/mutations/use-set-withdraw-vesting-route.ts","../../src/modules/wallet/mutations/use-transfer-engine-token.ts","../../src/modules/wallet/mutations/use-transfer-to-savings.ts","../../src/modules/wallet/mutations/use-transfer-from-savings.ts","../../src/modules/wallet/mutations/use-transfer-to-vesting.ts","../../src/modules/wallet/mutations/use-withdraw-vesting.ts","../../src/modules/wallet/mutations/use-convert.ts","../../src/modules/wallet/mutations/use-claim-interest.ts","../../src/modules/wallet/mutations/use-claim-rewards.ts","../../src/modules/wallet/mutations/use-delegate-engine-token.ts","../../src/modules/wallet/mutations/use-undelegate-engine-token.ts","../../src/modules/wallet/mutations/use-stake-engine-token.ts","../../src/modules/wallet/mutations/use-unstake-engine-token.ts","../../src/modules/wallet/mutations/use-claim-engine-rewards.ts","../../src/modules/wallet/mutations/use-engine-market-order.ts","../../src/modules/wallet/mutations/use-wallet-operation.ts","../../src/modules/wallet/mutations/use-delegate-rc.ts","../../src/modules/witnesses/mutations/use-witness-vote.ts","../../src/modules/witnesses/mutations/use-witness-proxy.ts","../../src/modules/witnesses/queries/get-witnesses-query-options.ts","../../src/modules/points/types/point-transaction-type.ts","../../src/modules/points/mutations/use-claim-points.ts","../../src/modules/search/query-builder.ts","../../src/modules/search/parse-json-response.ts","../../src/modules/search/retry-policy.ts","../../src/modules/search/queries/get-search-query-options.ts","../../src/modules/search/requests.ts","../../src/modules/search/queries/get-similar-entries-query-options.ts","../../src/modules/search/queries/get-search-account-query-options.ts","../../src/modules/search/queries/get-search-topics-query-options.ts","../../src/modules/search/queries/get-search-api-infinite-query-options.ts","../../src/modules/search/queries/get-search-path-query-options.ts","../../src/modules/support/queries/get-support-settings-query-options.ts","../../src/modules/support/mutations/update-support-settings.ts","../../src/modules/promotions/queries/get-boost-plus-prices-query-options.ts","../../src/modules/promotions/queries/get-rc-delegation-prices-query-options.ts","../../src/modules/promotions/queries/get-rc-delegation-active-query-options.ts","../../src/modules/promotions/queries/get-promote-price-query-options.ts","../../src/modules/promotions/queries/get-boost-plus-account-prices-query-options.ts","../../src/modules/promotions/mutations/use-boost-plus.ts","../../src/modules/promotions/mutations/use-rc-delegation.ts","../../src/modules/auth/requests.ts","../../src/modules/bad-actors/queries/get-bad-actors-query-options.ts","../../src/modules/polls/types/poll.ts","../../src/modules/polls/queries/get-poll-query-options.ts","../../src/modules/polls/mutations/use-poll-vote.ts","../../src/modules/moderation/constants.ts","../../src/modules/moderation/account-reputation.ts","../../src/modules/moderation/external-links.ts","../../src/modules/moderation/content-moderation.ts","../../src/modules/newsletter/errors.ts","../../src/modules/newsletter/api.ts","../../src/modules/newsletter/queries/get-digest-subscriptions-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-sender-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-issues-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-posts-query-options.ts","../../src/modules/newsletter/mutations/use-subscribe-digest.ts","../../src/modules/newsletter/mutations/use-leave-digest.ts","../../src/modules/newsletter/mutations/use-unsubscribe-all-digests.ts","../../src/modules/newsletter/mutations/use-send-newsletter-issue.ts","../../src/modules/curation/types.ts","../../src/modules/curation/flags.ts","../../src/modules/curation/dmca.ts","../../src/modules/curation/requests.ts","../../src/modules/curation/queries/get-curation-feed-infinite-query-options.ts","../../src/modules/curation/queries/get-curation-status-query-options.ts","../../src/modules/curation/queries/get-curation-roster-query-options.ts","../../src/modules/curation/queries/get-curation-roster-admin-query-options.ts","../../src/modules/curation/queries/get-curation-recommendations-infinite-query-options.ts","../../src/modules/curation/queries/get-curation-post-query-options.ts","../../src/modules/curation/queries/get-curation-recommender-query-options.ts","../../src/modules/curation/mutations/use-curation-recommend.ts"],"names":["EMPTY_BUFFER","_encoder","_decoder","getEncoder","s","utf8","i","c","next","getDecoder","b","bytes","result","byte","codePoint","ByteBuffer","_ByteBuffer","capacity","littleEndian","buffers","buf","bb","view","offset","buffer","source","value","relative","src","copy","begin","end","target","targetOffset","sourceOffset","sourceLimit","targetRelative","len","current","length","forceCopy","limit","size","str","currentOffset","encoded","lenVarintSize","start","lenResult","lenValue","lenLength","config","DEFAULT_SERVER_RPC_PROXY_METHODS","serverRpcProxy","setServerRpcProxy","opts","url","headers","k","v","timeoutMs","methods","m","pos","fallback","sanitizeNodeList","nodes","n","setNodes","validNodes","setRestNodes","valid","setRestNodesByApi","map","api","list","setUserAgent","ua","setResilience","r","bool","Signature","_Signature","data","recovery","compressed","string","temp","hexToBytes","bytesToHex","message","sig","secp256k1","PublicKey","_PublicKey","key","prefix","wif","expectedPrefix","bs58","checksum","expectedChecksum","ripemd160","isUint8ArrayEqual","signature","encodePublic","a","Asset","_Asset","amount","symbol","expectedSymbol","amountString","HexBuffer","_HexBuffer","OPERATION_IDS","VoidSerializer","StringSerializer","Int16Serializer","Int64Serializer","UInt8Serializer","UInt16Serializer","UInt32Serializer","UInt64Serializer","BooleanSerializer","StaticVariantSerializer","itemSerializers","id","item","AssetSerializer","asset","precision","DateSerializer","PublicKeySerializer","BinarySerializer","VariableBinarySerializer","FlatMapSerializer","keySerializer","valueSerializer","ArraySerializer","itemSerializer","ObjectSerializer","keySerializers","serializer","error","OptionalSerializer","AuthoritySerializer","BeneficiarySerializer","PriceSerializer","ChainPropertiesSerializer","OperationDataSerializer","operationId","definitions","objectSerializer","OperationSerializers","ProposalUpdateSerializer","OperationSerializer","operation","TransactionSerializer","EncryptedMemoSerializer","Serializer","sleep","ms","resolve","isNodeRuntime","serverIdentityHeaders","rpcProxyStats","ProxyMiss","reason","errorMessage","proxyConsecutiveMisses","proxyOpenUntil","proxyRpcCall","proxy","method","params","callerTimeoutMs","externalSignal","validate","dot","tSignal","cleanupTimeout","createTimeoutSignal","signal","cleanupMerge","mergeSignals","res","e","relayed","RPCError","rpcError","NodeError","node","parseRetryAfterMs","header","secs","dateMs","delta","PRE_CONNECTION_ERRORS","BROWSER_NETWORK_ERRORS","flattenErrorText","parts","cause","depth","isBroadcastSafeToRetry","text","code","msg","isNodeLevelRPCError","apiOf","RATE_LIMIT_BASE_MS","RATE_LIMIT_MAX_MS","RATE_LIMIT_STREAK_RESET_MS","MAX_API_FAILURES_BEFORE_COOLDOWN","API_COOLDOWN_MS","HEAD_BLOCK_MAX_AGE_MS","STALE_BLOCK_THRESHOLD","LATENCY_EWMA_ALPHA","LATENCY_MIN_SAMPLES","LATENCY_MAX_AGE_MS","LATENCY_REPROBE_MS","LATENCY_UNPROVEN_PRIOR_MS","LATENCY_SLOW_FAILURE_MS","NodeHealthTracker","h","durationMs","profileKey","apiFail","now","p","elapsedMs","existing","retryAfterMs","hasHeader","cooldown","blockNum","recent","best","healthy","unhealthy","ordered","d","probe","threshold","cand","candTouch","touch","rpcHealthTracker","restHealthTracker","HedgeBudget","tokens","rpcHedgeBudget","adaptiveAttemptTimeout","tracker","callerTimeout","explicit","ewma","recordError","tryRecordHeadBlock","block","createTimeoutReason","err","controller","timer","primary","secondary","onPrimaryAbort","onSecondaryAbort","cleanup","jsonRPCCall","timeout","shouldRetry","body","jitterDelay","hedgedRpcAttempt","hedgePool","explicitTimeout","deadlineAt","onHedgeFired","reject","done","pendingLegs","hedgeFired","primarySettled","lastError","hedgeTimer","primaryStart","controllers","finish","settle","startLeg","isHedge","merged","legTimeout","primaryWindow","delay","live","callRPC","retry","ceiling","served","deadline","triedInRound","attempt","orderedNodes","callStart","callRPCBroadcast","triedNodes","apiMethods","callREST","endpoint","restProfileKey","apiNodes","alreadyRecorded","baseUrl","path","paramObj","processedPathParams","restSignal","restCleanup","restCallStart","response","callWithQuorum","quorum","allNodes","arr","j","currentBatchSize","allResults","batchNodes","promises","batchResults","consensusResult","findConsensus","results","resultGroups","consensusGroup","group","chainId","Transaction","_Transaction","options","operationName","operationBody","keys","digest","txId","checkStatus","maxPollAttempts","status","transactionData","sha256","expiration","props","refBlockPrefix","expirationIso","NETWORK_ID","PrivateKey","_PrivateKey","decodePrivate","seed","username","password","role","rv","encodePrivate","publicKey","sha512","doubleSha256","input","encodedKey","checksumVerify","encrypt","privateKey","nonce","uniqueNonce","crypt","decrypt","nonceL","S","ebuf","encryptionKey","iv","tag","check","cbuf","check32","cryptoJsDecrypt","cryptoJsEncrypt","messageBuffer","AESCBC","uniqueNonceEntropy","randomPrivateKey","long","entropy","PublicKeyDeserializer","fixedBuf","UInt64Deserializer","UInt32Deserializer","BinaryDeserializer","bCopy","BufferDeserializer","keyDeserializers","obj","deserializer","EncryptedMemoDeserializer","Deserializer","encode","memo","testNonce","checkEncryption","toPrivateObj","toPublicObj","mbuf","memoBuffer","mbuf2","decode","from","to","encrypted","otherpub","encodeTest","plaintext","cyphertext","o","Memo","utils_exports","__export","buildWitnessSetProperties","makeBitMaskFilter","operations","validateUsername","suffix","ref","label","allowedOperations","reduceFunction","low","high","allowedOperation","owner","type","serialize","nobleSha256","isWif","broadcastOperations","ops","tx","op","broadcastOperationsAsync","MANA_REGENERATION_SECONDS","calculateManabar","maxMana","manabar","currentMana","percentage","getVests","account","vests","delegated","received","withdrawRate","alreadyWithdrawn","withdrawVests","calculateVPMana","calculateRCMana","rcAccount","ErrorType","parseChainError","errorDescription","errorCode","errorString","testPattern","pattern","formatError","parsed","shouldTriggerAuthFallback","isResourceCreditsError","isInfoError","isNetworkError","broadcastWithMethod","auth","authority","fetchedKey","fetchedToken","broadcastMode","adapter","token","hs","tokenError","broadcastWithFallback","loginType","hasPostingAuth","selectedMethod","hsError","chain","errors","shouldSkip","skipReason","prefetchedKey","prefetchedToken","skipReasons","errorMessages","useBroadcastMutation","mutationKey","onSuccess","useMutation","payload","postingKey","accessToken","broadcastJson","jjson","BROADCAST_INCLUSION_DELAY_MS","invalidateAfterBroadcast","withTimeoutSignal","timeoutSignal","ac","onAbort","isDevelopment","getHeliusApiKey","INTERNAL_API_TIMEOUT_MS","SERVER_GC_TIME_MS","queryClientResolver","fallbackQueryClient","resolveQueryClient","QueryClient","CONFIG","client","ConfigManager","setQueryClient","setQueryClientResolver","setPrivateApiHost","host","setNewsletterHost","setClientId","clientId","setDefaultObserver","observer","getValidatedBaseUrl","setPollsApiHost","setImageHost","setHiveNodes","userAgent","getServerRpcProxyStats","analyzeRedosRisk","unboundedRange","match","min","max","testRegexPerformance","regex","adversarialInputs","maxExecutionTime","duration","safeCompileRegex","maxLength","staticAnalysis","compileErr","runtimeTest","setDmcaLists","lists","coerceList","resolved","rejectedTagCount","makeQueryClient","getQueryClient","EcencyQueriesManager","getQueryData","queryKey","getInfiniteQueryData","prefetchQuery","prefetchInfiniteQuery","generateClientServerQuery","useQuery","generateClientServerInfiniteQuery","useInfiniteQuery","encodeObj","decodeObj","dataToParse","Symbol","NaiMap","parseAsset","sval","sp","cachedFetch","getBoundFetch","isCommunity","isWrappedResponse","normalizeToWrappedResponse","vestsToHp","hivePerMVests","isEmptyDate","DYNAMIC_PROPS_REFRESH_MS","getDynamicPropsQueryOptions","queryOptions","QueryKeys","rawGlobalDynamic","rawFeedHistory","rawChainProps","rawRewardFund","rawHardforkProps","totalVestingSharesAmount","totalVestingFundAmount","base","quote","fundRecentClaims","fundRewardBalance","votePowerReserveRate","authorRewardCurve","contentConstant","currentHardforkVersion","lastHardfork","hbdPrintRate","hbdInterestRate","headBlock","totalVestingFund","totalVestingShares","virtualSupply","vestingRewardPercent","accountCreationFee","getRewardFundQueryOptions","fundName","entryPath","author","permlink","filter","startAuthor","startPermlink","activeUsername","sort","order","onlyMeta","hours","usernames","following","mode","followType","query","follower","startFollowing","startFollower","excludeList","accounts","targetUsername","reference","name","communityName","proposalId","voter","q","hideLow","since","scrollId","votes","what","content","includeNsfw","witness","page","pageSize","direction","user","coinType","granularity","onlyEnabled","currency","filterKey","bucketSeconds","seconds","startDate","endDate","coin","vsCurrency","fromTs","toTs","dimensions","metrics","dateRange","gameType","utf8ByteLength","varintByteLength","count","remaining","getAiGeneratePriceQueryOptions","getAiImagesQueryOptions","getAiAssistPriceQueryOptions","getAiTranscribePriceQueryOptions","makeIdempotencyKey","invalidateGenerateImageCaches","useGenerateImage","pendingData","useAiAssist","useAiTranscribe","form","isMetadataStripped","hasProfileValues","profile","getAccountFullQueryOptions","bridgeProfile","rows","chainAccount","reread","parseProfileMetadata","stats","follow_stats","reputationValue","DENIED_KEYS","isPlainObject","proto","deepMerge","srcVal","tgtVal","sanitizeTokens","meta","rest","safeMeta","postingJsonMetadata","extractAccountProfile","pickRicherMetadataSnapshot","preferred","preferredKeys","parsePostingMetadataRoot","buildPostingJsonMetadata","existingPostingJsonMetadata","root","existingProfile","mergedProfile","buildProfileMetadata","profileTokens","_ignoredVersion","profileRest","metadata","parseAccounts","rawAccounts","x","jsonMetadata","accountNameByteLength","isQueryableAccountName","getAccountsQueryOptions","queryable","getFollowCountQueryOptions","getFollowersQueryOptions","getFollowingQueryOptions","MUTED_USERS_PAGE_SIZE","MUTED_USERS_MAX_PAGES","getMutedUsersQueryOptions","muted","names","lookupAccountsQueryOptions","getSearchAccountsByUsernameQueryOptions","RESERVED_META_KEYS","checkUsernameWalletsPendingQueryOptions","wallets","walletItem","sanitizedMeta","address","showFlag","baseCandidate","metaTokenCandidates","metaSymbol","metaValue","getRelationshipBetweenAccountsQueryOptions","getAccountSubscriptionsQueryOptions","getBookmarksQueryOptions","getBookmarksInfiniteQueryOptions","infiniteQueryOptions","pageParam","json","lastPage","getFavoritesQueryOptions","getFavoritesInfiniteQueryOptions","checkFavoriteQueryOptions","getFavoriteTagsQueryOptions","getFavoriteTagsInfiniteQueryOptions","TAG_PATTERN","COMMUNITY_PATTERN","normalizeTag","raw","getFavoriteTagCheckQueryOptions","normalized","getAccountRecoveriesQueryOptions","getAccountPendingRecoveryQueryOptions","getAccountReputationsQueryOptions","ACCOUNT_OPERATION_GROUPS","ALL_ACCOUNT_OPERATIONS","deriveNum","entry","normalizeOpType","restType","isNaiAsset","naiToString","normalizeOpValue","getTransactionsInfiniteQueryOptions","operationTypes","fetchPage","toEntries","entries","currentPage","chained","nextPage","getBotsQueryOptions","getReferralsInfiniteQueryOptions","maxId","nextMaxId","getReferralsStatsQueryOptions","getFriendsInfiniteQueryOptions","enabled","accountNames","SEARCH_LIMIT","getSearchFriendsQueryOptions","getTrendingTagsQueryOptions","afterTag","tags","getTrendingTagsWithStatsQueryOptions","getFragmentsQueryOptions","getFragmentsInfiniteQueryOptions","getPromotedPostsQuery","getEntryActiveVotesQueryOptions","getUserPostVoteQueryOptions","getContentQueryOptions","getContentRepliesQueryOptions","getPostHeaderQueryOptions","filterDmcaEntry","entryOrEntries","applyFilter","verifyPostOnAlternateNode","getPostQueryOptions","num","cleanPermlink","verified","verifiedEntry","bridgeApiCall","resolvePost","post","resp","getPost","resolvePosts","posts","validatedPosts","validateEntry","getPostsRanked","start_author","start_permlink","getAccountPosts","newEntry","requiredStringProps","prop","validatedEntry","getPostHeader","getDiscussion","validatedResp","getCommunity","getCommunities","last","normalizePost","getSubscriptions","getSubscribers","community","getRelationshipBetweenAccounts","getProfiles","SortOrder","sortDiscussions","discussion","allPayout","absNegative","isPinned","sortOrders","_a","_b","keyA","keyB","sorted","pinnedIndex","pinned","getDiscussionsQueryOptions","resolvedObserver","oldData","newData","optimisticEntries","fetchedPermlinks","missingOptimistic","opt","getDiscussionQueryOptions","getAccountPostsInfiniteQueryOptions","hasNextPage","getAccountPostsQueryOptions","displaySelects","displaySelect","select","orderForDisplay","byCreated","getPostsRankedInfiniteQueryOptions","_options","sanitizedTag","getPostsRankedQueryOptions","getReblogsQueryOptions","getRebloggedByQueryOptions","getSchedulesQueryOptions","getSchedulesInfiniteQueryOptions","getDraftsQueryOptions","getDraftsInfiniteQueryOptions","fetchUserImages","getImagesQueryOptions","getGalleryImagesQueryOptions","getImagesInfiniteQueryOptions","getCommentHistoryQueryOptions","makeEntryPath","cleanAuthor","normalizedAuthor","normalizedPermlink","getDeletedEntryQueryOptions","isValid","history","title","getPostTipsQueryOptions","isEnabled","normalizeContainer","normalizeParent","normalizeWaveEntryFromApi","containerSource","container","parent","toEntryArray","getVisibleFirstLevelThreadItems","discussionItemsRaw","discussionItems","firstLevelItems","parent_author","parent_permlink","mapThreadItemsToWaveEntries","items","DEFAULT_FEED_LIMIT","normalizeParams","fetchWavesFeedPage","containers","cursor","row","getWavesFeedQueryOptions","getWavesLatestFeedQueryOptions","fetchShortsFeedPage","getShortsFeedQueryOptions","THREAD_CONTAINER_BATCH_SIZE","MAX_CONTAINERS_TO_SCAN","getThreads","scannedContainers","skipContainerId","rpcParams","normalizedContainers","visibleItems","lastContainer","getWavesByHostQueryOptions","DEFAULT_TAG_FEED_LIMIT","getWavesByTagQueryOptions","getWavesFollowingQueryOptions","normalizedUsername","flattened","getWavesTrendingTagsQueryOptions","getWavesByAccountQueryOptions","getWavesTrendingAuthorsQueryOptions","getNormalizePostQueryOptions","isEntry","getDays","createdDate","past","getAccountVoteHistoryInfiniteQueryOptions","filters","dayLimit","historyObj","filtered","firstHistory","getProfilesQueryOptions","getBalanceHistoryInfiniteQueryOptions","getAggregatedBalanceQueryOptions","getProMembersQueryOptions","proMembersSet","members","useAccountUpdate","queryClient","useQueryClient","_data","variables","useAccountRelationsUpdate","onError","kind","relationsQuery","actualRelation","buildVoteOp","weight","buildCommentOp","parentAuthor","parentPermlink","missing","buildCommentOptionsOp","maxAcceptedPayout","percentHbd","allowVotes","allowCurationRewards","extensions","buildDeleteCommentOp","buildReblogOp","deleteReblog","buildTransferOp","buildMultiTransferOps","destinations","dest","buildRecurrentTransferOp","recurrence","executions","buildTransferToSavingsOp","buildTransferFromSavingsOp","requestId","buildCancelTransferFromSavingsOp","buildClaimInterestOps","buildTransferToVestingOp","buildWithdrawVestingOp","vestingShares","buildDelegateVestingSharesOp","delegator","delegatee","buildSetWithdrawVestingRouteOp","fromAccount","toAccount","percent","autoVest","buildConvertOp","buildCollateralizedConvertOp","buildEngineOp","contractAction","contractPayload","contractName","buildEngineClaimOp","buildDelegateRcOp","delegatees","maxRc","delegateeArray","buildFollowOp","buildUnfollowOp","buildIgnoreOp","buildUnignoreOp","buildSetLastReadOps","date","lastReadDate","notifyOp","ecencyNotifyOp","buildWitnessVoteOp","approve","buildWitnessProxyOp","buildProposalCreateOp","creator","buildProposalVoteOp","proposalIds","buildRemoveProposalOp","proposalOwner","buildUpdateProposalOp","dailyPay","subject","buildSubscribeOp","buildUnsubscribeOp","buildSetRoleOp","buildUpdateCommunityOp","buildPinPostOp","pin","buildMutePostOp","notes","mute","buildMuteUserOp","buildFlagPostOp","BuySellTransactionType","OrderIdPrefix","buildLimitOrderCreateOp","amountToSell","minToReceive","fillOrKill","orderId","formatNumber","decimals","buildLimitOrderCreateOpWithType","orderType","idPrefix","expirationStr","formattedAmountToSell","formattedMinToReceive","buildLimitOrderCancelOp","buildClaimRewardBalanceOp","rewardHive","rewardHbd","rewardVests","buildAccountUpdateOp","active","posting","memoKey","buildAccountUpdate2Op","buildAccountCreateOp","newAccountName","fee","buildCreateClaimedAccountOp","buildClaimAccountOp","buildGrantPostingPermissionOp","currentPosting","grantedAccount","weightThreshold","existingIndex","acc","newAccountAuths","newPosting","buildRevokePostingPermissionOp","revokedAccount","buildChangeRecoveryAccountOp","accountToRecover","newRecoveryAccount","buildRequestAccountRecoveryOp","recoveryAccount","newOwnerAuthority","buildRecoverAccountOp","recentOwnerAuthority","buildBoostPlusOp","buildRcDelegationOp","buildPromoteOp","CURATION_REASONS","buildCurationRecommendOp","recommender","buildCurationUnrecommendOp","buildPointTransferOp","sender","receiver","normalizedAmount","buildMultiPointTransferOps","destArray","buildCommunityRegistrationOp","buildActiveCustomJsonOp","buildPostingCustomJsonOp","useFollow","_result","useUnfollow","useBookmarkAdd","useBookmarkDelete","bookmarkId","useAccountFavoriteAdd","qc","useAccountFavoriteDelete","listKey","infinitePrefix","checkKey","previousList","f","previousCheck","infiniteQueries","previousInfinite","context","favoriteTagRequest","route","addFavoriteTagRequest","deleteFavoriteTagRequest","useFavoriteTagAdd","favoriteTagDeleteMutationOptions","invalidateAll","_tag","useFavoriteTagDelete","dedupeAndSortKeyAuths","additions","useAccountUpdateKeyAuths","accountData","keepCurrent","currentKey","keysToRevoke","keysToRevokeByAuthority","prepareAuth","keyName","allKeysToRevoke","existingKeys","values","useAccountUpdatePassword","updateKeys","newPassword","currentPassword","useAccountRevokePosting","accountName","ctx","useAccountUpdateRecovery","email","canRevokeFromAuthority","revokingKeyStrs","remainingWeight","sum","accountWeight","buildRevokeKeysOp","revokingKeys","hasAnyKeyInAuth","clone","needsOwnerUpdate","useAccountRevokeKey","revokingKey","useClaimAccount","useGrantPostingPermission","useCreateAccount","HIVE_VOTING_MANA_REGENERATION_SECONDS","HIVE_100_PERCENT","HIVE_VOTE_DUST_THRESHOLD","getEffectiveVests","vesting","vestsToRshares","votingPowerValue","votePerc","hasStableVoteHardfork","dynamicProps","major","minor","stableVoteRshares","reserveRate","effectiveVests","usedMana","mana","votingRshares","totalVests","votingPower","powerRechargeTime","power","downVotingPower","totalShares","elapsed","currentManaPerc","rewardsToStakeRatio","curation","rewards","ownVests","rcPower","votingValue","rShares","OPERATION_AUTHORITY_MAP","getCustomJsonAuthority","customJsonOp","opType","customJson","getProposalAuthority","proposalOp","getOperationAuthority","getRequiredAuthority","highestAuthority","useSignOperationByKey","keyOrSeed","useSignOperationByKeychain","keyType","useSignOperationByHivesigner","callbackUri","getChainPropertiesQueryOptions","applyFragmentUpdate","vars","buildAddedFragment","useAddFragment","newFragment","index","useEditFragment","fragmentId","applyUpdate","fragment","useRemoveFragment","parseJsonResponse","errorData","signUp","referral","captchaToken","subscribeEmail","usrActivity","ty","bl","getNotifications","saveNotificationSetting","system","allows_notify","notify_types","getNotificationSetting","markNotifications","addImage","UPLOAD_HOST","uploadImage","file","fetchApi","formData","uploadImageWithSignature","deleteImage","imageId","addDraft","updateDraft","draftId","deleteDraft","addSchedule","schedule","reblog","deleteSchedule","moveSchedule","getPromotedPost","onboardEmail","friend","dataBody","useAddDraft","useUpdateDraft","useDeleteDraft","_variables","useAddSchedule","useDeleteSchedule","useMoveSchedule","useAddImage","nextCode","effectiveCode","useDeleteImage","prev","img","useUploadImage","getEntryFromCache","setEntryInCache","mutateEntry","updater","updated","EntriesCacheManagement","updateVotes","payout","updateReblogsCount","updateRepliesCount","addReply","reply","updateEntries","invalidateEntry","getEntry","isVoteAlreadyReflected","activeVotes","hasVoterRecord","applyVoteCacheUpdate","newVotes","newPayout","useVote","doInvalidate","useReblog","newCount","invalidate","resolveContentActivityType","useComment","beneficiaries","sortedBeneficiaries","isPost","activityType","queriesToInvalidate","discussionsAuthor","discussionsPermlink","addOptimisticDiscussionEntry","rootAuthor","rootPermlink","queries","removeOptimisticDiscussionEntry","snapshots","restoreDiscussionSnapshots","updateEntryInCache","updates","previous","restoreEntryInCache","useDeleteComment","_error","useCrossPost","useUpdateReply","usePromote","DEFAULT_VALIDATE_POST_DELAYS","getContent","validatePostCreating","attempts","delays","waitMs","mutations_exports","useRecordActivity","getLocationInfo","locationInfo","domain","getDiscoverLeaderboardQueryOptions","getDiscoverCurationQueryOptions","accountsResponse","element","curator","receivedVestingShares","delegatedVestingShares","vestingWithdrawRate","effectiveVest","getPageStatsQueryOptions","sortedDimensions","sortedMetrics","THREESPEAK_BENEFICIARY_ACCOUNT","THREESPEAK_BENEFICIARY_WEIGHT","hasThreeSpeakEmbed","enforceThreeSpeakBeneficiary","isThreeSpeakBeneficiary","queries_exports","getAccountTokenQueryOptions","getAccountVideosQueryOptions","getDecodeMemoQueryOptions","HiveSignerIntegration","memoQueryOptions","memoDecoded","tokenQueryOptions","ThreeSpeakIntegration","getHivePoshLinksQueryOptions","getStatsQueryOptions","filterBy","getRcStatsQueryOptions","getAccountRcQueryOptions","getRcResourceParamsQueryOptions","RC_RESOURCE_NAMES","TRANSACTION_HEADER_BYTES","SIGNATURE_BYTES","ASSET_BYTES","big","computeResourceCost","curve","pool","resourceCount","regenShare","coeffA","coeffB","shift","denom","countCommentResourceUsage","transactionBytes","permlinkLength","signatures","hasCommentOptions","sizeInfo","state","exec","stringFieldBytes","commentOperationBytes","commentOptionsBytes","estimateCommentTransactionBytes","EMPTY","estimateCommentRcCost","rcParams","rcStats","usage","regen","cost","breakdown","share","scaled","resourceCost","priceRcUsage","emptyUsage","estimateVoteTransactionBytes","operationBytes","countVoteResourceUsage","estimateRcPrecheck","priced","priceOperation","safeBuffer","estimatedCost","willLikelyFail","average","averageCost","MINIMAL_VOTE","MINIMAL_COMMENT","getGameStatusCheckQueryOptions","gameClaimRequest","contentType","detail","useGameClaim","recordActivity","getQuestsQueryOptions","QUEST_CATALOG","getQuestCatalogEntry","tier","QUEST_MIN_CONTENT_LENGTH","measureQuestContentLength","earnsQuestContentCredit","STREAK_FREEZE_PRICE","STREAK_FREEZE_MAX_OWNED","genIdempotencyKey","buyStreakFreezeRequest","useBuyStreakFreeze","useSubscribeCommunity","useUnsubscribeCommunity","useMutePost","useSetCommunityRole","team","idx","useUpdateCommunity","useRegisterCommunityRewards","usePinPost","getCommunitiesQueryOptions","getCommunityContextQueryOptions","getCommunityQueryOptions","SUBSCRIBERS_PAGE_SIZE","fetchSubscribersPage","getCommunitySubscribersQueryOptions","getCommunitySubscribersInfiniteQueryOptions","getAccountNotificationsInfiniteQueryOptions","getRewardedCommunitiesQueryOptions","ROLES","roleMap","getCommunityType","type_id","getCommunityPermissions","communityType","userRole","subscribed","canPost","canComment","isModerator","getNotificationsUnreadCountQueryOptions","getNotificationsInfiniteQueryOptions","NotificationFilter","NotifyTypes","ALL_NOTIFY_TYPES","NotificationViewType","getNotificationsSettingsQueryOptions","initialMuted","getAnnouncementsQueryOptions","getSpotlightsQueryOptions","_accessToken","markNotificationRead","isInfiniteData","useMarkNotificationsRead","previousData","updatedData","unreadKey","currentUnread","unreadCount","useSetLastRead","getProposalQueryOptions","proposal","getProposalsQueryOptions","proposals","expired","getProposalVotesInfiniteQueryOptions","getUserProposalVotesQueryOptions","vote","useProposalVote","useProposalCreate","getVestingDelegationsQueryOptions","fetchLimit","getAccountDelegationsQueryOptions","getVestingDelegationExpirationsQueryOptions","getConversionRequestsQueryOptions","getCollateralizedConversionRequestsQueryOptions","getSavingsWithdrawFromQueryOptions","getWithdrawRoutesQueryOptions","getOpenOrdersQueryOptions","getOutgoingRcDelegationsInfiniteQueryOptions","delegations","delegation","getIncomingRcQueryOptions","rawVestsToAsset","padded","toReceivedVestingShares","getReceivedVestingSharesQueryOptions","getRecurrentTransfersQueryOptions","normalizeString","trimmed","normalizeNumber","direct","parseToken","rawToken","extractTokens","record","resolveUsername","getPortfolioQueryOptions","getHiveAssetGeneralInfoQueryOptions","marketTicker","marketPrice","liquidBalance","savingsBalance","getHbdAssetGeneralInfoQueryOptions","price","getAPR","currentInflationRate","totalVestingFunds","getHivePowerAssetGeneralInfoQueryOptions","delegatedVests","receivedVests","withdrawRateVests","remainingToWithdrawVests","nextWithdrawalVests","hpBalance","outgoingDelegationsHp","incomingDelegationsHp","pendingPowerDownHp","nextPowerDownHp","totalBalance","availableHp","HIVE_ACCOUNT_OPERATION_GROUPS","HIVE_OPERATION_LIST","operationOrders","HIVE_OPERATION_ORDERS","HIVE_OPERATION_NAME_BY_ID","isHiveOperationName","resolveHiveOperationFilters","rawValues","hasAll","uniqueValues","operationIds","filterArgs","collectRequestedOperations","getNextAccountHistoryPageParam","oldest","resolveAccountHistoryLimit","getHiveAssetTransactionsQueryOptions","requestedOperations","pages","pageParams","getHbdAssetTransactionsQueryOptions","getHivePowerAssetTransactionsQueryOptions","userSelectedOperations","hasAllFilter","formatDate","pad","subtractSeconds","getHiveAssetMetricQueryOptions","hive","non_hive","open","_","__","prevStartDate","getHiveAssetWithdrawalRoutesQueryOptions","getHivePowerDelegatesInfiniteQueryOptions","getHivePowerDelegatingsQueryOptions","getOrderBookQueryOptions","getMarketStatisticsQueryOptions","getMarketHistoryQueryOptions","getHiveHbdStatsQueryOptions","oneDayAgo","dayChange","getMarketDataQueryOptions","getTradeHistoryQueryOptions","getFeedHistoryQueryOptions","getCurrentMedianHistoryPriceQueryOptions","useLimitOrderCreate","useLimitOrderCancel","getMarketData","getCurrencyRate","cur","getCurrencyTokenRate","getCurrencyRates","getHivePrice","ENGINE_RPC_HEADERS","engineRpc","engineRpcSafe","getHiveEngineOrderBook","baseParams","buy","sell","sortByPriceDesc","left","sortByPriceAsc","right","getHiveEngineTradeHistory","getHiveEngineOpenOrders","buyRaw","sellRaw","formatTotal","quantity","getHiveEngineMetrics","symbolQuery","getHiveEngineTokensMarket","getHiveEngineTokensBalances","getHiveEngineTokensMetadata","getHiveEngineTokenTransactions","getHiveEngineTokenMetrics","interval","getHiveEngineUnclaimedRewards","getHiveEngineTokensBalancesQueryOptions","getHiveEngineTokensMarketQueryOptions","getHiveEngineTokensMetadataQueryOptions","getHiveEngineTokenTransactionsQueryOptions","_allPages","lastPageParam","_firstPage","firstPageParam","getHiveEngineTokensMetricsQueryOptions","getHiveEngineUnclaimedRewardsQueryOptions","pending_token","getAllHiveEngineTokensQueryOptions","formattedNumber","fractionDigits","out","av","HiveEngineToken","getHiveEngineBalancesWithUsdQueryOptions","allTokens","balances","t","pricePerHive","providedMetrics","unpricedSymbols","balance","metric","tokenMetadata","lastPrice","balanceAmount","usdValue","getHiveEngineTokenGeneralInfoQueryOptions","hiveQuery","hiveData","metadataList","balanceList","marketList","stakedBalance","unstakingBalance","getPointsQueryOptions","pointsResponse","points","transactionsResponse","transactions","getPointsAssetGeneralInfoQueryOptions","getPointsAssetTransactionsQueryOptions","created","getAccountWalletAssetInfoQueryOptions","fetchQuery","qo","convertPriceToUserCurrency","assetInfo","conversionRate","portfolioQuery","getPortfolioAssetInfo","assetItem","extraItem","dataKey","numValue","portfolioAssetInfo","converted","AssetOperation","useTransfer","useTransferPoint","useDelegateVestingShares","useSetWithdrawVestingRoute","useTransferEngineToken","useTransferToSavings","useTransferFromSavings","useTransferToVesting","useWithdrawVesting","useConvert","useClaimInterest","CLAIM_REWARDS_INVALIDATION_DELAY_MS","pendingInvalidationTimers","useClaimRewards","timerKey","keysToInvalidate","existingTimer","rejected","useDelegateEngineToken","useUndelegateEngineToken","useStakeEngineToken","useUnstakeEngineToken","useClaimEngineRewards","useEngineMarketOrder","buildHiveOperations","buildEngineOperations","getWalletOperationAuthority","useWalletOperation","hiveOps","engineOps","useDelegateRc","useWitnessVote","useWitnessProxy","mapRestWitness","w","getWitnessesInfiniteQueryOptions","getWitnessVotersPageQueryOptions","getWitnessVoterCountQueryOptions","PointTransactionType","claimPointsRequest","useClaimPoints","author_re","type_re","category_re","tag_re","SearchType","MAX_SEARCH_TAGS","MAX_SEARCH_QUERY_LENGTH","firstToken","normalizeSearchAuthor","normalizeSearchCategory","normalizeSearchTags","seen","buildSearchQuery","search","category","normalizedSearch","normalizedCategory","normalizedTags","part","SearchQuery","_query","re","matches","isSearchResponse","MAX_RETRIES","isServer","searchRetryPolicy","failureCount","isTransient","searchQueryOptions","scroll_id","getControversialRisingInfiniteQueryOptions","sinceDate","similar","searchPath","SIMILAR_ENTRIES_SINCE_MS","SIMILAR_ENTRIES_TARGET","SIMILAR_ENTRIES_BODY_LIMIT","SIMILAR_ENTRIES_SSR_TIMEOUT_MS","SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS","SIMILAR_ENTRIES_MIN_RENDER","toMltExcerpt","fingerprint","getSimilarEntriesQueryOptions","rawTags","contentKey","collected","seenAuthors","getSearchAccountQueryOptions","getSearchTopicsQueryOptions","getSearchApiInfiniteQueryOptions","getSearchPathQueryOptions","getSupportSettingsRequest","getSupportSettingsQueryOptions","updateSupportSettingsRequest","applySupportSettingsUpdate","useUpdateSupportSettings","getBoostPlusPricesQueryOptions","getRcDelegationPricesQueryOptions","getRcDelegationActiveQueryOptions","responseData","getPromotePriceQueryOptions","getBoostPlusAccountPricesQueryOptions","useBoostPlus","useRcDelegation","hsTokenRenew","BAD_ACTORS_URL","getBadActorsQueryOptions","POLLS_PROTOCOL_VERSION","PollPreferredInterpretation","mapMetaChoicesToPollChoices","metaChoices","choice","normalizePoll","pollChoices","pollVoters","rawStats","choices","voters","getPollQueryOptions","usePollVote","pollTrxId","HIDDEN_POST_RSHARES_THRESHOLD","HIDDEN_POST_MIN_VOTES","LOW_TRUST_REPUTATION_THRESHOLD","isHumanReadable","accountReputation","neg","reputationLevel","INTERNAL_HOSTS","IMAGE_HOSTS","IMAGE_EXT_RE","URL_RE","TRAILING_PUNCT_RE","hostOf","isExternalPromoLink","rawUrl","hasExternalLink","ContentModerationReason","countVotes","isHiddenPost","netRshares","activeVotesLength","isLowTrustSeoPost","reputation","isAuthorMuted","mutedAuthors","getContentModerationReason","NewsletterApiError","NewsletterSendRefusedError","taken","newsletterUrl","parse","subscribeDigestRequest","getDigestSubscriptionsRequest","leaveDigestRequest","unsubscribeAllDigestsRequest","getNewsletterSenderRequest","getNewsletterIssuesRequest","getNewsletterPostsRequest","postSend","request","previewNewsletterSendRequest","sendNewsletterIssueRequest","getDigestSubscriptionsQueryOptions","getNewsletterSenderQueryOptions","getNewsletterIssuesQueryOptions","getNewsletterPostsQueryOptions","useSubscribeDigest","useLeaveDigest","useUnsubscribeAllDigests","usePreviewNewsletterIssue","useSendNewsletterIssue","CURATION_SORTS","CURATION_VIEWS","CURATION_APPS","CURATION_WINDOWS","CURATION_MARK_STATES","CURATION_FLAG_REASONS","isOnAbuseList","flags","isExcludedByFlags","isDmcaCurationPath","maskDmcaCurationRow","masked","maskDmcaCurationPages","changed","pageChanged","ROUTE","CurationApiError","isRecord","hasItems","hasCurators","hasRecommenders","isStatus","SCORECARD_COUNTS","isRecommenderStats","COMMUNITY_RE","SEED_RE","DEFAULT_TRUE","PARAM_ORDER","normalizeCurationParams","toQuery","LOOPBACK_HOSTS","assertCredentialTransport","getJson","postJson","fetchCurationFeedPage","fetchCurationStatus","fetchCurationRoster","fetchCurationRecommendationsPage","fetchCurationRecommenderStats","fetchCurationPost","curationRosterFeedRequest","curationTickRequest","curationRosterListRequest","curationRosterSetRequest","rules","note","curationRosterRetireRequest","curationMarkRequest","snooze_until","lane","curationMarkClearRequest","curationMyMarksRequest","curationCursorRequest","TRX_ID_RE","curationRecommendMetaRequest","trx_id","ua_class","curationDismissRecoRequest","CURATION_FEED_PAGE_SIZE","CURATION_FEED_STALE_MS","dedupePagesBy","keyOf","dedupeCurationPages","selectCurationFeedPages","getCurationFeedInfiniteQueryOptions","getCurationStatusQueryOptions","getCurationRosterQueryOptions","getCurationRosterAdminQueryOptions","CURATION_RECOMMENDATIONS_PAGE_SIZE","getCurationRecommendationsInfiniteQueryOptions","ACCOUNT_RE","PERMLINK_RE","getCurationPostQueryOptions","getCurationRecommenderQueryOptions","normalizeBroadcastTrxId","useCurationRecommend"],"mappings":"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","file":"index.cjs","sourcesContent":["/**\n * @license bytebuffer.ts (c) 2015 Daniel Wirtz \n * Backing buffer: ArrayBuffer, Accessor: DataView\n * Released under the Apache License, Version 2.0\n * see: https://github.com/dcodeIO/bytebuffer.ts for details\n * modified by @xmcl/bytebuffer\n * And customized for hive-tx\n */\n\nconst EMPTY_BUFFER = new ArrayBuffer(0)\n\n// Lazy-init to avoid crashing on runtimes that lack TextEncoder/TextDecoder\n// (notably React Native with Hermes). Falls back to manual UTF-8 encode/decode.\nlet _encoder: { encode(s: string): Uint8Array } | null = null\nlet _decoder: { decode(b: BufferSource): string } | null = null\n\nfunction getEncoder(): { encode(s: string): Uint8Array } {\n if (!_encoder) {\n if (typeof TextEncoder !== 'undefined') {\n _encoder = new TextEncoder()\n } else {\n _encoder = {\n encode(s: string): Uint8Array {\n // Manual UTF-8 encode fallback\n const utf8: number[] = []\n for (let i = 0; i < s.length; i++) {\n let c = s.charCodeAt(i)\n if (c < 0x80) {\n utf8.push(c)\n } else if (c < 0x800) {\n utf8.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f))\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < s.length) {\n const next = s.charCodeAt(++i)\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff)\n utf8.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n } else {\n utf8.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n }\n }\n return new Uint8Array(utf8)\n },\n }\n }\n }\n return _encoder\n}\n\nfunction getDecoder(): { decode(b: BufferSource): string } {\n if (!_decoder) {\n if (typeof TextDecoder !== 'undefined') {\n _decoder = new TextDecoder()\n } else {\n _decoder = {\n decode(b: BufferSource): string {\n const bytes = b instanceof ArrayBuffer ? new Uint8Array(b) : new Uint8Array((b as ArrayBufferView).buffer, (b as ArrayBufferView).byteOffset, (b as ArrayBufferView).byteLength)\n let result = ''\n for (let i = 0; i < bytes.length; ) {\n const byte = bytes[i]\n let codePoint: number\n if (byte < 0x80) { codePoint = byte; i += 1 }\n else if ((byte & 0xe0) === 0xc0) { codePoint = ((byte & 0x1f) << 6) | (bytes[i + 1] & 0x3f); i += 2 }\n else if ((byte & 0xf0) === 0xe0) { codePoint = ((byte & 0x0f) << 12) | ((bytes[i + 1] & 0x3f) << 6) | (bytes[i + 2] & 0x3f); i += 3 }\n else { codePoint = ((byte & 0x07) << 18) | ((bytes[i + 1] & 0x3f) << 12) | ((bytes[i + 2] & 0x3f) << 6) | (bytes[i + 3] & 0x3f); i += 4 }\n if (codePoint <= 0xffff) { result += String.fromCharCode(codePoint) }\n else { codePoint -= 0x10000; result += String.fromCharCode(0xd800 + (codePoint >> 10), 0xdc00 + (codePoint & 0x3ff)) }\n }\n return result\n },\n }\n }\n }\n return _decoder\n}\n\nexport class ByteBuffer {\n static LITTLE_ENDIAN = true\n static BIG_ENDIAN = false\n static DEFAULT_CAPACITY = 16\n static DEFAULT_ENDIAN = ByteBuffer.BIG_ENDIAN\n\n buffer: ArrayBufferLike\n view: DataView\n offset: number\n markedOffset: number\n limit: number\n littleEndian: boolean\n\n constructor(\n capacity: number = ByteBuffer.DEFAULT_CAPACITY,\n littleEndian: boolean = ByteBuffer.DEFAULT_ENDIAN\n ) {\n this.buffer = capacity === 0 ? EMPTY_BUFFER : new ArrayBuffer(capacity)\n this.view = capacity === 0 ? new DataView(EMPTY_BUFFER) : new DataView(this.buffer)\n this.offset = 0\n this.markedOffset = -1\n this.limit = capacity\n this.littleEndian = littleEndian\n }\n\n static allocate(capacity?: number, littleEndian?: boolean): ByteBuffer {\n return new ByteBuffer(capacity, littleEndian)\n }\n\n static concat(\n buffers: Array,\n littleEndian?: boolean\n ): ByteBuffer {\n let capacity = 0\n for (let i = 0; i < buffers.length; ++i) {\n const buf = buffers[i]\n if (buf instanceof ByteBuffer) {\n capacity += buf.limit - buf.offset\n } else if (buf instanceof Uint8Array) {\n capacity += buf.length\n } else if (buf instanceof ArrayBuffer) {\n capacity += buf.byteLength\n } else if (Array.isArray(buf)) {\n capacity += buf.length\n } else {\n throw TypeError('Illegal buffer')\n }\n }\n\n if (capacity === 0) {\n return new ByteBuffer(0, littleEndian)\n }\n\n const bb = new ByteBuffer(capacity, littleEndian)\n const view = new Uint8Array(bb.buffer)\n let offset = 0\n\n for (let i = 0; i < buffers.length; ++i) {\n let buf = buffers[i]\n if (buf instanceof ByteBuffer) {\n view.set(new Uint8Array(buf.buffer, buf.offset, buf.limit - buf.offset), offset)\n offset += buf.limit - buf.offset\n } else if (buf instanceof Uint8Array) {\n view.set(buf, offset)\n offset += buf.length\n } else if (buf instanceof ArrayBuffer) {\n view.set(new Uint8Array(buf), offset)\n offset += buf.byteLength\n } else {\n // Array\n view.set(buf as number[], offset)\n offset += (buf as number[]).length\n }\n }\n\n bb.limit = bb.offset = offset\n bb.offset = 0\n return bb\n }\n\n static wrap(\n buffer: ByteBuffer | ArrayBuffer | Uint8Array | number[],\n littleEndian?: boolean\n ): ByteBuffer {\n if (buffer instanceof ByteBuffer) {\n const bb = buffer.clone()\n bb.markedOffset = -1\n return bb\n }\n\n let bb: ByteBuffer\n if (buffer instanceof Uint8Array) {\n bb = new ByteBuffer(0, littleEndian)\n if (buffer.length > 0) {\n bb.buffer = buffer.buffer\n bb.offset = buffer.byteOffset\n bb.limit = buffer.byteOffset + buffer.byteLength\n bb.view = new DataView(buffer.buffer)\n }\n } else if (buffer instanceof ArrayBuffer) {\n bb = new ByteBuffer(0, littleEndian)\n if (buffer.byteLength > 0) {\n bb.buffer = buffer\n bb.offset = 0\n bb.limit = buffer.byteLength\n bb.view = buffer.byteLength > 0 ? new DataView(buffer) : new DataView(EMPTY_BUFFER)\n }\n } else if (Array.isArray(buffer)) {\n bb = new ByteBuffer(buffer.length, littleEndian)\n bb.limit = buffer.length\n new Uint8Array(bb.buffer).set(buffer)\n } else {\n throw TypeError('Illegal buffer')\n }\n\n return bb\n }\n\n writeBytes(\n source: ByteBuffer | ArrayBuffer | Uint8Array | number[],\n offset?: number\n ): ByteBuffer {\n return this.append(source, offset)\n }\n\n writeInt8(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 1 > this.buffer.byteLength) {\n this.resize(offset + 1)\n }\n\n this.view.setInt8(offset, value)\n\n if (relative) this.offset += 1\n return this\n }\n\n writeByte(value: number, offset?: number): ByteBuffer {\n return this.writeInt8(value, offset)\n }\n\n writeUint8(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 1 > this.buffer.byteLength) {\n this.resize(offset + 1)\n }\n\n this.view.setUint8(offset, value)\n\n if (relative) this.offset += 1\n return this\n }\n\n writeUInt8(value: number, offset?: number): ByteBuffer {\n return this.writeUint8(value, offset)\n }\n\n readUint8(offset?: number): number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getUint8(offset)\n if (relative) this.offset += 1\n return value\n }\n\n readUInt8(offset?: number): number {\n return this.readUint8(offset)\n }\n\n writeInt16(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 2 > this.buffer.byteLength) {\n this.resize(offset + 2)\n }\n\n this.view.setInt16(offset, value, this.littleEndian)\n\n if (relative) this.offset += 2\n return this\n }\n\n writeShort(value: number, offset?: number): ByteBuffer {\n return this.writeInt16(value, offset)\n }\n\n writeUint16(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 2 > this.buffer.byteLength) {\n this.resize(offset + 2)\n }\n\n this.view.setUint16(offset, value, this.littleEndian)\n\n if (relative) this.offset += 2\n return this\n }\n\n writeUInt16(value: number, offset?: number): ByteBuffer {\n return this.writeUint16(value, offset)\n }\n\n writeInt32(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 4 > this.buffer.byteLength) {\n this.resize(offset + 4)\n }\n\n this.view.setInt32(offset, value, this.littleEndian)\n\n if (relative) this.offset += 4\n return this\n }\n\n writeInt(value: number, offset?: number): ByteBuffer {\n return this.writeInt32(value, offset)\n }\n\n writeUint32(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 4 > this.buffer.byteLength) {\n this.resize(offset + 4)\n }\n\n this.view.setUint32(offset, value, this.littleEndian)\n\n if (relative) this.offset += 4\n return this\n }\n\n writeUInt32(value: number, offset?: number): ByteBuffer {\n return this.writeUint32(value, offset)\n }\n\n readUint32(offset?: number): number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getUint32(offset, this.littleEndian)\n if (relative) {\n this.offset += 4\n }\n return value\n }\n\n readUInt32 = this.readUint32\n\n append(source: ByteBuffer | ArrayBuffer | Uint8Array | number[], offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n let src: Uint8Array\n if (source instanceof ByteBuffer) {\n src = new Uint8Array(source.buffer, source.offset, source.limit - source.offset)\n source.offset += src.length\n } else if (source instanceof Uint8Array) {\n src = source\n } else if (source instanceof ArrayBuffer) {\n src = new Uint8Array(source)\n } else {\n src = new Uint8Array(source)\n }\n\n if (src.length <= 0) return this\n\n if (offset + src.length > this.buffer.byteLength) {\n this.resize(offset + src.length)\n }\n\n new Uint8Array(this.buffer).set(src, offset)\n\n if (relative) this.offset += src.length\n return this\n }\n\n clone(copy?: boolean): ByteBuffer {\n const bb = new ByteBuffer(0, this.littleEndian)\n if (copy) {\n bb.buffer = new ArrayBuffer(this.buffer.byteLength)\n new Uint8Array(bb.buffer).set(new Uint8Array(this.buffer))\n bb.view = new DataView(bb.buffer)\n } else {\n bb.buffer = this.buffer\n bb.view = this.view\n }\n bb.offset = this.offset\n bb.markedOffset = this.markedOffset\n bb.limit = this.limit\n return bb\n }\n\n copy(begin?: number, end?: number): ByteBuffer {\n if (begin === undefined) begin = this.offset\n if (end === undefined) end = this.limit\n\n if (begin === end) {\n return new ByteBuffer(0, this.littleEndian)\n }\n\n const capacity = end - begin\n const bb = new ByteBuffer(capacity, this.littleEndian)\n bb.offset = 0\n bb.limit = capacity\n\n new Uint8Array(bb.buffer).set(new Uint8Array(this.buffer).subarray(begin, end), 0)\n return bb\n }\n\n copyTo(\n target: ByteBuffer,\n targetOffset?: number,\n sourceOffset?: number,\n sourceLimit?: number\n ): ByteBuffer {\n const targetRelative = typeof targetOffset === 'undefined'\n const relative = typeof sourceOffset === 'undefined'\n targetOffset = targetRelative ? target.offset : targetOffset!\n sourceOffset = relative ? this.offset : sourceOffset!\n sourceLimit = sourceLimit === undefined ? this.limit : sourceLimit\n\n const len = sourceLimit - sourceOffset\n if (len === 0) return target\n\n target.ensureCapacity(targetOffset + len)\n new Uint8Array(target.buffer).set(\n new Uint8Array(this.buffer).subarray(sourceOffset, sourceLimit),\n targetOffset\n )\n\n if (relative) this.offset += len\n if (targetRelative) target.offset += len\n return this\n }\n\n ensureCapacity(capacity: number): ByteBuffer {\n let current = this.buffer.byteLength\n if (current < capacity) {\n return this.resize((current *= 2) > capacity ? current : capacity)\n }\n return this\n }\n\n flip(): ByteBuffer {\n this.limit = this.offset\n this.offset = 0\n return this\n }\n\n resize(capacity: number): ByteBuffer {\n if (this.buffer.byteLength < capacity) {\n const buffer = new ArrayBuffer(capacity)\n new Uint8Array(buffer).set(new Uint8Array(this.buffer))\n this.buffer = buffer\n this.view = new DataView(buffer)\n }\n return this\n }\n\n skip(length: number): ByteBuffer {\n this.offset += length\n return this\n }\n\n writeInt64(value: number | bigint, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (typeof value === 'number') value = BigInt(value)\n\n if (offset + 8 > this.buffer.byteLength) {\n this.resize(offset + 8)\n }\n\n this.view.setBigInt64(offset, value, this.littleEndian)\n\n if (relative) this.offset += 8\n return this\n }\n\n writeLong(value: number | bigint, offset?: number): ByteBuffer {\n return this.writeInt64(value, offset)\n }\n\n readInt64(offset?: number): bigint {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getBigInt64(offset, this.littleEndian)\n if (relative) this.offset += 8\n return value\n }\n\n readLong(offset?: number): bigint {\n return this.readInt64(offset)\n }\n\n writeUint64(value: number | bigint, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (typeof value === 'number') value = BigInt(value)\n\n if (offset + 8 > this.buffer.byteLength) {\n this.resize(offset + 8)\n }\n\n this.view.setBigUint64(offset, value, this.littleEndian)\n\n if (relative) this.offset += 8\n return this\n }\n\n writeUInt64(value: number | bigint, offset?: number): ByteBuffer {\n return this.writeUint64(value, offset)\n }\n\n readUint64(offset?: number): bigint {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getBigUint64(offset, this.littleEndian)\n if (relative) this.offset += 8\n return value\n }\n\n readUInt64(offset?: number): bigint {\n return this.readUint64(offset)\n }\n\n toBuffer(forceCopy?: boolean): ArrayBufferLike {\n const offset = this.offset\n const limit = this.limit\n if (!forceCopy && offset === 0 && limit === this.buffer.byteLength) {\n return this.buffer\n }\n if (offset === limit) return EMPTY_BUFFER\n return this.buffer.slice(offset, limit)\n }\n\n toArrayBuffer(forceCopy?: boolean): ArrayBufferLike {\n return this.toBuffer(forceCopy)\n }\n\n writeVarint32(value: number, offset?: number): ByteBuffer | number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const size = this.calculateVarint32(value)\n if (offset + size > this.buffer.byteLength) {\n this.resize(offset + size)\n }\n\n value >>>= 0\n while (value >= 0x80) {\n this.view.setUint8(offset++, (value & 0x7f) | 0x80)\n value >>>= 7\n }\n this.view.setUint8(offset++, value)\n\n if (relative) {\n this.offset = offset\n return this\n }\n return size\n }\n\n readVarint32(offset?: number): number | { value: number; length: number } {\n const relative = typeof offset === 'undefined'\n if (typeof offset === 'undefined') {\n offset = this.offset\n }\n let c = 0\n let value = 0 >>> 0\n let b: number\n do {\n b = this.view.getUint8(offset++)\n if (c < 5) {\n value |= (b & 0x7f) << (7 * c)\n }\n ++c\n } while ((b & 0x80) !== 0)\n value |= 0\n\n if (relative) {\n this.offset = offset\n return value\n }\n return { value, length: c }\n }\n\n calculateVarint32(value: number): number {\n value = value >>> 0\n if (value < 1 << 7) return 1\n else if (value < 1 << 14) return 2\n else if (value < 1 << 21) return 3\n else if (value < 1 << 28) return 4\n else return 5\n }\n\n writeVString(str: string, offset?: number): ByteBuffer | number {\n const relative = typeof offset === 'undefined'\n let currentOffset = relative ? this.offset : offset!\n\n const encoded = getEncoder().encode(str)\n const len = encoded.length\n const lenVarintSize = this.calculateVarint32(len)\n\n if (currentOffset + lenVarintSize + len > this.buffer.byteLength) {\n this.resize(currentOffset + lenVarintSize + len)\n }\n\n this.writeVarint32(len, currentOffset)\n currentOffset += lenVarintSize\n\n new Uint8Array(this.buffer).set(encoded, currentOffset)\n currentOffset += len\n\n if (relative) {\n this.offset = currentOffset\n return this\n }\n return currentOffset - (offset || 0)\n }\n\n readVString(offset?: number): string | { string: string; length: number } {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const start = offset\n const lenResult = this.readVarint32(offset) as { value: number; length: number }\n const lenValue = lenResult.value\n const lenLength = lenResult.length\n\n offset += lenLength\n\n // TextDecoder can take Uint8Array view directly\n const str = getDecoder().decode(new Uint8Array(this.buffer as ArrayBuffer, offset, lenValue))\n offset += lenValue\n\n if (relative) {\n this.offset = offset\n return str\n } else {\n return {\n string: str,\n length: offset - start\n }\n }\n }\n\n readUTF8String(length: number, offset?: number): string | { string: string; length: number } {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n // const strBuffer = this.buffer.slice(offset, end)\n // Faster to view if Shared? No, Decoder takes buffer or view.\n // Making a view is cheap.\n // But DataView vs Uint8Array. TextDecoder takes BufferSource (ArrayBuffer or ArrayBufferView).\n const str = getDecoder().decode(new Uint8Array(this.buffer as ArrayBuffer, offset, length))\n\n if (relative) {\n this.offset += length\n return str\n } else {\n return {\n string: str,\n length\n }\n }\n }\n}\n","import type { APIMethods } from './api-types'\n\n/**\n * Unified configuration for Hive blockchain connectivity.\n * This is the single source of truth for node endpoints, timeouts, and chain settings.\n * Mutate this object directly or use ConfigManager.setHiveNodes() for validated updates.\n */\nexport const config = {\n /**\n * Array of Hive API node endpoints for load balancing and failover.\n */\n /*\n * techcoderx.com is deliberately absent: its condenser_api.get_accounts serves\n * account rows with posting_json_metadata stripped to \"\" while balances and\n * reputation are correct. That is a well-formed result, so it passes shape\n * validation and the health tracker keeps it ranked by latency alone.\n *\n * Wallet token visibility is read entirely from profile.tokens[].meta.show in\n * that metadata, so a stripped row reads as \"this user enabled nothing\" and the\n * wallet silently falls back to HIVE/HP/HBD/Points. getAccountFullQueryOptions\n * cross-checks against the hivemind profile and re-reads, but that guard only\n * fires when hivemind reports profile *values* — an account whose metadata is\n * just `tokens` (no name/about/image) has none, so it would slip through.\n * Keeping the node out of the pool removes the dependency on that guard.\n *\n * Note this is RPC-only: the same host serves full metadata over its REST\n * (hafbe) endpoint, so it remains valid in `restNodes`.\n */\n nodes: [\n 'https://api.hive.blog',\n 'https://api.deathwing.me',\n 'https://api.openhive.network',\n 'https://api.syncad.com',\n 'https://rpc.mahdiyari.info',\n ],\n\n /**\n * Array of Hive API node endpoints that support REST APIs.\n * Note: Without the trailing /\n */\n restNodes: [\n 'https://api.hive.blog',\n 'https://rpc.mahdiyari.info',\n 'https://api.syncad.com',\n 'https://hiveapi.actifit.io',\n 'https://api.c0ff33a.uk'\n ],\n\n /**\n * Per-API REST node override. Some APIs are served by only a subset of\n * nodes; list just those capable hosts here so callREST never burns its\n * (small) retry budget on nodes that 404/503 the API, and a cold start\n * hits a capable node immediately. Any API not listed falls back to\n * `restNodes`. The health tracker still orders *within* this list.\n *\n * hivesense: empirically only ~2 public nodes serve /hivesense-api (the\n * other configured nodes 404/503 it; Ecency's own was decommissioned), so\n * pin them — otherwise the health tracker keeps rediscovering incapable\n * nodes each cooldown and cold starts waste attempts.\n */\n restNodesByApi: {\n hivesense: ['https://api.hive.blog', 'https://api.syncad.com']\n } as Partial>,\n\n /**\n * User-Agent sent on server-side (Node) HTTP requests to Hive nodes.\n *\n * Node's built-in fetch (undici) sends a bare `User-Agent: node` when none is\n * set, which is indistinguishable from any random Node script in node/CDN\n * analytics. A descriptive value lets operators tell their own SSR/server\n * traffic apart from anonymous scrapers. Only applied in Node — browsers\n * forbid overriding User-Agent (it is silently dropped) and React Native sets\n * its own native UA, so client and mobile traffic are untouched. Override via\n * `ConfigManager.setUserAgent()` (or `setUserAgent()` from `@ecency/sdk/hive`).\n */\n userAgent: 'ecency-sdk',\n\n /**\n * The Hive blockchain chain ID for transaction signing and verification.\n */\n chain_id: 'beeab0de00000000000000000000000000000000000000000000000000000000',\n\n /**\n * Address prefix used for public key formatting (STM for mainnet).\n */\n address_prefix: 'STM',\n\n /**\n * Timeout in milliseconds for read API calls (get_content, get_accounts, etc.).\n * Kept short so the health tracker can fail over to another node quickly.\n */\n timeout: 5_000,\n\n /**\n * Timeout in milliseconds for broadcast API calls.\n * Longer than read timeout because broadcast_transaction_synchronous waits\n * for block inclusion, which depends on the 3-second block interval and\n * network conditions.\n */\n broadcastTimeout: 15_000,\n\n /**\n * Number of retry attempts for failed API calls before throwing an error.\n * Total attempts = retry + 1. With ~7 nodes in the list, a budget of 5\n * means callRPC iterates through 6 distinct nodes before giving up, so a\n * single sick node (or two) can't surface as an unhandled error to the\n * caller while the rest of the list is healthy.\n */\n retry: 5,\n\n /**\n * Tail-latency resilience for READ calls. Motivation: on a shared public-node\n * pool a node can slow down or throttle *mid-request*; a fixed `timeout` means\n * the caller only notices after the full window, and under SSR concurrency\n * those stalled renders pile up. Two mechanisms, both scoped to reads only\n * (broadcasts never hedge and keep their fixed `broadcastTimeout`):\n *\n * - Adaptive per-attempt timeout (`adaptiveTimeout`, default ON): when a\n * node has a usable latency profile (EWMA), the per-attempt timeout becomes\n * `min(callerTimeout, max(floorMs, factor × EWMA))` — a node running far\n * above its own baseline is abandoned early and failover starts sooner.\n * Never *raises* the caller's timeout; unprofiled nodes keep it unchanged.\n *\n * - Hedged requests (`hedge`, default OFF — opt in via `setResilience`): if\n * the primary attempt is still pending after `max(hedgeDelayFloorMs,\n * hedgeDelayFactor × EWMA)`, a duplicate request is fired at the next\n * healthy untried node and the first success wins (the loser is aborted).\n * A token bucket (`hedgeBucketCapacity` burst, refilled by\n * `hedgeRefillPerSuccess` per un-hedged success) caps hedges to roughly\n * `hedgeRefillPerSuccess` of traffic, so only the slow tail hedges — and\n * under pool-wide slowness the bucket drains and hedging auto-disables\n * instead of amplifying load into public-node rate limits.\n */\n resilience: {\n adaptiveTimeout: true,\n adaptiveTimeoutFloorMs: 2_000,\n adaptiveTimeoutFactor: 4,\n hedge: false,\n hedgeDelayFloorMs: 750,\n hedgeDelayFactor: 2,\n hedgeBucketCapacity: 10,\n hedgeRefillPerSuccess: 0.1,\n /**\n * Wall-clock budget for one read call across ALL failover attempts, as a\n * multiple of the per-attempt timeout: no NEW attempt starts past\n * `totalBudgetFactor × timeout` (an in-flight attempt still finishes its\n * own window). Bounds the pathological pool-wide-slowness walk — without\n * it a read could hold its caller for (retry+1) × timeout ≈ 30s, which\n * under SSR concurrency is a memory pile-up, the exact incident this\n * feature exists for. Applies to reads only (callRPC / callREST);\n * broadcasts keep their try-each-node-once semantics.\n */\n totalBudgetFactor: 2\n }\n}\n\n/** Shape of the `config.resilience` bag (see its doc comment). */\nexport type ResilienceOptions = typeof config.resilience\n\n/**\n * Server-side read-through proxy for RPC reads (see `setServerRpcProxy`).\n * `methods` is the allowlist the proxy serves; a read outside it goes straight\n * to the node pool as before.\n */\nexport interface ServerRpcProxyOptions {\n /** Absolute URL of the proxy endpoint (POST `{api, method, params}`). */\n url: string\n /** Headers sent with every proxy call (the shared internal secret). */\n headers: Record\n /** Per-call timeout in ms; on expiry the read falls back to the node pool. */\n timeoutMs: number\n /** Fully qualified method names (`bridge.get_post`) the proxy may answer;\n * omitted = DEFAULT_SERVER_RPC_PROXY_METHODS. An empty list is ignored. */\n methods?: string[]\n /**\n * After this many consecutive proxy misses the proxy is skipped for\n * `cooldownMs`, so a proxy that is down costs one failed call per cooldown\n * window rather than one per read. Default 3 / 10s. A served call resets it.\n */\n failureThreshold?: number\n cooldownMs?: number\n}\n\n/** Default allowlist: the reads a server render makes and the proxy caches. */\nexport const DEFAULT_SERVER_RPC_PROXY_METHODS: readonly string[] = [\n 'bridge.get_ranked_posts',\n 'bridge.get_account_posts',\n 'bridge.get_post',\n 'bridge.get_discussion',\n 'bridge.get_profile',\n 'bridge.get_profiles',\n 'bridge.get_community',\n 'bridge.list_communities',\n 'condenser_api.get_accounts',\n 'condenser_api.get_content',\n 'condenser_api.get_dynamic_global_properties',\n 'condenser_api.get_trending_tags'\n]\n\n/**\n * Active proxy configuration, or null (the default: every read goes to the node\n * pool). Lives outside `config` so the browser bundle never carries it; it is\n * only ever consulted under Node.\n */\nexport interface ServerRpcProxyState extends Required {\n methodSet: Set\n}\n\nexport let serverRpcProxy: ServerRpcProxyState | null = null\n\n/**\n * Route allowlisted server-side reads through a read-through cache in front\n * of the node pool. One cache per host answers the reads every renderer\n * process used to make on its own; a miss there is one upstream call shared by\n * every concurrent reader. The proxy is an optimization, never a dependency:\n * any failure (non-200, timeout, transport error, a response the caller's\n * validator rejects) falls straight through to the existing node loop, so the\n * worst case is the latency of a failed proxy call on top of what happens\n * today. Has no effect outside Node. Pass null to switch it off.\n */\nexport const setServerRpcProxy = (opts: ServerRpcProxyOptions | null): void => {\n if (opts === null) {\n serverRpcProxy = null\n return\n }\n if (!opts || typeof opts !== 'object') return\n const url = typeof opts.url === 'string' ? opts.url.trim() : ''\n if (!/^https?:\\/\\//i.test(url)) return\n const headers: Record = {}\n if (opts.headers && typeof opts.headers === 'object') {\n for (const [k, v] of Object.entries(opts.headers)) {\n if (typeof v === 'string' && v && !/[\\u0000-\\u001f\\u007f]/.test(v) && !/[\\u0000-\\u001f\\u007f]/.test(k)) {\n headers[k] = v\n }\n }\n }\n const timeoutMs =\n typeof opts.timeoutMs === 'number' && Number.isFinite(opts.timeoutMs) && opts.timeoutMs > 0\n ? opts.timeoutMs\n : 2_000\n const methods =\n opts.methods === undefined\n ? [...DEFAULT_SERVER_RPC_PROXY_METHODS]\n : Array.isArray(opts.methods)\n ? opts.methods.filter((m): m is string => typeof m === 'string' && m.includes('.'))\n : []\n // Nothing to route through the proxy: keep whatever was configured before.\n if (methods.length === 0) return\n const pos = (v: unknown, fallback: number): number =>\n typeof v === 'number' && Number.isFinite(v) && v > 0 ? v : fallback\n serverRpcProxy = {\n url,\n headers,\n timeoutMs,\n methods,\n failureThreshold: Math.floor(pos(opts.failureThreshold, 3)),\n cooldownMs: pos(opts.cooldownMs, 10_000),\n methodSet: new Set(methods)\n }\n}\n\n/**\n * Validated setter for the Hive RPC node list — replaces `config.nodes`.\n * Trims, drops non-http(s) entries, and de-dupes (order-preserving). A no-op\n * if nothing valid remains, so a bad input can't empty the list.\n *\n * Lives here, in the React-free `hive-tx` core, on purpose: it must be\n * reachable from BOTH the full `@ecency/sdk` entry (via\n * `ConfigManager.setHiveNodes`, which delegates here) and the lean\n * `@ecency/sdk/hive` server/CLI entry — without dragging react-query or the\n * DMCA/ReDoS surface of `ConfigManager` into the lean entry. Within a single\n * bundle this mutates the one `config` instance `callRPC` reads; the\n * cross-bundle single-instance guarantee is a separate (build-level) concern.\n */\n/**\n * Trim, drop non-string / non-http(s), and de-dupe (order-preserving) a node\n * list. Shared by `setNodes` and the REST-node setters below so all three\n * normalize identically.\n */\nconst sanitizeNodeList = (nodes: unknown): string[] =>\n Array.isArray(nodes)\n ? [\n ...new Set(\n nodes\n .filter((n): n is string => typeof n === 'string')\n // Trim, then strip trailing slashes so REST paths concatenate cleanly:\n // `callREST` builds `node + '/status-api'`, and a `https://host/` node would\n // otherwise yield `https://host//status-api`, which several HAF nodes 404.\n // De-dupe AFTER normalizing so `host` and `host/` collapse to one entry.\n .map((n) => n.trim().replace(/\\/+$/, ''))\n .filter((n) => n.length > 0 && /^https?:\\/\\/.+/.test(n))\n )\n ]\n : []\n\nexport const setNodes = (nodes: string[]): void => {\n const validNodes = sanitizeNodeList(nodes)\n if (!validNodes.length) return\n config.nodes = validNodes\n}\n\n/**\n * Validated setter for the REST-API node list — replaces `config.restNodes`.\n * Same shape/guarantees as `setNodes` (trim, drop non-http(s), de-dupe, no-op on\n * empty). Exists because `restNodes` is otherwise baked into the SDK: an app that\n * wants to add/remove a REST host (e.g. drop an own node it is decommissioning, or\n * widen the public pool) previously had to fork + republish the SDK. With this, the\n * REST pool is app-configurable at runtime exactly like the read pool. Lives in the\n * React-free `hive-tx` core so both the full `@ecency/sdk` entry and the lean\n * `@ecency/sdk/hive` entry can reach it.\n */\nexport const setRestNodes = (nodes: string[]): void => {\n const valid = sanitizeNodeList(nodes)\n if (!valid.length) return\n config.restNodes = valid\n}\n\n/**\n * Merge validated per-API REST node overrides into `config.restNodesByApi`.\n * For each entry: a non-empty, valid list pins that API to those hosts; an empty or\n * all-invalid list REMOVES the pin so the API falls back to `restNodes`. Other APIs'\n * existing pins (e.g. the built-in `hivesense`) are preserved. Lets an app pin the\n * APIs it actually uses to known-capable hosts (so `callREST` never burns its small\n * retry budget on a node that 404/503s the API) without an SDK republish.\n */\nexport const setRestNodesByApi = (\n map: Partial>\n): void => {\n if (!map || typeof map !== 'object') return\n const next: Partial> = { ...config.restNodesByApi }\n for (const [api, list] of Object.entries(map)) {\n const valid = sanitizeNodeList(list)\n if (valid.length) {\n next[api as APIMethods] = valid\n } else {\n delete next[api as APIMethods]\n }\n }\n config.restNodesByApi = next\n}\n\n/**\n * Validated setter for the User-Agent sent on server-side (Node) requests.\n * Trims the input and ignores an empty value so a bad input can't blank out the\n * header. Like `setNodes`, it lives in the React-free `hive-tx` core so it is\n * reachable from both the full `@ecency/sdk` entry (via\n * `ConfigManager.setUserAgent`) and the lean `@ecency/sdk/hive` server/CLI entry.\n */\nexport const setUserAgent = (ua: string): void => {\n // Defensive against plain-JS / React Native callers that may pass a non-string\n // despite the `string` type (avoids throwing on `.trim()`).\n if (typeof ua !== 'string') return\n const value = ua.trim()\n // Ignore blank values, and reject control characters (CR, LF, and other\n // C0/DEL controls). An invalid header value would otherwise be stored and make\n // every subsequent fetch throw, and rejecting CR/LF closes a header-injection\n // vector for any caller that builds the UA from untrusted input.\n if (!value || /[\\u0000-\\u001f\\u007f]/.test(value)) return\n config.userAgent = value\n}\n\n/**\n * Validated partial setter for `config.resilience` (adaptive read timeouts +\n * hedged requests — see the field's doc comment). Booleans must be booleans;\n * numeric fields must be finite and positive, with the refill rate additionally\n * capped at 1 so a typo can't turn the tail-hedge into a traffic doubler\n * (refill ≤ 1 ⇒ hedges can never exceed un-hedged successes). Invalid values\n * are ignored field-by-field, so one bad entry can't block the rest. Lives in\n * the React-free `hive-tx` core (like the other setters) so both `@ecency/sdk`\n * (via `ConfigManager.setResilience`) and the lean `@ecency/sdk/hive` entry\n * can reach it.\n */\nexport const setResilience = (opts: Partial): void => {\n if (!opts || typeof opts !== 'object') return\n const r = config.resilience\n const bool = (v: unknown): v is boolean => typeof v === 'boolean'\n const pos = (v: unknown): v is number =>\n typeof v === 'number' && Number.isFinite(v) && v > 0\n if (bool(opts.adaptiveTimeout)) r.adaptiveTimeout = opts.adaptiveTimeout\n // Floor must stay ≥ the tracker's slow-failure recording floor (2s): the\n // safety argument for adaptive timeouts is that an abort at the window IS\n // recorded as a slow sample, growing the EWMA so the window self-corrects\n // upward. A floor below 2s would abort without recording — the window could\n // never converge and a too-tight profile would starve that call forever.\n if (pos(opts.adaptiveTimeoutFloorMs)) {\n r.adaptiveTimeoutFloorMs = Math.max(opts.adaptiveTimeoutFloorMs, 2_000)\n }\n if (pos(opts.adaptiveTimeoutFactor)) r.adaptiveTimeoutFactor = opts.adaptiveTimeoutFactor\n if (bool(opts.hedge)) r.hedge = opts.hedge\n if (pos(opts.hedgeDelayFloorMs)) r.hedgeDelayFloorMs = opts.hedgeDelayFloorMs\n if (pos(opts.hedgeDelayFactor)) r.hedgeDelayFactor = opts.hedgeDelayFactor\n if (pos(opts.hedgeBucketCapacity)) r.hedgeBucketCapacity = opts.hedgeBucketCapacity\n // Refill must stay ≤ 1: at 1 token per success the hedge rate could reach\n // 100% of traffic, defeating the \"tail only\" contract. Cap rather than reject\n // so a caller asking for \"more hedging\" gets the safe maximum.\n if (pos(opts.hedgeRefillPerSuccess)) {\n r.hedgeRefillPerSuccess = Math.min(opts.hedgeRefillPerSuccess, 1)\n }\n // Below 1 the budget could not even cover the configured per-attempt window.\n if (pos(opts.totalBudgetFactor)) {\n r.totalBudgetFactor = Math.max(opts.totalBudgetFactor, 1)\n }\n}\n","import { PublicKey } from './PublicKey'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\nexport class Signature {\n data: Uint8Array\n recovery: number\n private compressed: boolean\n\n /**\n * Creates a new Signature instance.\n * @param data Raw signature data (64 bytes)\n * @param recovery Recovery byte (0-3)\n * @param compressed Whether signature is compressed (default: true)\n */\n constructor(data: Uint8Array, recovery: number, compressed?: boolean) {\n this.data = data\n this.recovery = recovery\n this.compressed = compressed ?? true\n }\n\n /**\n * Creates a Signature from a hex string.\n * @param string 130-character hex string containing signature and recovery data\n * @returns New Signature instance\n * @throws Error if input is not a string\n */\n static from(string: string) {\n if (typeof string === 'string') {\n const temp = hexToBytes(string)\n let recovery = parseInt(bytesToHex(temp.subarray(0, 1)), 16) - 31\n let compressed = true\n // non-compressed signatures have -4\n // https://github.com/bitcoin/bitcoin/blob/95ea54ba089610019a74c1176a2c7c0dba144b1c/src/key.cpp#L257\n if (recovery < 0) {\n compressed = false\n recovery = recovery + 4\n }\n const data = temp.subarray(1)\n return new Signature(data, recovery, compressed)\n } else {\n throw new Error('Expected string for data')\n }\n }\n\n /**\n * Converts signature to 65-byte buffer format.\n * @returns 65-byte buffer containing recovery byte + signature data\n */\n toBuffer() {\n const buffer = new Uint8Array(65).fill(0)\n if (this.compressed) {\n buffer[0] = (this.recovery + 31) & 0xff\n } else {\n buffer[0] = (this.recovery + 27) & 0xff\n }\n buffer.set(this.data, 1)\n return buffer\n }\n\n /**\n * Returns signature as 130-character hex string.\n * @returns Hex string representation of signature\n */\n customToString() {\n return bytesToHex(this.toBuffer())\n }\n\n /**\n * Returns signature as 130-character hex string.\n * Overrides Object.prototype.toString() so that String(sig) and\n * template literals produce the hex representation instead of \"[object Object]\".\n * @returns Hex string representation of signature\n */\n toString() {\n return this.customToString()\n }\n\n /**\n * Recovers the public key from this signature and message.\n * @param message 32-byte message hash (Uint8Array) or 64-character hex string\n * @returns PublicKey that created this signature\n * @throws Error if message is not a valid 32-byte SHA256 hash\n */\n getPublicKey(message: Uint8Array | string): PublicKey {\n if (\n (message instanceof Uint8Array && message.length !== 32) ||\n (typeof message === 'string' && message.length !== 64)\n ) {\n throw new Error('Expected a valid sha256 hash as message')\n }\n if (typeof message === 'string') {\n message = hexToBytes(message)\n }\n const sig = secp256k1.Signature.fromBytes(this.data, 'compact')\n const temp = new secp256k1.Signature(sig.r, sig.s, this.recovery)\n return new PublicKey(temp.recoverPublicKey(message).toBytes())\n }\n}\n","import { ripemd160 } from '@noble/hashes/legacy.js'\nimport bs58 from 'bs58'\nimport { config } from '../config'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { Signature } from './Signature'\n\nexport class PublicKey {\n key: Uint8Array\n prefix: string\n\n /**\n * Creates a new PublicKey instance from raw bytes.\n * @param key Raw public key bytes (33 bytes, compressed format)\n * @param prefix Optional address prefix (defaults to the current config.address_prefix)\n */\n constructor(key: Uint8Array, prefix?: string) {\n this.key = key\n // Read config at call time so runtime mutations to config.address_prefix\n // (e.g. switching to a non-mainnet network) take effect for new instances.\n this.prefix = prefix ?? config.address_prefix\n }\n\n /**\n * Creates a PublicKey from a string representation.\n * The expected prefix is read from config.address_prefix at call time, so\n * consumers can switch networks at runtime.\n * @param wif Public key string (e.g., \"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA\")\n * @returns New PublicKey instance\n * @throws Error if the prefix, length, checksum, or curve point is invalid\n */\n static fromString(wif: string): PublicKey {\n const expectedPrefix = config.address_prefix\n if (typeof wif !== 'string' || wif.length <= expectedPrefix.length) {\n throw new Error('Invalid public key')\n }\n const prefix = wif.slice(0, expectedPrefix.length)\n if (prefix !== expectedPrefix) {\n throw new Error(`Public key must start with ${expectedPrefix}`)\n }\n let buffer: Uint8Array\n try {\n buffer = bs58.decode(wif.slice(expectedPrefix.length))\n } catch {\n throw new Error('Invalid public key encoding')\n }\n // 33-byte compressed secp256k1 point + 4-byte RIPEMD160 checksum\n if (buffer.length !== 37) {\n throw new Error('Invalid public key length')\n }\n const key = buffer.subarray(0, 33)\n const checksum = buffer.subarray(33, 37)\n const expectedChecksum = ripemd160(key).subarray(0, 4)\n if (!isUint8ArrayEqual(checksum, expectedChecksum)) {\n throw new Error('Public key checksum mismatch')\n }\n try {\n secp256k1.Point.fromBytes(key)\n } catch {\n throw new Error('Invalid public key')\n }\n return new PublicKey(key, prefix)\n }\n\n /**\n * Creates a PublicKey from a string or returns the instance if already a PublicKey.\n * @param value Public key string or PublicKey instance\n * @returns New or existing PublicKey instance\n */\n static from(value: string | PublicKey): PublicKey {\n if (value instanceof PublicKey) {\n return value\n } else {\n return PublicKey.fromString(value as string)\n }\n }\n\n /**\n * Verifies a signature against a message hash.\n * @param message 32-byte message hash to verify\n * @param signature Signature to verify\n * @returns True if signature is valid, false otherwise\n */\n verify(message: Uint8Array, signature: Signature | string): boolean {\n if (typeof signature === 'string') {\n signature = Signature.from(signature)\n }\n return secp256k1.verify(signature.data, message, this.key, {\n prehash: false,\n format: 'compact'\n })\n }\n\n /**\n * Returns the public key as a string for storage or transmission.\n * @returns Public key string with prefix (e.g., \"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA\")\n */\n toString(): string {\n return encodePublic(this.key, this.prefix)\n }\n\n /**\n * Returns JSON representation (same as toString()).\n * @returns Public key string\n */\n toJSON(): string {\n return this.toString()\n }\n\n /**\n * Returns a string representation for debugging.\n * @returns Formatted public key string\n */\n inspect(): string {\n return `PublicKey: ${this.toString()}`\n }\n}\n\nconst encodePublic = (key: Uint8Array, prefix: string): string => {\n const checksum = ripemd160(key)\n return prefix + bs58.encode(new Uint8Array([...key, ...checksum.subarray(0, 4)]))\n}\n\nconst isUint8ArrayEqual = (a: Uint8Array, b: Uint8Array): boolean => {\n if (a.byteLength !== b.byteLength) return false\n for (let i = 0; i < a.byteLength; i++) {\n if (a[i] !== b[i]) return false\n }\n return true\n}\n","/** Class representing a hive asset,\n * e.g. `1.000 HIVE` or `12.112233 VESTS`. */\nexport class Asset {\n amount: number\n symbol: string\n\n constructor(amount: number, symbol: string) {\n this.amount = amount\n this.symbol = symbol === 'HIVE' ? 'STEEM' : symbol === 'HBD' ? 'SBD' : symbol\n }\n\n /** Create a new Asset instance from a string, e.g. `42.000 HIVE`. */\n static fromString(string: string, expectedSymbol: string | null = null): Asset {\n const [amountString, symbol] = string.split(' ')\n if (['STEEM', 'VESTS', 'SBD', 'TESTS', 'TBD', 'HIVE', 'HBD'].indexOf(symbol) === -1) {\n throw new Error(`Invalid asset symbol: ${symbol}`)\n }\n if (expectedSymbol && symbol !== expectedSymbol) {\n throw new Error(`Invalid asset, expected symbol: ${expectedSymbol} got: ${symbol}`)\n }\n const amount = Number.parseFloat(amountString)\n if (!Number.isFinite(amount)) {\n throw new Error(`Invalid asset amount: ${amountString}`)\n }\n return new Asset(amount, symbol)\n }\n\n /**\n * Convenience to create new Asset.\n * @param symbol Symbol to use when created from number. Will also be used to validate\n * the asset, throws if the passed value has a different symbol than this.\n */\n static from(value: number | string | Asset, symbol?: string | null): Asset {\n if (value instanceof Asset) {\n if (symbol && value.symbol !== symbol) {\n throw new Error(`Invalid asset, expected symbol: ${symbol} got: ${value.symbol}`)\n }\n return value\n } else if (typeof value === 'number' && Number.isFinite(value)) {\n return new Asset(value, symbol || 'STEEM')\n } else if (typeof value === 'string') {\n return Asset.fromString(value, symbol)\n } else {\n throw new Error(`Invalid asset '${String(value)}'`)\n }\n }\n\n // We convert HIVE & HBD strings to STEEM & SBD because the serialization should be based on STEEM & SBD\n\n /** Return asset precision. */\n getPrecision() {\n switch (this.symbol) {\n case 'TESTS':\n case 'TBD':\n case 'STEEM':\n case 'SBD':\n case 'HBD':\n case 'HIVE':\n return 3\n case 'VESTS':\n return 6\n default:\n return 3\n }\n }\n\n /** Return a string representation of this asset, e.g. `42.000 HIVE`. */\n toString() {\n return `${this.amount.toFixed(this.getPrecision())} ${this.symbol}`\n }\n\n toJSON() {\n return this.toString()\n }\n}\n","import { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\n/** Buffer wrapper that serializes to a hex-encoded string. */\nexport class HexBuffer {\n buffer: Uint8Array\n /** Convenience to create a new HexBuffer, does not copy data if value passed is already a buffer. */\n static from(value: string | Uint8Array | HexBuffer) {\n if (value instanceof HexBuffer) {\n return value\n } else if (value instanceof Uint8Array) {\n return new HexBuffer(value)\n } else if (typeof value === 'string') {\n return new HexBuffer(hexToBytes(value))\n } else {\n return new HexBuffer(new Uint8Array(value))\n }\n }\n\n constructor(buffer: Uint8Array) {\n this.buffer = buffer\n }\n\n toString() {\n return bytesToHex(this.buffer)\n }\n\n toJSON() {\n return this.toString()\n }\n}\n","import { PublicKey } from './PublicKey'\nimport { Asset } from './Asset'\nimport { HexBuffer } from './HexBuffer'\nimport { ByteBuffer } from './ByteBuffer'\nimport { Operation } from '../types'\n\n// Operation ID constants for better maintainability\nconst OPERATION_IDS = {\n vote: 0,\n comment: 1,\n transfer: 2,\n transfer_to_vesting: 3,\n withdraw_vesting: 4,\n limit_order_create: 5,\n limit_order_cancel: 6,\n feed_publish: 7,\n convert: 8,\n account_create: 9,\n account_update: 10,\n witness_update: 11,\n account_witness_vote: 12,\n account_witness_proxy: 13,\n // pow: 14,\n custom: 15,\n // report_over_production: 16,\n delete_comment: 17,\n custom_json: 18,\n comment_options: 19,\n set_withdraw_vesting_route: 20,\n limit_order_create2: 21,\n claim_account: 22,\n create_claimed_account: 23,\n request_account_recovery: 24,\n recover_account: 25,\n change_recovery_account: 26,\n escrow_transfer: 27,\n escrow_dispute: 28,\n escrow_release: 29,\n // pow2: 30,\n escrow_approve: 31,\n transfer_to_savings: 32,\n transfer_from_savings: 33,\n cancel_transfer_from_savings: 34,\n // custom_binary: 35,\n decline_voting_rights: 36,\n reset_account: 37,\n set_reset_account: 38,\n claim_reward_balance: 39,\n delegate_vesting_shares: 40,\n account_create_with_delegation: 41,\n witness_set_properties: 42,\n account_update2: 43,\n create_proposal: 44,\n update_proposal_votes: 45,\n remove_proposal: 46,\n update_proposal: 47,\n collateralized_convert: 48,\n recurrent_transfer: 49\n} as const\n\ntype OperationId = (typeof OPERATION_IDS)[keyof typeof OPERATION_IDS]\n\nconst VoidSerializer = () => {\n throw new Error('Void can not be serialized')\n}\nconst StringSerializer = (buffer: ByteBuffer, data: string) => {\n buffer.writeVString(data)\n}\n\nconst Int16Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeInt16(data)\n}\n\nconst Int64Serializer = (buffer: ByteBuffer, data: number | bigint) => {\n buffer.writeInt64(data)\n}\n\nconst UInt8Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint8(data)\n}\n\nconst UInt16Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint16(data)\n}\n\nconst UInt32Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint32(data)\n}\n\nconst UInt64Serializer = (buffer: ByteBuffer, data: number | bigint) => {\n buffer.writeUint64(data)\n}\n\nconst BooleanSerializer = (buffer: ByteBuffer, data: number | boolean) => {\n buffer.writeByte(data ? 1 : 0)\n}\n\nconst StaticVariantSerializer = (itemSerializers: any) => {\n // return (buffer: ByteBuffer, data: any[]) => {\n // let id = data[0]\n // const item = data[1]\n // // id was/is supposed to be 0 or integer here but seems to have been changed in e.g. comment_options\n // // extensions: [\n // // [\n // // \"comment_payout_beneficiaries\",\n // // {\n // // \"beneficiaries\": [\n // // {\n // // \"account\": \"vimm\",\n // // \"weight\": 1000\n // // }\n // // ]\n // // }\n // // ]\n // // ]\n // // Keep it here just in case\n // // https://gitlab.syncad.com/hive/hive/-/issues/722\n // // \"comment_payout_beneficiaries\" was 0 and at some point it got changed\n // // It should still be serialized as a 0 or an integer\n // // Now the question is, always 0? will need an example transaction to prove otherwise\n // if (typeof id === 'string') {\n // if (id === 'update_proposal_end_date') {\n // id = 1\n // } else {\n // id = 0\n // }\n // }\n // buffer.writeVarint32(id)\n // itemSerializers[id](buffer, item)\n return (buffer: ByteBuffer, data: any) => {\n const [id, item] = data\n buffer.writeVarint32(id)\n itemSerializers[id](buffer, item)\n }\n}\n\n/**\n * Serialize asset.\n * @note This looses precision for amounts larger than 2^53-1/10^precision.\n * Should not be a problem in real-word usage.\n */\nconst AssetSerializer = (buffer: ByteBuffer, data: string | Asset) => {\n const asset = Asset.from(data)\n const precision = asset.getPrecision()\n buffer.writeInt64(Math.round(asset.amount * Math.pow(10, precision)))\n buffer.writeUint8(precision)\n for (let i = 0; i < 7; i++) {\n buffer.writeUint8(asset.symbol.charCodeAt(i) || 0)\n }\n}\n\nconst DateSerializer = (buffer: ByteBuffer, data: string) => {\n buffer.writeUint32(Math.floor(new Date(data + 'Z').getTime() / 1000))\n}\n\nconst PublicKeySerializer = (buffer: ByteBuffer, data: string | PublicKey) => {\n if (\n data === null ||\n (typeof data === 'string' && data.slice(-39) === '1111111111111111111111111111111114T1Anm')\n ) {\n buffer.append(new Uint8Array(33).fill(0))\n } else {\n buffer.append(PublicKey.from(data).key)\n }\n}\n\nconst BinarySerializer = (size: null | number = null) => {\n return (buffer: ByteBuffer, data: string | Uint8Array | HexBuffer) => {\n data = HexBuffer.from(data)\n const len = data.buffer.length\n if (size) {\n if (len !== size) {\n throw new Error(`Unable to serialize binary. Expected ${size} bytes, got ${len}`)\n }\n } else {\n buffer.writeVarint32(len)\n }\n buffer.append(data.buffer)\n }\n}\n\nconst VariableBinarySerializer = BinarySerializer()\n\nconst FlatMapSerializer = (keySerializer: any, valueSerializer: any) => {\n return (buffer: ByteBuffer, data: any) => {\n buffer.writeVarint32(data.length)\n for (const [key, value] of data) {\n keySerializer(buffer, key)\n valueSerializer(buffer, value)\n }\n }\n}\n\nconst ArraySerializer = (itemSerializer: any) => {\n return (buffer: ByteBuffer, data: any[]) => {\n buffer.writeVarint32(data.length)\n for (const item of data) {\n itemSerializer(buffer, item)\n }\n }\n}\n\nconst ObjectSerializer = (keySerializers: any) => {\n return (buffer: ByteBuffer, data: any) => {\n for (const [key, serializer] of keySerializers) {\n try {\n serializer(buffer, data[key])\n } catch (error: any) {\n error.message = `${key}: ${error.message}`\n throw error\n }\n }\n }\n}\n\nconst OptionalSerializer = (valueSerializer: any) => {\n return (buffer: ByteBuffer, data: any | undefined) => {\n if (data !== undefined) {\n buffer.writeByte(1)\n valueSerializer(buffer, data)\n } else {\n buffer.writeByte(0)\n }\n }\n}\n\nconst AuthoritySerializer = ObjectSerializer([\n ['weight_threshold', UInt32Serializer],\n ['account_auths', FlatMapSerializer(StringSerializer, UInt16Serializer)],\n ['key_auths', FlatMapSerializer(PublicKeySerializer, UInt16Serializer)]\n])\n\nconst BeneficiarySerializer = ObjectSerializer([\n ['account', StringSerializer],\n ['weight', UInt16Serializer]\n])\n\nconst PriceSerializer = ObjectSerializer([\n ['base', AssetSerializer],\n ['quote', AssetSerializer]\n])\n\n// const SignedBlockHeaderSerializer = ObjectSerializer([\n// ['previous', BinarySerializer(20)],\n// ['timestamp', DateSerializer],\n// ['witness', StringSerializer],\n// ['transaction_merkle_root', BinarySerializer(20)],\n// ['extensions', ArraySerializer(VoidSerializer)],\n// ['witness_signature', BinarySerializer(65)]\n// ])\n\nconst ChainPropertiesSerializer = ObjectSerializer([\n ['account_creation_fee', AssetSerializer],\n ['maximum_block_size', UInt32Serializer],\n ['hbd_interest_rate', UInt16Serializer]\n])\n\nconst OperationDataSerializer = (operationId: OperationId, definitions: any) => {\n const objectSerializer = ObjectSerializer(definitions)\n return (buffer: ByteBuffer, data: any) => {\n buffer.writeVarint32(operationId)\n objectSerializer(buffer, data)\n }\n}\n\nconst OperationSerializers: Record> = {}\n\nOperationSerializers.account_create = OperationDataSerializer(OPERATION_IDS.account_create, [\n ['fee', AssetSerializer],\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.account_create_with_delegation = OperationDataSerializer(\n OPERATION_IDS.account_create_with_delegation,\n [\n ['fee', AssetSerializer],\n ['delegation', AssetSerializer],\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.account_update = OperationDataSerializer(OPERATION_IDS.account_update, [\n ['account', StringSerializer],\n ['owner', OptionalSerializer(AuthoritySerializer)],\n ['active', OptionalSerializer(AuthoritySerializer)],\n ['posting', OptionalSerializer(AuthoritySerializer)],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.account_witness_proxy = OperationDataSerializer(\n OPERATION_IDS.account_witness_proxy,\n [\n ['account', StringSerializer],\n ['proxy', StringSerializer]\n ]\n)\n\nOperationSerializers.account_witness_vote = OperationDataSerializer(\n OPERATION_IDS.account_witness_vote,\n [\n ['account', StringSerializer],\n ['witness', StringSerializer],\n ['approve', BooleanSerializer]\n ]\n)\n\nOperationSerializers.cancel_transfer_from_savings = OperationDataSerializer(\n OPERATION_IDS.cancel_transfer_from_savings,\n [\n ['from', StringSerializer],\n ['request_id', UInt32Serializer]\n ]\n)\n\nOperationSerializers.change_recovery_account = OperationDataSerializer(\n OPERATION_IDS.change_recovery_account,\n [\n ['account_to_recover', StringSerializer],\n ['new_recovery_account', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.claim_account = OperationDataSerializer(OPERATION_IDS.claim_account, [\n ['creator', StringSerializer],\n ['fee', AssetSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.claim_reward_balance = OperationDataSerializer(\n OPERATION_IDS.claim_reward_balance,\n [\n ['account', StringSerializer],\n ['reward_hive', AssetSerializer],\n ['reward_hbd', AssetSerializer],\n ['reward_vests', AssetSerializer]\n ]\n)\n\nOperationSerializers.comment = OperationDataSerializer(OPERATION_IDS.comment, [\n ['parent_author', StringSerializer],\n ['parent_permlink', StringSerializer],\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['title', StringSerializer],\n ['body', StringSerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.comment_options = OperationDataSerializer(OPERATION_IDS.comment_options, [\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['max_accepted_payout', AssetSerializer],\n ['percent_hbd', UInt16Serializer],\n ['allow_votes', BooleanSerializer],\n ['allow_curation_rewards', BooleanSerializer],\n [\n 'extensions',\n ArraySerializer(\n StaticVariantSerializer([\n ObjectSerializer([['beneficiaries', ArraySerializer(BeneficiarySerializer)]])\n ])\n )\n ]\n])\n\nOperationSerializers.convert = OperationDataSerializer(OPERATION_IDS.convert, [\n ['owner', StringSerializer],\n ['requestid', UInt32Serializer],\n ['amount', AssetSerializer]\n])\n\nOperationSerializers.create_claimed_account = OperationDataSerializer(\n OPERATION_IDS.create_claimed_account,\n [\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.custom = OperationDataSerializer(OPERATION_IDS.custom, [\n ['required_auths', ArraySerializer(StringSerializer)],\n ['id', UInt16Serializer],\n ['data', VariableBinarySerializer]\n])\n\n// Not used on chain\n// OperationSerializers.custom_binary = OperationDataSerializer(OPERATION_IDS.custom_binary, [\n// ['required_owner_auths', ArraySerializer(StringSerializer)],\n// ['required_active_auths', ArraySerializer(StringSerializer)],\n// ['required_posting_auths', ArraySerializer(StringSerializer)],\n// ['required_auths', ArraySerializer(AuthoritySerializer)],\n// ['id', StringSerializer],\n// ['data', VariableBinarySerializer]\n// ])\n\nOperationSerializers.custom_json = OperationDataSerializer(OPERATION_IDS.custom_json, [\n ['required_auths', ArraySerializer(StringSerializer)],\n ['required_posting_auths', ArraySerializer(StringSerializer)],\n ['id', StringSerializer],\n ['json', StringSerializer]\n])\n\nOperationSerializers.decline_voting_rights = OperationDataSerializer(\n OPERATION_IDS.decline_voting_rights,\n [\n ['account', StringSerializer],\n ['decline', BooleanSerializer]\n ]\n)\n\nOperationSerializers.delegate_vesting_shares = OperationDataSerializer(\n OPERATION_IDS.delegate_vesting_shares,\n [\n ['delegator', StringSerializer],\n ['delegatee', StringSerializer],\n ['vesting_shares', AssetSerializer]\n ]\n)\n\nOperationSerializers.delete_comment = OperationDataSerializer(OPERATION_IDS.delete_comment, [\n ['author', StringSerializer],\n ['permlink', StringSerializer]\n])\n\nOperationSerializers.escrow_approve = OperationDataSerializer(OPERATION_IDS.escrow_approve, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['escrow_id', UInt32Serializer],\n ['approve', BooleanSerializer]\n])\n\nOperationSerializers.escrow_dispute = OperationDataSerializer(OPERATION_IDS.escrow_dispute, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['escrow_id', UInt32Serializer]\n])\n\nOperationSerializers.escrow_release = OperationDataSerializer(OPERATION_IDS.escrow_release, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['receiver', StringSerializer],\n ['escrow_id', UInt32Serializer],\n ['hbd_amount', AssetSerializer],\n ['hive_amount', AssetSerializer]\n])\n\nOperationSerializers.escrow_transfer = OperationDataSerializer(OPERATION_IDS.escrow_transfer, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['hbd_amount', AssetSerializer],\n ['hive_amount', AssetSerializer],\n ['escrow_id', UInt32Serializer],\n ['agent', StringSerializer],\n ['fee', AssetSerializer],\n ['json_meta', StringSerializer],\n ['ratification_deadline', DateSerializer],\n ['escrow_expiration', DateSerializer]\n])\n\nOperationSerializers.feed_publish = OperationDataSerializer(OPERATION_IDS.feed_publish, [\n ['publisher', StringSerializer],\n ['exchange_rate', PriceSerializer]\n])\n\nOperationSerializers.limit_order_cancel = OperationDataSerializer(\n OPERATION_IDS.limit_order_cancel,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer]\n ]\n)\n\nOperationSerializers.limit_order_create = OperationDataSerializer(\n OPERATION_IDS.limit_order_create,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer],\n ['amount_to_sell', AssetSerializer],\n ['min_to_receive', AssetSerializer],\n ['fill_or_kill', BooleanSerializer],\n ['expiration', DateSerializer]\n ]\n)\n\nOperationSerializers.limit_order_create2 = OperationDataSerializer(\n OPERATION_IDS.limit_order_create2,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer],\n ['amount_to_sell', AssetSerializer],\n ['exchange_rate', PriceSerializer],\n ['fill_or_kill', BooleanSerializer],\n ['expiration', DateSerializer]\n ]\n)\n\nOperationSerializers.recover_account = OperationDataSerializer(OPERATION_IDS.recover_account, [\n ['account_to_recover', StringSerializer],\n ['new_owner_authority', AuthoritySerializer],\n ['recent_owner_authority', AuthoritySerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\n// Not used on chain\n// OperationSerializers.report_over_production = OperationDataSerializer(\n// OPERATION_IDS.report_over_production,\n// [\n// ['reporter', StringSerializer],\n// ['first_block', SignedBlockHeaderSerializer],\n// ['second_block', SignedBlockHeaderSerializer]\n// ]\n// )\n\nOperationSerializers.request_account_recovery = OperationDataSerializer(\n OPERATION_IDS.request_account_recovery,\n [\n ['recovery_account', StringSerializer],\n ['account_to_recover', StringSerializer],\n ['new_owner_authority', AuthoritySerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.reset_account = OperationDataSerializer(OPERATION_IDS.reset_account, [\n ['reset_account', StringSerializer],\n ['account_to_reset', StringSerializer],\n ['new_owner_authority', AuthoritySerializer]\n])\n\nOperationSerializers.set_reset_account = OperationDataSerializer(OPERATION_IDS.set_reset_account, [\n ['account', StringSerializer],\n ['current_reset_account', StringSerializer],\n ['reset_account', StringSerializer]\n])\n\nOperationSerializers.set_withdraw_vesting_route = OperationDataSerializer(\n OPERATION_IDS.set_withdraw_vesting_route,\n [\n ['from_account', StringSerializer],\n ['to_account', StringSerializer],\n ['percent', UInt16Serializer],\n ['auto_vest', BooleanSerializer]\n ]\n)\n\nOperationSerializers.transfer = OperationDataSerializer(OPERATION_IDS.transfer, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n])\n\nOperationSerializers.transfer_from_savings = OperationDataSerializer(\n OPERATION_IDS.transfer_from_savings,\n [\n ['from', StringSerializer],\n ['request_id', UInt32Serializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n ]\n)\n\nOperationSerializers.transfer_to_savings = OperationDataSerializer(\n OPERATION_IDS.transfer_to_savings,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n ]\n)\n\nOperationSerializers.transfer_to_vesting = OperationDataSerializer(\n OPERATION_IDS.transfer_to_vesting,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer]\n ]\n)\n\nOperationSerializers.vote = OperationDataSerializer(OPERATION_IDS.vote, [\n ['voter', StringSerializer],\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['weight', Int16Serializer]\n])\n\nOperationSerializers.withdraw_vesting = OperationDataSerializer(OPERATION_IDS.withdraw_vesting, [\n ['account', StringSerializer],\n ['vesting_shares', AssetSerializer]\n])\n\nOperationSerializers.witness_update = OperationDataSerializer(OPERATION_IDS.witness_update, [\n ['owner', StringSerializer],\n ['url', StringSerializer],\n ['block_signing_key', PublicKeySerializer],\n ['props', ChainPropertiesSerializer],\n ['fee', AssetSerializer]\n])\n\nOperationSerializers.witness_set_properties = OperationDataSerializer(\n OPERATION_IDS.witness_set_properties,\n [\n ['owner', StringSerializer],\n ['props', FlatMapSerializer(StringSerializer, VariableBinarySerializer)],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.account_update2 = OperationDataSerializer(OPERATION_IDS.account_update2, [\n ['account', StringSerializer],\n ['owner', OptionalSerializer(AuthoritySerializer)],\n ['active', OptionalSerializer(AuthoritySerializer)],\n ['posting', OptionalSerializer(AuthoritySerializer)],\n ['memo_key', OptionalSerializer(PublicKeySerializer)],\n ['json_metadata', StringSerializer],\n ['posting_json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.create_proposal = OperationDataSerializer(OPERATION_IDS.create_proposal, [\n ['creator', StringSerializer],\n ['receiver', StringSerializer],\n ['start_date', DateSerializer],\n ['end_date', DateSerializer],\n ['daily_pay', AssetSerializer],\n ['subject', StringSerializer],\n ['permlink', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.update_proposal_votes = OperationDataSerializer(\n OPERATION_IDS.update_proposal_votes,\n [\n ['voter', StringSerializer],\n ['proposal_ids', ArraySerializer(Int64Serializer)],\n ['approve', BooleanSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.remove_proposal = OperationDataSerializer(OPERATION_IDS.remove_proposal, [\n ['proposal_owner', StringSerializer],\n ['proposal_ids', ArraySerializer(Int64Serializer)],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nconst ProposalUpdateSerializer = ObjectSerializer([['end_date', DateSerializer]])\n\nOperationSerializers.update_proposal = OperationDataSerializer(OPERATION_IDS.update_proposal, [\n ['proposal_id', UInt64Serializer],\n ['creator', StringSerializer],\n ['daily_pay', AssetSerializer],\n ['subject', StringSerializer],\n ['permlink', StringSerializer],\n [\n 'extensions',\n ArraySerializer(StaticVariantSerializer([VoidSerializer, ProposalUpdateSerializer]))\n ]\n])\n\nOperationSerializers.collateralized_convert = OperationDataSerializer(\n OPERATION_IDS.collateralized_convert,\n [\n ['owner', StringSerializer],\n ['requestid', UInt32Serializer],\n ['amount', AssetSerializer]\n ]\n)\n\nOperationSerializers.recurrent_transfer = OperationDataSerializer(\n OPERATION_IDS.recurrent_transfer,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer],\n ['recurrence', UInt16Serializer],\n ['executions', UInt16Serializer],\n [\n 'extensions',\n ArraySerializer(\n ObjectSerializer([\n ['type', UInt8Serializer],\n ['value', ObjectSerializer([['pair_id', UInt8Serializer]])]\n ])\n )\n ]\n ]\n)\n\nconst OperationSerializer = (buffer: ByteBuffer, operation: Operation) => {\n const serializer = OperationSerializers[operation[0]]\n if (!serializer) {\n throw new Error(`No serializer for operation: ${operation[0]}`)\n }\n try {\n serializer(buffer, operation[1])\n } catch (error: any) {\n error.message = `${operation[0]}: ${error.message}`\n throw error\n }\n}\n\nconst TransactionSerializer = ObjectSerializer([\n ['ref_block_num', UInt16Serializer],\n ['ref_block_prefix', UInt32Serializer],\n ['expiration', DateSerializer],\n ['operations', ArraySerializer(OperationSerializer)],\n ['extensions', ArraySerializer(StringSerializer)]\n])\n\nconst EncryptedMemoSerializer = ObjectSerializer([\n ['from', PublicKeySerializer],\n ['to', PublicKeySerializer],\n ['nonce', UInt64Serializer],\n ['check', UInt32Serializer],\n ['encrypted', BinarySerializer()]\n])\n\nexport const Serializer = {\n // Array: ArraySerializer,\n Asset: AssetSerializer,\n // Authority: AuthoritySerializer,\n // Binary: BinarySerializer,\n // Boolean: BooleanSerializer,\n // Date: DateSerializer,\n // FlatMap: FlatMapSerializer,\n // Int16: Int16Serializer,\n // Int32: Int32Serializer,\n // Int64: Int64Serializer,\n // Int8: Int8Serializer,\n Memo: EncryptedMemoSerializer,\n // Object: ObjectSerializer,\n // Operation: OperationSerializer,\n // Optional: OptionalSerializer,\n Price: PriceSerializer,\n PublicKey: PublicKeySerializer,\n // StaticVariant: StaticVariantSerializer,\n String: StringSerializer,\n Transaction: TransactionSerializer,\n UInt16: UInt16Serializer,\n UInt32: UInt32Serializer\n // UInt64: UInt64Serializer,\n // UInt8: UInt8Serializer,\n // Void: VoidSerializer\n}\n","export const sleep = (ms: number): Promise => {\n return new Promise((resolve) => setTimeout(resolve, ms))\n}\n","import { config, serverRpcProxy, type ServerRpcProxyState } from '../config'\nimport { CallResponse } from '../types'\nimport type { APIMethods } from '../api-types'\nimport { sleep } from './sleep'\n\n// ── Server identity (User-Agent) ────────────────────────────────────────────\n\n/**\n * True only when running under Node.js (SSR / server / CLI). Computed once.\n *\n * We attach a descriptive `User-Agent` exclusively here because that is the only\n * place it (a) takes effect and (b) is wanted:\n * - Node's undici fetch otherwise sends a bare `User-Agent: node`, which is\n * indistinguishable from any anonymous script in node/CDN analytics.\n * - Browsers treat `User-Agent` as a forbidden header and silently drop any\n * override, so setting it there is pointless (and we avoid the churn).\n * - React Native sets its own native UA (e.g. the mobile app's own string);\n * overriding it would relabel real mobile traffic, so we explicitly exclude\n * it via `navigator.product === 'ReactNative'`.\n */\nconst isNodeRuntime: boolean = (() => {\n try {\n const isReactNative =\n typeof navigator !== 'undefined' && (navigator as any).product === 'ReactNative'\n return (\n !isReactNative &&\n typeof process !== 'undefined' &&\n process.versions != null &&\n process.versions.node != null\n )\n } catch {\n return false\n }\n})()\n\n/**\n * Headers that identify the caller on server-side requests. Returns the\n * configured `User-Agent` only under Node; an empty object everywhere else so\n * browser and React Native requests are left exactly as they were.\n */\nfunction serverIdentityHeaders(): Record {\n return isNodeRuntime ? { 'User-Agent': config.userAgent } : {}\n}\n\n// ── Server-side read-through proxy ──────────────────────────────────────────\n\n/**\n * Counters for the proxy path, readable by a host's diagnostics (the web\n * tier's event-loop monitor prints them). `served` = answered by the proxy,\n * `fallback` = proxy configured and eligible but the read went to the node\n * pool, with the reason.\n */\nexport const rpcProxyStats = {\n served: 0,\n fallback: 0,\n /** Reads that went straight to the nodes because the breaker was open. */\n skipped: 0,\n fallbackByReason: { status: 0, rpcerror: 0, timeout: 0, transport: 0, validate: 0, parse: 0 } as Record\n}\n\n/**\n * `rpcerror` is a 502 tagged `X-Ssr-Cache: RPCERROR`: the proxy reached a node\n * and relayed the node's own error (a tag or post that does not exist, a bad\n * argument). The read still falls back so the caller sees the node's answer\n * unchanged, but the proxy was healthy, so it does not count toward the\n * breaker; the other reasons do.\n */\ntype ProxyMissReason = 'status' | 'rpcerror' | 'timeout' | 'transport' | 'validate' | 'parse'\n\nclass ProxyMiss extends Error {\n constructor(\n public reason: ProxyMissReason,\n message: string\n ) {\n super(message)\n }\n}\n\nconst errorMessage = (e: unknown): string =>\n e instanceof Error ? e.message : typeof e === 'string' ? e : String(e)\n\n// Breaker: consecutive misses open it for the configured cooldown, a served\n// call closes it. Module state, like the health tracker: one per process.\nlet proxyConsecutiveMisses = 0\nlet proxyOpenUntil = 0\n\n/** Test seam: forget breaker state. */\nexport function resetRpcProxyBreaker(): void {\n proxyConsecutiveMisses = 0\n proxyOpenUntil = 0\n}\n\n/**\n * One proxy call for an eligible read. Resolves with the upstream `result` the\n * proxy served, or throws ProxyMiss; the caller then continues with the node\n * loop exactly as if the proxy did not exist. Never throws anything else,\n * except the caller's own abort.\n */\nasync function proxyRpcCall(\n proxy: ServerRpcProxyState,\n method: string,\n params: unknown,\n callerTimeoutMs: number,\n externalSignal: AbortSignal | undefined,\n validate?: (result: unknown) => boolean\n): Promise {\n const dot = method.indexOf('.')\n if (dot <= 0 || dot === method.length - 1) {\n // Unreachable through setServerRpcProxy (it keeps only dotted names), kept\n // so a future allowlist change fails as a miss rather than a malformed call.\n throw new ProxyMiss('transport', `method without an api prefix: ${method}`)\n }\n // Never wait longer for the proxy than the caller would for one node.\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(\n Math.min(proxy.timeoutMs, callerTimeoutMs)\n )\n const { signal, cleanup: cleanupMerge } = mergeSignals(tSignal, externalSignal)\n try {\n let res: Response\n try {\n res = await fetch(proxy.url, {\n method: 'POST',\n body: JSON.stringify({ api: method.slice(0, dot), method: method.slice(dot + 1), params }),\n headers: { 'Content-Type': 'application/json', ...serverIdentityHeaders(), ...proxy.headers },\n signal\n })\n } catch (e: unknown) {\n if (externalSignal?.aborted) throw e\n throw new ProxyMiss(tSignal.aborted ? 'timeout' : 'transport', errorMessage(e))\n }\n if (res.status !== 200) {\n // Release the connection: an unconsumed body pins a pooled socket.\n try {\n await res.body?.cancel()\n } catch {\n // nothing to release\n }\n const relayed = res.status === 502 && (res.headers.get('x-ssr-cache') ?? '').toUpperCase() === 'RPCERROR'\n throw new ProxyMiss(relayed ? 'rpcerror' : 'status', relayed ? 'proxy relayed a node error' : `proxy answered ${res.status}`)\n }\n let result: unknown\n try {\n result = await res.json()\n } catch (e: unknown) {\n if (externalSignal?.aborted) throw e\n throw new ProxyMiss(tSignal.aborted ? 'timeout' : 'parse', errorMessage(e))\n }\n if (validate && !validate(result)) {\n throw new ProxyMiss('validate', 'proxy result rejected by validator')\n }\n return result as T\n } finally {\n cleanupTimeout()\n cleanupMerge()\n }\n}\n\n// ── Error Types ─────────────────────────────────────────────────────────────\n\nexport class RPCError extends Error {\n name = 'RPCError'\n data?: any\n code: number\n stack: undefined = undefined\n constructor(rpcError: { message: string; code: number; data?: any }) {\n super(rpcError.message)\n this.code = rpcError.code\n if ('data' in rpcError) {\n this.data = rpcError.data\n }\n }\n}\n\n/**\n * Transport-level error thrown by jsonRPCCall for HTTP status errors (429, 503).\n * Carries node identity and rate-limit info so callers can record health\n * exactly once without double-counting.\n */\nclass NodeError extends Error {\n node: string\n /** Explicit server `Retry-After` in ms, or 0 when the 429 carried no usable header. */\n rateLimitMs: number\n /** True for an HTTP 429 regardless of whether a `Retry-After` header was present, so\n * a header-less rate limit is still cooled down (with escalating backoff) rather than\n * mis-recorded as a plain transport failure. */\n isRateLimit: boolean\n constructor(\n node: string,\n message: string,\n opts: { rateLimitMs?: number; isRateLimit?: boolean } = {}\n ) {\n super(message)\n this.node = node\n this.rateLimitMs = opts.rateLimitMs ?? 0\n this.isRateLimit = opts.isRateLimit ?? false\n }\n}\n\n/**\n * Parse an HTTP `Retry-After` header to milliseconds. Supports both forms in the\n * spec: `` (e.g. \"120\") and ``. Returns 0 when the header\n * is absent or unparseable (including a non-numeric junk value or a past date) so the\n * caller falls back to escalating backoff instead of a NaN/negative cooldown.\n */\nfunction parseRetryAfterMs(header: string | null): number {\n if (!header) return 0\n const secs = Number(header)\n if (Number.isFinite(secs)) return secs > 0 ? secs * 1000 : 0\n const dateMs = Date.parse(header)\n if (Number.isFinite(dateMs)) {\n const delta = dateMs - Date.now()\n return delta > 0 ? delta : 0\n }\n return 0\n}\n\n/** Errors that indicate the request definitely never reached the server. */\nconst PRE_CONNECTION_ERRORS = ['ECONNREFUSED', 'ENOTFOUND', 'EHOSTUNREACH', 'EAI_AGAIN']\n\n/** Browser fetch network-failure messages — emitted by Chromium/Firefox/Safari\n * when CORS preflight fails, DNS fails, TLS fails, or the response is blocked.\n * These map to scenarios where retrying the same signed broadcast is safe: the\n * request either never reached the node, or its response was blocked but a\n * re-broadcast of the *same* signed tx will be deduped by Hive (same trx_id). */\nconst BROWSER_NETWORK_ERRORS = [\n 'Failed to fetch', // Chromium\n 'NetworkError when attempting to fetch', // Firefox\n 'Load failed', // Safari\n 'fetch failed' // Node 18+ undici / Bun — also covered via cause chain\n]\n\n/**\n * Concatenate the error's surface text + the messages/codes from up to 5\n * levels of nested `cause`. Node.js fetch wraps connection failures as\n * `TypeError('fetch failed')` with the real `code` (ECONNREFUSED, etc.)\n * nested in the cause chain. Browser fetch failures have no cause but\n * carry their identifier in `message`.\n */\nfunction flattenErrorText(e: any): string {\n if (!e) return ''\n const parts: string[] = [String(e.name || ''), String(e.message || ''), String(e.code || '')]\n let cause = e.cause\n for (let depth = 0; cause && depth < 5; depth++) {\n parts.push(String(cause.code || ''), String(cause.message || ''))\n cause = cause.cause\n }\n return parts.join(' ')\n}\n\n/**\n * Decide whether a broadcast attempt can safely be retried on another node.\n *\n * Safe to retry (same signed tx → Hive dedupes by trx_id at the mempool layer):\n * - Pre-connection failures (ECONNREFUSED, ENOTFOUND, etc.) — request never sent.\n * - Browser fetch network failures (CORS block, TLS error, DNS) — TypeError with\n * a well-known message string.\n * - JSON parse failures — node returned an HTML error page (typical for\n * Cloudflare 1033 tunnel-down / 5xx interstitials), so the request never\n * reached the Hive RPC layer.\n * - NodeError (HTTP 429/5xx surfaced from jsonRPCCall) — already known transient.\n *\n * NOT safe to retry:\n * - RPCError — the node accepted the request and the blockchain rejected it.\n * Retrying on another node would either get the same rejection or accept\n * a different one; surface the original error instead.\n */\nfunction isBroadcastSafeToRetry(e: any): boolean {\n if (!e) return false\n if (e instanceof NodeError) return true\n if (e instanceof RPCError) return false\n\n const text = flattenErrorText(e)\n if (PRE_CONNECTION_ERRORS.some((code) => text.includes(code))) return true\n if (BROWSER_NETWORK_ERRORS.some((msg) => text.includes(msg))) return true\n\n // res.json() against an HTML body (Cloudflare/proxy interstitials) throws\n // SyntaxError. The Hive RPC layer never saw the tx, so failover is safe.\n if (e instanceof SyntaxError) return true\n // Some runtimes surface JSON parse errors as plain Error with this text.\n if (/Unexpected token|JSON\\.parse|Unexpected end of JSON/i.test(text)) return true\n\n return false\n}\n\n// ── Node Health Tracker ─────────────────────────────────────────────────────\n\n/** Node-level health state tracked by NodeHealthTracker. */\ninterface NodeHealth {\n /** Global consecutive-failure counter. Resets on success. */\n consecutiveFailures: number\n /** Timestamp of the most recent failure. Used with the 30s cooldown window. */\n lastFailureTime: number\n /** Epoch ms after which the node is no longer rate-limited. */\n rateLimitedUntil: number\n /** Count of consecutive 429s (no intervening success) with no usable Retry-After.\n * Drives escalating backoff; reset by a success or by RATE_LIMIT_STREAK_RESET_MS. */\n rateLimitStreak: number\n /** Epoch ms of the most recent 429. Used to expire the escalation streak. */\n lastRateLimitAt: number\n /** Per-API failure counters. Some nodes disable specific API plugins; tracking\n * per-API lets us deprioritize a node only for the APIs that fail, not globally.\n * `defective` marks a cooldown set by recordDefectiveResponse (payload\n * validation failure) — unlike ordinary strike cooldowns it survives\n * recordSuccess and only expires on its own. */\n apiFailures: Map<\n string,\n { count: number; cooldownUntil: number; lastFailureTime: number; defective?: boolean }\n >\n /** Most recent head_block_number observed for this node. */\n headBlock: number\n /** Epoch ms when the head_block was recorded. Used to expire stale observations. */\n headBlockUpdatedAt: number\n\n // ── Latency tracking (adaptive ordering) ────────────────────────────────\n /** EWMA of observed round-trip ms. Fed by successful calls AND by slow/timeout\n * failures (so a node that returns 200 in 15s, or aborts at the timeout, is\n * ranked on its real slowness — not treated as merely \"healthy\"). `undefined`\n * until the first sample. */\n ewmaLatencyMs?: number\n /** Number of latency samples folded into the EWMA. Gates \"warmup\": below\n * LATENCY_MIN_SAMPLES the node is unproven and keeps its config-order prior. */\n latencySampleCount: number\n /** Epoch ms of the most recent latency sample. Used for usability expiry and to\n * decide when a node is overdue for an exploratory re-probe. */\n latencyUpdatedAt: number\n /** Epoch ms of the most recent exploratory promotion. Single-flight guard so a\n * burst of concurrent orderings doesn't all re-probe the same stale node. */\n lastProbeAt: number\n\n /**\n * Per-profile-key latency (same EWMA/warmup/expiry rules as the global one).\n * The global EWMA mixes cheap calls (get_accounts ~300ms) with heavy ones\n * (get_account_history, bridge.get_discussion — legitimately seconds), so it\n * ranks nodes fine but is the WRONG baseline for per-attempt deadlines: a\n * profile dominated by cheap calls would abort every legitimately-heavy call.\n * Deadlines/hedge delays therefore key on the FULL method for RPC\n * (\"condenser_api.get_account_history\") and api+endpoint template for REST —\n * an API prefix alone still mixes cheap and heavy methods. Ranking keeps the\n * global profile. Bounded: #nodes × #distinct methods called (code-defined,\n * not user input); fully cleared whenever the node's global profile expires\n * (the global clock advances on every sample, so global-stale ⇒ all stale).\n */\n apiLatency: Map\n}\n\n/**\n * JSON-RPC error codes that indicate the node itself is unhealthy, not that the\n * client sent a bad request. These should trigger failover to another node.\n *\n * Background: Hive nodes fronted by HAF/jussi/drone return HTTP 200 with a\n * JSON-RPC error body when a backing service (hivemind, postgrest, etc.) is down.\n * The HTTP layer looks healthy, so failover never triggers — the caller just gets\n * an error and gives up. This function identifies those node-level errors.\n */\nfunction isNodeLevelRPCError(code: number, message: string): boolean {\n // -32603: Internal error — node is having problems\n if (code === -32603) return true\n // -32000 to -32099: Server error range (implementation-defined server errors)\n if (code <= -32000 && code >= -32099) return true\n // -32601: Method not found — node may be missing this API plugin\n if (code === -32601) return true\n // -32602 with node-sick indicators (vs normal \"invalid params\" from bad client input)\n // e.g. \"Unable to parse endpoint data\" from HAF when a backing service is down\n if (code === -32602 && /unable to parse|endpoint data|internal/i.test(message)) return true\n return false\n}\n\n/** Extract the API prefix from a method name like \"rc_api.find_rc_accounts\" -> \"rc_api\". */\nfunction apiOf(method: string): string {\n const dot = method.indexOf('.')\n return dot > 0 ? method.slice(0, dot) : method\n}\n\n// ── Rate-limit (429) backoff constants ───────────────────────────────────────\n/** Base cooldown applied to a 429 with no usable `Retry-After` header. Matches the\n * previous flat default so first-offence behaviour is unchanged. */\nconst RATE_LIMIT_BASE_MS = 10_000\n/** Ceiling for the escalating header-less cooldown. Prevents a node from being\n * parked far longer than a real public node's throttle window. */\nconst RATE_LIMIT_MAX_MS = 60_000\n/** No 429 from a node for this long ⇒ its escalation streak resets to 0, so an\n * occasional throttle hours apart doesn't compound into a long park. */\nconst RATE_LIMIT_STREAK_RESET_MS = 120_000\n\n/** Per-API failure threshold before the node is deprioritized for that API only. */\nconst MAX_API_FAILURES_BEFORE_COOLDOWN = 2\n/** How long a node stays deprioritized for a specific API after repeated failures. */\nconst API_COOLDOWN_MS = 60_000\n/** How long head_block observations remain valid before being treated as unknown. */\nconst HEAD_BLOCK_MAX_AGE_MS = 120_000\n/** Maximum lag (in blocks) before a node is considered stale relative to the best-known head. */\nconst STALE_BLOCK_THRESHOLD = 30\n\n// ── Adaptive latency-ordering constants ──────────────────────────────────────\n/** EWMA smoothing weight for a new latency sample. 0.3 ⇒ ~5–6 samples to converge;\n * absorbs one-off GC/TLS spikes while still reacting to a real regional shift fast. */\nconst LATENCY_EWMA_ALPHA = 0.3\n/** Samples required before a node's latency is trusted for ranking. Below this the\n * node is \"warming\" and ranks at a neutral prior (config order via tiebreak), so a\n * single fluke never reorders the list and cold start == today's behavior. */\nconst LATENCY_MIN_SAMPLES = 3\n/** How long a latency sample stays usable for ranking. Past this a node reverts to\n * warming. Must be > LATENCY_REPROBE_MS so re-probes keep a busy node's profile fresh. */\nconst LATENCY_MAX_AGE_MS = 5 * 60_000\n/** A healthy node not sampled within this window is overdue for an exploratory\n * re-probe (promoted to front of ONE ordering). This is what lets a demoted node\n * climb back when it recovers — and what profiles a node that organic traffic never\n * reaches. 60s ⇒ ~1 probe/node/min worst case = negligible cost. */\nconst LATENCY_REPROBE_MS = 60_000\n/** Neutral score (ms) for an unproven/warming node: optimistic enough to sit ahead\n * of a proven-slow node (so we explore an unknown before hammering a known-slow one)\n * but behind a proven-fast node. Fixed, so a node makes at most ONE rank transition\n * when it crosses LATENCY_MIN_SAMPLES — no churn. */\nconst LATENCY_UNPROVEN_PRIOR_MS = 1_000\n/** A failed call only feeds a latency penalty if it was actually slow (≥ this). Keeps\n * a genuine timeout / slow-5xx (a far-region node case) visible to the ranker while an\n * instant ECONNREFUSED (a *down* node, handled by consecutiveFailures) is NOT mis-read\n * as \"slow\". The penalty value is the *measured* elapsed, never a static constant. */\nconst LATENCY_SLOW_FAILURE_MS = 2_000\n\n/**\n * Latency-ranking tuning, re-exported as a frozen bag so tests assert behaviour\n * against the real numbers instead of mirroring literals that can silently drift.\n * @internal — not part of the package's public API; for the co-located spec only.\n */\nexport const __LATENCY_TUNING__ = Object.freeze({\n EWMA_ALPHA: LATENCY_EWMA_ALPHA,\n MIN_SAMPLES: LATENCY_MIN_SAMPLES,\n MAX_AGE_MS: LATENCY_MAX_AGE_MS,\n REPROBE_MS: LATENCY_REPROBE_MS,\n UNPROVEN_PRIOR_MS: LATENCY_UNPROVEN_PRIOR_MS,\n SLOW_FAILURE_MS: LATENCY_SLOW_FAILURE_MS\n})\n\n/** @internal Exported for testing only. */\nexport class NodeHealthTracker {\n private health = new Map()\n\n private getOrCreate(node: string): NodeHealth {\n let h = this.health.get(node)\n if (!h) {\n h = {\n consecutiveFailures: 0,\n lastFailureTime: 0,\n rateLimitedUntil: 0,\n rateLimitStreak: 0,\n lastRateLimitAt: 0,\n apiFailures: new Map(),\n headBlock: 0,\n headBlockUpdatedAt: 0,\n ewmaLatencyMs: undefined,\n latencySampleCount: 0,\n latencyUpdatedAt: 0,\n // Stamp the probe clock at creation so a brand-new (never-sampled) node is\n // NOT treated as \"overdue for re-probe\" on its very first ordering pass.\n // With lastProbeAt=0 the re-probe gate (touch <= now - LATENCY_REPROBE_MS)\n // fired immediately, so the 2nd+ ordering on a cold worker promoted unproven\n // nodes ahead of the configured order for no measured reason. Seeding it to\n // \"now\" preserves configured order during warmup; a genuinely slow preferred\n // node is still demoted by its EWMA score (not by epoch-zero exploration),\n // and idle nodes are still re-probed once LATENCY_REPROBE_MS has truly elapsed.\n lastProbeAt: Date.now(),\n apiLatency: new Map()\n }\n this.health.set(node, h)\n }\n return h\n }\n\n recordSuccess(node: string, api?: string, durationMs?: number, profileKey?: string): void {\n const h = this.getOrCreate(node)\n h.consecutiveFailures = 0\n // A success means the node recovered — clear the escalation streak so the next\n // throttle starts from the base cooldown. We deliberately do NOT clear an active\n // rateLimitedUntil window here: under concurrency a success from a request that was\n // already in flight can resolve *after* another request recorded a fresh 429\n // Retry-After, and erasing the window would put a just-throttled node back into\n // rotation early. The window expires on its own (short for header-less; the server's\n // value for an explicit Retry-After).\n h.rateLimitStreak = 0\n if (api) {\n // A successful API call clears that API's failure counter — but never an\n // ACTIVE defective-response cooldown: the \"success\" may itself be an\n // unvalidated read from the same lying node (validated calls are the\n // minority of traffic), and re-admitting it early defeats the decisive\n // penalty. That window expires on its own, like rateLimitedUntil above.\n const apiFail = h.apiFailures.get(api)\n if (!apiFail || !(apiFail.defective && apiFail.cooldownUntil > Date.now())) {\n h.apiFailures.delete(api)\n }\n }\n if (typeof durationMs === 'number' && Number.isFinite(durationMs) && durationMs >= 0) {\n // Latency profiles use the finest key available (full method / endpoint\n // template); the API prefix is only a fallback so bare callers still\n // profile SOMETHING. Failure state above stays per-API on purpose.\n this.recordLatency(h, durationMs, profileKey ?? api)\n }\n }\n\n /**\n * Record a *slow* failed call as a latency signal. The failure counters are\n * updated separately (recordFailure/recordError); this only feeds the EWMA so a\n * node that returns 200-but-too-slow, times out, or returns a slow 5xx is ranked\n * on its real slowness. Callers pass the MEASURED elapsed ms and only call this\n * when the call was genuinely slow (≥ LATENCY_SLOW_FAILURE_MS) — an instant\n * connection failure (a *down* node) must NOT look \"slow\".\n */\n recordSlowFailure(node: string, durationMs: number, profileKey?: string): void {\n if (!Number.isFinite(durationMs) || durationMs < LATENCY_SLOW_FAILURE_MS) return\n this.recordLatency(this.getOrCreate(node), durationMs, profileKey)\n }\n\n /**\n * Usable latency profile (EWMA ms), or `undefined` while unproven or stale.\n * With a `profileKey` (full RPC method / REST api+endpoint template),\n * returns that (node, key) profile ONLY — deliberately no fallback to the\n * mixed global profile, because an average dominated by cheap calls is the\n * wrong deadline baseline for a heavy method (that fallback is exactly the\n * \"2s window starves get_account_history\" failure mode). Without a key,\n * returns the global ranking profile. Both follow the same \"profiled and\n * fresh\" gate as the ranker.\n * @internal\n */\n getUsableLatencyMs(node: string, profileKey?: string): number | undefined {\n const h = this.health.get(node)\n if (!h) return undefined\n const now = Date.now()\n if (profileKey !== undefined) {\n const p = h.apiLatency.get(profileKey)\n return p &&\n p.sampleCount >= LATENCY_MIN_SAMPLES &&\n now - p.updatedAt <= LATENCY_MAX_AGE_MS\n ? p.ewmaMs\n : undefined\n }\n return this.isLatencyUsable(h, now) ? h.ewmaLatencyMs : undefined\n }\n\n /**\n * Censored latency sample for a request that was ABORTED because a hedge\n * completed first while it was still in flight. The elapsed-at-abort is a\n * *lower bound* on the true latency, so folding it in can only move the\n * node's EWMA toward the truth, never below it — which is what lets repeated\n * hedge-wins reorder the pool. Deliberately does NOT touch the failure\n * counters or rate-limit state: the node returned no error, it was merely\n * slow, and treating cancellation as failure would flap `isNodeHealthy`.\n * Callers must NOT record this for a primary that already settled on its own\n * (its outcome was recorded normally; a second sample would be fabricated).\n * Bypasses the `recordSlowFailure` 2s floor (a hedge can win well below it).\n * By construction the elapsed is ≥ the hedge delay, so only a degenerate\n * near-zero epsilon needs rejecting — anything under one LAN round trip is\n * noise, not a latency measurement.\n * @internal\n */\n recordCensoredLatency(node: string, elapsedMs: number, profileKey?: string): void {\n if (!Number.isFinite(elapsedMs) || elapsedMs < 50) return\n this.recordLatency(this.getOrCreate(node), elapsedMs, profileKey)\n }\n\n /**\n * Fold a latency sample into the node's global EWMA (warmup + usability\n * bookkeeping) and, when a profile key is given, into that (node, key)\n * profile — the global one ranks nodes, the keyed one calibrates deadlines.\n */\n private recordLatency(h: NodeHealth, durationMs: number, profileKey?: string): void {\n const now = Date.now()\n // A profile older than the usable window starts fresh, so an idled process\n // re-learns from scratch rather than ranking on hour-old data. Every keyed\n // profile shares this clock (each sample updates both), so global-stale\n // implies every keyed profile is stale too — clear the map rather than\n // leave never-again-read tombstone entries for the life of the process.\n if (h.latencyUpdatedAt > 0 && now - h.latencyUpdatedAt > LATENCY_MAX_AGE_MS) {\n h.ewmaLatencyMs = undefined\n h.latencySampleCount = 0\n h.apiLatency.clear()\n }\n h.ewmaLatencyMs =\n h.ewmaLatencyMs === undefined\n ? durationMs\n : LATENCY_EWMA_ALPHA * durationMs + (1 - LATENCY_EWMA_ALPHA) * h.ewmaLatencyMs\n h.latencySampleCount++\n h.latencyUpdatedAt = now\n\n if (profileKey !== undefined) {\n const p = h.apiLatency.get(profileKey)\n if (!p || now - p.updatedAt > LATENCY_MAX_AGE_MS) {\n h.apiLatency.set(profileKey, { ewmaMs: durationMs, sampleCount: 1, updatedAt: now })\n } else {\n p.ewmaMs = LATENCY_EWMA_ALPHA * durationMs + (1 - LATENCY_EWMA_ALPHA) * p.ewmaMs\n p.sampleCount++\n p.updatedAt = now\n }\n }\n }\n\n recordFailure(node: string, api?: string): void {\n const h = this.getOrCreate(node)\n if (api) {\n // API-specific failure: only update the per-API tracker.\n // This prevents e.g. 3 rc_api failures from marking the node\n // globally unhealthy for condenser_api too.\n const now = Date.now()\n const existing: {\n count: number\n cooldownUntil: number\n lastFailureTime: number\n defective?: boolean\n } = h.apiFailures.get(api) ?? { count: 0, cooldownUntil: 0, lastFailureTime: 0 }\n // Reset counter if previous cooldown expired OR last failure was >30s ago\n // (avoids sticky penalties from sparse failures hours apart)\n if (\n (existing.cooldownUntil > 0 && existing.cooldownUntil <= now) ||\n (existing.lastFailureTime > 0 && now - existing.lastFailureTime > 30_000)\n ) {\n existing.count = 0\n existing.cooldownUntil = 0\n }\n existing.count++\n existing.lastFailureTime = now\n if (existing.count >= MAX_API_FAILURES_BEFORE_COOLDOWN) {\n existing.cooldownUntil = now + API_COOLDOWN_MS\n }\n h.apiFailures.set(api, existing)\n } else {\n // Transport-level failure (no specific API): update global counter\n h.consecutiveFailures++\n h.lastFailureTime = Date.now()\n }\n }\n\n /**\n * A response that failed the caller's payload validation is a decisive,\n * reproducible node fault — the node answered 200 with data the caller KNOWS\n * to be impossible — so it trips the per-API cooldown immediately instead of\n * accruing ordinary strikes. Deliberately its own method rather than\n * recordFailure × N: ordinary strikes are cleared by any success, and a\n * top-ranked lying node keeps recording successes on the unvalidated calls\n * between probes, which would reset its strikes forever and keep it in\n * rotation (observed live). Scope stays per-API: the node may be perfectly\n * healthy for its other API families.\n */\n recordDefectiveResponse(node: string, api: string): void {\n const h = this.getOrCreate(node)\n const now = Date.now()\n const existing: {\n count: number\n cooldownUntil: number\n lastFailureTime: number\n defective?: boolean\n } = h.apiFailures.get(api) ?? { count: 0, cooldownUntil: 0, lastFailureTime: 0 }\n existing.count = Math.max(existing.count + 1, MAX_API_FAILURES_BEFORE_COOLDOWN)\n existing.lastFailureTime = now\n existing.cooldownUntil = now + API_COOLDOWN_MS\n existing.defective = true\n h.apiFailures.set(api, existing)\n }\n\n /**\n * Cool down a rate-limited node. Honors an explicit server `Retry-After`\n * (`retryAfterMs`) exactly — the server told us when to return. With no usable\n * header, applies escalating backoff: BASE, 2×BASE, 4×BASE … capped at\n * RATE_LIMIT_MAX_MS, indexed by the node's consecutive-429 streak (reset by a\n * success or after RATE_LIMIT_STREAK_RESET_MS of quiet). This stops a throttled\n * public node from being re-admitted every 10s and re-hammered under sustained\n * load, which matters most when the fleet's own unlimited node is removed.\n */\n recordRateLimit(node: string, retryAfterMs?: number): void {\n const h = this.getOrCreate(node)\n const now = Date.now()\n // Expire a stale streak so an occasional throttle hours apart doesn't compound.\n if (h.rateLimitStreak > 0 && now - h.lastRateLimitAt > RATE_LIMIT_STREAK_RESET_MS) {\n h.rateLimitStreak = 0\n }\n const hasHeader = typeof retryAfterMs === 'number' && Number.isFinite(retryAfterMs) && retryAfterMs > 0\n const cooldown = hasHeader\n ? retryAfterMs!\n : Math.min(RATE_LIMIT_BASE_MS * 2 ** h.rateLimitStreak, RATE_LIMIT_MAX_MS)\n // Only a header-less 429 advances the escalation streak — an explicit Retry-After is\n // honored exactly and must not compound the header-less backoff (else several\n // Retry-After 429s would push a later header-less 429 straight to the 60s cap).\n if (!hasHeader) h.rateLimitStreak++\n h.lastRateLimitAt = now\n // Explicit Retry-After is honored exactly (the server's current instruction). A\n // header-less cooldown may only move the window FORWARD — it must never truncate a\n // longer window already set, e.g. a node parked for an hour by an explicit\n // Retry-After that is later retried as a last resort and returns a header-less 429\n // must not have its 1h window cut down to the 10s base.\n h.rateLimitedUntil = hasHeader\n ? now + cooldown\n : Math.max(h.rateLimitedUntil, now + cooldown)\n h.consecutiveFailures++\n h.lastFailureTime = now\n }\n\n /** Record an observed head_block_number for this node. */\n recordHeadBlock(node: string, blockNum: number): void {\n if (!blockNum || !Number.isFinite(blockNum)) return\n const h = this.getOrCreate(node)\n h.headBlock = blockNum\n h.headBlockUpdatedAt = Date.now()\n }\n\n /**\n * Consensus head block from recent observations. Uses the median rather than the\n * max to prevent a single bad/misconfigured node from poisoning the reference.\n * A node reporting an inflated head_block won't affect the median unless the\n * majority of nodes agree on that range.\n */\n private consensusHeadBlock(): number {\n const now = Date.now()\n const recent: number[] = []\n for (const h of this.health.values()) {\n if (h.headBlock > 0 && now - h.headBlockUpdatedAt <= HEAD_BLOCK_MAX_AGE_MS) {\n recent.push(h.headBlock)\n }\n }\n if (recent.length < 2) return 0 // Need at least 2 observations to compare\n recent.sort((a, b) => a - b)\n // Median: for even length, use the lower-middle value (conservative)\n return recent[Math.floor((recent.length - 1) / 2)]\n }\n\n /** True if this node is healthy (globally and for the given API if provided). */\n isNodeHealthy(node: string, api?: string): boolean {\n const h = this.health.get(node)\n if (!h) return true // unknown nodes assumed healthy\n const now = Date.now()\n\n // Rate-limited and cooldown hasn't expired\n if (h.rateLimitedUntil > now) return false\n\n // Too many consecutive failures within the last 30 seconds\n if (h.consecutiveFailures >= 3 && now - h.lastFailureTime < 30_000) return false\n\n // Per-API cooldown: node may be healthy overall but missing this API plugin\n if (api) {\n const apiFail = h.apiFailures.get(api)\n if (apiFail && apiFail.cooldownUntil > now) return false\n }\n\n // Head-block staleness: deprioritize nodes lagging behind the consensus head\n const best = this.consensusHeadBlock()\n if (\n best > 0 &&\n h.headBlock > 0 &&\n now - h.headBlockUpdatedAt <= HEAD_BLOCK_MAX_AGE_MS &&\n best - h.headBlock > STALE_BLOCK_THRESHOLD\n ) {\n return false\n }\n\n return true\n }\n\n /**\n * Order nodes best-first: healthy nodes sorted by adaptive latency score, then\n * unhealthy nodes appended. Capability / staleness / rate-limit filtering stays in\n * `isNodeHealthy` and is unchanged — latency only reorders WITHIN the healthy set,\n * and only WITHIN the array it is handed (so it never leaves the configured list).\n *\n * One ordering per pass MAY promote a healthy node overdue for a re-probe (never\n * sampled, or not sampled within LATENCY_REPROBE_MS) to the front — single-flight\n * via `lastProbeAt`. This is what lets a demoted node climb back when it recovers,\n * and profiles a node that organic traffic (always served by a faster peer) never\n * reaches. Cold start: with no profiles, every node scores the neutral prior and the\n * stable config-index tiebreak yields the original order — i.e. today's behavior.\n */\n getOrderedNodes(nodes: string[], api?: string): string[] {\n const healthy: string[] = []\n const unhealthy: string[] = []\n for (const node of nodes) {\n if (this.isNodeHealthy(node, api)) {\n healthy.push(node)\n } else {\n unhealthy.push(node)\n }\n }\n if (healthy.length <= 1) {\n return [...healthy, ...unhealthy]\n }\n const now = Date.now()\n // Every score in THIS pass falls back to config index on ties → a total,\n // transitive order with no memo (so no stale-denominator inversions).\n const ordered = healthy\n .map((node, i) => ({ node, i, score: this.scoreNode(node, now) }))\n .sort((a, b) => a.score - b.score || a.i - b.i)\n .map((d) => d.node)\n const probe = this.pickReprobeCandidate(healthy, now)\n if (probe && ordered[0] !== probe) {\n return [probe, ...ordered.filter((n) => n !== probe), ...unhealthy]\n }\n return [...ordered, ...unhealthy]\n }\n\n /** A node's latency is usable for ranking only if profiled (≥ MIN_SAMPLES) and fresh. */\n private isLatencyUsable(h: NodeHealth | undefined, now: number): boolean {\n return (\n !!h &&\n h.ewmaLatencyMs !== undefined &&\n h.latencySampleCount >= LATENCY_MIN_SAMPLES &&\n now - h.latencyUpdatedAt <= LATENCY_MAX_AGE_MS\n )\n }\n\n /**\n * Ranking score (lower = better). Unproven/warming nodes get a fixed neutral prior\n * so they sit ahead of a proven-slow node but behind a proven-fast one, and make at\n * most one rank transition when they cross MIN_SAMPLES (no churn).\n */\n private scoreNode(node: string, now: number): number {\n const h = this.health.get(node)\n if (!this.isLatencyUsable(h, now)) return LATENCY_UNPROVEN_PRIOR_MS\n return h!.ewmaLatencyMs!\n }\n\n /**\n * At most one healthy node overdue for an exploratory re-probe: never sampled, or\n * neither sampled nor re-probed within LATENCY_REPROBE_MS. Returns the stalest such\n * node and stamps `lastProbeAt` to single-flight it against concurrent orderings.\n *\n * Note: `getOrCreate` here materializes a health entry per node in the passed list.\n * The node list (`config.nodes`/`restNodes`) is treated as effectively static — set\n * once via `setNodes` — so the map is bounded. If a host is ever removed from the\n * list at runtime its stale entry is simply ignored (never re-surfaced) and is a\n * negligible, bounded amount of memory.\n */\n private pickReprobeCandidate(healthy: string[], now: number): string | undefined {\n const threshold = now - LATENCY_REPROBE_MS\n let cand: string | undefined\n let candTouch = Infinity\n for (const n of healthy) {\n const h = this.getOrCreate(n)\n const touch = Math.max(h.latencyUpdatedAt, h.lastProbeAt)\n if (touch <= threshold && touch < candTouch) {\n cand = n\n candTouch = touch\n }\n }\n if (cand) this.getOrCreate(cand).lastProbeAt = now\n return cand\n }\n}\n\n// Exported for the co-located specs only (asserting the call sites' effect on\n// health). Not re-exported by hive-tx/index.ts, so NOT part of the public API.\n// @internal\nexport const rpcHealthTracker = new NodeHealthTracker()\n// @internal\nexport const restHealthTracker = new NodeHealthTracker()\n\n// ── Hedged-request budget ────────────────────────────────────────────────────\n\n/**\n * Token bucket bounding hedged (duplicated) read requests to a fraction of\n * overall traffic. A hedge spends 1 token; every un-hedged success refills\n * `config.resilience.hedgeRefillPerSuccess` (default 0.1 ⇒ steady-state hedge\n * rate ≤ ~9% of successful traffic, with bursts up to `hedgeBucketCapacity`).\n * The self-limiting property this buys: under pool-wide slowness nearly every\n * request wants to hedge while successes (the refills) stagnate, so the bucket\n * drains and hedging auto-disables instead of doubling load into public-node\n * rate limits — the standard hedged-request guard (cf. gRPC's hedging throttle;\n * Dean & Barroso, \"The Tail at Scale\"). One instance per process shared across\n * concurrent calls; plain synchronous mutation is race-free on the JS event\n * loop. Reads config live so runtime tuning via `setResilience` applies.\n * @internal Exported for testing only.\n */\nexport class HedgeBudget {\n private tokens = config.resilience.hedgeBucketCapacity\n\n trySpend(): boolean {\n this.clamp()\n // Epsilon guards fractional-refill float accumulation (10 × 0.1 < 1 in FP64).\n if (this.tokens >= 1 - 1e-9) {\n this.tokens -= 1\n return true\n }\n return false\n }\n\n refill(): void {\n this.clamp()\n this.tokens = Math.min(\n config.resilience.hedgeBucketCapacity,\n this.tokens + config.resilience.hedgeRefillPerSuccess\n )\n }\n\n /** Capacity may be lowered at runtime; never let stored tokens exceed it. */\n private clamp(): void {\n if (this.tokens > config.resilience.hedgeBucketCapacity) {\n this.tokens = config.resilience.hedgeBucketCapacity\n }\n }\n\n /** @internal test hook */\n get available(): number {\n return this.tokens\n }\n\n /** @internal test hook */\n reset(tokens = config.resilience.hedgeBucketCapacity): void {\n this.tokens = tokens\n }\n}\n\n// @internal — exported for the co-located spec only, like the trackers above.\nexport const rpcHedgeBudget = new HedgeBudget()\n\n/**\n * Per-attempt timeout for a read call. A node profiled for THIS profile key\n * (full RPC method / REST api+endpoint template) is given `factor × EWMA` —\n * floored (≥2s) so a moderate spike on a fast call is not cut off, and capped\n * at the caller's ceiling so this can only ever *shorten* the wait. The\n * effect: a node running far above its own baseline for this exact kind of\n * call is abandoned early and failover starts in seconds instead of the full\n * fixed window.\n *\n * Two deliberate exclusions:\n * - `explicit` callers (who passed a timeout argument) keep exactly what they\n * asked for — the documented meaning of the parameter is preserved, and a\n * consumer who knows their call is heavy is never second-guessed.\n * - The profile is per (node, full method) with NO fallback to the node's\n * mixed global EWMA or even the API-prefix average: a baseline dominated by\n * cheap `condenser_api.get_accounts` calls must not set the deadline for a\n * heavy `condenser_api.get_account_history`. An unprofiled (node, method)\n * pair keeps the caller's timeout unchanged (cold start == old behavior).\n */\nfunction adaptiveAttemptTimeout(\n tracker: NodeHealthTracker,\n node: string,\n profileKey: string,\n callerTimeout: number,\n explicit: boolean\n): number {\n const r = config.resilience\n if (!r.adaptiveTimeout || explicit) return callerTimeout\n const ewma = tracker.getUsableLatencyMs(node, profileKey)\n if (ewma === undefined) return callerTimeout\n // EWMAs are fractional, but the result feeds AbortSignal.timeout(), which\n // Node rejects with ERR_OUT_OF_RANGE for non-integer delays (browsers coerce).\n return Math.ceil(\n Math.min(callerTimeout, Math.max(r.adaptiveTimeoutFloorMs, r.adaptiveTimeoutFactor * ewma))\n )\n}\n\n// ── Internal helpers ────────────────────────────────────────────────────────\n\n/** Record a caught error on the health tracker (handles NodeError to avoid double-counting). */\nfunction recordError(tracker: NodeHealthTracker, node: string, e: any, api?: string): void {\n if (e instanceof NodeError) {\n if (e.isRateLimit) {\n // 0 → no usable Retry-After → let recordRateLimit apply escalating backoff.\n tracker.recordRateLimit(node, e.rateLimitMs || undefined)\n } else {\n tracker.recordFailure(node, api)\n }\n } else if (e instanceof RPCError) {\n // RPC-level errors are API-specific (e.g., disabled API)\n tracker.recordFailure(node, api)\n } else {\n // Transport-level failures (DNS, TLS, timeout) affect the whole node\n tracker.recordFailure(node)\n }\n}\n\n/**\n * Passively extract head_block_number from known RPC responses\n * (e.g. `condenser_api.get_dynamic_global_properties`, `database_api.get_dynamic_global_properties`).\n * Silently ignores responses without that shape.\n */\nfunction tryRecordHeadBlock(\n tracker: NodeHealthTracker,\n node: string,\n method: string,\n result: any\n): void {\n if (!result || typeof result !== 'object') return\n if (!method.includes('get_dynamic_global_properties')) return\n const block = (result as any).head_block_number\n if (typeof block === 'number') {\n tracker.recordHeadBlock(node, block)\n }\n}\n\n// ── AbortSignal helpers (browser fallbacks) ─────────────────────────────────\n\n/**\n * Build a TimeoutError \"reason\" for an aborted signal.\n * Prefers the standard `DOMException` when available. Runtimes that ship\n * `AbortController` without `DOMException` (notably React Native / Hermes,\n * old Node < 17) fall back to a plain Error tagged with `name: 'TimeoutError'`\n * — which is what consumers actually check on `signal.reason`.\n */\nfunction createTimeoutReason(): Error {\n if (typeof DOMException !== 'undefined') {\n return new DOMException('The operation was aborted due to timeout', 'TimeoutError')\n }\n const err = new Error('The operation was aborted due to timeout')\n err.name = 'TimeoutError'\n return err\n}\n\n/** AbortSignal.timeout polyfill for pre-Chrome 103 / pre-Safari 16.4.\n * Returns { signal, cleanup } — caller must invoke cleanup() on success\n * to clear the dangling timer. */\nfunction createTimeoutSignal(ms: number): { signal: AbortSignal; cleanup: () => void } {\n // Node's AbortSignal.timeout throws ERR_OUT_OF_RANGE on fractional delays\n // (browsers coerce them), so guard every caller here.\n ms = Math.ceil(ms)\n if (typeof AbortSignal.timeout === 'function') {\n return { signal: AbortSignal.timeout(ms), cleanup: () => {} }\n }\n const controller = new AbortController()\n const timer = setTimeout(() => controller.abort(createTimeoutReason()), ms)\n return { signal: controller.signal, cleanup: () => clearTimeout(timer) }\n}\n\n/** AbortSignal.any polyfill for pre-Chrome 116 / pre-Safari 17.4.\n * Returns { signal, cleanup } — caller must invoke cleanup() on success\n * to remove listeners from the input signals (prevents leaks when the\n * same long-lived signal is reused across many callRPC invocations). */\nfunction mergeSignals(\n primary: AbortSignal,\n secondary?: AbortSignal\n): { signal: AbortSignal; cleanup: () => void } {\n if (!secondary) return { signal: primary, cleanup: () => {} }\n if (typeof AbortSignal.any === 'function') {\n return { signal: AbortSignal.any([primary, secondary]), cleanup: () => {} }\n }\n // Fallback: controller that aborts with the winning signal's reason\n const controller = new AbortController()\n if (primary.aborted) {\n controller.abort(primary.reason)\n return { signal: controller.signal, cleanup: () => {} }\n }\n if (secondary.aborted) {\n controller.abort(secondary.reason)\n return { signal: controller.signal, cleanup: () => {} }\n }\n\n const onPrimaryAbort = () => controller.abort(primary.reason)\n const onSecondaryAbort = () => controller.abort(secondary.reason)\n primary.addEventListener('abort', onPrimaryAbort, { once: true })\n secondary.addEventListener('abort', onSecondaryAbort, { once: true })\n\n const cleanup = () => {\n primary.removeEventListener('abort', onPrimaryAbort)\n secondary.removeEventListener('abort', onSecondaryAbort)\n }\n return { signal: controller.signal, cleanup }\n}\n\n/**\n * Low-level JSON-RPC call to a single node. No failover.\n * Throws RPCError for blockchain rejections, NodeError for HTTP 429/5xx,\n * and generic Error for other transport failures.\n * @param shouldRetry - If true, retries once on the same node for transient errors.\n */\nconst jsonRPCCall = async (\n url: string,\n method: string,\n params: any,\n timeout = config.timeout,\n shouldRetry = false,\n externalSignal?: AbortSignal\n) => {\n const id = Math.floor(Math.random() * 100_000_000)\n const body = {\n jsonrpc: '2.0',\n method,\n params,\n id\n }\n // Merge the per-call timeout with any external abort signal (e.g., SSR\n // request cancellation). Either one firing cancels the fetch.\n // Fallbacks for browsers without AbortSignal.timeout (pre-Chrome 103)\n // or AbortSignal.any (pre-Chrome 116).\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(timeout)\n const { signal, cleanup: cleanupMerge } = mergeSignals(tSignal, externalSignal)\n const cleanup = () => {\n cleanupTimeout()\n cleanupMerge()\n }\n\n try {\n const res = await fetch(url, {\n method: 'POST',\n body: JSON.stringify(body),\n headers: { 'Content-Type': 'application/json', ...serverIdentityHeaders() },\n signal\n })\n\n // Handle HTTP-level errors before parsing JSON.\n // Throw NodeError so callers can record health exactly once.\n if (res.status === 429) {\n throw new NodeError(url, `HTTP 429 Rate Limited`, {\n rateLimitMs: parseRetryAfterMs(res.headers.get('Retry-After')),\n isRateLimit: true\n })\n }\n // Any other 5xx is a node-level failure. Common cases:\n // 502 Bad Gateway — upstream HAF/jussi down\n // 503 Service Unavail — node draining / maintenance\n // 504 Gateway Timeout — slow upstream\n // 520-530 — Cloudflare interstitials (1033 tunnel error → 530)\n // Without this branch, the HTML error-page body would fall into res.json()\n // and throw a generic SyntaxError downstream, making failover guess at\n // whether the request reached the node.\n if (res.status >= 500 && res.status < 600) {\n throw new NodeError(url, `HTTP ${res.status} from ${url}`)\n }\n\n const result = (await res.json()) as CallResponse\n if (\n !result ||\n typeof result.id === 'undefined' ||\n result.id !== id ||\n result.jsonrpc !== '2.0'\n ) {\n throw new Error('JSONRPC id mismatch')\n }\n if ('result' in result) {\n return result.result\n }\n if ('error' in result) {\n const e = result.error\n if ('message' in e && 'code' in e) {\n throw new RPCError(e)\n }\n throw result.error\n }\n // No result and no error?\n throw result\n } catch (e) {\n if (e instanceof RPCError) {\n throw e\n }\n // NodeError should not be retried on the same node - it's an HTTP status issue\n if (e instanceof NodeError) {\n throw e\n }\n if (externalSignal?.aborted) {\n throw e\n }\n if (shouldRetry) {\n return jsonRPCCall(url, method, params, timeout, false, externalSignal)\n }\n throw e\n } finally {\n cleanup()\n }\n}\n\n/** Small jitter delay between failover attempts to prevent thundering herd. */\nfunction jitterDelay(): Promise {\n return sleep(50 + Math.random() * 50)\n}\n\n// ── Hedged read attempt ─────────────────────────────────────────────────────\n\n/**\n * One hedged READ attempt: start the primary node, and if it is still pending\n * after `max(hedgeDelayFloorMs, hedgeDelayFactor × primary EWMA)`, race a\n * duplicate against the next healthy untried node. First success wins and the\n * loser is aborted. Resolution rules (mirroring the sequential path exactly):\n *\n * - External abort (caller cancelled): reject immediately, record nothing.\n * - Authoritative RPCError (non-node-level blockchain rejection) from either\n * leg: an answer, not a fault — abort the other leg, reject immediately.\n * - Failover-class failure: record health for that leg (recordError +\n * recordSlowFailure — identical to the sequential catch); if the other leg\n * is still running, keep waiting on it; when both have failed, reject with\n * the last error so the outer loop continues its normal failover.\n * - Primary fails BEFORE the hedge fires: reject immediately (plain failover —\n * hedging only ever races slowness, never a node that failed fast).\n *\n * Health/budget bookkeeping on a win: winner records a normal success sample;\n * if the hedge won, the primary gets a censored latency sample (elapsed at\n * abort — a lower bound on its true latency) so repeated hedge-wins reorder\n * the pool; if the primary won without the hedge ever firing, the budget\n * refills. An aborted hedge leg records nothing (it was never given a fair\n * run). Broadcasts NEVER go through this path (double-broadcast risk) — it is\n * wired into `callRPC` only.\n */\nfunction hedgedRpcAttempt(opts: {\n method: string\n params: any[] | object\n api: string\n primary: string\n /**\n * Pre-selected healthy untried peers (up to a few, in rank order). The\n * actual hedge target is drawn uniformly at random at FIRE time: with many\n * concurrent callers behind one origin IP, always duplicating to the single\n * next-ranked node would concentrate the whole hedge stream on it and could\n * trip its per-IP rate limit — spreading over the top candidates keeps the\n * same budget bound without a single-target hotspot. Marked tried only if\n * the hedge actually fires.\n */\n hedgePool: string[]\n callerTimeout: number\n /** Caller passed an explicit timeout — adaptive shortening is disabled. */\n explicitTimeout: boolean\n /** The call's wall-clock deadline: a hedge must not START past it (it would\n * be a brand-new request the outer loop itself would refuse to start). */\n deadlineAt: number\n externalSignal?: AbortSignal\n /** Lets the outer loop add the hedge node to its tried-set at fire time. */\n onHedgeFired: (node: string) => void\n /** Caller-supplied payload validation — see callRPC's `validate` param. */\n validate?: (result: unknown) => boolean\n}): Promise {\n const {\n method,\n params,\n api,\n primary,\n hedgePool,\n callerTimeout,\n explicitTimeout,\n deadlineAt,\n externalSignal,\n onHedgeFired,\n validate\n } = opts\n return new Promise((resolve, reject) => {\n let done = false\n let pendingLegs = 0\n let hedgeFired = false\n /** The primary settled on its own (success OR failure). A censored latency\n * sample is only valid for a primary that was still in flight when the\n * hedge won — recording one after the primary already failed would\n * fabricate a second sample for a request whose outcome was recorded. */\n let primarySettled = false\n let lastError: any\n let hedgeTimer: ReturnType | undefined\n let primaryStart = 0\n const controllers: AbortController[] = []\n\n /** Settle exactly once: clear the timer, abort every other in-flight leg\n * (their rejections land behind the `done` guard and are dropped). */\n const finish = (settle: () => void) => {\n if (done) return\n done = true\n if (hedgeTimer !== undefined) {\n clearTimeout(hedgeTimer)\n hedgeTimer = undefined\n }\n for (const c of controllers) {\n if (!c.signal.aborted) c.abort()\n }\n settle()\n }\n\n const startLeg = (node: string, isHedge: boolean) => {\n pendingLegs++\n const controller = new AbortController()\n controllers.push(controller)\n // Merge our cancellation handle with the caller's signal; jsonRPCCall\n // merges the result with its own per-attempt timeout signal.\n const merged = mergeSignals(controller.signal, externalSignal)\n const legTimeout = adaptiveAttemptTimeout(\n rpcHealthTracker,\n node,\n method,\n callerTimeout,\n explicitTimeout\n )\n const start = Date.now()\n if (!isHedge) primaryStart = start\n jsonRPCCall(node, method, params, legTimeout, false, merged.signal)\n .then((res) => {\n merged.cleanup()\n pendingLegs--\n if (!isHedge) primarySettled = true\n if (done) return\n if (validate && !validate(res)) {\n // Well-formed envelope, impossible payload: a node fault the\n // HTTP/JSON-RPC layers cannot see. Same handling as the catch\n // path — record the fault against this node's API health, never\n // record a success for a lie, and let the other leg still win.\n rpcHealthTracker.recordDefectiveResponse(node, api)\n lastError = new Error(\n `[hive-tx] response validation failed for ${method} from ${node}`\n )\n if (!isHedge && !hedgeFired) {\n finish(() => reject(lastError))\n return\n }\n if (pendingLegs === 0) {\n finish(() => reject(lastError))\n }\n return\n }\n rpcHealthTracker.recordSuccess(node, api, Date.now() - start, method)\n tryRecordHeadBlock(rpcHealthTracker, node, method, res)\n if (isHedge) {\n if (!primarySettled) {\n // Primary lost the race while still in flight: censored sample\n // (lower bound of its true latency) so the ranker learns without\n // marking it as failed. A primary that already failed was fully\n // recorded by its own catch — nothing more to record.\n rpcHealthTracker.recordCensoredLatency(primary, Date.now() - primaryStart, method)\n }\n } else if (!hedgeFired) {\n rpcHedgeBudget.refill()\n }\n finish(() => resolve(res as T))\n })\n .catch((e) => {\n merged.cleanup()\n pendingLegs--\n if (!isHedge) primarySettled = true\n if (done) return // aborted loser (or late settle) — already resolved\n if (externalSignal?.aborted) {\n // Caller cancelled — bail without recording (mirrors sequential path).\n finish(() => reject(e))\n return\n }\n if (e instanceof RPCError && !isNodeLevelRPCError(e.code, e.message)) {\n // Authoritative rejection: an answer, not a node fault.\n finish(() => reject(e))\n return\n }\n // Failover-class failure — record exactly as the sequential catch does.\n recordError(rpcHealthTracker, node, e, api)\n rpcHealthTracker.recordSlowFailure(node, Date.now() - start, method)\n lastError = e\n if (!isHedge && !hedgeFired) {\n // Primary failed fast, before the hedge delay: plain failover.\n finish(() => reject(e))\n return\n }\n if (pendingLegs === 0) {\n finish(() => reject(lastError))\n }\n // else: the other leg is still in flight and may still win.\n })\n }\n\n startLeg(primary, false)\n\n // Delay from the primary's per-method profile (the eligibility gate\n // ensured it is usable); a raced expiry just means the floor applies. It is\n // then clamped BELOW the primary's own attempt window: for a heavy API\n // (EWMA > window/hedgeDelayFactor) the un-clamped delay would land past\n // the primary's timeout-abort — which clears this timer — so hedging would\n // silently never fire for exactly the heavy tail it exists to protect.\n // Firing at ~80% of the window keeps the duplicate meaningful (it starts\n // while the primary is still allowed to win) for every profile shape.\n const ewma = rpcHealthTracker.getUsableLatencyMs(primary, method) ?? 0\n const primaryWindow = adaptiveAttemptTimeout(\n rpcHealthTracker,\n primary,\n method,\n callerTimeout,\n explicitTimeout\n )\n const delay = Math.min(\n Math.max(config.resilience.hedgeDelayFloorMs, config.resilience.hedgeDelayFactor * ewma),\n 0.8 * primaryWindow\n )\n hedgeTimer = setTimeout(() => {\n hedgeTimer = undefined\n if (done || externalSignal?.aborted) return\n // Never START a duplicate past the call's wall-clock deadline — it would\n // extend the hold and spend a token on work the outer loop would refuse.\n if (Date.now() >= deadlineAt) return\n // Candidates were selected before the delay elapsed — re-check health at\n // fire time (one may have been rate-limited meanwhile) BEFORE spending a\n // token, so a stale pool costs nothing. Random draw spreads concurrent\n // callers' duplicates across the top candidates (see hedgePool doc).\n const live = hedgePool.filter((n) => rpcHealthTracker.isNodeHealthy(n, api))\n if (live.length === 0) return\n const target = live[Math.floor(Math.random() * live.length)]\n // Budget check at fire time, not arm time: only actual duplicates spend.\n if (!rpcHedgeBudget.trySpend()) return\n hedgeFired = true\n onHedgeFired(target)\n startLeg(target, true)\n }, delay)\n })\n}\n\n// ── Public API: callRPC ─────────────────────────────────────────────────────\n\n/**\n * Makes API calls to Hive blockchain nodes with automatic retry and failover support.\n * Uses per-request retry counters, node health tracking, jitter between retries,\n * and HTTP status awareness (429 rate limiting, 503).\n *\n * If the current node fails, it will automatically try the next healthy node.\n * When all nodes have been tried, wraps around to give earlier nodes another chance\n * until the full retry budget (config.retry) is exhausted.\n * RPCErrors (valid blockchain rejections) are never retried.\n *\n * @param method - The API method name (e.g., 'condenser_api.get_accounts')\n * @param params - Parameters for the API method as array or object\n * @param timeout - Request timeout in milliseconds (default: config.timeout)\n * @param retry - Maximum number of retry attempts (default: config.retry). The\n * wall-clock budget (`config.resilience.totalBudgetFactor` × timeout) may end\n * the failover walk before the retry count is exhausted.\n * @param validate - Optional payload validation. Some nodes return a valid\n * JSON-RPC envelope carrying an impossible payload (e.g. account rows with\n * metadata fields stripped to \"\"), which no transport-level check can catch.\n * When the callback returns false the response is treated as a node fault:\n * recorded against that node's per-API health (repeat offenders get an API\n * cooldown and are deprioritized) and the failover walk continues to the\n * next node instead of returning the lie. Keep validators conservative —\n * reject only payloads the caller KNOWS cannot be correct, or a strict\n * validator turns every node's honest answer into a failover storm.\n * @returns Promise resolving to the API response\n * @throws {RPCError} On blockchain-level errors (bad params, missing authority, etc.)\n * @throws {Error} If all retry attempts fail\n *\n * @example\n * ```typescript\n * import { callRPC } from 'hive-tx'\n *\n * // Get account information\n * const accounts = await callRPC('condenser_api.get_accounts', [['alice']])\n *\n * // Custom timeout and retry settings\n * const data = await callRPC('condenser_api.get_content', ['alice', 'test-post'], 10_000, 5)\n * ```\n */\nexport const callRPC = async (\n method: string,\n params: any[] | object = [],\n timeout?: number,\n retry = config.retry,\n signal?: AbortSignal,\n validate?: (result: unknown) => boolean\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an array')\n }\n if (config.nodes.length === 0) {\n throw new Error('config.nodes is empty')\n }\n // An explicit timeout argument is authoritative: adaptive shortening only\n // applies to callers who left the window to the SDK (timeout === undefined),\n // so `callRPC(m, p, 10_000)` still means \"give each attempt 10s\" exactly.\n const explicitTimeout = timeout !== undefined\n const ceiling = timeout ?? config.timeout\n const api = apiOf(method)\n // Wall-clock budget across ALL failover attempts. Without it the worst case\n // is (retry+1) × timeout ≈ 30s — exactly the render pile-up this feature\n // exists to prevent — whenever the WHOLE pool is slow (adaptive timeouts\n // rise with the EWMAs and hedging self-throttles, both by design). The\n // deadline is checked before each new attempt AND before a hedge fires; an\n // in-flight attempt still finishes its own window, so the true ceiling is\n // deadline + one attempt window (up to ~2× the window if a hedge fired just\n // before the deadline and the attempt then waits out the hedge leg too).\n // Note this budget also bounds callers who passed an explicit `retry`: the\n // wall clock, not the attempt count, is the stronger promise here.\n // Server-side read-through proxy, when configured and the method is on its\n // allowlist: one call, and on any miss the node loop below runs unchanged.\n // It runs BEFORE the node deadline is taken, so a slow proxy costs its own\n // timeout and nothing of the failover budget the nodes get today.\n // Snapshot: the binding can be cleared by the host while this call awaits.\n const proxy = serverRpcProxy\n if (proxy && isNodeRuntime && proxy.methodSet.has(method)) {\n if (Date.now() < proxyOpenUntil) {\n rpcProxyStats.skipped++\n } else {\n try {\n const served = await proxyRpcCall(proxy, method, params, ceiling, signal, validate)\n rpcProxyStats.served++\n proxyConsecutiveMisses = 0\n return served\n } catch (e: unknown) {\n if (signal?.aborted) throw e\n rpcProxyStats.fallback++\n const reason: string = e instanceof ProxyMiss ? e.reason : 'transport'\n rpcProxyStats.fallbackByReason[reason] = (rpcProxyStats.fallbackByReason[reason] ?? 0) + 1\n if (reason === 'rpcerror') {\n // A relayed node error is a healthy proxy answer: it closes the\n // count like a served call. Crawler-made feed URLs produce these in\n // runs, and counting them opened the breaker on a working proxy.\n proxyConsecutiveMisses = 0\n } else if (++proxyConsecutiveMisses >= proxy.failureThreshold) {\n proxyOpenUntil = Date.now() + proxy.cooldownMs\n proxyConsecutiveMisses = 0\n }\n }\n }\n }\n\n const deadline = Date.now() + config.resilience.totalBudgetFactor * ceiling\n\n // Track nodes tried in the current round. When all nodes have been tried,\n // clear the set to allow a second round (wrap-around) using the retry budget.\n const triedInRound = new Set()\n let lastError: any\n\n for (let attempt = 0; attempt <= retry; attempt++) {\n if (attempt > 0 && Date.now() >= deadline) {\n break\n }\n // Re-evaluate node order each attempt so health changes are respected.\n // Pass api so nodes with an API-specific cooldown are deprioritized.\n const orderedNodes = rpcHealthTracker.getOrderedNodes(config.nodes, api)\n // Pick the healthiest untried node. If all tried, start a new round.\n let node = orderedNodes.find((n) => !triedInRound.has(n))\n if (!node) {\n triedInRound.clear()\n node = orderedNodes[0]\n }\n triedInRound.add(node)\n\n // Hedge eligibility for THIS attempt: opted in, the primary has a usable\n // latency profile for this exact method (so the hedge delay is grounded in\n // data — cold starts stay sequential), and healthy untried peers exist.\n let hedgePool: string[] = []\n if (\n config.resilience.hedge &&\n rpcHealthTracker.getUsableLatencyMs(node, method) !== undefined\n ) {\n hedgePool = orderedNodes\n .filter((n) => !triedInRound.has(n) && rpcHealthTracker.isNodeHealthy(n, api))\n .slice(0, 3)\n }\n\n if (hedgePool.length > 0) {\n try {\n // All health/budget recording happens inside the hedged attempt —\n // the catch below must NOT record again (unlike the sequential path).\n return await hedgedRpcAttempt({\n method,\n params,\n api,\n primary: node,\n hedgePool,\n callerTimeout: ceiling,\n explicitTimeout,\n deadlineAt: deadline,\n externalSignal: signal,\n onHedgeFired: (n) => triedInRound.add(n),\n validate\n })\n } catch (e: any) {\n if (e instanceof RPCError && !isNodeLevelRPCError(e.code, e.message)) {\n throw e\n }\n if (signal?.aborted) {\n throw e\n }\n lastError = e\n if (attempt < retry) {\n await jitterDelay()\n }\n continue\n }\n }\n\n const callStart = Date.now()\n try {\n const res = await jsonRPCCall(\n node,\n method,\n params,\n adaptiveAttemptTimeout(rpcHealthTracker, node, method, ceiling, explicitTimeout),\n false,\n signal\n )\n if (validate && !validate(res)) {\n // Well-formed envelope, impossible payload: a node fault the\n // HTTP/JSON-RPC layers cannot see. Count it against this node's API\n // health (never record a success or refill the hedge budget for a\n // lie) and fail over to the next node.\n rpcHealthTracker.recordDefectiveResponse(node, api)\n lastError = new Error(`[hive-tx] response validation failed for ${method} from ${node}`)\n if (attempt < retry) {\n await jitterDelay()\n }\n continue\n }\n rpcHealthTracker.recordSuccess(node, api, Date.now() - callStart, method)\n // An un-hedged success is what earns hedge budget back (see HedgeBudget).\n rpcHedgeBudget.refill()\n tryRecordHeadBlock(rpcHealthTracker, node, method, res)\n return res as T\n } catch (e: any) {\n // RPCErrors: distinguish node-level failures from genuine blockchain rejections.\n // Node-level errors (e.g. -32602 \"Unable to parse endpoint data\" from a sick\n // HAF/jussi backend) should failover; real rejections (bad params, missing\n // authority, etc.) propagate immediately.\n if (e instanceof RPCError) {\n if (!isNodeLevelRPCError(e.code, e.message)) {\n throw e\n }\n // Node-level RPC error — record failure and fall through to failover\n }\n // External abort — stop retrying immediately\n if (signal?.aborted) {\n throw e\n }\n recordError(rpcHealthTracker, node, e, api)\n // A genuinely slow failure (timeout/abort/slow-5xx) is also a latency signal so\n // a node that 200s-but-too-slow or aborts at the timeout is demoted by the\n // ranker, not only by the (transient) failure gate. Measured elapsed, never a\n // constant; recordSlowFailure ignores instant (down-node) failures.\n rpcHealthTracker.recordSlowFailure(node, Date.now() - callStart, method)\n lastError = e\n\n // Add jitter before trying next node\n if (attempt < retry) {\n await jitterDelay()\n }\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callRPC for broadcasts ──────────────────────────────────────\n\n/**\n * Broadcast-safe RPC call. Only retries on pre-connection errors where the\n * request definitively never reached the server (ECONNREFUSED, ENOTFOUND, etc.).\n * On timeouts, HTTP errors, or any ambiguous failure, throws immediately to\n * prevent double-broadcasting transactions.\n *\n * Tries each node once (no wrap-around) since broadcast retries are dangerous.\n *\n * @internal Used by Transaction.broadcast()\n */\nexport const callRPCBroadcast = async (\n method: string,\n params: any[] | object = [],\n timeout = config.broadcastTimeout,\n signal?: AbortSignal\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an array')\n }\n if (config.nodes.length === 0) {\n throw new Error('config.nodes is empty')\n }\n const api = apiOf(method)\n // Track which nodes we've already tried - broadcasts must never retry the same node\n const triedNodes = new Set()\n let lastError: any\n\n for (let attempt = 0; attempt < config.nodes.length; attempt++) {\n // Re-evaluate order each attempt so health changes are respected\n const orderedNodes = rpcHealthTracker.getOrderedNodes(config.nodes, api)\n const node = orderedNodes.find((n) => !triedNodes.has(n))\n if (!node) break\n triedNodes.add(node)\n if (signal?.aborted) {\n throw new Error('Aborted')\n }\n try {\n const res = await jsonRPCCall(node, method, params, timeout, false, signal)\n // Deliberately no latency sample for broadcasts: broadcast_transaction_synchronous\n // blocks for block inclusion (~1.5–3s+) regardless of the node's read speed, so\n // feeding it into the shared read EWMA would wrongly demote a fast node for reads.\n // The same nodes are profiled by callRPC read traffic, so a genuinely slow node is\n // still demoted there.\n rpcHealthTracker.recordSuccess(node, api)\n return res as T\n } catch (e: any) {\n // RPCErrors are valid blockchain rejections - never retry\n if (e instanceof RPCError) {\n throw e\n }\n if (signal?.aborted) {\n throw e\n }\n recordError(rpcHealthTracker, node, e, api)\n lastError = e\n\n // Broadcast safety: only fail over when the request is safe to re-send.\n // `broadcastOperations` signs the tx exactly once and `callRPCBroadcast`\n // reuses that signed payload across nodes, so any case where the next\n // node would dedupe by trx_id is fine. RPCErrors (real blockchain\n // rejections) propagate immediately — see isBroadcastSafeToRetry.\n if (!isBroadcastSafeToRetry(e)) {\n throw e\n }\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callREST ────────────────────────────────────────────────────\n\nconst apiMethods: Record = {\n balance: '/balance-api',\n hafah: '/hafah-api',\n hafbe: '/hafbe-api',\n hivemind: '/hivemind-api',\n hivesense: '/hivesense-api',\n reputation: '/reputation-api',\n 'nft-tracker': '/nft-tracker-api',\n hafsql: '/hafsql',\n status: '/status-api'\n}\n\n/**\n * Makes REST API calls to Hive blockchain REST endpoints with automatic retry and failover support.\n * Uses per-request retry counters, node health tracking, and timeout support.\n * Wraps around the node list to honor the full retry budget.\n *\n * @template Api - The REST API method type (e.g., 'balance', 'hafah', 'hivemind', etc.)\n * @template P - The endpoint path type for the specified API\n *\n * @param api - The REST API method name to call\n * @param endpoint - The specific endpoint path within the API\n * @param params - Optional parameters for path and query string replacement\n * @param timeout - Request timeout in milliseconds (default: config.timeout)\n * @param retry - Number of retry attempts before throwing an error (default:\n * config.retry). The wall-clock budget (`config.resilience.totalBudgetFactor`\n * × timeout) may end the failover walk before the retry count is exhausted.\n *\n * @returns Promise resolving to the API response data with proper typing\n * @throws Error if all retry attempts fail\n *\n * @example\n * ```typescript\n * import { callREST } from 'hive-tx'\n *\n * // Get account balance\n * const balance = await callREST('balance', '/accounts/{account-name}/balances', { \"account-name\": 'alice' })\n *\n * // Custom timeout and retry settings\n * const data = await callREST('status', '/status', undefined, 10_000, 3)\n * ```\n */\nexport async function callREST(\n api: APIMethods,\n endpoint: string,\n params?: Record,\n timeout?: number,\n retry = config.retry,\n signal?: AbortSignal\n): Promise {\n if (!Array.isArray(config.restNodes)) {\n throw new Error('config.restNodes is not an array')\n }\n if (config.restNodes.length === 0) {\n throw new Error('config.restNodes is empty')\n }\n // Same contract as callRPC: an explicit timeout argument is authoritative\n // (no adaptive shortening), and a wall-clock deadline bounds the total\n // failover walk when the whole pool is slow.\n const explicitTimeout = timeout !== undefined\n const ceiling = timeout ?? config.timeout\n const deadline = Date.now() + config.resilience.totalBudgetFactor * ceiling\n // Latency-profile key: api + endpoint TEMPLATE (pre-substitution, so the\n // cardinality is code-defined) — a cheap endpoint's baseline must not set\n // the deadline for a heavy one within the same REST api.\n const restProfileKey = `${api}:${endpoint}`\n // Per-API node override: an API served by only a subset of nodes (e.g.\n // hivesense) uses its own capable-host list so the small retry budget and\n // cold starts aren't wasted on nodes that 404/503 it. Any API without an\n // override (or with an empty one) falls back to the generic restNodes.\n const apiNodes =\n config.restNodesByApi?.[api]?.length\n ? config.restNodesByApi[api]!\n : config.restNodes\n const triedInRound = new Set()\n let lastError: any\n // Track whether the error was already recorded by the HTTP status handler\n let alreadyRecorded = false\n\n for (let attempt = 0; attempt <= retry; attempt++) {\n if (attempt > 0 && Date.now() >= deadline) {\n break\n }\n // Re-evaluate node order each attempt so health changes are respected.\n // Pass api so per-API cooldowns are respected.\n const orderedNodes = restHealthTracker.getOrderedNodes(apiNodes, api)\n let node = orderedNodes.find((n) => !triedInRound.has(n))\n if (!node) {\n triedInRound.clear()\n node = orderedNodes[0]\n }\n triedInRound.add(node)\n const baseUrl = node + apiMethods[api]\n let path = endpoint as string\n const paramObj = params || ({} as Record)\n const processedPathParams = new Set()\n\n // Replace path params ONLY\n Object.entries(paramObj).forEach(([key, value]) => {\n if (path.includes(`{${key}}`)) {\n path = path.replace(`{${key}}`, encodeURIComponent(String(value)))\n processedPathParams.add(key)\n }\n })\n const url = new URL(baseUrl + path)\n // Add ONLY remaining params as query (if any)\n Object.entries(paramObj).forEach(([key, value]) => {\n if (!processedPathParams.has(key)) {\n if (Array.isArray(value)) {\n value.forEach((v) => url.searchParams.append(key, String(v)))\n } else {\n url.searchParams.set(key, String(value))\n }\n }\n })\n\n if (signal?.aborted) {\n throw new Error('Aborted')\n }\n alreadyRecorded = false\n // Adaptive per-attempt timeout (see adaptiveAttemptTimeout): a profiled\n // REST node is abandoned at factor×EWMA instead of the full fixed window.\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(\n adaptiveAttemptTimeout(restHealthTracker, node, restProfileKey, ceiling, explicitTimeout)\n )\n const { signal: restSignal, cleanup: cleanupMerge } = mergeSignals(tSignal, signal)\n const restCleanup = () => { cleanupTimeout(); cleanupMerge() }\n const restCallStart = Date.now()\n try {\n const response = await fetch(url.toString(), {\n signal: restSignal,\n headers: serverIdentityHeaders()\n })\n if (response.status === 404) {\n throw new Error('HTTP 404 - Hint: can happen on wrong params')\n }\n if (response.status === 429) {\n // 0 (no usable Retry-After) → undefined → escalating backoff in recordRateLimit.\n restHealthTracker.recordRateLimit(\n node,\n parseRetryAfterMs(response.headers.get('Retry-After')) || undefined\n )\n alreadyRecorded = true\n throw new Error(`HTTP 429 Rate Limited by ${node}`)\n }\n if (response.status === 503) {\n restHealthTracker.recordFailure(node, api)\n alreadyRecorded = true\n throw new Error(`HTTP 503 Service Unavailable from ${node}`)\n }\n if (!response.ok) {\n restHealthTracker.recordFailure(node, api)\n alreadyRecorded = true\n throw new Error(`HTTP ${response.status} from ${node}`)\n }\n restHealthTracker.recordSuccess(node, api, Date.now() - restCallStart, restProfileKey)\n return response.json() as any\n } catch (e: any) {\n // 404 is not a node issue, don't failover\n if (e?.message?.includes('HTTP 404')) {\n throw e\n }\n // External abort (caller unmounted / React Query cancelled the request) is the\n // client's decision, NOT a node fault. Mirror callRPC: bail before recording any\n // failure or slow-latency sample so a healthy REST node (e.g. an own node) is never\n // demoted by routine navigation/cancellation.\n if (signal?.aborted) {\n throw e\n }\n // Only record if not already recorded by 429/503 handler above\n if (!alreadyRecorded) {\n restHealthTracker.recordFailure(node, api)\n }\n // A slow failure (timeout/abort/slow-5xx — e.g. an own node from a far region) is a\n // latency signal too, so it is demoted by the ranker, not only the failure gate.\n // Measured elapsed; recordSlowFailure floors at LATENCY_SLOW_FAILURE_MS so a fast\n // 404/429 or instant down-node failure is NOT mis-read as \"slow\".\n restHealthTracker.recordSlowFailure(node, Date.now() - restCallStart, restProfileKey)\n lastError = e\n\n if (attempt < retry) {\n await jitterDelay()\n }\n } finally {\n restCleanup()\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callWithQuorum ───────────────────────────────────────────────\n\n/**\n * Make a JSONRPC call with quorum. The method will cross-check the result\n * with `quorum` number of nodes before returning the result.\n * @param method - The API method name (e.g., 'condenser_api.get_accounts')\n * @param params - Parameters for the API method as array or object\n * @param quorum - Default: 2 (recommended)\n */\nexport const callWithQuorum = async (\n method: string,\n params: any[] | object = [],\n quorum = 2,\n signal?: AbortSignal\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an Array')\n }\n if (quorum > config.nodes.length) {\n throw new Error('quorum > config.nodes.length')\n }\n // We call random nodes for better security (Fisher-Yates shuffle)\n const shuffleNodes = (arr: string[]) => {\n const a = [...arr]\n for (let i = a.length - 1; i > 0; i--) {\n const j = Math.floor(Math.random() * (i + 1));\n [a[i], a[j]] = [a[j], a[i]]\n }\n return a\n }\n let allNodes = shuffleNodes(config.nodes)\n let currentBatchSize = Math.min(quorum, allNodes.length)\n let allResults: any[] = []\n while (currentBatchSize > 0 && allNodes.length > 0) {\n // Take next batch of nodes\n const batchNodes = allNodes.splice(0, currentBatchSize)\n const promises: Promise[] = []\n const batchResults: any[] = []\n // Launch batch calls in parallel\n for (let i = 0; i < batchNodes.length; i++) {\n promises.push(\n jsonRPCCall(batchNodes[i], method, params, undefined, true, signal)\n .then((data) => batchResults.push(data))\n .catch(() => {})\n )\n }\n await Promise.all(promises)\n allResults.push(...batchResults)\n // Check for consensus in successful results\n const consensusResult = findConsensus(allResults, quorum)\n if (consensusResult) {\n return consensusResult\n }\n // Prepare next batch\n currentBatchSize = Math.min(quorum, allNodes.length)\n if (currentBatchSize === 0) {\n throw new Error('No more nodes available.')\n }\n }\n throw new Error(\"Couldn't reach quorum.\")\n}\n\nfunction findConsensus(results: any[], quorum: number) {\n const resultGroups = new Map()\n for (const result of results) {\n const key = JSON.stringify(result)\n if (!resultGroups.has(key)) {\n resultGroups.set(key, [])\n }\n resultGroups.get(key)!.push(result)\n }\n const consensusGroup = Array.from(resultGroups.values()).find((group) => group.length >= quorum)\n return consensusGroup ? consensusGroup[0] : null\n}\n","import { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\nimport { PrivateKey } from './helpers/PrivateKey'\nimport {\n OperationName,\n OperationBody,\n TransactionType,\n TransactionStatus,\n BroadcastResult\n} from './types'\nimport { ByteBuffer } from './helpers/ByteBuffer'\nimport { Serializer } from './helpers/serializer'\nimport { sha256 } from '@noble/hashes/sha2.js'\nimport { config } from './config'\nimport { callRPC, callRPCBroadcast, RPCError } from './helpers/call'\nimport { DigestData } from './types'\nimport { sleep } from './helpers/sleep'\n\nconst chainId = hexToBytes(config.chain_id)\n\ninterface TransactionOptions {\n transaction?: TransactionType | Transaction\n /**\n * Transaction expiration in milliseconds (ms) - max 86400000 (24 hours)\n * @default 60_000\n */\n expiration?: number\n}\n\nexport class Transaction {\n transaction?: TransactionType\n\n expiration: number = 60_000\n\n private txId?: string\n\n constructor(options?: TransactionOptions) {\n if (options?.transaction) {\n if (options.transaction instanceof Transaction) {\n this.transaction = options.transaction.transaction\n this.expiration = options.transaction.expiration\n } else {\n this.transaction = options.transaction\n }\n // A transaction built externally (e.g. from a hive-uri signing request)\n // may omit the `signatures` array. sign(), addSignature() and broadcast()\n // all assume it exists, so normalize it here to avoid\n // \"Cannot read property 'push' of undefined\" on sign.\n if (this.transaction && !Array.isArray(this.transaction.signatures)) {\n this.transaction.signatures = []\n }\n this.txId = this.digest().txId\n }\n if (options?.expiration) {\n this.expiration = options.expiration\n }\n }\n\n /**\n * Adds an operation to the transaction. If no transaction exists, creates one first.\n * @template O Operation name type for type safety\n * @param operationName The name/type of the operation to add (e.g., 'transfer', 'vote', 'comment')\n * @param operationBody The operation data/body for the specified operation type\n * @returns Promise that resolves when the operation is added\n * @throws Error if transaction creation fails or global properties cannot be retrieved\n */\n async addOperation(\n operationName: O,\n operationBody: OperationBody\n ): Promise {\n if (!this.transaction) {\n await this.createTransaction(this.expiration)\n }\n this.transaction!.operations.push([operationName, operationBody])\n }\n\n /**\n * Signs the transaction with the provided key(s), supporting both single and multi-signature transactions.\n * For multi-signature, you can sign with all keys at once or sign individually by calling this method multiple times.\n * @param keys Single PrivateKey or array of PrivateKeys to sign the transaction with\n * @returns The signed transaction\n * @throws Error if no transaction exists to sign\n */\n sign(keys: PrivateKey | PrivateKey[]): TransactionType {\n if (!this.transaction) {\n throw new Error('First create a transaction by .addOperation()')\n }\n if (this.transaction) {\n const { digest, txId } = this.digest()\n if (!Array.isArray(keys)) {\n keys = [keys]\n }\n for (const key of keys) {\n const signature = key.sign(digest)\n this.transaction.signatures.push(signature.customToString())\n }\n this.txId = txId\n return this.transaction\n } else {\n throw new Error('No transaction to sign')\n }\n }\n\n /**\n * Broadcasts the signed transaction to the Hive network.\n * Automatically handles retries and duplicate transaction detection.\n * @param checkStatus By default (false) the transaction is not guaranteed to be included in a block.\n * For example the transaction can expire while waiting in mempool.\n * If you pass true here, the function will wait for the transaction to be either included or dropped\n * before returning a result.\n * @returns Promise resolving to broadcast result\n * @throws Error if no transaction exists or transaction is not signed or transaction got rejected\n */\n async broadcast(checkStatus = false): Promise {\n if (!this.transaction) {\n throw new Error(\n 'Attempted to broadcast an empty transaction. Add operations by .addOperation()'\n )\n }\n if (this.transaction.signatures.length === 0) {\n throw new Error(\n 'Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)'\n )\n }\n try {\n await callRPCBroadcast('condenser_api.broadcast_transaction', [this.transaction])\n } catch (e) {\n if (e instanceof RPCError && e.message.includes('Duplicate transaction check failed')) {\n // ignore duplicate transaction error as this can happen when we retry the broadcast\n } else {\n throw e\n }\n }\n if (!this.txId) {\n this.txId = this.digest().txId\n }\n if (!checkStatus) {\n return { tx_id: this.txId, status: 'unknown' }\n }\n // Poll until the transaction reaches a final state or max attempts exceeded.\n // With 60 attempts: delays grow from 1.3s to 19s, total wait ~10 minutes.\n const maxPollAttempts = 60\n await sleep(1000)\n let status = await this.checkStatus()\n let i = 1\n while (\n status?.status !== 'within_irreversible_block' &&\n status?.status !== 'expired_irreversible' &&\n status?.status !== 'too_old' &&\n i < maxPollAttempts\n ) {\n await sleep(1000 + i * 300)\n status = await this.checkStatus()\n i++\n }\n return {\n tx_id: this.txId,\n status: (status?.status ?? 'unknown') as BroadcastResult['status']\n }\n }\n\n /**\n * Returns the transaction digest containing the transaction ID and hash.\n * The digest can be used to verify signatures and for transaction identification.\n * @returns DigestData containing transaction ID and hash\n * @throws Error if no transaction exists\n */\n digest(): DigestData {\n if (!this.transaction) {\n throw new Error('First create a transaction by .addOperation()')\n }\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n const temp = { ...this.transaction }\n try {\n Serializer.Transaction(buffer, temp)\n } catch (cause) {\n throw new Error('Unable to serialize transaction: ' + cause)\n }\n buffer.flip()\n const transactionData = new Uint8Array(buffer.toBuffer())\n const txId = bytesToHex(sha256(transactionData)).slice(0, 40)\n const digest = sha256(new Uint8Array([...chainId, ...transactionData]))\n return { digest, txId }\n }\n\n /**\n * Adds a signature to an already created transaction. Useful when signing with external tools.\n * Multiple signatures can be added one at a time for multi-signature transactions.\n * @param signature The signature string in hex format (must be exactly 130 characters)\n * @returns The transaction with the added signature\n * @throws Error if no transaction exists or signature format is invalid\n */\n addSignature(signature: string): TransactionType {\n if (!this.transaction) {\n throw new Error('First create a transaction by .create(operations)')\n }\n if (typeof signature !== 'string') {\n throw new Error('Signature must be string')\n }\n if (signature.length !== 130) {\n throw new Error('Signature must be 130 characters long')\n }\n this.transaction.signatures.push(signature)\n return this.transaction\n }\n\n /** Get status of this transaction. Usually called internally after broadcasting. */\n async checkStatus(): Promise {\n if (!this.txId) {\n this.txId = this.digest().txId\n }\n return callRPC('transaction_status_api.find_transaction', {\n transaction_id: this.txId,\n expiration: this.transaction?.expiration\n })\n }\n\n /**\n * Creates the transaction structure and initializes it with blockchain data.\n * Retrieves current head block information and sets up reference block data.\n * @private\n * @param expiration Transaction expiration in milliseconds\n */\n private createTransaction = async (expiration: number) => {\n const props = await callRPC('condenser_api.get_dynamic_global_properties', [])\n const bytes = hexToBytes(props.head_block_id)\n const refBlockPrefix = Number(new Uint32Array(bytes.buffer, bytes.byteOffset + 4, 1)[0])\n const expirationIso = new Date(Date.now() + expiration).toISOString().slice(0, -5)\n this.transaction = {\n expiration: expirationIso,\n extensions: [],\n operations: [],\n ref_block_num: props.head_block_number & 0xffff,\n ref_block_prefix: refBlockPrefix,\n signatures: []\n }\n }\n}\n","import bs58 from 'bs58'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { sha256, sha512 } from '@noble/hashes/sha2.js'\nimport { PublicKey } from './PublicKey'\nimport { Signature } from './Signature'\nimport { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\nexport type KeyRole = 'owner' | 'active' | 'posting' | 'memo'\n\nconst NETWORK_ID = new Uint8Array([0x80])\n\n/**\n * ECDSA (secp256k1) private key for signing and encryption operations.\n * Handles key generation, derivation from seeds/passwords, and cryptographic operations.\n *\n * All private keys are stored internally as Uint8Array and can be converted to/from\n * Wallet Import Format (WIF) strings for storage and transmission.\n *\n * @example\n * ```typescript\n * // From WIF string\n * const key = PrivateKey.from('5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw')\n *\n * // Generate random key\n * const randomKey = PrivateKey.randomKey()\n *\n * // From username and password\n * const loginKey = PrivateKey.fromLogin('username', 'password')\n *\n * // Sign a message\n * const signature = key.sign(someHash)\n *\n * // Get public key\n * const pubKey = key.createPublic()\n * ```\n */\nexport class PrivateKey {\n key: Uint8Array\n\n constructor(key: Uint8Array) {\n this.key = key\n try {\n secp256k1.getPublicKey(key)\n } catch (e) {\n throw new Error('invalid private key')\n }\n }\n\n /**\n * Creates a PrivateKey instance from a WIF string or raw Uint8Array.\n * Automatically detects the input type and uses the appropriate method.\n *\n * @param value - WIF formatted string or raw 32-byte key as Uint8Array\n * @returns New PrivateKey instance\n * @throws Error if the key format is invalid\n */\n static from(value: string | Uint8Array): PrivateKey {\n if (typeof value === 'string') {\n return PrivateKey.fromString(value)\n } else {\n return new PrivateKey(value)\n }\n }\n\n /**\n * Creates a PrivateKey from a Wallet Import Format (WIF) encoded string.\n *\n * @param wif - WIF encoded private key string\n * @returns New PrivateKey instance\n * @throws Error if WIF format is invalid or checksum fails\n */\n static fromString(wif: string): PrivateKey {\n return new PrivateKey(decodePrivate(wif).subarray(1))\n }\n\n /**\n * Creates a PrivateKey from a seed string or Uint8Array.\n * The seed is hashed with SHA256 to produce the private key.\n *\n * @param seed - Seed string (converted to bytes) or raw byte array\n * @returns New PrivateKey instance derived from seed\n */\n static fromSeed(seed: string | Uint8Array): PrivateKey {\n if (typeof seed === 'string') {\n const isHex = /^[0-9a-fA-F]+$/.test(seed)\n if (isHex) {\n seed = hexToBytes(seed)\n } else {\n // Convert non-hex string to Uint8Array using UTF-8 encoding\n // Avoid top-level TextEncoder — not available on all runtimes (e.g. Hermes)\n const bytes: number[] = []\n for (let i = 0; i < seed.length; i++) {\n let c = seed.charCodeAt(i)\n if (c < 0x80) {\n bytes.push(c)\n } else if (c < 0x800) {\n bytes.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f))\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < seed.length) {\n const next = seed.charCodeAt(++i)\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff)\n bytes.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n } else {\n bytes.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n }\n }\n seed = new Uint8Array(bytes)\n }\n }\n return new PrivateKey(sha256(seed))\n }\n\n /**\n * Derives a PrivateKey from username, password, and role using Hive's key derivation scheme.\n * This generates the same keys that the Hive wallet uses for login-based keys.\n *\n * @param username - Hive username\n * @param password - Master password (or seed phrase)\n * @param role - Key role ('owner', 'active', 'posting', 'memo')\n * @returns New PrivateKey instance for the specified role\n */\n static fromLogin(username: string, password: string, role: KeyRole = 'active'): PrivateKey {\n const seed = username + role + password\n return PrivateKey.fromSeed(seed)\n }\n\n /**\n * Signs a 32-byte message hash using ECDSA and returns a recoverable signature.\n * The signature includes recovery information to allow public key recovery.\n *\n * @param message - 32-byte message hash to sign (Uint8Array)\n * @returns Signature object containing the signature data\n */\n sign(message: Uint8Array): Signature {\n const rv = secp256k1.sign(message, this.key, {\n extraEntropy: true,\n format: 'recovered',\n prehash: false // prehash does sha256 on the message\n })\n const recovery = parseInt(bytesToHex(rv.subarray(0, 1)), 16)\n return Signature.from((recovery + 31).toString(16) + bytesToHex(rv.subarray(1)))\n }\n\n /**\n * Derives the corresponding public key for this private key.\n *\n * @param prefix - Optional address prefix (defaults to config.address_prefix)\n * @returns PublicKey instance derived from this private key\n */\n createPublic(prefix?: string): PublicKey {\n return new PublicKey(secp256k1.getPublicKey(this.key), prefix)\n }\n\n /**\n * Returns the private key as a Wallet Import Format (WIF) encoded string.\n * This includes network ID and checksum for safe storage/transmission.\n *\n * @returns WIF encoded private key string\n */\n toString(): string {\n return encodePrivate(new Uint8Array([...NETWORK_ID, ...this.key]))\n }\n\n /**\n * Returns a masked representation of the private key for debugging/logging.\n * Shows only the first and last 6 characters to avoid accidental exposure.\n * Use toString() to get the full key for export/serialization.\n *\n * @returns Masked key representation for safe logging\n */\n inspect(): string {\n const key = this.toString()\n return `PrivateKey: ${key.slice(0, 6)}...${key.slice(-6)}`\n }\n\n /**\n * Computes a shared secret using ECDH key exchange for memo encryption.\n * The shared secret is used as a key for AES encryption/decryption.\n *\n * @param publicKey - Other party's public key\n * @returns 64-byte shared secret as Uint8Array\n */\n getSharedSecret(publicKey: PublicKey): Uint8Array {\n const s = secp256k1.getSharedSecret(this.key, publicKey.key)\n // strip the parity byte\n return sha512(s.subarray(1))\n }\n\n /**\n * Generates a new cryptographically secure random private key.\n * Uses the secp256k1 key generation algorithm for security.\n * This method may take up to 250ms due to entropy collection.\n *\n * @returns New randomly generated PrivateKey instance\n */\n static randomKey(): PrivateKey {\n return new PrivateKey(secp256k1.keygen().secretKey)\n }\n}\n\nconst doubleSha256 = (input: Uint8Array) => {\n const dbl = sha256(sha256(input))\n return dbl\n}\n\n/** Encode bs58+doubleSha256-checksum private key. */\nconst encodePrivate = (key: Uint8Array) => {\n // assert.equal(key.readUInt8(0), 0x80, 'private key network id mismatch')\n const checksum = doubleSha256(key)\n return bs58.encode(new Uint8Array([...key, ...checksum.slice(0, 4)]))\n}\n\n/** Decode bs58+doubleSha256-checksum encoded private key. */\nconst decodePrivate = (encodedKey: string) => {\n const buffer = bs58.decode(encodedKey)\n if (!isUint8ArrayEqual(buffer.slice(0, 1), NETWORK_ID)) {\n throw new Error('Private key network id mismatch')\n }\n const checksum = buffer.slice(-4)\n const key = buffer.slice(0, -4)\n const checksumVerify = doubleSha256(key).slice(0, 4)\n if (!isUint8ArrayEqual(checksum, checksumVerify)) {\n throw new Error('Private key checksum mismatch')\n }\n return key\n}\n\nconst isUint8ArrayEqual = (a: Uint8Array, b: Uint8Array) => {\n if (a === b) return true\n if (a.byteLength !== b.byteLength) return false\n const len = a.byteLength\n let i = 0\n while (i < len && a[i] === b[i]) i++\n return i === len\n}\n","import { ByteBuffer } from './ByteBuffer'\nimport { cbc as AESCBC } from '@noble/ciphers/aes.js'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { sha256, sha512 } from '@noble/hashes/sha2.js'\nimport { PrivateKey } from './PrivateKey'\nimport { PublicKey } from './PublicKey'\n\nexport const encrypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n message: Uint8Array,\n nonce: bigint = uniqueNonce()\n) => crypt(privateKey, publicKey, nonce, message)\n\nexport const decrypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n nonce: bigint,\n message: Uint8Array,\n checksum: number\n): Uint8Array => {\n const d = crypt(privateKey, publicKey, nonce, message, checksum)\n return d.message\n}\n\n/**\n * @arg message - Encrypted or plain text message (see checksum)\n * @arg checksum - shared secret checksum (null to encrypt, non-null to decrypt)\n */\nconst crypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n nonce: bigint,\n message: Uint8Array,\n checksum?: number\n): { nonce: bigint; message: Uint8Array; checksum: number } => {\n const nonceL = nonce\n const S = privateKey.getSharedSecret(publicKey)\n let ebuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n ebuf.writeUint64(nonceL)\n ebuf.append(S)\n ebuf.flip()\n\n const encryptionKey = sha512(new Uint8Array(ebuf.toBuffer()))\n const iv = encryptionKey.subarray(32, 48)\n const tag = encryptionKey.subarray(0, 32)\n\n // check if first 64 bit of sha256 hash treated as uint64_t truncated to 32 bits.\n const check = sha256(encryptionKey).subarray(0, 4)\n const cbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n cbuf.append(check)\n cbuf.flip()\n const check32 = cbuf.readUint32()\n if (checksum !== undefined) {\n if (check32 !== checksum) {\n throw new Error('Invalid key')\n }\n message = cryptoJsDecrypt(message, tag, iv)\n } else {\n message = cryptoJsEncrypt(message, tag, iv)\n }\n return { nonce: nonceL, message, checksum: check32 }\n}\n\n/**\n * This method does not use a checksum, the returned data must be validated some other way.\n * @arg {string|Uint8Array} ciphertext - binary format\n * @return {Uint8Array} the decrypted message\n */\nconst cryptoJsDecrypt = (message: Uint8Array, tag: Uint8Array, iv: Uint8Array): Uint8Array => {\n let messageBuffer = message\n const decipher = AESCBC(tag, iv)\n messageBuffer = decipher.decrypt(messageBuffer)\n return messageBuffer\n}\n\n/**\n * This method does not use a checksum, the returned data must be validated some other way.\n * @arg {string|Uint8Array} plaintext - binary format\n * @return {Uint8Array} binary\n */\nexport const cryptoJsEncrypt = (\n message: Uint8Array,\n tag: Uint8Array,\n iv: Uint8Array\n): Uint8Array => {\n let messageBuffer = message\n const cipher = AESCBC(tag, iv)\n messageBuffer = cipher.encrypt(messageBuffer)\n return messageBuffer\n}\n\nlet uniqueNonceEntropy: number | null = null\n\nconst uniqueNonce = (): bigint => {\n if (uniqueNonceEntropy === null) {\n const randomPrivateKey = secp256k1.utils.randomSecretKey()\n uniqueNonceEntropy = (randomPrivateKey[0] << 8) | randomPrivateKey[1]\n }\n let long = BigInt(Date.now())\n const entropy = ++uniqueNonceEntropy % 0x10000\n long = (long << BigInt(16)) | BigInt(entropy)\n return long\n}\n","import { ByteBuffer } from './ByteBuffer'\nimport { PublicKey } from './PublicKey'\n\nconst PublicKeyDeserializer = (buf: ByteBuffer) => {\n const c = fixedBuf(buf, 33)\n return new PublicKey(c)\n}\n\nconst UInt64Deserializer = (b: ByteBuffer) => {\n return b.readUint64()\n}\n\nconst UInt32Deserializer = (b: ByteBuffer) => {\n return b.readUint32()\n}\n\nconst BinaryDeserializer = (b: ByteBuffer) => {\n const len = b.readVarint32()\n const bCopy = b.copy(b.offset, b.offset + len)\n b.skip(len)\n return new Uint8Array(bCopy.toBuffer())\n}\n\nconst BufferDeserializer = (keyDeserializers: any) => (buf: Uint8Array) => {\n const obj: any = {}\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n buffer.append(buf)\n buffer.flip()\n for (const [key, deserializer] of keyDeserializers) {\n try {\n obj[key] = deserializer(buffer)\n } catch (error: any) {\n error.message = `${key}: ${error.message}`\n throw error\n }\n }\n return obj\n}\n\nfunction fixedBuf(b: ByteBuffer, len: number) {\n if (!b) {\n throw Error('No buffer found on first parameter')\n } else {\n const bCopy = b.copy(b.offset, b.offset + len)\n b.skip(len)\n return new Uint8Array(bCopy.toBuffer())\n }\n}\n\nconst EncryptedMemoDeserializer = BufferDeserializer([\n ['from', PublicKeyDeserializer],\n ['to', PublicKeyDeserializer],\n ['nonce', UInt64Deserializer],\n ['check', UInt32Deserializer],\n ['encrypted', BinaryDeserializer]\n])\n\nexport const Deserializer = {\n Memo: EncryptedMemoDeserializer\n}\n","import bs58 from 'bs58'\nimport { ByteBuffer } from './ByteBuffer'\nimport { Serializer } from './serializer'\nimport { PrivateKey } from './PrivateKey'\nimport * as Aes from './aes'\nimport { PublicKey } from './PublicKey'\nimport { Deserializer } from './deserializer'\n\nexport type Memo = {\n /**\n * Encrypts a memo for secure private messaging\n */\n encode(\n privateKey: string | PrivateKey,\n publicKey: string | PublicKey,\n memo: string,\n testNonce?: any\n ): string\n\n /**\n * Decrypts a memo message\n */\n decode(privateKey: string | PrivateKey, memo: string): string\n}\n\n/**\n * Encodes a memo using AES encryption for secure private messaging on Hive.\n * Messages must start with '#' to be encrypted. Plain text messages are returned unchanged.\n *\n * @param privateKey - Sender's private memo key (string WIF format or PrivateKey instance)\n * @param publicKey - Recipient's public memo key (string or PublicKey instance)\n * @param memo - Message to encrypt (must start with '#' for encryption)\n * @param testNonce - Optional nonce for testing (advanced usage)\n * @returns Encrypted memo string prefixed with '#'\n * @throws Error if encryption is not supported in current environment\n */\nconst encode = (\n privateKey: string | PrivateKey,\n publicKey: string | PublicKey,\n memo: string,\n testNonce?: any\n): string => {\n if (!memo.startsWith('#')) {\n return memo\n }\n memo = memo.substring(1)\n checkEncryption()\n privateKey = toPrivateObj(privateKey)\n publicKey = toPublicObj(publicKey)\n const mbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n mbuf.writeVString(memo)\n const memoBuffer = new Uint8Array(mbuf.copy(0, mbuf.offset).toBuffer())\n const { nonce, message, checksum } = Aes.encrypt(privateKey, publicKey, memoBuffer, testNonce)\n const mbuf2 = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n Serializer.Memo(mbuf2, {\n check: checksum,\n encrypted: message,\n from: privateKey.createPublic(),\n nonce,\n to: publicKey\n })\n mbuf2.flip()\n const data = new Uint8Array(mbuf2.toBuffer())\n return '#' + bs58.encode(data)\n}\n\n/**\n * Decrypts an encrypted memo using AES decryption.\n * Messages must start with '#' to be decrypted. Plain text messages are returned unchanged.\n *\n * @param privateKey - Recipient's private memo key (string WIF format or PrivateKey instance)\n * @param memo - Encrypted memo string (must start with '#' for decryption)\n * @returns Decrypted memo content with '#' prefix\n * @throws Error if decryption fails or encryption not supported in current environment\n */\nconst decode = (privateKey: string | PrivateKey, memo: string): string => {\n if (!memo.startsWith('#')) {\n return memo\n }\n memo = memo.substring(1)\n checkEncryption()\n privateKey = toPrivateObj(privateKey)\n // memo = bs58.decode(memo)\n let memoBuffer = Deserializer.Memo(bs58.decode(memo))\n const { from, to, nonce, check, encrypted } = memoBuffer\n const pubkey = privateKey.createPublic().toString()\n const otherpub =\n pubkey === new PublicKey(from.key).toString() ? new PublicKey(to.key) : new PublicKey(from.key)\n memoBuffer = Aes.decrypt(privateKey, otherpub, nonce, encrypted, check)\n const mbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n mbuf.append(memoBuffer)\n mbuf.flip()\n return '#' + mbuf.readVString()\n}\n\nlet encodeTest: boolean | undefined\nconst checkEncryption = () => {\n if (encodeTest === undefined) {\n let plaintext\n encodeTest = true // prevent infinate looping\n try {\n const wif = '5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw'\n const pubkey = 'STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA'\n const cyphertext = encode(wif, pubkey, '#memo爱')\n plaintext = decode(wif, cyphertext)\n } finally {\n encodeTest = plaintext === '#memo爱'\n }\n }\n if (encodeTest === false) {\n throw new Error('This environment does not support encryption.')\n }\n}\n\nconst toPrivateObj = (o: string | PrivateKey): PrivateKey => {\n if (typeof o === 'string') {\n return PrivateKey.fromString(o)\n } else {\n return o\n }\n}\nconst toPublicObj = (o: string | PublicKey): PublicKey => {\n if (typeof o === 'string') {\n return PublicKey.fromString(o)\n } else {\n return o\n }\n}\n\n/**\n * Memo utilities for encrypting and decrypting private messages between Hive users.\n * Uses AES encryption with ECDH key exchange for secure communication.\n *\n * Messages must start with '#' to be encrypted/decrypted.\n * Plain text messages (without '#') are returned unchanged.\n *\n * @example\n * ```typescript\n * import { Memo, PrivateKey, PublicKey } from 'hive-tx'\n *\n * // Encrypt a message\n * const encrypted = Memo.encode(senderPrivateKey, recipientPublicKey, '#Hello World')\n *\n * // Decrypt a message\n * const decrypted = Memo.decode(recipientPrivateKey, encrypted)\n * console.log(decrypted) // '#Hello World'\n * ```\n */\nexport const Memo = {\n decode,\n encode\n}\n","import { Serializer } from './serializer'\nimport { ByteBuffer } from './ByteBuffer'\nimport { PublicKey } from './PublicKey'\nimport { bytesToHex } from '@noble/hashes/utils.js'\n\nexport interface WitnessProps {\n account_creation_fee?: string\n account_subsidy_budget?: number\n account_subsidy_decay?: number\n key: PublicKey | string\n maximum_block_size?: number\n new_signing_key?: PublicKey | string | null\n hbd_exchange_rate?: { base: string; quote: string }\n hbd_interest_rate?: number\n url?: string\n}\n\n/** Return null for a valid username */\nexport const validateUsername = (username: string): null | string => {\n let suffix = 'Account name should '\n if (!username) {\n return suffix + 'not be empty.'\n }\n const length = username.length\n if (length < 3) {\n return suffix + 'be longer.'\n }\n if (length > 16) {\n return suffix + 'be shorter.'\n }\n if (/\\./.test(username)) {\n suffix = 'Each account segment should '\n }\n const ref = username.split('.')\n const len = ref.length\n for (let i = 0; i < len; i++) {\n const label = ref[i]\n if (!/^[a-z]/.test(label)) {\n return suffix + 'start with a lowercase letter.'\n }\n if (!/^[a-z0-9-]*$/.test(label)) {\n return suffix + 'have only lowercase letters, digits, or dashes.'\n }\n if (!/[a-z0-9]$/.test(label)) {\n return suffix + 'end with a lowercase letter or digit.'\n }\n if (label.length < 3) {\n return suffix + 'be longer.'\n }\n }\n return null\n}\n\nexport const operations = {\n vote: 0,\n comment: 1,\n transfer: 2,\n transfer_to_vesting: 3,\n withdraw_vesting: 4,\n limit_order_create: 5,\n limit_order_cancel: 6,\n feed_publish: 7,\n convert: 8,\n account_create: 9,\n account_update: 10,\n witness_update: 11,\n account_witness_vote: 12,\n account_witness_proxy: 13,\n pow: 14,\n custom: 15,\n report_over_production: 16,\n delete_comment: 17,\n custom_json: 18,\n comment_options: 19,\n set_withdraw_vesting_route: 20,\n limit_order_create2: 21,\n claim_account: 22,\n create_claimed_account: 23,\n request_account_recovery: 24,\n recover_account: 25,\n change_recovery_account: 26,\n escrow_transfer: 27,\n escrow_dispute: 28,\n escrow_release: 29,\n pow2: 30,\n escrow_approve: 31,\n transfer_to_savings: 32,\n transfer_from_savings: 33,\n cancel_transfer_from_savings: 34,\n custom_binary: 35,\n decline_voting_rights: 36,\n reset_account: 37,\n set_reset_account: 38,\n claim_reward_balance: 39,\n delegate_vesting_shares: 40,\n account_create_with_delegation: 41,\n witness_set_properties: 42,\n account_update2: 43,\n create_proposal: 44,\n update_proposal_votes: 45,\n remove_proposal: 46,\n update_proposal: 47,\n collateralized_convert: 48,\n recurrent_transfer: 49,\n // virtual ops\n fill_convert_request: 50,\n author_reward: 51,\n curation_reward: 52,\n comment_reward: 53,\n liquidity_reward: 54,\n interest: 55,\n fill_vesting_withdraw: 56,\n fill_order: 57,\n shutdown_witness: 58,\n fill_transfer_from_savings: 59,\n hardfork: 60,\n comment_payout_update: 61,\n return_vesting_delegation: 62,\n comment_benefactor_reward: 63,\n producer_reward: 64,\n clear_null_account_balance: 65,\n proposal_pay: 66,\n sps_fund: 67,\n hardfork_hive: 68,\n hardfork_hive_restore: 69,\n delayed_voting: 70,\n consolidate_treasury_balance: 71,\n effective_comment_vote: 72,\n ineffective_delete_comment: 73,\n sps_convert: 74,\n expired_account_notification: 75,\n changed_recovery_account: 76,\n transfer_to_vesting_completed: 77,\n pow_reward: 78,\n vesting_shares_split: 79,\n account_created: 80,\n fill_collateralized_convert_request: 81,\n system_warning: 82,\n fill_recurrent_transfer: 83,\n failed_recurrent_transfer: 84,\n limit_order_cancelled: 85,\n producer_missed: 86,\n proposal_fee: 87,\n collateralized_convert_immediate_conversion: 88,\n escrow_approved: 89,\n escrow_rejected: 90,\n proxy_cleared: 91,\n declined_voting_rights: 92\n}\n\n/**\n * Make bitmask filter to be used with get_account_history call\n */\nexport const makeBitMaskFilter = (allowedOperations: number[]): [string | null, string | null] => {\n return allowedOperations\n .reduce(reduceFunction, [BigInt(0), BigInt(0)])\n .map((value: bigint) => (value !== BigInt(0) ? value.toString() : null)) as [string | null, string | null]\n}\nconst reduceFunction = (\n [low, high]: [bigint, bigint],\n allowedOperation: number\n): [bigint, bigint] => {\n if (allowedOperation < 64) {\n return [low | (BigInt(1) << BigInt(allowedOperation)), high]\n } else {\n return [low, high | (BigInt(1) << BigInt(allowedOperation - 64))]\n }\n}\n\nexport const buildWitnessSetProperties = (\n owner: string,\n props: WitnessProps\n): ['witness_set_properties', { extensions: never[]; owner: string; props: any }] => {\n const data = {\n extensions: [],\n owner,\n props: []\n }\n for (const key of Object.keys(props)) {\n if ((props as any)[key] === undefined) continue\n let type\n switch (key) {\n case 'key':\n case 'new_signing_key':\n type = Serializer.PublicKey\n break\n case 'account_subsidy_budget':\n case 'account_subsidy_decay':\n case 'maximum_block_size':\n type = Serializer.UInt32\n break\n case 'hbd_interest_rate':\n type = Serializer.UInt16\n break\n case 'url':\n type = Serializer.String\n break\n case 'hbd_exchange_rate':\n type = Serializer.Price\n break\n case 'account_creation_fee':\n type = Serializer.Asset\n break\n default:\n throw new Error(`Unknown witness prop: ${key}`)\n }\n data.props.push([key, serialize(type, props[key])])\n }\n data.props.sort((a: any, b: any) => a[0].localeCompare(b[0]))\n return ['witness_set_properties', data]\n}\n\nconst serialize = (serializer: any, data: any) => {\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n serializer(buffer, data)\n buffer.flip()\n // `props` values must be hex\n return bytesToHex(new Uint8Array(buffer.toBuffer()))\n}\n","/**\n * Re-exports hive-tx APIs and provides helper functions that bridge\n * API differences from the legacy dhive library.\n */\n\nimport {\n PrivateKey,\n Transaction,\n callRPCBroadcast,\n type BroadcastResult,\n} from \"../../hive-tx\";\nimport type { Operation, OperationName, OperationBody } from \"../../hive-tx\";\nimport { sha256 as nobleSha256 } from \"@noble/hashes/sha2.js\";\n\n// ── Re-exports ─────────────────────────────────────────────────────────────\n\nexport {\n Transaction as HiveTxTransaction,\n PrivateKey,\n PublicKey,\n Signature,\n Memo,\n config as hiveTxConfig,\n callRPC,\n callRPCBroadcast,\n callREST,\n callWithQuorum,\n utils as hiveTxUtils,\n} from \"../../hive-tx\";\n\nexport type {\n Operation,\n OperationName,\n OperationBody,\n AssetSymbol,\n BroadcastResult,\n AccountCreateOperation,\n CustomJsonOperation,\n // Referenced in ConfigManager.setResilience's public signature — must be\n // nameable from the main entry, not only from @ecency/sdk/hive.\n ResilienceOptions,\n} from \"../../hive-tx\";\n\n// ── Compat types (matching dhive shapes used throughout the codebase) ──────\n\n/** Compatible with dhive's TransactionConfirmation from broadcast_transaction_synchronous */\nexport interface TransactionConfirmation {\n id: string;\n block_num: number;\n trx_num: number;\n expired: boolean;\n}\n\n/** Authority role type used in key management */\nexport type AuthorityType = \"owner\" | \"active\" | \"posting\" | \"memo\";\n\n/** SMT asset format (NAI representation) used in transaction history */\nexport interface SMTAsset {\n amount: string;\n precision: number;\n nai: string;\n}\n\n/** RC account data from rc_api.find_rc_accounts */\nexport interface RCAccount {\n account: string;\n rc_manabar: {\n current_mana: string | number;\n last_update_time: number;\n };\n max_rc: string | number;\n max_rc_creation_adjustment: {\n amount: string;\n precision: number;\n nai: string;\n };\n delegated_rc: number;\n received_delegated_rc: number;\n}\n\n// ── Helpers ────────────────────────────────────────────────────────────────\n\n/**\n * Compute SHA-256 hash of a string or Uint8Array.\n * Drop-in replacement for dhive's `cryptoUtils.sha256()`.\n */\nexport function sha256(input: string | Uint8Array): Uint8Array {\n let data: Uint8Array;\n if (typeof input === \"string\") {\n // Inline UTF-8 encode — avoids TextEncoder which is unavailable on some\n // runtimes (React Native / Hermes).\n const bytes: number[] = [];\n for (let i = 0; i < input.length; i++) {\n let c = input.charCodeAt(i);\n if (c < 0x80) {\n bytes.push(c);\n } else if (c < 0x800) {\n bytes.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f));\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < input.length) {\n const next = input.charCodeAt(++i);\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff);\n bytes.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f));\n } else {\n bytes.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f));\n }\n }\n data = new Uint8Array(bytes);\n } else {\n data = input;\n }\n return nobleSha256(data);\n}\n\n/** Check if a string is a valid WIF-encoded private key. */\nexport function isWif(key: string): boolean {\n try {\n PrivateKey.fromString(key);\n return true;\n } catch {\n return false;\n }\n}\n\n/**\n * Sign and broadcast operations, returning a dhive-compatible TransactionConfirmation.\n *\n * Uses broadcast_transaction_synchronous so the response includes block_num/trx_num,\n * matching the shape that the rest of the codebase expects from dhive's\n * `client.broadcast.sendOperations()`.\n *\n * @deprecated Prefer {@link broadcastOperationsAsync} (the default for\n * `useBroadcastMutation`); poll `transaction_status_api` if you need block\n * confirmation. Kept only for explicit `broadcastMode: 'sync'` opt-ins.\n */\nexport async function broadcastOperations(\n ops: Operation[],\n key: PrivateKey\n): Promise {\n const tx = new Transaction();\n for (const op of ops) {\n await tx.addOperation(\n op[0] as OperationName,\n op[1] as OperationBody\n );\n }\n tx.sign(key);\n return callRPCBroadcast(\"condenser_api.broadcast_transaction_synchronous\", [\n tx.transaction,\n ]);\n}\n\n/**\n * Sign and broadcast operations without waiting for block inclusion.\n *\n * Uses broadcast_transaction which returns as soon as the node accepts the\n * transaction into its mempool. Transport and RPC errors (network failures,\n * invalid operations, expired transactions) are still thrown immediately -\n * the only thing skipped is the wait for the transaction to appear in a block.\n *\n * Returns { tx_id, status: 'unknown' }. To confirm block inclusion afterward,\n * poll transaction_status_api with the returned tx_id.\n *\n * Prefer this for operations where faster response matters more than\n * immediate confirmation (e.g. votes, reblogs, follows).\n *\n * Use broadcastOperations() when you need block_num/trx_num confirmation\n * (e.g. transfers, account updates, key changes).\n */\nexport async function broadcastOperationsAsync(\n ops: Operation[],\n key: PrivateKey\n): Promise {\n const tx = new Transaction();\n for (const op of ops) {\n await tx.addOperation(\n op[0] as OperationName,\n op[1] as OperationBody\n );\n }\n tx.sign(key);\n return tx.broadcast(false);\n}\n\n// ── Mana calculations (ported from dhive's RCAPI) ──────────────────────────\n\ninterface Manabar {\n current_mana: string | number;\n last_update_time: number;\n}\n\ninterface ManaResult {\n current_mana: number;\n max_mana: number;\n percentage: number;\n}\n\nconst MANA_REGENERATION_SECONDS = 432000; // 5 days\n\nfunction calculateManabar(maxMana: number, manabar: Manabar): ManaResult {\n const delta = Date.now() / 1000 - manabar.last_update_time;\n let currentMana =\n Number(manabar.current_mana) +\n (delta * maxMana) / MANA_REGENERATION_SECONDS;\n let percentage = Math.round((currentMana / maxMana) * 10000);\n if (!isFinite(percentage) || percentage < 0) {\n percentage = 0;\n } else if (percentage > 10000) {\n percentage = 10000;\n }\n return { current_mana: currentMana, max_mana: maxMana, percentage };\n}\n\n/**\n * Get effective vesting shares for an account (matching dhive's getVests).\n * Subtracts delegated, adds received, accounts for pending withdrawals.\n */\nfunction getVests(account: any): number {\n const vests = parseFloat(account.vesting_shares);\n const delegated = parseFloat(account.delegated_vesting_shares);\n const received = parseFloat(account.received_vesting_shares);\n const withdrawRate = parseFloat(account.vesting_withdraw_rate);\n const alreadyWithdrawn =\n (Number(account.to_withdraw) - Number(account.withdrawn)) / 1e6;\n const withdrawVests = Math.min(withdrawRate, alreadyWithdrawn);\n return vests - withdrawVests - delegated + received;\n}\n\n/** Calculate voting power mana (equivalent to dhive client.rc.calculateVPMana) */\nexport function calculateVPMana(account: any): ManaResult {\n const maxMana = getVests(account) * 1e6;\n return calculateManabar(maxMana, account.voting_manabar);\n}\n\n/** Calculate RC mana (equivalent to dhive client.rc.calculateRCMana) */\nexport function calculateRCMana(rcAccount: RCAccount): ManaResult {\n return calculateManabar(\n Number(rcAccount.max_rc),\n rcAccount.rc_manabar\n );\n}\n\n// setHiveTxNodes and initHiveTx removed — config is now unified.\n// Use hiveTxConfig directly or ConfigManager.setHiveNodes().\n","/**\n * Chain error handling utilities\n * Extracted from web's operations.ts and mobile's dhive.ts error handling patterns\n */\n\nexport enum ErrorType {\n COMMON = \"common\",\n INFO = \"info\",\n INSUFFICIENT_RESOURCE_CREDITS = \"insufficient_resource_credits\",\n MISSING_AUTHORITY = \"missing_authority\",\n TOKEN_EXPIRED = \"token_expired\",\n NETWORK = \"network\",\n TIMEOUT = \"timeout\",\n VALIDATION = \"validation\",\n}\n\nexport interface ParsedChainError {\n message: string;\n type: ErrorType;\n originalError?: any;\n}\n\n/**\n * Parses Hive blockchain errors into standardized format.\n * Extracted from web's operations.ts and mobile's dhive.ts error handling.\n *\n * @param error - The error object or string from a blockchain operation\n * @returns Parsed error with user-friendly message and categorized type\n *\n * @example\n * ```typescript\n * try {\n * await vote(...);\n * } catch (error) {\n * const parsed = parseChainError(error);\n * console.log(parsed.message); // \"Insufficient Resource Credits. Please wait or power up.\"\n * console.log(parsed.type); // ErrorType.INSUFFICIENT_RESOURCE_CREDITS\n * }\n * ```\n */\nexport function parseChainError(error: any): ParsedChainError {\n // Extract error strings from various error formats\n // Check both error_description and message independently for pattern matching\n const errorDescription = error?.error_description ? String(error.error_description) : '';\n const errorMessage = error?.message ? String(error.message) : '';\n // HiveSigner throws plain objects like { error: \"unauthorized\", error_description: \"...\" }\n const errorCode = error?.error ? String(error.error) : '';\n const errorString = errorDescription || errorMessage || String(error || '');\n\n // Helper function to test patterns against all error fields\n const testPattern = (pattern: RegExp): boolean => {\n // Check error code first (e.g. HiveSigner's { error: \"unauthorized\" })\n if (errorCode && pattern.test(errorCode)) return true;\n // Check error_description (priority)\n if (errorDescription && pattern.test(errorDescription)) return true;\n // Then check message\n if (errorMessage && pattern.test(errorMessage)) return true;\n // Finally check fallback errorString (handles plain string inputs)\n if (errorString && pattern.test(errorString)) return true;\n return false;\n };\n\n // Resource credits (from both web and mobile patterns)\n if (\n testPattern(/please wait to transact/i) ||\n testPattern(/insufficient rc/i) ||\n testPattern(/rc mana|rc account|resource credits/i)\n ) {\n return {\n message: \"Insufficient Resource Credits. Please wait or power up.\",\n type: ErrorType.INSUFFICIENT_RESOURCE_CREDITS,\n originalError: error,\n };\n }\n\n // Min comment interval (from web operations.ts line 29)\n if (testPattern(/you may only post once every/i)) {\n return {\n message: \"Please wait before posting again (minimum 3 second interval between comments).\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Identical vote (from web operations.ts line 31)\n if (testPattern(/your current vote on this comment is identical/i)) {\n return {\n message: \"You have already voted with the same weight.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Must claim something (from web operations.ts line 33)\n if (testPattern(/must claim something/i)) {\n return {\n message: \"You must claim rewards before performing this action.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Cannot claim that much VESTS (from web operations.ts line 35)\n if (testPattern(/cannot claim that much vests/i)) {\n return {\n message: \"Cannot claim that amount. Please check your pending rewards.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Cannot delete comment with positive votes (from web operations.ts line 42)\n if (testPattern(/cannot delete a comment with net positive/i)) {\n return {\n message: \"Cannot delete a comment with positive votes.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Comment has children (from web operations.ts line 44)\n if (testPattern(/children == 0/i)) {\n return {\n message: \"Cannot delete a comment with replies.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Comment already paid out (from web operations.ts line 46)\n if (testPattern(/comment_cashout/i)) {\n return {\n message: \"Cannot modify a comment that has already been paid out.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Voting on paid out post (from web operations.ts line 48)\n if (testPattern(/votes evaluating for comment that is paid out is forbidden/i)) {\n return {\n message: \"Cannot vote on posts that have already been paid out.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // No key available (SDK internal - from broadcastWithMethod when key not stored)\n if (testPattern(/no (active|owner|posting|memo) key available/i)) {\n return {\n message: \"Key not available. Please provide your key to sign this operation.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing active authority. Hive nodes return \"missing required active\n // authority\"; web operations.ts also throws the short form. Match both so the\n // auth fallback (auth-upgrade dialog) fires instead of misclassifying as a\n // generic chain error.\n if (testPattern(/missing (required )?active authority/i)) {\n return {\n message: \"Missing active authority. This operation requires your active key.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing owner authority (\"missing required owner authority\" or short form)\n if (testPattern(/missing (required )?owner authority/i)) {\n return {\n message: \"Missing owner authority. This operation requires your owner key.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing posting authority (general pattern)\n if (testPattern(/missing (required )?posting authority/i)) {\n return {\n message: \"Missing posting authority. Please check your login method.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Token expired / unauthorized (HiveSigner OAuth2 errors + general patterns)\n // HiveSigner returns: { error: \"invalid_grant\" } for invalid/expired tokens,\n // { error: \"unauthorized_access\" } for IP-based access denial\n if (\n errorCode === 'invalid_grant' ||\n errorCode === 'unauthorized_access' ||\n testPattern(/token expired/i) ||\n testPattern(/invalid token/i) ||\n testPattern(/\\bunauthorized\\b/i) ||\n testPattern(/\\bforbidden\\b/i)\n ) {\n return {\n message: \"Authentication token expired. Please log in again.\",\n type: ErrorType.TOKEN_EXPIRED,\n originalError: error,\n };\n }\n\n // Already reblogged\n if (testPattern(/has already reblogged/i) || testPattern(/already reblogged this post/i)) {\n return {\n message: \"You have already reblogged this post.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Duplicate transaction\n if (testPattern(/duplicate transaction/i)) {\n return {\n message: \"This transaction has already been processed.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Network errors (more specific patterns to avoid false positives)\n if (\n testPattern(/econnrefused/i) ||\n testPattern(/connection refused/i) ||\n testPattern(/failed to fetch/i) ||\n testPattern(/\\bnetwork[-\\s]?(request|error|timeout|unreachable|down|failed)\\b/i)\n ) {\n return {\n message: \"Network error. Please check your connection and try again.\",\n type: ErrorType.NETWORK,\n originalError: error,\n };\n }\n\n // Timeout errors\n if (testPattern(/timeout/i) || testPattern(/timed out/i)) {\n return {\n message: \"Request timed out. Please try again.\",\n type: ErrorType.TIMEOUT,\n originalError: error,\n };\n }\n\n // Account doesn't exist\n if (testPattern(/account.*does not exist/i) || testPattern(/account not found/i)) {\n return {\n message: \"Account not found. Please check the username.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Invalid memo key\n if (testPattern(/invalid memo key/i)) {\n return {\n message: \"Invalid memo key. Cannot encrypt message.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Insufficient funds (require both words in same string to avoid cross-field false positives)\n if (testPattern(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i)) {\n return {\n message: \"Insufficient funds for this transaction.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Generic validation errors (use word boundaries to be more specific)\n if (testPattern(/\\b(invalid|validation)\\b/i)) {\n // Truncate to 150 chars like other branches\n const message = (error?.message || errorString).substring(0, 150) || \"Validation error occurred\";\n return {\n message,\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Default: return original error message\n // Check for error_description first (from web operations.ts line 65-72)\n if (error?.error_description && typeof error.error_description === \"string\") {\n return {\n message: error.error_description.substring(0, 150),\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Then check message field\n if (error?.message && typeof error.message === \"string\") {\n return {\n message: error.message.substring(0, 150),\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Handle plain objects without message property (avoid \"[object Object]\")\n let message: string;\n if (typeof error === 'object' && error !== null) {\n // Check for common error properties\n if (error.error_description) {\n message = String(error.error_description);\n } else if (error.code) {\n message = `Error code: ${error.code}`;\n } else if (errorString && errorString !== '[object Object]') {\n message = errorString.substring(0, 150);\n } else {\n message = \"Unknown error occurred\";\n }\n } else {\n message = errorString.substring(0, 150) || \"Unknown error occurred\";\n }\n\n return {\n message,\n type: ErrorType.COMMON,\n originalError: error,\n };\n}\n\n/**\n * Formats error for display to user.\n * Returns tuple of [message, type] for backward compatibility with existing code.\n *\n * This function maintains compatibility with the old formatError signature from\n * web's operations.ts (line 59-84) and mobile's dhive.ts error handling.\n *\n * @param error - The error object or string\n * @returns Tuple of [user-friendly message, error type]\n *\n * @example\n * ```typescript\n * try {\n * await transfer(...);\n * } catch (error) {\n * const [message, type] = formatError(error);\n * showToast(message, type);\n * }\n * ```\n */\nexport function formatError(error: any): [string, ErrorType] {\n const parsed = parseChainError(error);\n return [parsed.message, parsed.type];\n}\n\n/**\n * Checks if error indicates missing authority and should trigger auth fallback.\n * Used by the SDK's useBroadcastMutation to determine if it should retry with\n * an alternate authentication method.\n *\n * @param error - The error object or string\n * @returns true if auth fallback should be attempted\n *\n * @example\n * ```typescript\n * try {\n * await broadcast(operations);\n * } catch (error) {\n * if (shouldTriggerAuthFallback(error)) {\n * // Try with alternate auth method\n * await broadcastWithHiveAuth(operations);\n * }\n * }\n * ```\n */\nexport function shouldTriggerAuthFallback(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.MISSING_AUTHORITY || type === ErrorType.TOKEN_EXPIRED;\n}\n\n/**\n * Checks if error is a resource credits (RC) error.\n * Useful for showing specific UI feedback about RC issues.\n *\n * @param error - The error object or string\n * @returns true if the error is related to insufficient RC\n *\n * @example\n * ```typescript\n * try {\n * await vote(...);\n * } catch (error) {\n * if (isResourceCreditsError(error)) {\n * showRCWarning(); // Show specific RC education/power up UI\n * }\n * }\n * ```\n */\nexport function isResourceCreditsError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.INSUFFICIENT_RESOURCE_CREDITS;\n}\n\n/**\n * Checks if error is informational (not critical).\n * Informational errors typically don't need retry logic.\n *\n * @param error - The error object or string\n * @returns true if the error is informational\n */\nexport function isInfoError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.INFO;\n}\n\n/**\n * Checks if error is network-related and should be retried.\n *\n * @param error - The error object or string\n * @returns true if the error is network-related\n */\nexport function isNetworkError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.NETWORK || type === ErrorType.TIMEOUT;\n}\n","import {\n useMutation,\n type MutationKey,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { PrivateKey, RPCError } from \"../../../hive-tx\";\nimport type { Operation } from \"../../../hive-tx\";\nimport { broadcastOperations, broadcastOperationsAsync, type TransactionConfirmation } from \"@/modules/core/hive-tx\";\nimport type { BroadcastResult } from \"../../../hive-tx\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { shouldTriggerAuthFallback } from \"@/modules/core/errors\";\nimport type { AuthorityLevel } from \"@/modules/operations/authority-map\";\nimport hs from \"hivesigner\";\n\n/**\n * Broadcast mode controls whether the SDK waits for block inclusion.\n *\n * - `'async'` (default): Uses `broadcast_transaction` — returns once the node\n * accepts the transaction into its mempool. Transport and RPC errors are\n * still thrown immediately; only the block-inclusion wait is skipped.\n *\n * - `'sync'`: Uses `broadcast_transaction_synchronous` — waits for block\n * inclusion and returns `block_num`/`trx_num`. Deprecated; prefer `'async'`\n * and poll `transaction_status_api` if you need block confirmation.\n */\nexport type BroadcastMode = 'sync' | 'async';\n\n/**\n * Broadcasts operations using a specific auth method.\n *\n * @param method - Auth method to use ('key', 'hiveauth', 'hivesigner', 'keychain', 'custom')\n * @param username - Hive username to broadcast for\n * @param ops - Operations to broadcast\n * @param auth - AuthContextV2 with adapter and configuration\n * @param authority - Key authority to use (posting, active, owner, or memo)\n * @param fetchedKey - Optional pre-fetched key to avoid duplicate fetches\n * @param fetchedToken - Optional pre-fetched access token to avoid duplicate fetches\n * @param broadcastMode - Whether to wait for block inclusion ('sync') or just mempool acceptance ('async')\n * @returns Transaction confirmation from the blockchain\n * @throws Error if method is not available or broadcast fails\n */\nasync function broadcastWithMethod(\n method: string,\n username: string,\n ops: Operation[],\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n fetchedKey?: string | null,\n fetchedToken?: string | null,\n broadcastMode: BroadcastMode = 'async'\n): Promise {\n const adapter = auth?.adapter;\n\n switch (method) {\n case 'key': {\n if (!adapter) {\n throw new Error('No adapter provided for key-based auth');\n }\n\n // Use pre-fetched key if provided, otherwise fetch it\n let key: string | null | undefined = fetchedKey;\n\n if (key === undefined) {\n // Key not pre-fetched, fetch it now based on authority\n switch (authority) {\n case 'owner':\n if (adapter.getOwnerKey) {\n key = await adapter.getOwnerKey(username);\n } else {\n throw new Error(\n `Owner key not supported by adapter. Owner operations (like account recovery) ` +\n `require master password login or manual key entry.`\n );\n }\n break;\n\n case 'active':\n if (adapter.getActiveKey) {\n key = await adapter.getActiveKey(username);\n }\n break;\n\n case 'memo':\n if (adapter.getMemoKey) {\n key = await adapter.getMemoKey(username);\n } else {\n throw new Error(\n `Memo key not supported by adapter. Use memo encryption methods instead.`\n );\n }\n break;\n\n case 'posting':\n default:\n key = await adapter.getPostingKey(username);\n break;\n }\n }\n\n if (!key) {\n throw new Error(`No ${authority} key available for ${username}`);\n }\n\n // Attempt broadcast with key\n const privateKey = PrivateKey.fromString(key);\n if (broadcastMode === 'async') {\n return await broadcastOperationsAsync(ops, privateKey);\n }\n return await broadcastOperations(ops, privateKey);\n }\n\n case 'hiveauth': {\n if (!adapter?.broadcastWithHiveAuth) {\n throw new Error('HiveAuth not supported by adapter');\n }\n return await adapter.broadcastWithHiveAuth(username, ops, authority);\n }\n\n case 'hivesigner': {\n if (!adapter) {\n throw new Error('No adapter provided for HiveSigner auth');\n }\n\n // Access tokens only have posting authority — for active/owner/memo ops,\n // go directly to platform-specific HiveSigner broadcast (e.g., redirect to hivesigner.com)\n if (authority !== 'posting') {\n if (adapter.broadcastWithHiveSigner) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n throw new Error(`HiveSigner access token cannot sign ${authority} operations. No platform broadcast available.`);\n }\n\n // Try direct API broadcast with access token first (posting ops only)\n const token = fetchedToken !== undefined\n ? fetchedToken\n : await adapter.getAccessToken(username);\n\n if (token) {\n try {\n const client = new hs.Client({ accessToken: token });\n const response = await client.broadcast(ops);\n return response.result;\n } catch (tokenError) {\n // Token broadcast failed — try platform-specific HiveSigner broadcast\n if (adapter.broadcastWithHiveSigner && shouldTriggerAuthFallback(tokenError)) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n throw tokenError;\n }\n }\n\n // No token available — try platform-specific HiveSigner broadcast\n if (adapter.broadcastWithHiveSigner) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n\n throw new Error(`No access token available for ${username}`);\n }\n\n case 'keychain': {\n if (!adapter?.broadcastWithKeychain) {\n throw new Error('Keychain not supported by adapter');\n }\n return await adapter.broadcastWithKeychain(username, ops, authority);\n }\n\n case 'custom': {\n if (!auth?.broadcast) {\n throw new Error('No custom broadcast function provided');\n }\n return (await auth.broadcast(ops, authority)) as TransactionConfirmation;\n }\n\n default:\n throw new Error(`Unknown auth method: ${method}`);\n }\n}\n\n/**\n * Attempts to broadcast operations using multiple auth methods in fallback chain.\n * Implements sophisticated fallback pattern from mobile app.\n *\n * @param username - Hive username to broadcast for\n * @param ops - Operations to broadcast\n * @param auth - AuthContextV2 with adapter and fallback configuration\n * @param authority - Key authority to use ('posting' | 'active' | 'owner' | 'memo'), defaults to 'posting'\n * @returns Transaction confirmation from the blockchain\n * @throws Error if all auth methods fail or if a non-auth error occurs\n *\n * @remarks\n * **Preferred Behavior (when adapter.getLoginType exists):**\n * - Calls adapter.getLoginType() to determine user's actual auth method\n * - Uses ONLY that method (no fallbacks) - more predictable and faster\n * - If it fails, throws the error immediately\n *\n * **Fallback Behavior (for backward compatibility):**\n * - Tries each auth method in the fallback chain order\n * - Only continues to next method if error is auth-related (missing authority, token expired)\n * - Stops immediately for non-auth errors (RC exhaustion, network errors, validation errors)\n * - Collects all errors and provides detailed failure message\n *\n * @example\n * ```typescript\n * // Preferred: Adapter with getLoginType (single method, no fallbacks)\n * const auth: AuthContextV2 = {\n * adapter: myAdapter, // includes getLoginType()\n * };\n *\n * // Legacy: Explicit fallback chain (tries multiple methods)\n * const auth: AuthContextV2 = {\n * adapter: myAdapter,\n * fallbackChain: ['key', 'hiveauth', 'hivesigner'],\n * };\n * ```\n */\nasync function broadcastWithFallback(\n username: string,\n ops: Operation[],\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n broadcastMode: BroadcastMode = 'async'\n): Promise {\n const adapter = auth?.adapter;\n\n // PREFERRED APPROACH: If adapter provides getLoginType, use smart auth strategy\n // This avoids unnecessary fallback attempts and is more predictable\n if (adapter?.getLoginType) {\n const loginType = await adapter.getLoginType(username, authority);\n\n if (loginType) {\n // SMART AUTH STRATEGY: Optimize based on login type + authority + credentials\n\n // Check if user has granted ecency.app posting authority\n const hasPostingAuth = adapter.hasPostingAuthorization\n ? await adapter.hasPostingAuthorization(username)\n : false;\n\n // OPTIMIZATION: Use HiveSigner token for posting ops when posting auth is granted\n // This is faster than direct key signing or HiveAuth for key-based logins\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'key'\n ) {\n try {\n // Try HiveSigner API first (faster)\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Only fallback if this is an auth-related error\n // Otherwise, rethrow the original error (e.g., network errors, validation errors)\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n // Fallback to direct key signing if token auth method fails\n console.warn('[SDK] HiveSigner token auth failed, falling back to key:', error);\n }\n }\n\n // OPTIMIZATION: Use HiveSigner token for keychain/MetaMask users with posting auth (faster, no popup)\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'keychain'\n ) {\n try {\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n console.warn('[SDK] HiveSigner token auth failed, falling back to keychain/snap:', error);\n }\n }\n\n // OPTIMIZATION: Use HiveSigner token for HiveAuth users with posting auth (faster)\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'hiveauth'\n ) {\n try {\n // Try HiveSigner API first (faster)\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Only fallback if this is an auth-related error\n // Otherwise, rethrow the original error (e.g., network errors, validation errors)\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n // Fallback to HiveAuth if token auth method fails\n console.warn('[SDK] HiveSigner token auth failed, falling back to HiveAuth:', error);\n }\n }\n\n // Use user's actual login method\n try {\n return await broadcastWithMethod(loginType, username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Check if error is due to missing authority (e.g., posting key trying active op)\n if (shouldTriggerAuthFallback(error)) {\n // Show auth upgrade UI if available (only for posting/active operations)\n if (\n adapter.showAuthUpgradeUI &&\n (authority === 'posting' || authority === 'active')\n ) {\n // Guard against empty operations array\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`Operation requires ${authority} authority. User declined alternate auth.`);\n }\n\n // User selected a specific method - delegate to broadcastWithMethod\n // This handles all auth methods (hiveauth, hivesigner, key, keychain, custom, etc.)\n // broadcastWithMethod already contains all necessary validation and method-specific logic\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n }\n\n // Not an auth error, or no upgrade UI available - throw original error\n throw error;\n }\n }\n\n // loginType is null — user's auth method is unknown (e.g., incomplete login data)\n if (authority === 'posting') {\n // For posting ops, try HiveSigner — access token is usually available for all logins\n try {\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (hsError) {\n if (shouldTriggerAuthFallback(hsError) && adapter.showAuthUpgradeUI) {\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`No login type available for ${username}. Please log in again.`);\n }\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n throw hsError;\n }\n } else if (authority === 'active' && adapter.showAuthUpgradeUI) {\n // For active ops, show auth upgrade dialog — no silent fallback possible\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`Operation requires ${authority} authority. User declined alternate auth.`);\n }\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n }\n\n // FALLBACK APPROACH: For backward compatibility, use fallback chain\n // This is only used if adapter doesn't provide getLoginType\n const chain = auth?.fallbackChain ?? ['key', 'hiveauth', 'hivesigner', 'keychain', 'custom'];\n const errors: Map = new Map();\n\n for (const method of chain) {\n try {\n // Check if method is available before attempting\n let shouldSkip = false;\n let skipReason = '';\n let prefetchedKey: string | null | undefined;\n let prefetchedToken: string | null | undefined;\n\n switch (method) {\n case 'key':\n if (!adapter) {\n shouldSkip = true;\n skipReason = 'No adapter provided';\n } else {\n // Pre-fetch key to check availability (will be reused in broadcast)\n let key: string | null | undefined;\n\n switch (authority) {\n case 'owner':\n if (adapter.getOwnerKey) {\n key = await adapter.getOwnerKey(username);\n }\n break;\n case 'active':\n if (adapter.getActiveKey) {\n key = await adapter.getActiveKey(username);\n }\n break;\n case 'memo':\n if (adapter.getMemoKey) {\n key = await adapter.getMemoKey(username);\n }\n break;\n case 'posting':\n default:\n key = await adapter.getPostingKey(username);\n break;\n }\n\n if (!key) {\n shouldSkip = true;\n skipReason = `No ${authority} key available`;\n } else {\n prefetchedKey = key; // Store for reuse\n }\n }\n break;\n case 'hiveauth':\n if (!adapter?.broadcastWithHiveAuth) {\n shouldSkip = true;\n skipReason = 'HiveAuth not supported by adapter';\n }\n break;\n case 'hivesigner':\n if (!adapter) {\n shouldSkip = true;\n skipReason = 'No adapter provided';\n } else {\n // Pre-fetch token if available (will be reused in broadcast)\n const token = await adapter.getAccessToken(username);\n if (token) {\n prefetchedToken = token; // Store for reuse\n }\n // When no token but adapter exists, don't skip —\n // broadcastWithMethod can fall back to adapter.broadcastWithHiveSigner\n }\n break;\n case 'keychain':\n if (!adapter?.broadcastWithKeychain) {\n shouldSkip = true;\n skipReason = 'Keychain not supported by adapter';\n }\n break;\n case 'custom':\n if (!auth?.broadcast) {\n shouldSkip = true;\n skipReason = 'No custom broadcast function provided';\n }\n break;\n }\n\n if (shouldSkip) {\n errors.set(method, new Error(`Skipped: ${skipReason}`));\n continue;\n }\n\n // Method is available, attempt broadcast with pre-fetched credentials\n return await broadcastWithMethod(method, username, ops, auth, authority, prefetchedKey, prefetchedToken, broadcastMode);\n } catch (error) {\n // Record actual error from failed broadcast attempt\n errors.set(method, error as Error);\n\n // Only continue fallback if error suggests trying another method\n if (!shouldTriggerAuthFallback(error)) {\n // If it's not an auth error, throw immediately (e.g., RC error, network error)\n throw error;\n }\n }\n }\n\n // FIX #2: Improved error message distinguishes between skips and real failures\n const hasRealAttempts = Array.from(errors.values()).some(\n error => !error.message.startsWith('Skipped:')\n );\n\n if (!hasRealAttempts) {\n // All methods were skipped (none attempted)\n const skipReasons = Array.from(errors.entries())\n .map(([method, error]) => `${method}: ${error.message}`)\n .join(', ');\n throw new Error(\n `[SDK][Broadcast] No auth methods attempted for ${username}. ${skipReasons}`\n );\n }\n\n // At least one method was attempted but all failed\n const errorMessages = Array.from(errors.entries())\n .map(([method, error]) => `${method}: ${error.message}`)\n .join(', ');\n\n throw new Error(\n `[SDK][Broadcast] All auth methods failed for ${username}. Errors: ${errorMessages}`\n );\n}\n\n/**\n * React Query mutation hook for broadcasting Hive operations.\n * Supports multiple authentication methods with automatic fallback.\n *\n * @template T - Type of the mutation payload\n * @param mutationKey - React Query mutation key for cache management\n * @param username - Hive username (required for broadcast)\n * @param operations - Function that converts payload to Hive operations\n * @param onSuccess - Success callback after broadcast completes\n * @param auth - Authentication context (supports both legacy AuthContext and new AuthContextV2)\n * @param authority - Key authority to use ('posting' | 'active' | 'owner' | 'memo'), defaults to 'posting'\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Authentication Flow:**\n *\n * 1. **With AuthContextV2 + adapter + enableFallback** (recommended for new code):\n * - Tries auth methods in fallbackChain order\n * - Smart fallback: only retries on auth errors, not RC/network errors\n * - Uses platform adapter for storage, UI, and broadcasting\n *\n * 2. **With legacy AuthContext** (backward compatible):\n * - Tries auth.broadcast() first (custom implementation)\n * - Falls back to postingKey if available\n * - Falls back to accessToken (HiveSigner) if available\n * - Throws if no auth method available\n *\n * **Backward Compatibility:**\n * - All existing code using AuthContext will continue to work\n * - AuthContextV2 extends AuthContext, so it's a drop-in replacement\n * - enableFallback defaults to false if no adapter provided\n *\n * @example\n * ```typescript\n * // New pattern with platform adapter and fallback\n * const mutation = useBroadcastMutation(\n * ['vote'],\n * username,\n * (payload) => [voteOperation(payload)],\n * () => console.log('Success!'),\n * {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * },\n * 'posting'\n * );\n *\n * // Legacy pattern (still works)\n * const mutation = useBroadcastMutation(\n * ['vote'],\n * username,\n * (payload) => [voteOperation(payload)],\n * () => console.log('Success!'),\n * { postingKey: 'wif-key' }\n * );\n * ```\n */\nexport function useBroadcastMutation(\n mutationKey: MutationKey = [],\n username: string | undefined,\n operations: (payload: T) => Operation[],\n onSuccess: UseMutationOptions[\"onSuccess\"] = () => {},\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n options?: {\n onMutate?: UseMutationOptions[\"onMutate\"];\n onError?: UseMutationOptions[\"onError\"];\n onSettled?: UseMutationOptions[\"onSettled\"];\n /**\n * Controls whether to wait for block inclusion or just mempool acceptance.\n *\n * - `'async'` (default): Returns after mempool acceptance. Recommended for\n * all operations; errors are still thrown immediately.\n *\n * - `'sync'`: Waits for block inclusion, returns block_num/trx_num.\n * Deprecated; prefer `'async'`.\n */\n broadcastMode?: BroadcastMode;\n }\n) {\n const broadcastMode = options?.broadcastMode ?? 'async';\n\n return useMutation({\n onSuccess,\n onMutate: options?.onMutate,\n onError: options?.onError,\n onSettled: options?.onSettled,\n mutationKey: [...mutationKey, username],\n mutationFn: async (payload: T) => {\n if (!username) {\n throw new Error(\n \"[Core][Broadcast] Attempted to call broadcast API with anon user\"\n );\n }\n\n const ops = operations(payload);\n\n try {\n // New: Try auth methods in fallback chain (if enabled)\n if (auth?.enableFallback !== false && auth?.adapter) {\n return await broadcastWithFallback(username, ops, auth, authority, broadcastMode);\n }\n\n // Legacy behavior: try methods in fixed order (backward compatible)\n if (auth?.broadcast) {\n return await auth.broadcast(ops, authority);\n }\n\n const postingKey = auth?.postingKey;\n if (postingKey) {\n // Legacy auth only supports posting authority\n if (authority !== 'posting') {\n throw new Error(\n `[SDK][Broadcast] Legacy auth only supports posting authority, but '${authority}' was requested. ` +\n `Use AuthContextV2 with an adapter for ${authority} operations.`\n );\n }\n\n const privateKey = PrivateKey.fromString(postingKey);\n\n return await broadcastOperations(\n ops,\n privateKey\n );\n }\n\n const accessToken = auth?.accessToken;\n if (accessToken) {\n const client = new hs.Client({ accessToken });\n const response = await client.broadcast(ops);\n return response.result;\n }\n\n throw new Error(\n \"[SDK][Broadcast] – cannot broadcast w/o posting key or token\"\n );\n } catch (e) {\n if (e instanceof RPCError) {\n // Normalize raw blockchain rejections (missing authority, RC exhaustion,\n // validation failures) from every broadcast path — sync and async — into\n // a plain Error whose message is preserved for downstream classification\n // (formatError), so React Query captures a handled mutation error.\n throw new Error(e.message);\n }\n throw e\n }\n },\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\nimport hs from \"hivesigner\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport async function broadcastJson(\n username: string | undefined,\n id: string,\n payload: T,\n auth?: AuthContextV2\n) {\n if (!username) {\n throw new Error(\n \"[Core][Broadcast] Attempted to call broadcast API with anon user\"\n );\n }\n const jjson = {\n id,\n required_auths: [],\n required_posting_auths: [username],\n json: JSON.stringify(payload),\n };\n\n if (auth?.broadcast) {\n return auth.broadcast([[\"custom_json\", jjson]], \"posting\");\n }\n\n const postingKey = auth?.postingKey;\n if (postingKey) {\n const privateKey = PrivateKey.fromString(postingKey);\n\n return broadcastOperations(\n [[\"custom_json\", jjson]],\n privateKey\n );\n }\n\n // With hivesigner access token\n const accessToken = auth?.accessToken;\n if (accessToken) {\n const response = await new hs.Client({\n accessToken,\n }).customJson([], [username], id, JSON.stringify(payload));\n return response.result;\n }\n\n /*\n * Adapter, as a last resort rather than first.\n *\n * `auth.broadcast` above is the supported caller-supplied path inherited by\n * AuthContextV2, but the web app's `getSdkAuthContext` does not populate it.\n * A Keychain user whose posting key is not stored and who has no HiveSigner\n * token therefore reached the throw below instead of being asked to sign.\n * This is reachable today from follow and unfollow.\n *\n * Placed last on purpose: every branch above already works for the sessions\n * that reach it, and reordering would change which method signs for people\n * it currently serves. This only claims cases that were previously errors.\n */\n const adapter = auth?.adapter;\n if (adapter) {\n const ops: Parameters>[1] =\n [[\"custom_json\", jjson]];\n\n if (auth?.loginType === \"keychain\" && adapter.broadcastWithKeychain) {\n return adapter.broadcastWithKeychain(username, ops, \"posting\");\n }\n if (auth?.loginType === \"hiveauth\" && adapter.broadcastWithHiveAuth) {\n return adapter.broadcastWithHiveAuth(username, ops, \"posting\");\n }\n }\n\n throw new Error(\n \"[SDK][Broadcast] – cannot broadcast w/o posting key or token\"\n );\n}\n","import type { BroadcastMode } from \"./use-broadcast-mutation\";\nimport type { PlatformAdapter } from \"@/modules/core/types\";\n\n/**\n * Delay (ms) before invalidating chain-derived queries after an async\n * broadcast. ~1.3 Hive blocks (3s/block) so the just-broadcast transaction has\n * landed in a block before we refetch — otherwise the refetch returns pre-tx\n * state (e.g. a stale wallet balance).\n */\nexport const BROADCAST_INCLUSION_DELAY_MS = 4000;\n\n/**\n * Invalidate queries after a broadcast, accounting for broadcast mode.\n *\n * - `'sync'`: the transaction already waited for block inclusion, so refetch\n * immediately (returns the adapter's promise so callers may await it).\n * - `'async'` (default) / undefined: the transaction is only in the mempool, so\n * a refetch now would read pre-tx state — defer by ~1 block.\n *\n * No-ops when the adapter can't invalidate.\n */\nexport function invalidateAfterBroadcast(\n adapter: PlatformAdapter | null | undefined,\n broadcastMode: BroadcastMode | undefined,\n keys: any[][]\n): void | Promise {\n if (!adapter?.invalidateQueries) return;\n if (broadcastMode === \"sync\") {\n // Method call (not an extracted reference) so `this` stays bound to adapter.\n return adapter.invalidateQueries(keys);\n }\n setTimeout(() => adapter.invalidateQueries?.(keys), BROADCAST_INCLUSION_DELAY_MS);\n}\n","export function withTimeoutSignal(timeoutMs: number, signal?: AbortSignal): AbortSignal {\n const timeoutSignal = AbortSignal.timeout(timeoutMs);\n if (!signal) return timeoutSignal;\n\n // AbortSignal.any is available in Chrome 116+, Safari 17.4+, Firefox 124+.\n // Fall back to manual AbortController wiring for older browsers.\n if (typeof AbortSignal.any === \"function\") {\n return AbortSignal.any([signal, timeoutSignal]);\n }\n\n const ac = new AbortController();\n const onAbort = () => {\n const reason = signal.aborted ? signal.reason : timeoutSignal.reason;\n ac.abort(reason);\n signal.removeEventListener(\"abort\", onAbort);\n timeoutSignal.removeEventListener(\"abort\", onAbort);\n };\n if (signal.aborted) {\n ac.abort(signal.reason);\n } else if (timeoutSignal.aborted) {\n ac.abort(timeoutSignal.reason);\n } else {\n signal.addEventListener(\"abort\", onAbort, { once: true });\n timeoutSignal.addEventListener(\"abort\", onAbort, { once: true });\n }\n return ac.signal;\n}\n","import { QueryClient } from \"@tanstack/react-query\";\nimport {\n config as hiveTxConfig,\n setNodes as setHiveTxNodes,\n setRestNodes as setHiveTxRestNodes,\n setRestNodesByApi as setHiveTxRestNodesByApi,\n setUserAgent as setHiveTxUserAgent,\n setResilience as setHiveTxResilience,\n setServerRpcProxy as setHiveTxServerRpcProxy,\n rpcProxyStats,\n type ResilienceOptions,\n type ServerRpcProxyOptions,\n} from \"../../hive-tx\";\nimport type { APIMethods } from \"../../hive-tx/api-types\";\n\n// Safe environment variable access for browser builds\n// In browser builds, tsup will replace process.env.* with literal values at compile time\nconst isDevelopment = (() => {\n try {\n return process.env?.NODE_ENV === 'development';\n } catch {\n return false;\n }\n})();\n\nconst getHeliusApiKey = () => {\n try {\n return process.env?.VITE_HELIUS_API_KEY;\n } catch {\n return undefined;\n }\n};\n\n/** Timeout for internal API calls (search, private API). */\nexport const INTERNAL_API_TIMEOUT_MS = 10_000;\n\n/**\n * Ceiling on `gcTime` for any query that runs during SSR.\n *\n * A long window is fine in a browser or native app, where the cache holds one\n * user's data and lives as long as the session. It is not fine in a server\n * renderer: every query schedules a gc timer, a pending timer is a GC root, and\n * `Query` holds the whole `QueryCache` — so one long-lived entry keeps\n * everything else that request cached reachable for its entire window. A server\n * process then settles at roughly `ingest rate × gcTime`, which is how\n * ecency.com's renderers ended up aborting on the old-space cap rather than\n * levelling off (2026-07-26).\n *\n * Two minutes is far longer than any single render, which is the only window a\n * server-side entry has to be reused before it is dehydrated into the payload.\n *\n * Note this bounds SDK queries at the source. `apps/web` additionally clamps\n * every query through `defaultQueryOptions`, which is what protects it from\n * options defined outside the SDK; hosts that do not clamp get the right\n * behaviour from these defaults alone.\n */\nexport const SERVER_GC_TIME_MS = 2 * 60 * 1000;\n\n/**\n * How `CONFIG.queryClient` is resolved.\n *\n * This used to be a plain `queryClient: new QueryClient()` property — a single\n * instance created at module import and shared by every caller for the lifetime\n * of the process. That is correct in a browser (one process, one user) but wrong\n * under SSR, where one process serves every request: each server render wrote its\n * fetched data into that one cache and nothing ever removed it, so the heap grew\n * monotonically until the renderer hit its old-space limit and aborted.\n *\n * A host that renders on the server registers a resolver (see\n * `ConfigManager.setQueryClientResolver`) which returns the *current request's*\n * client, so cached data dies with the request that produced it. Hosts that\n * genuinely want one long-lived client keep using `setQueryClient`, and callers\n * that configure nothing fall back to a lazily created instance.\n *\n * The resolver is consulted on every read rather than cached here on purpose:\n * request scoping is the host's concern, and only the host can know when one\n * request ends and the next begins.\n */\nlet queryClientResolver: (() => QueryClient) | undefined;\n\n/** Created on first use, and only when no resolver has been registered. */\nlet fallbackQueryClient: QueryClient | undefined;\n\nfunction resolveQueryClient(): QueryClient {\n if (queryClientResolver) {\n return queryClientResolver();\n }\n return (fallbackQueryClient ??= new QueryClient());\n}\n\nexport const CONFIG = {\n privateApiHost: \"https://ecency.com\",\n /**\n * Host for the newsletter relay routes (/api/newsletter/*), which live on\n * the WEB origin (Next.js route handlers), not on the private API service.\n * `undefined` falls back to `privateApiHost` (right for mobile, whose one\n * host serves both); the web client pins it to \"\" so newsletter requests\n * stay same-origin on ANY deployment, hostname regardless.\n */\n newsletterHost: undefined as string | undefined,\n /**\n * Observer used for bridge calls when nobody is logged in. The bridge applies\n * this account's mute list to the response, marking muted authors' posts and\n * comments `stats.gray` so clients can dim or collapse them. Anonymous\n * visitors therefore inherit Ecency's moderation instead of seeing an\n * unfiltered firehose. Apps may override via `ConfigManager.setDefaultObserver`,\n * which expects a real account rather than \"\" (see that setter).\n *\n * Note this only *marks* content: the bridge still returns muted authors'\n * posts, so an observer never shortens a feed.\n */\n defaultObserver: \"ecency\",\n /**\n * First-party client identifier sent as the `X-Ecency-Client` header on\n * search/private API requests. Lets the origin distinguish Ecency's own\n * web/mobile/SSR traffic from third-party integrators (who should use the\n * keyed api.hivesearcher.com backend instead of the public proxy). This is\n * a routing marker, not a secret. Apps may override via\n * `ConfigManager.setClientId` (e.g. \"web\" or \"mobile\") for observability.\n */\n clientId: \"ecency-sdk\",\n imageHost: \"https://i.ecency.com\",\n /** Current Hive RPC nodes. Reads from the unified hive-tx config. */\n get hiveNodes(): string[] {\n return hiveTxConfig.nodes;\n },\n heliusApiKey: getHeliusApiKey(),\n /**\n * The React Query client all SDK code reads through `getQueryClient()`.\n * Backed by a resolver so an SSR host can scope it per request — see the\n * `queryClientResolver` note above. Assigning replaces the resolver with one\n * that always returns the assigned client, preserving the previous\n * \"one client, set once\" behaviour for browser and native hosts.\n */\n get queryClient(): QueryClient {\n return resolveQueryClient();\n },\n set queryClient(client: QueryClient) {\n queryClientResolver = () => client;\n },\n pollsApiHost: \"https://poll.ecency.com\",\n plausibleHost: \"https://pl.ecency.com\",\n // DMCA filtering - can be configured by the app\n dmcaAccounts: [] as string[],\n dmcaTags: [] as string[],\n dmcaPatterns: [] as string[],\n // Pre-compiled regex patterns for performance and security\n dmcaTagRegexes: [] as RegExp[],\n dmcaPatternRegexes: [] as RegExp[],\n // Track if DMCA has been initialized to avoid duplicate logs\n _dmcaInitialized: false,\n};\n\ntype DmcaListsInput = {\n accounts?: string[];\n tags?: string[];\n posts?: string[];\n};\n\nexport namespace ConfigManager {\n export function setQueryClient(client: QueryClient) {\n CONFIG.queryClient = client;\n }\n\n /**\n * Register how the SDK should obtain its React Query client, for hosts where\n * a single shared instance is wrong — principally SSR, where one process\n * serves many requests and a shared cache both leaks memory and risks serving\n * one request's data to another.\n *\n * `resolve` is called on every SDK cache access and should return the client\n * belonging to the request currently being handled. In a Next.js App Router\n * host that means wrapping the factory in React's `cache()`, which memoises\n * per request:\n *\n * ```ts\n * ConfigManager.setQueryClientResolver(() => getQueryClient());\n * ```\n *\n * Registering a resolver supersedes any client previously passed to\n * `setQueryClient`; assigning a client afterwards supersedes the resolver.\n */\n export function setQueryClientResolver(resolve: () => QueryClient) {\n queryClientResolver = resolve;\n }\n\n /**\n * Set the private API host\n * @param host - The private API host URL (e.g., \"https://ecency.com\" or \"\" for relative URLs)\n */\n export function setPrivateApiHost(host: string) {\n CONFIG.privateApiHost = host;\n }\n\n /**\n * Set the host for the newsletter relay routes (/api/newsletter/*), or\n * `undefined` to fall back to the private API host. Use \"\" for same-origin\n * relative requests (the web client's case).\n */\n export function setNewsletterHost(host: string | undefined) {\n CONFIG.newsletterHost = host;\n }\n\n /**\n * Set the first-party client identifier sent as the `X-Ecency-Client` header\n * on search/private API requests (e.g. \"web\" or \"mobile\"). Defaults to\n * \"ecency-sdk\". Used by the origin to tell Ecency's own apps apart from\n * third-party integrators.\n * @param clientId - Short client label\n */\n export function setClientId(clientId: string) {\n CONFIG.clientId = clientId;\n }\n\n /**\n * Set the observer used for bridge calls made without a logged-in user.\n * Defaults to \"ecency\"; a third-party integrator should point this at their\n * own moderation account.\n *\n * Must be a real account. An empty value is rejected rather than treated as\n * an opt-out: consumers resolve the observer with `||`, and `getDiscussion`\n * separately falls back to the post author, so \"\" would not disable mute\n * marking. It would silently observe as someone else while being cached under\n * \"\", leaving the request and its cache key describing different things.\n * @param observer - Hive account whose mute list applies to anonymous reads\n * @throws If given an empty or whitespace-only value\n */\n export function setDefaultObserver(observer: string) {\n if (typeof observer !== \"string\" || observer.trim() === \"\") {\n throw new Error(\n \"setDefaultObserver requires a non-empty Hive account. There is no empty-string opt-out; \" +\n \"observer resolution would fall back to the post author while caching under an empty key.\"\n );\n }\n\n CONFIG.defaultObserver = observer;\n }\n\n /**\n * Get a validated base URL for API requests\n * Returns a valid base URL that can be used with new URL(path, baseUrl)\n *\n * Priority:\n * 1. CONFIG.privateApiHost if set (dev/staging or explicit config)\n * 2. window.location.origin if in browser (production with relative URLs)\n * 3. 'https://ecency.com' as fallback for SSR (production default)\n *\n * @returns A valid base URL string\n * @throws Never throws - always returns a valid URL\n */\n export function getValidatedBaseUrl(): string {\n if (CONFIG.privateApiHost) {\n return CONFIG.privateApiHost;\n }\n\n if (typeof window !== 'undefined' && window.location?.origin) {\n return window.location.origin;\n }\n\n // Fallback for SSR when privateApiHost is empty (production case)\n return 'https://ecency.com';\n }\n\n /**\n * Set the polls API host\n * @param host - The polls API host URL (e.g., \"https://poll.ecency.com\")\n */\n export function setPollsApiHost(host: string) {\n CONFIG.pollsApiHost = host;\n }\n\n /**\n * Set the image host\n * @param host - The image host URL (e.g., \"https://i.ecency.com\")\n */\n export function setImageHost(host: string) {\n CONFIG.imageHost = host;\n }\n\n /**\n * Set Hive RPC nodes, replacing the default list.\n * Delegates to the unified hive-tx `setNodes` (single validated setter,\n * shared with the lean `@ecency/sdk/hive` entry) so node configuration is\n * defined in exactly one place.\n * @param nodes - Array of Hive RPC node URLs\n */\n export function setHiveNodes(nodes: string[]) {\n setHiveTxNodes(nodes);\n }\n\n /**\n * Set the REST-API node list, replacing the default `restNodes`. Lets an app\n * add/remove REST hosts at runtime (e.g. drop an own node being decommissioned,\n * or widen the public pool) without forking + republishing the SDK. Delegates to\n * the unified hive-tx `setRestNodes` (validated, shared with `@ecency/sdk/hive`).\n * @param nodes - Array of REST-capable node URLs (without a trailing slash)\n */\n export function setRestNodes(nodes: string[]) {\n setHiveTxRestNodes(nodes);\n }\n\n /**\n * Merge per-API REST node overrides. For each API a non-empty valid list pins it\n * to those hosts (so `callREST` never wastes its retry budget on a node that\n * 404/503s the API); an empty list removes the pin (falls back to `restNodes`).\n * Other APIs' pins (e.g. the built-in `hivesense`) are preserved. Delegates to the\n * unified hive-tx `setRestNodesByApi`.\n * @param map - Partial map of REST API name → capable node URLs\n */\n export function setRestNodesByApi(map: Partial>) {\n setHiveTxRestNodesByApi(map);\n }\n\n /**\n * Set the User-Agent sent on server-side (Node) requests to Hive nodes.\n * Lets an app label its own SSR/server traffic (otherwise Node's fetch sends a\n * bare `node` UA). No effect in browsers (User-Agent is a forbidden header) or\n * React Native (keeps its native UA). Delegates to the unified hive-tx setter.\n * @param userAgent - The User-Agent string (e.g. \"ecency-web-ssr (+https://ecency.com)\")\n */\n export function setUserAgent(userAgent: string) {\n setHiveTxUserAgent(userAgent);\n }\n\n /**\n * Tune read-call tail-latency resilience: adaptive per-attempt timeouts\n * (default on) and hedged requests (default OFF — a duplicate request races\n * the next healthy node when the primary stalls, bounded by a token bucket so\n * only the slow tail hedges and pool-wide slowness self-disables it). Partial:\n * only the fields provided are changed; invalid values are ignored\n * field-by-field. Delegates to the unified hive-tx `setResilience`.\n * @param opts - e.g. `{ hedge: true }` to opt into hedged reads\n */\n export function setResilience(opts: Partial) {\n setHiveTxResilience(opts);\n }\n\n /**\n * Route allowlisted server-side RPC reads through a read-through cache in\n * front of the node pool (one cache per host, shared by every renderer\n * process). An optimization, never a dependency: any proxy failure falls\n * straight through to the node loop. No effect outside Node; null switches\n * it off. Delegates to the unified hive-tx `setServerRpcProxy`.\n * @param opts - `{ url, headers, timeoutMs, methods }` or null\n */\n export function setServerRpcProxy(opts: ServerRpcProxyOptions | null) {\n setHiveTxServerRpcProxy(opts);\n }\n\n /**\n * The live counters of that proxy path: `served` (answered by the proxy),\n * `fallback` with a per-reason breakdown (the read went to the node pool\n * after a proxy failure) and `skipped` (breaker open). The same object the\n * call path increments, exposed here because the root build carries its own\n * copy of the hive-tx internals; a consumer importing `rpcProxyStats` from\n * the `/hive` entry would read a different, never-incremented instance.\n * Read-only by contract: the web tier prints it, nothing resets it.\n */\n export function getServerRpcProxyStats(): Readonly {\n return rpcProxyStats;\n }\n\n /**\n * Static analysis: Check for known ReDoS-vulnerable patterns\n * @param pattern - Raw regex pattern string\n * @returns Object with risk level and reason\n */\n function analyzeRedosRisk(pattern: string): { safe: boolean; reason?: string } {\n // Check 1: Nested quantifiers (e.g., (a+)+, (a*)+, (a{1,})+)\n if (/(\\([^)]*[*+{][^)]*\\))[*+{]/.test(pattern)) {\n return { safe: false, reason: \"nested quantifiers detected\" };\n }\n\n // Check 2: Alternation with overlapping terms (e.g., (a|a)+, (ab|a)+)\n if (/\\([^|)]*\\|[^)]*\\)[*+{]/.test(pattern)) {\n return { safe: false, reason: \"alternation with quantifier (potential overlap)\" };\n }\n\n // Check 3: Catastrophic backtracking patterns (e.g., (a*)*b, (a+)+b)\n if (/\\([^)]*[*+][^)]*\\)[*+]/.test(pattern)) {\n return { safe: false, reason: \"repeated quantifiers (catastrophic backtracking risk)\" };\n }\n\n // Check 4: Greedy quantifiers followed by optional patterns (e.g., .*.*x, .+.+x)\n if (/\\.\\*\\.\\*/.test(pattern) || /\\.\\+\\.\\+/.test(pattern)) {\n return { safe: false, reason: \"multiple greedy quantifiers on wildcards\" };\n }\n\n // Check 5: Unbounded ranges with wildcards (e.g., .{1,999999})\n const unboundedRange = /\\.?\\{(\\d+),(\\d+)\\}/g;\n let match;\n while ((match = unboundedRange.exec(pattern)) !== null) {\n const [, min, max] = match;\n const range = parseInt(max, 10) - parseInt(min, 10);\n if (range > 1000) {\n return { safe: false, reason: `excessive range: {${min},${max}}` };\n }\n }\n\n return { safe: true };\n }\n\n /**\n * Runtime test: Execute regex against adversarial inputs with timeout\n * @param regex - Compiled regex\n * @returns Object indicating if regex passed runtime test\n */\n function testRegexPerformance(regex: RegExp): { safe: boolean; reason?: string } {\n // Test inputs designed to trigger ReDoS in vulnerable patterns\n const adversarialInputs = [\n // Nested quantifier attack\n \"a\".repeat(50) + \"x\",\n // Alternation attack\n \"ab\".repeat(50) + \"x\",\n // Wildcard attack\n \"x\".repeat(100),\n // Mixed attack\n \"aaa\".repeat(30) + \"bbb\".repeat(30) + \"x\",\n ];\n\n const maxExecutionTime = 5; // 5ms hard limit per test\n\n for (const input of adversarialInputs) {\n const start = Date.now();\n try {\n regex.test(input);\n const duration = Date.now() - start;\n\n if (duration > maxExecutionTime) {\n return {\n safe: false,\n reason: `runtime test exceeded ${maxExecutionTime}ms (took ${duration}ms on input length ${input.length})`\n };\n }\n } catch (err) {\n return { safe: false, reason: `runtime test threw error: ${err}` };\n }\n }\n\n return { safe: true };\n }\n\n /**\n * Safely compile a regex pattern with defense-in-depth validation\n * @param pattern - Raw regex pattern string\n * @param maxLength - Maximum allowed pattern length (default 200)\n * @returns Compiled RegExp or null if invalid/unsafe\n */\n function safeCompileRegex(pattern: string, maxLength = 200): RegExp | null {\n // Use the module-level isDevelopment constant\n\n try {\n // Layer 1: Basic validation\n if (!pattern) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: empty pattern`);\n }\n return null;\n }\n\n if (pattern.length > maxLength) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: length ${pattern.length} exceeds max ${maxLength} - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n // Layer 2: Static ReDoS analysis\n const staticAnalysis = analyzeRedosRisk(pattern);\n if (!staticAnalysis.safe) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${staticAnalysis.reason}) - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n // Layer 3: Compilation attempt\n let regex: RegExp;\n try {\n regex = new RegExp(pattern);\n } catch (compileErr) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${pattern.substring(0, 50)}...`, compileErr);\n }\n return null;\n }\n\n // Layer 4: Runtime performance testing\n const runtimeTest = testRegexPerformance(regex);\n if (!runtimeTest.safe) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${runtimeTest.reason}) - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n return regex;\n } catch (err) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${pattern.substring(0, 50)}...`, err);\n }\n return null;\n }\n }\n\n /**\n * Set DMCA filtering lists\n * @param lists - DMCA lists object containing accounts/tags/posts arrays\n */\n export function setDmcaLists(\n lists: DmcaListsInput = {}\n ) {\n const coerceList = (value: unknown): string[] =>\n Array.isArray(value) ? value.filter((item): item is string => typeof item === \"string\") : [];\n\n // Ensure we have a valid object to work with\n const input = lists || {};\n\n const resolved = {\n accounts: coerceList(input.accounts),\n tags: coerceList(input.tags),\n patterns: coerceList(input.posts),\n };\n\n CONFIG.dmcaAccounts = resolved.accounts;\n CONFIG.dmcaTags = resolved.tags;\n CONFIG.dmcaPatterns = resolved.patterns;\n\n // Pre-compile tag regex patterns (tags can be regex)\n CONFIG.dmcaTagRegexes = resolved.tags\n .map((pattern) => safeCompileRegex(pattern))\n .filter((r): r is RegExp => r !== null);\n\n // Post patterns are plain strings for exact matching, not regex\n // No compilation needed - they will be used with simple string comparison\n CONFIG.dmcaPatternRegexes = [];\n\n const rejectedTagCount = resolved.tags.length - CONFIG.dmcaTagRegexes.length;\n\n // Only log once to avoid noise during builds/hot reloads\n // Only show in development mode to avoid cluttering production console\n // Use the module-level isDevelopment constant\n\n if (!CONFIG._dmcaInitialized && isDevelopment) {\n console.log(`[SDK] DMCA configuration loaded:`);\n console.log(` - Accounts: ${resolved.accounts.length}`);\n console.log(` - Tag patterns: ${CONFIG.dmcaTagRegexes.length}/${resolved.tags.length} compiled (${rejectedTagCount} rejected)`);\n console.log(` - Post patterns: ${resolved.patterns.length} (using exact string matching)`);\n\n if (rejectedTagCount > 0) {\n console.warn(`[SDK] ${rejectedTagCount} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`);\n }\n }\n\n CONFIG._dmcaInitialized = true;\n }\n}\n","import {\n InfiniteData,\n QueryClient,\n QueryKey,\n useInfiniteQuery,\n UseInfiniteQueryOptions,\n useQuery,\n UseQueryOptions,\n} from \"@tanstack/react-query\";\nimport { CONFIG } from \"./config\";\n\n/**\n * Builds a client with the SDK's defaults. It is only a factory — request\n * scoping is the host's job, via `ConfigManager.setQueryClientResolver`, since\n * only the host knows where one request ends and the next begins.\n */\nexport function makeQueryClient() {\n return new QueryClient({\n defaultOptions: {\n queries: {\n // With SSR, we usually want to set some default staleTime\n // above 0 to avoid refetching immediately on the client\n // staleTime: 60 * 1000,\n refetchOnWindowFocus: false,\n refetchOnMount: false,\n },\n },\n });\n}\nexport const getQueryClient = () => CONFIG.queryClient;\n\nexport namespace EcencyQueriesManager {\n export function getQueryData(queryKey: QueryKey) {\n const queryClient = getQueryClient();\n return queryClient.getQueryData(queryKey);\n }\n\n export function getInfiniteQueryData(queryKey: QueryKey) {\n const queryClient = getQueryClient();\n return queryClient.getQueryData>(queryKey);\n }\n\n export async function prefetchQuery(options: UseQueryOptions) {\n const queryClient = getQueryClient();\n await queryClient.prefetchQuery(options);\n return getQueryData(options.queryKey);\n }\n\n export async function prefetchInfiniteQuery(\n options: UseInfiniteQueryOptions<\n T,\n Error,\n InfiniteData,\n QueryKey,\n P\n >\n ) {\n const queryClient = getQueryClient();\n await queryClient.prefetchInfiniteQuery(options);\n return getInfiniteQueryData(options.queryKey);\n }\n\n export function generateClientServerQuery(options: UseQueryOptions) {\n return {\n prefetch: () => prefetchQuery(options),\n getData: () => getQueryData(options.queryKey),\n useClientQuery: () => useQuery(options),\n fetchAndGet: () => getQueryClient().fetchQuery(options),\n };\n }\n\n export function generateClientServerInfiniteQuery(\n options: UseInfiniteQueryOptions<\n T,\n Error,\n InfiniteData,\n QueryKey,\n P\n >\n ) {\n return {\n prefetch: () => prefetchInfiniteQuery(options),\n getData: () => getInfiniteQueryData(options.queryKey),\n useClientQuery: () => useInfiniteQuery(options),\n fetchAndGet: () => getQueryClient().fetchInfiniteQuery(options),\n };\n }\n}\n","export function encodeObj(o: any): string {\n return btoa(JSON.stringify(o));\n}\n\nexport function decodeObj(o: any): any {\n let dataToParse = atob(o);\n if (dataToParse[0] !== \"{\") {\n return undefined;\n }\n return JSON.parse(dataToParse);\n}\n","import type { SMTAsset } from \"@/modules/core/hive-tx\";\n\nexport enum Symbol {\n HIVE = \"HIVE\",\n HBD = \"HBD\",\n VESTS = \"VESTS\",\n}\n\nexport enum NaiMap {\n \"@@000000021\" = \"HIVE\",\n \"@@000000013\" = \"HBD\",\n \"@@000000037\" = \"VESTS\",\n}\n\nexport interface Asset {\n amount: number;\n symbol: Symbol;\n}\n\nexport function parseAsset(sval: string | SMTAsset): Asset {\n if (typeof sval === \"string\") {\n const sp = sval.split(\" \");\n return {\n amount: parseFloat(sp[0]),\n // @ts-ignore\n symbol: Symbol[sp[1]],\n };\n } else {\n return {\n amount: parseFloat(sval.amount.toString()) / Math.pow(10, sval.precision),\n // @ts-ignore\n symbol: NaiMap[sval.nai],\n };\n }\n}\n","let cachedFetch: typeof globalThis.fetch | undefined;\n\nexport function getBoundFetch() {\n if (!cachedFetch) {\n if (typeof globalThis.fetch !== \"function\") {\n throw new Error(\"[Ecency][SDK] - global fetch is not available\");\n }\n\n cachedFetch = globalThis.fetch.bind(globalThis);\n }\n\n return cachedFetch;\n}\n","export function isCommunity(value: unknown) {\n return typeof value === \"string\" ? /^hive-\\d+$/.test(value) : false;\n}\n","import { WrappedResponse } from \"../types/pagination\";\n\n/**\n * Type guard to check if response is wrapped with pagination metadata\n */\nexport function isWrappedResponse(response: any): response is WrappedResponse {\n return (\n response &&\n typeof response === \"object\" &&\n \"data\" in response &&\n \"pagination\" in response &&\n Array.isArray(response.data)\n );\n}\n\n/**\n * Normalize response to wrapped format for backwards compatibility\n * If the backend returns old format (array), convert it to wrapped format\n */\nexport function normalizeToWrappedResponse(\n response: T[] | WrappedResponse,\n limit: number\n): WrappedResponse {\n if (isWrappedResponse(response)) {\n return response;\n }\n\n // Old format - just an array\n // Since we don't have pagination metadata, assume no more pages\n return {\n data: Array.isArray(response) ? response : [],\n pagination: {\n total: Array.isArray(response) ? response.length : 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n}\n","export function vestsToHp(vests: number, hivePerMVests: number): number {\n return (vests / 1e6) * hivePerMVests;\n}\n","export function isEmptyDate(s: string | undefined): boolean {\n if (s === undefined) {\n return true;\n }\n\n return parseInt(s.split(\"-\")[0], 10) < 1980;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { DynamicProps } from \"../types\";\nimport { parseAsset } from \"../utils\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n// This query powers wallet/HP/reward math that should stay close to chain state.\n// Keep a short refresh cadence despite the 5 RPC calls.\nconst DYNAMIC_PROPS_REFRESH_MS = 60 * 1000;\n\nexport function getDynamicPropsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.core.dynamicProps(),\n refetchInterval: DYNAMIC_PROPS_REFRESH_MS,\n staleTime: DYNAMIC_PROPS_REFRESH_MS,\n queryFn: async ({ signal }): Promise => {\n // Get raw blockchain data — all five calls are independent, run in parallel.\n // Hardfork properties is wrapped with catch since not all nodes support it.\n const [rawGlobalDynamic, rawFeedHistory, rawChainProps, rawRewardFund, rawHardforkProps] = await Promise.all([\n callRPC(\"condenser_api.get_dynamic_global_properties\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_feed_history\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_chain_properties\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_reward_fund\", [\"post\"], undefined, undefined, signal),\n callRPC(\"database_api.get_hardfork_properties\", {}, undefined, undefined, signal)\n .catch(() => ({ current_hardfork_version: \"1.28.0\", last_hardfork: 28 })),\n ]) as [any, any, any, any, any];\n\n // Calculate derived values for backward compatibility\n // parseAsset handles both string format (\"200905388484 HIVE\") and NAI format ({ amount, nai, precision })\n const totalVestingSharesAmount = parseAsset(rawGlobalDynamic.total_vesting_shares).amount;\n const totalVestingFundAmount = parseAsset(rawGlobalDynamic.total_vesting_fund_hive).amount;\n\n // Guard against division by zero/NaN/Infinity\n let hivePerMVests = 0;\n if (\n Number.isFinite(totalVestingSharesAmount) &&\n totalVestingSharesAmount !== 0 &&\n Number.isFinite(totalVestingFundAmount)\n ) {\n hivePerMVests = (totalVestingFundAmount / totalVestingSharesAmount) * 1e6;\n }\n const base = parseAsset(rawFeedHistory.current_median_history.base).amount;\n const quote = parseAsset(rawFeedHistory.current_median_history.quote).amount;\n const fundRecentClaims = parseFloat(rawRewardFund.recent_claims);\n const fundRewardBalance = parseAsset(rawRewardFund.reward_balance).amount;\n const votePowerReserveRate = Number(rawGlobalDynamic.vote_power_reserve_rate ?? 0);\n const authorRewardCurve = rawRewardFund.author_reward_curve ?? \"linear\";\n const contentConstant = Number(rawRewardFund.content_constant ?? 0);\n const currentHardforkVersion = String(rawHardforkProps.current_hardfork_version ?? \"0.0.0\");\n const lastHardfork = Number(rawHardforkProps.last_hardfork ?? 0);\n const hbdPrintRate = rawGlobalDynamic.hbd_print_rate;\n const hbdInterestRate = rawGlobalDynamic.hbd_interest_rate;\n const headBlock = rawGlobalDynamic.head_block_number;\n const totalVestingFund = totalVestingFundAmount;\n const totalVestingShares = totalVestingSharesAmount;\n const virtualSupply = parseAsset(rawGlobalDynamic.virtual_supply).amount;\n const vestingRewardPercent = rawGlobalDynamic.vesting_reward_percent || 0;\n const accountCreationFee = rawChainProps.account_creation_fee;\n\n return {\n // Backward compatible transformed fields (camelCase, parsed)\n hivePerMVests,\n base,\n quote,\n fundRecentClaims,\n fundRewardBalance,\n votePowerReserveRate,\n authorRewardCurve,\n contentConstant,\n currentHardforkVersion,\n lastHardfork,\n hbdPrintRate,\n hbdInterestRate,\n headBlock,\n totalVestingFund,\n totalVestingShares,\n virtualSupply,\n vestingRewardPercent,\n accountCreationFee,\n\n // Raw blockchain data (snake_case, unparsed) for direct use\n // Includes ALL fields from the blockchain responses\n raw: {\n globalDynamic: rawGlobalDynamic,\n feedHistory: rawFeedHistory,\n chainProps: rawChainProps,\n rewardFund: rawRewardFund,\n hardforkProps: rawHardforkProps,\n },\n } as DynamicProps;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface RewardFund {\n id: number;\n name: string;\n reward_balance: string;\n recent_claims: string;\n last_update: string;\n content_constant: string;\n percent_curation_rewards: number;\n percent_content_rewards: number;\n author_reward_curve: string;\n curation_reward_curve: string;\n}\n\n/**\n * Get reward fund information from the blockchain\n * @param fundName - Name of the reward fund (default: 'post')\n */\nexport function getRewardFundQueryOptions(fundName = \"post\") {\n return queryOptions({\n queryKey: QueryKeys.core.rewardFund(fundName),\n queryFn: () =>\n callRPC(\"condenser_api.get_reward_fund\", [\n fundName,\n ]) as Promise,\n });\n}\n","/**\n * Centralized query key definitions for all SDK queries.\n *\n * These key builders are the single source of truth for React Query cache keys.\n * Both SDK query options and web app consumers should reference these\n * instead of using inline string arrays.\n *\n * @example\n * ```typescript\n * import { QueryKeys } from \"@ecency/sdk\";\n *\n * // In query options\n * queryKey: QueryKeys.posts.entry(`/@${author}/${permlink}`)\n *\n * // In cache invalidation\n * queryClient.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) })\n * ```\n */\n/** Strip trailing undefined values so the key works as a prefix for partialMatchKey */\nfunction key(...parts: unknown[]): unknown[] {\n let end = parts.length;\n while (end > 0 && parts[end - 1] === undefined) {\n end--;\n }\n return parts.slice(0, end);\n}\n\nexport const QueryKeys = {\n // ===========================================================================\n // Posts\n // ===========================================================================\n posts: {\n entry: (entryPath: string) => [\"posts\", \"entry\", entryPath],\n postHeader: (author: string, permlink?: string) =>\n [\"posts\", \"post-header\", author, permlink],\n content: (author: string, permlink: string) =>\n [\"posts\", \"content\", author, permlink],\n contentReplies: (author: string, permlink: string) =>\n [\"posts\", \"content-replies\", author, permlink],\n accountPosts: (\n username: string,\n filter: string,\n limit: number,\n observer: string\n ) => [\"posts\", \"account-posts\", username, filter, limit, observer],\n accountPostsPage: (\n username: string,\n filter: string,\n startAuthor: string,\n startPermlink: string,\n limit: number,\n observer: string\n ) =>\n [\n \"posts\",\n \"account-posts-page\",\n username,\n filter,\n startAuthor,\n startPermlink,\n limit,\n observer,\n ],\n userPostVote: (username: string, author: string, permlink: string) =>\n [\"posts\", \"user-vote\", username, author, permlink],\n reblogs: (username: string, limit: number) =>\n [\"posts\", \"reblogs\", username, limit],\n entryActiveVotes: (author?: string, permlink?: string) =>\n [\"posts\", \"entry-active-votes\", author, permlink],\n rebloggedBy: (author: string, permlink: string) =>\n [\"posts\", \"reblogged-by\", author, permlink],\n tips: (author: string, permlink: string) =>\n [\"posts\", \"tips\", author, permlink],\n normalize: (author: string, permlink: string) =>\n [\"posts\", \"normalize\", author, permlink],\n drafts: (activeUsername?: string) =>\n [\"posts\", \"drafts\", activeUsername],\n draftsInfinite: (activeUsername?: string, limit?: number) =>\n key(\"posts\", \"drafts\", \"infinite\", activeUsername, limit),\n schedules: (activeUsername?: string) =>\n [\"posts\", \"schedules\", activeUsername],\n schedulesInfinite: (activeUsername?: string, limit?: number) =>\n key(\"posts\", \"schedules\", \"infinite\", activeUsername, limit),\n fragments: (username?: string) =>\n [\"posts\", \"fragments\", username],\n fragmentsInfinite: (username?: string, limit?: number) =>\n key(\"posts\", \"fragments\", \"infinite\", username, limit),\n images: (username?: string) => [\"posts\", \"images\", username],\n galleryImages: (activeUsername?: string) =>\n [\"posts\", \"gallery-images\", activeUsername],\n imagesInfinite: (username?: string, limit?: number) =>\n key(\"posts\", \"images\", \"infinite\", username, limit),\n promoted: (type: string) => [\"posts\", \"promoted\", type],\n _promotedPrefix: [\"posts\", \"promoted\"],\n accountPostsBlogPrefix: (username: string) =>\n [\"posts\", \"account-posts\", username, \"blog\"] as const,\n postsRanked: (\n sort: string,\n tag: string,\n limit: number,\n observer: string\n ) => [\"posts\", \"posts-ranked\", sort, tag, limit, observer],\n postsRankedPage: (\n sort: string,\n startAuthor: string,\n startPermlink: string,\n limit: number,\n tag: string,\n observer: string\n ) =>\n [\n \"posts\",\n \"posts-ranked-page\",\n sort,\n startAuthor,\n startPermlink,\n limit,\n tag,\n observer,\n ],\n discussions: (\n author: string,\n permlink: string,\n order: string,\n observer: string\n ) => [\"posts\", \"discussions\", author, permlink, order, observer],\n discussion: (author: string, permlink: string, observer: string) =>\n [\"posts\", \"discussion\", author, permlink, observer],\n deletedEntry: (entryPath: string) =>\n [\"posts\", \"deleted-entry\", entryPath],\n commentHistory: (\n author: string,\n permlink: string,\n onlyMeta: boolean\n ) => [\"posts\", \"comment-history\", author, permlink, onlyMeta],\n trendingTags: () => [\"posts\", \"trending-tags\"],\n trendingTagsWithStats: (limit: number) =>\n [\"posts\", \"trending-tags\", \"stats\", limit],\n wavesFeed: (\n params: {\n containers?: string[];\n tag?: string;\n following?: string;\n author?: string;\n observer?: string;\n limit?: number;\n } = {}\n ) => [\n \"posts\",\n \"waves\",\n \"feed\",\n params.tag ?? \"\",\n params.following ?? \"\",\n params.author ?? \"\",\n params.observer ?? \"\",\n params.limit ?? 0,\n [...(params.containers ?? [])].sort().join(\",\")\n ],\n shortsFeed: (\n params: {\n containers?: string[];\n tag?: string;\n author?: string;\n observer?: string;\n limit?: number;\n } = {}\n ) => [\n \"posts\",\n \"waves\",\n \"shorts\",\n params.tag ?? \"\",\n params.author ?? \"\",\n params.observer ?? \"\",\n params.limit ?? 0,\n [...(params.containers ?? [])].sort().join(\",\")\n ],\n wavesByHost: (host: string) =>\n [\"posts\", \"waves\", \"by-host\", host],\n wavesByTag: (host: string, tag: string) =>\n [\"posts\", \"waves\", \"by-tag\", host, tag],\n wavesFollowing: (host: string, username: string) =>\n [\"posts\", \"waves\", \"following\", host, username],\n wavesTrendingTags: (host: string, hours: number) =>\n [\"posts\", \"waves\", \"trending-tags\", host, hours],\n wavesByAccount: (host: string, username: string) =>\n [\"posts\", \"waves\", \"by-account\", host, username],\n wavesTrendingAuthors: (host: string) =>\n [\"posts\", \"waves\", \"trending-authors\", host],\n _prefix: [\"posts\"],\n },\n\n // ===========================================================================\n // Accounts\n // ===========================================================================\n accounts: {\n full: (username?: string) => [\"get-account-full\", username],\n list: (...usernames: string[]) =>\n [\"accounts\", \"list\", ...usernames],\n friends: (\n following: string,\n mode: string,\n followType: string,\n limit: number\n ) => [\"accounts\", \"friends\", following, mode, followType, limit],\n searchFriends: (username: string, mode: string, query: string) =>\n [\"accounts\", \"friends\", \"search\", username, mode, query],\n subscriptions: (username: string) =>\n [\"accounts\", \"subscriptions\", username],\n followCount: (username: string) =>\n [\"accounts\", \"follow-count\", username],\n recoveries: (username: string) =>\n [\"accounts\", \"recoveries\", username],\n pendingRecovery: (username: string) =>\n [\"accounts\", \"recoveries\", username, \"pending-request\"],\n checkWalletPending: (username: string, code: string | null) =>\n [\"accounts\", \"check-wallet-pending\", username, code],\n mutedUsers: (username: string) =>\n [\"accounts\", \"muted-users\", username],\n following: (\n follower: string,\n startFollowing: string,\n followType: string,\n limit: number\n ) =>\n [\n \"accounts\",\n \"following\",\n follower,\n startFollowing,\n followType,\n limit,\n ],\n followers: (\n following: string,\n startFollower: string,\n followType: string,\n limit: number\n ) =>\n [\n \"accounts\",\n \"followers\",\n following,\n startFollower,\n followType,\n limit,\n ],\n search: (query: string, excludeList?: string[]) =>\n [\"accounts\", \"search\", query, excludeList],\n profiles: (accounts: string[], observer: string) =>\n [\"accounts\", \"profiles\", accounts, observer],\n lookup: (query: string, limit: number) =>\n [\"accounts\", \"lookup\", query, limit],\n transactions: (username: string, group: string, limit: number) =>\n [\"accounts\", \"transactions\", username, group, limit],\n favorites: (activeUsername?: string) =>\n [\"accounts\", \"favorites\", activeUsername],\n favoritesInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"favorites\", \"infinite\", activeUsername, limit),\n checkFavorite: (activeUsername: string, targetUsername: string) =>\n [\n \"accounts\",\n \"favorites\",\n \"check\",\n activeUsername,\n targetUsername,\n ],\n favoriteTags: (activeUsername?: string) =>\n [\"accounts\", \"favorite-tags\", activeUsername],\n favoriteTagsInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"favorite-tags\", \"infinite\", activeUsername, limit),\n checkFavoriteTag: (activeUsername: string, tag: string) =>\n [\"accounts\", \"favorite-tags\", \"check\", activeUsername, tag],\n relations: (reference: string | undefined, target: string | undefined) =>\n [\"accounts\", \"relations\", reference, target],\n bots: () => [\"accounts\", \"bots\"],\n voteHistory: (username: string, limit: number) =>\n [\"accounts\", \"vote-history\", username, limit],\n reputations: (query: string, limit: number) =>\n [\"accounts\", \"reputations\", query, limit],\n bookmarks: (activeUsername?: string) =>\n [\"accounts\", \"bookmarks\", activeUsername],\n bookmarksInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"bookmarks\", \"infinite\", activeUsername, limit),\n referrals: (username: string) =>\n [\"accounts\", \"referrals\", username],\n referralsStats: (username: string) =>\n [\"accounts\", \"referrals-stats\", username],\n proMembers: () => [\"accounts\", \"pro-members\"],\n _prefix: [\"accounts\"],\n },\n\n // ===========================================================================\n // Notifications\n // ===========================================================================\n notifications: {\n announcements: () => [\"notifications\", \"announcements\"],\n spotlights: () => [\"notifications\", \"spotlights\"],\n list: (activeUsername?: string, filter?: string) =>\n [\"notifications\", activeUsername, filter],\n unreadCount: (activeUsername?: string) =>\n [\"notifications\", \"unread\", activeUsername],\n settings: (activeUsername?: string) =>\n [\"notifications\", \"settings\", activeUsername],\n _prefix: [\"notifications\"],\n },\n\n // ===========================================================================\n // Core\n // ===========================================================================\n core: {\n rewardFund: (fundName: string) =>\n [\"core\", \"reward-fund\", fundName],\n dynamicProps: () => [\"core\", \"dynamic-props\"],\n chainProperties: () => [\"core\", \"chain-properties\"],\n _prefix: [\"core\"],\n },\n\n // ===========================================================================\n // Communities\n // ===========================================================================\n communities: {\n single: (name?: string, observer?: string) =>\n [\"community\", \"single\", name, observer],\n /** Prefix key for matching all observer variants of a community */\n singlePrefix: (name: string) =>\n [\"community\", \"single\", name] as const,\n context: (username: string, communityName: string) =>\n [\"community\", \"context\", username, communityName],\n rewarded: () => [\"communities\", \"rewarded\"],\n list: (sort: string, query: string, limit: number) =>\n [\"communities\", \"list\", sort, query, limit],\n subscribers: (communityName: string) =>\n [\"communities\", \"subscribers\", communityName],\n subscribersInfinite: (communityName: string) =>\n [\"communities\", \"subscribers\", \"infinite\", communityName],\n accountNotifications: (account: string, limit: number) =>\n [\"communities\", \"account-notifications\", account, limit],\n },\n\n // ===========================================================================\n // Proposals\n // ===========================================================================\n proposals: {\n list: () => [\"proposals\", \"list\"],\n proposal: (id: number) => [\"proposals\", \"proposal\", id],\n votes: (proposalId: number, voter: string, limit: number) =>\n [\"proposals\", \"votes\", proposalId, voter, limit],\n votesPrefix: (proposalId: number) =>\n [\"proposals\", \"votes\", proposalId] as const,\n votesByUser: (voter: string) =>\n [\"proposals\", \"votes\", \"by-user\", voter],\n },\n\n // ===========================================================================\n // Search\n // ===========================================================================\n search: {\n topics: (q: string, limit: number) => [\"search\", \"topics\", q, limit],\n path: (q: string) => [\"search\", \"path\", q],\n account: (q: string, limit: number) =>\n [\"search\", \"account\", q, limit],\n results: (\n q: string,\n sort: string,\n hideLow: boolean | string,\n since?: string,\n scrollId?: string,\n votes?: number\n ) => {\n const normalizedHideLow = typeof hideLow === \"string\" ? hideLow === \"1\" || hideLow === \"true\" : hideLow;\n return [\"search\", q, sort, normalizedHideLow, since, scrollId, votes] as const;\n },\n controversialRising: (what: string, tag: string) =>\n [\"search\", \"controversial-rising\", what, tag],\n similarEntries: (author: string, permlink: string, content?: string) =>\n content\n ? [\"search\", \"similar-entries\", author, permlink, content]\n : [\"search\", \"similar-entries\", author, permlink],\n api: (\n q: string,\n sort: string,\n hideLow: boolean,\n since?: string,\n votes?: number,\n includeNsfw?: boolean\n ) => key(\"search\", \"api\", q, sort, hideLow, since, votes, includeNsfw),\n },\n\n // ===========================================================================\n // Witnesses\n // ===========================================================================\n witnesses: {\n list: (limit: number) => [\"witnesses\", \"list\", limit],\n votes: (username: string | undefined) => [\"witnesses\", \"votes\", username],\n proxy: () => [\"witnesses\", \"proxy\"],\n voters: (\n witness: string,\n page: number,\n pageSize: number,\n sort: string,\n direction: string\n ) => [\"witnesses\", \"voters\", witness, page, pageSize, sort, direction],\n voterCount: (witness: string) =>\n [\"witnesses\", \"voter-count\", witness],\n },\n\n // ===========================================================================\n // Wallet\n // ===========================================================================\n wallet: {\n outgoingRcDelegations: (username: string, limit: number) =>\n [\"wallet\", \"outgoing-rc-delegations\", username, limit],\n vestingDelegations: (username: string, limit: number) =>\n [\"wallet\", \"vesting-delegations\", username, limit],\n withdrawRoutes: (account: string) =>\n [\"wallet\", \"withdraw-routes\", account],\n incomingRc: (username: string) =>\n [\"wallet\", \"incoming-rc\", username],\n conversionRequests: (account: string) =>\n [\"wallet\", \"conversion-requests\", account],\n receivedVestingShares: (username: string) =>\n [\"wallet\", \"received-vesting-shares\", username],\n savingsWithdraw: (account: string) =>\n [\"wallet\", \"savings-withdraw\", account],\n openOrders: (user: string) =>\n [\"wallet\", \"open-orders\", user],\n collateralizedConversionRequests: (account: string) =>\n [\"wallet\", \"collateralized-conversion-requests\", account],\n recurrentTransfers: (username: string) =>\n [\"wallet\", \"recurrent-transfers\", username],\n balanceHistory: (username: string, coinType: string, pageSize: number) =>\n [\"wallet\", \"balance-history\", username, coinType, pageSize],\n aggregatedHistory: (\n username: string,\n coinType: string,\n granularity?: \"yearly\" | \"monthly\" | \"daily\"\n ) =>\n granularity === undefined\n ? [\"wallet\", \"aggregated-history\", username, coinType]\n : [\"wallet\", \"aggregated-history\", username, coinType, granularity],\n portfolio: (\n username: string,\n onlyEnabled: string,\n currency: string\n ) =>\n [\"wallet\", \"portfolio\", \"v2\", username, onlyEnabled, currency],\n },\n\n // ===========================================================================\n // Assets\n // ===========================================================================\n assets: {\n hiveGeneralInfo: (username: string) =>\n [\"assets\", \"hive\", \"general-info\", username],\n hiveTransactions: (username: string, limit: number, filterKey: string) =>\n [\"assets\", \"hive\", \"transactions\", username, limit, filterKey],\n hiveWithdrawalRoutes: (username: string) =>\n [\"assets\", \"hive\", \"withdrawal-routes\", username],\n hiveMetrics: (bucketSeconds: number) =>\n [\"assets\", \"hive\", \"metrics\", bucketSeconds],\n hbdGeneralInfo: (username: string) =>\n [\"assets\", \"hbd\", \"general-info\", username],\n hbdTransactions: (\n username: string,\n limit: number,\n filterKey: string\n ) => [\"assets\", \"hbd\", \"transactions\", username, limit, filterKey],\n hivePowerGeneralInfo: (username: string) =>\n [\"assets\", \"hive-power\", \"general-info\", username],\n hivePowerDelegates: (username: string) =>\n [\"assets\", \"hive-power\", \"delegates\", username],\n hivePowerDelegatings: (username: string) =>\n [\"assets\", \"hive-power\", \"delegatings\", username],\n hivePowerTransactions: (\n username: string,\n limit: number,\n filterKey: string\n ) =>\n [\n \"assets\",\n \"hive-power\",\n \"transactions\",\n username,\n limit,\n filterKey,\n ],\n pointsGeneralInfo: (username: string) =>\n [\"assets\", \"points\", \"general-info\", username],\n pointsTransactions: (username: string, type: string) =>\n [\"assets\", \"points\", \"transactions\", username, type],\n ecencyAssetInfo: (username: string, asset: string, currency: string) =>\n [\"ecency-wallets\", \"asset-info\", username, asset, currency],\n },\n\n // ===========================================================================\n // Market\n // ===========================================================================\n market: {\n statistics: () => [\"market\", \"statistics\"],\n orderBook: (limit: number) => [\"market\", \"order-book\", limit],\n history: (seconds: number, startDate: number, endDate: number) =>\n [\"market\", \"history\", seconds, startDate, endDate],\n feedHistory: () => [\"market\", \"feed-history\"],\n hiveHbdStats: () => [\"market\", \"hive-hbd-stats\"],\n data: (\n coin: string,\n vsCurrency: string,\n fromTs: number,\n toTs: number\n ) => [\"market\", \"data\", coin, vsCurrency, fromTs, toTs],\n tradeHistory: (limit: number, start: number, end: number) =>\n [\"market\", \"trade-history\", limit, start, end],\n currentMedianHistoryPrice: () =>\n [\"market\", \"current-median-history-price\"],\n },\n\n // ===========================================================================\n // Analytics\n // ===========================================================================\n analytics: {\n discoverCuration: (duration: string) =>\n [\"analytics\", \"discover-curation\", duration],\n pageStats: (\n url: string,\n dimensions: string,\n metrics: string,\n dateRange: string\n ) =>\n [\"analytics\", \"page-stats\", url, dimensions, metrics, dateRange],\n discoverLeaderboard: (duration: string) =>\n [\"analytics\", \"discover-leaderboard\", duration],\n },\n\n // ===========================================================================\n // Promotions\n // ===========================================================================\n promotions: {\n promotePrice: () => [\"promotions\", \"promote-price\"],\n boostPlusPrices: () => [\"promotions\", \"boost-plus-prices\"],\n boostPlusAccounts: (account: string) =>\n [\"promotions\", \"boost-plus-accounts\", account],\n },\n\n // ===========================================================================\n // Resource Credits\n // ===========================================================================\n resourceCredits: {\n account: (username: string) =>\n [\"resource-credits\", \"account\", username],\n stats: () => [\"resource-credits\", \"stats\"],\n resourceParams: () => [\"resource-credits\", \"resource-params\"],\n },\n\n // ===========================================================================\n // Points\n // ===========================================================================\n points: {\n points: (username: string, filter: number) =>\n [\"points\", username, filter],\n _prefix: (username: string) => [\"points\", username],\n },\n\n // ===========================================================================\n // Polls\n // ===========================================================================\n polls: {\n details: (author: string, permlink: string) =>\n [\"polls\", \"details\", author, permlink],\n vote: (author?: string, permlink?: string) =>\n author && permlink\n ? [\"polls\", \"vote\", author, permlink]\n : [\"polls\", \"vote\"],\n _prefix: [\"polls\"],\n },\n\n // ===========================================================================\n // Operations\n // ===========================================================================\n operations: {\n chainProperties: () => [\"operations\", \"chain-properties\"],\n },\n\n // ===========================================================================\n // Games\n // ===========================================================================\n games: {\n statusCheck: (gameType: string, username: string) =>\n [\"games\", \"status-check\", gameType, username],\n },\n\n quests: {\n status: (username: string | undefined) => [\"quests\", \"status\", username],\n },\n\n // ===========================================================================\n // Newsletter (digest subscriptions + sender API)\n // ===========================================================================\n newsletter: {\n subscriptions: (username: string | undefined) => [\n \"newsletter\",\n \"subscriptions\",\n username,\n ],\n sender: (type: string, target: string, username: string | undefined) => [\n \"newsletter\",\n \"sender\",\n type,\n target,\n username,\n ],\n issues: (type: string, target: string, username: string | undefined) => [\n \"newsletter\",\n \"issues\",\n type,\n target,\n username,\n ],\n posts: (\n type: string,\n target: string,\n username: string | undefined,\n limit: number,\n ) => [\"newsletter\", \"posts\", type, target, username, limit],\n _prefix: [\"newsletter\"],\n },\n\n // ===========================================================================\n // Support Ecency\n // ===========================================================================\n support: {\n settings: (username: string | undefined) => [\"support\", \"settings\", username],\n _prefix: [\"support\"],\n },\n\n // ===========================================================================\n // Bad Actors\n // ===========================================================================\n badActors: {\n list: () => [\"bad-actors\", \"list\"],\n _prefix: [\"bad-actors\"],\n },\n\n // ===========================================================================\n // Curation desk\n // ===========================================================================\n curation: {\n /** Public feed; `params` is the normalized (defaults dropped) param map. */\n feed: (params: Record = {}) => [\"curation\", \"feed\", params],\n /** Authed roster feed; every sort and filter value is on the key. */\n rosterFeed: (username: string | undefined, params: Record = {}) => [\n \"curation\",\n \"roster-feed\",\n username,\n params,\n ],\n status: () => [\"curation\", \"status\"],\n roster: () => [\"curation\", \"roster\"],\n /**\n * The admin view of the roster: private, per viewer, never shared with the public key.\n * `rosterAdminPrefix` covers every viewer's copy, because the roster it describes is\n * shared: a write by one admin makes the cached copy of any other one stale.\n */\n rosterAdmin: (username: string | undefined) => [\"curation\", \"roster-admin\", username],\n rosterAdminPrefix: () => [\"curation\", \"roster-admin\"],\n recommendations: (params: Record = {}) => [\n \"curation\",\n \"recommendations\",\n params,\n ],\n _recommendationsPrefix: [\"curation\", \"recommendations\"],\n post: (author: string, permlink: string) => [\"curation\", \"post\", author, permlink],\n /** Route 14: one recommender's 90-day scorecard. */\n recommender: (username: string) => [\"curation\", \"recommender\", username],\n /** Mutation key of the recommend and unrecommend broadcast. */\n recommend: () => [\"curation\", \"recommend\"],\n _prefix: [\"curation\"],\n },\n\n // ===========================================================================\n // AI\n // ===========================================================================\n ai: {\n prices: () => [\"ai\", \"prices\"] as const,\n assistPrices: (username?: string) => [\"ai\", \"assist-prices\", username] as const,\n transcribePrice: (username?: string) => [\"ai\", \"transcribe-price\", username] as const,\n images: (username?: string) => [\"ai\", \"images\", username] as const,\n _prefix: [\"ai\"],\n },\n} as const;\n","/**\n * UTF-8 byte length of a string.\n *\n * `TextEncoder` is missing on some runtimes the SDK ships to (React Native /\n * Hermes), and `String.length` is NOT a substitute: it counts UTF-16 code\n * units, so anything non-ASCII is undercounted. Where that number feeds an RC\n * estimate, undercounting means telling someone a post is affordable when the\n * chain will reject it.\n */\nexport function utf8ByteLength(value: string): number {\n if (typeof TextEncoder !== \"undefined\") {\n return new TextEncoder().encode(value).length;\n }\n\n let bytes = 0;\n for (let i = 0; i < value.length; i++) {\n const c = value.charCodeAt(i);\n if (c < 0x80) {\n bytes += 1;\n } else if (c < 0x800) {\n bytes += 2;\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < value.length) {\n // surrogate pair encodes as four bytes\n i++;\n bytes += 4;\n } else {\n bytes += 3;\n }\n }\n return bytes;\n}\n\n/** Byte length of Hive's unsigned LEB128 varint for `value`. */\nexport function varintByteLength(value: number): number {\n let count = 0;\n let remaining = value;\n do {\n count++;\n remaining >>>= 7;\n } while (remaining > 0);\n return count;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiImagePriceResponse } from \"../types\";\n\nexport function getAiGeneratePriceQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.prices(),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-generate-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI generation prices: ${response.status}`);\n }\n\n return (await response.json()) as AiImagePriceResponse;\n },\n staleTime: 300_000,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiImageHistoryItem } from \"../types\";\n\n/**\n * Per-user AI image generation history (the backend's last 20 successful generations).\n * The backend resolves the user from the validated code, so no username is sent; the\n * key still carries it so each account caches its own history.\n */\nexport function getAiImagesQueryOptions(username: string | undefined, accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.images(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-images\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI image history: ${response.status}`);\n }\n\n return (await response.json()) as AiImageHistoryItem[];\n },\n staleTime: 30_000,\n // This list is a recovery surface: a generation can complete server-side while the\n // client saw only an error, in which case no success-path invalidation ever runs.\n // Every mount of the history view therefore refetches unconditionally, so opening\n // the tab always shows what the server actually delivered.\n refetchOnMount: \"always\",\n enabled: !!username && !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiAssistPrice } from \"../types\";\n\nexport function getAiAssistPriceQueryOptions(username: string | undefined, accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.assistPrices(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-assist-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI assist prices: ${response.status}`);\n }\n\n return (await response.json()) as AiAssistPrice[];\n },\n staleTime: 60_000,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiTranscribePrice } from \"../types\";\n\n/**\n * Dictation pricing. Kept on its own route rather than folded into\n * /private-api/ai-assist-price: that endpoint returns a list of flat-cost actions and\n * shipped clients render every entry as a selectable assist action, so adding a\n * metered one there would surface in older clients as an action they cannot perform.\n *\n * Everything except `free_remaining` is static, so this is cheap to hold and lets the\n * client price a clip locally while the user is still recording.\n */\nexport function getAiTranscribePriceQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.ai.transcribePrice(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-transcribe-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\"\n },\n body: JSON.stringify({ code: accessToken })\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI transcribe price: ${response.status}`);\n }\n\n return (await response.json()) as AiTranscribePrice;\n },\n staleTime: 60_000,\n enabled: !!accessToken\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiGenerationResponse } from \"../types\";\n\nexport interface GenerateImageParams {\n prompt: string;\n aspect_ratio?: string;\n power?: number;\n // Pass a stable key to make a retry recover the same paid generation. If omitted a\n // fresh key is generated per call (only dedupes edge/proxy retries, not user retries).\n idempotency_key?: string;\n}\n\n// Generates a key matching the eepoints validator [A-Za-z0-9_-]{8,64}.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\n// What a completed generation invalidates: the Points balance (it changed) and the\n// per-user generation history (the new image belongs there right away). Exported so the\n// side effect stays unit-testable without rendering the hook.\nexport function invalidateGenerateImageCaches(username: string) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username),\n });\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.images(username),\n });\n}\n\nexport function useGenerateImage(\n username: string | undefined,\n accessToken: string | undefined,\n) {\n return useMutation({\n mutationKey: [\"ai\", \"generate-image\"],\n mutationFn: async (params: GenerateImageParams): Promise => {\n if (!username) {\n throw new Error(\n \"[SDK][AI][GenerateImage] – username wasn't provided\"\n );\n }\n\n if (!accessToken) {\n throw new Error(\n \"[SDK][AI][GenerateImage] – access token wasn't found\"\n );\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/ai-generate-image\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code: accessToken,\n us: username,\n prompt: params.prompt,\n aspect_ratio: params.aspect_ratio ?? \"1:1\",\n power: params.power ?? 1,\n idempotency_key: params.idempotency_key ?? makeIdempotencyKey(),\n }),\n }\n );\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n const err = new Error(\n `[SDK][AI][GenerateImage] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n );\n (err as any).status = response.status;\n (err as any).data = parsed;\n throw err;\n }\n\n // 202 = the prediction is paid for and captured but not yet delivered to our image\n // host. Detect it by HTTP status BEFORE parsing (the body may be present or empty)\n // and surface it as a typed error so the caller can retry with the SAME\n // idempotency_key to fetch it — no second prediction, no second charge.\n if (response.status === 202) {\n let pendingData: Record = {};\n try {\n pendingData = await response.json();\n } catch {\n // empty / non-JSON 202 body is fine — the status alone drives recovery\n }\n const err = new Error(\"[SDK][AI][GenerateImage] – delivery pending\");\n (err as any).status = 202;\n (err as any).data = pendingData;\n throw err;\n }\n\n const data = (await response.json()) as AiGenerationResponse;\n\n return data;\n },\n onSuccess: () => {\n if (username) {\n invalidateGenerateImageCaches(username);\n }\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiAssistResponse } from \"../types\";\n\nexport interface AiAssistParams {\n action: string;\n text: string;\n code?: string;\n}\n\n// Generates a key that matches the eepoints validator [A-Za-z0-9_-]{8,64}.\n// Used to dedupe duplicate POSTs caused by edge/proxy retries — same key on\n// retry returns the cached AI output without re-charging or re-calling Claude.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\nexport function useAiAssist(\n username: string | undefined,\n accessToken: string | undefined,\n) {\n return useMutation({\n mutationKey: [\"ai\", \"assist\"],\n mutationFn: async (params: AiAssistParams): Promise => {\n if (!username) {\n throw new Error(\n \"[SDK][AI][Assist] – username wasn't provided\"\n );\n }\n\n if (!accessToken) {\n throw new Error(\n \"[SDK][AI][Assist] – access token wasn't found\"\n );\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/ai-assist\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code: params.code ?? accessToken,\n us: username,\n action: params.action,\n text: params.text,\n idempotency_key: makeIdempotencyKey(),\n }),\n }\n );\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n const err = new Error(\n `[SDK][AI][Assist] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n );\n (err as any).status = response.status;\n (err as any).data = parsed;\n throw err;\n }\n\n return (await response.json()) as AiAssistResponse;\n },\n onSuccess: (data) => {\n if (username) {\n // Invalidate points cache if cost was charged\n if (data.cost > 0) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username),\n });\n }\n // Invalidate assist prices to refresh free_remaining counts\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.assistPrices(username),\n });\n }\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiTranscribeParams, AiTranscribeResponse } from \"../types\";\n\n// Matches the eepoints validator [A-Za-z0-9_-]{8,64}. Dedupes duplicate POSTs caused\n// by edge/proxy retries -- the same key returns the cached transcript without\n// re-charging or re-calling the vendor.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\n/**\n * Transcribe an audio clip to text, charged per 30 seconds.\n *\n * Sends multipart/form-data rather than JSON because it carries a file. Unlike the\n * other AI mutations the charge is BURNED rather than moved to the treasury, so the\n * points transaction shows up as PointTransactionType.BURNED (997).\n */\nexport function useAiTranscribe(username: string | undefined, accessToken: string | undefined) {\n return useMutation({\n mutationKey: [\"ai\", \"transcribe\"],\n mutationFn: async (params: AiTranscribeParams): Promise => {\n if (!username) {\n throw new Error(\"[SDK][AI][Transcribe] – username wasn't provided\");\n }\n\n // Validate the token actually being sent, not just the bound one. A caller\n // that resolves a fresh token per call (because the bound one can expire\n // during a long recording) legitimately has nothing at hook construction.\n const code = params.code ?? accessToken;\n if (!code) {\n throw new Error(\"[SDK][AI][Transcribe] – access token wasn't found\");\n }\n\n const form = new FormData();\n form.append(\"code\", code);\n // `us` is resolved from the code server-side and is deliberately not sent:\n // upstream burns from whoever it names.\n form.append(\"duration_ms\", String(Math.round(params.durationMs)));\n // Caller-supplied key when there is one. Generating a fresh key per attempt\n // would defeat the dedupe in the one case it exists for: a POST that reached\n // the server whose response was lost. Retrying then would transcribe and\n // charge a second time. Same contract as useGenerateImage.\n form.append(\"idempotency_key\", params.idempotency_key ?? makeIdempotencyKey());\n form.append(\"audio\", params.audio, params.fileName ?? \"clip.webm\");\n\n const fetchApi = getBoundFetch();\n // No Content-Type header: fetch sets it, including the multipart boundary.\n // Setting it by hand drops the boundary and the body becomes unparseable.\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-transcribe\", {\n method: \"POST\",\n body: form\n });\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n // Object.assign rather than `as any` casts: callers need `status` to tell a\n // 402 (out of Points) from a 429 (rate limited) from a 400 (clip too long),\n // and this keeps that shape typed.\n throw Object.assign(\n new Error(\n `[SDK][AI][Transcribe] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n ),\n { status: response.status, data: parsed }\n );\n }\n\n return (await response.json()) as AiTranscribeResponse;\n },\n onSuccess: (data) => {\n if (username) {\n if (data.cost > 0) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username)\n });\n }\n // Refresh free_remaining, which only Pro members ever have above zero.\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.transcribePrice(username)\n });\n }\n }\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport {\n AccountFollowStats,\n FullAccount,\n} from \"../types\";\nimport { parseProfileMetadata } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/** The raw `condenser_api.get_accounts` row — every FullAccount field except the three\n * this query derives separately (follow_stats + reputation from bridge, profile parsed). */\ntype RawAccount = Omit;\n\n/** Minimal shape read from `bridge.get_profile` (hivemind social profile): it carries\n * the reputation score, the follower/following counts and hivemind's parsed\n * (normalized) profile — the latter is used only to cross-validate the chain row. */\ninterface BridgeProfile {\n reputation?: number;\n stats?: { followers?: number; following?: number };\n metadata?: { profile?: Record };\n}\n\n/** True when the chain row carries no account metadata at all. Legitimate for\n * accounts that never set a profile — but combined with a populated hivemind\n * profile it identifies a node serving stripped account rows. */\nfunction isMetadataStripped(account: RawAccount): boolean {\n return !account.posting_json_metadata && !account.json_metadata;\n}\n\n/** True when a hivemind `metadata.profile` object carries at least one real\n * value. Hivemind emits its fixed profile keys with empty strings for\n * accounts without a profile, so key presence alone proves nothing. */\nfunction hasProfileValues(profile?: Record | null): boolean {\n if (!profile) return false;\n return Object.values(profile).some((value) =>\n typeof value === \"string\" ? value.length > 0 : value != null\n );\n}\n\nexport function getAccountFullQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: QueryKeys.accounts.full(username),\n queryFn: async ({ signal }) => {\n if (!username) {\n return null;\n }\n\n // Fetch the chain account (balances/keys/vesting) and the hivemind profile in\n // parallel — both only need the username. bridge.get_profile carries BOTH the\n // follower/following counts and the reputation score, so it replaces the old\n // second-layer condenser_api.get_follow_count RPC *and* the reputation-api REST\n // call: condenser_api.get_accounts no longer returns a usable reputation (it is 0\n // since the hardfork), and there is no reason to make two extra round-trips for\n // data one profile object already carries.\n const [response, bridgeProfile] = await Promise.all([\n callRPC(\n \"condenser_api.get_accounts\",\n [[username]],\n undefined,\n undefined,\n signal,\n // A correct node always answers get_accounts with an array — a null\n // result in a well-formed envelope is a node fault (observed in the\n // wild), so fail over to the next node instead of misreading it as\n // \"account does not exist\".\n (rows) => Array.isArray(rows)\n ),\n callRPC(\n \"bridge.get_profile\",\n { account: username },\n undefined,\n undefined,\n signal\n ).catch((e): BridgeProfile | null => {\n // A caller cancel (aborted signal) must propagate — only genuine RPC/transport\n // failures degrade to reputation 0 / no follow_stats.\n if (signal?.aborted) throw e;\n return null;\n })\n ]);\n if (!response?.[0]) {\n // The account does not exist (e.g. not yet finalized on-chain during\n // signup). Treat absence as a recoverable null instead of throwing, so\n // consumers (useQuery hooks and fetchQuery callers) surface it as empty\n // data rather than an unhandled rejection / error-boundary crash.\n return null;\n }\n\n let chainAccount = response[0];\n\n // Cross-validate the chain row against the hivemind profile fetched in\n // the same query. Some public nodes serve account rows with BOTH\n // metadata fields stripped to \"\" (observed in the wild) while their own\n // hivemind still returns the real profile — and a merge base built from\n // such a row wipes the user's profile on the next partial\n // account_update2. When the row claims \"no metadata\" but hivemind\n // disagrees, re-read once (failover may pick another node) and otherwise\n // fail the query: an error here is recoverable, a poisoned cache entry\n // is not.\n if (\n isMetadataStripped(chainAccount) &&\n hasProfileValues(bridgeProfile?.metadata?.profile)\n ) {\n // The re-read carries a payload validator: a stripped row is treated\n // as a node fault, so the failover walk moves on to other nodes (and\n // repeat offenders earn a per-API health cooldown) instead of asking\n // the same lying node twice.\n const reread = await callRPC(\n \"condenser_api.get_accounts\",\n [[username]],\n undefined,\n undefined,\n signal,\n (rows) =>\n Array.isArray(rows) &&\n (!rows[0] || !isMetadataStripped(rows[0] as RawAccount))\n );\n if (reread[0] && !isMetadataStripped(reread[0])) {\n chainAccount = reread[0];\n } else {\n throw new Error(\n `[SDK][Accounts] – inconsistent account row for ${username}: empty json metadata while hivemind profile is populated`\n );\n }\n }\n\n const profile = parseProfileMetadata(chainAccount.posting_json_metadata);\n\n // bridge.get_profile.stats → follower/following counts; `reputation` is the\n // computed score (e.g. 78.29). accountReputation() floors an in-range score, so\n // it yields the same value the reputation-api used to return. Both degrade to a\n // safe default if the profile call failed.\n const stats = bridgeProfile?.stats;\n const follow_stats: AccountFollowStats | undefined = stats\n ? {\n account: chainAccount.name,\n follower_count: stats.followers ?? 0,\n following_count: stats.following ?? 0\n }\n : undefined;\n const reputationValue: number = bridgeProfile?.reputation ?? 0;\n\n return {\n name: chainAccount.name,\n owner: chainAccount.owner,\n active: chainAccount.active,\n posting: chainAccount.posting,\n memo_key: chainAccount.memo_key,\n post_count: chainAccount.post_count,\n created: chainAccount.created,\n posting_json_metadata: chainAccount.posting_json_metadata,\n last_vote_time: chainAccount.last_vote_time,\n last_post: chainAccount.last_post,\n json_metadata: chainAccount.json_metadata,\n reward_hive_balance: chainAccount.reward_hive_balance,\n reward_hbd_balance: chainAccount.reward_hbd_balance,\n reward_vesting_hive: chainAccount.reward_vesting_hive,\n reward_vesting_balance: chainAccount.reward_vesting_balance,\n balance: chainAccount.balance,\n hbd_balance: chainAccount.hbd_balance,\n savings_balance: chainAccount.savings_balance,\n savings_hbd_balance: chainAccount.savings_hbd_balance,\n savings_hbd_last_interest_payment:\n chainAccount.savings_hbd_last_interest_payment,\n savings_hbd_seconds_last_update:\n chainAccount.savings_hbd_seconds_last_update,\n savings_hbd_seconds: chainAccount.savings_hbd_seconds,\n next_vesting_withdrawal: chainAccount.next_vesting_withdrawal,\n pending_claimed_accounts: chainAccount.pending_claimed_accounts,\n vesting_shares: chainAccount.vesting_shares,\n delegated_vesting_shares: chainAccount.delegated_vesting_shares,\n received_vesting_shares: chainAccount.received_vesting_shares,\n vesting_withdraw_rate: chainAccount.vesting_withdraw_rate,\n to_withdraw: chainAccount.to_withdraw,\n withdrawn: chainAccount.withdrawn,\n // int64 counters. Condenser serves them unquoted, so normalize here in case a\n // node quotes them, but leave an omitted counter undefined: absent is unknown,\n // and coercing it to 0 would understate every ratio derived from it.\n curation_rewards:\n chainAccount.curation_rewards === undefined\n ? undefined\n : Number(chainAccount.curation_rewards),\n posting_rewards:\n chainAccount.posting_rewards === undefined\n ? undefined\n : Number(chainAccount.posting_rewards),\n witness_votes: chainAccount.witness_votes,\n proxy: chainAccount.proxy,\n recovery_account: chainAccount.recovery_account,\n proxied_vsf_votes: chainAccount.proxied_vsf_votes,\n voting_manabar: chainAccount.voting_manabar,\n voting_power: chainAccount.voting_power,\n downvote_manabar: chainAccount.downvote_manabar,\n follow_stats,\n reputation: reputationValue,\n profile,\n } satisfies FullAccount;\n },\n enabled: !!username,\n staleTime: 60000,\n });\n}\n","import { AccountProfile, FullAccount } from \"../types\";\n\nexport type ProfileTokens = AccountProfile[\"tokens\"];\n\nconst DENIED_KEYS = new Set([\"__proto__\", \"constructor\", \"prototype\"]);\n\nfunction isPlainObject(value: unknown): value is Record {\n if (!value || typeof value !== \"object\" || Array.isArray(value)) {\n return false;\n }\n const proto = Object.getPrototypeOf(value);\n return proto === null || proto === Object.prototype;\n}\n\nfunction deepMerge>(target: T, source: Record): T {\n const result = { ...target } as Record;\n for (const key of Object.keys(source)) {\n if (DENIED_KEYS.has(key)) {\n continue;\n }\n const srcVal = source[key];\n const tgtVal = result[key];\n if (isPlainObject(srcVal) && isPlainObject(tgtVal)) {\n result[key] = deepMerge(tgtVal, srcVal);\n } else {\n result[key] = srcVal;\n }\n }\n return result as T;\n}\n\nexport interface BuildProfileMetadataArgs {\n existingProfile?: AccountProfile;\n profile?: Partial | null;\n tokens?: ProfileTokens | null;\n}\n\nfunction sanitizeTokens(\n tokens?: ProfileTokens | null\n): ProfileTokens | undefined {\n // Guard against corrupted data from blockchain where tokens is not an array\n if (!tokens || !Array.isArray(tokens)) {\n return undefined;\n }\n\n return tokens.map(({ meta, ...rest }) => {\n if (!meta || typeof meta !== \"object\") {\n return { ...rest, meta };\n }\n\n const { privateKey, username, ...safeMeta } = meta;\n return { ...rest, meta: safeMeta };\n });\n}\n\nexport function parseProfileMetadata(\n postingJsonMetadata?: string | null\n): AccountProfile {\n if (!postingJsonMetadata) {\n return {} as AccountProfile;\n }\n\n try {\n const parsed = JSON.parse(postingJsonMetadata);\n if (\n parsed &&\n typeof parsed === \"object\" &&\n parsed.profile &&\n typeof parsed.profile === \"object\"\n ) {\n return parsed.profile as AccountProfile;\n }\n } catch (err) {\n console.warn(\"[SDK] Failed to parse posting_json_metadata:\", err, { length: postingJsonMetadata?.length ?? 0 });\n }\n\n return {} as AccountProfile;\n}\n\nexport function extractAccountProfile(\n data?: Pick | null\n): AccountProfile {\n return parseProfileMetadata(data?.posting_json_metadata);\n}\n\n/**\n * Choose between two account snapshots for a posting-metadata merge base.\n * Prefers `preferred` (typically the freshest cache entry) unless `fallback`\n * carries strictly more profile keys — guarding read-modify-write flows\n * against a snapshot whose metadata was served stripped by a misbehaving node\n * while another snapshot still holds the real profile. A partial update must\n * never shrink the profile while any snapshot still knows the full one.\n */\nexport function pickRicherMetadataSnapshot<\n T extends Pick\n>(\n preferred: T | null | undefined,\n fallback: T | null | undefined\n): T | null | undefined {\n if (!preferred) return fallback;\n if (!fallback) return preferred;\n const preferredKeys = Object.keys(\n parseProfileMetadata(preferred.posting_json_metadata)\n ).length;\n const fallbackKeys = Object.keys(\n parseProfileMetadata(fallback.posting_json_metadata)\n ).length;\n return fallbackKeys > preferredKeys ? fallback : preferred;\n}\n\n/**\n * Parse the FULL root object of posting_json_metadata, not just its `profile`\n * key. Returns {} for missing/invalid input or a non-object root.\n *\n * `parseProfileMetadata` intentionally returns only `parsed.profile`; this\n * helper exists so writers can carry forward any sibling top-level keys that\n * live alongside `profile` (data other Hive apps may store there) instead of\n * dropping them on the next update.\n */\nexport function parsePostingMetadataRoot(\n postingJsonMetadata?: string | null\n): Record {\n if (!postingJsonMetadata) {\n return {};\n }\n\n try {\n const parsed = JSON.parse(postingJsonMetadata);\n if (isPlainObject(parsed)) {\n return parsed;\n }\n } catch (err) {\n console.warn(\"[SDK] Failed to parse posting_json_metadata root:\", err, {\n length: postingJsonMetadata?.length ?? 0,\n });\n }\n\n return {};\n}\n\n/**\n * Build the serialized `posting_json_metadata` string for an account_update2\n * operation. It deep-merges the profile (via {@link buildProfileMetadata}) over\n * the account's CURRENT on-chain profile AND preserves any non-`profile`\n * top-level keys present in the existing metadata, so a partial profile update\n * (e.g. only `pinned` or only `tokens`) never clobbers unrelated fields.\n */\nexport function buildPostingJsonMetadata({\n existingPostingJsonMetadata,\n profile,\n tokens,\n}: {\n existingPostingJsonMetadata?: string | null;\n profile?: Partial | null;\n tokens?: ProfileTokens | null;\n}): string {\n const root = parsePostingMetadataRoot(existingPostingJsonMetadata);\n const existingProfile = isPlainObject(root.profile)\n ? (root.profile as AccountProfile)\n : ({} as AccountProfile);\n\n const mergedProfile = buildProfileMetadata({\n existingProfile,\n profile,\n tokens,\n });\n\n return JSON.stringify({ ...root, profile: mergedProfile });\n}\n\nexport function buildProfileMetadata({\n existingProfile,\n profile,\n tokens,\n}: BuildProfileMetadataArgs): AccountProfile {\n const { tokens: profileTokens, version: _ignoredVersion, ...profileRest } =\n profile ?? {};\n\n const metadata = deepMerge(\n (existingProfile ?? {}) as Record,\n profileRest as Record,\n ) as AccountProfile;\n\n // Clean up corrupted tokens data from blockchain before processing\n if (metadata.tokens && !Array.isArray(metadata.tokens)) {\n metadata.tokens = undefined;\n }\n\n // tokens semantics:\n // undefined → no change, fall back to profileTokens from profile partial\n // null or [] → explicitly clear tokens\n // non-empty array → set tokens\n if (tokens !== undefined) {\n // Explicit intent from caller: null or [] clears, non-empty array sets\n metadata.tokens = tokens && tokens.length > 0 ? tokens : [];\n } else if (profileTokens !== undefined) {\n // Fall back to tokens from profile partial (including empty array to clear)\n metadata.tokens = profileTokens;\n }\n\n metadata.tokens = sanitizeTokens(metadata.tokens);\n metadata.version = 2;\n\n return metadata;\n}\n","import { FullAccount, AccountProfile } from \"../types\";\nimport { parseProfileMetadata } from \"./profile-metadata\";\n\n/**\n * Parses raw account data from Hive API into FullAccount type\n * Handles profile metadata extraction from posting_json_metadata or json_metadata\n */\nexport function parseAccounts(rawAccounts: any[]): FullAccount[] {\n return rawAccounts.map((x) => {\n const account: FullAccount = {\n name: x.name,\n owner: x.owner,\n active: x.active,\n posting: x.posting,\n memo_key: x.memo_key,\n post_count: x.post_count,\n created: x.created,\n reputation: x.reputation,\n posting_json_metadata: x.posting_json_metadata,\n last_vote_time: x.last_vote_time,\n last_post: x.last_post,\n json_metadata: x.json_metadata,\n reward_hive_balance: x.reward_hive_balance,\n reward_hbd_balance: x.reward_hbd_balance,\n reward_vesting_hive: x.reward_vesting_hive,\n reward_vesting_balance: x.reward_vesting_balance,\n balance: x.balance,\n hbd_balance: x.hbd_balance,\n savings_balance: x.savings_balance,\n savings_hbd_balance: x.savings_hbd_balance,\n savings_hbd_last_interest_payment: x.savings_hbd_last_interest_payment,\n savings_hbd_seconds_last_update: x.savings_hbd_seconds_last_update,\n savings_hbd_seconds: x.savings_hbd_seconds,\n next_vesting_withdrawal: x.next_vesting_withdrawal,\n pending_claimed_accounts: x.pending_claimed_accounts,\n vesting_shares: x.vesting_shares,\n delegated_vesting_shares: x.delegated_vesting_shares,\n received_vesting_shares: x.received_vesting_shares,\n vesting_withdraw_rate: x.vesting_withdraw_rate,\n to_withdraw: x.to_withdraw,\n withdrawn: x.withdrawn,\n witness_votes: x.witness_votes,\n proxy: x.proxy,\n recovery_account: x.recovery_account,\n proxied_vsf_votes: x.proxied_vsf_votes,\n voting_manabar: x.voting_manabar,\n voting_power: x.voting_power,\n downvote_manabar: x.downvote_manabar,\n };\n\n // Try to parse profile from posting_json_metadata first\n let profile: AccountProfile | undefined = parseProfileMetadata(\n x.posting_json_metadata\n );\n\n // Fallback to json_metadata if posting_json_metadata didn't have a profile\n if (!profile || Object.keys(profile).length === 0) {\n try {\n const jsonMetadata = JSON.parse(x.json_metadata || \"{}\");\n if (jsonMetadata.profile) {\n profile = jsonMetadata.profile;\n }\n } catch (e) {\n // Ignore parsing errors\n }\n }\n\n // Ensure we always have a profile object\n if (!profile || Object.keys(profile).length === 0) {\n profile = {\n about: \"\",\n cover_image: \"\",\n location: \"\",\n name: \"\",\n profile_image: \"\",\n website: \"\",\n };\n }\n\n return { ...account, profile };\n });\n}\n","/**\n * The chain stores an account name in a `fixed_string` of 16 **bytes**, and hived\n * asserts on the byte length while deserialising the argument, before it ever looks\n * an account up. So a name that is too long does not come back as \"no such account\",\n * it comes back as\n *\n * Assert Exception:in_len <= sizeof(data): Input too large: `` (17)\n * for fixed size string: (16)\n *\n * from `lookup_accounts`, `get_accounts` and anything else taking an\n * `account_name_type`, including plain reads.\n */\nconst HIVE_ACCOUNT_NAME_MAX_BYTES = 16;\n\n/**\n * Bytes, not characters. The two differ exactly where this bug lives: `sebastián.bilbao`\n * is 16 characters but 17 bytes, and `вцпк33ппп43` is 11 characters but 18 bytes. Both\n * pass a `.length <= 16` check and both are rejected by the node.\n */\nexport function accountNameByteLength(value: string): number {\n return new TextEncoder().encode(value).length;\n}\n\n/**\n * Whether a value can be sent to a node as an account name (or as the prefix of one,\n * which `lookup_accounts` takes) without tripping the assert above.\n *\n * This is deliberately only a length check. It is not account-name validation: a\n * caller searching for a prefix is allowed to pass something that is not yet a legal\n * name, and a node answers that honestly with no matches. The only thing that must not\n * happen is a request the node refuses to parse.\n */\nexport function isQueryableAccountName(value: string | undefined | null): boolean {\n if (!value) {\n return false;\n }\n\n return accountNameByteLength(value) <= HIVE_ACCOUNT_NAME_MAX_BYTES;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { parseAccounts } from \"../utils/parse-accounts\";\nimport { FullAccount } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\nexport function getAccountsQueryOptions(usernames: string[]) {\n return queryOptions({\n queryKey: QueryKeys.accounts.list(...usernames),\n enabled: usernames.length > 0,\n queryFn: async (): Promise => {\n // One unholdable name asserts the whole batch, so drop those first. They\n // cannot name an existing account, and an empty result is what a caller\n // checking \"does this account exist\" already handles.\n const queryable = usernames.filter(isQueryableAccountName);\n if (queryable.length === 0) {\n return [];\n }\n\n // A correct node always answers get_accounts with an array — a null\n // result in a well-formed envelope is a node fault (observed in the\n // wild), so the validator makes callRPC fail over to the next node\n // instead of resolving with a payload parseAccounts cannot map over.\n const response = (await callRPC(\n \"condenser_api.get_accounts\",\n [queryable],\n undefined,\n undefined,\n undefined,\n (rows) => Array.isArray(rows)\n )) as any[];\n return parseAccounts(response ?? []);\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountFollowStats } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get follow count (followers and following) for an account\n */\nexport function getFollowCountQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.accounts.followCount(username),\n queryFn: () =>\n callRPC(\"condenser_api.get_follow_count\", [\n username,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of accounts following a user\n *\n * @param following - The account being followed\n * @param startFollower - Pagination start point (account name)\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Maximum number of results (default: 100)\n */\nexport function getFollowersQueryOptions(\n following: string | undefined,\n startFollower: string,\n followType = \"blog\",\n limit = 100\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.followers(following!, startFollower, followType, limit),\n queryFn: () =>\n callRPC(\"condenser_api.get_followers\", [\n following,\n startFollower,\n followType,\n limit,\n ]) as Promise,\n enabled: !!following,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of accounts that a user is following\n *\n * @param follower - The account doing the following\n * @param startFollowing - Pagination start point (account name)\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Maximum number of results (default: 100)\n */\nexport function getFollowingQueryOptions(\n follower: string,\n startFollowing: string,\n followType = \"blog\",\n limit = 100\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.following(follower, startFollowing, followType, limit),\n queryFn: () =>\n callRPC(\"condenser_api.get_following\", [\n follower,\n startFollowing,\n followType,\n limit,\n ]) as Promise,\n enabled: !!follower,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/** `condenser_api.get_following` caps a single response at 1000 rows. */\nconst MUTED_USERS_PAGE_SIZE = 1000;\n\n/**\n * Safety valve for the paging loop: 20 pages is 20k muted accounts, far past\n * any real mute list. Bounds the work if a node ever stops advancing the\n * cursor, so a malformed response degrades to a truncated list rather than an\n * endless request loop.\n */\nconst MUTED_USERS_MAX_PAGES = 20;\n\n/**\n * Get the full list of accounts a user has muted.\n *\n * Pages until the list is exhausted instead of taking the first N. That is\n * load-bearing: this result dims muted authors in feeds and collapses their\n * comments (`entry-list-item-muted-content`, `discussion-list`), so a truncated\n * list silently renders muted accounts as though they were never muted.\n *\n * Takes no limit, on purpose. `QueryKeys.accounts.mutedUsers` keys on the\n * username alone, so a limit parameter meant callers requesting different\n * amounts shared one cache entry and whichever mounted first decided how much\n * of the list every other caller saw.\n *\n * @param username - The account whose mute list to fetch\n */\nexport function getMutedUsersQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: QueryKeys.accounts.mutedUsers(username!),\n queryFn: async () => {\n const muted: string[] = [];\n let start = \"\";\n\n for (let page = 0; page < MUTED_USERS_MAX_PAGES; page++) {\n const response = (await callRPC(\"condenser_api.get_following\", [\n username,\n start,\n \"ignore\",\n MUTED_USERS_PAGE_SIZE,\n ])) as Follow[];\n\n if (!response?.length) {\n break;\n }\n\n let names = response.map((user) => user.following);\n\n // `start` is exclusive on Hive, so a page should not repeat the cursor.\n // Drop it defensively anyway: against a node treating `start` as\n // inclusive, this loop would otherwise re-append the same account until\n // it hit the page cap.\n if (names[0] === start) {\n names = names.slice(1);\n }\n\n if (!names.length) {\n break;\n }\n\n muted.push(...names);\n\n if (response.length < MUTED_USERS_PAGE_SIZE) {\n break;\n }\n\n start = names[names.length - 1];\n }\n\n return muted;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\n/**\n * Lookup accounts by username prefix\n *\n * @param query - Username prefix to search for\n * @param limit - Maximum number of results (default: 50)\n */\nexport function lookupAccountsQueryOptions(query: string, limit = 50) {\n return queryOptions({\n queryKey: QueryKeys.accounts.lookup(query, limit),\n queryFn: async (): Promise => {\n // `lower_bound_name` is an account_name_type, so a prefix the chain cannot\n // hold is an assert rather than an empty result. Callers feed this from raw\n // input (the editor's `@` autocomplete hands over whatever follows the `@`,\n // punctuation included), so answer \"nothing matches\" here instead.\n if (!isQueryableAccountName(query)) {\n return [];\n }\n\n return callRPC(\"condenser_api.lookup_accounts\", [\n query,\n limit,\n ]) as Promise;\n },\n enabled: !!query,\n staleTime: Infinity,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchAccountsByUsernameQueryOptions(\n query: string,\n limit = 5,\n excludeList: string[] = []\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.search(query, excludeList),\n enabled: !!query,\n queryFn: async () => {\n const response = (await callRPC(\"condenser_api.lookup_accounts\", [query, limit])) as string[];\n return response.filter((item) =>\n excludeList.length > 0 ? !excludeList.includes(item) : true\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { AccountProfile } from \"../types\";\n\ntype AccountProfileToken = NonNullable[number];\n\nexport type WalletMetadataCandidate = Partial & {\n currency?: string;\n show?: boolean;\n address?: string;\n publicKey?: string;\n privateKey?: string;\n username?: string;\n};\n\nexport interface CheckUsernameWalletsPendingResponse {\n exist: boolean;\n tokens?: WalletMetadataCandidate[];\n wallets?: WalletMetadataCandidate[];\n}\n\nconst RESERVED_META_KEYS = new Set([\n \"ownerPublicKey\",\n \"activePublicKey\",\n \"postingPublicKey\",\n \"memoPublicKey\",\n]);\n\ninterface WalletsEndpointResponseItem {\n token?: unknown;\n address?: unknown;\n status?: unknown;\n meta?: unknown;\n username?: unknown;\n}\n\nexport function checkUsernameWalletsPendingQueryOptions(\n username: string,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.checkWalletPending(username, code ?? null),\n queryFn: async () => {\n if (!username || !code) {\n return { exist: false } satisfies CheckUsernameWalletsPendingResponse;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/wallets\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n username,\n code,\n }),\n }\n );\n\n if (!response.ok) {\n return { exist: false } satisfies CheckUsernameWalletsPendingResponse;\n }\n\n const payload = (await response.json()) as unknown;\n\n const wallets: WalletMetadataCandidate[] = Array.isArray(payload)\n ? payload.flatMap((item) => {\n if (!item || typeof item !== \"object\") {\n return [];\n }\n\n const walletItem = item as WalletsEndpointResponseItem;\n\n const symbol =\n typeof walletItem.token === \"string\"\n ? walletItem.token\n : undefined;\n\n if (!symbol) {\n return [];\n }\n\n const meta: Record =\n walletItem.meta && typeof walletItem.meta === \"object\"\n ? { ...(walletItem.meta as Record) }\n : {};\n\n const sanitizedMeta: Record = {};\n\n const address =\n typeof walletItem.address === \"string\" && walletItem.address\n ? walletItem.address\n : undefined;\n\n const statusShow =\n typeof walletItem.status === \"number\"\n ? walletItem.status === 3\n : undefined;\n\n const showFlag = statusShow ?? false;\n\n if (address) {\n sanitizedMeta.address = address;\n }\n\n sanitizedMeta.show = showFlag;\n\n const baseCandidate = {\n symbol,\n currency: symbol,\n address,\n show: showFlag,\n type: \"CHAIN\",\n meta: sanitizedMeta,\n } satisfies WalletMetadataCandidate;\n\n const metaTokenCandidates: WalletMetadataCandidate[] = [];\n\n for (const [metaSymbol, metaValue] of Object.entries(meta)) {\n if (typeof metaSymbol !== \"string\") {\n continue;\n }\n\n if (RESERVED_META_KEYS.has(metaSymbol)) {\n continue;\n }\n\n if (typeof metaValue !== \"string\" || !metaValue) {\n continue;\n }\n\n if (!/^[A-Z0-9]{2,10}$/.test(metaSymbol)) {\n continue;\n }\n\n metaTokenCandidates.push({\n symbol: metaSymbol,\n currency: metaSymbol,\n address: metaValue,\n show: showFlag,\n type: \"CHAIN\",\n meta: { address: metaValue, show: showFlag },\n });\n }\n\n return [baseCandidate, ...metaTokenCandidates];\n })\n : [];\n\n return {\n exist: wallets.length > 0,\n tokens: wallets.length ? wallets : undefined,\n wallets: wallets.length ? wallets : undefined,\n } satisfies CheckUsernameWalletsPendingResponse;\n },\n refetchOnMount: true,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { AccountRelationship } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getRelationshipBetweenAccountsQueryOptions(\n reference: string | undefined,\n target: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.relations(reference, target),\n enabled: !!reference && !!target,\n refetchOnMount: false,\n refetchInterval: 3_600_000,\n queryFn: async () => {\n const fallback: AccountRelationship = {\n follows: false,\n ignores: false,\n blacklists: false,\n follows_muted: false,\n follows_blacklists: false,\n };\n\n // `enabled` only gates the automatic useQuery run. fetchQuery and\n // prefetchQuery invoke queryFn regardless, so guard here as well rather\n // than sending a missing account name to the RPC and caching the result.\n if (!reference || !target) {\n return fallback;\n }\n\n const result = await callRPC(\"bridge.get_relationship_between_accounts\", [reference, target]);\n return (result ?? fallback) as AccountRelationship;\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype Subscriptions = string[];\n\nexport function getAccountSubscriptionsQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.subscriptions(username!),\n enabled: !!username,\n queryFn: async ({ signal }) => {\n const response = await callRPC(\"bridge.list_all_subscriptions\", {\n account: username,\n }, undefined, undefined, signal);\n return (response ?? []) as Subscriptions;\n },\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountBookmark } from \"../types\";\n\nexport function getBookmarksQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.bookmarks(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Bookmarks] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n return (await response.json()) as AccountBookmark[];\n },\n });\n}\n\nexport function getBookmarksInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.bookmarksInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bookmarks: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountFavorite } from \"../types\";\n\nexport function getFavoritesQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.favorites(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Favorites] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n return (await response.json()) as AccountFavorite[];\n },\n });\n}\n\nexport function getFavoritesInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.favoritesInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/favorites?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch favorites: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\n/**\n * Query options to check if a specific account is in the active user's favorites\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n * @param targetUsername - The username to check if favorited\n * @returns Query options for checking if target is favorited\n */\nexport function checkFavoriteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n targetUsername: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.checkFavorite(activeUsername!, targetUsername!),\n enabled: !!activeUsername && !!code && !!targetUsername,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Favorites] – missing auth\");\n }\n if (!targetUsername) {\n throw new Error(\"[SDK][Accounts][Favorites] – no target username\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-check\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n account: targetUsername,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Accounts][Favorites] – favorites-check failed with status ${response.status}: ${response.statusText}`\n );\n }\n\n const result = await response.json();\n if (typeof result !== \"boolean\") {\n throw new Error(\n `[SDK][Accounts][Favorites] – favorites-check returned invalid type: expected boolean, got ${typeof result}`\n );\n }\n\n return result;\n },\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountFavoriteTag } from \"../types\";\n\n/**\n * The hashtags the active user follows, newest first.\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n */\nexport function getFavoriteTagsQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.favoriteTags(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorite-tags\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to fetch favorite tags: ${response.status}`);\n }\n return (await response.json()) as AccountFavoriteTag[];\n },\n });\n}\n\nexport function getFavoriteTagsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.favoriteTagsInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/favorite-tags?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch favorite tags: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","const TAG_PATTERN = /^[a-z0-9-]{1,32}$/;\nconst COMMUNITY_PATTERN = /^hive-\\d+$/;\n\n/**\n * The one place a followed tag is normalised before it is sent or used as a cache\n * key: trimmed, lowercased, one leading `#` dropped, then validated. Mirrors the\n * server rule exactly, so a value that passes here is stored as-is.\n *\n * Returns null for anything that is not a usable tag, including a community name\n * (`hive-123456`): communities are subscribed to on chain, not followed as tags.\n */\nexport function normalizeTag(raw: unknown): string | null {\n if (typeof raw !== \"string\") {\n return null;\n }\n\n let tag = raw.trim().toLowerCase();\n if (tag.startsWith(\"#\")) {\n tag = tag.slice(1);\n }\n\n if (!TAG_PATTERN.test(tag) || COMMUNITY_PATTERN.test(tag)) {\n return null;\n }\n\n return tag;\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { normalizeTag } from \"../utils/normalize-tag\";\n\n/**\n * Whether the active user follows a hashtag.\n *\n * The tag is normalised here, so `#Photography` and `photography` share one cache\n * entry and one request. A value that is not a usable tag (or a community name)\n * disables the query and reads as \"not followed\".\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n * @param tag - The tag to check, in any spelling\n */\nexport function getFavoriteTagCheckQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n tag: string | undefined\n) {\n const normalized = normalizeTag(tag);\n\n return queryOptions({\n queryKey: QueryKeys.accounts.checkFavoriteTag(activeUsername ?? \"\", normalized ?? \"\"),\n enabled: !!activeUsername && !!code && normalized !== null,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n if (normalized === null) {\n return false;\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorite-tags-check\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n tag: normalized,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Accounts][FavoriteTags] – favorite-tags-check failed with status ${response.status}: ${response.statusText}`\n );\n }\n\n const result = await response.json();\n if (typeof result !== \"boolean\") {\n throw new Error(\n `[SDK][Accounts][FavoriteTags] – favorite-tags-check returned invalid type: expected boolean, got ${typeof result}`\n );\n }\n\n return result;\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { GetRecoveriesEmailResponse } from \"../types\";\n\nexport function getAccountRecoveriesQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n enabled: !!username && !!code,\n queryKey: QueryKeys.accounts.recoveries(username!),\n queryFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Accounts] Missing username or access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/recoveries\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n return response.json() as Promise;\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getAccountPendingRecoveryQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n enabled: !!username,\n queryKey: QueryKeys.accounts.pendingRecovery(username!),\n queryFn: () =>\n callRPC(\"database_api.find_change_recovery_account_requests\", { accounts: [username] }),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountReputation } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\nexport function getAccountReputationsQueryOptions(query: string, limit = 50) {\n return queryOptions({\n queryKey: QueryKeys.accounts.reputations(query, limit),\n enabled: !!query,\n queryFn: async (): Promise => {\n // Same account_name_type argument as lookup_accounts, same assert if the value\n // is longer than the chain can hold.\n if (!query || !isQueryableAccountName(query)) {\n return [];\n }\n\n return callRPC(\"condenser_api.get_account_reputations\", [query, limit]) as Promise;\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { utils } from \"../../../hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Transaction, OperationGroup } from \"../types/transaction\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport { parseAsset, NaiMap } from \"@/modules/core/utils\";\n\nconst ops = utils.operations;\n\nexport const ACCOUNT_OPERATION_GROUPS: Record = {\n transfers: [\n ops.transfer,\n ops.transfer_to_savings,\n ops.transfer_from_savings,\n ops.cancel_transfer_from_savings,\n // The virtual op emitted when a savings withdrawal completes. It used to be a\n // second copy of fill_recurrent_transfer, so a completed savings withdrawal was\n // never returned by the transfers group nor by ALL_ACCOUNT_OPERATIONS.\n ops.fill_transfer_from_savings,\n ops.recurrent_transfer,\n ops.fill_recurrent_transfer,\n ops.escrow_transfer,\n ],\n \"market-orders\": [\n ops.fill_convert_request,\n ops.fill_order,\n ops.fill_collateralized_convert_request,\n ops.limit_order_create2,\n ops.limit_order_create,\n ops.limit_order_cancel,\n ],\n interests: [ops.interest],\n \"stake-operations\": [\n ops.return_vesting_delegation,\n ops.withdraw_vesting,\n ops.transfer_to_vesting,\n ops.set_withdraw_vesting_route,\n ops.update_proposal_votes,\n ops.fill_vesting_withdraw,\n ops.account_witness_proxy,\n ops.delegate_vesting_shares,\n ],\n rewards: [\n ops.author_reward,\n ops.curation_reward,\n ops.producer_reward,\n ops.claim_reward_balance,\n ops.comment_benefactor_reward,\n ops.liquidity_reward,\n ops.proposal_pay,\n ],\n};\n\n/**\n * Every operation any group asks for, de-duplicated. Groups overlap (an op can be\n * meaningful to more than one), and the raw concatenation used to repeat ids in the\n * `operation-types` query string sent to hafah.\n */\nexport const ALL_ACCOUNT_OPERATIONS = Array.from(\n new Set(Object.values(ACCOUNT_OPERATION_GROUPS).flat())\n);\n\ninterface TxPageRaw {\n entries: Transaction[];\n currentPage: number;\n}\n\n/**\n * Cursor for transaction pagination.\n * null = first request (returns newest page, API omits page param).\n * number = specific page to fetch (decrementing for older data).\n */\ntype TxCursor = number | null;\n\ninterface HafahOperation {\n op: {\n type: string;\n value: Record;\n };\n block: number;\n trx_id: string;\n op_pos: number;\n op_type_id: number;\n timestamp: string;\n virtual_op: boolean;\n operation_id: string;\n trx_in_block: number;\n}\n\ninterface HafahResponse {\n total_operations: number;\n total_pages: number;\n operations_result: HafahOperation[];\n}\n\n/**\n * Derive a safe, unique, and chronologically ordered `num` from REST fields.\n *\n * Layout: block * 10_000_000 + trx_in_block * 100 + op_pos\n * - trx_in_block: up to 99_999 (Hive max block size ~65K txs)\n * - op_pos: up to 99 (operations within a single transaction)\n * - Max value: 105_000_000 * 10_000_000 = 1.05e15, within MAX_SAFE_INTEGER (9.007e15)\n */\nfunction deriveNum(entry: HafahOperation): number {\n return entry.block * 10_000_000 + entry.trx_in_block * 100 + entry.op_pos;\n}\n\n/**\n * Strip the `_operation` suffix from the REST API type name\n * to match the Transaction type discriminants (e.g. \"transfer\").\n */\nfunction normalizeOpType(restType: string): string {\n return restType.replace(/_operation$/, \"\");\n}\n\n/**\n * Check if a value is a NAI asset object (e.g. { nai: \"@@000000021\", amount: \"1000\", precision: 3 }).\n */\nfunction isNaiAsset(v: unknown): v is { nai: string; amount: string; precision: number } {\n return typeof v === \"object\" && v !== null && \"nai\" in v && \"amount\" in v && \"precision\" in v;\n}\n\n/**\n * Convert a NAI asset object to a human-readable string like \"1.000 HIVE\".\n * Returns the value unchanged if it's not a NAI object.\n */\nfunction naiToString(v: unknown): unknown {\n if (!isNaiAsset(v)) return v;\n const parsed = parseAsset(v);\n const symbol = NaiMap[v.nai as keyof typeof NaiMap] ?? \"UNKNOWN\";\n return `${parsed.amount.toFixed(v.precision)} ${symbol}`;\n}\n\n/**\n * Convert all NAI asset objects in an operation's value to human-readable strings\n * so downstream renderers that expect \"1.000 HIVE\" don't crash with object values.\n */\nfunction normalizeOpValue(value: Record): Record {\n const result: Record = {};\n for (const [k, v] of Object.entries(value)) {\n result[k] = naiToString(v);\n }\n return result;\n}\n\n/**\n * Get account transaction history with pagination and filtering.\n * Uses the hafah-api REST endpoint for server-side op-type filtering\n * and real pagination metadata.\n *\n * @param username - Account name to get transactions for\n * @param limit - Number of transactions per page\n * @param group - Filter by operation group (transfers, market-orders, etc.)\n */\nexport function getTransactionsInfiniteQueryOptions(\n username?: string,\n limit = 20,\n group: OperationGroup | \"\" = \"\"\n) {\n const operationTypes = group\n ? ACCOUNT_OPERATION_GROUPS[group]\n : ALL_ACCOUNT_OPERATIONS;\n\n return infiniteQueryOptions<\n TxPageRaw,\n Error,\n InfiniteData,\n (string | number)[],\n TxCursor\n >({\n queryKey: QueryKeys.accounts.transactions(username ?? \"\", group, limit),\n initialPageParam: null as TxCursor,\n\n queryFn: async ({ pageParam, signal }: { pageParam: TxCursor; signal?: AbortSignal }) => {\n if (!username) {\n return { entries: [], currentPage: 0 };\n }\n\n const fetchPage = async (page: TxCursor) => {\n const params: Record = {\n \"account-name\": username,\n \"operation-types\": operationTypes.join(\",\"),\n \"page-size\": limit,\n };\n\n // First call: omit page to get newest data\n // Subsequent calls: pass specific page number (decrementing)\n if (page !== null) {\n params.page = page;\n }\n\n return (await callREST(\n \"hafah\",\n \"/accounts/{account-name}/operations\",\n params,\n undefined,\n undefined,\n signal\n )) as HafahResponse;\n };\n\n const toEntries = (response: HafahResponse) =>\n response.operations_result.map((entry) => {\n const type = normalizeOpType(entry.op.type);\n const value = normalizeOpValue(entry.op.value);\n return {\n ...value,\n num: deriveNum(entry),\n type,\n timestamp: entry.timestamp,\n trx_id: entry.trx_id,\n } as Transaction;\n });\n\n const response = await fetchPage(pageParam);\n let entries = toEntries(response);\n let currentPage = pageParam ?? response.total_pages;\n\n // hafah pages oldest-first, so the newest page (what an omitted `page`\n // returns) is the remainder bucket: total_operations mod page-size rows,\n // anywhere from 1 to page-size. Requesting page=total_pages explicitly\n // returns the same short bucket, so the only way to a full-size first\n // screen is chaining the next older page in.\n if (pageParam === null && entries.length < limit && response.total_pages > 1) {\n try {\n const chained = await fetchPage(response.total_pages - 1);\n entries = [...entries, ...toEntries(chained)];\n currentPage = response.total_pages - 1;\n } catch (e) {\n // Caller cancellation is not a node failure: rethrow so the query\n // settles as cancelled instead of resolving with a partial page.\n if (signal?.aborted) {\n throw e;\n }\n // Keep the short remainder page; the cursor stays at total_pages so\n // the page that failed here is fetchNextPage's next target, not lost.\n }\n }\n\n return { entries, currentPage };\n },\n\n getNextPageParam: (lastPage) => {\n const nextPage = lastPage.currentPage - 1;\n return nextPage >= 1 ? nextPage : undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport function getBotsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.accounts.bots(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/public/bots\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bots: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n refetchOnMount: true,\n staleTime: Infinity,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { ReferralItem } from \"../types/referral\";\n\ntype PageParam = { maxId?: number };\n\nexport function getReferralsInfiniteQueryOptions(username: string) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.referrals(username),\n initialPageParam: { maxId: undefined } as PageParam,\n queryFn: async ({ pageParam }: { pageParam: PageParam }) => {\n const { maxId } = pageParam ?? {};\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(`/private-api/referrals/${username}`, baseUrl);\n\n if (maxId !== undefined) {\n url.searchParams.set(\"max_id\", maxId.toString());\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch referrals: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n getNextPageParam: (lastPage: ReferralItem[]) => {\n const nextMaxId = lastPage?.[lastPage.length - 1]?.id;\n return typeof nextMaxId === \"number\" ? ({ maxId: nextMaxId } as PageParam) : undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { ReferralStat } from \"../types/referral\";\n\ninterface ReferralStatsResponse {\n total?: number;\n rewarded?: number;\n}\n\nexport function getReferralsStatsQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.accounts.referralsStats(username),\n queryFn: async () => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/referrals/${username}/stats`,\n {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch referral stats: ${response.status}`);\n }\n\n const data = await response.json() as ReferralStatsResponse;\n\n if (!data) {\n throw new Error(\"No Referrals for this user!\");\n }\n\n return {\n total: data.total ?? 0,\n rewarded: data.rewarded ?? 0,\n } as ReferralStat;\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow, Profile, FriendsRow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface FriendsPageParam {\n startFollowing: string;\n}\n\ntype FriendsPage = FriendsRow[];\n\n/**\n * Get list of friends (following/followers) with profile information\n *\n * @param following - The account whose friends to get\n * @param mode - \"following\" or \"followers\"\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Number of results per page (default: 100)\n * @param enabled - Whether query is enabled (default: true)\n */\nexport function getFriendsInfiniteQueryOptions(\n following: string,\n mode: \"following\" | \"followers\",\n options?: {\n followType?: string;\n limit?: number;\n enabled?: boolean;\n }\n) {\n const { followType = \"blog\", limit = 100, enabled = true } = options ?? {};\n\n return infiniteQueryOptions<\n FriendsPage,\n Error,\n InfiniteData,\n (string | number)[],\n FriendsPageParam\n >({\n queryKey: QueryKeys.accounts.friends(following, mode, followType, limit),\n initialPageParam: { startFollowing: \"\" } as FriendsPageParam,\n enabled,\n refetchOnMount: true,\n\n queryFn: async ({ pageParam }: { pageParam: FriendsPageParam }) => {\n const { startFollowing } = pageParam;\n\n const method = mode === \"following\" ? \"get_following\" : \"get_followers\";\n const response = (await callRPC(`condenser_api.${method}`, [following, startFollowing === \"\" ? null : startFollowing, followType, limit])) as Follow[];\n\n const accountNames = response.map((e) =>\n mode === \"following\" ? e.following : e.follower\n );\n\n // Get profiles via bridge API\n const accounts = (await callRPC(\"bridge.get_profiles\", {\n accounts: accountNames,\n observer: undefined,\n })) as Profile[];\n\n const rows: FriendsPage = (accounts ?? []).map((a) => ({\n name: a.name,\n reputation: a.reputation,\n active: a.active, // Return raw timestamp\n }));\n\n return rows;\n },\n\n getNextPageParam: (lastPage: FriendsPage): FriendsPageParam | undefined =>\n lastPage && lastPage.length === limit\n ? { startFollowing: lastPage[lastPage.length - 1].name }\n : undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow, Profile, FriendSearchResult } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nconst SEARCH_LIMIT = 30;\n\n/**\n * Search friends (following/followers) by query string\n *\n * @param username - The account whose friends to search\n * @param mode - \"following\" or \"followers\"\n * @param query - Search query string\n */\nexport function getSearchFriendsQueryOptions(\n username: string,\n mode: \"following\" | \"followers\",\n query: string\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.searchFriends(username, mode, query),\n refetchOnMount: false,\n enabled: false, // Manual query via refetch\n queryFn: async (): Promise => {\n if (!query) return [];\n\n const start = query.slice(0, -1);\n const method = mode === \"following\" ? \"get_following\" : \"get_followers\";\n const response = (await callRPC(`condenser_api.${method}`, [username, start, \"blog\", 1000])) as Follow[];\n\n const accountNames = response\n .map((e) => (mode === \"following\" ? e.following : e.follower))\n .filter((name) => name.toLowerCase().includes(query.toLowerCase()))\n .slice(0, SEARCH_LIMIT);\n\n // Get profiles via bridge API\n const accounts = (await callRPC(\"bridge.get_profiles\", {\n accounts: accountNames,\n observer: undefined,\n })) as Profile[];\n\n return (\n accounts?.map((a) => ({\n name: a.name,\n full_name: a.metadata.profile?.name || \"\",\n reputation: a.reputation,\n active: a.active, // Return raw timestamp\n })) ?? []\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { TrendingTag } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getTrendingTagsQueryOptions(limit = 20) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.trendingTags(),\n queryFn: async ({ pageParam: { afterTag } }) =>\n callRPC(\"condenser_api.get_trending_tags\", [afterTag, limit])\n .then((tags: TrendingTag[]) =>\n tags\n .filter((x) => x.name !== \"\")\n .filter((x) => !x.name.startsWith(\"hive-\"))\n .map((x) => x.name)\n ),\n initialPageParam: { afterTag: \"\" },\n getNextPageParam: (lastPage) =>\n lastPage?.length > 0\n ? { afterTag: lastPage[lastPage.length - 1] }\n : undefined,\n staleTime: 60 * 60 * 1000, // 1 hour — tags change slowly\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { isCommunity } from \"@/modules/core/utils\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { TrendingTag } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getTrendingTagsWithStatsQueryOptions(limit = 250) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.trendingTagsWithStats(limit),\n queryFn: async ({ pageParam: { afterTag } }) =>\n callRPC(\"condenser_api.get_trending_tags\", [afterTag, limit])\n .then((tags: TrendingTag[]) =>\n tags.filter((tag) => tag.name !== \"\").filter((tag) => !isCommunity(tag.name))\n ),\n initialPageParam: { afterTag: \"\" },\n getNextPageParam: (lastPage) =>\n lastPage?.length ? { afterTag: lastPage[lastPage.length - 1].name } : undefined,\n staleTime: Infinity,\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\n\nexport function getFragmentsQueryOptions(username: string, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.fragments(username),\n queryFn: async () => {\n if (!code) {\n return [];\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n return response.json() as Promise;\n },\n enabled: !!username && !!code,\n });\n}\n\nexport function getFragmentsInfiniteQueryOptions(\n username: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.fragmentsInfinite(username, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!username || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/fragments?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch fragments: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!username && !!code,\n });\n}\n","import { ConfigManager, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\n// TODO: replace any with Entry\nexport function getPromotedPostsQuery(\n type: \"feed\" | \"waves\" = \"feed\"\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.promoted(type),\n queryFn: async () => {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/promoted-entries\", baseUrl);\n if (type === \"waves\") {\n url.searchParams.append(\"short_content\", \"1\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n const data = await response.json();\n return data as T[];\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry, Vote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getEntryActiveVotesQueryOptions(entry?: Entry) {\n return queryOptions({\n queryKey: QueryKeys.posts.entryActiveVotes(entry?.author, entry?.permlink),\n queryFn: async () => {\n return callRPC(\"condenser_api.get_active_votes\", [\n entry?.author,\n entry?.permlink,\n ]) as Promise;\n },\n enabled: !!entry,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { Vote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get a specific user's vote on a post\n * Useful when post has >1000 votes to efficiently get one user's vote\n *\n * @param username - The voter's username\n * @param author - The post author\n * @param permlink - The post permlink\n */\nexport function getUserPostVoteQueryOptions(\n username: string | undefined,\n author: string | undefined,\n permlink: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.userPostVote(username!, author!, permlink!),\n queryFn: async () => {\n const result = await callRPC(\"database_api.list_votes\", {\n start: [username, author, permlink],\n limit: 1,\n order: \"by_voter_comment\"\n });\n\n // Return first vote if found, otherwise null\n return (result?.votes?.[0] || null) as Vote | null;\n },\n enabled: !!username && !!author && !!permlink,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getContentQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.content(author, permlink),\n enabled: !!author && !!permlink,\n queryFn: async (): Promise =>\n callRPC(\"condenser_api.get_content\", [\n author,\n permlink,\n ]) as Promise,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getContentRepliesQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.contentReplies(author, permlink),\n enabled: !!author && !!permlink,\n queryFn: async (): Promise =>\n callRPC(\"condenser_api.get_content_replies\", {\n author,\n permlink,\n }) as Promise,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getPostHeaderQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.postHeader(author, permlink),\n queryFn: async () => {\n return callRPC(\"bridge.get_post_header\", {\n author,\n permlink,\n }) as Promise;\n },\n initialData: null,\n });\n}\n","import { CONFIG } from \"@/modules/core\";\nimport { Entry } from \"../types\";\n\n/**\n * Filters and censors entries that match DMCA patterns\n * @param entry - Single entry or array of entries to filter\n * @returns Filtered entry/entries with DMCA content censored.\n * Note: Can return null/undefined if input is falsy - callers should guard against this.\n */\nexport function filterDmcaEntry(entry: Entry): Entry | null | undefined;\nexport function filterDmcaEntry(entries: Entry[]): Entry[];\nexport function filterDmcaEntry(entryOrEntries: Entry | Entry[] | null | undefined): Entry | Entry[] | null | undefined {\n if (Array.isArray(entryOrEntries)) {\n // Array elements are non-null Entries, so applyFilter never returns nullish here.\n return entryOrEntries.map((entry) => applyFilter(entry)) as Entry[];\n }\n return applyFilter(entryOrEntries);\n}\n\nfunction applyFilter(entry: Entry | null | undefined): Entry | null | undefined {\n if (!entry) return entry;\n\n const entryPath = `@${entry.author}/${entry.permlink}`;\n const isDmca =\n CONFIG.dmcaPatterns.includes(entryPath) ||\n CONFIG.dmcaPatternRegexes.some((regex) => regex.test(entryPath));\n\n if (isDmca) {\n return {\n ...entry,\n body: \"This post is not available due to a copyright/fraudulent claim.\",\n title: \"\",\n };\n }\n\n return entry;\n}\n","import { callWithQuorum } from \"../../hive-tx\";\nimport { Entry } from \"@/modules/posts/types\";\n\n/**\n * When the primary node returns null for a get_post call,\n * verify by querying multiple random nodes. If any node\n * returns the post, it exists (the first node was lagging).\n *\n * Uses callWithQuorum(quorum=1) which shuffles and queries\n * nodes in batches. Since it shuffles, it's unlikely to hit\n * the same node that just returned null first.\n */\nexport async function verifyPostOnAlternateNode(\n author: string,\n permlink: string,\n observer: string\n): Promise {\n try {\n const response = await callWithQuorum(\"bridge.get_post\", {\n author,\n permlink,\n observer,\n }, 1);\n\n if (\n response &&\n typeof response === \"object\" &&\n (response as Entry).author === author &&\n (response as Entry).permlink === permlink\n ) {\n return response as Entry;\n }\n } catch {\n // All nodes failed or returned null\n }\n\n return null;\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { verifyPostOnAlternateNode } from \"@/modules/bridge/verify-on-alternate-node\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getPostQueryOptions(\n author: string,\n permlink?: string,\n observer = \"\",\n num?: number\n) {\n const cleanPermlink = permlink?.trim();\n const entryPath = `/@${author}/${cleanPermlink ?? \"\"}`;\n\n return queryOptions({\n queryKey: QueryKeys.posts.entry(entryPath),\n queryFn: async () => {\n if (!cleanPermlink || cleanPermlink === \"undefined\") {\n return null;\n }\n\n // hive-tx tries nodes in order; the first healthy node (index 0) handles this call.\n // If it returns null, verifyPostOnAlternateNode skips index 0 and tries others.\n const response = await callRPC(\"bridge.get_post\", {\n author,\n permlink: cleanPermlink,\n observer,\n });\n\n if (!response) {\n // Primary node returned null — verify on alternate nodes\n // to guard against sync lag returning null for valid posts\n const verified = await verifyPostOnAlternateNode(author, cleanPermlink, observer);\n if (!verified) {\n return null;\n }\n const verifiedEntry = num !== undefined ? { ...verified, num } as Entry : verified as Entry;\n return filterDmcaEntry(verifiedEntry);\n }\n\n const entry = num !== undefined ? { ...response, num } as Entry : response as Entry;\n return filterDmcaEntry(entry);\n },\n enabled:\n !!author &&\n !!permlink &&\n permlink.trim() !== \"\" &&\n permlink.trim() !== \"undefined\",\n });\n}\n","import { CONFIG } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { AccountRelationship, Profile } from \"@/modules/accounts/types\";\nimport { Community } from \"@/modules/communities/types/community\";\nimport { Subscription } from \"@/modules/communities/types/subscription\";\nimport { Entry } from \"@/modules/posts/types\";\nimport { filterDmcaEntry } from \"@/modules/posts/utils/filter-dmca-entries\";\n\ntype BridgeParams = Record | unknown[];\n\nexport function bridgeApiCall(endpoint: string, params: BridgeParams, signal?: AbortSignal): Promise {\n return callRPC(`bridge.${endpoint}`, params, undefined, undefined, signal) as Promise;\n}\n\nexport async function resolvePost(\n post: Entry,\n observer: string,\n num?: number,\n signal?: AbortSignal\n): Promise {\n const { json_metadata: json } = post;\n\n if (json?.original_author && json?.original_permlink && json.tags?.[0] === \"cross-post\") {\n try {\n const resp = await getPost(\n json.original_author,\n json.original_permlink,\n observer,\n num,\n signal\n );\n if (resp) {\n return {\n ...post,\n original_entry: resp,\n num,\n };\n }\n return post;\n } catch {\n return post;\n }\n }\n\n return { ...post, num };\n}\n\nasync function resolvePosts(posts: Entry[], observer: string, signal?: AbortSignal): Promise {\n const validatedPosts = posts.map(validateEntry);\n const resolved = await Promise.all(validatedPosts.map((p) => resolvePost(p, observer, undefined, signal)));\n return filterDmcaEntry(resolved) as Entry[];\n}\n\nexport async function getPostsRanked(\n sort: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n tag: string = \"\",\n observer: string = \"\",\n signal?: AbortSignal\n): Promise {\n const resp = await bridgeApiCall(\"get_ranked_posts\", {\n sort,\n start_author,\n start_permlink,\n limit,\n tag,\n observer,\n }, signal);\n\n if (Array.isArray(resp)) {\n return resolvePosts(resp, observer, signal);\n }\n\n if (resp != null) {\n console.warn(\n `[SDK] get_ranked_posts returned ${typeof resp} instead of an array for sort=${sort}; treating as no results.`\n );\n }\n\n return null;\n}\n\nexport async function getAccountPosts(\n sort: string,\n account: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n observer: string = \"\",\n signal?: AbortSignal\n): Promise {\n if (CONFIG.dmcaAccounts.includes(account)) {\n return [];\n }\n\n const resp = await bridgeApiCall(\"get_account_posts\", {\n sort,\n account,\n start_author,\n start_permlink,\n limit,\n observer,\n }, signal);\n\n if (Array.isArray(resp)) {\n return resolvePosts(resp, observer, signal);\n }\n\n if (resp != null) {\n console.warn(\n `[SDK] get_account_posts returned ${typeof resp} instead of an array for account=${account}, sort=${sort}; treating as no results.`\n );\n }\n\n return null;\n}\n\n/**\n * Validates that an Entry object has required properties with non-null values.\n */\nfunction validateEntry(entry: Entry): Entry {\n const newEntry: Entry = {\n ...entry,\n active_votes: Array.isArray(entry.active_votes) ? [...entry.active_votes] : [],\n beneficiaries: Array.isArray(entry.beneficiaries) ? [...entry.beneficiaries] : [],\n blacklists: Array.isArray(entry.blacklists) ? [...entry.blacklists] : [],\n replies: Array.isArray(entry.replies) ? [...entry.replies] : [],\n stats: entry.stats ? { ...entry.stats } : null,\n };\n\n const requiredStringProps: (keyof Entry)[] = [\n \"author\",\n \"title\",\n \"body\",\n \"created\",\n \"category\",\n \"permlink\",\n \"url\",\n \"updated\",\n ];\n\n for (const prop of requiredStringProps) {\n if (newEntry[prop] == null) {\n (newEntry as any)[prop] = \"\";\n }\n }\n\n if (newEntry.author_reputation == null) {\n newEntry.author_reputation = 0;\n }\n if (newEntry.children == null) {\n newEntry.children = 0;\n }\n if (newEntry.depth == null) {\n newEntry.depth = 0;\n }\n if (newEntry.net_rshares == null) {\n newEntry.net_rshares = 0;\n }\n if (newEntry.payout == null) {\n newEntry.payout = 0;\n }\n if (newEntry.percent_hbd == null) {\n newEntry.percent_hbd = 0;\n }\n\n if (!newEntry.stats) {\n newEntry.stats = {\n flag_weight: 0,\n gray: false,\n hide: false,\n total_votes: 0,\n };\n }\n\n if (newEntry.author_payout_value == null) {\n newEntry.author_payout_value = \"0.000 HBD\";\n }\n if (newEntry.curator_payout_value == null) {\n newEntry.curator_payout_value = \"0.000 HBD\";\n }\n if (newEntry.max_accepted_payout == null) {\n newEntry.max_accepted_payout = \"1000000.000 HBD\";\n }\n if (newEntry.payout_at == null) {\n newEntry.payout_at = \"\";\n }\n if (newEntry.pending_payout_value == null) {\n newEntry.pending_payout_value = \"0.000 HBD\";\n }\n if (newEntry.promoted == null) {\n newEntry.promoted = \"0.000 HBD\";\n }\n\n if (newEntry.is_paidout == null) {\n newEntry.is_paidout = false;\n }\n\n return newEntry;\n}\n\nexport async function getPost(\n author: string = \"\",\n permlink: string = \"\",\n observer: string = \"\",\n num?: number,\n signal?: AbortSignal\n): Promise {\n const resp = await bridgeApiCall(\"get_post\", {\n author,\n permlink,\n observer,\n }, signal);\n\n if (resp) {\n const validatedEntry = validateEntry(resp);\n const post = await resolvePost(validatedEntry, observer, num, signal);\n return filterDmcaEntry(post) as Entry;\n }\n\n return undefined;\n}\n\nexport async function getPostHeader(\n author: string = \"\",\n permlink: string = \"\"\n): Promise {\n const resp = await bridgeApiCall(\"get_post_header\", {\n author,\n permlink,\n });\n return resp ? validateEntry(resp) : resp;\n}\n\nexport async function getDiscussion(\n author: string,\n permlink: string,\n observer?: string\n): Promise | null> {\n const resp = await bridgeApiCall | null>(\"get_discussion\", {\n author,\n permlink,\n observer: observer || author,\n });\n\n if (resp) {\n const validatedResp: Record = {};\n for (const [key, entry] of Object.entries(resp)) {\n validatedResp[key] = validateEntry(entry);\n }\n return validatedResp;\n }\n return resp;\n}\n\nexport async function getCommunity(\n name: string,\n observer: string | undefined = \"\"\n): Promise {\n return bridgeApiCall(\"get_community\", { name, observer });\n}\n\nexport async function getCommunities(\n last: string = \"\",\n limit: number = 100,\n query?: string | null,\n sort: string = \"rank\",\n observer: string = \"\"\n): Promise {\n return bridgeApiCall(\"list_communities\", {\n last,\n limit,\n query,\n sort,\n observer,\n });\n}\n\nexport async function normalizePost(post: unknown): Promise {\n const resp = await bridgeApiCall(\"normalize_post\", { post });\n return resp ? validateEntry(resp) : resp;\n}\n\nexport async function getSubscriptions(account: string): Promise {\n return bridgeApiCall(\"list_all_subscriptions\", { account });\n}\n\nexport async function getSubscribers(community: string): Promise {\n return bridgeApiCall(\"list_subscribers\", { community });\n}\n\nexport async function getRelationshipBetweenAccounts(\n follower: string,\n following: string\n): Promise {\n return bridgeApiCall(\"get_relationship_between_accounts\", [\n follower,\n following,\n ]);\n}\n\nexport async function getProfiles(\n accounts: string[],\n observer?: string\n): Promise {\n return bridgeApiCall(\"get_profiles\", { accounts, observer });\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getDiscussion } from \"@/modules/bridge\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport enum SortOrder {\n trending = \"trending\",\n author_reputation = \"author_reputation\",\n votes = \"votes\",\n created = \"created\",\n}\n\nfunction parseAsset(value: string): { amount: number; symbol: string } {\n const match = value.match(/^(\\d+\\.?\\d*)\\s*([A-Z]+)$/);\n if (!match) return { amount: 0, symbol: \"\" };\n return {\n amount: parseFloat(match[1]),\n symbol: match[2],\n };\n}\n\nexport function sortDiscussions(\n entry: Entry,\n discussion: Entry[],\n order: SortOrder\n) {\n const allPayout = (c: Entry) =>\n parseAsset(c.pending_payout_value).amount +\n parseAsset(c.author_payout_value).amount +\n parseAsset(c.curator_payout_value).amount;\n\n const absNegative = (a: Entry) => a.net_rshares < 0;\n const isPinned = (a: Entry) =>\n entry.json_metadata?.pinned_reply === `${a.author}/${a.permlink}`;\n\n const sortOrders = {\n trending: (a: Entry, b: Entry) => {\n if (absNegative(a)) {\n return 1;\n }\n\n if (absNegative(b)) {\n return -1;\n }\n\n const _a = allPayout(a);\n const _b = allPayout(b);\n if (_a !== _b) {\n return _b - _a;\n }\n\n return 0;\n },\n author_reputation: (a: Entry, b: Entry) => {\n const keyA = a.author_reputation;\n const keyB = b.author_reputation;\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n votes: (a: Entry, b: Entry) => {\n const keyA = a.children;\n const keyB = b.children;\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n created: (a: Entry, b: Entry) => {\n if (absNegative(a)) {\n return 1;\n }\n\n if (absNegative(b)) {\n return -1;\n }\n\n const keyA = Date.parse(a.created);\n const keyB = Date.parse(b.created);\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n };\n\n const sorted = discussion.sort(sortOrders[order]);\n const pinnedIndex = sorted.findIndex((i) => isPinned(i));\n const pinned = sorted[pinnedIndex];\n if (pinnedIndex >= 0) {\n sorted.splice(pinnedIndex, 1);\n sorted.unshift(pinned);\n }\n return sorted;\n}\n\nexport function getDiscussionsQueryOptions(\n entry: Entry,\n order: SortOrder = SortOrder.created,\n enabled: boolean = true,\n observer?: string\n) {\n // Anonymous readers fall back to CONFIG.defaultObserver rather than the post\n // author. Author-as-observer only helps the minority of authors who curate a\n // mute list; everyone else's comment section came back unfiltered, so the\n // shared moderation account is the better default for logged-out traffic.\n const resolvedObserver = observer || CONFIG.defaultObserver;\n\n return queryOptions({\n queryKey: QueryKeys.posts.discussions(entry?.author, entry?.permlink, order, resolvedObserver),\n queryFn: async () => {\n if (!entry) {\n return [];\n }\n\n const response = await callRPC(\"bridge.get_discussion\", {\n author: entry.author,\n permlink: entry.permlink,\n observer: resolvedObserver,\n });\n\n const results = response\n ? Array.from(Object.values(response as Record))\n : [];\n return filterDmcaEntry(results);\n },\n enabled: enabled && !!entry,\n select: (data: Entry[]) => sortDiscussions(entry, data, order),\n // Preserve optimistic entries during refetch by using structural sharing\n // This ensures newly added comments (is_optimistic: true) aren't wiped out\n // when blockchain hasn't indexed them yet\n structuralSharing: (oldData, newData) => {\n if (!oldData || !newData) return newData;\n\n // Find optimistic entries in old data that aren't in new data yet\n const optimisticEntries = (oldData as Entry[]).filter(\n (entry: Entry) => entry.is_optimistic === true\n );\n\n const fetchedPermlinks = new Set(\n (newData as Entry[]).map((e: Entry) => `${e.author}/${e.permlink}`)\n );\n\n const missingOptimistic = optimisticEntries.filter(\n (opt: Entry) => !fetchedPermlinks.has(`${opt.author}/${opt.permlink}`)\n );\n\n // If there are optimistic entries missing from new data, preserve them\n if (missingOptimistic.length > 0) {\n return [...(newData as Entry[]), ...missingOptimistic];\n }\n\n return newData;\n },\n });\n}\n\nexport function getDiscussionQueryOptions(\n author: string,\n permlink: string,\n observer?: string,\n enabled = true\n) {\n const resolvedObserver = observer || CONFIG.defaultObserver;\n\n return queryOptions({\n queryKey: QueryKeys.posts.discussion(author, permlink, resolvedObserver),\n enabled: enabled && !!author && !!permlink,\n queryFn: async () =>\n getDiscussion(author, permlink, resolvedObserver) as Promise | null>,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getAccountPosts } from \"@/modules/bridge\";\n\ntype PageParam = {\n author: string | undefined;\n permlink: string | undefined;\n hasNextPage: boolean;\n};\ntype Page = Entry[];\n\nexport function getAccountPostsInfiniteQueryOptions(\n username: string | undefined,\n filter = \"posts\",\n limit = 20,\n observer = \"\",\n enabled = true\n) {\n return infiniteQueryOptions<\n Page,\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.posts.accountPosts(username ?? \"\", filter, limit, observer),\n enabled: !!username && enabled,\n initialPageParam: {\n author: undefined,\n permlink: undefined,\n hasNextPage: true,\n } as PageParam,\n\n queryFn: async ({ pageParam, signal }) => {\n if (!pageParam?.hasNextPage || !username) return [];\n\n const response = await getAccountPosts(\n filter,\n username,\n pageParam.author ?? \"\",\n pageParam.permlink ?? \"\",\n limit,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n\n getNextPageParam: (lastPage: Page): PageParam | undefined => {\n const last = lastPage?.[lastPage.length - 1];\n // Only consider there's a next page if we got a full page of results\n // A partial page means we've reached the end\n const hasNextPage = (lastPage?.length ?? 0) === limit;\n\n if (!hasNextPage) {\n return undefined;\n }\n\n return {\n author: last?.author,\n permlink: last?.permlink,\n hasNextPage,\n };\n },\n });\n}\n\nexport function getAccountPostsQueryOptions(\n username: string | undefined,\n filter = \"posts\",\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit = 20,\n observer = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.accountPostsPage(username ?? \"\", filter, start_author, start_permlink, limit, observer),\n enabled: !!username && enabled,\n queryFn: async ({ signal } = {} as any) => {\n if (!username) {\n return [];\n }\n\n const response = await getAccountPosts(\n filter,\n username,\n start_author,\n start_permlink,\n limit,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n });\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getPostsRanked } from \"@/modules/bridge\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype PageParam = {\n author: string | undefined;\n permlink: string | undefined;\n};\n\ninterface GetPostsRankedOptions {\n resolvePosts?: boolean;\n}\n\n/**\n * `select` runs on every render, and React Query only reuses its previous\n * result when both the data and the select function are unchanged. These\n * options are rebuilt on each render, so an inline arrow would be a new\n * function every time and every page would be re-sorted on every render.\n * One stable function per sort keeps that memoization working.\n */\nconst displaySelects = new Map<\n string,\n (data: InfiniteData) => InfiniteData\n>();\n\nfunction displaySelect(sort: string) {\n let select = displaySelects.get(sort);\n if (!select) {\n select = (data) => ({\n ...data,\n pages: data.pages.map((page) => orderForDisplay(page, sort)),\n });\n displaySelects.set(sort, select);\n }\n return select;\n}\n\n/**\n * Display order for one page.\n *\n * Pinned entries are captured before the created-date sort: the bridge surfaces\n * them at the head of the response in the community moderators' chosen order,\n * which the sort would scatter by age. Every pin is kept, since an earlier\n * post-sort find() kept one and silently dropped the rest, so multi-pin\n * communities never displayed their other pinned posts. Pins only occur on the\n * first page, cursor pages return none, so this is a no-op elsewhere.\n *\n * Applied in `select` rather than in the query function so it cannot reach the\n * pagination cursor.\n */\nfunction orderForDisplay(page: Entry[], sort: string): Entry[] {\n const pinned = page.filter((entry) => entry.stats?.is_pinned);\n const rest = page.filter((entry) => !entry.stats?.is_pinned);\n\n if (sort === \"hot\") {\n return [...pinned, ...rest];\n }\n\n const byCreated = [...rest].sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n return [...pinned, ...byCreated];\n}\n\nexport function getPostsRankedInfiniteQueryOptions(\n sort: string,\n tag: string,\n limit = 20,\n observer = \"\",\n enabled = true,\n _options: GetPostsRankedOptions = {}\n) {\n return infiniteQueryOptions<\n Entry[],\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.posts.postsRanked(sort, tag, limit, observer),\n queryFn: async ({ pageParam, signal }: { pageParam: PageParam; signal: AbortSignal }) => {\n let sanitizedTag = tag;\n if (CONFIG.dmcaTagRegexes.some((regex) => regex.test(tag))) {\n sanitizedTag = \"\";\n }\n\n const response = await callRPC(\"bridge.get_ranked_posts\", {\n sort,\n start_author: pageParam.author,\n start_permlink: pageParam.permlink,\n limit,\n tag: sanitizedTag,\n observer,\n }, undefined, undefined, signal);\n\n if (response === null || response === undefined) {\n return [];\n }\n\n if (!Array.isArray(response)) {\n throw new Error(\n `[SDK] get_ranked_posts returned ${typeof response} for sort=${sort}`\n );\n }\n\n // Kept in the bridge's own order. getNextPageParam takes the cursor from\n // the last entry of the page this returns, and the bridge continues from\n // that entry in ITS ranking, so reordering here made the next request\n // start from the middle of the previous ranked page: for trending, payout\n // and muted the last entry by date is not the last entry by rank, and\n // scrolling repeated some posts and skipped others. Display order is\n // applied in `select`, which React Query runs after pagination.\n return filterDmcaEntry(response as Entry[]);\n },\n select: displaySelect(sort),\n enabled,\n initialPageParam: {\n author: undefined,\n permlink: undefined,\n } as PageParam,\n getNextPageParam: (lastPage: Entry[]) => {\n // React Query reads \"there is no next page\" from undefined alone, so\n // returning an object here always left it true. An infinite list\n // then keeps calling fetchNextPage at the end of the feed, appending an\n // empty page each time: the query state churns and the cache grows for as\n // long as the reader sits at the bottom.\n const last = lastPage?.[lastPage.length - 1];\n if (!last) {\n return undefined;\n }\n\n return { author: last.author, permlink: last.permlink };\n },\n });\n}\n\nexport function getPostsRankedQueryOptions(\n sort: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n tag: string = \"\",\n observer: string = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.postsRankedPage(sort, start_author, start_permlink, limit, tag, observer),\n enabled,\n queryFn: async ({ signal } = {} as any) => {\n let sanitizedTag = tag;\n if (CONFIG.dmcaTagRegexes.some((regex) => regex.test(tag))) {\n sanitizedTag = \"\";\n }\n\n const response = await getPostsRanked(\n sort,\n start_author,\n start_permlink,\n limit,\n sanitizedTag,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface BlogEntry {\n author: string;\n permlink: string;\n blog: string;\n reblog_on: string;\n reblogged_on: string;\n entry_id: number;\n}\n\nexport interface Reblog {\n author: string;\n permlink: string;\n}\n\nexport function getReblogsQueryOptions(\n username?: string,\n activeUsername?: string,\n limit = 200\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.reblogs(username ?? \"\", limit),\n queryFn: async () => {\n const response = (await callRPC(\"condenser_api.get_blog_entries\", [\n username ?? activeUsername,\n 0,\n limit,\n ])) as BlogEntry[];\n\n return response\n .filter(\n (i) =>\n i.author !== activeUsername &&\n !i.reblogged_on.startsWith(\"1970-\")\n )\n .map((i) => ({ author: i.author, permlink: i.permlink })) as Reblog[];\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of usernames who reblogged a specific post\n */\nexport function getRebloggedByQueryOptions(author?: string, permlink?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.rebloggedBy(author ?? \"\", permlink ?? \"\"),\n queryFn: async () => {\n if (!author || !permlink) {\n return [];\n }\n\n const response = (await callRPC(\"condenser_api.get_reblogged_by\", [author, permlink])) as string[];\n\n return Array.isArray(response) ? response : [];\n },\n enabled: !!author && !!permlink,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { Schedule } from \"../types/schedule\";\n\nexport function getSchedulesQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.schedules(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch schedules: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getSchedulesInfiniteQueryOptions(\n activeUsername: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.schedulesInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/schedules?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch schedules: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { Draft } from \"../types/draft\";\n\nexport function getDraftsQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.drafts(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch drafts: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getDraftsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.draftsInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/drafts?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch drafts: ${response.status}`);\n }\n\n const json = await response.json();\n // Normalize response for backwards compatibility\n // If backend doesn't support wrapped format yet, it returns Draft[]\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { UserImage } from \"../types/user-image\";\n\nasync function fetchUserImages(code: string | undefined): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch images: ${response.status}`);\n }\n\n return response.json() as Promise;\n}\n\nexport function getImagesQueryOptions(username?: string, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.images(username),\n queryFn: async () => {\n if (!username || !code) {\n return [];\n }\n return fetchUserImages(code);\n },\n enabled: !!username && !!code,\n });\n}\n\nexport function getGalleryImagesQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.galleryImages(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n return fetchUserImages(code);\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getImagesInfiniteQueryOptions(\n username: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.imagesInfinite(username, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!username || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/images?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch images: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!username && !!code,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { CommentHistory } from \"../types/comment-history\";\n\nexport function getCommentHistoryQueryOptions(author: string, permlink: string, onlyMeta = false) {\n return queryOptions({\n queryKey: QueryKeys.posts.commentHistory(author, permlink, onlyMeta),\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/comment-history\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink,\n onlyMeta: onlyMeta ? \"1\" : \"\",\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch comment history: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!author && !!permlink,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { CommentHistory } from \"../types/comment-history\";\n\nfunction makeEntryPath(author: string, permlink: string): string {\n const cleanAuthor = author?.trim();\n const cleanPermlink = permlink?.trim();\n\n if (!cleanAuthor || !cleanPermlink) {\n throw new Error(\"Invalid entry path: author and permlink are required\");\n }\n\n // Normalize by removing any leading @ or / characters\n const normalizedAuthor = cleanAuthor.replace(/^@+/, \"\");\n const normalizedPermlink = cleanPermlink.replace(/^\\/+/, \"\");\n\n if (!normalizedAuthor || !normalizedPermlink) {\n throw new Error(\"Invalid entry path: author and permlink cannot be empty after normalization\");\n }\n\n return `@${normalizedAuthor}/${normalizedPermlink}`;\n}\n\nexport interface DeletedEntry {\n body: string;\n title: string;\n tags: string[];\n}\n\nexport function getDeletedEntryQueryOptions(author: string, permlink: string) {\n const cleanPermlink = permlink?.trim();\n const cleanAuthor = author?.trim();\n const isValid =\n !!cleanAuthor && !!cleanPermlink && cleanPermlink !== \"undefined\";\n\n const entryPath = isValid ? makeEntryPath(cleanAuthor, cleanPermlink) : \"\";\n\n return queryOptions({\n queryKey: QueryKeys.posts.deletedEntry(entryPath),\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/comment-history\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink: cleanPermlink || \"\",\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch comment history: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n select: (history): DeletedEntry | null => {\n if (!history?.list?.[0]) {\n return null;\n }\n const { body, title, tags } = history.list[0];\n return {\n body,\n title,\n tags,\n };\n },\n enabled: isValid,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { PostTipsResponse } from \"../types/post-tip\";\n\n/**\n * Tips for a single post.\n *\n * Addressed as a GET so the response can be cached. This was a POST, which no\n * cache may store, so the same tip totals were refetched on every mount. The\n * endpoint keys off nothing but author and permlink and needs no auth, and now\n * serves a Cache-Control, so a repeat read can come from the browser instead of\n * the network.\n *\n * `staleTime` is kept at or below the endpoint's own cache window rather than\n * extending it. react-query cannot see how old a response already was when\n * `fetch` served it from the browser cache, so it restarts its window from zero\n * on a body that may already be near expiry; worst-case staleness is the two\n * windows added together.\n */\nexport function getPostTipsQueryOptions(author: string, permlink: string, isEnabled = true) {\n return queryOptions({\n queryKey: QueryKeys.posts.tips(author, permlink),\n queryFn: async () => {\n const path = `/private-api/post-tips/${encodeURIComponent(author)}/${encodeURIComponent(permlink)}`;\n const response = await fetch(CONFIG.privateApiHost + path, {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch post tips: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!author && !!permlink && isEnabled,\n staleTime: 60 * 1000,\n });\n}\n","import { Entry, WaveEntry } from \"../types\";\nimport { getDiscussionsQueryOptions, SortOrder } from \"../queries/get-discussions-query-options\";\nimport { CONFIG } from \"@/modules/core\";\n\ntype EntryWithPostId = Entry & { post_id: number };\n\nfunction normalizeContainer(entry: EntryWithPostId, host: string): WaveEntry {\n return {\n ...entry,\n id: entry.id ?? entry.post_id,\n // The private-api waves feeds send the publish time as `timestamp`, not `created`.\n created: entry.created ?? (entry as unknown as { timestamp?: string }).timestamp,\n host\n } as WaveEntry;\n}\n\nfunction normalizeParent(entry: EntryWithPostId): Entry {\n return {\n ...entry,\n id: entry.id ?? entry.post_id\n } as Entry;\n}\n\nexport function normalizeWaveEntryFromApi(\n entry:\n | (Entry & { post_id: number; container?: EntryWithPostId | null; parent?: EntryWithPostId | null })\n | null\n | undefined,\n host: string\n): WaveEntry | null {\n if (!entry) {\n return null;\n }\n\n const containerSource = entry.container ?? entry;\n const container = normalizeContainer(containerSource, host);\n\n const parent = entry.parent ? normalizeParent(entry.parent) : undefined;\n\n return {\n ...entry,\n id: entry.id ?? entry.post_id,\n // The private-api waves feeds (following / tag / account) send the publish\n // time as `timestamp`, not `created`; map it so the relative time renders on\n // every card (the For You feed already carries a real `created` from Hive RPC).\n created: entry.created ?? (entry as unknown as { timestamp?: string }).timestamp,\n // The private-api waves feeds omit max_accepted_payout; default it (and the\n // payout strings) to the Hive shape so payout-rendering consumers run their\n // pending+author+curator summation instead of treating the value as missing.\n max_accepted_payout: entry.max_accepted_payout || \"1000000.000 HBD\",\n pending_payout_value: entry.pending_payout_value || \"0.000 HBD\",\n author_payout_value: entry.author_payout_value || \"0.000 HBD\",\n curator_payout_value: entry.curator_payout_value || \"0.000 HBD\",\n host,\n container,\n parent\n } as WaveEntry;\n}\n\nexport function toEntryArray(x: unknown): Entry[] {\n return Array.isArray(x) ? (x as Entry[]) : [];\n}\n\nexport async function getVisibleFirstLevelThreadItems(\n container: WaveEntry\n): Promise {\n const queryOptions = getDiscussionsQueryOptions(container, SortOrder.created, true);\n const discussionItemsRaw = await CONFIG.queryClient.fetchQuery(queryOptions);\n const discussionItems = toEntryArray(discussionItemsRaw);\n\n if (discussionItems.length <= 1) {\n return [];\n }\n\n const firstLevelItems = discussionItems.filter(\n ({ parent_author, parent_permlink }) =>\n parent_author === container.author && parent_permlink === container.permlink\n );\n\n if (firstLevelItems.length === 0) {\n return [];\n }\n\n const visibleItems = firstLevelItems.filter((item) => !item.stats?.gray);\n\n return visibleItems;\n}\n\nexport function mapThreadItemsToWaveEntries(\n items: Entry[],\n container: WaveEntry,\n host: string\n): WaveEntry[] {\n if (items.length === 0) {\n return [];\n }\n\n return items\n .map((item) => {\n const parent = items.find(\n (i) =>\n i.author === item.parent_author &&\n i.permlink === item.parent_permlink &&\n i.author !== host\n );\n\n return {\n ...item,\n id: item.post_id,\n host,\n container,\n parent\n } as WaveEntry;\n })\n .filter((entry) => entry.container.post_id !== entry.post_id)\n .sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\nconst DEFAULT_FEED_LIMIT = 20;\n\ntype WavesFeedRow = Entry & {\n post_id: number;\n // The wave's container account (e.g. ecency.waves, leothreads), so a mixed\n // cross-container feed can be rendered and acted on per item.\n host?: string;\n // Opaque keyset cursor pointing just past this row.\n _cursor?: string;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport type WavesFeedEntry = WaveEntry & { _cursor?: string };\n\nexport interface WavesFeedParams {\n /** Scope to one or more container accounts; omit for the full combined feed. */\n containers?: string[];\n /** Only waves carrying this tag (across all containers). */\n tag?: string;\n /** Only waves from accounts this user follows (across all containers). */\n following?: string;\n /** Only this author's waves (across all containers); the per-author feed. */\n author?: string;\n /**\n * The viewing user; exclude authors they currently mute. Ecency's own\n * moderation mutes are applied by esync regardless of this value, so leaving\n * it unset drops the viewer's personal mutes, not the platform ones.\n */\n observer?: string;\n /** Page size (default 20). */\n limit?: number;\n}\n\ninterface NormalizedFeedParams {\n containers: string[];\n tag?: string;\n following?: string;\n author?: string;\n observer?: string;\n limit: number;\n}\n\nfunction normalizeParams(params: WavesFeedParams): NormalizedFeedParams {\n return {\n containers: params.containers ?? [],\n tag: params.tag?.trim() || undefined,\n following: params.following?.trim().toLowerCase() || undefined,\n author: params.author?.trim().toLowerCase() || undefined,\n observer: params.observer?.trim().toLowerCase() || undefined,\n limit: params.limit ?? DEFAULT_FEED_LIMIT\n };\n}\n\nasync function fetchWavesFeedPage(\n { containers, tag, following, author, observer, limit }: NormalizedFeedParams,\n cursor: string | undefined,\n signal?: AbortSignal\n): Promise {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/feed\", baseUrl);\n url.searchParams.set(\"limit\", String(limit));\n if (cursor) {\n url.searchParams.set(\"cursor\", cursor);\n }\n containers.forEach((container) => url.searchParams.append(\"container\", container));\n if (tag) {\n url.searchParams.set(\"tag\", tag);\n }\n if (following) {\n url.searchParams.set(\"following\", following);\n }\n if (author) {\n url.searchParams.set(\"author\", author);\n }\n if (observer) {\n url.searchParams.set(\"observer\", observer);\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves feed: ${response.status}`);\n }\n\n const data = (await response.json()) as WavesFeedRow[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n return data\n .map((row) => {\n const entry = normalizeWaveEntryFromApi(row, row.host ?? \"\");\n if (!entry) {\n return null;\n }\n return { ...entry, _cursor: row._cursor } as WavesFeedEntry;\n })\n .filter((entry): entry is WavesFeedEntry => Boolean(entry));\n}\n\n/**\n * Combined cross-container waves feed (the chronological \"For You\" stream, and\n * the Following / Tag feeds via filters).\n *\n * A single esync-backed call returns the newest waves across every indexed\n * container, already merged and time-ordered, with keyset (cursor) pagination,\n * replacing the per-container chain-RPC scan. The optional `tag` / `following`\n * filters narrow the same stream without changing the cursor.\n */\nexport function getWavesFeedQueryOptions(params: WavesFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, following, author, observer, limit } = normalized;\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesFeed({ containers, tag, following, author, observer, limit }),\n initialPageParam: undefined as string | undefined,\n\n queryFn: ({ pageParam, signal }) => fetchWavesFeedPage(normalized, pageParam, signal),\n\n // Keyset pagination. A short page (fewer than `limit` rows) is the\n // end-of-feed signal; on a full page the server always returns the next\n // cursor on the last row. Stopping (rather than looping) is the safe\n // fallback if that cursor were ever absent.\n getNextPageParam: (lastPage: WavesFeedEntry[]) => {\n if (lastPage.length < limit) {\n return undefined;\n }\n return lastPage[lastPage.length - 1]?._cursor;\n }\n });\n}\n\n/**\n * Page-one of the combined feed as a plain (non-infinite) query under a distinct\n * key, for the \"new waves\" poll. Separate from {@link getWavesFeedQueryOptions}\n * so refreshing it never truncates the infinite feed's loaded pages.\n */\nexport function getWavesLatestFeedQueryOptions(params: WavesFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, following, author, observer, limit } = normalized;\n\n return queryOptions({\n queryKey: [\n ...QueryKeys.posts.wavesFeed({ containers, tag, following, author, observer, limit }),\n \"latest\"\n ],\n staleTime: 0,\n queryFn: ({ signal }) => fetchWavesFeedPage(normalized, undefined, signal)\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\nconst DEFAULT_FEED_LIMIT = 20;\n\n/** The 3Speak video a short embeds, as returned by esync /api/waves/shorts. */\nexport interface ShortVideo {\n platform: string;\n author: string;\n permlink: string;\n embed_url: string;\n thumbnail_url: string | null;\n duration_secs: number | null;\n}\n\ntype ShortsFeedRow = Entry & {\n post_id: number;\n host?: string;\n video?: ShortVideo;\n _cursor?: string;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport type ShortsFeedEntry = WaveEntry & {\n /** The embedded 3Speak video reference for the reels player. */\n video?: ShortVideo;\n _cursor?: string;\n};\n\nexport interface ShortsFeedParams {\n /** Scope to one or more container accounts; omit for the full combined feed. */\n containers?: string[];\n /** Only shorts carrying this tag (across all containers). */\n tag?: string;\n /** Only this author's shorts (across all containers). */\n author?: string;\n /**\n * The viewing user; exclude authors they currently mute. Ecency's own\n * moderation mutes are applied by esync regardless of this value.\n */\n observer?: string;\n /** Page size (default 20). */\n limit?: number;\n}\n\ninterface NormalizedShortsParams {\n containers: string[];\n tag?: string;\n author?: string;\n observer?: string;\n limit: number;\n}\n\nfunction normalizeParams(params: ShortsFeedParams): NormalizedShortsParams {\n return {\n containers: params.containers ?? [],\n tag: params.tag?.trim() || undefined,\n author: params.author?.trim().toLowerCase() || undefined,\n observer: params.observer?.trim().toLowerCase() || undefined,\n limit: params.limit ?? DEFAULT_FEED_LIMIT\n };\n}\n\nasync function fetchShortsFeedPage(\n { containers, tag, author, observer, limit }: NormalizedShortsParams,\n cursor: string | undefined,\n signal?: AbortSignal\n): Promise {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/shorts\", baseUrl);\n url.searchParams.set(\"limit\", String(limit));\n if (cursor) {\n url.searchParams.set(\"cursor\", cursor);\n }\n containers.forEach((container) => url.searchParams.append(\"container\", container));\n if (tag) {\n url.searchParams.set(\"tag\", tag);\n }\n if (author) {\n url.searchParams.set(\"author\", author);\n }\n if (observer) {\n url.searchParams.set(\"observer\", observer);\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch shorts feed: ${response.status}`);\n }\n\n const data = (await response.json()) as ShortsFeedRow[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n return data\n .map((row) => {\n const entry = normalizeWaveEntryFromApi(row, row.host ?? \"\");\n if (!entry) {\n return null;\n }\n return {\n ...entry,\n // A lightweight feed row may omit active_votes; EntryVoteBtn (which uses\n // this entry as React Query initialData) calls .some() on it, so default\n // to an empty array to avoid a crash before the full post query loads.\n active_votes: entry.active_votes ?? [],\n video: row.video,\n _cursor: row._cursor\n } as ShortsFeedEntry;\n })\n .filter((entry): entry is ShortsFeedEntry => Boolean(entry));\n}\n\n/**\n * Combined cross-container shorts (reels) feed: waves that embed a 3Speak video.\n *\n * Backed by esync /api/waves/shorts (via /private-api/waves/shorts). Same shape,\n * keyset pagination and filters as {@link getWavesFeedQueryOptions}, plus a\n * `video` block per item for the vertical reels player. There is no `following`\n * filter in v1.\n */\nexport function getShortsFeedQueryOptions(params: ShortsFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, author, observer, limit } = normalized;\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.shortsFeed({ containers, tag, author, observer, limit }),\n initialPageParam: undefined as string | undefined,\n\n queryFn: ({ pageParam, signal }) => fetchShortsFeedPage(normalized, pageParam, signal),\n\n // Keyset pagination: a short page (fewer than `limit` rows) ends the feed;\n // on a full page the server returns the next cursor on the last row.\n getNextPageParam: (lastPage: ShortsFeedEntry[]) => {\n if (lastPage.length < limit) {\n return undefined;\n }\n return lastPage[lastPage.length - 1]?._cursor;\n }\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport {\n getVisibleFirstLevelThreadItems,\n mapThreadItemsToWaveEntries\n} from \"../utils/waves-helpers\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nconst THREAD_CONTAINER_BATCH_SIZE = 5;\nconst MAX_CONTAINERS_TO_SCAN = 50;\n\ninterface ThreadsResult {\n entries: WaveEntry[];\n}\n\nasync function getThreads(\n host: string,\n pageParam?: WaveEntry\n): Promise {\n let startAuthor = pageParam?.author;\n let startPermlink = pageParam?.permlink;\n let scannedContainers = 0;\n let skipContainerId = pageParam?.post_id;\n\n while (scannedContainers < MAX_CONTAINERS_TO_SCAN) {\n interface AccountPostsParams {\n sort: string;\n account: string;\n limit: number;\n start_author?: string;\n start_permlink?: string;\n }\n\n const rpcParams: AccountPostsParams = {\n sort: \"posts\", // ProfileFilter.posts\n account: host,\n limit: THREAD_CONTAINER_BATCH_SIZE,\n ...(startAuthor ? { start_author: startAuthor } : {}),\n ...(startPermlink ? { start_permlink: startPermlink } : {})\n };\n\n let containers: WaveEntry[];\n try {\n containers = (await callRPC(\"bridge.get_account_posts\", rpcParams)) as WaveEntry[];\n } catch (err) {\n console.error(\"[SDK] getThreads get_account_posts error:\", err);\n return null;\n }\n\n if (!containers || containers.length === 0) {\n return null;\n }\n\n const normalizedContainers = containers.map((container) => {\n container.id = container.post_id;\n container.host = host;\n return container;\n });\n\n for (const container of normalizedContainers) {\n if (skipContainerId && container.post_id === skipContainerId) {\n skipContainerId = undefined;\n continue;\n }\n\n scannedContainers += 1;\n\n if (container.stats?.gray) {\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n let visibleItems: Entry[];\n try {\n visibleItems = await getVisibleFirstLevelThreadItems(container);\n } catch (err) {\n // A transient bridge.get_discussion failure (RPC timeout, node error, or\n // an oversized response on a large late-day container) must not collapse\n // the whole feed. Treat this container as temporarily unavailable and scan\n // the next one — mirroring the empty-container handling below and the\n // get_account_posts guard above. The query's refetch interval retries it.\n console.error(\"[SDK] getThreads get_discussion error:\", err);\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n if (visibleItems.length === 0) {\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n return {\n entries: mapThreadItemsToWaveEntries(visibleItems, container, host)\n };\n }\n\n const lastContainer = normalizedContainers[normalizedContainers.length - 1];\n\n if (!lastContainer) {\n return null;\n }\n\n startAuthor = lastContainer.author;\n startPermlink = lastContainer.permlink;\n }\n\n return null;\n}\n\n// Page = array of WaveEntry; Cursor = WaveEntry (container) or undefined\ntype WavesPage = WaveEntry[];\ntype WavesCursor = WaveEntry | undefined;\n\nexport function getWavesByHostQueryOptions(host: string) {\n return infiniteQueryOptions<\n WavesPage,\n Error,\n InfiniteData,\n string[],\n WavesCursor\n >({\n queryKey: QueryKeys.posts.wavesByHost(host),\n initialPageParam: undefined as WavesCursor,\n\n queryFn: async ({ pageParam }: { pageParam: WavesCursor }) => {\n const result = await getThreads(host, pageParam);\n if (!result) return []; // no items to show for this page\n\n return result.entries;\n },\n\n getNextPageParam: (lastPage: WavesPage): WavesCursor => lastPage?.[0]?.container,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ntype WavesTagEntryResponse = Entry & {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nconst DEFAULT_TAG_FEED_LIMIT = 40;\n\nexport function getWavesByTagQueryOptions(host: string, tag: string, limit = DEFAULT_TAG_FEED_LIMIT) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesByTag(host, tag),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/tags\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"tag\", tag);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves by tag: ${response.status}`);\n }\n\n const data = await response.json() as WavesTagEntryResponse[];\n\n const result = data\n .slice(0, limit)\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n return result.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves by tag\", error);\n return [];\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ntype WavesFollowingEntry = Entry & {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport function getWavesFollowingQueryOptions(host: string, username?: string) {\n const normalizedUsername = username?.trim().toLowerCase();\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesFollowing(host, normalizedUsername ?? \"\"),\n enabled: Boolean(normalizedUsername),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n if (!normalizedUsername) {\n return [];\n }\n\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/following\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"username\", normalizedUsername);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves following feed: ${response.status}`);\n }\n\n const data = await response.json() as WavesFollowingEntry[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n const flattened = data\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n if (flattened.length === 0) {\n return [];\n }\n\n return flattened.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves following feed\", error);\n return [];\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { WaveTrendingTag } from \"../types\";\n\ninterface WavesTrendingTagResponse {\n tag: string;\n posts: number;\n}\n\nexport function getWavesTrendingTagsQueryOptions(host?: string, hours = 24) {\n // Omit the container for combined trending tags across all containers.\n const container = host?.trim() || undefined;\n\n return queryOptions({\n queryKey: QueryKeys.posts.wavesTrendingTags(container ?? \"\", hours),\n queryFn: async ({ signal }): Promise => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/trending/tags\", baseUrl);\n if (container) {\n url.searchParams.set(\"container\", container);\n }\n url.searchParams.set(\"hours\", hours.toString());\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves trending tags: ${response.status}`);\n }\n\n const data = await response.json() as WavesTrendingTagResponse[];\n\n return data.map(({ tag, posts }) => ({ tag, posts }));\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves trending tags\", error);\n return [];\n }\n }\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ninterface WavesAccountEntry extends Entry {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n}\n\nexport function getWavesByAccountQueryOptions(host: string, username?: string) {\n const normalizedUsername = username?.trim().toLowerCase();\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesByAccount(host, normalizedUsername ?? \"\"),\n enabled: Boolean(normalizedUsername),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n if (!normalizedUsername) {\n return [];\n }\n\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/account\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"username\", normalizedUsername);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves for account: ${response.status}`);\n }\n\n const data = await response.json() as WavesAccountEntry[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n const flattened = data\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n if (flattened.length === 0) {\n return [];\n }\n\n return flattened.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves for account\", error);\n throw error;\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { WaveTrendingAuthor } from \"../types\";\n\nexport function getWavesTrendingAuthorsQueryOptions(host: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.wavesTrendingAuthors(host),\n queryFn: async ({ signal }): Promise => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/trending/authors\", baseUrl);\n url.searchParams.set(\"container\", host);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves trending authors: ${response.status}`);\n }\n\n const data = await response.json() as WaveTrendingAuthor[];\n\n return data.map(({ author, posts }) => ({ author, posts }));\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves trending authors\", error);\n throw error;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry } from \"../types\";\nimport { normalizePost } from \"@/modules/bridge\";\n\nexport function getNormalizePostQueryOptions(\n post: { author?: string; permlink?: string } | undefined,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.normalize(post?.author ?? \"\", post?.permlink ?? \"\"),\n enabled: enabled && !!post,\n queryFn: async () => normalizePost(post) as Promise,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core/config\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry } from \"@/modules/posts/types\";\nimport { getPostQueryOptions } from \"@/modules/posts/queries\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ninterface VoteOperationDetails {\n voter: string;\n author: string;\n permlink: string;\n weight: number;\n}\n\ninterface AccountVoteHistoryItem {\n timestamp: string;\n op: [string, VoteOperationDetails];\n}\n\ntype AccountVoteHistoryRecord = [number, AccountVoteHistoryItem];\n\ninterface VoteHistoryResult extends VoteOperationDetails {\n num: number;\n timestamp: string;\n}\n\nexport interface VoteHistoryPageParam {\n start: number;\n}\n\nexport interface VoteHistoryPage {\n lastDate: number;\n lastItemFetched: number;\n entries: Entry[];\n}\n\nfunction isEntry(x: unknown): x is Entry {\n return (\n !!x &&\n typeof x === \"object\" &&\n \"author\" in x &&\n \"permlink\" in x &&\n \"active_votes\" in x\n );\n}\n\n/**\n * Calculate days since a date\n */\nfunction getDays(createdDate: string): number {\n const past = new Date(createdDate);\n const now = new Date();\n const diffMs = now.getTime() - past.getTime();\n return diffMs / (1000 * 60 * 60 * 24);\n}\n\n/**\n * Get account vote history with entries\n *\n * @param username - Account name to get vote history for\n * @param limit - Number of history items per page (default: 20)\n * @param filters - Additional filters to pass to get_account_history\n * @param dayLimit - Only include votes from last N days (default: 7)\n */\nexport function getAccountVoteHistoryInfiniteQueryOptions(\n username: string,\n options?: {\n limit?: number;\n filters?: F[];\n dayLimit?: number;\n }\n) {\n const { limit = 20, filters = [], dayLimit = 7.0 } = options ?? {};\n\n return infiniteQueryOptions<\n VoteHistoryPage,\n Error,\n InfiniteData,\n (string | number)[],\n VoteHistoryPageParam\n >({\n queryKey: QueryKeys.accounts.voteHistory(username, limit),\n initialPageParam: { start: -1 },\n\n queryFn: async ({ pageParam }: { pageParam: VoteHistoryPageParam }) => {\n const { start } = pageParam;\n\n const response = (await callRPC(\"condenser_api.get_account_history\", [username, start, limit, ...filters])) as AccountVoteHistoryRecord[];\n\n const mappedResults: VoteHistoryResult[] = response.map(([num, historyObj]) => ({\n ...historyObj.op[1],\n num,\n timestamp: historyObj.timestamp,\n }));\n\n const result = mappedResults.filter(\n (filtered) =>\n filtered.voter === username &&\n filtered.weight !== 0 &&\n getDays(filtered.timestamp) <= dayLimit\n );\n\n const entries: Entry[] = [];\n for (const obj of result) {\n const post = await CONFIG.queryClient.fetchQuery(\n getPostQueryOptions(obj.author, obj.permlink)\n );\n if (isEntry(post)) entries.push(post);\n }\n\n const [firstHistory] = response;\n\n return {\n lastDate: firstHistory ? getDays(firstHistory[1].timestamp) : 0,\n lastItemFetched: firstHistory ? firstHistory[0] : start,\n entries,\n };\n },\n\n getNextPageParam: (lastPage: VoteHistoryPage): VoteHistoryPageParam => ({\n start: lastPage.lastItemFetched,\n }),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Profile } from \"../types\";\nimport { getProfiles } from \"@/modules/bridge\";\n\nexport function getProfilesQueryOptions(\n accounts: string[],\n observer?: string,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.profiles(accounts, observer ?? \"\"),\n enabled: enabled && accounts.length > 0,\n queryFn: async () => getProfiles(accounts, observer) as Promise,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport type {\n BalanceCoinType,\n BalanceHistoryEntry,\n BalanceHistoryResponse,\n} from \"../types\";\n\ninterface BalanceHistoryPage {\n entries: BalanceHistoryEntry[];\n currentPage: number;\n}\n\n/**\n * Cursor for balance history pagination.\n * null = first request (returns the newest page).\n * number = specific page to fetch (decrementing for older data).\n */\ntype BalanceHistoryCursor = number | null;\n\n/**\n * Get balance history for an account with pagination, newest first.\n * Uses the balance-api REST endpoint with direction=desc.\n *\n * Pagination: first call omits `page` to get the newest data.\n * The response includes `total_pages` so we know the current page number.\n * Subsequent calls decrement the page number to load older data.\n *\n * @param username - Account name\n * @param coinType - HIVE, HBD, or VESTS\n * @param pageSize - Number of entries per page\n */\nexport function getBalanceHistoryInfiniteQueryOptions(\n username?: string,\n coinType: BalanceCoinType = \"HIVE\",\n pageSize = 200\n) {\n return infiniteQueryOptions<\n BalanceHistoryPage,\n Error,\n InfiniteData,\n (string | number)[],\n BalanceHistoryCursor\n >({\n queryKey: QueryKeys.wallet.balanceHistory(\n username ?? \"\",\n coinType,\n pageSize\n ),\n initialPageParam: null as BalanceHistoryCursor,\n\n queryFn: async ({ pageParam, signal }) => {\n if (!username) {\n return { entries: [], currentPage: 0 };\n }\n\n const params: Record = {\n \"account-name\": username,\n \"coin-type\": coinType,\n \"page-size\": pageSize,\n direction: \"desc\",\n };\n\n // First call: omit page to get newest data\n // Subsequent calls: pass specific page number\n if (pageParam !== null) {\n params.page = pageParam;\n }\n\n const response = (await callREST(\n \"balance\",\n \"/accounts/{account-name}/balance-history\",\n params,\n undefined,\n undefined,\n signal\n )) as BalanceHistoryResponse;\n\n return {\n entries: response.operations_result,\n currentPage: pageParam ?? response.total_pages,\n };\n },\n\n getNextPageParam: (lastPage) => {\n // Decrement page to go further back in time\n const nextPage = lastPage.currentPage - 1;\n return nextPage >= 1 ? nextPage : undefined;\n },\n\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport type { AggregatedBalanceEntry, BalanceCoinType } from \"../types\";\n\nexport type BalanceAggregationGranularity = \"yearly\" | \"monthly\" | \"daily\";\n\n/**\n * Get aggregated balance history for an account.\n * Uses the balance-api REST endpoint - enables yearly/monthly/daily summary\n * widgets that are impossible via RPC.\n *\n * @param username - Account name\n * @param coinType - HIVE, HBD, or VESTS\n * @param granularity - yearly (default), monthly, or daily\n */\nexport function getAggregatedBalanceQueryOptions(\n username?: string,\n coinType: BalanceCoinType = \"HIVE\",\n granularity: BalanceAggregationGranularity = \"yearly\"\n) {\n return queryOptions({\n queryKey: QueryKeys.wallet.aggregatedHistory(\n username ?? \"\",\n coinType,\n granularity\n ),\n\n queryFn: async () => {\n if (!username) {\n return [];\n }\n\n return (await callREST(\n \"balance\",\n \"/accounts/{account-name}/aggregated-history\",\n {\n \"account-name\": username,\n \"coin-type\": coinType,\n granularity,\n }\n )) as AggregatedBalanceEntry[];\n },\n\n enabled: !!username,\n staleTime: 60_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport interface ProMembersResponse {\n /** Usernames of active Ecency Pro members. */\n members: string[];\n count: number;\n}\n\n/**\n * Public, cached roster of Ecency Pro members. Backed by a lightweight private-api\n * endpoint (no auth) so any surface can decorate a username with a Pro badge without\n * a per-user request.\n *\n * `staleTime` is deliberately shorter than the endpoint's own cache window and is\n * NOT raised to match it. react-query has no idea how old a response already was\n * when `fetch` served it from the browser cache: it treats a nine-minute-old\n * cached body as freshly fetched and starts its own window from zero. Worst-case\n * staleness is therefore the endpoint's window plus this one, so raising this to\n * match the server would roughly double it rather than align it.\n */\nexport function getProMembersQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.accounts.proMembers(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/pro-members\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch pro members: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n staleTime: 5 * 60 * 1000,\n });\n}\n\n/** Lowercased set of member usernames for O(1), case-insensitive membership checks. */\nexport function proMembersSet(members?: string[]): Set {\n return new Set((members ?? []).map((m) => m.toLowerCase()));\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { useQuery, useQueryClient } from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { AccountProfile, FullAccount } from \"../types\";\nimport {\n buildPostingJsonMetadata,\n buildProfileMetadata,\n extractAccountProfile,\n pickRicherMetadataSnapshot,\n} from \"../utils/profile-metadata\";\n\ninterface Payload {\n profile: Partial;\n tokens: AccountProfile[\"tokens\"];\n}\n\n/**\n * React Query mutation hook for updating account profile metadata.\n *\n * This mutation broadcasts an account_update2 operation to update the user's\n * profile information (name, about, location, avatar, cover image, etc.).\n *\n * @param username - The username to update (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Profile Fields:**\n * - name: Display name\n * - about: Bio/description\n * - location: Location\n * - website: Website URL\n * - profile_image: Avatar URL\n * - cover_image: Cover/banner URL\n * - tokens: Social tokens (Twitter, Facebook, etc.)\n * - version: Profile metadata version (auto-set to 2)\n *\n * **Authentication:**\n * - Uses posting authority (account_update2 operation)\n * - Supports all auth methods via platform adapter\n *\n * **Post-Broadcast Actions:**\n * - Optimistically updates account cache with new profile data\n * - Invalidates account cache to refetch from blockchain\n *\n * @example\n * ```typescript\n * const updateProfile = useAccountUpdate(username, {\n * adapter: myAdapter,\n * });\n *\n * // Update profile\n * updateProfile.mutate({\n * profile: {\n * name: \"John Doe\",\n * about: \"Hive enthusiast\",\n * profile_image: \"https://...\",\n * }\n * });\n * ```\n */\nexport function useAccountUpdate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n const queryClient = useQueryClient();\n\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useBroadcastMutation(\n [\"accounts\", \"update\"],\n username,\n (payload: Partial) => {\n // Prefer the freshest cached snapshot. onMutate has just refetched the\n // account from chain, so this usually reflects the current on-chain\n // profile rather than a possibly stale/unloaded render-time value. If\n // the cache instead holds a metadata-poorer row than the render-time\n // snapshot (e.g. a node served a stripped account row), the richer\n // snapshot wins — a partial update must never shrink the profile while\n // any snapshot still knows the full one.\n const account = pickRicherMetadataSnapshot(\n queryClient.getQueryData(\n getAccountFullQueryOptions(username).queryKey\n ),\n data\n );\n\n if (!account) {\n throw new Error(\"[SDK][Accounts] – cannot update not existing account\");\n }\n\n return [\n [\n \"account_update2\",\n {\n account: username!,\n json_metadata: \"\",\n extensions: [] as [],\n // Read-modify-write the FULL on-chain metadata: deep-merge the\n // profile and preserve any non-`profile` top-level keys, so a\n // partial update never wipes unrelated fields.\n posting_json_metadata: buildPostingJsonMetadata({\n existingPostingJsonMetadata: account.posting_json_metadata,\n profile: payload.profile,\n tokens: payload.tokens,\n }),\n },\n ],\n ];\n },\n async (_data: unknown, variables: Partial) => {\n // Optimistic cache update\n queryClient.setQueryData(\n getAccountFullQueryOptions(username).queryKey,\n (data) => {\n if (!data) {\n return data;\n }\n\n const obj = JSON.parse(JSON.stringify(data)) as FullAccount;\n obj.profile = buildProfileMetadata({\n existingProfile: extractAccountProfile(data),\n profile: variables.profile,\n tokens: variables.tokens,\n });\n\n return obj;\n }\n );\n\n // Invalidate cache to refetch from blockchain\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username)\n ]);\n },\n auth,\n undefined,\n {\n broadcastMode,\n // Before merging, force a fresh on-chain read so a stale or unloaded\n // cached snapshot cannot cause a partial update (e.g. pinning a post,\n // which sets only `pinned`) to overwrite the existing profile with a\n // near-empty object. Best-effort: if the refetch fails, the op builder\n // falls back to the cached snapshot.\n onMutate: async () => {\n if (!username) {\n return;\n }\n try {\n await queryClient.fetchQuery({\n ...getAccountFullQueryOptions(username),\n staleTime: 0,\n });\n } catch {\n // Ignore – fall back to whatever is already cached.\n }\n },\n }\n );\n}\n","import { broadcastJson, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { AuthContext } from \"@/modules/core/types\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { getRelationshipBetweenAccountsQueryOptions, getAccountFullQueryOptions } from \"../queries\";\nimport { AccountRelationship } from \"../types\";\n\ntype Kind = \"toggle-ignore\" | \"toggle-follow\";\n\nexport function useAccountRelationsUpdate(\n reference: string | undefined,\n target: string | undefined,\n auth: AuthContext | undefined,\n onSuccess: (data: Partial | undefined) => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"relation\", \"update\", reference, target],\n mutationFn: async (kind: Kind) => {\n const relationsQuery = getRelationshipBetweenAccountsQueryOptions(\n reference!,\n target!\n );\n await getQueryClient().prefetchQuery(relationsQuery);\n const actualRelation = getQueryClient().getQueryData(\n relationsQuery.queryKey\n );\n\n await broadcastJson(\n reference,\n \"follow\",\n [\n \"follow\",\n {\n follower: reference,\n following: target,\n what: [\n ...(kind === \"toggle-ignore\" && !actualRelation?.ignores\n ? [\"ignore\"]\n : []),\n ...(kind === \"toggle-follow\" && !actualRelation?.follows\n ? [\"blog\"]\n : []),\n ],\n },\n ],\n auth\n );\n\n return {\n ...actualRelation,\n ignores:\n kind === \"toggle-ignore\"\n ? !actualRelation?.ignores\n : actualRelation?.ignores,\n follows:\n kind === \"toggle-follow\"\n ? !actualRelation?.follows\n : actualRelation?.follows,\n } satisfies Partial;\n },\n onError,\n onSuccess(data) {\n onSuccess(data);\n\n getQueryClient().setQueryData(\n QueryKeys.accounts.relations(reference!, target!),\n data\n );\n\n // Invalidate account query to refetch follow stats (follower_count, following_count)\n // This is needed because profile pages use staleTime: Infinity for performance\n if (target) {\n getQueryClient().invalidateQueries(\n getAccountFullQueryOptions(target)\n );\n }\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Content Operations\n * Operations for creating, voting, and managing content on Hive blockchain\n */\n\n/**\n * Builds a vote operation.\n * @param voter - Account casting the vote\n * @param author - Author of the post/comment\n * @param permlink - Permlink of the post/comment\n * @param weight - Vote weight (-10000 to 10000, where 10000 = 100% upvote, -10000 = 100% downvote)\n * @returns Vote operation\n */\nexport function buildVoteOp(\n voter: string,\n author: string,\n permlink: string,\n weight: number\n): Operation {\n if (!voter || !author || !permlink) {\n throw new Error(\"[SDK][buildVoteOp] Missing required parameters\");\n }\n if (weight < -10000 || weight > 10000) {\n throw new Error(\"[SDK][buildVoteOp] Weight must be between -10000 and 10000\");\n }\n\n return [\n \"vote\",\n {\n voter,\n author,\n permlink,\n weight,\n },\n ];\n}\n\n/**\n * Builds a comment operation (for posts or replies).\n * @param author - Author of the comment/post\n * @param permlink - Permlink of the comment/post\n * @param parentAuthor - Parent author (empty string for top-level posts)\n * @param parentPermlink - Parent permlink (category/tag for top-level posts)\n * @param title - Title of the post (empty for comments)\n * @param body - Content body (required - cannot be empty)\n * @param jsonMetadata - JSON metadata object\n * @returns Comment operation\n */\nexport function buildCommentOp(\n author: string,\n permlink: string,\n parentAuthor: string,\n parentPermlink: string,\n title: string,\n body: string,\n jsonMetadata: Record\n): Operation {\n // Every comment mutation (create, update, cross-post) goes through this\n // builder, so it is the one place the required fields are checked. Naming the\n // missing ones makes the report actionable instead of a bare assertion.\n const missing: string[] = [];\n if (!author) missing.push(\"author\");\n if (!permlink) missing.push(\"permlink\");\n if (parentPermlink === undefined) missing.push(\"parentPermlink\");\n if (!body) missing.push(\"body\");\n if (missing.length > 0) {\n throw new Error(`[SDK][buildCommentOp] Missing required parameters: ${missing.join(\", \")}`);\n }\n\n return [\n \"comment\",\n {\n parent_author: parentAuthor,\n parent_permlink: parentPermlink,\n author,\n permlink,\n title,\n body,\n json_metadata: JSON.stringify(jsonMetadata),\n },\n ];\n}\n\n/**\n * Builds a comment options operation (for setting beneficiaries, rewards, etc.).\n * @param author - Author of the comment/post\n * @param permlink - Permlink of the comment/post\n * @param maxAcceptedPayout - Maximum accepted payout (e.g., \"1000000.000 HBD\")\n * @param percentHbd - Percent of payout in HBD (10000 = 100%)\n * @param allowVotes - Allow votes on this content\n * @param allowCurationRewards - Allow curation rewards\n * @param extensions - Extensions array (for beneficiaries, etc.)\n * @returns Comment options operation\n */\nexport function buildCommentOptionsOp(\n author: string,\n permlink: string,\n maxAcceptedPayout: string,\n percentHbd: number,\n allowVotes: boolean,\n allowCurationRewards: boolean,\n extensions: any[]\n): Operation {\n if (!author || !permlink) {\n throw new Error(\"[SDK][buildCommentOptionsOp] Missing required parameters\");\n }\n\n return [\n \"comment_options\",\n {\n author,\n permlink,\n max_accepted_payout: maxAcceptedPayout,\n percent_hbd: percentHbd,\n allow_votes: allowVotes,\n allow_curation_rewards: allowCurationRewards,\n extensions,\n },\n ];\n}\n\n/**\n * Builds a delete comment operation.\n * @param author - Author of the comment/post to delete\n * @param permlink - Permlink of the comment/post to delete\n * @returns Delete comment operation\n */\nexport function buildDeleteCommentOp(author: string, permlink: string): Operation {\n if (!author || !permlink) {\n throw new Error(\"[SDK][buildDeleteCommentOp] Missing required parameters\");\n }\n\n return [\n \"delete_comment\",\n {\n author,\n permlink,\n },\n ];\n}\n\n/**\n * Builds a reblog operation (custom_json).\n * @param account - Account performing the reblog\n * @param author - Original post author\n * @param permlink - Original post permlink\n * @param deleteReblog - If true, removes the reblog\n * @returns Custom JSON operation for reblog\n */\nexport function buildReblogOp(\n account: string,\n author: string,\n permlink: string,\n deleteReblog: boolean = false\n): Operation {\n if (!account || !author || !permlink) {\n throw new Error(\"[SDK][buildReblogOp] Missing required parameters\");\n }\n\n const json: any = {\n account,\n author,\n permlink,\n };\n\n if (deleteReblog) {\n json.delete = \"delete\";\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\"reblog\", json]),\n required_auths: [],\n required_posting_auths: [account],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Wallet Operations\n * Operations for managing tokens, savings, vesting, and conversions\n */\n\n/**\n * Builds a transfer operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Transfer operation\n */\nexport function buildTransferOp(\n from: string,\n to: string,\n amount: string,\n memo: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferOp] Missing required parameters\");\n }\n\n return [\n \"transfer\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n },\n ];\n}\n\n/**\n * Builds multiple transfer operations for multiple recipients.\n * @param from - Sender account\n * @param destinations - Comma or space separated list of recipient accounts\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Array of transfer operations\n */\nexport function buildMultiTransferOps(\n from: string,\n destinations: string,\n amount: string,\n memo: string\n): Operation[] {\n if (!from || !destinations || !amount) {\n throw new Error(\"[SDK][buildMultiTransferOps] Missing required parameters\");\n }\n\n // Split the destination input into an array of usernames\n const destArray = destinations\n .trim()\n .split(/[\\s,]+/)\n .filter(Boolean);\n\n // Create a transfer operation for each destination username\n return destArray.map((dest) =>\n buildTransferOp(from, dest.trim(), amount, memo)\n );\n}\n\n/**\n * Builds a recurrent transfer operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @param recurrence - Recurrence in hours\n * @param executions - Number of executions (2 = executes twice)\n * @returns Recurrent transfer operation\n */\nexport function buildRecurrentTransferOp(\n from: string,\n to: string,\n amount: string,\n memo: string,\n recurrence: number,\n executions: number\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildRecurrentTransferOp] Missing required parameters\");\n }\n if (recurrence < 24) {\n throw new Error(\"[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours\");\n }\n\n return [\n \"recurrent_transfer\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n recurrence,\n executions,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds a transfer to savings operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Transfer to savings operation\n */\nexport function buildTransferToSavingsOp(\n from: string,\n to: string,\n amount: string,\n memo: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferToSavingsOp] Missing required parameters\");\n }\n\n return [\n \"transfer_to_savings\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n },\n ];\n}\n\n/**\n * Builds a transfer from savings operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @param requestId - Unique request ID (use timestamp)\n * @returns Transfer from savings operation\n */\nexport function buildTransferFromSavingsOp(\n from: string,\n to: string,\n amount: string,\n memo: string,\n requestId: number\n): Operation {\n if (!from || !to || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildTransferFromSavingsOp] Missing required parameters\");\n }\n\n return [\n \"transfer_from_savings\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n request_id: requestId,\n },\n ];\n}\n\n/**\n * Builds a cancel transfer from savings operation.\n * @param from - Account that initiated the savings withdrawal\n * @param requestId - Request ID to cancel\n * @returns Cancel transfer from savings operation\n */\nexport function buildCancelTransferFromSavingsOp(\n from: string,\n requestId: number\n): Operation {\n if (!from || requestId === undefined) {\n throw new Error(\"[SDK][buildCancelTransferFromSavingsOp] Missing required parameters\");\n }\n\n return [\n \"cancel_transfer_from_savings\",\n {\n from,\n request_id: requestId,\n },\n ];\n}\n\n/**\n * Builds operations to claim savings interest.\n * Creates a transfer_from_savings and immediately cancels it to claim interest.\n * @param from - Account claiming interest\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"0.001 HIVE\")\n * @param memo - Transfer memo\n * @param requestId - Unique request ID\n * @returns Array of operations [transfer_from_savings, cancel_transfer_from_savings]\n */\nexport function buildClaimInterestOps(\n from: string,\n to: string,\n amount: string,\n memo: string,\n requestId: number\n): Operation[] {\n if (!from || !to || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildClaimInterestOps] Missing required parameters\");\n }\n\n return [\n buildTransferFromSavingsOp(from, to, amount, memo, requestId),\n buildCancelTransferFromSavingsOp(from, requestId),\n ];\n}\n\n/**\n * Builds a transfer to vesting operation (power up).\n * @param from - Account sending HIVE\n * @param to - Account receiving Hive Power\n * @param amount - Amount with HIVE symbol (e.g., \"1.000 HIVE\")\n * @returns Transfer to vesting operation\n */\nexport function buildTransferToVestingOp(\n from: string,\n to: string,\n amount: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferToVestingOp] Missing required parameters\");\n }\n\n return [\n \"transfer_to_vesting\",\n {\n from,\n to,\n amount,\n },\n ];\n}\n\n/**\n * Builds a withdraw vesting operation (power down).\n * @param account - Account withdrawing vesting\n * @param vestingShares - Amount of VESTS to withdraw (e.g., \"1.000000 VESTS\")\n * @returns Withdraw vesting operation\n */\nexport function buildWithdrawVestingOp(\n account: string,\n vestingShares: string\n): Operation {\n if (!account || !vestingShares) {\n throw new Error(\"[SDK][buildWithdrawVestingOp] Missing required parameters\");\n }\n\n return [\n \"withdraw_vesting\",\n {\n account,\n vesting_shares: vestingShares,\n },\n ];\n}\n\n/**\n * Builds a delegate vesting shares operation (HP delegation).\n * @param delegator - Account delegating HP\n * @param delegatee - Account receiving HP delegation\n * @param vestingShares - Amount of VESTS to delegate (e.g., \"1000.000000 VESTS\")\n * @returns Delegate vesting shares operation\n */\nexport function buildDelegateVestingSharesOp(\n delegator: string,\n delegatee: string,\n vestingShares: string\n): Operation {\n if (!delegator || !delegatee || !vestingShares) {\n throw new Error(\"[SDK][buildDelegateVestingSharesOp] Missing required parameters\");\n }\n\n return [\n \"delegate_vesting_shares\",\n {\n delegator,\n delegatee,\n vesting_shares: vestingShares,\n },\n ];\n}\n\n/**\n * Builds a set withdraw vesting route operation.\n * @param fromAccount - Account withdrawing vesting\n * @param toAccount - Account receiving withdrawn vesting\n * @param percent - Percentage to route (0-10000, where 10000 = 100%)\n * @param autoVest - Auto convert to vesting\n * @returns Set withdraw vesting route operation\n */\nexport function buildSetWithdrawVestingRouteOp(\n fromAccount: string,\n toAccount: string,\n percent: number,\n autoVest: boolean\n): Operation {\n if (!fromAccount || !toAccount || percent === undefined) {\n throw new Error(\"[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters\");\n }\n if (percent < 0 || percent > 10000) {\n throw new Error(\"[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000\");\n }\n\n return [\n \"set_withdraw_vesting_route\",\n {\n from_account: fromAccount,\n to_account: toAccount,\n percent,\n auto_vest: autoVest,\n },\n ];\n}\n\n/**\n * Builds a convert operation (HBD to HIVE).\n * @param owner - Account converting HBD\n * @param amount - Amount of HBD to convert (e.g., \"1.000 HBD\")\n * @param requestId - Unique request ID (use timestamp)\n * @returns Convert operation\n */\nexport function buildConvertOp(\n owner: string,\n amount: string,\n requestId: number\n): Operation {\n if (!owner || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildConvertOp] Missing required parameters\");\n }\n\n return [\n \"convert\",\n {\n owner,\n amount,\n requestid: requestId,\n },\n ];\n}\n\n/**\n * Builds a collateralized convert operation (HIVE to HBD via collateral).\n * @param owner - Account converting HIVE\n * @param amount - Amount of HIVE to convert (e.g., \"1.000 HIVE\")\n * @param requestId - Unique request ID (use timestamp)\n * @returns Collateralized convert operation\n */\nexport function buildCollateralizedConvertOp(\n owner: string,\n amount: string,\n requestId: number\n): Operation {\n if (!owner || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildCollateralizedConvertOp] Missing required parameters\");\n }\n\n return [\n \"collateralized_convert\",\n {\n owner,\n amount,\n requestid: requestId,\n },\n ];\n}\n\n/**\n * Builds a Hive Engine custom_json operation.\n * @param from - Account performing the operation\n * @param contractAction - Engine contract action (e.g., \"transfer\", \"stake\")\n * @param contractPayload - Payload for the contract action\n * @param contractName - Engine contract name (defaults to \"tokens\")\n * @returns Custom JSON operation\n */\nexport function buildEngineOp(\n from: string,\n contractAction: string,\n contractPayload: Record,\n contractName = \"tokens\"\n): Operation {\n return [\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [from],\n required_posting_auths: [],\n json: JSON.stringify({ contractName, contractAction, contractPayload }),\n }];\n}\n\n/**\n * Builds a scot_claim_token operation (posting authority).\n * @param account - Account claiming rewards\n * @param tokens - Array of token symbols to claim\n * @returns Custom JSON operation\n */\nexport function buildEngineClaimOp(\n account: string,\n tokens: string[]\n): Operation {\n return [\"custom_json\", {\n id: \"scot_claim_token\",\n required_auths: [],\n required_posting_auths: [account],\n json: JSON.stringify(tokens.map((symbol) => ({ symbol }))),\n }];\n}\n\n/**\n * Builds a delegate RC operation (custom_json).\n * @param from - Account delegating RC\n * @param delegatees - Single delegatee or comma-separated list\n * @param maxRc - Maximum RC to delegate (in mana units)\n * @returns Custom JSON operation for RC delegation\n */\nexport function buildDelegateRcOp(\n from: string,\n delegatees: string,\n maxRc: string | number\n): Operation {\n if (!from || !delegatees || maxRc === undefined) {\n throw new Error(\"[SDK][buildDelegateRcOp] Missing required parameters\");\n }\n\n const delegateeArray = delegatees.includes(\",\")\n ? delegatees.split(\",\").map((d) => d.trim())\n : [delegatees];\n\n return [\n \"custom_json\",\n {\n id: \"rc\",\n json: JSON.stringify([\n \"delegate_rc\",\n {\n from,\n delegatees: delegateeArray,\n max_rc: maxRc,\n },\n ]),\n required_auths: [],\n required_posting_auths: [from],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Social Operations\n * Operations for following, muting, and managing social relationships\n */\n\n/**\n * Builds a follow operation (custom_json).\n * @param follower - Account following\n * @param following - Account to follow\n * @returns Custom JSON operation for follow\n */\nexport function buildFollowOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildFollowOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [\"blog\"],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an unfollow operation (custom_json).\n * @param follower - Account unfollowing\n * @param following - Account to unfollow\n * @returns Custom JSON operation for unfollow\n */\nexport function buildUnfollowOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildUnfollowOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an ignore/mute operation (custom_json).\n * @param follower - Account ignoring\n * @param following - Account to ignore\n * @returns Custom JSON operation for ignore\n */\nexport function buildIgnoreOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildIgnoreOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [\"ignore\"],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an unignore/unmute operation (custom_json).\n * @param follower - Account unignoring\n * @param following - Account to unignore\n * @returns Custom JSON operation for unignore\n */\nexport function buildUnignoreOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildUnignoreOp] Missing required parameters\");\n }\n\n return buildUnfollowOp(follower, following);\n}\n\n/**\n * Builds a Hive Notify set last read operation (custom_json).\n * @param username - Account setting last read\n * @param date - ISO date string (defaults to now)\n * @returns Array of custom JSON operations for setting last read\n */\nexport function buildSetLastReadOps(username: string, date?: string): Operation[] {\n if (!username) {\n throw new Error(\"[SDK][buildSetLastReadOps] Missing required parameters\");\n }\n\n const lastReadDate = date || new Date().toISOString().split(\".\")[0];\n\n const notifyOp: Operation = [\n \"custom_json\",\n {\n id: \"notify\",\n json: JSON.stringify([\"setLastRead\", { date: lastReadDate }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n\n const ecencyNotifyOp: Operation = [\n \"custom_json\",\n {\n id: \"ecency_notify\",\n json: JSON.stringify([\"setLastRead\", { date: lastReadDate }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n\n return [notifyOp, ecencyNotifyOp];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Governance Operations\n * Operations for witness voting, proposals, and proxy management\n */\n\n/**\n * Builds an account witness vote operation.\n * @param account - Account voting\n * @param witness - Witness account name\n * @param approve - True to approve, false to disapprove\n * @returns Account witness vote operation\n */\nexport function buildWitnessVoteOp(\n account: string,\n witness: string,\n approve: boolean\n): Operation {\n if (!account || !witness || approve === undefined) {\n throw new Error(\"[SDK][buildWitnessVoteOp] Missing required parameters\");\n }\n\n return [\n \"account_witness_vote\",\n {\n account,\n witness,\n approve,\n },\n ];\n}\n\n/**\n * Builds an account witness proxy operation.\n * @param account - Account setting proxy\n * @param proxy - Proxy account name (empty string to remove proxy)\n * @returns Account witness proxy operation\n */\nexport function buildWitnessProxyOp(account: string, proxy: string): Operation {\n if (!account || proxy === undefined) {\n throw new Error(\"[SDK][buildWitnessProxyOp] Missing required parameters\");\n }\n\n return [\n \"account_witness_proxy\",\n {\n account,\n proxy,\n },\n ];\n}\n\n/**\n * Payload for proposal creation\n */\nexport interface ProposalCreatePayload {\n receiver: string;\n subject: string;\n permlink: string;\n start: string;\n end: string;\n dailyPay: string;\n}\n\n/**\n * Builds a create proposal operation.\n * @param creator - Account creating the proposal\n * @param payload - Proposal details (must include start, end, and dailyPay)\n * @returns Create proposal operation\n */\nexport function buildProposalCreateOp(\n creator: string,\n payload: ProposalCreatePayload\n): Operation {\n // Validate required fields including start, end, and dailyPay\n if (\n !creator ||\n !payload.receiver ||\n !payload.subject ||\n !payload.permlink ||\n !payload.start ||\n !payload.end ||\n !payload.dailyPay\n ) {\n throw new Error(\"[SDK][buildProposalCreateOp] Missing required parameters\");\n }\n\n // Validate date format by attempting to parse them\n const startDate = new Date(payload.start);\n const endDate = new Date(payload.end);\n if (startDate.toString() === 'Invalid Date' || endDate.toString() === 'Invalid Date') {\n throw new Error(\n \"[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings\"\n );\n }\n\n return [\n \"create_proposal\",\n {\n creator,\n receiver: payload.receiver,\n start_date: payload.start,\n end_date: payload.end,\n daily_pay: payload.dailyPay,\n subject: payload.subject,\n permlink: payload.permlink,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds an update proposal votes operation.\n * @param voter - Account voting\n * @param proposalIds - Array of proposal IDs\n * @param approve - True to approve, false to disapprove\n * @returns Update proposal votes operation\n */\nexport function buildProposalVoteOp(\n voter: string,\n proposalIds: number[],\n approve: boolean\n): Operation {\n if (!voter || !proposalIds || proposalIds.length === 0 || approve === undefined) {\n throw new Error(\"[SDK][buildProposalVoteOp] Missing required parameters\");\n }\n\n return [\n \"update_proposal_votes\",\n {\n voter,\n proposal_ids: proposalIds,\n approve,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds a remove proposal operation.\n * @param proposalOwner - Owner of the proposal\n * @param proposalIds - Array of proposal IDs to remove\n * @returns Remove proposal operation\n */\nexport function buildRemoveProposalOp(\n proposalOwner: string,\n proposalIds: number[]\n): Operation {\n if (!proposalOwner || !proposalIds || proposalIds.length === 0) {\n throw new Error(\"[SDK][buildRemoveProposalOp] Missing required parameters\");\n }\n\n return [\n \"remove_proposal\",\n {\n proposal_owner: proposalOwner,\n proposal_ids: proposalIds,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds an update proposal operation.\n * @param proposalId - Proposal ID to update (must be a valid number, including 0)\n * @param creator - Account that created the proposal\n * @param dailyPay - New daily pay amount\n * @param subject - New subject\n * @param permlink - New permlink\n * @returns Update proposal operation\n */\nexport function buildUpdateProposalOp(\n proposalId: number,\n creator: string,\n dailyPay: string,\n subject: string,\n permlink: string\n): Operation {\n // Validate proposalId properly - check for undefined/null instead of falsy\n // This allows proposalId of 0 which is a valid proposal ID\n if (\n proposalId === undefined ||\n proposalId === null ||\n typeof proposalId !== 'number' ||\n !creator ||\n !dailyPay ||\n !subject ||\n !permlink\n ) {\n throw new Error(\"[SDK][buildUpdateProposalOp] Missing required parameters\");\n }\n\n return [\n \"update_proposal\",\n {\n proposal_id: proposalId,\n creator,\n daily_pay: dailyPay,\n subject,\n permlink,\n extensions: [],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Community Operations\n * Operations for managing Hive communities\n */\n\n/**\n * Builds a subscribe to community operation (custom_json).\n * @param username - Account subscribing\n * @param community - Community name (e.g., \"hive-123456\")\n * @returns Custom JSON operation for subscribe\n */\nexport function buildSubscribeOp(username: string, community: string): Operation {\n if (!username || !community) {\n throw new Error(\"[SDK][buildSubscribeOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"subscribe\", { community }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds an unsubscribe from community operation (custom_json).\n * @param username - Account unsubscribing\n * @param community - Community name (e.g., \"hive-123456\")\n * @returns Custom JSON operation for unsubscribe\n */\nexport function buildUnsubscribeOp(username: string, community: string): Operation {\n if (!username || !community) {\n throw new Error(\"[SDK][buildUnsubscribeOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"unsubscribe\", { community }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a set user role in community operation (custom_json).\n * @param username - Account setting the role (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Account to set role for\n * @param role - Role name (e.g., \"admin\", \"mod\", \"member\", \"guest\")\n * @returns Custom JSON operation for setRole\n */\nexport function buildSetRoleOp(\n username: string,\n community: string,\n account: string,\n role: string\n): Operation {\n if (!username || !community || !account || !role) {\n throw new Error(\n `[SDK][buildSetRoleOp] Missing required parameters: username=${username}, community=${community}, account=${account}, role=${role}`\n );\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"setRole\", { community, account, role }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Community properties for update\n */\nexport interface CommunityProps {\n title: string;\n about: string;\n lang: string;\n description: string;\n flag_text: string;\n is_nsfw: boolean;\n}\n\n/**\n * Builds an update community properties operation (custom_json).\n * @param username - Account updating (must be community admin)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param props - Properties to update\n * @returns Custom JSON operation for updateProps\n */\nexport function buildUpdateCommunityOp(\n username: string,\n community: string,\n props: CommunityProps\n): Operation {\n if (!username || !community || !props) {\n throw new Error(\"[SDK][buildUpdateCommunityOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"updateProps\", { community, props }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a pin/unpin post in community operation (custom_json).\n * @param username - Account pinning (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param pin - True to pin, false to unpin\n * @returns Custom JSON operation for pinPost/unpinPost\n */\nexport function buildPinPostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n pin: boolean\n): Operation {\n if (!username || !community || !account || !permlink || pin === undefined) {\n throw new Error(\"[SDK][buildPinPostOp] Missing required parameters\");\n }\n\n const action = pin ? \"pinPost\" : \"unpinPost\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, permlink }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a mute/unmute post in community operation (custom_json).\n * @param username - Account muting (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param notes - Mute reason/notes\n * @param mute - True to mute, false to unmute\n * @returns Custom JSON operation for mutePost/unmutePost\n */\nexport function buildMutePostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n notes: string,\n mute: boolean\n): Operation {\n if (\n !username ||\n !community ||\n !account ||\n !permlink ||\n mute === undefined\n ) {\n throw new Error(\"[SDK][buildMutePostOp] Missing required parameters\");\n }\n\n const action = mute ? \"mutePost\" : \"unmutePost\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, permlink, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a mute/unmute user in community operation (custom_json).\n * @param username - Account performing mute (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Account to mute/unmute\n * @param notes - Mute reason/notes\n * @param mute - True to mute, false to unmute\n * @returns Custom JSON operation for muteUser/unmuteUser\n */\nexport function buildMuteUserOp(\n username: string,\n community: string,\n account: string,\n notes: string,\n mute: boolean\n): Operation {\n if (!username || !community || !account || mute === undefined) {\n throw new Error(\"[SDK][buildMuteUserOp] Missing required parameters\");\n }\n\n const action = mute ? \"muteUser\" : \"unmuteUser\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a flag post in community operation (custom_json).\n * @param username - Account flagging\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param notes - Flag reason/notes\n * @returns Custom JSON operation for flagPost\n */\nexport function buildFlagPostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n notes: string\n): Operation {\n if (!username || !community || !account || !permlink) {\n throw new Error(\"[SDK][buildFlagPostOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"flagPost\", { community, account, permlink, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Market Operations\n * Operations for trading on the internal Hive market\n */\n\n/**\n * Transaction type for buy/sell operations\n */\nexport enum BuySellTransactionType {\n Buy = \"buy\",\n Sell = \"sell\",\n}\n\n/**\n * Order ID prefix for different order types\n */\nexport enum OrderIdPrefix {\n EMPTY = \"\",\n SWAP = \"9\",\n}\n\n/**\n * Builds a limit order create operation.\n * @param owner - Account creating the order\n * @param amountToSell - Amount and asset to sell\n * @param minToReceive - Minimum amount and asset to receive\n * @param fillOrKill - If true, order must be filled immediately or cancelled\n * @param expiration - Expiration date (ISO string)\n * @param orderId - Unique order ID\n * @returns Limit order create operation\n */\nexport function buildLimitOrderCreateOp(\n owner: string,\n amountToSell: string,\n minToReceive: string,\n fillOrKill: boolean,\n expiration: string,\n orderId: number\n): Operation {\n if (!owner || !amountToSell || !minToReceive || !expiration || orderId === undefined) {\n throw new Error(\"[SDK][buildLimitOrderCreateOp] Missing required parameters\");\n }\n\n return [\n \"limit_order_create\",\n {\n owner,\n orderid: orderId,\n amount_to_sell: amountToSell,\n min_to_receive: minToReceive,\n fill_or_kill: fillOrKill,\n expiration,\n },\n ];\n}\n\n/**\n * Helper to format number to 3 decimal places\n */\nfunction formatNumber(value: number, decimals: number = 3): string {\n return value.toFixed(decimals);\n}\n\n/**\n * Builds a limit order create operation with automatic formatting.\n * This is a convenience method that handles buy/sell logic and formatting.\n *\n * For Buy orders: You're buying HIVE with HBD\n * - amountToSell: HBD amount you're spending\n * - minToReceive: HIVE amount you want to receive\n *\n * For Sell orders: You're selling HIVE for HBD\n * - amountToSell: HIVE amount you're selling\n * - minToReceive: HBD amount you want to receive\n *\n * @param owner - Account creating the order\n * @param amountToSell - Amount to sell (number)\n * @param minToReceive - Minimum to receive (number)\n * @param orderType - Buy or Sell\n * @param idPrefix - Order ID prefix\n * @returns Limit order create operation\n */\nexport function buildLimitOrderCreateOpWithType(\n owner: string,\n amountToSell: number,\n minToReceive: number,\n orderType: BuySellTransactionType,\n idPrefix: OrderIdPrefix = OrderIdPrefix.EMPTY\n): Operation {\n // Validate numeric inputs\n if (\n !owner ||\n orderType === undefined ||\n !Number.isFinite(amountToSell) ||\n amountToSell <= 0 ||\n !Number.isFinite(minToReceive) ||\n minToReceive <= 0\n ) {\n throw new Error(\"[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters\");\n }\n\n // Calculate expiration (27 days from now)\n const expiration = new Date(Date.now());\n expiration.setDate(expiration.getDate() + 27);\n const expirationStr = expiration.toISOString().split(\".\")[0];\n\n // Generate order ID\n const orderId = Number(\n `${idPrefix}${Math.floor(Date.now() / 1000)\n .toString()\n .slice(2)}`\n );\n\n // Format amounts based on order type\n // Buy: Sell HBD to buy HIVE\n // Sell: Sell HIVE to buy HBD\n const formattedAmountToSell =\n orderType === BuySellTransactionType.Buy\n ? `${formatNumber(amountToSell, 3)} HBD`\n : `${formatNumber(amountToSell, 3)} HIVE`;\n\n const formattedMinToReceive =\n orderType === BuySellTransactionType.Buy\n ? `${formatNumber(minToReceive, 3)} HIVE`\n : `${formatNumber(minToReceive, 3)} HBD`;\n\n return buildLimitOrderCreateOp(\n owner,\n formattedAmountToSell,\n formattedMinToReceive,\n false,\n expirationStr,\n orderId\n );\n}\n\n/**\n * Builds a limit order cancel operation.\n * @param owner - Account cancelling the order\n * @param orderId - Order ID to cancel\n * @returns Limit order cancel operation\n */\nexport function buildLimitOrderCancelOp(owner: string, orderId: number): Operation {\n if (!owner || orderId === undefined) {\n throw new Error(\"[SDK][buildLimitOrderCancelOp] Missing required parameters\");\n }\n\n return [\n \"limit_order_cancel\",\n {\n owner,\n orderid: orderId,\n },\n ];\n}\n\n/**\n * Builds a claim reward balance operation.\n * @param account - Account claiming rewards\n * @param rewardHive - HIVE reward to claim (e.g., \"0.000 HIVE\")\n * @param rewardHbd - HBD reward to claim (e.g., \"0.000 HBD\")\n * @param rewardVests - VESTS reward to claim (e.g., \"0.000000 VESTS\")\n * @returns Claim reward balance operation\n */\nexport function buildClaimRewardBalanceOp(\n account: string,\n rewardHive: string,\n rewardHbd: string,\n rewardVests: string\n): Operation {\n if (!account || !rewardHive || !rewardHbd || !rewardVests) {\n throw new Error(\"[SDK][buildClaimRewardBalanceOp] Missing required parameters\");\n }\n\n return [\n \"claim_reward_balance\",\n {\n account,\n reward_hive: rewardHive,\n reward_hbd: rewardHbd,\n reward_vests: rewardVests,\n },\n ];\n}\n","import type { Operation, Authority } from \"../../../hive-tx\";\n\nexport type { Authority };\n\n/**\n * Account Operations\n * Operations for managing accounts, keys, and permissions\n */\n\n/**\n * Builds an account update operation.\n * @param account - Account name\n * @param owner - Owner authority (optional)\n * @param active - Active authority (optional)\n * @param posting - Posting authority (optional)\n * @param memoKey - Memo public key\n * @param jsonMetadata - Account JSON metadata\n * @returns Account update operation\n */\nexport function buildAccountUpdateOp(\n account: string,\n owner: Authority | undefined,\n active: Authority | undefined,\n posting: Authority | undefined,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !memoKey) {\n throw new Error(\"[SDK][buildAccountUpdateOp] Missing required parameters\");\n }\n\n return [\n \"account_update\",\n {\n account,\n owner,\n active,\n posting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds an account update2 operation (for posting_json_metadata).\n * @param account - Account name\n * @param jsonMetadata - Account JSON metadata (legacy, usually empty)\n * @param postingJsonMetadata - Posting JSON metadata string\n * @param extensions - Extensions array\n * @returns Account update2 operation\n */\nexport function buildAccountUpdate2Op(\n account: string,\n jsonMetadata: string,\n postingJsonMetadata: string,\n extensions: any[]\n): Operation {\n if (!account || postingJsonMetadata === undefined) {\n throw new Error(\"[SDK][buildAccountUpdate2Op] Missing required parameters\");\n }\n\n return [\n \"account_update2\",\n {\n account,\n json_metadata: jsonMetadata || \"\",\n posting_json_metadata: postingJsonMetadata,\n extensions: (extensions || []) as [],\n },\n ];\n}\n\n/**\n * Public keys for account creation\n */\nexport interface AccountKeys {\n ownerPublicKey: string;\n activePublicKey: string;\n postingPublicKey: string;\n memoPublicKey: string;\n}\n\n/**\n * Builds an account create operation.\n * @param creator - Creator account name\n * @param newAccountName - New account name\n * @param keys - Public keys for the new account\n * @param fee - Creation fee (e.g., \"3.000 HIVE\")\n * @returns Account create operation\n */\nexport function buildAccountCreateOp(\n creator: string,\n newAccountName: string,\n keys: AccountKeys,\n fee: string\n): Operation {\n if (!creator || !newAccountName || !keys || !fee) {\n throw new Error(\"[SDK][buildAccountCreateOp] Missing required parameters\");\n }\n\n const owner: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.ownerPublicKey, 1]],\n };\n\n const active: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.activePublicKey, 1]],\n };\n\n const posting: Authority = {\n weight_threshold: 1,\n account_auths: [[\"ecency.app\", 1]],\n key_auths: [[keys.postingPublicKey, 1]],\n };\n\n return [\n \"account_create\",\n {\n creator,\n new_account_name: newAccountName,\n owner,\n active,\n posting,\n memo_key: keys.memoPublicKey,\n json_metadata: \"\",\n fee,\n },\n ] satisfies Operation;\n}\n\n/**\n * Builds a create claimed account operation (using account creation tokens).\n * @param creator - Creator account name\n * @param newAccountName - New account name\n * @param keys - Public keys for the new account\n * @returns Create claimed account operation\n */\nexport function buildCreateClaimedAccountOp(\n creator: string,\n newAccountName: string,\n keys: AccountKeys\n): Operation {\n if (!creator || !newAccountName || !keys) {\n throw new Error(\"[SDK][buildCreateClaimedAccountOp] Missing required parameters\");\n }\n\n const owner: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.ownerPublicKey, 1]],\n };\n\n const active: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.activePublicKey, 1]],\n };\n\n const posting: Authority = {\n weight_threshold: 1,\n account_auths: [[\"ecency.app\", 1]],\n key_auths: [[keys.postingPublicKey, 1]],\n };\n\n return [\n \"create_claimed_account\",\n {\n creator,\n new_account_name: newAccountName,\n owner,\n active,\n posting,\n memo_key: keys.memoPublicKey,\n json_metadata: \"\",\n extensions: [] as [],\n },\n ];\n}\n\n/**\n * Builds a claim account operation.\n * @param creator - Account claiming the token\n * @param fee - Fee for claiming (usually \"0.000 HIVE\" for RC-based claims)\n * @returns Claim account operation\n */\nexport function buildClaimAccountOp(creator: string, fee: string): Operation {\n if (!creator || !fee) {\n throw new Error(\"[SDK][buildClaimAccountOp] Missing required parameters\");\n }\n\n return [\n \"claim_account\",\n {\n creator,\n fee,\n extensions: [] as [],\n },\n ];\n}\n\n/**\n * Builds an operation to grant posting permission to another account.\n * Helper that modifies posting authority to add an account.\n * @param account - Account granting permission\n * @param currentPosting - Current posting authority\n * @param grantedAccount - Account to grant permission to\n * @param weightThreshold - Weight threshold of the granted account\n * @param memoKey - Memo public key (required by Hive blockchain)\n * @param jsonMetadata - Account JSON metadata (required by Hive blockchain)\n * @returns Account update operation with modified posting authority\n */\nexport function buildGrantPostingPermissionOp(\n account: string,\n currentPosting: Authority,\n grantedAccount: string,\n weightThreshold: number,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !currentPosting || !grantedAccount || !memoKey) {\n throw new Error(\"[SDK][buildGrantPostingPermissionOp] Missing required parameters\");\n }\n\n // Find existing account or create new entry to prevent duplicates\n const existingIndex = currentPosting.account_auths.findIndex(\n ([acc]) => acc === grantedAccount\n );\n\n const newAccountAuths = [...currentPosting.account_auths];\n if (existingIndex >= 0) {\n // Update existing entry with new weight\n newAccountAuths[existingIndex] = [grantedAccount, weightThreshold];\n } else {\n // Add new entry\n newAccountAuths.push([grantedAccount, weightThreshold]);\n }\n\n const newPosting: Authority = {\n ...currentPosting,\n account_auths: newAccountAuths,\n };\n\n // Sort account_auths alphabetically for consistency\n newPosting.account_auths.sort((a, b) => (a[0] > b[0] ? 1 : -1));\n\n return [\n \"account_update\",\n {\n account,\n posting: newPosting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds an operation to revoke posting permission from an account.\n * Helper that modifies posting authority to remove an account.\n * @param account - Account revoking permission\n * @param currentPosting - Current posting authority\n * @param revokedAccount - Account to revoke permission from\n * @param memoKey - Memo public key (required by Hive blockchain)\n * @param jsonMetadata - Account JSON metadata (required by Hive blockchain)\n * @returns Account update operation with modified posting authority\n */\nexport function buildRevokePostingPermissionOp(\n account: string,\n currentPosting: Authority,\n revokedAccount: string,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !currentPosting || !revokedAccount || !memoKey) {\n throw new Error(\"[SDK][buildRevokePostingPermissionOp] Missing required parameters\");\n }\n\n const newPosting: Authority = {\n ...currentPosting,\n account_auths: currentPosting.account_auths.filter(\n ([acc]) => acc !== revokedAccount\n ),\n };\n\n return [\n \"account_update\",\n {\n account,\n posting: newPosting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds a change recovery account operation.\n * @param accountToRecover - Account to change recovery account for\n * @param newRecoveryAccount - New recovery account name\n * @param extensions - Extensions array\n * @returns Change recovery account operation\n */\nexport function buildChangeRecoveryAccountOp(\n accountToRecover: string,\n newRecoveryAccount: string,\n extensions: any[] = []\n): Operation {\n if (!accountToRecover || !newRecoveryAccount) {\n throw new Error(\"[SDK][buildChangeRecoveryAccountOp] Missing required parameters\");\n }\n\n return [\n \"change_recovery_account\",\n {\n account_to_recover: accountToRecover,\n new_recovery_account: newRecoveryAccount,\n extensions: extensions as [],\n },\n ];\n}\n\n/**\n * Builds a request account recovery operation.\n * @param recoveryAccount - Recovery account performing the recovery\n * @param accountToRecover - Account to recover\n * @param newOwnerAuthority - New owner authority\n * @param extensions - Extensions array\n * @returns Request account recovery operation\n */\nexport function buildRequestAccountRecoveryOp(\n recoveryAccount: string,\n accountToRecover: string,\n newOwnerAuthority: Authority,\n extensions: any[] = []\n): Operation {\n if (!recoveryAccount || !accountToRecover || !newOwnerAuthority) {\n throw new Error(\"[SDK][buildRequestAccountRecoveryOp] Missing required parameters\");\n }\n\n return [\n \"request_account_recovery\",\n {\n recovery_account: recoveryAccount,\n account_to_recover: accountToRecover,\n new_owner_authority: newOwnerAuthority,\n extensions: extensions as [],\n },\n ];\n}\n\n/**\n * Builds a recover account operation.\n * @param accountToRecover - Account to recover\n * @param newOwnerAuthority - New owner authority\n * @param recentOwnerAuthority - Recent owner authority (for proof)\n * @param extensions - Extensions array\n * @returns Recover account operation\n */\nexport function buildRecoverAccountOp(\n accountToRecover: string,\n newOwnerAuthority: Authority,\n recentOwnerAuthority: Authority,\n extensions: any[] = []\n): Operation {\n if (!accountToRecover || !newOwnerAuthority || !recentOwnerAuthority) {\n throw new Error(\"[SDK][buildRecoverAccountOp] Missing required parameters\");\n }\n\n return [\n \"recover_account\",\n {\n account_to_recover: accountToRecover,\n new_owner_authority: newOwnerAuthority,\n recent_owner_authority: recentOwnerAuthority,\n extensions: extensions as [],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Ecency-Specific Operations\n * Custom operations for Ecency platform features (Points, Boost, Promote, etc.)\n */\n\n/**\n * Builds an Ecency Boost Plus subscription operation (custom_json).\n * @param user - User account\n * @param account - Account to subscribe\n * @param duration - Subscription duration in days (must be a valid finite number)\n * @returns Custom JSON operation for boost plus\n */\nexport function buildBoostPlusOp(\n user: string,\n account: string,\n duration: number\n): Operation {\n // Validate required parameters and ensure duration is a finite number (reject NaN, Infinity)\n if (!user || !account || !Number.isFinite(duration)) {\n throw new Error(\"[SDK][buildBoostPlusOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_boost_plus\",\n json: JSON.stringify({\n user,\n account,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds an Ecency RC top-up operation (custom_json): a short-term, RC-only\n * delegation to the user's OWN account, paid for with Ecency Points. Distinct\n * from Boost Plus (which delegates Hive Power). The RC amount is fixed\n * server-side, so the user only chooses a duration. Signed with active\n * authority because it spends Points. The actual on-chain `delegate_rc` is\n * broadcast by the Ecency relay account, not here.\n * @param user - User account (payer and recipient of the RC)\n * @param duration - Delegation duration in days (must be a valid finite number)\n * @returns Custom JSON operation for the RC top-up\n */\nexport function buildRcDelegationOp(user: string, duration: number): Operation {\n if (!user || !Number.isInteger(duration) || duration <= 0) {\n throw new Error(\"[SDK][buildRcDelegationOp] Missing or invalid parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_rc_delegation\",\n json: JSON.stringify({\n user,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds an Ecency promote operation (custom_json).\n * @param user - User account\n * @param author - Post author\n * @param permlink - Post permlink\n * @param duration - Promotion duration in days (must be a valid finite number)\n * @returns Custom JSON operation for promote\n */\nexport function buildPromoteOp(\n user: string,\n author: string,\n permlink: string,\n duration: number\n): Operation {\n // Validate required parameters and ensure duration is a finite number (reject NaN, Infinity)\n if (!user || !author || !permlink || !Number.isFinite(duration)) {\n throw new Error(\"[SDK][buildPromoteOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_promote\",\n json: JSON.stringify({\n user,\n author,\n permlink,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\nconst CURATION_REASONS = [\"quality\", \"underrated\", \"newcomer\", \"other\"] as const;\ntype CurationRecommendReason = (typeof CURATION_REASONS)[number];\n\n/**\n * Builds a curation recommendation operation (custom_json, posting authority).\n * The desk indexes `ecency_curation` ops from the chain; there is no write route.\n * @param recommender - Account recommending the post (signs with posting)\n * @param author - Post author\n * @param permlink - Post permlink\n * @param reason - One of quality, underrated, newcomer, other (defaults to quality)\n * @returns Custom JSON operation with id \"ecency_curation\"\n */\nexport function buildCurationRecommendOp(\n recommender: string,\n author: string,\n permlink: string,\n reason: CurationRecommendReason = \"quality\"\n): Operation {\n if (!recommender || !author || !permlink) {\n throw new Error(\"[SDK][buildCurationRecommendOp] Missing required parameters\");\n }\n if (!CURATION_REASONS.includes(reason)) {\n throw new Error(\"[SDK][buildCurationRecommendOp] Unknown reason\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_curation\",\n json: JSON.stringify({\n v: 1,\n op: \"recommend\",\n author,\n permlink,\n reason,\n }),\n required_auths: [],\n required_posting_auths: [recommender],\n },\n ];\n}\n\n/**\n * Builds a curation recommendation withdrawal (custom_json, posting authority).\n * @param recommender - Account withdrawing its recommendation\n * @param author - Post author\n * @param permlink - Post permlink\n * @returns Custom JSON operation with id \"ecency_curation\" and op \"unrecommend\"\n */\nexport function buildCurationUnrecommendOp(\n recommender: string,\n author: string,\n permlink: string\n): Operation {\n if (!recommender || !author || !permlink) {\n throw new Error(\"[SDK][buildCurationUnrecommendOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_curation\",\n json: JSON.stringify({\n v: 1,\n op: \"unrecommend\",\n author,\n permlink,\n }),\n required_auths: [],\n required_posting_auths: [recommender],\n },\n ];\n}\n\n/**\n * Builds an Ecency point transfer operation (custom_json).\n * @param sender - Sender account\n * @param receiver - Receiver account\n * @param amount - Amount to transfer\n * @param memo - Transfer memo\n * @returns Custom JSON operation for point transfer\n */\nexport function buildPointTransferOp(\n sender: string,\n receiver: string,\n amount: string,\n memo: string\n): Operation {\n if (!sender || !receiver || !amount) {\n throw new Error(\"[SDK][buildPointTransferOp] Missing required parameters\");\n }\n\n // Normalize \"POINTS\" to \"POINT\" — backend expects singular form\n const normalizedAmount = amount.replace(/POINTS\\b/, \"POINT\");\n\n return [\n \"custom_json\",\n {\n id: \"ecency_point_transfer\",\n json: JSON.stringify({\n sender,\n receiver,\n amount: normalizedAmount,\n memo: memo || \"\",\n }),\n required_auths: [sender],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds multiple Ecency point transfer operations for multiple recipients.\n * @param sender - Sender account\n * @param destinations - Comma or space separated list of recipients\n * @param amount - Amount to transfer\n * @param memo - Transfer memo\n * @returns Array of custom JSON operations for point transfers\n */\nexport function buildMultiPointTransferOps(\n sender: string,\n destinations: string,\n amount: string,\n memo: string\n): Operation[] {\n if (!sender || !destinations || !amount) {\n throw new Error(\"[SDK][buildMultiPointTransferOps] Missing required parameters\");\n }\n\n // Split the destination input into an array of usernames\n const destArray = destinations\n .trim()\n .split(/[\\s,]+/)\n .filter(Boolean);\n\n // Validate parsed destinations\n if (destArray.length === 0) {\n throw new Error(\"[SDK][buildMultiPointTransferOps] Missing valid destinations\");\n }\n\n // Create a point transfer operation for each destination\n return destArray.map((dest) =>\n buildPointTransferOp(sender, dest.trim(), amount, memo)\n );\n}\n\n/**\n * Builds an Ecency community rewards registration operation (custom_json).\n * @param name - Account name to register\n * @returns Custom JSON operation for community registration\n */\nexport function buildCommunityRegistrationOp(name: string): Operation {\n if (!name) {\n throw new Error(\"[SDK][buildCommunityRegistrationOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_registration\",\n json: JSON.stringify({\n name,\n }),\n required_auths: [name],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds a generic active authority custom_json operation.\n * Used for various Ecency operations that require active authority.\n * @param username - Account performing the operation\n * @param operationId - Custom JSON operation ID\n * @param json - JSON payload\n * @returns Custom JSON operation with active authority\n */\nexport function buildActiveCustomJsonOp(\n username: string,\n operationId: string,\n json: Record\n): Operation {\n if (!username || !operationId || !json) {\n throw new Error(\"[SDK][buildActiveCustomJsonOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: operationId,\n json: JSON.stringify(json),\n required_auths: [username],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds a generic posting authority custom_json operation.\n * Used for various operations that require posting authority.\n * @param username - Account performing the operation\n * @param operationId - Custom JSON operation ID\n * @param json - JSON payload\n * @returns Custom JSON operation with posting authority\n */\nexport function buildPostingCustomJsonOp(\n username: string,\n operationId: string,\n json: Record | any[]\n): Operation {\n if (!username || !operationId || !json) {\n throw new Error(\"[SDK][buildPostingCustomJsonOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: operationId,\n json: JSON.stringify(json),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildFollowOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for following an account.\n */\nexport interface FollowPayload {\n /** Account to follow */\n following: string;\n}\n\n/**\n * React Query mutation hook for following an account.\n *\n * This mutation broadcasts a follow operation to the Hive blockchain,\n * adding the target account to the follower's \"blog\" follow list.\n *\n * @param username - The username of the follower (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates relationship cache to show updated follow status\n * - Invalidates account cache to refetch updated follower/following counts\n *\n * @example\n * ```typescript\n * const followMutation = useFollow(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Follow an account\n * followMutation.mutate({\n * following: 'alice'\n * });\n * ```\n */\nexport function useFollow(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"follow\"],\n username,\n ({ following }) => [\n buildFollowOp(username!, following)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.relations(username!, variables.following),\n QueryKeys.accounts.full(variables.following),\n QueryKeys.accounts.followCount(variables.following),\n QueryKeys.accounts.followCount(username!)\n ]);\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUnfollowOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for unfollowing an account.\n */\nexport interface UnfollowPayload {\n /** Account to unfollow */\n following: string;\n}\n\n/**\n * React Query mutation hook for unfollowing an account.\n *\n * This mutation broadcasts an unfollow operation to the Hive blockchain,\n * removing the target account from the follower's follow list.\n *\n * @param username - The username of the follower (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates relationship cache to show updated follow status\n * - Invalidates account cache to refetch updated follower/following counts\n *\n * @example\n * ```typescript\n * const unfollowMutation = useUnfollow(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Unfollow an account\n * unfollowMutation.mutate({\n * following: 'alice'\n * });\n * ```\n */\nexport function useUnfollow(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"unfollow\"],\n username,\n ({ following }) => [\n buildUnfollowOp(username!, following)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.relations(username!, variables.following),\n QueryKeys.accounts.full(variables.following),\n QueryKeys.accounts.followCount(variables.following),\n QueryKeys.accounts.followCount(username!)\n ]);\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\ninterface Payload {\n author: string;\n permlink: string;\n}\n\nexport function useBookmarkAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"bookmarks\", \"add\", username],\n mutationFn: async ({ author, permlink }: Payload) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Bookmarks] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks-add\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: () => {\n onSuccess();\n getQueryClient().invalidateQueries({\n queryKey: [\"accounts\", \"bookmarks\", username],\n });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useBookmarkDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"bookmarks\", \"delete\", username],\n mutationFn: async (bookmarkId: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Bookmarks] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks-delete\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n id: bookmarkId,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: () => {\n onSuccess();\n getQueryClient().invalidateQueries({\n queryKey: [\"accounts\", \"bookmarks\", username],\n });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useAccountFavoriteAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorites\", \"add\", username],\n mutationFn: async (account: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Favorites] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-add\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n account,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: (_data, account) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favorites(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoritesInfinite(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavorite(username!, account) });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation, InfiniteData } from \"@tanstack/react-query\";\nimport { AccountFavorite } from \"../../types\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useAccountFavoriteDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorites\", \"delete\", username],\n mutationFn: async (account: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Favorites] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-delete\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n account,\n code,\n }),\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to delete favorite: ${response.status}`);\n }\n return response.json();\n },\n onMutate: async (account: string) => {\n if (!username) {\n return;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.accounts.favorites(username);\n const infinitePrefix = QueryKeys.accounts.favoritesInfinite(username);\n const checkKey = QueryKeys.accounts.checkFavorite(username, account);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n qc.cancelQueries({ queryKey: checkKey }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((f) => f.account !== account)\n );\n }\n\n const previousCheck = qc.getQueryData(checkKey);\n qc.setQueryData(checkKey, false);\n\n const infiniteQueries = qc.getQueriesData>>({\n queryKey: infinitePrefix,\n });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((f) => f.account !== account),\n })),\n });\n }\n }\n\n return { previousList, previousInfinite, previousCheck };\n },\n onSuccess: (_data, account) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favorites(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoritesInfinite(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavorite(username!, account) });\n },\n onError: (err, account, context) => {\n const qc = getQueryClient();\n if (context?.previousList) {\n qc.setQueryData(QueryKeys.accounts.favorites(username), context.previousList);\n }\n if (context?.previousInfinite) {\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n }\n if (context?.previousCheck !== undefined) {\n qc.setQueryData(\n QueryKeys.accounts.checkFavorite(username!, account),\n context.previousCheck\n );\n }\n onError(err);\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { AccountFavoriteTag } from \"../../types\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\n\nasync function favoriteTagRequest(\n route: \"favorite-tags-add\" | \"favorite-tags-delete\",\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n if (!username || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n // Normalised before it leaves the client, so the request, the cache key and the\n // stored row all agree on the spelling.\n const normalized = normalizeTag(tag);\n if (normalized === null) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – invalid tag\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/\" + route, {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n tag: normalized,\n code,\n }),\n });\n if (!response.ok) {\n throw new Error(`Failed to ${route === \"favorite-tags-add\" ? \"add\" : \"delete\"} favorite tag: ${response.status}`);\n }\n return (await response.json()) as AccountFavoriteTag[];\n}\n\n/** Follow a hashtag. Resolves to the updated list, newest first. */\nexport function addFavoriteTagRequest(\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n return favoriteTagRequest(\"favorite-tags-add\", username, code, tag);\n}\n\n/** Unfollow a hashtag. Resolves to the updated list, newest first. */\nexport function deleteFavoriteTagRequest(\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n return favoriteTagRequest(\"favorite-tags-delete\", username, code, tag);\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\nimport { addFavoriteTagRequest } from \"./requests\";\n\nexport function useFavoriteTagAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorite-tags\", \"add\", username],\n mutationFn: (tag: string) => addFavoriteTagRequest(username, code, tag),\n onSuccess: (_data, tag) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTags(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTagsInfinite(username) });\n qc.invalidateQueries({\n queryKey: QueryKeys.accounts.checkFavoriteTag(username!, normalizeTag(tag) ?? tag),\n });\n },\n onError,\n });\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { WrappedResponse } from \"@/modules/core/types\";\nimport { InfiniteData, QueryKey, useMutation, UseMutationOptions } from \"@tanstack/react-query\";\nimport { AccountFavoriteTag } from \"../../types\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\nimport { deleteFavoriteTagRequest } from \"./requests\";\n\ntype InfinitePages = InfiniteData>;\n\ninterface DeleteContext {\n normalized: string;\n previousList: AccountFavoriteTag[] | undefined;\n previousInfinite: Map;\n /** `undefined` when the check query had no cached value before the mutation. */\n previousCheck: boolean | undefined;\n}\n\n/**\n * The mutation options behind useFavoriteTagDelete, exported so the cache\n * behaviour can be exercised without rendering a hook.\n *\n * The tag is removed from the list, the infinite pages and the check entry\n * optimistically. On failure the snapshots are put back for an instant revert, and\n * then every touched key is invalidated anyway: a snapshot taken while another\n * delete was in flight still holds that other tag, so the restore alone would\n * resurrect it. The refetch is what makes the cache converge.\n */\nexport function favoriteTagDeleteMutationOptions(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n): UseMutationOptions {\n const invalidateAll = (normalized: string | undefined) => {\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTags(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTagsInfinite(username) });\n if (normalized) {\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavoriteTag(username!, normalized) });\n }\n };\n\n return {\n mutationKey: [\"accounts\", \"favorite-tags\", \"delete\", username],\n mutationFn: (tag: string) => deleteFavoriteTagRequest(username, code, tag),\n onMutate: async (tag: string) => {\n const normalized = normalizeTag(tag);\n if (!username || normalized === null) {\n return undefined;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.accounts.favoriteTags(username);\n const infinitePrefix = QueryKeys.accounts.favoriteTagsInfinite(username);\n const checkKey = QueryKeys.accounts.checkFavoriteTag(username, normalized);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n qc.cancelQueries({ queryKey: checkKey }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((f) => f.tag !== normalized)\n );\n }\n\n const previousCheck = qc.getQueryData(checkKey);\n qc.setQueryData(checkKey, false);\n\n const infiniteQueries = qc.getQueriesData({ queryKey: infinitePrefix });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((f) => f.tag !== normalized),\n })),\n });\n }\n }\n\n return { normalized, previousList, previousInfinite, previousCheck };\n },\n onSuccess: (_data, tag) => {\n onSuccess();\n invalidateAll(normalizeTag(tag) ?? undefined);\n },\n onError: (err, _tag, context) => {\n const qc = getQueryClient();\n if (context) {\n if (context.previousList) {\n qc.setQueryData(QueryKeys.accounts.favoriteTags(username), context.previousList);\n }\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n const checkKey = QueryKeys.accounts.checkFavoriteTag(username!, context.normalized);\n if (context.previousCheck !== undefined) {\n qc.setQueryData(checkKey, context.previousCheck);\n } else {\n // Nothing was cached before, so the optimistic `false` must not outlive\n // the failure as if it were an answer from the server.\n qc.removeQueries({ queryKey: checkKey, exact: true });\n }\n }\n invalidateAll(context?.normalized);\n onError(err);\n },\n };\n}\n\nexport function useFavoriteTagDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation(favoriteTagDeleteMutationOptions(username, code, onSuccess, onError));\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport type { Authority } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\nexport interface Keys {\n owner: PrivateKey;\n active: PrivateKey;\n posting: PrivateKey;\n memo_key: PrivateKey;\n}\n\ninterface Payload {\n keepCurrent?: boolean;\n currentKey: PrivateKey;\n keys: Keys[];\n keysToRevoke?: string[]; // Deprecated: will be treated as revoking from all authorities\n keysToRevokeByAuthority?: Partial>; // Authority-specific revocation\n}\n\nexport function dedupeAndSortKeyAuths(\n existing: Authority[\"key_auths\"],\n additions: [string, number][]\n): Authority[\"key_auths\"] {\n const merged = new Map();\n\n existing.forEach(([key, weight]) => {\n merged.set(key.toString(), weight);\n });\n\n additions.forEach(([key, weight]) => {\n merged.set(key.toString(), weight);\n });\n\n return Array.from(merged.entries())\n .sort(([keyA], [keyB]) => keyA.localeCompare(keyB))\n .map(([key, weight]) => [key, weight] as [string, number]);\n}\n\ntype UpdateKeyAuthsOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountUpdateKeyAuths(\n username: string,\n options?: UpdateKeyAuthsOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"keys-update\", username],\n mutationFn: async ({\n keys,\n keepCurrent = false,\n currentKey,\n keysToRevoke = [],\n keysToRevokeByAuthority = {}\n }: Payload) => {\n if (keys.length === 0) {\n throw new Error(\n \"[SDK][Update password] – no new keys provided\"\n );\n }\n\n if (!accountData) {\n throw new Error(\n \"[SDK][Update password] – cannot update keys for anon user\"\n );\n }\n\n const prepareAuth = (keyName: keyof Keys) => {\n const auth: Authority = JSON.parse(JSON.stringify(accountData[keyName]));\n\n // Get keys to revoke for this specific authority\n const keysToRevokeForAuthority = keysToRevokeByAuthority[keyName] || [];\n // Fallback to global keysToRevoke for backwards compatibility\n const allKeysToRevoke = [\n ...keysToRevokeForAuthority,\n ...(keysToRevokeByAuthority[keyName] === undefined ? keysToRevoke : [])\n ];\n\n // Filter out keys to revoke from existing keys (authority-specific)\n const existingKeys = keepCurrent\n ? auth.key_auths.filter(([key]) => !allKeysToRevoke.includes(key.toString()))\n : [];\n\n auth.key_auths = dedupeAndSortKeyAuths(\n existingKeys,\n keys.map(\n (values, i) =>\n [values[keyName].createPublic().toString(), i + 1] as [\n string,\n number,\n ]\n )\n );\n\n return auth;\n };\n\n return broadcastOperations(\n [[\"account_update\", {\n account: username,\n json_metadata: accountData.json_metadata,\n owner: prepareAuth(\"owner\"),\n active: prepareAuth(\"active\"),\n posting: prepareAuth(\"posting\"),\n // Always use new memo key when adding new keys\n memo_key: keys[0].memo_key.createPublic().toString(),\n }]],\n currentKey\n );\n },\n ...options,\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { useAccountUpdateKeyAuths } from \"./use-account-update-key-auths\";\n\ninterface Payload {\n newPassword: string;\n currentPassword: string;\n keepCurrent?: boolean;\n}\n\n/**\n * Only native Hive and custom passwords could be updated here\n * Seed based password cannot be updated here, it will be in an account always for now\n */\ntype UpdatePasswordOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountUpdatePassword(\n username: string,\n options?: UpdatePasswordOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n const { mutateAsync: updateKeys } = useAccountUpdateKeyAuths(username);\n\n return useMutation({\n mutationKey: [\"accounts\", \"password-update\", username],\n mutationFn: async ({\n newPassword,\n currentPassword,\n keepCurrent,\n }: Payload) => {\n if (!accountData) {\n throw new Error(\n \"[SDK][Update password] – cannot update password for anon user\"\n );\n }\n const currentKey = PrivateKey.fromLogin(\n username,\n currentPassword,\n \"owner\"\n );\n\n return updateKeys({\n currentKey,\n keepCurrent,\n keys: [\n {\n owner: PrivateKey.fromLogin(username, newPassword, \"owner\"),\n active: PrivateKey.fromLogin(username, newPassword, \"active\"),\n posting: PrivateKey.fromLogin(username, newPassword, \"posting\"),\n memo_key: PrivateKey.fromLogin(username, newPassword, \"memo\"),\n },\n ],\n });\n },\n ...options,\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n useQueryClient,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { FullAccount } from \"../types\";\nimport hs from \"hivesigner\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ntype SignType = \"key\" | \"keychain\" | \"hivesigner\";\n\ninterface CommonPayload {\n accountName: string;\n type: SignType;\n key?: PrivateKey;\n}\n\ntype RevokePostingOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n> & {\n hsCallbackUrl?: string;\n};\n\nexport function useAccountRevokePosting(\n username: string | undefined,\n options: RevokePostingOptions,\n auth?: AuthContextV2\n) {\n const queryClient = useQueryClient();\n\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"revoke-posting\", data?.name],\n mutationFn: async ({ accountName, type, key }: CommonPayload) => {\n if (!data) {\n throw new Error(\n \"[SDK][Accounts] – cannot revoke posting for anonymous user\"\n );\n }\n\n const posting = JSON.parse(JSON.stringify(data.posting)) as FullAccount[\"posting\"];\n\n posting.account_auths = posting.account_auths.filter(\n ([account]) => account !== accountName\n );\n\n const operationBody = {\n account: data.name,\n posting,\n memo_key: data.memo_key,\n json_metadata: data.json_metadata,\n };\n\n if (type === \"key\" && key) {\n return broadcastOperations([[\"account_update\", operationBody]], key);\n } else if (type === \"keychain\") {\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Accounts] – missing keychain broadcaster\");\n }\n return auth.adapter.broadcastWithKeychain(\n data.name,\n [[\"account_update\", operationBody]],\n \"active\"\n );\n } else {\n if (!options.hsCallbackUrl && process.env.NODE_ENV === \"development\") {\n console.warn(\"[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing.\");\n }\n return hs.sendOperation(\n [\"account_update\", operationBody],\n options.hsCallbackUrl ? { callback: options.hsCallbackUrl } : {},\n () => {}\n );\n }\n },\n onError: options.onError,\n onSuccess: (resp, payload, ctx) => {\n (options.onSuccess as\n | ((data: unknown, variables: CommonPayload, context: unknown) => unknown)\n | undefined)?.(resp, payload, ctx);\n queryClient.setQueryData(\n getAccountFullQueryOptions(username).queryKey,\n (data) =>\n ({\n ...data,\n posting: {\n ...data?.posting,\n account_auths:\n data?.posting?.account_auths?.filter(\n ([account]) => account !== payload.accountName\n ) ?? [],\n },\n }) as FullAccount\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ntype SignType = \"key\" | \"keychain\" | \"hivesigner\" | \"ecency\";\n\ninterface CommonPayload {\n accountName: string;\n type: SignType;\n key?: PrivateKey;\n email?: string;\n}\n\ntype UpdateRecoveryOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n> & {\n hsCallbackUrl?: string;\n};\n\nexport function useAccountUpdateRecovery(\n username: string | undefined,\n code: string | undefined,\n options: UpdateRecoveryOptions,\n auth?: AuthContextV2\n) {\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"recovery\", data?.name],\n mutationFn: async ({ accountName, type, key, email }: CommonPayload) => {\n if (!data) {\n throw new Error(\n \"[SDK][Accounts] – cannot change recovery for anonymous user\"\n );\n }\n\n const operationBody = {\n account_to_recover: data.name,\n new_recovery_account: accountName,\n extensions: [] as [],\n };\n\n if (type === \"ecency\") {\n if (!code) {\n throw new Error(\"[SDK][Accounts] – missing access token\");\n }\n const fetchApi = getBoundFetch();\n\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/recoveries-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n email,\n publicKeys: [\n ...data.owner.key_auths,\n ...data.active.key_auths,\n ...data.posting.key_auths,\n data.memo_key,\n ],\n }),\n });\n\n // Raw fetch resolves on 4xx/5xx, so guard explicitly — otherwise the\n // caller's onSuccess shows a \"recovery updated\" toast on a failed request.\n // (The missing Content-Type header also made the backend skip JSON parsing.)\n if (!response.ok) {\n throw new Error(`[SDK][Accounts] Failed to add recovery: ${response.status}`);\n }\n\n return response;\n } else if (type === \"key\" && key) {\n return broadcastOperations(\n [[\"change_recovery_account\", operationBody]],\n key\n );\n } else if (type === \"keychain\") {\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Accounts] – missing keychain broadcaster\");\n }\n return auth.adapter.broadcastWithKeychain(data.name, [[\"change_recovery_account\", operationBody]], \"owner\");\n } else {\n if (!options.hsCallbackUrl && process.env.NODE_ENV === \"development\") {\n console.warn(\"[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing.\");\n }\n return hs.sendOperation(\n [\"change_recovery_account\", operationBody],\n options.hsCallbackUrl ? { callback: options.hsCallbackUrl } : {},\n () => {}\n );\n }\n },\n onError: options.onError,\n onSuccess: options.onSuccess,\n });\n}\n","import { PublicKey } from \"../../../hive-tx\";\nimport type { Authority } from \"../../../hive-tx\";\nimport { FullAccount } from \"../types\";\n\n/**\n * Check whether an authority would still meet its weight_threshold\n * after removing the given keys. This prevents revoking keys that\n * would leave an authority unable to sign (especially for multisig).\n */\nexport function canRevokeFromAuthority(\n auth: Authority,\n revokingKeyStrs: Set\n): boolean {\n const remainingWeight = auth.key_auths\n .filter(([key]) => !revokingKeyStrs.has(String(key)))\n .reduce((sum, [, weight]) => sum + weight, 0);\n\n // account_auths also contribute weight\n const accountWeight = (auth.account_auths ?? []).reduce(\n (sum: number, [, weight]: [string, number]) => sum + weight,\n 0\n );\n\n return (remainingWeight + accountWeight) >= auth.weight_threshold;\n}\n\n/**\n * Build an account_update operation that removes the given public keys\n * from the relevant authorities.\n *\n * Only includes the `owner` field when a revoking key actually exists\n * in the owner authority - omitting it allows active-level signing.\n *\n * Returns the operation payload (without the \"account_update\" tag) so\n * callers can wrap it as needed for their broadcast method.\n */\nexport function buildRevokeKeysOp(\n accountData: FullAccount,\n revokingKeys: PublicKey[]\n) {\n const revokingKeyStrs = new Set(revokingKeys.map((k) => k.toString()));\n\n const hasAnyKeyInAuth = (auth: Authority) =>\n auth.key_auths.some(\n ([key]: [string | PublicKey, number]) => revokingKeyStrs.has(String(key))\n );\n\n const prepareAuth = (auth: Authority): Authority => {\n const clone: Authority = JSON.parse(JSON.stringify(auth));\n clone.key_auths = clone.key_auths.filter(\n ([key]) => !revokingKeyStrs.has(key.toString())\n );\n return clone;\n };\n\n const needsOwnerUpdate = hasAnyKeyInAuth(accountData.owner);\n\n return {\n account: accountData.name,\n json_metadata: accountData.json_metadata,\n owner: needsOwnerUpdate ? prepareAuth(accountData.owner) : undefined,\n active: prepareAuth(accountData.active),\n posting: prepareAuth(accountData.posting),\n memo_key: accountData.memo_key\n };\n}\n","import { PrivateKey, PublicKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { buildRevokeKeysOp } from \"./build-revoke-keys-op\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ninterface Payload {\n currentKey: PrivateKey;\n /** Keys to revoke. Accepts a single key or an array. */\n revokingKey: PublicKey | PublicKey[];\n}\n\n/**\n * Revoke one or more keys from an account on the Hive blockchain.\n *\n * When revoking keys that exist only in active/posting authorities,\n * the owner field is omitted from the operation so active-level\n * signing is sufficient.\n */\ntype RevokeKeyOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountRevokeKey(\n username: string | undefined,\n options?: RevokeKeyOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"revoke-key\", accountData?.name],\n mutationFn: async ({ currentKey, revokingKey }: Payload) => {\n if (!accountData) {\n throw new Error(\n \"[SDK][Revoke key] – cannot update keys for anon user\"\n );\n }\n\n const revokingKeys = Array.isArray(revokingKey) ? revokingKey : [revokingKey];\n const op = buildRevokeKeysOp(accountData, revokingKeys);\n\n return broadcastOperations([[\"account_update\", op]], currentKey);\n },\n ...options,\n });\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildClaimAccountOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for claiming account creation tokens.\n */\nexport interface ClaimAccountPayload {\n /** Creator account claiming the token */\n creator: string;\n /** Fee for claiming (usually \"0.000 HIVE\" for RC-based claims) */\n fee?: string;\n}\n\n/**\n * React Query mutation hook for claiming account creation tokens.\n *\n * This mutation broadcasts a claim_account operation to claim an account\n * creation token using Resource Credits (RC). The claimed token can later\n * be used to create a new account for free using the create_claimed_account\n * operation.\n *\n * @param username - The username claiming the account token (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates account cache to update pending_claimed_accounts count\n * - Updates account query data to set pending_claimed_accounts = 0 optimistically\n *\n * **Operation Details:**\n * - Uses native claim_account operation\n * - Fee: \"0.000 HIVE\" (uses RC instead of HIVE)\n * - Authority: Active key (required for claiming)\n *\n * **RC Requirements:**\n * - Requires sufficient Resource Credits (RC)\n * - RC amount varies based on network conditions\n * - Claiming without sufficient RC will fail\n *\n * **Use Case:**\n * - Claim tokens in advance when RC is available\n * - Create accounts later without paying HIVE fee\n * - Useful for onboarding services and apps\n *\n * @example\n * ```typescript\n * const claimMutation = useClaimAccount(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Claim account token using RC\n * claimMutation.mutate({\n * creator: 'alice',\n * fee: '0.000 HIVE'\n * });\n * ```\n */\nexport function useClaimAccount(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"claimAccount\"],\n username,\n ({ creator, fee = \"0.000 HIVE\" }) => [\n buildClaimAccountOp(creator, fee)\n ],\n async (_result: any, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(variables.creator),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildGrantPostingPermissionOp, type Authority } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface GrantPostingPermissionPayload {\n currentPosting: Authority;\n grantedAccount: string;\n weightThreshold: number;\n memoKey: string;\n jsonMetadata: string;\n}\n\nexport function useGrantPostingPermission(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"grant-posting-permission\"],\n username,\n (payload) => [\n buildGrantPostingPermissionOp(\n username!,\n payload.currentPosting,\n payload.grantedAccount,\n payload.weightThreshold,\n payload.memoKey,\n payload.jsonMetadata\n )\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildAccountCreateOp, buildCreateClaimedAccountOp, type AccountKeys } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface CreateAccountPayload {\n newAccountName: string;\n keys: AccountKeys;\n fee: string;\n /** If true, uses a claimed account token instead of paying the fee */\n useClaimed?: boolean;\n}\n\nexport function useCreateAccount(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"create\"],\n username,\n (payload) => [\n payload.useClaimed\n ? buildCreateClaimedAccountOp(username!, payload.newAccountName, payload.keys)\n : buildAccountCreateOp(username!, payload.newAccountName, payload.keys, payload.fee)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { parseAsset } from \"@/modules/core/utils\";\nimport { DynamicProps } from \"@/modules/core/types\";\nimport { FullAccount } from \"../types\";\nimport { calculateVPMana, calculateRCMana } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\n\nconst HIVE_VOTING_MANA_REGENERATION_SECONDS = 5 * 60 * 60 * 24; // 5 days\nconst HIVE_100_PERCENT = 10000;\nconst HIVE_VOTE_DUST_THRESHOLD = 50_000_000;\n\nfunction getEffectiveVests(account: FullAccount): number {\n const vesting = parseAsset(account.vesting_shares).amount;\n const received = parseAsset(account.received_vesting_shares).amount;\n const delegated = parseAsset(account.delegated_vesting_shares).amount;\n const withdrawRate = parseAsset(account.vesting_withdraw_rate).amount;\n const alreadyWithdrawn =\n (Number(account.to_withdraw) - Number(account.withdrawn)) / 1e6;\n const withdrawVests = Math.min(withdrawRate, alreadyWithdrawn);\n\n return vesting + received - delegated - withdrawVests;\n}\n\nfunction vestsToRshares(vests: number, votingPowerValue: number, votePerc: number): number {\n const vestingShares = vests * 1e6;\n const power = (votingPowerValue * votePerc) / 1e4 / 50 + 1;\n return (power * vestingShares) / 1e4;\n}\n\nfunction hasStableVoteHardfork(dynamicProps: DynamicProps): boolean {\n if (Number.isFinite(dynamicProps.lastHardfork)) {\n return dynamicProps.lastHardfork >= 28;\n }\n\n const [major = \"0\", minor = \"0\"] = (dynamicProps.currentHardforkVersion ?? \"0.0.0\").split(\".\");\n return Number(major) > 1 || (Number(major) === 1 && Number(minor) >= 28);\n}\n\nfunction stableVoteRshares(\n account: FullAccount,\n dynamicProps: DynamicProps,\n weight: number\n): number {\n const reserveRate =\n dynamicProps.votePowerReserveRate ||\n Number(dynamicProps.raw?.globalDynamic?.vote_power_reserve_rate ?? 0);\n\n if (!Number.isFinite(reserveRate) || reserveRate <= 0) {\n return 0;\n }\n\n const effectiveVests = getEffectiveVests(account);\n if (!Number.isFinite(effectiveVests) || effectiveVests <= 0) {\n return 0;\n }\n\n const vestingShares = effectiveVests * 1e6;\n const usedMana =\n Math.ceil(\n (vestingShares * weight * 60 * 60 * 24) /\n HIVE_100_PERCENT /\n (reserveRate * HIVE_VOTING_MANA_REGENERATION_SECONDS)\n );\n\n const mana = calculateVPMana(account);\n const currentMana = Math.min(mana.current_mana, mana.max_mana);\n\n if (!Number.isFinite(currentMana) || usedMana > currentMana) {\n return 0;\n }\n\n return Math.max(usedMana - HIVE_VOTE_DUST_THRESHOLD, 0);\n}\n\nexport function votingRshares(\n account: FullAccount,\n dynamicProps: DynamicProps,\n votingPowerValue: number,\n weight: number = 10000\n): number {\n if (!Number.isFinite(votingPowerValue) || !Number.isFinite(weight)) {\n return 0;\n }\n\n if (hasStableVoteHardfork(dynamicProps)) {\n return stableVoteRshares(account, dynamicProps, weight);\n }\n\n let totalVests = 0;\n try {\n totalVests = getEffectiveVests(account);\n if (!Number.isFinite(totalVests)) {\n return 0;\n }\n } catch {\n return 0;\n }\n\n return vestsToRshares(totalVests, votingPowerValue, weight);\n}\n\nexport function votingPower(account: FullAccount): number {\n const calc = calculateVPMana(account);\n return calc.percentage / 100;\n}\n\nexport function powerRechargeTime(power: number) {\n if (!Number.isFinite(power)) {\n throw new TypeError(\"Voting power must be a finite number\");\n }\n if (power < 0 || power > 100) {\n throw new RangeError(\"Voting power must be between 0 and 100\");\n }\n const missingPower = 100 - power;\n return (\n (missingPower * 100 * HIVE_VOTING_MANA_REGENERATION_SECONDS) / 10000\n );\n}\n\nexport function downVotingPower(account: FullAccount): number {\n const totalShares =\n parseFloat(account.vesting_shares) +\n parseFloat(account.received_vesting_shares) -\n parseFloat(account.delegated_vesting_shares);\n const elapsed = Math.floor(Date.now() / 1000) - account.downvote_manabar.last_update_time;\n const maxMana = (totalShares * 1000000) / 4;\n\n if (maxMana <= 0) {\n return 0;\n }\n\n let currentMana =\n parseFloat(account.downvote_manabar.current_mana.toString()) +\n (elapsed * maxMana) / HIVE_VOTING_MANA_REGENERATION_SECONDS;\n\n if (currentMana > maxMana) {\n currentMana = maxMana;\n }\n const currentManaPerc = (currentMana * 100) / maxMana;\n\n if (isNaN(currentManaPerc)) {\n return 0;\n }\n\n if (currentManaPerc > 100) {\n return 100;\n }\n return currentManaPerc;\n}\n\n/**\n * Rewards/stake coefficient, known on Hive as the KE ratio: every VEST ever paid out\n * to the account as curation rewards or as the vested half of an author payout, over\n * the VESTS it still holds and has not delegated away. Both sides are VESTS, so the\n * value is independent of the HIVE price and of the global VESTS/HP rate.\n *\n * Returns null when the account carries no undelegated stake, where the ratio is\n * undefined rather than zero.\n *\n * Limits worth repeating wherever this is displayed: `posting_rewards` counts only the\n * vested half of an author payout, the denominator ignores stake delegated TO the\n * account (so an account curating with received delegation scores high), and the value\n * climbs during a power-down because the numerator is frozen history.\n */\nexport function rewardsToStakeRatio(account: FullAccount): number | null {\n // Absent counters are unknown, not zero. A row that omits one (or a cache entry\n // dehydrated by an older build, which omits both) would otherwise produce a\n // confident but understated ratio, which is worse than showing nothing.\n const { curation_rewards: curation, posting_rewards: posting } = account;\n if (curation === undefined || posting === undefined) {\n return null;\n }\n\n const rewards = curation + posting;\n const ownVests =\n parseAsset(account.vesting_shares).amount -\n parseAsset(account.delegated_vesting_shares).amount;\n\n // The SDK's parseAsset hands back a raw parseFloat, so a malformed asset string\n // reaches here as NaN rather than 0. Both sides need the finite check.\n if (!Number.isFinite(rewards) || !Number.isFinite(ownVests) || ownVests <= 0) {\n return null;\n }\n\n return rewards / ownVests;\n}\n\nexport function rcPower(account: RCAccount): number {\n const calc = calculateRCMana(account);\n return calc.percentage / 100;\n}\n\nexport function votingValue(\n account: FullAccount,\n dynamicProps: DynamicProps,\n votingPowerValue: number,\n weight: number = 10000\n): number {\n if (!Number.isFinite(votingPowerValue) || !Number.isFinite(weight)) {\n return 0;\n }\n const { fundRecentClaims, fundRewardBalance, base, quote } = dynamicProps;\n\n if (\n !Number.isFinite(fundRecentClaims) ||\n !Number.isFinite(fundRewardBalance) ||\n !Number.isFinite(base) ||\n !Number.isFinite(quote)\n ) {\n return 0;\n }\n\n if (fundRecentClaims === 0 || quote === 0) {\n return 0;\n }\n\n const rShares = votingRshares(account, dynamicProps, votingPowerValue, weight);\n\n if (!Number.isFinite(rShares)) {\n return 0;\n }\n\n return (rShares / fundRecentClaims) * fundRewardBalance * (base / quote);\n}\n","import type { Operation } from \"../../hive-tx\";\n\n/**\n * Authority levels for Hive blockchain operations.\n * - posting: Social operations (voting, commenting, reblogging)\n * - active: Financial and account management operations\n * - owner: Critical security operations (key changes, account recovery)\n * - memo: Memo encryption/decryption (rarely used for signing)\n */\nexport type AuthorityLevel = 'posting' | 'active' | 'owner' | 'memo';\n\n/**\n * Maps operation types to their required authority level.\n *\n * This mapping is used to determine which key is needed to sign a transaction,\n * enabling smart auth fallback and auth upgrade UI.\n *\n * @remarks\n * - Most social operations (vote, comment, reblog) require posting authority\n * - Financial operations (transfer, withdraw) require active authority\n * - Account management operations require active authority\n * - Security operations (password change, account recovery) require owner authority\n * - custom_json requires dynamic detection based on required_auths vs required_posting_auths\n */\nexport const OPERATION_AUTHORITY_MAP: Record = {\n // Posting authority operations\n vote: 'posting',\n comment: 'posting',\n delete_comment: 'posting',\n comment_options: 'posting',\n claim_reward_balance: 'posting',\n\n // Active authority operations - Financial\n cancel_transfer_from_savings: 'active',\n collateralized_convert: 'active',\n convert: 'active',\n delegate_vesting_shares: 'active',\n recurrent_transfer: 'active',\n set_withdraw_vesting_route: 'active',\n transfer: 'active',\n transfer_from_savings: 'active',\n transfer_to_savings: 'active',\n transfer_to_vesting: 'active',\n withdraw_vesting: 'active',\n\n // Active authority operations - Market\n limit_order_create: 'active',\n limit_order_cancel: 'active',\n\n // Active authority operations - Account Management\n account_update: 'active',\n account_update2: 'active',\n claim_account: 'active',\n create_claimed_account: 'active',\n\n // Active authority operations - Governance\n account_witness_proxy: 'active',\n account_witness_vote: 'active',\n remove_proposal: 'active',\n update_proposal_votes: 'active',\n\n // Owner authority operations - Security & Account Recovery\n change_recovery_account: 'owner',\n request_account_recovery: 'owner',\n recover_account: 'owner',\n reset_account: 'owner',\n set_reset_account: 'owner',\n\n // Note: Some operations are handled separately via content inspection:\n // - custom_json: via getCustomJsonAuthority() - posting or active based on required_auths\n // - create_proposal/update_proposal: via getProposalAuthority() - typically active\n};\n\n/**\n * Determines authority required for a custom_json operation.\n *\n * Custom JSON operations can require either posting or active authority\n * depending on which field is populated:\n * - required_auths (active authority)\n * - required_posting_auths (posting authority)\n *\n * @param customJsonOp - The custom_json operation to inspect\n * @returns 'active' if requires active authority, 'posting' if requires posting authority\n *\n * @example\n * ```typescript\n * // Reblog operation (posting authority)\n * const reblogOp: Operation = ['custom_json', {\n * required_auths: [],\n * required_posting_auths: ['alice'],\n * id: 'reblog',\n * json: '...'\n * }];\n * getCustomJsonAuthority(reblogOp); // Returns 'posting'\n *\n * // Some active authority custom_json\n * const activeOp: Operation = ['custom_json', {\n * required_auths: ['alice'],\n * required_posting_auths: [],\n * id: 'some_active_op',\n * json: '...'\n * }];\n * getCustomJsonAuthority(activeOp); // Returns 'active'\n * ```\n */\nexport function getCustomJsonAuthority(customJsonOp: Operation): AuthorityLevel {\n const opType = customJsonOp[0];\n const payload = customJsonOp[1];\n\n if (opType !== 'custom_json') {\n throw new Error('Operation is not a custom_json operation');\n }\n\n // Type assertion for custom_json payload\n const customJson = payload as {\n required_auths?: string[];\n required_posting_auths?: string[];\n id: string;\n json: string;\n };\n\n // If required_auths is set and non-empty, needs active authority\n if (customJson.required_auths && customJson.required_auths.length > 0) {\n return 'active';\n }\n\n // If only required_posting_auths is set, needs posting authority\n if (customJson.required_posting_auths && customJson.required_posting_auths.length > 0) {\n return 'posting';\n }\n\n // Default to posting for custom_json (most common case)\n return 'posting';\n}\n\n/**\n * Determines authority required for a proposal operation.\n *\n * Proposal operations (create_proposal, update_proposal) typically require\n * active authority as they involve financial commitments and funding allocations.\n *\n * @param proposalOp - The proposal operation to inspect\n * @returns 'active' authority requirement\n *\n * @remarks\n * Unlike custom_json, proposal operations don't have explicit required_auths fields.\n * They always use the creator's authority, which defaults to active for financial\n * operations involving the DAO treasury.\n *\n * @example\n * ```typescript\n * const proposalOp: Operation = ['create_proposal', {\n * creator: 'alice',\n * receiver: 'bob',\n * subject: 'My Proposal',\n * permlink: 'my-proposal',\n * start: '2026-03-01T00:00:00',\n * end: '2026-04-01T00:00:00',\n * daily_pay: '100.000 HBD',\n * extensions: []\n * }];\n * getProposalAuthority(proposalOp); // Returns 'active'\n * ```\n */\nexport function getProposalAuthority(proposalOp: Operation): AuthorityLevel {\n const opType = proposalOp[0];\n\n if (opType !== 'create_proposal' && opType !== 'update_proposal') {\n throw new Error('Operation is not a proposal operation');\n }\n\n // Proposal operations require active authority for financial operations\n return 'active';\n}\n\n/**\n * Determines the required authority level for any operation.\n *\n * Uses the OPERATION_AUTHORITY_MAP for standard operations, and dynamic\n * detection for custom_json operations.\n *\n * @param op - The operation to check\n * @returns 'posting' or 'active' authority requirement\n *\n * @example\n * ```typescript\n * const voteOp: Operation = ['vote', { voter: 'alice', author: 'bob', permlink: 'post', weight: 10000 }];\n * getOperationAuthority(voteOp); // Returns 'posting'\n *\n * const transferOp: Operation = ['transfer', { from: 'alice', to: 'bob', amount: '1.000 HIVE', memo: '' }];\n * getOperationAuthority(transferOp); // Returns 'active'\n * ```\n */\nexport function getOperationAuthority(op: Operation): AuthorityLevel {\n const opType = op[0];\n\n // Special handling for custom_json - requires content inspection\n if (opType === 'custom_json') {\n return getCustomJsonAuthority(op);\n }\n\n // Special handling for proposal operations - requires content inspection\n if (opType === 'create_proposal' || opType === 'update_proposal') {\n return getProposalAuthority(op);\n }\n\n // Use mapping for standard operations, default to posting if unknown\n return OPERATION_AUTHORITY_MAP[opType] ?? 'posting';\n}\n\n/**\n * Determines the highest authority level required for a list of operations.\n *\n * Useful when broadcasting multiple operations together - the highest authority\n * level required by any operation determines what key is needed for the batch.\n *\n * Authority hierarchy: owner > active > posting > memo\n *\n * @param ops - Array of operations\n * @returns Highest authority level required ('owner', 'active', or 'posting')\n *\n * @example\n * ```typescript\n * const ops: Operation[] = [\n * ['vote', { ... }], // posting\n * ['comment', { ... }], // posting\n * ];\n * getRequiredAuthority(ops); // Returns 'posting'\n *\n * const mixedOps: Operation[] = [\n * ['comment', { ... }], // posting\n * ['transfer', { ... }], // active\n * ];\n * getRequiredAuthority(mixedOps); // Returns 'active'\n *\n * const securityOps: Operation[] = [\n * ['transfer', { ... }], // active\n * ['change_recovery_account', { ... }], // owner\n * ];\n * getRequiredAuthority(securityOps); // Returns 'owner'\n * ```\n */\nexport function getRequiredAuthority(ops: Operation[]): AuthorityLevel {\n let highestAuthority: AuthorityLevel = 'posting';\n\n for (const op of ops) {\n const authority = getOperationAuthority(op);\n\n // Owner is highest - return immediately\n if (authority === 'owner') {\n return 'owner';\n }\n\n // Active is higher than posting\n if (authority === 'active' && highestAuthority === 'posting') {\n highestAuthority = 'active';\n }\n\n // Memo is lowest (same level as posting)\n // If we see memo but only have posting, stick with posting\n }\n\n return highestAuthority;\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport type { Operation } from \"../../../hive-tx\";\nimport { isWif, broadcastOperations } from \"@/modules/core/hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useSignOperationByKey(username: string | undefined) {\n return useMutation({\n mutationKey: [\"operations\", \"sign\", username],\n mutationFn: ({\n operation,\n keyOrSeed,\n }: {\n operation: Operation;\n keyOrSeed: string;\n }) => {\n if (!username) {\n throw new Error(\"[Operations][Sign] – cannot sign op with anon user\");\n }\n\n let privateKey: PrivateKey;\n if (keyOrSeed.split(\" \").length === 12) {\n privateKey = PrivateKey.fromLogin(username, keyOrSeed, \"active\");\n } else if (isWif(keyOrSeed)) {\n privateKey = PrivateKey.fromString(keyOrSeed);\n } else {\n privateKey = PrivateKey.from(keyOrSeed);\n }\n\n return broadcastOperations(\n [operation],\n privateKey\n );\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport function useSignOperationByKeychain(\n username: string | undefined,\n auth?: AuthContextV2,\n keyType: \"owner\" | \"active\" | \"posting\" | \"memo\" = \"active\"\n) {\n return useMutation({\n mutationKey: [\"operations\", \"sign-keychain\", username],\n mutationFn: ({ operation }: { operation: Operation }) => {\n if (!username) {\n throw new Error(\n \"[SDK][Keychain] – cannot sign operation with anon user\"\n );\n }\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Keychain] – missing keychain broadcaster\");\n }\n\n return auth.adapter.broadcastWithKeychain(username, [operation], keyType);\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\n\nexport function useSignOperationByHivesigner(callbackUri = \"/\") {\n return useMutation({\n mutationKey: [\"operations\", \"sign-hivesigner\", callbackUri],\n mutationFn: async ({ operation }: { operation: Operation }) => {\n return hs.sendOperation(operation, { callback: callbackUri }, () => {});\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getChainPropertiesQueryOptions() {\n return queryOptions({\n queryKey: [\"operations\", \"chain-properties\"],\n queryFn: async () => {\n return await callRPC(\"condenser_api.get_chain_properties\", []);\n },\n });\n}\n","import { Fragment } from \"../types\";\n\n/**\n * Build the cache entry for an edited fragment.\n *\n * The `/private-api/fragments-update` endpoint returns only a minimal\n * acknowledgement, not the full fragment. Writing that response straight into\n * the query cache blanked out the edited snippet (the reported bug), so the\n * updated record is built from the values the user actually submitted, merged\n * over whatever fields the response does carry, on top of the existing cached\n * fragment (preserving id/created).\n */\nexport function applyFragmentUpdate(\n existing: Fragment,\n response: Partial | null | undefined,\n vars: { title: string; body: string }\n): Fragment {\n return {\n ...existing,\n ...(response ?? {}),\n title: vars.title,\n body: vars.body\n };\n}\n\n/**\n * Build the cache entry for a newly added fragment. Reaffirms the submitted\n * title/body over the server acknowledgement so a fresh snippet never renders\n * blank if the response omits them, while keeping any server-provided\n * id/timestamps.\n */\nexport function buildAddedFragment(\n response: Fragment | null | undefined,\n vars: { title: string; body: string }\n): Fragment {\n return {\n ...(response ?? {}),\n title: vars.title,\n body: vars.body\n } as Fragment;\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { buildAddedFragment } from \"../utils/fragment-cache-helpers\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useAddFragment(username: string, code: string | undefined) {\n return useMutation({\n mutationKey: [\"posts\", \"add-fragment\", username],\n mutationFn: async ({ title, body }: { title: string; body: string }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments-add\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n title,\n body,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n // Raw fetch resolves on 4xx/5xx, so a JSON error response would otherwise run\n // onSuccess and insert a bogus fragment into the cache. Throw instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to add fragment: ${response.status}`);\n }\n return response.json() as Promise;\n },\n onSuccess(response, variables) {\n const queryClient = getQueryClient();\n\n // Reaffirm the submitted title/body over the server acknowledgement so a\n // freshly added snippet never renders blank if the response omits them,\n // while keeping any server-provided id/timestamps.\n const newFragment = buildAddedFragment(response, variables);\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) => [newFragment, ...(data ?? [])]\n );\n\n // Update infinite query cache - add new fragment to first page\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page, index) =>\n index === 0\n ? { ...page, data: [newFragment, ...page.data] }\n : page\n ),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { applyFragmentUpdate } from \"../utils/fragment-cache-helpers\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useEditFragment(\n username: string,\n code: string | undefined\n) {\n return useMutation({\n mutationKey: [\"posts\", \"edit-fragment\", username],\n mutationFn: async ({\n fragmentId,\n title,\n body\n }: {\n fragmentId: string;\n title: string;\n body: string;\n }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments-update\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n id: fragmentId,\n title,\n body,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n // Raw fetch resolves on 4xx/5xx, so a JSON error response would otherwise run\n // onSuccess and overwrite the cached fragment with bogus data. Throw instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to update fragment: ${response.status}`);\n }\n return response.json() as Promise;\n },\n onSuccess(response, variables) {\n const queryClient = getQueryClient();\n\n // The /fragments-update endpoint returns a minimal acknowledgement, not the\n // full fragment, so writing the raw response into the cache blanked out the\n // edited snippet. Rebuild the fragment from the submitted values instead.\n const applyUpdate = (fragment: Fragment): Fragment =>\n applyFragmentUpdate(fragment, response, variables);\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) =>\n data?.map((fragment) =>\n fragment.id === variables.fragmentId ? applyUpdate(fragment) : fragment\n ) ?? []\n );\n\n // Update infinite query cache - update fragment in all pages\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.map((fragment) =>\n fragment.id === variables.fragmentId ? applyUpdate(fragment) : fragment\n ),\n })),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useRemoveFragment(\n username: string,\n code: string | undefined\n) {\n return useMutation({\n mutationKey: [\"posts\", \"remove-fragment\", username],\n mutationFn: async ({ fragmentId }: { fragmentId: string }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/fragments-delete\", {\n method: \"POST\",\n body: JSON.stringify({\n code,\n id: fragmentId,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n // getBoundFetch returns the raw fetch, so a 401/403/500 resolves rather than\n // rejects. Without this guard onSuccess would run and strip the fragment from\n // cache on a failed delete (false success). Throw so onError fires instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to delete fragment: ${response.status}`);\n }\n\n return response;\n },\n onSuccess(_data, variables) {\n const queryClient = getQueryClient();\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) => [...(data ?? [])].filter(({ id }) => id !== variables.fragmentId)\n );\n\n // Update infinite query cache - remove fragment from all pages\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.filter((fragment) => fragment.id !== variables.fragmentId),\n })),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { ApiNotification, ApiNotificationSetting } from \"@/modules/notifications\";\nimport { Draft, DraftMetadata } from \"@/modules/posts/types/draft\";\nimport { Schedule } from \"@/modules/posts/types/schedule\";\nimport { ApiResponse } from \"./types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nasync function parseJsonResponse(response: Response): Promise {\n if (!response.ok) {\n let errorData: unknown = undefined;\n try {\n errorData = await response.json();\n } catch {\n errorData = undefined;\n }\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = errorData;\n throw error;\n }\n\n // Handle empty responses gracefully (e.g., 204 No Content or empty body)\n const text = await response.text();\n if (!text || text.trim() === \"\") {\n return \"\" as T;\n }\n\n try {\n return JSON.parse(text) as T;\n } catch (e) {\n // If JSON parsing fails, return empty string as fallback\n console.warn(\"[SDK] Failed to parse JSON response:\", e, \"Response:\", text);\n return \"\" as T;\n }\n}\n\nexport async function signUp(\n username: string,\n email: string,\n referral: string,\n captchaToken?: string\n): Promise>> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/account-create\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username, email, referral, captcha_token: captchaToken }),\n });\n\n const data = await parseJsonResponse>(response);\n return { status: response.status, data };\n}\n\nexport async function subscribeEmail(\n email: string\n): Promise>> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/subscribe\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ email }),\n });\n\n const data = await parseJsonResponse>(response);\n return { status: response.status, data };\n}\n\nexport async function usrActivity(\n code: string | undefined,\n ty: number,\n bl: string | number = \"\",\n tx: string | number = \"\"\n): Promise {\n const params: {\n code: string | undefined;\n ty: number;\n bl?: string | number;\n tx?: string | number;\n } = { code, ty };\n\n if (bl) {\n params.bl = bl;\n }\n if (tx) {\n params.tx = tx;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/usr-activity\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(params),\n });\n\n await parseJsonResponse(response);\n}\n\nexport async function getNotifications(\n code: string | undefined,\n filter: string | null,\n since: string | null = null,\n user: string | null = null\n): Promise {\n const data: { code: string | undefined; filter?: string; since?: string; user?: string } = {\n code,\n };\n\n if (filter) {\n data.filter = filter;\n }\n\n if (since) {\n data.since = since;\n }\n\n if (user) {\n data.user = user;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/notifications\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function saveNotificationSetting(\n code: string | undefined,\n username: string,\n system: string,\n allows_notify: number,\n notify_types: number[],\n token: string\n): Promise {\n const data = {\n code,\n username,\n token,\n system,\n allows_notify,\n notify_types,\n };\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/register-device\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function getNotificationSetting(\n code: string | undefined,\n username: string,\n token: string\n): Promise {\n const data = { code, username, token };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/detail-device\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function markNotifications(\n code: string | undefined,\n id?: string\n): Promise> {\n const data: { code: string | undefined; id?: string } = {\n code,\n };\n if (id) {\n data.id = id;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/notifications/mark\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addImage(code: string | undefined, url: string): Promise> {\n const data = { code, url };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\n// Upload always targets the canonical Ecency image server, even when\n// the user has changed their viewing proxy (e.g. images.hive.blog).\n// i.ecency.com is the same imagehoster endpoint as images.ecency.com\n// (identical backend / token validation); it is the canonical host\n// because some ISPs SNI-filter the images.ecency.com hostname.\nconst UPLOAD_HOST = \"https://i.ecency.com\";\n\nexport async function uploadImage(\n file: File,\n token: string,\n signal?: AbortSignal\n): Promise<{ url: string }> {\n const fetchApi = getBoundFetch();\n const formData = new FormData();\n formData.append(\"file\", file);\n\n const response = await fetchApi(`${UPLOAD_HOST}/hs/${token}`, {\n method: \"POST\",\n body: formData,\n signal,\n });\n\n return parseJsonResponse<{ url: string }>(response);\n}\n\n/**\n * Upload image using posting key signature (/:username/:signature path).\n * Works with any compatible image server (images.ecency.com, images.hive.blog).\n * The signature is sha256(\"ImageSigningChallenge\" + fileData) signed with the posting key.\n */\nexport async function uploadImageWithSignature(\n file: File,\n username: string,\n signature: string,\n signal?: AbortSignal\n): Promise<{ url: string }> {\n const fetchApi = getBoundFetch();\n const formData = new FormData();\n formData.append(\"file\", file);\n\n const response = await fetchApi(`${CONFIG.imageHost}/${username}/${signature}`, {\n method: \"POST\",\n body: formData,\n signal,\n });\n\n return parseJsonResponse<{ url: string }>(response);\n}\n\nexport async function deleteImage(\n code: string | undefined,\n imageId: string\n): Promise> {\n const data = { code, id: imageId };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addDraft(\n code: string | undefined,\n title: string,\n body: string,\n tags: string,\n meta: DraftMetadata\n): Promise<{ drafts: Draft[] }> {\n const data = { code, title, body, tags, meta };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ drafts: Draft[] }>(response);\n}\n\nexport async function updateDraft(\n code: string | undefined,\n draftId: string,\n title: string,\n body: string,\n tags: string,\n meta: DraftMetadata\n): Promise<{ drafts: Draft[] }> {\n const data = { code, id: draftId, title, body, tags, meta };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-update\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ drafts: Draft[] }>(response);\n}\n\nexport async function deleteDraft(\n code: string | undefined,\n draftId: string\n): Promise> {\n const data = { code, id: draftId };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addSchedule(\n code: string | undefined,\n permlink: string,\n title: string,\n body: string,\n meta: Record,\n options: Record | null,\n schedule: string,\n reblog: boolean\n): Promise> {\n const data: Record = {\n code,\n permlink,\n title,\n body,\n meta,\n schedule,\n reblog,\n };\n\n if (options) {\n data.options = options;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function deleteSchedule(\n code: string | undefined,\n id: string\n): Promise> {\n const data = { code, id };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function moveSchedule(code: string | undefined, id: string): Promise {\n const data = { code, id };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-move\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function getPromotedPost(\n code: string | undefined,\n author: string,\n permlink: string\n): Promise<{ author: string; permlink: string } | \"\"> {\n const data = { code, author, permlink };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/promoted-post\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ author: string; permlink: string } | \"\">(response);\n}\n\nexport async function onboardEmail(\n username: string,\n email: string,\n friend: string\n): Promise> {\n const dataBody = {\n username,\n email,\n friend,\n };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/account-create-friend\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(dataBody),\n }\n );\n\n return parseJsonResponse>(response);\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addDraft } from \"@/modules/private-api/requests\";\nimport { DraftMetadata } from \"../types\";\n\nexport function useAddDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"add\", username],\n mutationFn: async ({\n title,\n body,\n tags,\n meta,\n }: {\n title: string;\n body: string;\n tags: string;\n meta: DraftMetadata;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for addDraft\");\n }\n return addDraft(code, title, body, tags, meta);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full drafts list from the response (API returns complete list)\n if (data?.drafts) {\n qc.setQueryData(QueryKeys.posts.drafts(username), data.drafts);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n }\n // Also invalidate the infinite query so the drafts list refetches\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { updateDraft } from \"@/modules/private-api/requests\";\nimport { DraftMetadata } from \"../types\";\n\nexport function useUpdateDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"update\", username],\n mutationFn: async ({\n draftId,\n title,\n body,\n tags,\n meta,\n }: {\n draftId: string;\n title: string;\n body: string;\n tags: string;\n meta: DraftMetadata;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for updateDraft\");\n }\n return updateDraft(code, draftId, title, body, tags, meta);\n },\n onSuccess: () => {\n onSuccess?.();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError,\n });\n}\n","import { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { deleteDraft } from \"@/modules/private-api/requests\";\nimport type { Draft } from \"../types\";\nimport type { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useDeleteDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"delete\", username],\n mutationFn: async ({ draftId }: { draftId: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteDraft\");\n }\n return deleteDraft(code, draftId);\n },\n onMutate: async ({ draftId }) => {\n if (!username) {\n return;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.posts.drafts(username);\n const infinitePrefix = QueryKeys.posts.draftsInfinite(username);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((d) => d._id !== draftId)\n );\n }\n\n const infiniteQueries = qc.getQueriesData>>({\n queryKey: infinitePrefix,\n });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((d) => d._id !== draftId),\n })),\n });\n }\n }\n\n return { previousList, previousInfinite };\n },\n onSuccess: () => {\n onSuccess?.();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError: (err, _variables, context) => {\n const qc = getQueryClient();\n if (context?.previousList) {\n qc.setQueryData(QueryKeys.posts.drafts(username), context.previousList);\n }\n if (context?.previousInfinite) {\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n }\n onError?.(err);\n },\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addSchedule } from \"@/modules/private-api/requests\";\n\nexport function useAddSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"add\", username],\n mutationFn: async ({\n permlink,\n title,\n body,\n meta,\n options,\n schedule,\n reblog,\n }: {\n permlink: string;\n title: string;\n body: string;\n meta: Record;\n options: Record | null;\n schedule: string;\n reblog: boolean;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for addSchedule\");\n }\n return addSchedule(code, permlink, title, body, meta, options, schedule, reblog);\n },\n onSuccess: () => {\n onSuccess?.();\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.posts.schedules(username),\n });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { deleteSchedule } from \"@/modules/private-api/requests\";\n\nexport function useDeleteSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"delete\", username],\n mutationFn: async ({ id }: { id: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteSchedule\");\n }\n return deleteSchedule(code, id);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full schedules list from the response (API returns complete list)\n if (data) {\n qc.setQueryData(QueryKeys.posts.schedules(username), data);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.schedules(username) });\n }\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { moveSchedule } from \"@/modules/private-api/requests\";\n\nexport function useMoveSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"move\", username],\n mutationFn: async ({ id }: { id: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for moveSchedule\");\n }\n return moveSchedule(code, id);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full schedules list from the response (API returns complete list)\n if (data) {\n qc.setQueryData(QueryKeys.posts.schedules(username), data);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.schedules(username) });\n }\n // Also invalidate drafts since moving a schedule creates a draft\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addImage } from \"@/modules/private-api/requests\";\n\n/**\n * Hook to add an image URL to the user's Ecency gallery\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful addition\n * @param onError - Optional callback on error\n *\n * @example\n * const addImageMutation = useAddImage(username, code);\n * addImageMutation.mutate({ url: 'https://...' });\n */\nexport function useAddImage(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"add\", username],\n mutationFn: async ({ url, code: nextCode }: { url: string; code?: string }) => {\n const effectiveCode = nextCode ?? code;\n\n if (!username || !effectiveCode) {\n throw new Error(\"[SDK][Posts] – missing auth for addImage\");\n }\n return addImage(effectiveCode, url);\n },\n onSuccess: () => {\n onSuccess?.();\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.posts.images(username),\n });\n },\n onError,\n });\n}\n","import { useMutation, type InfiniteData } from \"@tanstack/react-query\";\nimport { getQueryClient } from \"@/modules/core\";\nimport { deleteImage } from \"@/modules/private-api/requests\";\nimport type { UserImage } from \"../types\";\nimport type { WrappedResponse } from \"@/modules/core/types\";\n\n/**\n * Hook to delete an image from the user's Ecency gallery\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful deletion\n * @param onError - Optional callback on error\n *\n * @example\n * const deleteImageMutation = useDeleteImage(username, code);\n * deleteImageMutation.mutate({ imageId: '123' });\n */\nexport function useDeleteImage(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"delete\", username],\n mutationFn: async ({ imageId }: { imageId: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteImage\");\n }\n return deleteImage(code, imageId);\n },\n onSuccess: (_data, variables) => {\n onSuccess?.();\n const qc = getQueryClient();\n const { imageId } = variables;\n\n // Optimistic removal from regular cache\n qc.setQueryData(\n [\"posts\", \"images\", username],\n (prev) => prev?.filter((img) => img._id !== imageId)\n );\n\n // Optimistic removal from infinite cache pages\n qc.setQueriesData>>(\n { queryKey: [\"posts\", \"images\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.filter((img) => img._id !== imageId),\n })),\n };\n }\n );\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { uploadImage } from \"@/modules/private-api/requests\";\n\n/**\n * Hook to upload an image file to Ecency image hosting\n *\n * @param onSuccess - Optional callback on successful upload, receives { url: string }\n * @param onError - Optional callback on error\n *\n * Note: This hook uploads to Ecency's image server and requires a signature token.\n * The token should be generated using the user's posting key signature.\n *\n * @example\n * const uploadMutation = useUploadImage(\n * (data) => console.log('Uploaded:', data.url)\n * );\n * uploadMutation.mutate({ file, token });\n */\nexport function useUploadImage(\n onSuccess?: (data: { url: string }) => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"upload\"],\n mutationFn: async ({\n file,\n token,\n signal,\n }: {\n file: File;\n token: string;\n signal?: AbortSignal;\n }) => {\n return uploadImage(file, token, signal);\n },\n onSuccess,\n onError,\n });\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { Entry, EntryVote } from \"../types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\n\nfunction makeEntryPath(author: string, permlink: string) {\n return `/@${author}/${permlink}`;\n}\n\nfunction getEntryFromCache(\n author: string,\n permlink: string,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n return queryClient.getQueryData(\n QueryKeys.posts.entry(makeEntryPath(author, permlink))\n );\n}\n\nfunction setEntryInCache(entry: Entry, qc?: QueryClient) {\n const queryClient = qc ?? getQueryClient();\n queryClient.setQueryData(\n QueryKeys.posts.entry(makeEntryPath(entry.author, entry.permlink)),\n entry\n );\n}\n\nfunction mutateEntry(\n author: string,\n permlink: string,\n updater: (entry: Entry) => Entry,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n const path = makeEntryPath(author, permlink);\n const existing = queryClient.getQueryData(QueryKeys.posts.entry(path));\n if (!existing) return undefined;\n\n const updated = updater(existing);\n queryClient.setQueryData(QueryKeys.posts.entry(path), updated);\n return existing;\n}\n\n/**\n * SDK-level entry cache utilities. These operate on SDK cache keys\n * ([\"posts\", \"entry\", \"/@author/permlink\"]).\n *\n * Web layer can bridge these to its own QueryIdentifiers.ENTRY keys\n * during the migration period.\n */\nexport namespace EntriesCacheManagement {\n export function updateVotes(\n author: string,\n permlink: string,\n votes: EntryVote[],\n payout: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n active_votes: votes,\n stats: {\n ...(entry.stats || {\n gray: false,\n hide: false,\n flag_weight: 0,\n total_votes: 0,\n }),\n total_votes: votes.length,\n flag_weight: entry.stats?.flag_weight || 0,\n },\n total_votes: votes.length,\n payout,\n pending_payout_value: String(payout),\n }),\n qc\n );\n }\n\n export function updateReblogsCount(\n author: string,\n permlink: string,\n count: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n reblogs: count,\n }),\n qc\n );\n }\n\n export function updateRepliesCount(\n author: string,\n permlink: string,\n count: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n children: count,\n }),\n qc\n );\n }\n\n export function addReply(\n reply: Entry,\n parentAuthor: string,\n parentPermlink: string,\n qc?: QueryClient\n ) {\n mutateEntry(\n parentAuthor,\n parentPermlink,\n (entry) => ({\n ...entry,\n children: entry.children + 1,\n replies: [reply, ...entry.replies],\n }),\n qc\n );\n }\n\n export function updateEntries(entries: Entry[], qc?: QueryClient) {\n entries.forEach((entry) => setEntryInCache(entry, qc));\n }\n\n export function invalidateEntry(\n author: string,\n permlink: string,\n qc?: QueryClient\n ) {\n const queryClient = qc ?? getQueryClient();\n queryClient.invalidateQueries({\n queryKey: QueryKeys.posts.entry(makeEntryPath(author, permlink)),\n });\n }\n\n export function getEntry(\n author: string,\n permlink: string,\n qc?: QueryClient\n ): Entry | undefined {\n return getEntryFromCache(author, permlink, qc);\n }\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\nimport { EntriesCacheManagement } from \"../cache/entries-cache-management\";\n\n/**\n * Whether the cached active_votes list already reflects the broadcast vote:\n * the voter is present for a vote (weight !== 0) or absent for an unvote\n * (weight === 0). Used to avoid stacking the SDK's post-broadcast optimistic\n * update on top of a platform-level optimistic update applied at press time.\n */\nexport function isVoteAlreadyReflected(\n activeVotes: Array<{ voter: string }>,\n voter: string | undefined,\n weight: number\n): boolean {\n const hasVoterRecord = activeVotes.some((v) => v.voter === voter);\n return weight !== 0 ? hasVoterRecord : !hasVoterRecord;\n}\n\n/**\n * Payload for voting on a post or comment.\n */\nexport interface VotePayload {\n /** Author of the post/comment to vote on */\n author: string;\n /** Permlink of the post/comment to vote on */\n permlink: string;\n /** Vote weight (-10000 to 10000, where 10000 = 100% upvote, -10000 = 100% downvote) */\n weight: number;\n /** Optional estimated payout change for optimistic UI */\n estimated?: number;\n}\n\n/**\n * Post-broadcast optimistic cache update for a vote: replaces the voter's\n * active_votes record and bumps the payout by `estimated`. Skipped when the\n * cached entry already reflects this vote (voter present for a vote, absent\n * for an unvote): platforms with their own at-press optimistic layer (e.g.\n * the mobile app) have applied it by the time the broadcast resolves, and\n * stacking a second update here double-counts the payout and clobbers the\n * platform's richer vote record until the deferred invalidation.\n */\nexport function applyVoteCacheUpdate(\n username: string | undefined,\n variables: VotePayload,\n qc?: QueryClient\n): void {\n const entry = EntriesCacheManagement.getEntry(variables.author, variables.permlink, qc);\n if (\n !entry?.active_votes ||\n isVoteAlreadyReflected(entry.active_votes, username, variables.weight)\n ) {\n return;\n }\n const newVotes = [\n ...entry.active_votes.filter((v) => v.voter !== username),\n ...(variables.weight !== 0 ? [{ rshares: variables.weight, voter: username! }] : [])\n ];\n const newPayout = entry.payout + (variables.estimated ?? 0);\n EntriesCacheManagement.updateVotes(\n variables.author,\n variables.permlink,\n newVotes,\n newPayout,\n qc\n );\n}\n\n/**\n * React Query mutation hook for voting on posts and comments.\n *\n * This mutation broadcasts a vote operation to the Hive blockchain,\n * supporting upvotes (positive weight) and downvotes (negative weight).\n *\n * @param username - The username of the voter (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 120) if adapter.recordActivity is available\n * - Invalidates post cache to refetch updated vote data\n * - Invalidates voting power cache to show updated VP\n *\n * **Vote Weight:**\n * - 10000 = 100% upvote\n * - 0 = remove vote\n * - -10000 = 100% downvote\n *\n * @example\n * ```typescript\n * const voteMutation = useVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Upvote a post\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: 10000\n * });\n *\n * // Remove vote\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: 0\n * });\n *\n * // Downvote\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: -10000\n * });\n * ```\n *\n * @remarks\n * broadcastMode: async — Votes don't require block confirmation.\n * The vote is accepted into the mempool immediately; UI can optimistically update.\n */\nexport function useVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"vote\"],\n username,\n ({ author, permlink, weight }) => [\n buildVoteOp(username!, author, permlink, weight)\n ],\n async (result: any, variables) => {\n // Optimistic vote list + payout update (no-op when the cache already\n // reflects this vote — see applyVoteCacheUpdate).\n applyVoteCacheUpdate(username, variables);\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(120, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation — deferred for async broadcasts since onSuccess fires\n // at mempool acceptance before block inclusion.\n if (auth?.adapter?.invalidateQueries) {\n const doInvalidate = () => {\n auth.adapter!.invalidateQueries!([\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n QueryKeys.accounts.full(username)\n ]);\n };\n const mode = broadcastMode ?? 'async';\n if (mode === 'async') {\n setTimeout(doInvalidate, 4000);\n } else {\n doInvalidate();\n }\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys, getQueryClient } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildReblogOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { EntriesCacheManagement } from \"../cache/entries-cache-management\";\n\n/**\n * Payload for reblogging a post.\n */\nexport interface ReblogPayload {\n /** Original post author */\n author: string;\n /** Original post permlink */\n permlink: string;\n /** If true, removes the reblog instead of creating it */\n deleteReblog?: boolean;\n}\n\n/**\n * React Query mutation hook for reblogging posts.\n *\n * This mutation broadcasts a custom_json operation to reblog (or un-reblog)\n * a post to the user's blog feed.\n *\n * @param username - The username performing the reblog (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 130) if adapter.recordActivity is available\n * - Invalidates blog feed cache to show the reblogged post\n * - Invalidates post cache to update reblog status\n *\n * **Reblog vs Delete:**\n * - deleteReblog: false (default) - Creates a reblog\n * - deleteReblog: true - Removes an existing reblog\n *\n * @example\n * ```typescript\n * const reblogMutation = useReblog(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Reblog a post\n * reblogMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post'\n * });\n *\n * // Remove a reblog\n * reblogMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * deleteReblog: true\n * });\n * ```\n */\nexport function useReblog(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"reblog\"],\n username,\n ({ author, permlink, deleteReblog }) => [\n buildReblogOp(username!, author, permlink, deleteReblog ?? false)\n ],\n async (result: any, variables) => {\n // Optimistic reblog count update\n const entry = EntriesCacheManagement.getEntry(variables.author, variables.permlink);\n if (entry) {\n const newCount = Math.max(0, (entry.reblogs ?? 0) + (variables.deleteReblog ? -1 : 1));\n EntriesCacheManagement.updateReblogsCount(variables.author, variables.permlink, newCount);\n }\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(130, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation — deferred for async broadcasts since onSuccess fires\n // at mempool acceptance before block inclusion.\n const invalidate = () => {\n const qc = getQueryClient();\n qc.invalidateQueries({\n queryKey: QueryKeys.posts.accountPostsBlogPrefix(username!),\n });\n if (auth?.adapter?.invalidateQueries) {\n auth.adapter.invalidateQueries([\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n QueryKeys.posts.rebloggedBy(variables.author, variables.permlink),\n ]);\n }\n };\n const mode = broadcastMode ?? 'async';\n if (mode === 'async') {\n setTimeout(invalidate, 4000);\n } else {\n invalidate();\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\n/**\n * Beneficiary account and weight.\n */\nexport interface Beneficiary {\n /** Beneficiary account name */\n account: string;\n /** Beneficiary weight (10000 = 100%) */\n weight: number;\n}\n\n/**\n * Payload for creating a comment or post.\n */\nexport interface CommentPayload {\n /** Author of the comment/post */\n author: string;\n /** Permlink of the comment/post */\n permlink: string;\n /** Parent author (empty string for top-level posts) */\n parentAuthor: string;\n /** Parent permlink (category/tag for top-level posts) */\n parentPermlink: string;\n /** Title of the post (empty for comments) */\n title: string;\n /** Content body */\n body: string;\n /** JSON metadata object */\n jsonMetadata: Record;\n /**\n * Optional: set when this operation edits existing content rather than creating it.\n *\n * A `comment` operation is byte-identical for a create and an update, so only the\n * caller knows which it is. When set, no content activity is recorded. Activity\n * rewards content creation. Without this, an edit of content published elsewhere\n * is credited as content created here. Never broadcast.\n */\n isUpdate?: boolean;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"1000000.000 HBD\") */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n /** Beneficiaries array */\n beneficiaries?: Beneficiary[];\n };\n}\n\n/**\n * React Query mutation hook for creating posts and comments.\n *\n * This mutation broadcasts a comment operation (and optionally comment_options)\n * to create a new post or reply on the Hive blockchain.\n *\n * @param username - The username creating the comment/post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 100 for posts, 110 for comments) if adapter.recordActivity is\n * available, unless the payload sets `isUpdate`\n * - Invalidates feed caches to show the new content\n * - Invalidates parent post cache if this is a reply\n *\n * **Operations:**\n * - Always includes a comment operation\n * - Optionally includes comment_options operation for beneficiaries/rewards\n *\n * **Post vs Comment:**\n * - Post: parentAuthor = \"\", parentPermlink = category/tag\n * - Comment: parentAuthor = parent author, parentPermlink = parent permlink\n *\n * @example\n * ```typescript\n * const commentMutation = useComment(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Create a post\n * commentMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post-20260209',\n * parentAuthor: '',\n * parentPermlink: 'technology',\n * title: 'My Awesome Post',\n * body: 'This is the post content...',\n * jsonMetadata: {\n * tags: ['technology', 'hive'],\n * app: 'ecency/3.0.0'\n * },\n * options: {\n * beneficiaries: [\n * { account: 'ecency', weight: 500 }\n * ]\n * }\n * });\n *\n * // Create a comment\n * commentMutation.mutate({\n * author: 'bob',\n * permlink: 're-alice-my-awesome-post-20260209',\n * parentAuthor: 'alice',\n * parentPermlink: 'my-awesome-post-20260209',\n * title: '',\n * body: 'Great post!',\n * jsonMetadata: { app: 'ecency/3.0.0' }\n * });\n * ```\n */\n/**\n * Resolve which content activity a broadcast earns, or `null` for none.\n *\n * Content activity rewards publishing, so an update earns nothing: the `comment`\n * operation an edit broadcasts is indistinguishable from a create on chain, which\n * leaves the caller as the only party that can tell them apart. Without this, editing\n * a post first published on another frontend is credited here as a post.\n */\nexport function resolveContentActivityType(\n payload: Pick\n): 100 | 110 | null {\n if (payload.isUpdate) {\n return null;\n }\n\n return payload.parentAuthor ? 110 : 100;\n}\n\nexport function useComment(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"comment\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n payload.parentAuthor,\n payload.parentPermlink,\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n beneficiaries = []\n } = payload.options;\n\n const extensions: any[] = [];\n\n // Add beneficiaries extension if provided\n if (beneficiaries.length > 0) {\n // Sort beneficiaries alphabetically by account name (required by blockchain)\n const sortedBeneficiaries = [...beneficiaries].sort((a, b) =>\n a.account.localeCompare(b.account)\n );\n\n extensions.push([\n 0,\n {\n beneficiaries: sortedBeneficiaries.map(b => ({\n account: b.account,\n weight: b.weight\n }))\n }\n ]);\n }\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n extensions\n )\n );\n }\n\n return operations;\n },\n async (result: any, variables) => {\n // Determine if this is a post or comment\n const isPost = !variables.parentAuthor;\n const activityType = resolveContentActivityType(variables);\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (activityType !== null && auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(activityType, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation (always runs regardless of recordActivity outcome)\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username),\n QueryKeys.resourceCredits.account(username!)\n ];\n\n // If this is a reply, invalidate parent post and discussions\n if (!isPost) {\n // Invalidate parent entry\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n // Invalidate discussions (matches all sort orders)\n // Use partial key to match all sort order variants\n // For nested replies, use rootAuthor/rootPermlink to match the root post's discussions\n // Fall back to parentAuthor/parentPermlink for direct replies to posts\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n }\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { Entry } from \"../types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\n\n/**\n * Adds an optimistic entry to all discussions caches for the given root post.\n * Uses predicate matching to find all sort order variants.\n */\nexport function addOptimisticDiscussionEntry(\n entry: Entry,\n rootAuthor: string,\n rootPermlink: string,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n const queries = queryClient.getQueriesData({\n predicate: (query) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === rootAuthor &&\n key[3] === rootPermlink\n );\n },\n });\n\n for (const [queryKey, data] of queries) {\n if (data) {\n queryClient.setQueryData(queryKey, [entry, ...data]);\n }\n }\n}\n\n/**\n * Removes an entry from all discussions caches for the given root post.\n * Returns the previous state for rollback.\n */\nexport function removeOptimisticDiscussionEntry(\n author: string,\n permlink: string,\n rootAuthor: string,\n rootPermlink: string,\n qc?: QueryClient\n): Map {\n const queryClient = qc ?? getQueryClient();\n const snapshots = new Map();\n\n const queries = queryClient.getQueriesData({\n predicate: (query) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === rootAuthor &&\n key[3] === rootPermlink\n );\n },\n });\n\n for (const [queryKey, data] of queries) {\n if (data) {\n snapshots.set(queryKey, data);\n queryClient.setQueryData(\n queryKey,\n data.filter(\n (e) => e.author !== author || e.permlink !== permlink\n )\n );\n }\n }\n\n return snapshots;\n}\n\n/**\n * Restores discussion cache snapshots (for rollback on error).\n */\nexport function restoreDiscussionSnapshots(\n snapshots: Map,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n for (const [queryKey, data] of snapshots) {\n queryClient.setQueryData(queryKey, data);\n }\n}\n\n/**\n * Updates a specific entry in the SDK entry cache.\n * Returns the previous entry for rollback.\n */\nexport function updateEntryInCache(\n author: string,\n permlink: string,\n updates: Partial,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n const path = `/@${author}/${permlink}`;\n const previous = queryClient.getQueryData(QueryKeys.posts.entry(path));\n\n if (previous) {\n queryClient.setQueryData(QueryKeys.posts.entry(path), {\n ...previous,\n ...updates,\n });\n }\n\n return previous;\n}\n\n/**\n * Restores an entry in cache (for rollback on error).\n */\nexport function restoreEntryInCache(\n author: string,\n permlink: string,\n entry: Entry,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n const path = `/@${author}/${permlink}`;\n queryClient.setQueryData(QueryKeys.posts.entry(path), entry);\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildDeleteCommentOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport {\n removeOptimisticDiscussionEntry,\n restoreDiscussionSnapshots,\n} from \"../cache/discussions-cache-utils\";\nimport type { Entry } from \"../types\";\n\n/**\n * Payload for deleting a comment or post.\n */\nexport interface DeleteCommentPayload {\n /** Author of the comment/post to delete */\n author: string;\n /** Permlink of the comment/post to delete */\n permlink: string;\n /** Optional: Parent author (for cache invalidation of discussions) */\n parentAuthor?: string;\n /** Optional: Parent permlink (for cache invalidation of discussions) */\n parentPermlink?: string;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n}\n\n/**\n * React Query mutation hook for deleting posts and comments.\n *\n * This mutation broadcasts a delete_comment operation to the Hive blockchain.\n * Includes optimistic removal from discussions cache with rollback on error.\n *\n * @param username - The username deleting the comment/post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n */\nexport function useDeleteComment(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"deleteComment\"],\n username,\n ({ author, permlink }) => [\n buildDeleteCommentOp(author, permlink)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username)\n ];\n\n // If this is a reply, invalidate parent post and discussions\n if (variables.parentAuthor && variables.parentPermlink) {\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n }\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n {\n broadcastMode,\n // Optimistic removal: remove from discussions cache before broadcast\n onMutate: async (variables) => {\n const rootAuthor = variables.rootAuthor || variables.parentAuthor;\n const rootPermlink = variables.rootPermlink || variables.parentPermlink;\n\n if (rootAuthor && rootPermlink) {\n const snapshots = removeOptimisticDiscussionEntry(\n variables.author,\n variables.permlink,\n rootAuthor,\n rootPermlink\n );\n return { snapshots };\n }\n return {};\n },\n // Rollback on error: restore discussions cache\n onError: (_error, _variables, context) => {\n const { snapshots } = (context as { snapshots?: Map }) ?? {};\n if (snapshots) {\n restoreDiscussionSnapshots(snapshots);\n }\n },\n }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\n/**\n * Payload for creating a cross-post.\n */\nexport interface CrossPostPayload {\n /** Author of the cross-post (current user) */\n author: string;\n /** Permlink of the cross-post (usually: original-permlink-community-id) */\n permlink: string;\n /** Community ID to cross-post to (used as parent_permlink) */\n parentPermlink: string;\n /** Title of the cross-post (same as original) */\n title: string;\n /** Body of the cross-post (includes reference to original) */\n body: string;\n /** JSON metadata (must include original_author, original_permlink, tags, app) */\n jsonMetadata: Record;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"0.000 HBD\" for declined payout) */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n };\n}\n\n/**\n * React Query mutation hook for creating cross-posts.\n *\n * A cross-post is a special type of post that references an original post\n * and publishes it to a different community.\n *\n * @param username - The username creating the cross-post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates feed/blog caches to show the new cross-post\n *\n * **Operations:**\n * - Always includes a comment operation (with empty parent_author for top-level post)\n * - Optionally includes comment_options operation for rewards/beneficiaries\n *\n * **Metadata Requirements:**\n * The jsonMetadata must include:\n * - `original_author`: Author of the original post\n * - `original_permlink`: Permlink of the original post\n * - `tags`: Tags for the cross-post (typically [\"cross-post\"])\n * - `app`: Application identifier (e.g., \"ecency/3.0.0-vision\")\n *\n * @example\n * ```typescript\n * const crossPostMutation = useCrossPost(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Create a cross-post\n * crossPostMutation.mutate({\n * author: 'alice',\n * permlink: 'great-post-hive-123456',\n * parentPermlink: 'hive-123456', // community ID\n * title: 'Great Post',\n * body: 'This is a cross post of [@bob/great-post](/technology/@bob/great-post) by @alice.

Check this out!',\n * jsonMetadata: {\n * app: 'ecency/3.0.0-vision',\n * tags: ['cross-post'],\n * original_author: 'bob',\n * original_permlink: 'great-post'\n * },\n * options: {\n * maxAcceptedPayout: '0.000 HBD',\n * allowCurationRewards: false\n * }\n * });\n * ```\n */\nexport function useCrossPost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"cross-post\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation (empty parent_author for top-level post)\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n \"\", // empty parent_author for top-level post\n payload.parentPermlink, // community ID\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n } = payload.options;\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n [] // No beneficiaries for cross-posts\n )\n );\n }\n\n return operations;\n },\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username),\n // Invalidate target community feed so cross-post appears\n {\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"posts-ranked\" &&\n key[3] === variables.parentPermlink\n );\n }\n }\n ];\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\nimport type { Beneficiary } from \"./use-comment\";\n\n/**\n * Payload for updating a reply/comment.\n */\nexport interface UpdateReplyPayload {\n /** Author of the comment/post */\n author: string;\n /** Permlink of the comment/post being updated */\n permlink: string;\n /** Parent author */\n parentAuthor: string;\n /** Parent permlink */\n parentPermlink: string;\n /** Title (empty for comments) */\n title: string;\n /** Updated content body */\n body: string;\n /** Updated JSON metadata object */\n jsonMetadata: Record;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"1000000.000 HBD\") */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n /** Beneficiaries array */\n beneficiaries?: Beneficiary[];\n };\n}\n\n/**\n * React Query mutation hook for updating existing replies/comments.\n *\n * This mutation broadcasts a comment operation (and optionally comment_options)\n * to update an existing reply/comment on the Hive blockchain.\n *\n * @param username - The username updating the comment (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates parent post cache to reflect the updated comment\n * - Invalidates discussions cache (all sort orders)\n * - Invalidates RC cache (RC decreases after updating)\n *\n * **Operations:**\n * - Always includes a comment operation\n * - Optionally includes comment_options operation for beneficiaries/rewards\n *\n * **Important:**\n * - Updates use the same comment operation as creating new comments\n * - The blockchain identifies this as an update based on matching author/permlink\n * - Only the author can update their own content\n * - Content can only be updated before payout (within 7 days)\n *\n * @example\n * ```typescript\n * const updateReplyMutation = useUpdateReply(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Update a reply\n * updateReplyMutation.mutate({\n * author: 'alice',\n * permlink: 're-bob-my-post-20260209',\n * parentAuthor: 'bob',\n * parentPermlink: 'my-post-20260209',\n * title: '',\n * body: 'Updated comment content!',\n * jsonMetadata: {\n * tags: ['comment'],\n * app: 'ecency/3.0.0-vision'\n * },\n * rootAuthor: 'bob',\n * rootPermlink: 'my-post-20260209'\n * });\n * ```\n */\nexport function useUpdateReply(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"update-reply\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation (same operation for create and update)\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n payload.parentAuthor,\n payload.parentPermlink,\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n beneficiaries = []\n } = payload.options;\n\n const extensions: any[] = [];\n\n // Add beneficiaries extension if provided\n if (beneficiaries.length > 0) {\n // Sort beneficiaries alphabetically by account name (required by blockchain)\n const sortedBeneficiaries = [...beneficiaries].sort((a, b) =>\n a.account.localeCompare(b.account)\n );\n\n extensions.push([\n 0,\n {\n beneficiaries: sortedBeneficiaries.map(b => ({\n account: b.account,\n weight: b.weight\n }))\n }\n ]);\n }\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n extensions\n )\n );\n }\n\n return operations;\n },\n async (_result: any, variables) => {\n // No activity is recorded here. Activity rewards creating content. Every\n // broadcast from this mutation edits content that already exists.\n\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.resourceCredits.account(username!)\n ];\n\n // Invalidate parent entry\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n // Invalidate discussions (matches all sort orders)\n // Use partial key to match all sort order variants\n // For nested replies, use rootAuthor/rootPermlink to match the root post's discussions\n // Fall back to parentAuthor/parentPermlink for direct replies to posts\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildPromoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for promoting a post using Ecency Points.\n */\nexport interface PromotePayload {\n /** Post author */\n author: string;\n /** Post permlink */\n permlink: string;\n /** Promotion duration in days */\n duration: number;\n}\n\n/**\n * React Query mutation hook for promoting posts.\n *\n * This mutation broadcasts a custom_json operation to promote a post\n * using Ecency Points. The post will appear in promoted feeds for the\n * specified duration.\n *\n * @param username - The username promoting the post (required for broadcast, deducts points from this user)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates promoted posts cache to show newly promoted content\n * - Invalidates user points balance\n * - Invalidates post cache to update promotion status\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"ecency_promote\"\n * - JSON: {\"user\": \"username\", \"author\": \"postauthor\", \"permlink\": \"postpermlink\", \"duration\": 7}\n * - Authority: Active key (required for point spending)\n *\n * **Cost:**\n * - Costs Ecency Points based on duration\n * - User must have sufficient points balance\n *\n * @example\n * ```typescript\n * const promoteMutation = usePromote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Promote a post for 7 days\n * promoteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-great-post',\n * duration: 7\n * });\n * ```\n */\nexport function usePromote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"ecency\", \"promote\"],\n username,\n ({ author, permlink, duration }) => [\n buildPromoteOp(username!, author, permlink, duration)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n // Invalidate promoted posts feed\n [...QueryKeys.posts._promotedPrefix],\n // Invalidate user points balance\n [...QueryKeys.points._prefix(username!)],\n // Invalidate specific post cache to update promotion status\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport type ValidatePostCreatingOptions = {\n delays?: number[];\n};\n\nconst DEFAULT_VALIDATE_POST_DELAYS = [3000, 3000, 3000];\n\nconst delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));\n\nasync function getContent(author: string, permlink: string): Promise {\n return callRPC(\"condenser_api.get_content\", [\n author,\n permlink,\n ]) as Promise;\n}\n\nexport async function validatePostCreating(\n author: string,\n permlink: string,\n attempts = 0,\n options?: ValidatePostCreatingOptions\n) {\n const delays = options?.delays ?? DEFAULT_VALIDATE_POST_DELAYS;\n\n let response: Entry | undefined;\n try {\n response = await getContent(author, permlink);\n } catch (e) {\n response = undefined;\n }\n\n if (response || attempts >= delays.length) {\n return;\n }\n\n const waitMs = delays[attempts];\n if (waitMs > 0) {\n await delay(waitMs);\n }\n\n return validatePostCreating(author, permlink, attempts + 1, options);\n}\n","export * from \"./use-record-activity\";\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\ntype ActivityType =\n // Editor related\n | \"post-created\"\n | \"post-updated\"\n | \"post-scheduled\"\n | \"draft-created\"\n | \"video-published\"\n\n // Legacy editor related\n | \"legacy-post-created\"\n | \"legacy-post-updated\"\n | \"legacy-post-scheduled\"\n | \"legacy-draft-created\"\n | \"legacy-video-published\"\n\n // Perks related\n | \"perks-points-by-qr\"\n | \"perks-account-boost\"\n | \"perks-promote\"\n | \"perks-boost-plus\"\n | \"points-claimed\"\n | \"spin-rolled\"\n\n // Signup related\n | \"signed-up-with-wallets\"\n | \"signed-up-with-email\";\n\nexport interface RecordActivityOptions {\n url?: string;\n domain?: string;\n}\n\n/**\n * Get current location info safely (works in browser and Node.js)\n * Returns empty strings in non-browser environments\n */\nfunction getLocationInfo(): { url: string; domain: string } {\n if (typeof window !== \"undefined\" && window.location) {\n return {\n url: window.location.href,\n domain: window.location.host,\n };\n }\n return { url: \"\", domain: \"\" };\n}\n\nexport function useRecordActivity(\n username: string | undefined,\n activityType: ActivityType,\n options?: RecordActivityOptions\n) {\n return useMutation({\n mutationKey: [\"analytics\", activityType],\n mutationFn: async () => {\n if (!activityType) {\n throw new Error(\"[SDK][Analytics] – no activity type provided\");\n }\n const fetchApi = getBoundFetch();\n\n // Use provided values or auto-detect from browser environment\n // Falls back to empty strings in non-browser environments (Node.js, React Native, etc.)\n const locationInfo = getLocationInfo();\n const url = options?.url ?? locationInfo.url;\n const domain = options?.domain ?? locationInfo.domain;\n\n try {\n await fetchApi(CONFIG.plausibleHost + \"/api/event\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n name: activityType,\n url,\n domain,\n props: {\n username,\n },\n }),\n });\n } catch {\n // Analytics is fire-and-forget - network failures, ad blockers,\n // and CORS issues should not bubble up as user-facing errors\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { LeaderBoardDuration, LeaderBoardItem } from \"../types\";\n\nexport function getDiscoverLeaderboardQueryOptions(duration: LeaderBoardDuration) {\n return queryOptions({\n queryKey: [\"analytics\", \"discover-leaderboard\", duration],\n queryFn: async ({ signal }) => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/leaderboard/${duration}`,\n { signal }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch leaderboard: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { CurationDuration, CurationItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getDiscoverCurationQueryOptions(duration: CurationDuration) {\n return queryOptions({\n queryKey: [\"analytics\", \"discover-curation\", duration],\n queryFn: async ({ signal }) => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/curation/${duration}`,\n { signal }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch curation data: ${response.status}`);\n }\n\n const data = (await response.json()) as CurationItem[];\n\n // Fetch account data for efficiency calculation\n const accounts = data.map((item) => item.account);\n const accountsResponse = await callRPC(\"condenser_api.get_accounts\", [accounts]);\n\n // Calculate efficiency for each curator\n for (let index = 0; index < accountsResponse.length; index++) {\n const element = accountsResponse[index];\n const curator = data[index];\n\n // Convert Asset to string if needed\n const vestingShares = typeof element.vesting_shares === 'string'\n ? element.vesting_shares\n : element.vesting_shares.toString();\n const receivedVestingShares = typeof element.received_vesting_shares === 'string'\n ? element.received_vesting_shares\n : element.received_vesting_shares.toString();\n const delegatedVestingShares = typeof element.delegated_vesting_shares === 'string'\n ? element.delegated_vesting_shares\n : element.delegated_vesting_shares.toString();\n const vestingWithdrawRate = typeof element.vesting_withdraw_rate === 'string'\n ? element.vesting_withdraw_rate\n : element.vesting_withdraw_rate.toString();\n\n const effectiveVest: number =\n parseFloat(vestingShares) +\n parseFloat(receivedVestingShares) -\n parseFloat(delegatedVestingShares) -\n parseFloat(vestingWithdrawRate);\n // `hp` is the reward in Hive Power; the denominator stays in VESTS, which\n // is what the ranking has always compared. Every curator is scaled the\n // same way, so the ordering is unaffected by the unit mismatch.\n curator.efficiency = curator.hp / effectiveVest;\n }\n\n // Sort by efficiency descending\n data.sort((a: CurationItem, b: CurationItem) => b.efficiency - a.efficiency);\n\n return data;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { PageStatsResponse } from \"../types\";\n\n/**\n * Get page statistics from the private analytics API\n *\n * @param url - URL to get stats for\n * @param dimensions - Dimensions to query (default: [])\n * @param metrics - Metrics to query (default: [\"visitors\", \"pageviews\", \"visit_duration\"])\n * @param dateRange - Date range for the query (e.g. \"day\", \"7d\", \"30d\", \"all\")\n */\nexport function getPageStatsQueryOptions(\n url: string,\n dimensions: string[] = [],\n metrics: string[] = [\"visitors\", \"pageviews\", \"visit_duration\"],\n dateRange?: string\n) {\n // Sort arrays to ensure stable query keys regardless of input order\n const sortedDimensions = [...dimensions].sort();\n const sortedMetrics = [...metrics].sort();\n\n return queryOptions({\n queryKey: [\"analytics\", \"page-stats\", url, sortedDimensions, sortedMetrics, dateRange],\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/api/stats\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n metrics,\n url: encodeURIComponent(url),\n dimensions,\n date_range: dateRange,\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch page stats: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!url,\n // Analytics data should always be fresh - users expect current stats when changing range\n staleTime: 0,\n });\n}\n","/**\n * 3Speak takes an 11% beneficiary share on posts that embed one of its videos.\n *\n * This lives in the SDK because the rule is a payout contract that both the web app and the\n * mobile app have to apply identically. It was previously duplicated in each, which meant a\n * change to the weight, or to what counts as an embed, could land on one platform and not the\n * other and silently misroute revenue.\n */\n\n/** A beneficiary route as it appears in `comment_options`. */\nexport interface ThreeSpeakBeneficiaryRoute {\n account: string;\n weight: number;\n src?: string;\n}\n\nexport const THREESPEAK_BENEFICIARY_ACCOUNT = \"threespeakfund\";\n\n/** Beneficiary weight in basis points: 1100 = 11%. */\nexport const THREESPEAK_BENEFICIARY_WEIGHT = 1100;\n\n/**\n * Whether the body embeds a 3Speak video.\n *\n * Matches an actual embed url (e.g. `https://play.3speak.tv/embed?v=user/id`), not a plain\n * text mention of \"3speak.tv/embed\", which would otherwise attach an 11% route to a post that\n * merely talks about 3Speak.\n *\n * `3speak.tv` must be the host, either bare or under dot-delimited subdomains. The previous\n * `[a-z.]*` prefix also matched a lookalike domain such as `fake3speak.tv`, which would have\n * routed 11% of a user's rewards to threespeakfund for a video 3Speak never hosted. Matching\n * is case-insensitive because hostnames are, and a missed match means the route is silently\n * not attached rather than anything failing loudly.\n *\n * Note this requires an `/embed` path segment. The embed url is not built locally, it comes\n * back from 3Speak on upload, so if that shape ever changes this predicate stops recognising\n * it and the route is silently not attached.\n */\nexport function hasThreeSpeakEmbed(body: string): boolean {\n return /https?:\\/\\/([a-z0-9-]+\\.)*3speak\\.tv\\/embed[?/]/i.test(body);\n}\n\n/**\n * Ensures the 3Speak beneficiary is present, at the correct weight, when the body embeds a\n * 3Speak video. Other beneficiaries are preserved and the input is never mutated. Returns the\n * original array reference untouched when there is nothing to change, so callers can use it as\n * a cheap equality check.\n */\nexport function enforceThreeSpeakBeneficiary(\n beneficiaries: T[],\n body: string\n): (T | ThreeSpeakBeneficiaryRoute)[] {\n if (!hasThreeSpeakEmbed(body)) {\n return beneficiaries;\n }\n\n const existing = beneficiaries.find((b) => b.account === THREESPEAK_BENEFICIARY_ACCOUNT);\n\n if (existing && existing.weight === THREESPEAK_BENEFICIARY_WEIGHT) {\n return beneficiaries;\n }\n\n if (existing) {\n return beneficiaries.map((b) =>\n b.account === THREESPEAK_BENEFICIARY_ACCOUNT\n ? { ...b, weight: THREESPEAK_BENEFICIARY_WEIGHT }\n : b\n );\n }\n\n return [\n ...beneficiaries,\n { account: THREESPEAK_BENEFICIARY_ACCOUNT, weight: THREESPEAK_BENEFICIARY_WEIGHT }\n ];\n}\n\n/** Whether a beneficiary entry is the 3Speak route, which the UI locks from editing. */\nexport function isThreeSpeakBeneficiary(account: string): boolean {\n return account === THREESPEAK_BENEFICIARY_ACCOUNT;\n}\n","export * from \"./get-account-token-query-options\";\nexport * from \"./get-account-videos-query-options\";\n","export * from \"./get-decode-memo-query-options\";\n","import { queryOptions } from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\n\nexport function getDecodeMemoQueryOptions(\n username: string,\n memo: string,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"hivesigner\", \"decode-memo\", username],\n queryFn: async () => {\n if (accessToken) {\n const hsClient = new hs.Client({\n accessToken,\n });\n return hsClient.decode(memo);\n }\n },\n });\n}\n","import * as queries from \"./queries\";\n\nconst HiveSignerIntegration = {\n queries,\n};\n\nexport { HiveSignerIntegration };\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { HiveSignerIntegration } from \"../../hivesigner\";\nimport { getBoundFetch, getQueryClient } from \"@/modules/core\";\n\nexport function getAccountTokenQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"3speak\", \"authenticate\", username],\n enabled: !!username && !!accessToken,\n queryFn: async () => {\n if (!username || !accessToken) {\n throw new Error(\"[SDK][Integrations][3Speak] – anon user\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://studio.3speak.tv/mobile/login?username=${username}&hivesigner=true`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n const memoQueryOptions =\n HiveSignerIntegration.queries.getDecodeMemoQueryOptions(\n username,\n (await response.json()).memo,\n accessToken\n );\n await getQueryClient().prefetchQuery(memoQueryOptions);\n const { memoDecoded } = getQueryClient().getQueryData(\n memoQueryOptions.queryKey\n );\n\n return memoDecoded.replace(\"#\", \"\");\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ThreeSpeakVideo } from \"../types\";\nimport { getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { getAccountTokenQueryOptions } from \"./get-account-token-query-options\";\n\nexport function getAccountVideosQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"3speak\", \"videos\", username],\n enabled: !!username && !!accessToken,\n queryFn: async () => {\n if (!username || !accessToken) {\n throw new Error(\"[SDK][Integrations][3Speak] – anon user\");\n }\n\n const tokenQueryOptions = getAccountTokenQueryOptions(\n username,\n accessToken\n );\n\n await getQueryClient().prefetchQuery(tokenQueryOptions);\n const token = getQueryClient().getQueryData(tokenQueryOptions.queryKey);\n if (!token) {\n throw new Error(\"[SDK][Integrations][3Speak] – missing account token\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://studio.3speak.tv/mobile/api/my-videos`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Bearer ${token}`,\n },\n }\n );\n return (await response.json()) as ThreeSpeakVideo[];\n },\n });\n}\n","export * from \"./types\";\nexport * from \"./functions\";\nimport * as queries from \"./queries\";\n\nconst ThreeSpeakIntegration = {\n queries,\n};\n\nexport { ThreeSpeakIntegration };\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getBoundFetch } from \"@/modules/core\";\n\nexport function getHivePoshLinksQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"integrations\", \"hiveposh\", \"links\", username],\n retry: false, // Don't retry on user not found errors\n queryFn: async () => {\n try {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://hiveposh.com/api/v0/linked-accounts/${username}`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n // Handle 400 error when user is not registered on HivePosh\n if (response.status === 400) {\n const errorData = await response.json().catch(() => ({}));\n // Silently return null for \"User Not Connected\" errors\n if (errorData?.message === \"User Not Connected\") {\n return null;\n }\n }\n\n if (!response.ok) {\n return null;\n }\n\n const data = await response.json();\n\n return {\n twitter: {\n username: data.twitter_username,\n profile: data.twitter_profile,\n },\n reddit: {\n username: data.reddit_username,\n profile: data.reddit_profile,\n },\n } satisfies Record<\n \"twitter\" | \"reddit\",\n { username: string; profile: string }\n >;\n } catch (err) {\n // Silently handle all HivePosh API errors\n return null;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch } from \"@/modules/core\";\n\nexport interface StatsResponse {\n results: [\n {\n metrics: number[];\n dimensions: string[];\n },\n ];\n query: {\n site_id: string;\n metrics: string[];\n date_range: string[];\n filters: string[];\n };\n}\ninterface UseStatsQueryOptions {\n url: string;\n dimensions?: string[];\n metrics?: string[];\n /**\n * Which dimension the `url` is matched against. `event:page` (default) matches\n * any visit that viewed the page; `visit:entry_page` matches only visits that\n * landed on it. The API route validates this against an allow-list.\n */\n filterBy?: \"event:page\" | \"visit:entry_page\";\n /**\n * Plausible `date_range`. Pass a tuple `[from, to]` (ISO `YYYY-MM-DD`) to scope\n * the query — e.g. a post's creation date through today. Scoping is essential:\n * ClickHouse orders events by `(site_id, toDate(timestamp), …)` and partitions\n * by month, so a bounded range prunes to a few granules instead of scanning the\n * whole history. Omitting it falls back to the route default (`\"all\"`), which on\n * a high-traffic site is a multi-second full scan. Plausible also accepts the\n * relative keywords `\"day\"`, `\"7d\"`, `\"30d\"`, `\"all\"`.\n */\n dateRange?: string | [string, string];\n enabled?: boolean;\n}\n\nexport function getStatsQueryOptions({\n url,\n dimensions = [],\n metrics = [\"visitors\", \"pageviews\", \"visit_duration\"],\n filterBy = \"event:page\",\n dateRange,\n enabled = true,\n}: UseStatsQueryOptions) {\n return queryOptions({\n queryKey: [\"integrations\", \"plausible\", url, dimensions, metrics, filterBy, dateRange],\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(`${CONFIG.privateApiHost}/api/stats`, {\n method: \"POST\",\n body: JSON.stringify({\n metrics,\n url: encodeURIComponent(url),\n dimensions,\n filterBy,\n // Only forward a range when set, so the route keeps owning the default.\n ...(dateRange ? { date_range: dateRange } : {}),\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n // The proxy route returns 5xx (504/502) with an empty body on a Plausible\n // timeout/transport error, and Plausible itself can return a 4xx error JSON.\n // Without this guard those parse into an object with no `results`, and the UI\n // silently renders 0 — indistinguishable from a real zero. Throw instead so\n // React Query surfaces the error and retries.\n if (!response.ok) {\n throw new Error(`Failed to fetch Plausible stats: ${response.status}`);\n }\n\n return (await response.json()) as StatsResponse;\n },\n enabled: !!url && enabled,\n // Stats queries are now date-scoped and cheap; a single retry rides out a\n // transient slow scan without re-introducing the all-time pile-up.\n retry: 1,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getRcStatsQueryOptions() {\n return queryOptions({\n queryKey: [\"resource-credits\", \"stats\"],\n queryFn: async () => {\n const response = await callRPC(\"rc_api.get_rc_stats\", {});\n return response.rc_stats;\n },\n });\n}\n","import { callRPC } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getAccountRcQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"resource-credits\", \"account\", username],\n queryFn: async (): Promise => {\n const result = await callRPC(\"rc_api.find_rc_accounts\", {\n accounts: [username],\n });\n return result.rc_accounts;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { RcResourceParams } from \"../types/resource-params\";\n\n/**\n * Curve coefficients and sizing constants used to price resource usage.\n *\n * These only change at a hardfork, so the entry is kept for the session:\n * `gcTime: Infinity` is the one value that schedules no gc timer at all, so it\n * does not hold a request's query cache open on the server the way a long\n * finite window would.\n *\n * `staleTime` stays bounded on purpose. Making it infinite too would mean a\n * long-lived session keeps pricing with pre-hardfork coefficients forever,\n * quietly producing wrong RC estimates with no way to recover short of a\n * reload. A day is long enough that this is effectively never refetched, and\n * short enough that a hardfork corrects itself.\n */\nexport function getRcResourceParamsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.resourceCredits.resourceParams(),\n staleTime: 24 * 60 * 60 * 1000,\n gcTime: Infinity,\n queryFn: async () => (await callRPC(\"rc_api.get_resource_params\", {})) as RcResourceParams\n });\n}\n","/** Shape returned by `rc_api.get_resource_params`. Numbers arrive as strings. */\nexport interface RcPriceCurveParams {\n coeff_a: string | number;\n coeff_b: string | number;\n shift: string | number;\n}\n\nexport interface RcResourceDynamicsParams {\n resource_unit: string | number;\n budget_per_time_unit: string | number;\n pool_eq: string | number;\n max_pool_size: string | number;\n}\n\nexport interface RcResourceParamEntry {\n resource_dynamics_params: RcResourceDynamicsParams;\n price_curve_params: RcPriceCurveParams;\n}\n\n/**\n * Per-operation and per-transaction sizing constants. Only the members this\n * module needs are declared; the node returns many more.\n */\nexport interface RcSizeInfo {\n resource_state_bytes: {\n comment_base_size: number;\n comment_permlink_char_size: number;\n comment_beneficiaries_member_size: number;\n vote_size: number;\n transaction_base_size: number;\n [key: string]: number;\n };\n resource_execution_time: {\n comment_time: number;\n comment_options_time: number;\n vote_time: number;\n transaction_time: number;\n verify_authority_time: number;\n [key: string]: number;\n };\n [key: string]: Record;\n}\n\nexport interface RcResourceParams {\n resource_params: Record;\n size_info: RcSizeInfo;\n}\n\n/**\n * Resource order is consensus-defined (`HIVE_RC_NUM_RESOURCE_TYPES`) and the\n * `pool`, `share` and `budget` arrays in rc_stats are indexed by it.\n */\nexport const RC_RESOURCE_NAMES = [\n \"resource_history_bytes\",\n \"resource_new_accounts\",\n \"resource_market_bytes\",\n \"resource_state_bytes\",\n \"resource_execution_time\"\n] as const;\n\nexport type RcResourceName = (typeof RC_RESOURCE_NAMES)[number];\n\nexport interface RcCostBreakdown {\n resource: RcResourceName;\n usage: number;\n cost: number;\n}\n","import { utf8ByteLength, varintByteLength } from \"@/modules/core/utf8\";\nimport {\n RC_RESOURCE_NAMES,\n type RcCostBreakdown,\n type RcPriceCurveParams,\n type RcResourceName,\n type RcResourceParams,\n type RcSizeInfo\n} from \"../types/resource-params\";\nimport type { RcStats } from \"../types/stats\";\n\n/**\n * What the chain actually charges for publishing a comment, rather than the\n * network-average cost of an average comment.\n *\n * The average is a poor guide for posts: it is dominated by short replies,\n * while a long post is charged mostly on `history_bytes`, which is the\n * serialized transaction size. A real case: an account holding 21.3B RC was\n * told it could afford 17 posts, then a 46,620-byte post was rejected needing\n * 23.3B RC, more than that account's entire maximum.\n *\n * This is a direct port of `resource_credits::compute_cost` and the\n * `comment_operation` arm of `count_resources` from hive, so it tracks what\n * the node does instead of approximating it. Verified against a real\n * rejection: usage reproduces exactly and total cost lands within 0.3%, the\n * residual coming from `share` being published rounded to four digits.\n */\n\n/**\n * Fixed transaction header: ref_block_num(2) + ref_block_prefix(4) +\n * expiration(4) + the extensions varint(1).\n */\nconst TRANSACTION_HEADER_BYTES = 11;\n/** Compact signature, 65 bytes each. */\nconst SIGNATURE_BYTES = 65;\n/** asset = amount int64(8) + precision(1) + symbol(7). */\nconst ASSET_BYTES = 16;\n\nconst big = (v: string | number): bigint => BigInt(typeof v === \"string\" ? v : Math.trunc(v));\n\n/**\n * Port of `resource_credits::compute_cost` (libraries/chain/rc/rc_utility.cpp).\n *\n * BigInt is required, not stylistic: `coeff_a` is ~1.05e19, well past\n * Number.MAX_SAFE_INTEGER, so float arithmetic loses the low bits and the\n * result drifts.\n */\nexport function computeResourceCost(\n curve: RcPriceCurveParams,\n pool: number,\n resourceCount: number,\n regenShare: number\n): number {\n if (resourceCount <= 0 || regenShare <= 0) {\n return 0;\n }\n\n const coeffA = big(curve.coeff_a);\n const coeffB = big(curve.coeff_b);\n const shift = big(curve.shift);\n\n // The node shifts before multiplying by the resource count, because\n // regen * coeff_a already risks overflowing 128 bits. Order matters.\n let num = (big(regenShare) * coeffA) >> shift;\n num += 1n;\n num *= big(resourceCount);\n\n const denom = coeffB + (pool > 0 ? big(pool) : 0n);\n if (denom === 0n) {\n return 0;\n }\n\n return Number(num / denom + 1n);\n}\n\nexport interface CommentResourceUsageInput {\n /** Byte length of the serialized transaction. */\n transactionBytes: number;\n permlinkLength: number;\n /** Signatures on the transaction; a normal post carries one. */\n signatures?: number;\n /**\n * Beneficiary count on the companion comment_options, when publish appends\n * one. The chain counts resources for every operation in the transaction,\n * not just the comment.\n */\n beneficiaries?: number;\n hasCommentOptions?: boolean;\n}\n\n/**\n * Port of the `comment_operation` and `comment_options_operation` arms of\n * `count_resources` (libraries/chain/rc/resource_count.cpp). Reproduces the\n * chain's numbers exactly, see the spec.\n */\nexport function countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength,\n signatures = 1,\n beneficiaries = 0,\n hasCommentOptions = false\n }: CommentResourceUsageInput,\n sizeInfo: RcSizeInfo\n): Record {\n const state = sizeInfo.resource_state_bytes;\n const exec = sizeInfo.resource_execution_time;\n\n return {\n resource_history_bytes: transactionBytes,\n resource_new_accounts: 0,\n resource_market_bytes: 0,\n resource_state_bytes:\n state.comment_base_size +\n state.comment_permlink_char_size * permlinkLength +\n state.transaction_base_size +\n // comment_payout_beneficiaries is visited from comment_options\n state.comment_beneficiaries_member_size * beneficiaries,\n resource_execution_time:\n exec.comment_time +\n exec.transaction_time +\n exec.verify_authority_time * signatures +\n (hasCommentOptions ? exec.comment_options_time : 0)\n };\n}\n\nexport interface CommentLike {\n author: string;\n permlink: string;\n parent_author: string;\n parent_permlink: string;\n title: string;\n body: string;\n json_metadata: string;\n}\n\n\n/** A beneficiary route as it appears in comment_options extensions. */\nexport interface BeneficiaryRoute {\n account: string;\n weight: number;\n}\n\n/**\n * The comment_options operation publish appends when the author sets\n * beneficiaries or a non-default reward split.\n */\nexport interface CommentOptionsLike {\n beneficiaries?: BeneficiaryRoute[];\n}\n\n/** Serialized bytes of one string field: its varint length plus its bytes. */\nconst stringFieldBytes = (value: string): number => {\n const length = utf8ByteLength(value);\n return varintByteLength(length) + length;\n};\n\nconst commentOperationBytes = (op: CommentLike): number =>\n 1 + // operation variant id\n stringFieldBytes(op.parent_author) +\n stringFieldBytes(op.parent_permlink) +\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n stringFieldBytes(op.title) +\n stringFieldBytes(op.body) +\n stringFieldBytes(op.json_metadata);\n\nconst commentOptionsBytes = (op: CommentLike, options: CommentOptionsLike): number => {\n const beneficiaries = options.beneficiaries ?? [];\n let bytes =\n 1 + // operation variant id\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n ASSET_BYTES + // max_accepted_payout\n 2 + // percent_hbd\n 2; // allow_votes + allow_curation_rewards\n\n bytes += varintByteLength(beneficiaries.length > 0 ? 1 : 0);\n if (beneficiaries.length > 0) {\n bytes += 1 + varintByteLength(beneficiaries.length); // extension variant id + route count\n beneficiaries.forEach((route) => {\n bytes += stringFieldBytes(route.account) + 2; // weight is uint16\n });\n }\n return bytes;\n};\n\nexport interface CommentTransactionInput {\n op: CommentLike;\n /** Present when publish appends comment_options for beneficiaries or rewards. */\n options?: CommentOptionsLike;\n signatures?: number;\n}\n\n/**\n * Serialized size of the transaction that will carry this comment.\n *\n * This models Hive's binary encoding rather than approximating it: a fixed\n * header, one varint-prefixed field per string, and 65 bytes per signature.\n * Verified byte-exact against eight real transactions read back with\n * `get_transaction_hex`, including one carrying comment_options.\n */\nexport function estimateCommentTransactionBytes({\n op,\n options,\n signatures = 1\n}: CommentTransactionInput): number {\n const operations = [commentOperationBytes(op)];\n if (options) {\n operations.push(commentOptionsBytes(op, options));\n }\n\n return (\n TRANSACTION_HEADER_BYTES +\n varintByteLength(operations.length) +\n operations.reduce((sum, bytes) => sum + bytes, 0) +\n varintByteLength(signatures) +\n SIGNATURE_BYTES * signatures\n );\n}\n\nexport interface EstimateCommentRcCostInput {\n op: CommentLike;\n /** Companion comment_options, when the author set beneficiaries or rewards. */\n options?: CommentOptionsLike;\n rcParams: RcResourceParams | undefined;\n rcStats: Pick | undefined;\n signatures?: number;\n}\n\nexport interface CommentRcCostEstimate {\n /** False until both queries have resolved; callers must not warn on this. */\n ready: boolean;\n cost: number;\n transactionBytes: number;\n breakdown: RcCostBreakdown[];\n}\n\nconst EMPTY: CommentRcCostEstimate = {\n ready: false,\n cost: 0,\n transactionBytes: 0,\n breakdown: []\n};\n\n/** Total RC the chain will charge to broadcast this comment. */\nexport function estimateCommentRcCost({\n op,\n options,\n rcParams,\n rcStats,\n signatures = 1\n}: EstimateCommentRcCostInput): CommentRcCostEstimate {\n if (!rcParams?.resource_params || !rcParams.size_info || !rcStats?.pool || !rcStats.share) {\n return EMPTY;\n }\n\n const transactionBytes = estimateCommentTransactionBytes({ op, options, signatures });\n const usage = countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength: utf8ByteLength(op.permlink),\n signatures,\n beneficiaries: options?.beneficiaries?.length ?? 0,\n hasCommentOptions: !!options\n },\n rcParams.size_info\n );\n\n const regen = Number(rcStats.regen);\n let cost = 0;\n const breakdown: RcCostBreakdown[] = [];\n\n RC_RESOURCE_NAMES.forEach((name, index) => {\n const entry = rcParams.resource_params[name];\n const pool = Number(rcStats.pool[index] ?? 0);\n const share = Number(rcStats.share[index] ?? 0);\n if (!entry || share <= 0) {\n return;\n }\n\n // `usage` is scaled by the resource unit before pricing. It is 1 for the\n // resources a comment touches, but market bytes and new accounts are not.\n const scaled = usage[name] * Number(entry.resource_dynamics_params.resource_unit ?? 1);\n // rc_stats publishes `share` as weight/divisor scaled to 10,000. Kept in\n // BigInt: regen is ~2.4e12 and the product is past the safe-integer range\n // for larger shares.\n const regenShare = Number((BigInt(regen) * BigInt(share)) / 10000n);\n const resourceCost = computeResourceCost(entry.price_curve_params, pool, scaled, regenShare);\n\n cost += resourceCost;\n breakdown.push({ resource: name, usage: scaled, cost: resourceCost });\n });\n\n return { ready: true, cost, transactionBytes, breakdown };\n}\n","import {\n RC_RESOURCE_NAMES,\n type RcCostBreakdown,\n type RcResourceName,\n type RcResourceParams\n} from \"../types/resource-params\";\nimport type { RcStats } from \"../types/stats\";\nimport { computeResourceCost } from \"./estimate-comment-rc-cost\";\n\nexport type RcResourceUsage = Record;\n\nexport interface RcPricedUsage {\n cost: number;\n breakdown: RcCostBreakdown[];\n}\n\n/**\n * Turns per-resource usage into an RC cost.\n *\n * This is the single pricing path. Every RC figure the app shows, the publish\n * warning, the comment warning, the vote warning and the credits tooltip, goes\n * through here, so they cannot disagree with each other or with the chain.\n */\nexport function priceRcUsage(\n usage: RcResourceUsage,\n rcParams: RcResourceParams,\n rcStats: Pick\n): RcPricedUsage {\n const regen = Number(rcStats.regen);\n let cost = 0;\n const breakdown: RcCostBreakdown[] = [];\n\n RC_RESOURCE_NAMES.forEach((name, index) => {\n const entry = rcParams.resource_params[name];\n const pool = Number(rcStats.pool[index] ?? 0);\n const share = Number(rcStats.share[index] ?? 0);\n if (!entry || share <= 0) {\n return;\n }\n\n const scaled = usage[name] * Number(entry.resource_dynamics_params.resource_unit ?? 1);\n // rc_stats publishes `share` as weight/divisor scaled to 10,000. Kept in\n // BigInt: regen is ~2.4e12 and the product leaves the safe-integer range.\n const regenShare = Number((BigInt(regen) * BigInt(share)) / 10000n);\n const resourceCost = computeResourceCost(entry.price_curve_params, pool, scaled, regenShare);\n\n cost += resourceCost;\n breakdown.push({ resource: name, usage: scaled, cost: resourceCost });\n });\n\n return { cost, breakdown };\n}\n","import { utf8ByteLength, varintByteLength } from \"@/modules/core/utf8\";\nimport type { RcResourceName, RcSizeInfo } from \"../types/resource-params\";\nimport type { RcResourceUsage } from \"./price-rc-usage\";\n\n/**\n * Ports of the per-operation arms of `count_resources`\n * (hive/libraries/chain/rc/resource_count.cpp).\n *\n * Every operation charges three things: the serialized transaction size as\n * history_bytes, a per-operation state footprint, and execution time. Only the\n * middle two differ per operation, which is why they live together here.\n */\n\n/** Fixed header: ref_block_num(2) + ref_block_prefix(4) + expiration(4) + extensions varint(1). */\nexport const TRANSACTION_HEADER_BYTES = 11;\nexport const SIGNATURE_BYTES = 65;\n\nexport const stringFieldBytes = (value: string): number => {\n const length = utf8ByteLength(value);\n return varintByteLength(length) + length;\n};\n\nconst emptyUsage = (): RcResourceUsage => ({\n resource_history_bytes: 0,\n resource_new_accounts: 0,\n resource_market_bytes: 0,\n resource_state_bytes: 0,\n resource_execution_time: 0\n});\n\nexport interface VoteLike {\n voter: string;\n author: string;\n permlink: string;\n}\n\n/** Serialized size of a transaction carrying a single vote. */\nexport function estimateVoteTransactionBytes(op: VoteLike, signatures = 1): number {\n const operationBytes =\n 1 + // operation variant id\n stringFieldBytes(op.voter) +\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n 2; // weight, int16\n\n return (\n TRANSACTION_HEADER_BYTES +\n varintByteLength(1) +\n operationBytes +\n varintByteLength(signatures) +\n SIGNATURE_BYTES * signatures\n );\n}\n\n/**\n * A vote's footprint is fixed: `vote_size` state bytes and `vote_time`\n * execution time, regardless of the post being voted on.\n */\nexport function countVoteResourceUsage(\n { transactionBytes, signatures = 1 }: { transactionBytes: number; signatures?: number },\n sizeInfo: RcSizeInfo\n): RcResourceUsage {\n const state = sizeInfo.resource_state_bytes;\n const exec = sizeInfo.resource_execution_time;\n\n return {\n ...emptyUsage(),\n resource_history_bytes: transactionBytes,\n resource_state_bytes: state.vote_size + state.transaction_base_size,\n resource_execution_time:\n exec.vote_time + exec.transaction_time + exec.verify_authority_time * signatures\n };\n}\n\n/** Resource names, re-exported so callers do not reach into the types module. */\nexport type { RcResourceName };\n","import { calculateRCMana } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\nimport type { RcStats } from \"../types/stats\";\nimport type { RcResourceParams } from \"../types/resource-params\";\nimport { priceRcUsage } from \"./price-rc-usage\";\nimport {\n countVoteResourceUsage,\n estimateVoteTransactionBytes,\n type VoteLike\n} from \"./count-operation-usage\";\nimport {\n countCommentResourceUsage,\n estimateCommentTransactionBytes,\n type CommentLike,\n type CommentOptionsLike\n} from \"./estimate-comment-rc-cost\";\n\n/**\n * Operations the RC pre-check can estimate. Mirrors the keys exposed by\n * `rc_api.get_rc_stats` (see {@link RcStats}[\"ops\"]).\n */\nexport type RcPrecheckOperation = keyof RcStats[\"ops\"];\n\n/** The operation about to be broadcast, when the caller has it. */\nexport type RcPrecheckPayload =\n | { kind: \"comment\"; op: CommentLike; options?: CommentOptionsLike }\n | { kind: \"vote\"; op: VoteLike };\n\nexport interface RcPrecheckInput {\n /** From `getAccountRcQueryOptions(username)` -> rcAccounts[0]. */\n rcAccount: RCAccount | null | undefined;\n /** From `getRcStatsQueryOptions()`. */\n rcStats: RcStats | null | undefined;\n /** The operation the user is about to broadcast. */\n operation: RcPrecheckOperation;\n /**\n * From `getRcResourceParamsQueryOptions()`. Required for an exact estimate;\n * without it the result is not ready rather than silently approximate.\n */\n rcParams?: RcResourceParams | null;\n /**\n * The actual operation about to be broadcast. Supplying it is what makes the\n * estimate exact, because cost is dominated by the serialized transaction\n * size. Without it a minimal operation of that type is priced instead, which\n * is a lower bound: it can miss a marginal case but never invents one.\n */\n payload?: RcPrecheckPayload;\n /**\n * What to price when no payload is supplied.\n *\n * - `\"minimal\"` (default) prices the smallest operation of that type. It is\n * a lower bound, so a pre-submit warning is never invented for an\n * operation that would have succeeded.\n * - `\"average\"` prices the network average the chain publishes. Right for\n * \"how many of these can I afford\" displays, where there is no specific\n * operation in hand and the smallest conceivable one would flatter the\n * count.\n */\n fallback?: \"minimal\" | \"average\";\n /**\n * Safety multiplier applied to the operation cost when deciding\n * whether the broadcast will \"likely fail\". Actual on-chain cost varies with\n * network load, so we keep headroom. Defaults to 1.2.\n */\n buffer?: number;\n}\n\nexport interface RcPrecheckResult {\n /** Both inputs were available, so the estimate is meaningful. */\n ready: boolean;\n /** Current RC mana of the account. */\n currentMana: number;\n /** Maximum RC mana of the account. */\n maxMana: number;\n /**\n * RC cost of the operation itself.\n *\n * Named `avgCost` for backwards compatibility; it is no longer an average.\n * @deprecated prefer `cost`.\n */\n avgCost: number;\n /** RC cost of the operation, computed the way the chain computes it. */\n cost: number;\n /** Serialized transaction size, the dominant term for a comment. */\n transactionBytes: number;\n /** Average cost padded by `buffer`. */\n estimatedCost: number;\n /** `currentMana` is below the padded estimate -> broadcast likely fails. */\n willLikelyFail: boolean;\n /** RC shortfall vs the padded estimate (0 when not failing). */\n deficit: number;\n /** Roughly how many such operations the account can still afford. */\n remaining: number;\n}\n\nconst EMPTY: RcPrecheckResult = {\n ready: false,\n currentMana: 0,\n maxMana: 0,\n avgCost: 0,\n cost: 0,\n transactionBytes: 0,\n estimatedCost: 0,\n willLikelyFail: false,\n deficit: 0,\n remaining: 0,\n};\n\n/**\n * Pure, client-side estimate of whether an account has enough Resource Credits\n * to broadcast an operation, used to warn the user BEFORE they submit instead\n * of failing afterwards with the chain's \"Please wait to transact\" error.\n *\n * Costs are computed the way the chain computes them, from the actual\n * operation, not from the network-wide average. The average is dominated by\n * short replies and badly misleads on posts: it once told an account holding\n * 21.3B RC that it could afford 17 posts, and the next post it tried needed\n * 23.3B.\n *\n * Still a hint, never a hard gate: the buffer covers pool drift between the\n * estimate and the broadcast, and the publish/comment/vote action must stay\n * non-blocking.\n */\nexport function estimateRcPrecheck({\n rcAccount,\n rcStats,\n rcParams,\n operation,\n payload,\n fallback = \"minimal\",\n buffer = 1.2,\n}: RcPrecheckInput): RcPrecheckResult {\n if (!rcAccount || !rcStats?.ops) {\n return EMPTY;\n }\n\n const { current_mana: currentMana, max_mana: maxMana } = calculateRCMana(rcAccount);\n\n const priced = priceOperation(operation, payload, fallback, rcParams, rcStats);\n if (!priced) {\n // Nothing to price against: reporting \"ready\" here would be a silent\n // all-clear, which is the one answer a pre-check must never invent.\n return { ...EMPTY, currentMana, maxMana };\n }\n\n const { cost, transactionBytes } = priced;\n const safeBuffer = Number.isFinite(buffer) && buffer > 0 ? buffer : 1.2;\n const estimatedCost = cost * safeBuffer;\n const willLikelyFail = currentMana < estimatedCost;\n\n return {\n ready: true,\n currentMana,\n maxMana,\n avgCost: cost,\n cost,\n transactionBytes,\n estimatedCost,\n willLikelyFail,\n deficit: willLikelyFail ? Math.ceil(estimatedCost - currentMana) : 0,\n remaining: Math.floor(currentMana / cost),\n };\n}\n\n/**\n * Prices whichever operation the caller is about to broadcast.\n *\n * Comments and votes are the two operations whose cost swings with what the\n * user wrote, so they are priced from the payload, and pricing them needs the\n * curve parameters. Every other operation the type advertises (transfer,\n * custom_json, ...) is fixed-shape and takes the network average the chain\n * publishes, which needs nothing else.\n *\n * When no payload is supplied a minimal operation is priced. That is\n * deliberately a lower bound: it can miss a marginal case, but it never warns\n * about one that would have succeeded.\n *\n * Returns null when the answer would have to be invented, so the caller\n * reports \"not ready\" rather than a zero-cost all-clear.\n */\nfunction priceOperation(\n operation: RcPrecheckOperation,\n payload: RcPrecheckPayload | undefined,\n fallback: \"minimal\" | \"average\",\n rcParams: RcResourceParams | null | undefined,\n rcStats: RcStats\n): { cost: number; transactionBytes: number } | null {\n const average = averageCost(rcStats, operation);\n const pricedFromPayload =\n operation === \"comment_operation\" || operation === \"vote_operation\";\n\n // The average is a number the node already returned. It needs no curve\n // parameters, so a caller pricing a transfer must not be blocked waiting on\n // them, which is how every operation outside these two is priced.\n if (!pricedFromPayload || (!payload && fallback === \"average\")) {\n return average;\n }\n\n // Asked to price a real comment or vote without the inputs to do it. The\n // honest answer is \"not ready\": falling back to the average here is exactly\n // what told an account holding 21.3B RC it could afford 17 more posts.\n if (!rcParams?.resource_params || !rcParams.size_info || !rcStats.pool || !rcStats.share) {\n return null;\n }\n\n const stats = { pool: rcStats.pool, regen: rcStats.regen, share: rcStats.share };\n\n if (operation === \"vote_operation\") {\n const op: VoteLike = payload?.kind === \"vote\" ? payload.op : MINIMAL_VOTE;\n const transactionBytes = estimateVoteTransactionBytes(op);\n const usage = countVoteResourceUsage({ transactionBytes }, rcParams.size_info);\n return { cost: priceRcUsage(usage, rcParams, stats).cost, transactionBytes };\n }\n\n const op: CommentLike = payload?.kind === \"comment\" ? payload.op : MINIMAL_COMMENT;\n const options = payload?.kind === \"comment\" ? payload.options : undefined;\n const transactionBytes = estimateCommentTransactionBytes({ op, options });\n const usage = countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength: op.permlink.length,\n beneficiaries: options?.beneficiaries?.length ?? 0,\n hasCommentOptions: !!options\n },\n rcParams.size_info\n );\n return { cost: priceRcUsage(usage, rcParams, stats).cost, transactionBytes };\n}\n\n/** The network average the chain publishes for an operation, when it has one. */\nfunction averageCost(\n rcStats: RcStats,\n operation: RcPrecheckOperation\n): { cost: number; transactionBytes: number } | null {\n const cost = rcStats.ops[operation]?.avg_cost;\n return typeof cost === \"number\" && cost > 0 ? { cost, transactionBytes: 0 } : null;\n}\n\n/** Smallest realistic operations, used only when the caller has no payload yet. */\nconst MINIMAL_COMMENT: CommentLike = {\n author: \"aaaaaaaaaa\",\n permlink: \"aaaaaaaaaaaaaaaaaaaa\",\n parent_author: \"\",\n parent_permlink: \"hive-100000\",\n title: \"\",\n body: \"\",\n json_metadata: \"{}\"\n};\n\nconst MINIMAL_VOTE: VoteLike = {\n voter: \"aaaaaaaaaa\",\n author: \"aaaaaaaaaa\",\n permlink: \"aaaaaaaaaaaaaaaaaaaa\"\n};\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { GetGameStatus } from \"../types\";\n\nexport function getGameStatusCheckQueryOptions(\n username: string | undefined,\n code: string | undefined,\n gameType: \"spin\"\n) {\n return queryOptions({\n queryKey: [\"games\", \"status-check\", gameType, username],\n enabled: !!username && !!code,\n queryFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Games] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/get-game\",\n {\n method: \"POST\",\n body: JSON.stringify({\n game_type: gameType,\n code,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n return (await response.json()) as GetGameStatus;\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { GameClaim } from \"../types\";\nimport { useRecordActivity } from \"@/modules/analytics/mutations\";\n\n/**\n * POST a single game claim and return the parsed JSON body.\n *\n * A failed post-game comes back from the edge as an HTML gateway page (a 502 was\n * the trail on ECENCY-NEXT-1FCJ), and `response.json()` on that throws a bare\n * `SyntaxError` naming neither the endpoint nor the cause. Check the status and\n * the content type first, then fail with a STABLE, low-cardinality message\n * (content type + status, never the raw body) so these group as a single Sentry\n * issue instead of fragmenting on every distinct error page.\n *\n * Exported for unit testing; the hook below wraps it.\n */\nexport async function gameClaimRequest(\n code: string,\n gameType: \"spin\",\n key: string\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/post-game\",\n {\n method: \"POST\",\n body: JSON.stringify({\n game_type: gameType,\n code,\n key,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n // Media types are case-insensitive; normalise once and reuse in every branch.\n const contentType = (response.headers.get(\"content-type\") ?? \"\")\n .split(\";\")[0]\n .trim()\n .toLowerCase();\n const body = await response.text();\n\n if (!response.ok) {\n // Only fold a short JSON error body into the message; an HTML gateway page\n // (e.g. 502/503) would otherwise fragment the Sentry group per distinct page.\n const detail =\n body && contentType.includes(\"json\") ? `: ${body.slice(0, 200)}` : \"\";\n throw new Error(\n `[SDK][Games] – failed with status ${response.status}${detail}`\n );\n }\n\n if (!contentType.includes(\"json\")) {\n throw new Error(\n `[SDK][Games] – expected JSON but received \"${contentType || \"empty\"}\" response (status ${response.status})`\n );\n }\n\n try {\n return JSON.parse(body) as GameClaim;\n } catch {\n throw new Error(\n `[SDK][Games] – malformed JSON response (status ${response.status})`\n );\n }\n}\n\nexport function useGameClaim(\n username: string | undefined,\n code: string | undefined,\n gameType: \"spin\",\n key: string\n) {\n const { mutateAsync: recordActivity } = useRecordActivity(\n username,\n \"spin-rolled\"\n );\n\n return useMutation({\n mutationKey: [\"games\", \"post\", gameType, username],\n mutationFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Games] – missing auth\");\n }\n\n return gameClaimRequest(code, gameType, key);\n },\n onSuccess() {\n recordActivity();\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { QuestsResponse } from \"../types\";\n\n/**\n * Read-only daily/weekly/monthly quest progress for a user. Aggregates the existing\n * points ledger (no auth required — same sensitivity as `/private-api/points`).\n */\nexport function getQuestsQueryOptions(username: string | undefined) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.quests.status(name),\n enabled: !!name,\n queryFn: async () => {\n if (!name) {\n throw new Error(\"[SDK][Quests] – username wasn't provided\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/quests\",\n {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ username: name }),\n },\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch quests: ${response.status}`);\n }\n\n return (await response.json()) as QuestsResponse;\n },\n staleTime: 30000,\n refetchOnMount: true,\n });\n}\n","/**\n * Shared quest catalog — the single source of truth for which quests exist, their\n * encouraging goals, copy keys and icon hints. Lives in the SDK so the web and mobile\n * clients render an identical, harmonized set. The backend (`/private-api/quests`)\n * returns raw progress + the reward `cap`; this catalog layers the presentation.\n *\n * `goal` is an *encouraging, reachable* daily target and is intentionally independent of\n * the backend reward `cap` (the point at which the existing reward decays to ~0). It is\n * tunable here without any backend change.\n */\n\nexport type QuestTier = \"daily\" | \"weekly\" | \"monthly\";\n\nexport interface QuestCatalogEntry {\n id: string;\n tier: QuestTier;\n /** encouraging, reachable target for the period (tunable, not the reward cap) */\n goal: number;\n /** i18n key suffix; clients resolve e.g. `quests..title` / `.desc` */\n i18nKey: string;\n /** semantic icon hint; each client maps it to its own icon set */\n icon: string;\n}\n\nexport const QUEST_CATALOG: QuestCatalogEntry[] = [\n // Daily\n { id: \"checkin\", tier: \"daily\", goal: 1, i18nKey: \"checkin\", icon: \"check-circle\" },\n { id: \"post\", tier: \"daily\", goal: 1, i18nKey: \"post\", icon: \"pencil\" },\n { id: \"comment\", tier: \"daily\", goal: 3, i18nKey: \"comment\", icon: \"comment\" },\n { id: \"vote\", tier: \"daily\", goal: 10, i18nKey: \"vote\", icon: \"chevron-up-circle\" },\n { id: \"reblog\", tier: \"daily\", goal: 1, i18nKey: \"reblog\", icon: \"repeat\" },\n { id: \"spin\", tier: \"daily\", goal: 1, i18nKey: \"spin\", icon: \"gift\" },\n // Weekly\n { id: \"post\", tier: \"weekly\", goal: 5, i18nKey: \"post\", icon: \"pencil\" },\n { id: \"comment\", tier: \"weekly\", goal: 15, i18nKey: \"comment\", icon: \"comment\" },\n { id: \"vote\", tier: \"weekly\", goal: 50, i18nKey: \"vote\", icon: \"chevron-up-circle\" },\n { id: \"reblog\", tier: \"weekly\", goal: 5, i18nKey: \"reblog\", icon: \"repeat\" },\n // Monthly\n { id: \"post\", tier: \"monthly\", goal: 20, i18nKey: \"post\", icon: \"pencil\" },\n];\n\nexport function getQuestCatalogEntry(tier: QuestTier, id: string) {\n return QUEST_CATALOG.find((q) => q.tier === tier && q.id === id);\n}\n\n/**\n * Shortest body that earns points and counts toward the post/comment quests.\n *\n * MIRRORS the ePoints `CONTENT_MIN_LENGTH` - the backend is the source of truth and\n * rejects anything at or below it, silently. This exists so a client can say so in the\n * composer instead of leaving the user to wonder why their reply never counted.\n */\nexport const QUEST_MIN_CONTENT_LENGTH = 25;\n\n/**\n * The length the backend actually measures. URLs are stripped first, so a reply that is\n * nothing but an image link measures as empty however long it looks. Mirrors the\n * `http(s)://\\S+` strip in the ePoints verifier, including the absence of any trimming.\n *\n * Counts code points, not UTF-16 code units, because the backend measures with Python's\n * `len` on a str. `String.length` would score an astral character (most emoji) as 2,\n * so a reply of 13 emoji would look like 26 here and 13 there: the client would promise\n * points the backend then refuses, which is the exact confusion this is meant to end.\n */\nexport function measureQuestContentLength(body: string | null | undefined): number {\n return Array.from((body ?? \"\").replace(/https?:\\/\\/\\S+/g, \"\")).length;\n}\n\n/**\n * Whether a post or comment body is long enough to earn points and quest credit.\n * Strictly greater than the minimum, matching the backend comparison.\n */\nexport function earnsQuestContentCredit(body: string | null | undefined): boolean {\n return measureQuestContentLength(body) > QUEST_MIN_CONTENT_LENGTH;\n}\n\n// Streak Freeze display config. MIRRORS the ePoints constants\n// (STREAK_FREEZE_PRICE / STREAK_FREEZE_MAX_OWNED) — the server is the source of truth\n// and validates every purchase; these drive the label + button state only, so a drift\n// here never over-charges (the buy is priced server-side).\nexport const STREAK_FREEZE_PRICE = 300;\nexport const STREAK_FREEZE_MAX_OWNED = 2;\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { StreakFreezeBuyResult } from \"../types\";\n\n/** A fresh idempotency key per purchase; guarded for runtimes without crypto.randomUUID. */\nfunction genIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n return `${Date.now()}-${Math.random().toString(36).slice(2)}`;\n}\n\n/**\n * POST a single streak-freeze purchase. Throws on a non-2xx with the server's\n * `.status` + parsed `.data` attached so the caller can branch on 402 (insufficient)\n * / 409 (max owned). Exported for unit testing; the hook below wraps it.\n */\nexport async function buyStreakFreezeRequest(\n code: string\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/streak-freeze/buy\",\n {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ code, idempotency_key: genIdempotencyKey() }),\n }\n );\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to buy streak freeze: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as StreakFreezeBuyResult;\n}\n\n/**\n * Buy one streak freeze (a Points-only sink). The server debits Points, caps owned\n * inventory, and is idempotent per key. On success the quests + points caches are\n * invalidated so the owned count and balance refresh. A 402 (insufficient) / 409 (max\n * owned) is rethrown with `.status` + `.data` so the caller can route to a Points top-up.\n */\nexport function useBuyStreakFreeze(\n username: string | undefined,\n code: string | undefined\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"streak-freeze\", \"buy\", name],\n mutationFn: async () => {\n if (!name || !code) {\n throw new Error(\"[SDK][StreakFreeze] – missing auth\");\n }\n return buyStreakFreezeRequest(code);\n },\n onSuccess() {\n // Balance only changes on a successful debit.\n if (name) {\n queryClient.invalidateQueries({ queryKey: QueryKeys.points._prefix(name) });\n }\n },\n onSettled() {\n // Refresh freezes_owned on success AND error: a 409 (max owned) means the\n // client's count is stale, and without this the \"Protect streak\" button would\n // never hide and the user could keep re-triggering 409s.\n if (name) {\n queryClient.invalidateQueries({ queryKey: QueryKeys.quests.status(name) });\n }\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSubscribeOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for subscribing to a community.\n */\nexport interface SubscribeCommunityPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n}\n\n/**\n * React Query mutation hook for subscribing to a community.\n *\n * This mutation broadcasts a subscribe operation to the Hive blockchain,\n * adding the community to the user's subscription list.\n *\n * @param username - The username subscribing (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates subscriptions cache to show updated subscription list\n * - Invalidates community cache to refetch updated subscriber count\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"subscribe\", {\"community\": \"hive-123456\"}]\n * - Authority: Posting key\n *\n * @example\n * ```typescript\n * const subscribeMutation = useSubscribeCommunity(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Subscribe to a community\n * subscribeMutation.mutate({\n * community: 'hive-123456'\n * });\n * ```\n */\nexport function useSubscribeCommunity(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"subscribe\"],\n username,\n ({ community }) => [\n buildSubscribeOp(username!, community)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.subscriptions(username!),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n QueryKeys.communities.context(username!, variables.community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUnsubscribeOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for unsubscribing from a community.\n */\nexport interface UnsubscribeCommunityPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n}\n\n/**\n * React Query mutation hook for unsubscribing from a community.\n *\n * This mutation broadcasts an unsubscribe operation to the Hive blockchain,\n * removing the community from the user's subscription list.\n *\n * @param username - The username unsubscribing (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates subscriptions cache to show updated subscription list\n * - Invalidates community cache to refetch updated subscriber count\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"unsubscribe\", {\"community\": \"hive-123456\"}]\n * - Authority: Posting key\n *\n * @example\n * ```typescript\n * const unsubscribeMutation = useUnsubscribeCommunity(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Unsubscribe from a community\n * unsubscribeMutation.mutate({\n * community: 'hive-123456'\n * });\n * ```\n */\nexport function useUnsubscribeCommunity(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"unsubscribe\"],\n username,\n ({ community }) => [\n buildUnsubscribeOp(username!, community)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.subscriptions(username!),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n QueryKeys.communities.context(username!, variables.community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'sync' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildMutePostOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for muting/unmuting a post in a community.\n */\nexport interface MutePostPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n /** Post author */\n author: string;\n /** Post permlink */\n permlink: string;\n /** Mute reason/notes (required even for unmute) */\n notes: string;\n /** True to mute, false to unmute */\n mute: boolean;\n}\n\n/**\n * React Query mutation hook for muting/unmuting posts in a community.\n *\n * This mutation broadcasts a custom_json operation to mute (or unmute)\n * a post within a community. Only community moderators/admins can mute posts.\n *\n * @param username - The username performing the mute (required for broadcast, must have permission)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community posts cache to hide muted content\n * - Invalidates post cache to update mute status\n * - Invalidates feed cache to remove muted posts from feeds\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"mutePost\", {\"community\": \"hive-123456\", \"account\": \"author\", \"permlink\": \"post\", \"notes\": \"reason\"}]\n * - Action (unmute): [\"unmutePost\", {\"community\": \"hive-123456\", \"account\": \"author\", \"permlink\": \"post\", \"notes\": \"reason\"}]\n * - Authority: Posting key\n *\n * **Mute vs Unmute:**\n * - mute: true - Mutes the post (hides from community feed)\n * - mute: false - Unmutes the post (restores to community feed)\n *\n * **Permission:**\n * - Only community moderators and admins can mute/unmute posts\n * - Attempting to mute without permission will fail with an error\n *\n * @example\n * ```typescript\n * const mutePostMutation = useMutePost(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Mute a post\n * mutePostMutation.mutate({\n * community: 'hive-123456',\n * author: 'alice',\n * permlink: 'my-post',\n * notes: 'Violates community guidelines',\n * mute: true\n * });\n *\n * // Unmute a post\n * mutePostMutation.mutate({\n * community: 'hive-123456',\n * author: 'alice',\n * permlink: 'my-post',\n * notes: 'Resolved after editing',\n * mute: false\n * });\n * ```\n */\nexport function useMutePost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"mutePost\"],\n username,\n ({ community, author, permlink, notes, mute }) => [\n buildMutePostOp(username!, community, author, permlink, notes, mute)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n // Invalidate specific post cache to update mute status\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n // Invalidate community data\n [\"community\", \"single\", variables.community],\n // Invalidate community feed/posts (matches all sort orders, limits, observers)\n {\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"posts-ranked\" &&\n key[3] === variables.community\n );\n }\n }\n ];\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'sync' }\n );\n}\n","import { useBroadcastMutation, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSetRoleOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Community, CommunityTeam } from \"../types\";\n\n/**\n * Payload for setting a user's role in a community.\n */\nexport interface SetCommunityRolePayload {\n /** Account to set role for */\n account: string;\n /** Role name (e.g., \"admin\", \"mod\", \"member\", \"guest\") */\n role: string;\n}\n\n/**\n * React Query mutation hook for setting a user's role in a community.\n *\n * This mutation broadcasts a setRole operation to the Hive blockchain,\n * updating the role of a community member. Only users with appropriate\n * permissions (community owner/admin) can set roles.\n *\n * @param community - Community name (e.g., \"hive-123456\")\n * @param username - The username setting the role (required for broadcast, must have permission)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to refetch updated team member list\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"setRole\", {\"community\": \"hive-123456\", \"account\": \"user\", \"role\": \"mod\"}]\n * - Authority: Posting key\n *\n * **Role Types:**\n * - \"owner\" - Community owner (full permissions)\n * - \"admin\" - Administrator (can manage settings and team)\n * - \"mod\" - Moderator (can mute posts/users)\n * - \"member\" - Regular member (no special permissions)\n * - \"guest\" - Remove user from team (empty string also works)\n *\n * @example\n * ```typescript\n * const setRoleMutation = useSetCommunityRole('hive-123456', username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Set a user as moderator\n * setRoleMutation.mutate({\n * account: 'alice',\n * role: 'mod'\n * });\n *\n * // Remove a user from the team\n * setRoleMutation.mutate({\n * account: 'bob',\n * role: 'guest'\n * });\n * ```\n */\nexport function useSetCommunityRole(\n community: string,\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"set-role\", community],\n username,\n ({ account, role }) => [\n buildSetRoleOp(username!, community, account, role)\n ],\n async (_result: any, variables) => {\n // Optimistic team update in community cache\n // Query key is [\"community\",\"single\",name,observer] — observer varies, so use predicate\n const qc = getQueryClient();\n qc.setQueriesData(\n { queryKey: QueryKeys.communities.singlePrefix(community) },\n (prev) => {\n if (!prev) return prev;\n const team: CommunityTeam = [...(prev.team ?? [])];\n const idx = team.findIndex(([name]) => name === variables.account);\n if (idx >= 0) {\n team[idx] = [team[idx][0], variables.role, team[idx][2] ?? \"\"];\n } else {\n team.push([variables.account, variables.role, \"\"]);\n }\n return { ...prev, team };\n }\n );\n\n // Cache invalidation — prefix-match all community single queries + context for affected user\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n [...QueryKeys.communities.singlePrefix(community)],\n QueryKeys.communities.context(variables.account, community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUpdateCommunityOp, type CommunityProps } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Community } from \"../types\";\n\n/**\n * Payload for updating community properties.\n * Matches the CommunityProps interface from builders.\n */\nexport type UpdateCommunityPayload = CommunityProps;\n\n/**\n * React Query mutation hook for updating community properties.\n *\n * This mutation broadcasts an updateProps operation to the Hive blockchain,\n * modifying the community's metadata and settings. Only community admins\n * can update community properties.\n *\n * @param community - Community name (e.g., \"hive-123456\")\n * @param username - The username updating the community (required for broadcast, must be admin)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to refetch updated properties\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"updateProps\", {\"community\": \"hive-123456\", \"props\": {...}}]\n * - Authority: Posting key\n *\n * **Properties:**\n * - title - Community display title\n * - about - Short description/tagline\n * - lang - Primary language code (e.g., \"en\")\n * - description - Full community description (markdown supported)\n * - flag_text - Custom text shown when flagging posts\n * - is_nsfw - Whether community contains NSFW content\n *\n * @example\n * ```typescript\n * const updateMutation = useUpdateCommunity('hive-123456', username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Update community properties\n * updateMutation.mutate({\n * title: 'My Awesome Community',\n * about: 'A place for awesome people',\n * lang: 'en',\n * description: '# Welcome\\nThis is our community description',\n * flag_text: 'Please explain why this content violates our rules',\n * is_nsfw: false\n * });\n * ```\n */\nexport function useUpdateCommunity(\n community: string,\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"update\", community],\n username,\n (props) => [\n buildUpdateCommunityOp(username!, community, props)\n ],\n async (_result: any, variables) => {\n // Optimistic property merge in community cache\n // Query key is [\"community\",\"single\",name,observer] — observer varies, so use predicate\n const qc = getQueryClient();\n qc.setQueriesData(\n { queryKey: QueryKeys.communities.singlePrefix(community) },\n (prev) => {\n if (!prev) return prev;\n return { ...prev, ...(variables as unknown as Partial) };\n }\n );\n\n // Cache invalidation — prefix-match all community single queries\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n [...QueryKeys.communities.singlePrefix(community)]\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommunityRegistrationOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for community rewards registration.\n */\nexport interface CommunityRewardsRegisterPayload {\n /** Community account name (usually the community creator's account) */\n name: string;\n}\n\n/**\n * React Query mutation hook for registering to receive community rewards.\n *\n * This mutation broadcasts a custom_json operation to register a community\n * account to receive Ecency Points rewards for community activity.\n *\n * @param username - The username registering for community rewards (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to update registration status\n * - Invalidates points balance to reflect potential initial rewards\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"ecency_registration\"\n * - JSON: {\"name\": \"communityname\"}\n * - Authority: Active key (required for registration)\n *\n * **Purpose:**\n * - Enables communities to receive Ecency Points for activity\n * - One-time registration per community\n * - Can only be done by the community owner/creator\n *\n * @example\n * ```typescript\n * const registerMutation = useRegisterCommunityRewards(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Register community for rewards\n * registerMutation.mutate({\n * name: 'hive-123456'\n * });\n * ```\n */\nexport function useRegisterCommunityRewards(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"registerRewards\"],\n username,\n ({ name }) => [\n buildCommunityRegistrationOp(name)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n // Invalidate community cache to update registration status\n [...QueryKeys.communities.singlePrefix(variables.name)],\n // Invalidate points balance\n [...QueryKeys.points._prefix(username!)],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildPinPostOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface PinPostPayload {\n community: string;\n account: string;\n permlink: string;\n pin: boolean;\n}\n\nexport function usePinPost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"pin-post\"],\n username,\n ({ community, account, permlink, pin }) => [\n buildPinPostOp(username!, community, account, permlink, pin)\n ],\n async (_result, variables) => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.posts.entry(`/@${variables.account}/${variables.permlink}`),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Communities } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getCommunitiesQueryOptions(\n sort: string,\n query?: string,\n limit = 100,\n observer: string | undefined = undefined,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.list(sort, query ?? \"\", limit),\n enabled,\n queryFn: async () => {\n const response = await callRPC(\"bridge.list_communities\", {\n last: \"\",\n limit,\n sort: sort === \"hot\" ? \"rank\" : sort,\n query: query ? query : null,\n observer,\n });\n return (\n response\n ? sort === \"hot\"\n ? response.sort(() => Math.random() - 0.5)\n : response\n : []\n ) as Communities;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { CommunityRole } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getCommunityContextQueryOptions(\n username: string | undefined,\n communityName: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.context(username!, communityName!),\n enabled: !!username && !!communityName,\n queryFn: async () => {\n const response = await callRPC(\"bridge.get_community_context\", {\n account: username,\n name: communityName,\n });\n\n return {\n role: response?.role ?? \"guest\",\n subscribed: response?.subscribed ?? false,\n } satisfies {\n role: CommunityRole;\n subscribed: boolean;\n };\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Community } from \"../types/community\";\nimport { getCommunity } from \"@/modules/bridge\";\nimport { QueryKeys } from \"@/modules/core\";\n\nexport function getCommunityQueryOptions(\n name: string | undefined,\n observer: string | undefined = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.single(name, observer),\n enabled: enabled && !!name,\n queryFn: async () => getCommunity(name ?? \"\", observer) as Promise,\n });\n}\n","import {\n InfiniteData,\n infiniteQueryOptions,\n queryOptions\n} from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Subscription } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * hivemind caps `bridge.list_subscribers` at 100 rows per call, regardless of a\n * larger requested limit.\n */\nexport const SUBSCRIBERS_PAGE_SIZE = 100;\n\ntype SubscribersPage = Subscription[];\ntype SubscribersCursor = string | null;\n\n/**\n * Fetches one page of subscribers.\n *\n * `last` is omitted on the first page rather than passed as an empty string:\n * hivemind reads `\"\"` as a real cursor positioned before the first account and\n * returns zero rows.\n */\nasync function fetchSubscribersPage(\n communityName: string,\n last: SubscribersCursor\n): Promise {\n const response = await callRPC(\"bridge.list_subscribers\", {\n community: communityName,\n limit: SUBSCRIBERS_PAGE_SIZE,\n ...(last ? { last } : {})\n });\n return (response as Subscription[] | null) ?? [];\n}\n\n/**\n * Get the first page of subscribers for a community.\n *\n * @deprecated Returns at most {@link SUBSCRIBERS_PAGE_SIZE} subscribers, which\n * for most communities is a small fraction of the total while looking like the\n * complete list. Prefer {@link getCommunitySubscribersInfiniteQueryOptions}\n * unless a single page is genuinely all that is wanted.\n *\n * @param communityName - The community name (e.g., \"hive-123456\")\n */\nexport function getCommunitySubscribersQueryOptions(communityName: string) {\n return queryOptions({\n queryKey: QueryKeys.communities.subscribers(communityName),\n queryFn: async () => fetchSubscribersPage(communityName, null),\n staleTime: 60000\n });\n}\n\n/**\n * Get all subscribers for a community, paged with hivemind's `last` cursor.\n *\n * @param communityName - The community name (e.g., \"hive-123456\")\n */\nexport function getCommunitySubscribersInfiniteQueryOptions(\n communityName: string\n) {\n return infiniteQueryOptions<\n SubscribersPage,\n Error,\n InfiniteData,\n string[],\n SubscribersCursor\n >({\n queryKey: QueryKeys.communities.subscribersInfinite(communityName),\n initialPageParam: null as SubscribersCursor,\n queryFn: async ({ pageParam }: { pageParam: SubscribersCursor }) =>\n fetchSubscribersPage(communityName, pageParam),\n // The cursor is the previous page's last account name. A short page is the\n // end of the list.\n getNextPageParam: (lastPage: SubscribersPage): SubscribersCursor =>\n lastPage?.length >= SUBSCRIBERS_PAGE_SIZE\n ? lastPage[lastPage.length - 1]?.[0] ?? null\n : null,\n staleTime: 60000\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountNotification } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype NotifPage = AccountNotification[];\ntype NotifCursor = number | null;\n\n/**\n * Get account notifications for a community (bridge API)\n *\n * @param account - The account/community name\n * @param limit - Number of notifications per page\n */\nexport function getAccountNotificationsInfiniteQueryOptions(\n account: string,\n limit: number\n) {\n return infiniteQueryOptions<\n NotifPage,\n Error,\n InfiniteData,\n (string | number)[],\n NotifCursor\n >({\n queryKey: QueryKeys.communities.accountNotifications(account, limit),\n initialPageParam: null as NotifCursor,\n\n // Errors are deliberately not caught. Returning [] on failure made an RPC\n // outage indistinguishable from an empty log: `isError` never became true,\n // so consumers rendered \"no activity\" for a failed request, and a failed\n // page produced no cursor and silently ended pagination. Let React Query\n // own the error so `isError` and retry behave normally.\n queryFn: async ({ pageParam }: { pageParam: NotifCursor }) => {\n const response = await callRPC(\"bridge.account_notifications\", {\n account,\n limit,\n last_id: pageParam ?? undefined,\n });\n return (response as AccountNotification[] | null) ?? [];\n },\n\n // A short page is the end of the log. Keying on \"empty\" alone would also\n // treat a truncated page as the end.\n getNextPageParam: (lastPage: NotifPage): NotifCursor =>\n lastPage?.length >= limit ? lastPage[lastPage.length - 1].id : null,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { RewardedCommunity } from \"../types/rewarded-community\";\n\nexport function getRewardedCommunitiesQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.communities.rewarded(),\n queryFn: async () => {\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/rewarded-communities\",\n {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch rewarded communities: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","export enum ROLES {\n OWNER = \"owner\",\n ADMIN = \"admin\",\n MOD = \"mod\",\n MEMBER = \"member\",\n GUEST = \"guest\",\n MUTED = \"muted\",\n}\n\nexport const roleMap: Record = {\n [ROLES.OWNER]: [\n ROLES.ADMIN,\n ROLES.MOD,\n ROLES.MEMBER,\n ROLES.GUEST,\n ROLES.MUTED,\n ],\n [ROLES.ADMIN]: [ROLES.MOD, ROLES.MEMBER, ROLES.GUEST, ROLES.MUTED],\n [ROLES.MOD]: [ROLES.MEMBER, ROLES.GUEST, ROLES.MUTED],\n};\n\nexport type CommunityTeam = Array>;\nexport type CommunityRole = (typeof ROLES)[keyof typeof ROLES]; // \"owner\" | \"member\" | ...\nexport type CommunityType = \"Topic\" | \"Journal\" | \"Council\";\n\nexport interface Community {\n about: string;\n admins?: string[];\n avatar_url: string;\n created_at: string;\n description: string;\n flag_text: string;\n id: number;\n is_nsfw: boolean;\n lang: string;\n name: string;\n num_authors: number;\n num_pending: number;\n subscribers: number;\n sum_pending: number;\n settings?: any;\n team: CommunityTeam;\n title: string;\n type_id: number;\n}\n\nexport type Communities = Community[];\n","import { CommunityRole, CommunityType, ROLES } from \"../types\";\n\nexport function getCommunityType(name: string, type_id: number): CommunityType {\n if (name.startsWith(\"hive-3\") || type_id === 3) return \"Council\";\n if (name.startsWith(\"hive-2\") || type_id === 2) return \"Journal\";\n return \"Topic\";\n}\n\nexport function getCommunityPermissions({\n communityType,\n userRole,\n subscribed,\n}: {\n communityType: CommunityType;\n userRole: CommunityRole;\n subscribed: boolean;\n}) {\n const canPost = (() => {\n if (userRole === ROLES.MUTED) return false;\n\n if (communityType === \"Topic\") return true;\n\n // Journal & Council\n return [ROLES.OWNER, ROLES.ADMIN, ROLES.MOD, ROLES.MEMBER].includes(\n userRole\n );\n })();\n\n const canComment = (() => {\n if (userRole === ROLES.MUTED) return false;\n\n switch (communityType) {\n case \"Topic\":\n return true;\n case \"Journal\":\n return userRole !== ROLES.GUEST || subscribed;\n case \"Council\":\n return canPost;\n }\n })();\n\n const isModerator = [ROLES.OWNER, ROLES.ADMIN, ROLES.MOD].includes(userRole);\n\n return {\n canPost,\n canComment,\n isModerator,\n };\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getNotificationsUnreadCountQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.unreadCount(activeUsername),\n queryFn: async () => {\n if (!code) {\n return 0;\n }\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/notifications/unread`,\n {\n method: \"POST\",\n body: JSON.stringify({ code }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n const data = (await response.json()) as { count: number };\n return data.count;\n },\n enabled: !!activeUsername && !!code,\n initialData: 0,\n refetchInterval: 60000,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { NotificationFilter } from \"../enums\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { ApiNotification } from \"../types\";\n\nexport function getNotificationsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n filter: NotificationFilter | undefined = undefined\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.notifications.list(activeUsername, filter),\n queryFn: async ({ pageParam }) => {\n if (!code) {\n return [];\n }\n const data = {\n code,\n filter,\n since: pageParam,\n user: undefined,\n };\n\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/notifications\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n }\n );\n\n if (!response.ok) {\n return [];\n }\n\n try {\n return (await response.json()) as ApiNotification[];\n } catch {\n return [];\n }\n },\n enabled: !!activeUsername && !!code,\n // No initialData here: an empty seed counts as fresh for the whole staleTime,\n // so consumers that only read `data` would render an empty list with no fetch.\n initialPageParam: \"\",\n getNextPageParam: (lastPage) => lastPage?.[lastPage.length - 1]?.id ?? \"\",\n refetchOnMount: true,\n });\n}\n","export enum NotificationFilter {\n VOTES = \"rvotes\",\n MENTIONS = \"mentions\",\n FAVORITES = \"nfavorites\",\n BOOKMARKS = \"nbookmarks\",\n FOLLOWS = \"follows\",\n REPLIES = \"replies\",\n REBLOGS = \"reblogs\",\n TRANSFERS = \"transfers\",\n DELEGATIONS = \"delegations\",\n PAYOUTS = \"payouts\",\n SCHEDULED_PUBLISHED = \"scheduled_published\",\n // Filter path is plural while the notification `type` string is singular\n // (`account_update`) - enotify routes on the plural form.\n ACCOUNT_UPDATES = \"account_updates\",\n WEEKLY_EARNINGS = \"weekly_earnings\",\n TAGS = \"tags\",\n}\n","// Values are enotify's ACTIVITY_MAIN_TYPE_* ints and are validated server-side at\n// device registration, so they must match enotify constants.py exactly. Note payouts\n// is 19: the original 16 is commented out upstream and must not be reused.\nexport enum NotifyTypes {\n VOTE = 1,\n MENTION = 2,\n FOLLOW = 3,\n COMMENT = 4,\n RE_BLOG = 5,\n TRANSFERS = 6,\n DELEGATIONS = 10,\n FAVORITES = 13,\n BOOKMARKS = 15,\n PAYOUTS = 19,\n ACCOUNT_UPDATE = 20,\n WEEKLY_EARNINGS = 21,\n SCHEDULED_PUBLISHED = 22,\n TAGS = 23,\n ALLOW_NOTIFY = \"ALLOW_NOTIFY\",\n}\n\nexport const ALL_NOTIFY_TYPES = [\n NotifyTypes.VOTE,\n NotifyTypes.MENTION,\n NotifyTypes.FOLLOW,\n NotifyTypes.COMMENT,\n NotifyTypes.RE_BLOG,\n NotifyTypes.TRANSFERS,\n NotifyTypes.DELEGATIONS,\n NotifyTypes.FAVORITES,\n NotifyTypes.BOOKMARKS,\n NotifyTypes.PAYOUTS,\n NotifyTypes.ACCOUNT_UPDATE,\n NotifyTypes.WEEKLY_EARNINGS,\n NotifyTypes.SCHEDULED_PUBLISHED,\n NotifyTypes.TAGS,\n] as const;\n\nexport enum NotificationViewType {\n ALL = \"All\",\n UNREAD = \"Unread\",\n READ = \"Read\",\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ApiNotificationSetting } from \"../types\";\nimport { ALL_NOTIFY_TYPES } from \"../enums\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport function getNotificationsSettingsQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n initialMuted?: boolean\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.settings(activeUsername),\n queryFn: async () => {\n let token = activeUsername + \"-web\";\n if (!code) {\n throw new Error(\"Missing access token\");\n }\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/detail-device\",\n {\n body: JSON.stringify({\n code,\n username: activeUsername,\n token,\n }),\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to fetch notification settings: ${response.status}`);\n }\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n refetchOnMount: false,\n initialData: () => {\n return {\n status: 0,\n system: \"web\",\n allows_notify: 0,\n notify_types: initialMuted ? [] : ([...ALL_NOTIFY_TYPES] as number[]),\n } as ApiNotificationSetting;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { Announcement } from \"../types/announcement\";\n\nexport function getAnnouncementsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.notifications.announcements(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/announcements\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch announcements: ${response.status}`);\n }\n\n const data = await response.json() as Announcement[];\n return data || [];\n },\n staleTime: 3_600_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { Spotlight } from \"../types/spotlight\";\n\n// `_accessToken` is accepted for call-site parity with mobile (which passes one) but is\n// intentionally unused: the spotlights endpoint is anonymous and only filters by date window.\nexport function getSpotlightsQueryOptions(_accessToken?: string) {\n return queryOptions({\n queryKey: QueryKeys.notifications.spotlights(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/spotlights\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch spotlights: ${response.status}`);\n }\n\n const data = (await response.json()) as Spotlight[];\n return data || [];\n },\n staleTime: 3_600_000,\n });\n}\n","import { useMutation, QueryKey, InfiniteData } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { markNotifications } from \"@/modules/private-api/requests\";\nimport { ApiNotification } from \"../types\";\n\ntype NotificationPage = ApiNotification[];\ntype InfiniteNotificationData = InfiniteData;\n\nfunction markNotificationRead(item: ApiNotification, id?: string): ApiNotification {\n return {\n ...item,\n read: (!id || id === item.id ? 1 : item.read) as 0 | 1,\n };\n}\n\nfunction isInfiniteData(data: unknown): data is InfiniteNotificationData {\n return (\n typeof data === \"object\" &&\n data !== null &&\n \"pages\" in data &&\n \"pageParams\" in data &&\n Array.isArray((data as InfiniteNotificationData).pages)\n );\n}\n\n/**\n * Hook to mark notifications as read with optimistic updates\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful mutation, receives unread count\n * @param onError - Optional callback on error\n *\n * @returns Mutation hook that accepts { id?: string }\n *\n * @example\n * ```typescript\n * const markAsRead = useMarkNotificationsRead(username, code);\n *\n * // Mark specific notification\n * markAsRead.mutate({ id: \"notification-id\" });\n *\n * // Mark all notifications (omit id)\n * markAsRead.mutate({});\n * ```\n */\nexport function useMarkNotificationsRead(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: (unreadCount?: number) => void,\n onError?: (e: Error) => void\n) {\n const queryClient = getQueryClient();\n\n return useMutation({\n mutationKey: [\"notifications\", \"mark-read\", username],\n\n mutationFn: async ({ id }: { id?: string }) => {\n if (!username || !code) {\n if (process.env.NODE_ENV !== \"production\") {\n console.warn(\"[SDK][Notifications] – missing auth for markNotifications\");\n }\n return;\n }\n return markNotifications(code, id);\n },\n\n // Optimistic update: Immediately mark notifications as read in cache\n onMutate: async ({ id }: { id?: string }) => {\n // Skip optimistic updates when auth is not available\n if (!username || !code) {\n return { previousData: [] };\n }\n\n // Cancel any outgoing refetches to prevent overwriting optimistic update\n await queryClient.cancelQueries({ queryKey: QueryKeys.notifications._prefix });\n\n // Snapshot current state for rollback\n const previousData: Array<[QueryKey, unknown]> = [];\n\n // Update infinite notification list queries (pages structure)\n const infiniteQueries = queryClient.getQueriesData({\n queryKey: QueryKeys.notifications._prefix,\n predicate: (query) => {\n const data = query.state.data;\n return isInfiniteData(data);\n },\n });\n\n infiniteQueries.forEach(([queryKey, data]) => {\n if (data && isInfiniteData(data)) {\n previousData.push([queryKey, data]);\n\n const updatedData: InfiniteNotificationData = {\n ...data,\n pages: data.pages.map((page) =>\n page.map((item) => markNotificationRead(item, id))\n ),\n };\n\n queryClient.setQueryData(queryKey, updatedData);\n }\n });\n\n // Optimistically decrement unread count\n const unreadKey = QueryKeys.notifications.unreadCount(username);\n const currentUnread = queryClient.getQueryData(unreadKey);\n if (typeof currentUnread === \"number\" && currentUnread > 0) {\n previousData.push([unreadKey, currentUnread]);\n\n if (!id) {\n // Mark all: set to 0\n queryClient.setQueryData(unreadKey, 0);\n } else {\n // Mark single: only decrement if the notification is currently unread\n const isUnread = infiniteQueries.some(([, d]) =>\n d?.pages.some((page) =>\n page.some((item) => item.id === id && item.read === 0)\n )\n );\n if (isUnread) {\n queryClient.setQueryData(unreadKey, currentUnread - 1);\n }\n }\n }\n\n // Return context for rollback\n return { previousData };\n },\n\n onSuccess: (response) => {\n // Extract unread count from response if available\n const unreadCount = typeof response === \"object\" && response !== null\n ? (response as { unread?: number }).unread\n : undefined;\n\n // Update unread count cache with server value\n if (typeof unreadCount === \"number\") {\n queryClient.setQueryData(\n QueryKeys.notifications.unreadCount(username),\n unreadCount\n );\n }\n\n onSuccess?.(unreadCount);\n },\n\n // Rollback optimistic update on error\n onError: (error, _variables, context) => {\n // Restore previous state\n if (context?.previousData) {\n context.previousData.forEach(([queryKey, data]) => {\n queryClient.setQueryData(queryKey, data);\n });\n }\n\n onError?.(error as Error);\n },\n\n // Always refetch after mutation settles\n onSettled: () => {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.notifications._prefix,\n });\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSetLastReadOps } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface SetLastReadPayload {\n date?: string;\n}\n\nexport function useSetLastRead(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"notifications\", \"set-last-read\"],\n username,\n ({ date }) => buildSetLastReadOps(username!, date),\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.notifications.unreadCount(username),\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Proposal } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get a single proposal by ID\n */\nexport function getProposalQueryOptions(id: number) {\n return queryOptions({\n queryKey: [\"proposals\", \"proposal\", id],\n queryFn: async () => {\n const r = await callRPC(\"condenser_api.find_proposals\", [[id]]);\n const proposal = r[0];\n\n // Determine proposal status based on dates\n if (new Date(proposal.start_date) < new Date() && new Date(proposal.end_date) >= new Date()) {\n proposal.status = \"active\";\n } else if (new Date(proposal.end_date) < new Date()) {\n proposal.status = \"expired\";\n } else {\n proposal.status = \"inactive\";\n }\n\n return proposal as Proposal;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Proposal } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get all proposals, sorted with expired proposals at the end\n */\nexport function getProposalsQueryOptions() {\n return queryOptions({\n queryKey: [\"proposals\", \"list\"],\n queryFn: async () => {\n const response = (await callRPC(\"database_api.list_proposals\", {\n start: [-1],\n limit: 500,\n order: \"by_total_votes\",\n order_direction: \"descending\",\n status: \"all\",\n })) as { proposals: Proposal[] };\n\n const proposals = response.proposals;\n const expired = proposals.filter((x) => x.status === \"expired\");\n const others = proposals.filter((x) => x.status !== \"expired\");\n\n return [...others, ...expired];\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ProposalVote } from \"../types\";\nimport { FullAccount } from \"@/modules/accounts\";\nimport { parseAccounts } from \"@/modules/accounts/utils\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n// One page = array of enriched vote rows\nexport type ProposalVoteRow = {\n id: number;\n voter: string;\n voterAccount: FullAccount;\n};\n\ntype Cursor = string; // we paginate by last voter name\n\n/**\n * Get proposal votes with pagination and enriched voter account data\n *\n * @param proposalId - The proposal ID\n * @param voter - Starting voter for pagination\n * @param limit - Number of votes per page\n */\nexport function getProposalVotesInfiniteQueryOptions(\n proposalId: number,\n voter: string,\n limit: number\n) {\n return infiniteQueryOptions<\n ProposalVoteRow[],\n Error,\n InfiniteData,\n (string | number)[],\n Cursor\n >({\n queryKey: [\"proposals\", \"votes\", proposalId, voter, limit],\n initialPageParam: voter as Cursor,\n refetchOnMount: true,\n staleTime: 0, // Always refetch on mount\n\n queryFn: async ({ pageParam }: { pageParam: Cursor }) => {\n const startParam = pageParam ?? voter;\n\n const response = (await callRPC(\"condenser_api.list_proposal_votes\", [\n [proposalId, startParam],\n limit,\n \"by_proposal_voter\",\n ])) as ProposalVote[];\n\n const list = response\n .filter((x) => x.proposal?.proposal_id === proposalId)\n .map((x) => ({ id: x.id, voter: x.voter }));\n\n const rawAccounts = await callRPC(\"condenser_api.get_accounts\", [list.map((l) => l.voter)]);\n const accounts = parseAccounts(rawAccounts);\n\n const page: ProposalVoteRow[] = list.map((i) => ({\n ...i,\n voterAccount: accounts.find((a) => i.voter === a.name)!,\n }));\n\n return page;\n },\n\n getNextPageParam: (lastPage: ProposalVoteRow[]): Cursor | undefined => {\n const last = lastPage?.[lastPage.length - 1];\n return last?.voter ?? undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ProposalVote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Fetches ALL proposal votes for a specific user in a single query.\n * Much more efficient than querying each proposal individually.\n * Uses \"by_voter_proposal\" order to get all votes by a user.\n */\nexport function getUserProposalVotesQueryOptions(voter: string) {\n return queryOptions({\n queryKey: [\"proposals\", \"votes\", \"by-user\", voter],\n enabled: !!voter && voter !== \"\",\n staleTime: 60 * 1000, // Cache for 1 minute\n queryFn: async () => {\n if (!voter || voter === \"\") {\n return [];\n }\n\n const response = (await callRPC(\"database_api.list_proposal_votes\", {\n start: [voter],\n limit: 1000,\n order: \"by_voter_proposal\",\n order_direction: \"ascending\",\n status: \"votable\",\n })) as { proposal_votes: ProposalVote[] };\n\n // Filter to only this user's votes (API might return votes after this user alphabetically)\n const userVotes = (response.proposal_votes || []).filter((vote) => vote.voter === voter);\n\n return userVotes;\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildProposalVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for voting on proposals.\n */\nexport interface ProposalVotePayload {\n /** Array of proposal IDs to vote on */\n proposalIds: number[];\n /** True to approve, false to disapprove */\n approve: boolean;\n}\n\n/**\n * React Query mutation hook for voting on Hive proposals.\n *\n * This mutation broadcasts an update_proposal_votes operation to vote on\n * one or more proposals in the Hive Decentralized Fund (HDF).\n *\n * @param username - The username voting on proposals (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 150) if adapter.recordActivity is available\n * - Invalidates proposal list cache to show updated vote status\n * - Invalidates voter's proposal votes cache\n *\n * **Multiple Proposals:**\n * - You can vote on multiple proposals in a single transaction\n * - All proposals receive the same vote (approve or disapprove)\n * - Proposal IDs are integers, not strings\n *\n * **Vote Types:**\n * - approve: true - Vote in favor of the proposal(s)\n * - approve: false - Remove your vote from the proposal(s)\n *\n * @example\n * ```typescript\n * const proposalVoteMutation = useProposalVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Approve a single proposal\n * proposalVoteMutation.mutate({\n * proposalIds: [123],\n * approve: true\n * });\n *\n * // Approve multiple proposals\n * proposalVoteMutation.mutate({\n * proposalIds: [123, 124, 125],\n * approve: true\n * });\n *\n * // Remove vote from a proposal\n * proposalVoteMutation.mutate({\n * proposalIds: [123],\n * approve: false\n * });\n * ```\n */\nexport function useProposalVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"proposals\", \"vote\"],\n username,\n ({ proposalIds, approve }) => [\n buildProposalVoteOp(username!, proposalIds, approve)\n ],\n async (result: any) => {\n // Wrap post-broadcast side-effects in try-catch to prevent propagating errors\n try {\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(150, txId, result?.block_num).catch((error) => {\n console.debug(\"[SDK][Proposals][useProposalVote] recordActivity failed\", {\n activityType: 150,\n blockNum: result?.block_num,\n transactionId: txId,\n error\n });\n });\n }\n\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.proposals.list(),\n QueryKeys.proposals.votesByUser(username!)\n ]);\n }\n } catch (error) {\n // Log but don't rethrow - don't fail mutation due to side-effect errors\n console.warn('[useProposalVote] Post-broadcast side-effect failed:', error);\n }\n },\n auth,\n 'active', // Use active authority for proposal votes (required by blockchain)\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildProposalCreateOp, type ProposalCreatePayload } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport { type ProposalCreatePayload };\n\nexport function useProposalCreate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"proposals\", \"create\"],\n username,\n (payload) => [\n buildProposalCreateOp(username!, payload)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.proposals.list(),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { DelegatedVestingShare } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get vesting delegations for an account with infinite scroll support\n *\n * @param username - The account username\n * @param limit - Maximum number of results per page (default: 50)\n */\nexport function getVestingDelegationsQueryOptions(\n username?: string,\n limit = 50\n) {\n return infiniteQueryOptions({\n queryKey: [\"wallet\", \"vesting-delegations\", username, limit],\n initialPageParam: \"\" as string,\n queryFn: async ({ pageParam }: { pageParam: string }) => {\n // Request one extra item on subsequent pages to handle inclusive cursor\n const fetchLimit = pageParam ? limit + 1 : limit;\n\n const result = await callRPC(\"condenser_api.get_vesting_delegations\", [\n username,\n pageParam || \"\",\n fetchLimit,\n ]) as DelegatedVestingShare[];\n\n // Filter out duplicate first item on subsequent pages\n // Hive API is inclusive of the 'from' cursor\n if (pageParam && result.length > 0 && result[0]?.delegatee === pageParam) {\n // Return at most limit items after removing the duplicate\n return result.slice(1, limit + 1);\n }\n\n return result;\n },\n getNextPageParam: (lastPage: DelegatedVestingShare[]) => {\n // If we got fewer results than limit, we've reached the end\n if (!lastPage || lastPage.length < limit) {\n return undefined;\n }\n\n // Return the last delegatee as cursor for next page\n const lastDelegation = lastPage[lastPage.length - 1];\n return lastDelegation?.delegatee;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { AccountDelegations } from \"../types\";\nimport { callREST } from \"@/modules/core/hive-tx\";\n\n/**\n * Account vesting delegations via the HAF balance-api REST endpoint\n * (`/balance-api/accounts/{account-name}/delegations`).\n *\n * Unlike `condenser_api.get_vesting_delegations` (see\n * {@link getHivePowerDelegatesInfiniteQueryOptions}), this returns the\n * complete outgoing AND incoming lists in a single request, with `callREST`\n * handling multi-node failover. `amount` is raw vests (vests * 10^6).\n */\nexport function getAccountDelegationsQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"assets\", \"account-delegations\", username],\n enabled: !!username,\n queryFn: ({ signal }) =>\n callREST(\n \"balance\",\n \"/accounts/{account-name}/delegations\",\n { \"account-name\": username },\n undefined,\n undefined,\n signal\n ) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { VestingDelegationExpiration } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get expiring vesting delegations for an account.\n *\n * When a delegation is removed (set to 0 VESTS), the HP doesn't return\n * immediately — it enters a 5-day cooldown. This query fetches those\n * in-flight expirations so they can be shown alongside active delegations.\n *\n * Uses database_api.find_vesting_delegation_expirations which returns\n * vesting_shares as NAI asset objects ({amount, nai, precision}).\n *\n * @param username - The delegator account username\n */\nexport function getVestingDelegationExpirationsQueryOptions(username?: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"vesting-delegation-expirations\", username],\n queryFn: async () => {\n if (!username) return [];\n const result = await callRPC(\"database_api.find_vesting_delegation_expirations\", { account: username }) as { delegations: VestingDelegationExpiration[] };\n return result.delegations;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConversionRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HBD to HIVE conversion requests for an account\n *\n * @param account - The account username\n */\nexport function getConversionRequestsQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"conversion-requests\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_conversion_requests\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.requestid - b.requestid),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CollateralizedConversionRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get collateralized HIVE to HBD conversion requests for an account\n *\n * @param account - The account username\n */\nexport function getCollateralizedConversionRequestsQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"collateralized-conversion-requests\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_collateralized_conversion_requests\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.requestid - b.requestid),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { SavingsWithdrawRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get pending savings withdrawal requests for an account\n *\n * @param account - The account username\n */\nexport function getSavingsWithdrawFromQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"savings-withdraw\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_savings_withdraw_from\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.request_id - b.request_id),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { WithdrawRoute } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get power down (vesting withdrawal) routes for an account\n *\n * @param account - The account username\n */\nexport function getWithdrawRoutesQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"withdraw-routes\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_withdraw_routes\", [\n account,\n \"outgoing\",\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OpenOrdersData } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get open market orders for an account\n *\n * @param user - The account username\n */\nexport function getOpenOrdersQueryOptions(user: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"open-orders\", user],\n queryFn: () =>\n callRPC(\"condenser_api.get_open_orders\", [\n user,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.orderid - b.orderid),\n enabled: !!user,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { RcDirectDelegation, RcDirectDelegationsResponse } from \"../types/rc-direct-delegation\";\n\ntype RcPage = RcDirectDelegation[];\ntype RcCursor = string | null;\n\n/**\n * Get outgoing RC delegations for an account\n *\n * @param username - Account name to get delegations for\n * @param limit - Number of delegations per page\n */\nexport function getOutgoingRcDelegationsInfiniteQueryOptions(username: string, limit = 100) {\n return infiniteQueryOptions<\n RcPage,\n Error,\n InfiniteData,\n (string | number)[],\n RcCursor\n >({\n queryKey: [\"wallet\", \"outgoing-rc-delegations\", username, limit],\n initialPageParam: null as RcCursor,\n\n queryFn: async ({ pageParam }: { pageParam: RcCursor }) => {\n const response = await callRPC(\"rc_api.list_rc_direct_delegations\", {\n start: [username, pageParam ?? \"\"],\n limit,\n })\n .then((r: any) => r as RcDirectDelegationsResponse);\n\n let delegations: RcDirectDelegation[] = response.rc_direct_delegations || [];\n\n // Filter out the starting delegation when paginating\n if (pageParam) {\n delegations = delegations.filter((delegation) => delegation.to !== pageParam);\n }\n\n return delegations;\n },\n\n getNextPageParam: (lastPage: RcPage): RcCursor =>\n lastPage.length === limit ? lastPage[lastPage.length - 1].to : null,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { IncomingRcResponse } from \"../types\";\n\nexport function getIncomingRcQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"wallet\", \"incoming-rc\", username],\n enabled: !!username,\n queryFn: async (): Promise => {\n if (!username) {\n throw new Error(\"[SDK][Wallet] - Missing username for incoming RC\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/received-rc/${username}`\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch incoming RC: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import type { AccountDelegations } from \"../types/account-delegations\";\nimport type { ReceivedVestingShare } from \"../types/received-vesting-share\";\n\n/**\n * Raw vests from balance-api (\"903311000000\" = 903311.000000 VESTS) as the\n * legacy asset string. Takes the decimal string (or a bigint), never a number:\n * a float has already rounded anything above 2^53 raw units before it gets\n * here, and the string arithmetic below keeps every digit.\n */\nexport function rawVestsToAsset(amount: string | bigint): string {\n const digits = String(amount).replace(/\\D/g, \"\") || \"0\";\n const padded = digits.padStart(7, \"0\");\n const whole = padded.slice(0, -6).replace(/^0+(?=\\d)/, \"\");\n return `${whole}.${padded.slice(-6)} VESTS`;\n}\n\n/**\n * The incoming half of an account's balance-api delegations in the shape the\n * received-delegation queries have always returned, largest first.\n */\nexport function toReceivedVestingShares(\n delegatee: string,\n delegations: AccountDelegations | null | undefined,\n): ReceivedVestingShare[] {\n return (delegations?.incoming_delegations ?? [])\n .map((d) => ({\n delegator: d.delegator,\n raw: BigInt(String(d.amount).replace(/\\D/g, \"\") || \"0\"),\n }))\n .sort((a, b) => (a.raw === b.raw ? 0 : a.raw > b.raw ? -1 : 1))\n .map(({ delegator, raw }) => ({\n delegatee,\n delegator,\n vesting_shares: rawVestsToAsset(raw),\n }));\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { getAccountDelegationsQueryOptions } from \"./get-account-delegations-query-options\";\nimport { toReceivedVestingShares } from \"../utils/received-vesting-shares\";\n\n/**\n * Who delegates HP to `username`, largest first.\n *\n * Read from the HAF balance-api through {@link getAccountDelegationsQueryOptions}\n * (fetched via the shared query client, so a page showing the totals and the\n * list makes one request), not from the Ecency notification database any more.\n * The return shape is unchanged apart from `timestamp`, which balance-api does\n * not carry.\n */\nexport function getReceivedVestingSharesQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.wallet.receivedVestingShares(username),\n enabled: !!username,\n queryFn: async () =>\n toReceivedVestingShares(\n username,\n // A page that shows the totals and the list asks twice within seconds;\n // a minute of freshness makes that one balance-api request.\n await getQueryClient().fetchQuery({\n ...getAccountDelegationsQueryOptions(username),\n staleTime: 60_000,\n }),\n ),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { RecurrentTransfer } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get recurrent transfers for an account\n *\n * @param username - The account username\n */\nexport function getRecurrentTransfersQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"recurrent-transfers\", username],\n queryFn: () =>\n callRPC(\"condenser_api.find_recurrent_transfers\", [\n username,\n ]) as Promise,\n enabled: !!username,\n });\n}\n","import { ConfigManager } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\ntype PortfolioLayer = \"points\" | \"hive\" | \"chain\" | \"engine\";\n\ninterface TokenAction {\n id: string;\n [key: string]: unknown;\n}\n\nexport interface PortfolioWalletItem {\n name: string;\n symbol: string;\n layer: PortfolioLayer;\n balance: number;\n fiatRate: number;\n currency: string;\n precision: number;\n address?: string;\n error?: string;\n pendingRewards?: number;\n pendingRewardsFiat?: number;\n liquid?: number;\n liquidFiat?: number;\n savings?: number;\n savingsFiat?: number;\n staked?: number;\n stakedFiat?: number;\n iconUrl?: string;\n actions?: TokenAction[];\n extraData?: Array<{ dataKey: string; value: any }>;\n apr?: number;\n}\n\nexport interface PortfolioResponse {\n username: string;\n currency?: string;\n wallets: PortfolioWalletItem[];\n}\n\nfunction normalizeString(value: unknown): string | undefined {\n if (typeof value === \"string\") {\n const trimmed = value.trim();\n return trimmed.length > 0 ? trimmed : undefined;\n }\n\n return undefined;\n}\n\nfunction normalizeNumber(value: unknown): number | undefined {\n if (typeof value === \"number\" && Number.isFinite(value)) {\n return value;\n }\n\n if (typeof value === \"string\") {\n const trimmed = value.trim();\n if (!trimmed) {\n return undefined;\n }\n\n const direct = Number.parseFloat(trimmed);\n if (Number.isFinite(direct)) {\n return direct;\n }\n\n const sanitized = trimmed.replace(/,/g, \"\");\n const match = sanitized.match(/[-+]?\\d+(?:\\.\\d+)?/);\n if (match) {\n const parsed = Number.parseFloat(match[0]);\n if (Number.isFinite(parsed)) {\n return parsed;\n }\n }\n }\n\n return undefined;\n}\n\nfunction parseToken(rawToken: unknown): PortfolioWalletItem | undefined {\n if (!rawToken || typeof rawToken !== \"object\") {\n return undefined;\n }\n\n const token = rawToken as Record;\n\n // Portfolio v2 returns well-defined PortfolioItem structure\n return {\n name: normalizeString(token.name) ?? \"\",\n symbol: normalizeString(token.symbol) ?? \"\",\n layer: (normalizeString(token.layer) ?? \"hive\") as PortfolioLayer,\n balance: normalizeNumber(token.balance) ?? 0,\n fiatRate: normalizeNumber(token.fiatRate) ?? 0,\n currency: normalizeString(token.currency) ?? \"usd\",\n precision: normalizeNumber(token.precision) ?? 3,\n address: normalizeString(token.address),\n error: normalizeString(token.error),\n pendingRewards: normalizeNumber(token.pendingRewards),\n pendingRewardsFiat: normalizeNumber(token.pendingRewardsFiat),\n liquid: normalizeNumber(token.liquid),\n liquidFiat: normalizeNumber(token.liquidFiat),\n savings: normalizeNumber(token.savings),\n savingsFiat: normalizeNumber(token.savingsFiat),\n staked: normalizeNumber(token.staked),\n stakedFiat: normalizeNumber(token.stakedFiat),\n iconUrl: normalizeString(token.iconUrl),\n actions: (token.actions ?? []) as TokenAction[],\n extraData: (token.extraData ?? []) as Array<{ dataKey: string; value: any }>,\n apr: normalizeNumber(token.apr),\n };\n}\n\nfunction extractTokens(payload: unknown): unknown[] {\n if (!payload || typeof payload !== \"object\") {\n return [];\n }\n\n const containers = [payload];\n const record = payload as Record;\n if (record.data && typeof record.data === \"object\") {\n containers.push(record.data as Record);\n }\n if (record.result && typeof record.result === \"object\") {\n containers.push(record.result as Record);\n }\n if (record.portfolio && typeof record.portfolio === \"object\") {\n containers.push(record.portfolio as Record);\n }\n\n for (const container of containers) {\n if (Array.isArray(container)) {\n return container;\n }\n\n if (container && typeof container === \"object\") {\n for (const key of [\n \"wallets\",\n \"tokens\",\n \"assets\",\n \"items\",\n \"portfolio\",\n \"balances\",\n ]) {\n const value = (container as Record)[key];\n if (Array.isArray(value)) {\n return value;\n }\n }\n }\n }\n\n return [];\n}\n\nfunction resolveUsername(payload: unknown): string | undefined {\n if (!payload || typeof payload !== \"object\") {\n return undefined;\n }\n\n const record = payload as Record;\n return (\n normalizeString(record.username) ??\n normalizeString(record.name) ??\n normalizeString(record.account)\n );\n}\n\n/**\n * Get portfolio query options for fetching user's wallet balances across all layers\n * @param username - Hive username\n * @param currency - Fiat currency code (default: \"usd\")\n * @param onlyEnabled - Only return enabled tokens (default: true)\n * @returns TanStack Query options for portfolio data\n */\nexport function getPortfolioQueryOptions(\n username: string,\n currency: string = \"usd\",\n onlyEnabled: boolean = true\n) {\n return queryOptions({\n queryKey: [\n \"wallet\",\n \"portfolio\",\n \"v2\",\n username,\n onlyEnabled ? \"only-enabled\" : \"all\",\n currency,\n ],\n enabled: Boolean(username),\n staleTime: 60000,\n refetchInterval: 120000,\n queryFn: async (): Promise => {\n if (!username) {\n throw new Error(\"[SDK][Wallet] – username is required\");\n }\n\n const endpoint = `${ConfigManager.getValidatedBaseUrl()}/wallet-api/portfolio-v2`;\n const response = await fetch(endpoint, {\n method: \"POST\",\n headers: {\n Accept: \"application/json\",\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username, onlyEnabled, currency }),\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Wallet] – Portfolio request failed (${response.status})`\n );\n }\n\n const payload = (await response.json()) as unknown;\n const tokens = extractTokens(payload)\n .map((item) => parseToken(item))\n .filter((item): item is PortfolioWalletItem => Boolean(item))\n // Backend may still emit removed SPK-layer items; drop them defensively\n .filter((item) => (item.layer as string) !== \"spk\");\n\n if (!tokens.length) {\n throw new Error(\n \"[SDK][Wallet] – Portfolio payload contained no tokens\"\n );\n }\n\n return {\n username: resolveUsername(payload) ?? username,\n currency: normalizeString(\n (payload as Record | undefined)?.fiatCurrency ??\n (payload as Record | undefined)?.currency\n )?.toUpperCase(),\n wallets: tokens,\n };\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nexport function getHiveAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n\n const marketTicker = (await callRPC(\"condenser_api.get_ticker\", [])\n .catch(() => undefined)) as { latest?: string } | undefined;\n\n const marketPrice = Number.parseFloat(marketTicker?.latest ?? \"\");\n\n if (!accountData) {\n return {\n name: \"HIVE\",\n title: \"Hive\",\n price: Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0,\n accountBalance: 0,\n } satisfies GeneralAssetInfo;\n }\n\n const liquidBalance = parseAsset(accountData.balance).amount;\n const savingsBalance = parseAsset(accountData.savings_balance).amount;\n\n return {\n name: \"HIVE\",\n title: \"Hive\",\n price: Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0,\n accountBalance: liquidBalance + savingsBalance,\n parts: [\n {\n name: \"current\",\n balance: liquidBalance,\n },\n {\n name: \"savings\",\n balance: savingsBalance,\n },\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nexport function getHbdAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hbd\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n\n const price = 1;\n\n if (!accountData) {\n return {\n name: \"HBD\",\n title: \"Hive Dollar\",\n price,\n accountBalance: 0,\n };\n }\n\n return {\n name: \"HBD\",\n title: \"Hive Dollar\",\n price,\n accountBalance:\n parseAsset(accountData.hbd_balance).amount +\n parseAsset(accountData?.savings_hbd_balance).amount,\n apr: ((dynamicProps?.hbdInterestRate ?? 0) / 100).toFixed(3),\n parts: [\n {\n name: \"current\",\n balance: parseAsset(accountData.hbd_balance).amount,\n },\n {\n name: \"savings\",\n balance: parseAsset(accountData.savings_hbd_balance).amount,\n },\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { isEmptyDate, parseAsset, vestsToHp } from \"@/modules/core/utils\";\n\nfunction getAPR(dynamicProps: DynamicProps) {\n const initialInflationRate = 9.5;\n const initialBlock = 7000000;\n const decreaseRate = 250000;\n const decreasePercentPerIncrement = 0.01;\n\n const headBlock = dynamicProps.headBlock;\n const deltaBlocks = headBlock - initialBlock;\n const decreaseIncrements = deltaBlocks / decreaseRate;\n\n let currentInflationRate =\n initialInflationRate - decreaseIncrements * decreasePercentPerIncrement;\n\n if (currentInflationRate < 0.95) {\n currentInflationRate = 0.95;\n }\n\n const vestingRewardPercent = dynamicProps.vestingRewardPercent / 10000;\n const virtualSupply = dynamicProps.virtualSupply;\n const totalVestingFunds = dynamicProps.totalVestingFund;\n\n return (\n (virtualSupply * currentInflationRate * vestingRewardPercent) /\n totalVestingFunds\n ).toFixed(3);\n}\n\nexport function getHivePowerAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-power\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n\n if (!dynamicProps || !accountData) {\n return {\n name: \"HP\",\n title: \"Hive Power\",\n price: 0,\n accountBalance: 0,\n };\n }\n\n const marketTicker = (await callRPC(\"condenser_api.get_ticker\", [])\n .catch(() => undefined)) as { latest?: string } | undefined;\n\n const marketPrice = Number.parseFloat(marketTicker?.latest ?? \"\");\n const price = Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps.base / dynamicProps.quote;\n\n const vestingShares = parseAsset(accountData.vesting_shares).amount;\n const delegatedVests = parseAsset(\n accountData.delegated_vesting_shares\n ).amount;\n const receivedVests = parseAsset(\n accountData.received_vesting_shares\n ).amount;\n const withdrawRateVests = parseAsset(\n accountData.vesting_withdraw_rate\n ).amount;\n const remainingToWithdrawVests = Math.max(\n (Number(accountData.to_withdraw) - Number(accountData.withdrawn)) /\n 1e6,\n 0\n );\n const nextWithdrawalVests = !isEmptyDate(\n accountData.next_vesting_withdrawal\n )\n ? Math.min(withdrawRateVests, remainingToWithdrawVests)\n : 0;\n\n const hpBalance = +vestsToHp(\n vestingShares,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const outgoingDelegationsHp = +vestsToHp(\n delegatedVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const incomingDelegationsHp = +vestsToHp(\n receivedVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const pendingPowerDownHp = +vestsToHp(\n remainingToWithdrawVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const nextPowerDownHp = +vestsToHp(\n nextWithdrawalVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const totalBalance = Math.max(hpBalance - pendingPowerDownHp, 0);\n const availableHp = Math.max(hpBalance - outgoingDelegationsHp, 0);\n\n return {\n name: \"HP\",\n title: \"Hive Power\",\n price,\n accountBalance: +totalBalance.toFixed(3),\n apr: getAPR(dynamicProps),\n parts: [\n {\n name: \"hp_balance\",\n balance: hpBalance,\n },\n {\n name: \"available\",\n balance: +availableHp.toFixed(3),\n },\n {\n name: \"outgoing_delegations\",\n balance: outgoingDelegationsHp,\n },\n {\n name: \"incoming_delegations\",\n balance: incomingDelegationsHp,\n },\n ...(pendingPowerDownHp > 0\n ? [\n {\n name: \"pending_power_down\",\n balance: +pendingPowerDownHp.toFixed(3),\n },\n ]\n : []),\n ...(nextPowerDownHp > 0 && nextPowerDownHp !== pendingPowerDownHp\n ? [\n {\n name: \"next_power_down\",\n balance: +nextPowerDownHp.toFixed(3),\n },\n ]\n : []),\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { utils } from \"../../../hive-tx\";\nimport { HiveOperationGroup } from \"../types\";\nconst ops = utils.operations;\n\nexport const HIVE_ACCOUNT_OPERATION_GROUPS: Record<\n HiveOperationGroup,\n number[]\n> = {\n transfers: [\n ops.transfer,\n ops.transfer_to_savings,\n ops.transfer_from_savings,\n ops.cancel_transfer_from_savings,\n ops.recurrent_transfer,\n ops.fill_recurrent_transfer,\n ops.escrow_transfer,\n ops.fill_recurrent_transfer,\n ],\n \"market-orders\": [\n ops.fill_convert_request,\n ops.fill_order,\n ops.fill_collateralized_convert_request,\n ops.limit_order_create2,\n ops.limit_order_create,\n ops.limit_order_cancel,\n ],\n interests: [ops.interest],\n \"stake-operations\": [\n ops.return_vesting_delegation,\n ops.withdraw_vesting,\n ops.transfer_to_vesting,\n ops.set_withdraw_vesting_route,\n ops.update_proposal_votes,\n ops.fill_vesting_withdraw,\n ops.account_witness_proxy,\n ops.delegate_vesting_shares,\n ],\n rewards: [\n ops.author_reward,\n ops.curation_reward,\n ops.producer_reward,\n ops.claim_reward_balance,\n ops.comment_benefactor_reward,\n ops.liquidity_reward,\n ops.proposal_pay,\n ],\n \"\": [],\n};\n","import { utils } from \"../../../hive-tx\";\nimport type { HiveOperationName } from \"../types\";\n\nexport const HIVE_OPERATION_LIST = Object.keys(\n utils.operations\n) as HiveOperationName[];\n","import { utils } from \"../../../hive-tx\";\nimport type { HiveOperationName } from \"../types\";\n\nconst operationOrders = utils.operations as Record<\n HiveOperationName,\n number\n>;\n\nexport const HIVE_OPERATION_ORDERS = operationOrders;\n\nexport const HIVE_OPERATION_NAME_BY_ID: Record =\n Object.entries(operationOrders).reduce((acc, [name, id]) => {\n acc[id] = name as HiveOperationName;\n return acc;\n }, {} as Record);\n","import { callRPC } from \"../../../hive-tx\";\nimport { utils } from \"../../../hive-tx\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { HIVE_ACCOUNT_OPERATION_GROUPS } from \"../consts\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n HiveOperationFilterKey,\n HiveOperationFilterValue,\n HiveOperationGroup,\n HiveOperationName,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nconst operationOrders = utils.operations;\n\nfunction isHiveOperationName(value: string): value is HiveOperationName {\n return Object.prototype.hasOwnProperty.call(operationOrders, value);\n}\n\nexport function resolveHiveOperationFilters(filters: HiveOperationFilter): {\n filterKey: HiveOperationFilterKey;\n filterArgs: any[];\n} {\n const rawValues: HiveOperationFilterValue[] = Array.isArray(filters)\n ? filters\n : [filters];\n\n const hasAll = rawValues.includes(\"\" as HiveOperationGroup);\n\n const uniqueValues = Array.from(\n new Set(\n rawValues.filter(\n (value): value is HiveOperationFilterValue =>\n value !== undefined &&\n value !== null &&\n value !== (\"\" as HiveOperationGroup)\n )\n )\n );\n\n const filterKey: HiveOperationFilterKey =\n hasAll || uniqueValues.length === 0\n ? \"all\"\n : uniqueValues\n .map((value) => value.toString())\n .sort()\n .join(\"|\");\n\n const operationIds = new Set();\n\n if (!hasAll) {\n uniqueValues.forEach((value) => {\n if (value in HIVE_ACCOUNT_OPERATION_GROUPS) {\n HIVE_ACCOUNT_OPERATION_GROUPS[value as HiveOperationGroup].forEach(\n (id) => operationIds.add(id)\n );\n return;\n }\n\n if (isHiveOperationName(value)) {\n operationIds.add(operationOrders[value]);\n }\n });\n }\n\n const filterArgs = makeBitMaskFilter(Array.from(operationIds));\n\n return {\n filterKey,\n filterArgs,\n };\n}\n\n/**\n * The filter values the caller passed, minus the \"all\" sentinel. Group aliases are\n * kept as-is: they never equal an operation name, so they simply never match.\n *\n * Used by the per-asset `select` filters so an operation a caller deliberately\n * requested is never silently dropped just because the asset filter has no opinion\n * about it. Passing no filter at all keeps the historical behaviour: the asset's own\n * allow-list decides, and nothing extra leaks in.\n */\nexport function collectRequestedOperations(\n filters: HiveOperationFilter\n): Set {\n const rawValues = Array.isArray(filters) ? filters : [filters];\n return new Set(\n rawValues.filter(\n (value): value is HiveOperationFilterValue =>\n value !== undefined && value !== null && value !== (\"\" as HiveOperationGroup)\n )\n );\n}\n\n/**\n * Cursor for `condenser_api.get_account_history`.\n *\n * A page comes back in ASCENDING `num` order, so the OLDEST entry is at index 0 and\n * walking backwards means `page[0].num - 1`. Reading the LAST entry instead takes the\n * NEWEST row, which advances the window by a single operation per page (a page of 1000\n * overlaps its predecessor by 999) and, once `num` reaches 0, yields -1 — the \"newest\"\n * sentinel `initialPageParam` uses — so the walk restarts at the head of the history and\n * never terminates.\n */\nexport function getNextAccountHistoryPageParam(\n lastPage: HiveTransaction[] | undefined\n): number | undefined {\n if (!lastPage?.length) {\n return undefined;\n }\n\n const oldest = Number(lastPage[0]?.num ?? 0);\n return Number.isFinite(oldest) && oldest > 0 ? oldest - 1 : undefined;\n}\n\n/**\n * The `limit` to request for a given cursor.\n *\n * `condenser_api.get_account_history` asserts `start >= limit - 1`, because `start` is a\n * 0-based index into the account's operation list and the node walks `limit` entries back\n * from it. The cursor above is derived from `num` alone, so the last window before the\n * start of history is necessarily shorter than `limit`, and asking for the full `limit`\n * there fails the assert instead of returning the remaining rows.\n *\n * Narrowing the window to `pageParam + 1` asks for exactly what is left. The `-1`\n * sentinel (\"give me the newest\") is not an index and passes through untouched.\n */\nexport function resolveAccountHistoryLimit(\n pageParam: number,\n limit: number\n): number {\n if (!Number.isFinite(pageParam) || pageParam < 0) {\n return limit;\n }\n\n return Math.min(limit, pageParam + 1);\n}\n\nfunction makeBitMaskFilter(allowedOperations: number[]) {\n let low = 0n;\n let high = 0n;\n\n allowedOperations.forEach((operation) => {\n if (operation < 64) {\n low |= 1n << BigInt(operation);\n } else {\n high |= 1n << BigInt(operation - 64);\n }\n });\n\n return [\n low !== 0n ? low.toString() : null,\n high !== 0n ? high.toString() : null,\n ];\n}\n\nexport function getHiveAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterArgs, filterKey } = resolveHiveOperationFilters(filters);\n const requestedOperations = collectRequestedOperations(filters);\n\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive\", \"transactions\", username, limit, filterKey],\n initialPageParam: -1,\n getNextPageParam: getNextAccountHistoryPageParam,\n\n queryFn: async ({ pageParam }) => {\n const response = await callRPC(\n \"condenser_api.get_account_history\",\n [\n username,\n pageParam,\n resolveAccountHistoryLimit(Number(pageParam), limit),\n ...filterArgs,\n ]\n );\n\n return response.map(\n (x: any) =>\n ({\n num: x[0],\n type: x[1].op[0],\n timestamp: x[1].timestamp,\n trx_id: x[1].trx_id,\n ...x[1].op[1],\n }) satisfies HiveTransaction\n );\n },\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const hivePayout = parseAsset(\n (item as AuthorReward).hive_payout\n );\n return hivePayout.amount > 0;\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"transfer_to_vesting\":\n case \"recurrent_transfer\":\n return parseAsset(item.amount).symbol === \"HIVE\";\n\n case \"transfer_from_savings\" as HiveOperationName:\n // The completed withdrawal carries the same asset as the request that\n // opened it, so it needs the same guard. Without a case of its own it\n // falls to the default below, which has no symbol check.\n case \"fill_transfer_from_savings\" as HiveOperationName:\n return parseAsset((item as any).amount).symbol === \"HIVE\";\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"HIVE\"].includes(asset.symbol);\n\n case \"claim_reward_balance\":\n const rewardHive = parseAsset(\n (item as ClaimRewardBalance).reward_hive\n );\n return rewardHive.amount > 0;\n\n case \"curation_reward\":\n case \"cancel_transfer_from_savings\":\n case \"fill_order\":\n case \"limit_order_create\":\n case \"limit_order_cancel\":\n case \"fill_convert_request\":\n case \"fill_collateralized_convert_request\":\n return true;\n\n case \"limit_order_create2\" as HiveOperationName:\n return true;\n default:\n // Keep an operation the caller asked for by name. Without this the\n // filter UI advertises every operation while this switch silently\n // discards the ones it has no opinion about, so picking e.g.\n // `fill_transfer_from_savings` returns an empty list. Requests that\n // pass no filter still fall through to `false`, so the unfiltered\n // HIVE view is unchanged.\n return requestedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { parseAsset } from \"@/modules/core/utils\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n HiveOperationName,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport {\n collectRequestedOperations,\n getHiveAssetTransactionsQueryOptions,\n resolveHiveOperationFilters,\n} from \"./get-hive-asset-transactions-query-options\";\n\nexport function getHbdAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterKey } = resolveHiveOperationFilters(filters);\n const requestedOperations = collectRequestedOperations(filters);\n\n return infiniteQueryOptions({\n ...getHiveAssetTransactionsQueryOptions(username, limit, filters),\n queryKey: [\"assets\", \"hbd\", \"transactions\", username, limit, filterKey],\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const hbdPayout = parseAsset(\n (item as AuthorReward).hbd_payout\n );\n return hbdPayout.amount > 0;\n\n case \"claim_reward_balance\":\n const rewardHbd = parseAsset(\n (item as ClaimRewardBalance).reward_hbd\n );\n return rewardHbd.amount > 0;\n\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"transfer_to_vesting\":\n case \"recurrent_transfer\":\n return parseAsset(item.amount).symbol === \"HBD\";\n\n case \"transfer_from_savings\" as HiveOperationName:\n // The completed withdrawal carries the same asset as the request that\n // opened it, so it needs the same guard. Without a case of its own it\n // falls to the default below, which has no symbol check.\n case \"fill_transfer_from_savings\" as HiveOperationName:\n return parseAsset((item as any).amount).symbol === \"HBD\";\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"HBD\"].includes(asset.symbol);\n\n case \"cancel_transfer_from_savings\":\n case \"fill_order\":\n case \"limit_order_create\":\n case \"limit_order_cancel\":\n case \"fill_convert_request\":\n case \"fill_collateralized_convert_request\":\n case \"proposal_pay\":\n case \"interest\":\n return true;\n\n case \"limit_order_create2\" as HiveOperationName:\n return true;\n default:\n // See the HIVE options: keep an operation the caller named explicitly,\n // otherwise the filter UI offers operations this switch throws away.\n // Unfiltered requests still fall through to `false`.\n return requestedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { parseAsset } from \"@/modules/core/utils\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport {\n getHiveAssetTransactionsQueryOptions,\n resolveHiveOperationFilters,\n} from \"./get-hive-asset-transactions-query-options\";\n\nexport function getHivePowerAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterKey } = resolveHiveOperationFilters(filters);\n\n const userSelectedOperations = new Set(\n Array.isArray(filters) ? filters : [filters]\n );\n const hasAllFilter =\n userSelectedOperations.has(\"\" as any) || userSelectedOperations.size === 0;\n\n return infiniteQueryOptions({\n ...getHiveAssetTransactionsQueryOptions(username, limit, filters),\n queryKey: [\n \"assets\",\n \"hive-power\",\n \"transactions\",\n username,\n limit,\n filterKey,\n ],\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const vestingPayout = parseAsset(\n (item as AuthorReward).vesting_payout\n );\n return vestingPayout.amount > 0;\n\n case \"claim_reward_balance\":\n const rewardVests = parseAsset(\n (item as ClaimRewardBalance).reward_vests\n );\n return rewardVests.amount > 0;\n\n case \"transfer_to_vesting\":\n return true;\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"recurrent_transfer\":\n return [\"VESTS\", \"HP\"].includes(parseAsset(item.amount).symbol);\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"VESTS\", \"HP\"].includes(asset.symbol);\n\n case \"curation_reward\":\n case \"withdraw_vesting\":\n case \"delegate_vesting_shares\":\n case \"fill_vesting_withdraw\":\n case \"return_vesting_delegation\":\n case \"producer_reward\":\n case \"set_withdraw_vesting_route\":\n return true;\n default:\n return hasAllFilter || userSelectedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport type { HiveMarketMetric } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nfunction formatDate(date: Date): string {\n const pad = (n: number) => n.toString().padStart(2, \"0\");\n return `${date.getFullYear()}-${pad(date.getMonth() + 1)}-${pad(date.getDate())}T${pad(date.getHours())}:${pad(date.getMinutes())}:${pad(date.getSeconds())}`;\n}\n\nfunction subtractSeconds(date: Date, seconds: number): Date {\n return new Date(date.getTime() - seconds * 1000);\n}\n\nexport function getHiveAssetMetricQueryOptions(bucketSeconds = 86_400) {\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive\", \"metrics\", bucketSeconds],\n queryFn: async ({ pageParam: [startDate, endDate] }) => {\n const apiData: HiveMarketMetric[] = await callRPC(\"condenser_api.get_market_history\", [bucketSeconds, formatDate(startDate), formatDate(endDate)]\n );\n\n return apiData.map(({ hive, non_hive, open }) => ({\n close: non_hive.close / hive.close,\n open: non_hive.open / hive.open,\n low: non_hive.low / hive.low,\n high: non_hive.high / hive.high,\n volume: hive.volume,\n time: new Date(open),\n }));\n },\n initialPageParam: [\n subtractSeconds(new Date(), Math.max(100 * bucketSeconds, 28_800)),\n new Date(),\n ],\n getNextPageParam: (_, __, [prevStartDate]) => [\n subtractSeconds(prevStartDate, Math.max(100 * bucketSeconds, 28_800)),\n subtractSeconds(prevStartDate, bucketSeconds),\n ],\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { WithdrawRoute } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getHiveAssetWithdrawalRoutesQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive\", \"withdrawal-routes\", username],\n queryFn: () =>\n callRPC(\"condenser_api.get_withdraw_routes\", [\n username,\n \"outgoing\",\n ]) as Promise,\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { DelegatedVestingShare } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getHivePowerDelegatesInfiniteQueryOptions(\n username: string,\n limit = 50\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-power\", \"delegates\", username],\n enabled: !!username,\n queryFn: () =>\n callRPC(\"condenser_api.get_vesting_delegations\", [\n username,\n \"\",\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { getAccountDelegationsQueryOptions } from \"./get-account-delegations-query-options\";\nimport { toReceivedVestingShares } from \"../utils/received-vesting-shares\";\n\n/**\n * The same list as {@link getReceivedVestingSharesQueryOptions} under the key\n * the wallet's HP asset views use. Both read the HAF balance-api through the\n * shared account-delegations query, so neither depends on the Ecency\n * notification database.\n */\nexport function getHivePowerDelegatingsQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.assets.hivePowerDelegatings(username),\n enabled: !!username,\n queryFn: async () =>\n toReceivedVestingShares(\n username,\n // A page that shows the totals and the list asks twice within seconds;\n // a minute of freshness makes that one balance-api request.\n await getQueryClient().fetchQuery({\n ...getAccountDelegationsQueryOptions(username),\n staleTime: 60_000,\n }),\n ),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OrdersData } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get the internal HIVE/HBD market order book\n *\n * @param limit - Maximum number of orders to fetch (default: 500)\n */\nexport function getOrderBookQueryOptions(limit = 500) {\n return queryOptions({\n queryKey: [\"market\", \"order-book\", limit],\n queryFn: () =>\n callRPC(\"condenser_api.get_order_book\", [\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketStatistics } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HIVE/HBD market statistics from the blockchain\n */\nexport function getMarketStatisticsQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"statistics\"],\n queryFn: () =>\n callRPC(\"condenser_api.get_ticker\", []) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketCandlestickDataItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HIVE/HBD market history (candlestick data)\n *\n * @param seconds - Bucket size in seconds\n * @param startDate - Start date for the data\n * @param endDate - End date for the data\n */\nexport function getMarketHistoryQueryOptions(\n seconds: number,\n startDate: Date,\n endDate: Date\n) {\n const formatDate = (date: Date) => {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n };\n\n return queryOptions({\n queryKey: [\"market\", \"history\", seconds, startDate.getTime(), endDate.getTime()],\n queryFn: () =>\n callRPC(\"condenser_api.get_market_history\", [\n seconds,\n formatDate(startDate),\n formatDate(endDate),\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { HiveHbdStats, MarketCandlestickDataItem, MarketStatistics } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get combined HIVE/HBD statistics including price, 24h change, and volume\n */\nexport function getHiveHbdStatsQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"hive-hbd-stats\"],\n queryFn: async () => {\n // Get current market statistics\n const stats = (await callRPC(\"condenser_api.get_ticker\", [])) as MarketStatistics;\n\n // Get 24h market history\n const now = new Date();\n const oneDayAgo = new Date(now.getTime() - 86400000); // 24 hours ago\n\n const formatDate = (date: Date) => {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n };\n\n const dayChange = (await callRPC(\"condenser_api.get_market_history\", [86400, formatDate(oneDayAgo), formatDate(now)]\n )) as MarketCandlestickDataItem[];\n\n // Calculate stats\n const result: HiveHbdStats = {\n price: +stats.latest,\n close: dayChange[0] ? dayChange[0].non_hive.open / dayChange[0].hive.open : 0,\n high: dayChange[0] ? dayChange[0].non_hive.high / dayChange[0].hive.high : 0,\n low: dayChange[0] ? dayChange[0].non_hive.low / dayChange[0].hive.low : 0,\n percent: dayChange[0]\n ? 100 - ((dayChange[0].non_hive.open / dayChange[0].hive.open) * 100) / +stats.latest\n : 0,\n totalFromAsset: stats.hive_volume.split(\" \")[0],\n totalToAsset: stats.hbd_volume.split(\" \")[0],\n };\n\n return result;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketData } from \"../types\";\nimport { getBoundFetch } from \"@/modules/core\";\n\n/**\n * Get market chart data from CoinGecko API\n *\n * @param coin - Coin ID (e.g., \"hive\", \"bitcoin\")\n * @param vsCurrency - Currency to compare against (e.g., \"usd\", \"eur\")\n * @param fromTs - From timestamp (Unix timestamp in seconds)\n * @param toTs - To timestamp (Unix timestamp in seconds)\n */\nexport function getMarketDataQueryOptions(\n coin: string,\n vsCurrency: string,\n fromTs: string,\n toTs: string\n) {\n return queryOptions({\n queryKey: [\"market\", \"data\", coin, vsCurrency, fromTs, toTs],\n queryFn: async ({ signal }) => {\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/coins/${coin}/market_chart/range?vs_currency=${vsCurrency}&from=${fromTs}&to=${toTs}`;\n\n const response = await fetchApi(url, { signal });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch market data: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OrdersDataItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nfunction formatDate(date: Date) {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n}\n\nexport function getTradeHistoryQueryOptions(\n limit = 1000,\n startDate?: Date,\n endDate?: Date\n) {\n const end = endDate ?? new Date();\n const start =\n startDate ?? new Date(end.getTime() - 10 * 60 * 60 * 1000);\n\n return queryOptions({\n queryKey: [\"market\", \"trade-history\", limit, start.getTime(), end.getTime()],\n queryFn: () =>\n callRPC(\"condenser_api.get_trade_history\", [\n formatDate(start),\n formatDate(end),\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface FeedHistoryItem {\n id: number;\n current_median_history: {\n base: string;\n quote: string;\n };\n market_median_history: {\n base: string;\n quote: string;\n };\n current_min_history: {\n base: string;\n quote: string;\n };\n current_max_history: {\n base: string;\n quote: string;\n };\n price_history: Array<{\n base: string;\n quote: string;\n }>;\n}\n\n/**\n * Get feed history from the blockchain\n * Returns price feed history including median prices\n */\nexport function getFeedHistoryQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"feed-history\"],\n queryFn: async () => {\n try {\n const feedHistory = await callRPC(\"condenser_api.get_feed_history\", []);\n return feedHistory as FeedHistoryItem;\n } catch (error) {\n throw error;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface MedianHistoryPrice {\n base: string;\n quote: string;\n}\n\n/**\n * Get current median history price from the blockchain\n * Returns the current median price for HIVE/HBD conversion\n */\nexport function getCurrentMedianHistoryPriceQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"current-median-history-price\"],\n queryFn: async () => {\n try {\n const price = await callRPC(\"condenser_api.get_current_median_history_price\", []);\n return price as MedianHistoryPrice;\n } catch (error) {\n throw error;\n }\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildLimitOrderCreateOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface LimitOrderCreatePayload {\n amountToSell: string;\n minToReceive: string;\n fillOrKill: boolean;\n expiration: string;\n orderId: number;\n}\n\nexport function useLimitOrderCreate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"market\", \"limit-order-create\"],\n username,\n (payload) => [\n buildLimitOrderCreateOp(\n username!,\n payload.amountToSell,\n payload.minToReceive,\n payload.fillOrKill,\n payload.expiration,\n payload.orderId\n )\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.wallet.openOrders(username!),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildLimitOrderCancelOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface LimitOrderCancelPayload {\n orderId: number;\n}\n\nexport function useLimitOrderCancel(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"market\", \"limit-order-cancel\"],\n username,\n ({ orderId }) => [\n buildLimitOrderCancelOp(username!, orderId)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.wallet.openOrders(username!),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { MarketData } from \"./types\";\nimport { CurrencyRates } from \"@/modules/private-api/types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nasync function parseJsonResponse(response: Response): Promise {\n const data = (await response.json()) as T;\n if (!response.ok) {\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n return data;\n}\n\nexport async function getMarketData(\n coin: string,\n vsCurrency: string,\n fromTs: string,\n toTs: string\n): Promise {\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/coins/${coin}/market_chart/range?vs_currency=${vsCurrency}&from=${fromTs}&to=${toTs}`;\n const response = await fetchApi(url);\n return parseJsonResponse(response);\n}\n\nexport async function getCurrencyRate(cur: string): Promise {\n if (cur === \"hbd\") {\n return 1;\n }\n\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${cur}`;\n const response = await fetchApi(url);\n const data = await parseJsonResponse<{ hive_dollar: Record }>(response);\n return data.hive_dollar[cur];\n}\n\nexport async function getCurrencyTokenRate(currency: string, token: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost +\n `/private-api/market-data/${currency === \"hbd\" ? \"usd\" : currency}/${token}`\n );\n\n return parseJsonResponse(response);\n}\n\nexport async function getCurrencyRates(): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/market-data/latest\");\n return parseJsonResponse(response);\n}\n\nexport async function getHivePrice(): Promise<{ hive: { usd: number } }> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n \"https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd\"\n );\n return parseJsonResponse<{ hive: { usd: number } }>(response);\n}\n","import { ConfigManager, getBoundFetch } from \"@/modules/core\";\nimport type { HiveEngineOpenOrder } from \"./types\";\n\ntype EngineOrderBookEntry = {\n txId: string;\n timestamp: number;\n account: string;\n symbol: string;\n quantity: string;\n price: string;\n tokensLocked?: string;\n};\n\nconst ENGINE_RPC_HEADERS = { \"Content-type\": \"application/json\" };\n\nasync function engineRpc(payload: Record): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const response = await fetchApi(`${baseUrl}/private-api/engine-api`, {\n method: \"POST\",\n body: JSON.stringify(payload),\n headers: ENGINE_RPC_HEADERS,\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – request failed with ${response.status}`\n );\n }\n\n const data = (await response.json()) as { result: T };\n return data.result;\n}\n\nasync function engineRpcSafe(\n payload: Record,\n fallback: T\n): Promise {\n try {\n return await engineRpc(payload);\n } catch (e) {\n return fallback;\n }\n}\n\nexport async function getHiveEngineOrderBook(\n symbol: string,\n limit: number = 50\n): Promise<{ buy: T[]; sell: T[] }> {\n const baseParams = {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n query: { symbol },\n limit,\n offset: 0,\n },\n id: 1,\n };\n\n const [buy, sell] = await Promise.all([\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"buyBook\",\n indexes: [{ index: \"price\", descending: true }],\n },\n },\n []\n ),\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"sellBook\",\n indexes: [{ index: \"price\", descending: false }],\n },\n },\n []\n ),\n ]);\n\n const sortByPriceDesc = (items: T[]) =>\n items.sort((a, b) => {\n const left = Number((a as EngineOrderBookEntry).price ?? 0);\n const right = Number((b as EngineOrderBookEntry).price ?? 0);\n return right - left;\n });\n const sortByPriceAsc = (items: T[]) =>\n items.sort((a, b) => {\n const left = Number((a as EngineOrderBookEntry).price ?? 0);\n const right = Number((b as EngineOrderBookEntry).price ?? 0);\n return left - right;\n });\n\n return {\n buy: sortByPriceDesc(buy),\n sell: sortByPriceAsc(sell),\n };\n}\n\nexport async function getHiveEngineTradeHistory>(\n symbol: string,\n limit: number = 50\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n table: \"tradesHistory\",\n query: { symbol },\n limit,\n offset: 0,\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineOpenOrders(\n account: string,\n symbol: string,\n limit: number = 100\n): Promise {\n const baseParams = {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n query: { symbol, account },\n limit,\n offset: 0,\n },\n id: 1,\n };\n\n const [buyRaw, sellRaw] = await Promise.all([\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"buyBook\",\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n },\n []\n ),\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"sellBook\",\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n },\n []\n ),\n ]);\n\n const formatTotal = (quantity: string, price: string) =>\n (Number(quantity || 0) * Number(price || 0)).toFixed(8);\n\n const buy: HiveEngineOpenOrder[] = buyRaw.map((order) => ({\n id: order.txId,\n type: \"buy\",\n account: order.account,\n symbol: order.symbol,\n quantity: order.quantity,\n price: order.price,\n total: order.tokensLocked ?? formatTotal(order.quantity, order.price),\n timestamp: Number(order.timestamp ?? 0),\n }));\n\n const sell: HiveEngineOpenOrder[] = sellRaw.map((order) => ({\n id: order.txId,\n type: \"sell\",\n account: order.account,\n symbol: order.symbol,\n quantity: order.quantity,\n price: order.price,\n total: formatTotal(order.quantity, order.price),\n timestamp: Number(order.timestamp ?? 0),\n }));\n\n return [...buy, ...sell].sort((a, b) => b.timestamp - a.timestamp) as T[];\n}\n\n/**\n * Market metrics, optionally narrowed to one symbol or to a list of them.\n *\n * An unfiltered call is served from a single page – the node caps `find` at 1000 rows\n * while Hive engine has far more traded tokens than that – so callers that only care\n * about specific symbols must pass them. Scanning the unfiltered page for a symbol\n * silently reports \"no market\" for everything outside it.\n */\nexport async function getHiveEngineMetrics>(\n symbol?: string | string[],\n account?: string\n): Promise {\n if (Array.isArray(symbol) && symbol.length === 0) {\n return [];\n }\n\n const symbolQuery = Array.isArray(symbol)\n ? { symbol: { $in: symbol } }\n : symbol\n ? { symbol }\n : {};\n\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n table: \"metrics\",\n query: {\n ...symbolQuery,\n ...(account ? { account } : {}),\n },\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokensMarket>(\n account?: string,\n symbol?: string | string[]\n): Promise {\n return getHiveEngineMetrics(symbol, account);\n}\n\nexport async function getHiveEngineTokensBalances>(\n username: string\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"tokens\",\n table: \"balances\",\n query: {\n account: username,\n },\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokensMetadata>(\n tokens: string[]\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"tokens\",\n table: \"tokens\",\n query: {\n symbol: { $in: tokens },\n },\n },\n id: 2,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokenTransactions>(\n username: string,\n symbol: string,\n limit: number,\n offset: number\n): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/engine-account-history\", baseUrl);\n url.searchParams.set(\"account\", username);\n url.searchParams.set(\"symbol\", symbol);\n url.searchParams.set(\"limit\", limit.toString());\n url.searchParams.set(\"offset\", offset.toString());\n\n const response = await fetchApi(url.toString(), {\n method: \"GET\",\n headers: { \"Content-type\": \"application/json\" },\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – account history failed with ${response.status}`\n );\n }\n\n return (await response.json()) as T[];\n}\n\nexport async function getHiveEngineTokenMetrics>(\n symbol: string,\n interval = \"daily\"\n): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/engine-chart-api\", baseUrl);\n url.searchParams.set(\"symbol\", symbol);\n url.searchParams.set(\"interval\", interval);\n\n const response = await fetchApi(url.toString(), {\n headers: { \"Content-type\": \"application/json\" },\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – chart failed with ${response.status}`\n );\n }\n\n return (await response.json()) as T[];\n}\n\nexport async function getHiveEngineUnclaimedRewards>(\n username: string\n): Promise> {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const response = await fetchApi(\n `${baseUrl}/private-api/engine-reward-api/${username}?hive=1`\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – rewards failed with ${response.status}`\n );\n }\n\n return (await response.json()) as Record;\n}\n","import { getHiveEngineTokensBalances } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenBalance } from \"../types\";\n\nexport function getHiveEngineTokensBalancesQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"balances\", username] as const,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensBalances(username);\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineMarketResponse } from \"../types\";\nimport { getHiveEngineTokensMarket } from \"../requests\";\n\nexport function getHiveEngineTokensMarketQueryOptions() {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"markets\"],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensMarket();\n },\n });\n}\n","import { getHiveEngineTokensMetadata } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenMetadataResponse } from \"../types\";\n\nexport function getHiveEngineTokensMetadataQueryOptions(tokens: string[]) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"metadata-list\", tokens] as const,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensMetadata(tokens);\n },\n });\n}\n","import { getHiveEngineTokenTransactions } from \"../requests\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTransaction } from \"../types\";\n\nexport function getHiveEngineTokenTransactionsQueryOptions(\n username: string | undefined,\n symbol: string,\n limit = 20\n) {\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol, \"transactions\", username],\n enabled: !!symbol && !!username,\n initialPageParam: 0,\n queryFn: async ({ pageParam }) => {\n if (!symbol || !username) {\n throw new Error(\n \"[SDK][HiveEngine] – token or username missed\"\n );\n }\n return getHiveEngineTokenTransactions(\n username,\n symbol,\n limit,\n pageParam as number\n );\n },\n getNextPageParam: (lastPage, _allPages, lastPageParam) =>\n (lastPage?.length ?? 0) === limit ? (lastPageParam as number) + limit : undefined,\n getPreviousPageParam: (_firstPage, _allPages, firstPageParam) =>\n (firstPageParam as number) > 0 ? (firstPageParam as number) - limit : undefined,\n });\n}\n","import { getHiveEngineTokenMetrics } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineMetric } from \"../types\";\n\nexport function getHiveEngineTokensMetricsQueryOptions(\n symbol: string,\n interval = \"daily\"\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokenMetrics(symbol, interval);\n },\n });\n}\n","import { getHiveEngineUnclaimedRewards } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenStatus } from \"../types\";\n\nexport function getHiveEngineUnclaimedRewardsQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"unclaimed\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n enabled: !!username,\n queryFn: async () => {\n try {\n const data = await getHiveEngineUnclaimedRewards(\n username as string\n );\n return Object.values(data).filter(\n ({ pending_token }) => pending_token > 0\n );\n } catch (e) {\n return [];\n }\n },\n });\n}\n","import { getHiveEngineTokensMarket } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenInfo } from \"../types\";\n\nexport function getAllHiveEngineTokensQueryOptions(\n account?: string,\n symbol?: string | string[]\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"all-tokens\", account, symbol] as const,\n queryFn: async () => {\n return getHiveEngineTokensMarket(account, symbol);\n },\n });\n}\n","interface Options {\n fractionDigits?: number;\n prefix?: string;\n suffix?: string;\n}\n\nexport function formattedNumber(\n value: number | string,\n options: Options | undefined = undefined\n) {\n let opts: Options = {\n fractionDigits: 3,\n prefix: \"\",\n suffix: \"\",\n };\n\n if (options) {\n opts = { ...opts, ...options };\n }\n\n const { fractionDigits, prefix, suffix } = opts;\n\n let out = \"\";\n\n if (prefix) out += prefix + \" \";\n // turn too small values to zero. Bug: https://github.com/adamwdraper/Numeral-js/issues/563\n const av = Math.abs(parseFloat(value.toString())) < 0.0001 ? 0 : value;\n const num = typeof av === \"string\" ? parseFloat(av) : av;\n out += num.toLocaleString(\"en-US\", {\n minimumFractionDigits: fractionDigits,\n maximumFractionDigits: fractionDigits,\n useGrouping: true,\n });\n if (suffix) out += \" \" + suffix;\n\n return out;\n}\n","import { formattedNumber } from \"./formatted-number\";\n\ninterface HiveEngineTokenProps {\n symbol: string;\n name: string;\n icon: string;\n precision: number;\n stakingEnabled: boolean;\n delegationEnabled: boolean;\n balance: string;\n stake: string;\n delegationsIn: string;\n delegationsOut: string;\n usdValue: number;\n}\n\nexport class HiveEngineToken {\n symbol: string;\n name?: string;\n icon?: string;\n\n precision?: number;\n stakingEnabled?: boolean;\n delegationEnabled?: boolean;\n balance: number;\n stake: number;\n stakedBalance: number;\n delegationsIn: number;\n delegationsOut: number;\n usdValue: number;\n\n constructor(props: HiveEngineTokenProps) {\n this.symbol = props.symbol;\n this.name = props.name || \"\";\n this.icon = props.icon || \"\";\n\n this.precision = props.precision || 0;\n this.stakingEnabled = props.stakingEnabled || false;\n this.delegationEnabled = props.delegationEnabled || false;\n this.balance = parseFloat(props.balance) || 0;\n this.stake = parseFloat(props.stake) || 0;\n this.delegationsIn = parseFloat(props.delegationsIn) || 0;\n this.delegationsOut = parseFloat(props.delegationsOut) || 0;\n this.stakedBalance =\n this.stake + this.delegationsIn - this.delegationsOut;\n this.usdValue = props.usdValue;\n }\n\n hasDelegations = (): boolean => {\n if (!this.delegationEnabled) {\n return false;\n }\n\n return this.delegationsIn > 0 && this.delegationsOut > 0;\n };\n\n delegations = (): string => {\n if (!this.hasDelegations()) {\n return \"\";\n }\n\n return `(${formattedNumber(this.stake, {\n fractionDigits: this.precision,\n })} + ${formattedNumber(this.delegationsIn, {\n fractionDigits: this.precision,\n })} - ${formattedNumber(this.delegationsOut, {\n fractionDigits: this.precision,\n })})`;\n };\n\n staked = (): string => {\n if (!this.stakingEnabled) {\n return \"-\";\n }\n\n if (this.stakedBalance < 0.0001) {\n return this.stakedBalance.toString();\n }\n\n return formattedNumber(this.stakedBalance, {\n fractionDigits: this.precision,\n });\n };\n\n balanced = (): string => {\n if (this.balance < 0.0001) {\n return this.balance.toString();\n }\n\n return formattedNumber(this.balance, { fractionDigits: this.precision });\n };\n}\n","import {\n getHiveEngineTokensBalances,\n getHiveEngineTokensMarket,\n getHiveEngineTokensMetadata,\n} from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type {\n HiveEngineTokenBalance,\n Token,\n TokenMetadata,\n HiveEngineTokenInfo,\n} from \"../types\";\nimport { HiveEngineToken } from \"../utils\";\n\ninterface DynamicProps {\n base: number;\n quote: number;\n}\n\nexport function getHiveEngineBalancesWithUsdQueryOptions(\n account: string,\n dynamicProps?: DynamicProps,\n allTokens?: HiveEngineTokenInfo[]\n) {\n return queryOptions({\n queryKey: [\n \"assets\",\n \"hive-engine\",\n \"balances-with-usd\",\n account,\n dynamicProps,\n allTokens,\n ] as const,\n queryFn: async () => {\n if (!account) {\n throw new Error(\"[HiveEngine] No account in a balances query\");\n }\n\n const balances = await getHiveEngineTokensBalances(account);\n\n const tokens = await getHiveEngineTokensMetadata(\n balances.map((t) => t.symbol)\n );\n\n const pricePerHive = dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0;\n const providedMetrics: ReadonlyArray = Array.isArray(\n allTokens\n )\n ? allTokens\n : [];\n\n // Whatever the caller passed comes from an unfiltered metrics call, which the node\n // caps at 1000 rows – held tokens outside that page have no price and used to be\n // valued at zero, understating the wallet. Ask for the missing ones by symbol.\n const unpricedSymbols = balances\n .map((balance) => balance.symbol)\n .filter(\n (symbol) =>\n symbol !== \"SWAP.HIVE\" &&\n !providedMetrics.some((metric) => metric.symbol === symbol)\n );\n\n const metrics: ReadonlyArray = [\n ...providedMetrics,\n ...(unpricedSymbols.length\n ? await getHiveEngineTokensMarket(\n undefined,\n unpricedSymbols\n )\n : []),\n ];\n\n return balances.map((balance) => {\n const token = tokens.find((t) => t.symbol === balance.symbol);\n let tokenMetadata: TokenMetadata | undefined;\n\n if (token?.metadata) {\n try {\n tokenMetadata = JSON.parse(token.metadata) as TokenMetadata;\n } catch {\n tokenMetadata = undefined;\n }\n }\n\n const metric = metrics.find((m) => m.symbol === balance.symbol);\n const lastPrice = Number(metric?.lastPrice ?? \"0\");\n const balanceAmount = Number(balance.balance);\n\n const usdValue =\n balance.symbol === \"SWAP.HIVE\"\n ? pricePerHive * balanceAmount\n : lastPrice === 0\n ? 0\n : Number(\n (lastPrice * pricePerHive * balanceAmount).toFixed(10)\n );\n\n return new HiveEngineToken({\n symbol: balance.symbol,\n name: token?.name ?? balance.symbol,\n icon: tokenMetadata?.icon ?? \"\",\n precision: token?.precision ?? 0,\n stakingEnabled: token?.stakingEnabled ?? false,\n delegationEnabled: token?.delegationEnabled ?? false,\n balance: balance.balance,\n stake: balance.stake,\n delegationsIn: balance.delegationsIn,\n delegationsOut: balance.delegationsOut,\n usdValue,\n });\n });\n },\n enabled: !!account,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient } from \"@/modules/core\";\nimport type { GeneralAssetInfo } from \"@/modules/wallet/types\";\nimport { getHiveEngineTokensMetadataQueryOptions } from \"./get-hive-engine-tokens-metadata-query-options\";\nimport { getHiveEngineTokensBalancesQueryOptions } from \"./get-hive-engine-tokens-balances-query-options\";\nimport { getAllHiveEngineTokensQueryOptions } from \"./get-all-hive-engine-tokens-query-options\";\nimport { getHiveAssetGeneralInfoQueryOptions } from \"@/modules/wallet/queries/get-hive-asset-general-info-query-options\";\n\nexport function getHiveEngineTokenGeneralInfoQueryOptions(\n username?: string,\n symbol?: string\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol, \"general-info\", username],\n enabled: !!symbol && !!username,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n if (!symbol || !username) {\n throw new Error(\n \"[SDK][HiveEngine] – token or username missed\"\n );\n }\n const queryClient = getQueryClient();\n const hiveQuery = getHiveAssetGeneralInfoQueryOptions(username);\n await queryClient.prefetchQuery(hiveQuery);\n const hiveData = queryClient.getQueryData(\n hiveQuery.queryKey\n );\n\n const metadataList = await queryClient.ensureQueryData(\n getHiveEngineTokensMetadataQueryOptions([symbol])\n );\n\n const balanceList = await queryClient.ensureQueryData(\n getHiveEngineTokensBalancesQueryOptions(username)\n );\n\n // Scoped to this symbol: the unfiltered metrics call is capped at 1000 rows, so a\n // token outside that page reported no market and rendered a zero price.\n const marketList = await queryClient.ensureQueryData(\n getAllHiveEngineTokensQueryOptions(undefined, symbol)\n );\n\n const metadata = metadataList?.find((i) => i.symbol === symbol);\n const balance = balanceList?.find((i) => i.symbol === symbol);\n const market = marketList?.find((i) => i.symbol === symbol);\n\n const lastPrice = +(market?.lastPrice ?? \"0\");\n\n const liquidBalance = parseFloat(balance?.balance ?? \"0\");\n const stakedBalance = parseFloat(balance?.stake ?? \"0\");\n const unstakingBalance = parseFloat(balance?.pendingUnstake ?? \"0\");\n\n const parts: GeneralAssetInfo[\"parts\"] = [\n { name: \"liquid\", balance: liquidBalance },\n { name: \"staked\", balance: stakedBalance },\n ];\n\n if (unstakingBalance > 0) {\n parts.push({ name: \"unstaking\", balance: unstakingBalance });\n }\n\n return {\n name: symbol,\n title: metadata?.name ?? \"\",\n price: lastPrice === 0 ? 0 : Number(lastPrice * (hiveData?.price ?? 0)),\n accountBalance: liquidBalance + stakedBalance,\n layer: \"ENGINE\",\n parts,\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { PointTransaction } from \"../types/point-transaction\";\n\ninterface PointsResponse {\n points: string;\n unclaimed_points: string;\n}\n\nexport function getPointsQueryOptions(username?: string, filter = 0) {\n return queryOptions({\n queryKey: [\"points\", username, filter],\n queryFn: async () => {\n if (!username) {\n throw new Error(\"Get points query – username wasn't provided\");\n }\n\n const name = username.replace(\"@\", \"\");\n\n // Get points\n const pointsResponse = await fetch(CONFIG.privateApiHost + \"/private-api/points\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username: name }),\n });\n\n if (!pointsResponse.ok) {\n throw new Error(`Failed to fetch points: ${pointsResponse.status}`);\n }\n\n const points = (await pointsResponse.json()) as PointsResponse;\n\n // Get transactions\n const transactionsResponse = await fetch(\n CONFIG.privateApiHost + \"/private-api/point-list\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username: name, type: filter }),\n }\n );\n\n if (!transactionsResponse.ok) {\n throw new Error(`Failed to fetch point transactions: ${transactionsResponse.status}`);\n }\n\n const transactions = (await transactionsResponse.json()) as PointTransaction[];\n\n return {\n points: points.points,\n uPoints: points.unclaimed_points,\n transactions,\n } as const;\n },\n staleTime: 30000,\n refetchOnMount: true,\n enabled: !!username,\n });\n}\n","import { getQueryClient } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"@/modules/wallet/types\";\nimport { getPointsQueryOptions } from \"./get-points-query-options\";\n\nexport function getPointsAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"points\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getPointsQueryOptions(username));\n const data = getQueryClient().getQueryData(\n getPointsQueryOptions(username).queryKey\n );\n return {\n name: \"POINTS\",\n title: \"Ecency Points\",\n price: 0.002,\n accountBalance: +(data?.points ?? 0),\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { CONFIG } from \"@/modules/core/config\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { PointTransaction } from \"../types\";\nimport { PointTransactionType } from \"../types\";\nimport type { GeneralAssetTransaction } from \"@/modules/wallet/types\";\n\nexport function getPointsAssetTransactionsQueryOptions(\n username: string | undefined,\n type?: PointTransactionType\n) {\n return queryOptions({\n queryKey: [\"assets\", \"points\", \"transactions\", username, type],\n queryFn: async () => {\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/point-list`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n username,\n type: type ?? 0,\n }),\n }\n );\n const data = (await response.json()) as PointTransaction[];\n return data.map(({ created, type, amount, id, sender, receiver, memo }) => ({\n created: new Date(created),\n type,\n results: [\n {\n amount: parseFloat(amount),\n asset: \"POINTS\",\n },\n ],\n id,\n from: sender ?? undefined,\n to: receiver ?? undefined,\n memo: memo ?? undefined,\n })) satisfies GeneralAssetTransaction[];\n },\n });\n}\n","import { getQueryClient } from \"@/modules/core\";\nimport { getCurrencyRate } from \"@/modules/market\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { getHiveAssetGeneralInfoQueryOptions } from \"./get-hive-asset-general-info-query-options\";\nimport { getHbdAssetGeneralInfoQueryOptions } from \"./get-hbd-asset-general-info-query-options\";\nimport { getHivePowerAssetGeneralInfoQueryOptions } from \"./get-hive-power-asset-general-info-query-options\";\nimport { getHiveEngineTokensBalancesQueryOptions } from \"@/modules/hive-engine/queries\";\nimport { getHiveEngineTokenGeneralInfoQueryOptions } from \"@/modules/hive-engine/queries\";\nimport { getPointsAssetGeneralInfoQueryOptions } from \"@/modules/points/queries\";\nimport {\n getPortfolioQueryOptions,\n type PortfolioResponse,\n type PortfolioWalletItem,\n} from \"./get-portfolio-query-options\";\n\ninterface Options {\n refetch?: boolean;\n currency?: string;\n}\n\nexport function getAccountWalletAssetInfoQueryOptions(\n username: string,\n asset: string,\n options: Options = { refetch: false }\n) {\n const queryClient = getQueryClient();\n const currency = options.currency ?? \"usd\";\n\n const fetchQuery = async (qo: any) => {\n if (options.refetch) {\n await queryClient.fetchQuery(qo);\n } else {\n await queryClient.prefetchQuery(qo);\n }\n return queryClient.getQueryData(qo.queryKey);\n };\n\n const convertPriceToUserCurrency = async (\n assetInfo: GeneralAssetInfo | undefined\n ): Promise => {\n if (!assetInfo || currency === \"usd\") {\n return assetInfo;\n }\n\n try {\n const conversionRate = await getCurrencyRate(currency);\n return {\n ...assetInfo,\n price: assetInfo.price * conversionRate,\n };\n } catch (error) {\n console.warn(`Failed to convert price from USD to ${currency}:`, error);\n return assetInfo;\n }\n };\n\n const portfolioQuery = getPortfolioQueryOptions(username, currency, true);\n\n const getPortfolioAssetInfo = async () => {\n try {\n const portfolio: PortfolioResponse = await queryClient.fetchQuery(portfolioQuery);\n const assetItem = portfolio.wallets.find(\n (item: PortfolioWalletItem) =>\n item.symbol.toUpperCase() === asset.toUpperCase()\n );\n\n if (!assetItem) return undefined;\n\n const parts: Array<{ name: string; balance: number }> = [];\n\n if (assetItem.liquid !== undefined && assetItem.liquid !== null) {\n parts.push({ name: \"liquid\", balance: assetItem.liquid });\n }\n\n if (assetItem.staked !== undefined && assetItem.staked !== null && assetItem.staked > 0) {\n parts.push({ name: \"staked\", balance: assetItem.staked });\n }\n\n if (assetItem.savings !== undefined && assetItem.savings !== null && assetItem.savings > 0) {\n parts.push({ name: \"savings\", balance: assetItem.savings });\n }\n\n if (assetItem.extraData && Array.isArray(assetItem.extraData)) {\n for (const extraItem of assetItem.extraData) {\n if (!extraItem || typeof extraItem !== \"object\") continue;\n\n const dataKey = extraItem.dataKey;\n const value = extraItem.value;\n\n if (typeof value === \"string\") {\n const cleanValue = value.replace(/,/g, \"\");\n const match = cleanValue.match(/[+-]?\\s*(\\d+(?:\\.\\d+)?)/);\n if (match) {\n const numValue = Math.abs(Number.parseFloat(match[1]));\n\n if (dataKey === \"delegated_hive_power\") {\n parts.push({ name: \"outgoing_delegations\", balance: numValue });\n } else if (dataKey === \"received_hive_power\") {\n parts.push({ name: \"incoming_delegations\", balance: numValue });\n } else if (dataKey === \"powering_down_hive_power\") {\n parts.push({ name: \"pending_power_down\", balance: numValue });\n }\n }\n }\n }\n }\n\n return {\n name: assetItem.symbol,\n title: assetItem.name,\n price: assetItem.fiatRate,\n accountBalance: assetItem.balance,\n apr: assetItem.apr?.toString(),\n layer: assetItem.layer,\n pendingRewards: assetItem.pendingRewards,\n parts,\n } as GeneralAssetInfo;\n } catch {\n return undefined;\n }\n };\n\n return queryOptions({\n queryKey: [\"ecency-wallets\", \"asset-info\", username, asset, currency],\n queryFn: async () => {\n const portfolioAssetInfo = await getPortfolioAssetInfo();\n\n if (portfolioAssetInfo && portfolioAssetInfo.price > 0) {\n return portfolioAssetInfo;\n }\n\n let assetInfo: GeneralAssetInfo | undefined;\n\n if (asset === \"HIVE\") {\n assetInfo = await fetchQuery(getHiveAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"HP\") {\n assetInfo = await fetchQuery(getHivePowerAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"HBD\") {\n assetInfo = await fetchQuery(getHbdAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"POINTS\") {\n assetInfo = await fetchQuery(getPointsAssetGeneralInfoQueryOptions(username));\n } else {\n // Check if it's a Hive Engine token\n const balances = await queryClient.ensureQueryData(\n getHiveEngineTokensBalancesQueryOptions(username)\n );\n\n if (balances.some((balance) => balance.symbol === asset)) {\n assetInfo = await fetchQuery(\n getHiveEngineTokenGeneralInfoQueryOptions(username, asset)\n );\n } else if (portfolioAssetInfo) {\n // Unknown asset but portfolio has data — use it as-is\n return portfolioAssetInfo;\n } else {\n throw new Error(\n `[SDK][Wallet] – unrecognized asset \"${asset}\"`\n );\n }\n }\n\n // If portfolio had rich data (parts, balance) but zero price,\n // merge the fallback price into the portfolio data\n if (portfolioAssetInfo && assetInfo && assetInfo.price > 0) {\n const converted = await convertPriceToUserCurrency(assetInfo);\n return {\n ...portfolioAssetInfo,\n price: converted!.price,\n };\n }\n\n return await convertPriceToUserCurrency(assetInfo);\n },\n });\n}\n","export enum AssetOperation {\n // Common\n Transfer = \"transfer\",\n\n // APR\n TransferToSavings = \"transfer-saving\",\n WithdrawFromSavings = \"withdraw-saving\",\n Delegate = \"delegate\",\n PowerUp = \"power-up\",\n PowerDown = \"power-down\",\n WithdrawRoutes = \"withdraw-routes\",\n ClaimInterest = \"claim-interest\",\n Swap = \"swap\",\n Convert = \"convert\",\n\n // Points\n Gift = \"gift\",\n Promote = \"promote\",\n Claim = \"claim\",\n Buy = \"buy\",\n\n // Layer 2\n Stake = \"stake\",\n Unstake = \"unstake\",\n Undelegate = \"undelegate\",\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for transferring tokens.\n */\nexport interface TransferPayload {\n /** Recipient account */\n to: string;\n /** Amount with asset symbol (e.g., \"1.000 HIVE\", \"5.000 HBD\") */\n amount: string;\n /** Transfer memo */\n memo: string;\n}\n\n/**\n * React Query mutation hook for transferring tokens.\n *\n * This mutation broadcasts a transfer operation to send HIVE or HBD\n * to another account. **Requires ACTIVE authority**.\n *\n * Uses `useBroadcastMutation` with the smart auth strategy:\n * - Adapter determines login type and dispatches to appropriate method\n * - If active key not available (common on web), triggers `showAuthUpgradeUI`\n * - Supports keychain, hivesigner, hiveauth, and direct key signing\n *\n * @param username - The username sending the transfer (required for broadcast)\n * @param auth - Authentication context with platform adapter\n *\n * @returns React Query mutation result\n */\nexport function useTransfer(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer\"],\n username,\n (payload) => [\n buildTransferOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildPointTransferOp } from \"@/modules/operations/builders\";\n\nexport interface TransferPointPayload {\n to: string;\n amount: string;\n memo: string;\n}\n\n/**\n * React Query mutation hook for transferring Ecency points.\n *\n * Uses `ecency_point_transfer` custom_json operation with ACTIVE authority.\n */\nexport function useTransferPoint(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-point\"],\n username,\n (payload) => [\n buildPointTransferOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildDelegateVestingSharesOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for delegating Hive Power (vesting shares).\n */\nexport interface DelegateVestingSharesPayload {\n /** Account receiving HP delegation */\n delegatee: string;\n /** Amount of VESTS to delegate (e.g., \"1000.000000 VESTS\"). Use \"0.000000 VESTS\" to remove delegation. */\n vestingShares: string;\n}\n\n/**\n * React Query mutation hook for delegating Hive Power (HP).\n *\n * This mutation broadcasts a delegate_vesting_shares operation to delegate HP\n * to another account. **Requires ACTIVE authority**, not posting.\n *\n * @param username - The username delegating HP (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **IMPORTANT: Active Authority Required**\n * - Delegation operations require ACTIVE key, not posting key\n * - Make sure your auth adapter provides getActiveKey() method\n * - Keychain/HiveAuth will prompt for Active authority\n *\n * **Delegation Mechanics:**\n * - Delegated HP can be used by the delegatee for resource credits\n * - Delegatee CANNOT power down or transfer the delegated HP\n * - Delegation can be removed by setting vestingShares to \"0.000000 VESTS\"\n * - Removing delegation has a 5-day cooldown before HP returns to delegator\n *\n * **Post-Broadcast Actions:**\n * - Invalidates delegations list cache to show updated delegation\n * - Invalidates account data for both delegator and delegatee\n *\n * @example\n * ```typescript\n * const delegateMutation = useDelegateVestingShares(username, {\n * adapter: {\n * ...myAdapter,\n * getActiveKey: async (username) => getActiveKeyFromStorage(username)\n * },\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Delegate HP\n * delegateMutation.mutate({\n * delegatee: 'alice',\n * vestingShares: '1000.000000 VESTS'\n * });\n *\n * // Remove delegation\n * delegateMutation.mutate({\n * delegatee: 'alice',\n * vestingShares: '0.000000 VESTS'\n * });\n * ```\n */\nexport function useDelegateVestingShares(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-vesting-shares\"],\n username,\n (payload) => [\n buildDelegateVestingSharesOp(\n username!,\n payload.delegatee,\n payload.vestingShares\n )\n ],\n async (_result, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.delegatee),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active', // IMPORTANT: Active authority required\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildSetWithdrawVestingRouteOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for setting withdraw vesting route.\n */\nexport interface SetWithdrawVestingRoutePayload {\n /** Account receiving withdrawn vesting */\n toAccount: string;\n /** Percentage to route (0-10000, where 10000 = 100%). Already scaled. */\n percent: number;\n /** Auto convert to vesting (power up) */\n autoVest: boolean;\n}\n\n/**\n * React Query mutation hook for setting withdraw vesting route.\n *\n * This mutation broadcasts a set_withdraw_vesting_route operation to configure\n * where withdrawn VESTS (power down) are sent. **Requires ACTIVE authority**, not posting.\n *\n * @param username - The username setting withdraw route (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **IMPORTANT: Active Authority Required**\n * - Withdraw route operations require ACTIVE key, not posting key\n * - Make sure your auth adapter provides getActiveKey() method\n * - Keychain/HiveAuth will prompt for Active authority\n *\n * **Withdraw Route Mechanics:**\n * - Routes a percentage of power down (withdraw_vesting) to another account\n * - Percent must be between 0-10000 (where 10000 = 100%)\n * - Multiple routes can be set, total cannot exceed 100%\n * - autoVest=true converts withdrawn VESTS to HP in destination account\n * - autoVest=false converts withdrawn VESTS to liquid HIVE\n *\n * **Post-Broadcast Actions:**\n * - Invalidates withdraw routes cache to show updated routes\n * - Invalidates account data for both accounts\n *\n * @example\n * ```typescript\n * const setRouteMutation = useSetWithdrawVestingRoute(username, {\n * adapter: {\n * ...myAdapter,\n * getActiveKey: async (username) => getActiveKeyFromStorage(username)\n * },\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Route 50% of power down to another account (auto vest)\n * setRouteMutation.mutate({\n * toAccount: 'alice',\n * percent: 5000, // 50% (already scaled)\n * autoVest: true\n * });\n *\n * // Route 100% of power down to another account (liquid HIVE)\n * setRouteMutation.mutate({\n * toAccount: 'bob',\n * percent: 10000, // 100% (already scaled)\n * autoVest: false\n * });\n * ```\n */\nexport function useSetWithdrawVestingRoute(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"set-withdraw-vesting-route\"],\n username,\n (payload) => [\n buildSetWithdrawVestingRouteOp(\n username!,\n payload.toAccount,\n payload.percent,\n payload.autoVest\n )\n ],\n async (_result, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.wallet.withdrawRoutes(username!),\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.toAccount)\n ]);\n },\n auth,\n 'active', // IMPORTANT: Active authority required\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface TransferEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n memo: string;\n}\n\nexport function useTransferEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"transfer\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n memo: payload.memo\n }\n });\n return [[\"custom_json\", {\n required_auths: [username!],\n required_posting_auths: [],\n id: \"ssc-mainnet-hive\",\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferToSavingsOp } from \"@/modules/operations/builders\";\n\nexport interface TransferToSavingsPayload {\n to: string;\n amount: string;\n memo: string;\n}\n\nexport function useTransferToSavings(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-to-savings\"],\n username,\n (payload) => [\n buildTransferToSavingsOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferFromSavingsOp } from \"@/modules/operations/builders\";\n\nexport interface TransferFromSavingsPayload {\n to: string;\n amount: string;\n memo: string;\n requestId: number;\n}\n\nexport function useTransferFromSavings(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-from-savings\"],\n username,\n (payload) => [\n buildTransferFromSavingsOp(username!, payload.to, payload.amount, payload.memo, payload.requestId)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferToVestingOp } from \"@/modules/operations/builders\";\n\nexport interface TransferToVestingPayload {\n to: string;\n amount: string;\n}\n\nexport function useTransferToVesting(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-to-vesting\"],\n username,\n (payload) => [\n buildTransferToVestingOp(username!, payload.to, payload.amount)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildWithdrawVestingOp } from \"@/modules/operations/builders\";\n\nexport interface WithdrawVestingPayload {\n vestingShares: string;\n}\n\nexport function useWithdrawVesting(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"withdraw-vesting\"],\n username,\n (payload) => [\n buildWithdrawVestingOp(username!, payload.vestingShares)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildConvertOp, buildCollateralizedConvertOp } from \"@/modules/operations/builders\";\n\nexport interface ConvertPayload {\n amount: string;\n requestId: number;\n collateralized?: boolean;\n}\n\nexport function useConvert(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"convert\"],\n username,\n (payload) => [\n payload.collateralized\n ? buildCollateralizedConvertOp(username!, payload.amount, payload.requestId)\n : buildConvertOp(username!, payload.amount, payload.requestId)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildClaimInterestOps } from \"@/modules/operations/builders\";\n\nexport interface ClaimInterestPayload {\n to: string;\n amount: string;\n memo: string;\n requestId: number;\n}\n\nexport function useClaimInterest(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-interest\"],\n username,\n (payload) => buildClaimInterestOps(username!, payload.to, payload.amount, payload.memo, payload.requestId),\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys, getQueryClient } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildClaimRewardBalanceOp } from \"@/modules/operations/builders\";\n\nexport interface ClaimRewardsPayload {\n rewardHive: string;\n rewardHbd: string;\n rewardVests: string;\n}\n\nconst CLAIM_REWARDS_INVALIDATION_DELAY_MS = 5000;\nconst pendingInvalidationTimers = new Map>();\n\nexport function useClaimRewards(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-rewards\"],\n username,\n (payload) => [\n buildClaimRewardBalanceOp(username!, payload.rewardHive, payload.rewardHbd, payload.rewardVests)\n ],\n () => {\n const timerKey = username ?? \"__anonymous__\";\n const keysToInvalidate = [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n QueryKeys.assets.hiveGeneralInfo(username!),\n QueryKeys.assets.hbdGeneralInfo(username!),\n QueryKeys.assets.hivePowerGeneralInfo(username!),\n ];\n\n // Delay invalidation to allow blockchain to propagate the transaction.\n // Immediate invalidation would fetch stale (pre-confirmation) data.\n const existingTimer = pendingInvalidationTimers.get(timerKey);\n if (existingTimer) {\n clearTimeout(existingTimer);\n pendingInvalidationTimers.delete(timerKey);\n }\n\n const timer = setTimeout(async () => {\n try {\n const qc = getQueryClient();\n const results = await Promise.allSettled(\n keysToInvalidate.map((key) => qc.invalidateQueries({ queryKey: key }))\n );\n const rejected = results.filter((result) => result.status === \"rejected\");\n if (rejected.length > 0) {\n console.error(\"[SDK][Wallet][useClaimRewards] delayed invalidation rejected\", {\n username,\n rejectedCount: rejected.length,\n rejected\n });\n }\n } catch (error) {\n console.error(\"[SDK][Wallet][useClaimRewards] delayed invalidation failed\", {\n username,\n error\n });\n } finally {\n pendingInvalidationTimers.delete(timerKey);\n }\n }, CLAIM_REWARDS_INVALIDATION_DELAY_MS);\n\n pendingInvalidationTimers.set(timerKey, timer);\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface DelegateEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useDelegateEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"delegate\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface UndelegateEngineTokenPayload {\n from: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useUndelegateEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"undelegate-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"undelegate\",\n contractPayload: {\n symbol: payload.symbol,\n from: payload.from,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface StakeEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useStakeEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"stake-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"stake\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface UnstakeEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useUnstakeEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"unstake-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"unstake\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface ClaimEngineRewardsPayload {\n tokens: string[];\n}\n\nexport function useClaimEngineRewards(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-engine-rewards\"],\n username,\n (payload) => {\n const json = JSON.stringify(payload.tokens.map((symbol) => ({ symbol })));\n return [[\"custom_json\", {\n id: \"scot_claim_token\",\n required_auths: [],\n required_posting_auths: [username!],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface EngineMarketOrderPayload {\n action: \"buy\" | \"sell\" | \"cancel\";\n symbol: string;\n quantity?: string;\n price?: string;\n orderId?: string;\n orderType?: \"buy\" | \"sell\";\n}\n\nexport function useEngineMarketOrder(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"engine-market-order\"],\n username,\n (payload) => {\n let contractPayload: Record;\n let contractAction: string;\n\n if (payload.action === \"cancel\") {\n contractAction = \"cancel\";\n contractPayload = {\n type: payload.orderType!,\n id: payload.orderId!,\n };\n } else {\n contractAction = payload.action;\n contractPayload = {\n symbol: payload.symbol,\n quantity: payload.quantity!,\n price: payload.price!,\n };\n }\n\n const json = JSON.stringify({\n contractName: \"market\",\n contractAction,\n contractPayload,\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { EcencyAnalytics } from \"@/modules/analytics\";\nimport { getQueryClient } from \"@/modules/core\";\nimport type { AuthorityLevel } from \"@/modules/operations/authority-map\";\nimport { AssetOperation } from \"../types\";\nimport {\n buildTransferOp,\n buildTransferToSavingsOp,\n buildTransferFromSavingsOp,\n buildTransferToVestingOp,\n buildWithdrawVestingOp,\n buildDelegateVestingSharesOp,\n buildSetWithdrawVestingRouteOp,\n buildConvertOp,\n buildClaimInterestOps,\n buildPointTransferOp,\n buildEngineOp,\n buildEngineClaimOp,\n} from \"@/modules/operations/builders\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface WalletOperationPayload {\n from: string;\n to?: string;\n amount?: string;\n memo?: string;\n request_id?: number;\n from_account?: string;\n to_account?: string;\n percent?: number;\n auto_vest?: boolean;\n mode?: string;\n [key: string]: unknown;\n}\n\nfunction buildHiveOperations(\n asset: string,\n operation: AssetOperation,\n payload: WalletOperationPayload\n): Operation[] | null {\n const { from, to = \"\", amount = \"\", memo = \"\" } = payload;\n const requestId = payload.request_id ?? (Date.now() >>> 0);\n\n switch (asset) {\n case \"HIVE\":\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildTransferOp(from, to, amount, memo)];\n case AssetOperation.TransferToSavings:\n return [buildTransferToSavingsOp(from, to, amount, memo)];\n case AssetOperation.WithdrawFromSavings:\n return [buildTransferFromSavingsOp(from, to, amount, memo, requestId)];\n case AssetOperation.PowerUp:\n return [buildTransferToVestingOp(from, to, amount)];\n }\n break;\n\n case \"HBD\":\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildTransferOp(from, to, amount, memo)];\n case AssetOperation.TransferToSavings:\n return [buildTransferToSavingsOp(from, to, amount, memo)];\n case AssetOperation.WithdrawFromSavings:\n return [buildTransferFromSavingsOp(from, to, amount, memo, requestId)];\n case AssetOperation.ClaimInterest:\n return buildClaimInterestOps(from, to, amount, memo, requestId);\n case AssetOperation.Convert:\n return [buildConvertOp(from, amount, Math.floor(Date.now() / 1000))];\n }\n break;\n\n case \"HP\":\n switch (operation) {\n case AssetOperation.PowerDown:\n return [buildWithdrawVestingOp(from, amount)];\n case AssetOperation.Delegate:\n return [buildDelegateVestingSharesOp(from, to, amount)];\n case AssetOperation.WithdrawRoutes:\n return [buildSetWithdrawVestingRouteOp(\n payload.from_account ?? from,\n payload.to_account ?? to,\n payload.percent ?? 0,\n payload.auto_vest ?? false\n )];\n }\n break;\n\n case \"POINTS\":\n if (operation === AssetOperation.Transfer || operation === AssetOperation.Gift) {\n return [buildPointTransferOp(from, to, amount, memo)];\n }\n break;\n }\n\n return null;\n}\n\nfunction buildEngineOperations(\n asset: string,\n operation: AssetOperation,\n payload: WalletOperationPayload\n): Operation[] | null {\n const { from, to = \"\", amount = \"\" } = payload;\n const quantity = typeof amount === \"string\" && amount.includes(\" \")\n ? amount.split(\" \")[0]\n : String(amount);\n\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildEngineOp(from, \"transfer\", {\n symbol: asset, to, quantity, memo: payload.memo ?? \"\"\n })];\n case AssetOperation.Stake:\n return [buildEngineOp(from, \"stake\", { symbol: asset, to, quantity })];\n case AssetOperation.Unstake:\n return [buildEngineOp(from, \"unstake\", { symbol: asset, to, quantity })];\n case AssetOperation.Delegate:\n return [buildEngineOp(from, \"delegate\", { symbol: asset, to, quantity })];\n case AssetOperation.Undelegate:\n return [buildEngineOp(from, \"undelegate\", { symbol: asset, from: to, quantity })];\n case AssetOperation.Claim:\n return [buildEngineClaimOp(from, [asset])];\n }\n\n return null;\n}\n\n/**\n * Determines authority level for a wallet operation.\n * Engine token claims use posting authority; everything else uses active.\n */\nfunction getWalletOperationAuthority(operation: AssetOperation): AuthorityLevel {\n if (operation === AssetOperation.Claim) {\n return 'posting';\n }\n return 'active';\n}\n\n/**\n * Meta-mutation hook that dispatches wallet operations based on asset and operation type.\n *\n * Supports HIVE, HBD, HP, POINTS, and Hive Engine tokens.\n * Uses `useBroadcastMutation` for unified auth handling via `AuthContextV2`.\n *\n * @param username - The Hive account performing the operation\n * @param asset - The asset symbol (e.g., \"HIVE\", \"HBD\", \"HP\", \"POINTS\", or engine token)\n * @param operation - The operation type from AssetOperation enum\n * @param auth - Auth context for broadcasting\n */\nexport function useWalletOperation(\n username: string | undefined,\n asset: string,\n operation: AssetOperation,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n const { mutateAsync: recordActivity } = EcencyAnalytics.useRecordActivity(\n username,\n operation as any\n );\n\n return useBroadcastMutation(\n [\"ecency-wallets\", asset, operation],\n username,\n (payload) => {\n // Try native Hive + POINTS operations\n const hiveOps = buildHiveOperations(asset, operation, payload);\n if (hiveOps) return hiveOps;\n\n // Try engine token operations\n const engineOps = buildEngineOperations(asset, operation, payload);\n if (engineOps) return engineOps;\n\n throw new Error(`[SDK][Wallet] – no operation builder for asset=\"${asset}\" operation=\"${operation}\"`);\n },\n () => {\n recordActivity();\n\n const keysToInvalidate: (string | undefined)[][] = [];\n\n // Invalidate asset-specific queries (prefix-matches all currency variants)\n keysToInvalidate.push([\"ecency-wallets\", \"asset-info\", username, asset]);\n\n if (asset === \"HIVE\") {\n keysToInvalidate.push([\"ecency-wallets\", \"asset-info\", username, \"HP\"]);\n }\n\n // Invalidate portfolio (prefix-matches all currency/filter variants)\n keysToInvalidate.push([\"wallet\", \"portfolio\", \"v2\", username]);\n\n // Delay invalidation to allow blockchain to process\n setTimeout(() => {\n keysToInvalidate.forEach((key) => {\n getQueryClient().invalidateQueries({ queryKey: key });\n });\n }, 5000);\n },\n auth,\n getWalletOperationAuthority(operation),\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildDelegateRcOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface DelegateRcPayload {\n to: string;\n maxRc: string | number;\n}\n\nexport function useDelegateRc(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-rc\"],\n username,\n ({ to, maxRc }) => [\n buildDelegateRcOp(username!, to, maxRc)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n QueryKeys.resourceCredits.account(username!),\n QueryKeys.resourceCredits.account(variables.to),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildWitnessVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for voting for a witness.\n */\nexport interface WitnessVotePayload {\n /** Witness account name to vote for/against */\n witness: string;\n /** True to approve, false to disapprove */\n approve: boolean;\n}\n\n/**\n * React Query mutation hook for voting for a Hive witness.\n *\n * This mutation broadcasts an account_witness_vote operation to vote for\n * or remove a vote from a witness.\n *\n * @param username - The username voting for the witness (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates account data cache to show updated witness votes\n * - Invalidates witness votes cache\n *\n * **Vote Types:**\n * - approve: true - Vote for the witness\n * - approve: false - Remove your vote from the witness\n *\n * **Authority Required:**\n * - Active authority is required for witness voting\n *\n * @example\n * ```typescript\n * const witnessVoteMutation = useWitnessVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Vote for a witness\n * witnessVoteMutation.mutate({\n * witness: 'good-karma',\n * approve: true\n * });\n *\n * // Remove vote from a witness\n * witnessVoteMutation.mutate({\n * witness: 'good-karma',\n * approve: false\n * });\n * ```\n */\nexport function useWitnessVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"witnesses\", \"vote\"],\n username,\n ({ witness, approve }) => [\n buildWitnessVoteOp(username!, witness, approve)\n ],\n async () => {\n // Wrap post-broadcast side-effects in try-catch to prevent propagating errors\n try {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.witnesses.votes(username)\n ]);\n }\n } catch (error) {\n // Log but don't rethrow - don't fail mutation due to side-effect errors\n console.warn('[useWitnessVote] Post-broadcast side-effect failed:', error);\n }\n },\n auth,\n 'active', // Use active authority for witness votes (required by blockchain)\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildWitnessProxyOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface WitnessProxyPayload {\n proxy: string;\n}\n\nexport function useWitnessProxy(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"witnesses\", \"proxy\"],\n username,\n ({ proxy }) => [\n buildWitnessProxyOp(username!, proxy)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.witnesses.proxy(),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Witness, WitnessVotersResponse } from \"../types\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\n\ntype WitnessPage = Witness[];\ntype WitnessCursor = number;\n\ninterface HafbeWitness {\n witness_name: string;\n rank: number;\n url: string;\n vests: string;\n votes_daily_change: string;\n voters_num: number;\n voters_num_daily_change: number;\n price_feed: number;\n bias: number;\n feed_updated_at: string;\n block_size: number;\n signing_key: string;\n version: string;\n missed_blocks: number;\n hbd_interest_rate: number;\n last_confirmed_block_num: number;\n account_creation_fee: number;\n}\n\ninterface HafbeWitnessesResponse {\n total_witnesses: number;\n total_pages: number;\n witnesses: HafbeWitness[];\n}\n\n/**\n * Map a hafbe-api witness to the SDK Witness shape so existing consumers\n * (e.g. the web app's transform()) keep working unchanged.\n */\nfunction mapRestWitness(w: HafbeWitness): Witness {\n return {\n owner: w.witness_name,\n total_missed: w.missed_blocks,\n url: w.url,\n props: {\n account_creation_fee: `${(w.account_creation_fee / 1000).toFixed(3)} HIVE`,\n account_subsidy_budget: 0,\n maximum_block_size: w.block_size,\n },\n hbd_exchange_rate: {\n base: `${w.price_feed.toFixed(3)} HBD`,\n },\n available_witness_account_subsidies: 0,\n running_version: w.version,\n signing_key: w.signing_key,\n last_hbd_exchange_update: w.feed_updated_at,\n rank: w.rank,\n vests: w.vests,\n voters_num: w.voters_num,\n voters_num_daily_change: w.voters_num_daily_change,\n price_feed: w.price_feed,\n hbd_interest_rate: w.hbd_interest_rate,\n last_confirmed_block_num: w.last_confirmed_block_num,\n };\n}\n\n/**\n * Get witnesses ordered by vote count (infinite scroll).\n * Uses the hafbe-api REST endpoint - replaces multi-call RPC assembly\n * with a single paginated call. Includes voter count, rank, and other\n * data that was previously unavailable.\n *\n * @param limit - Number of witnesses per page\n */\nexport function getWitnessesInfiniteQueryOptions(limit: number) {\n return infiniteQueryOptions<\n WitnessPage,\n Error,\n InfiniteData,\n (string | number)[],\n WitnessCursor\n >({\n queryKey: QueryKeys.witnesses.list(limit),\n initialPageParam: 1 as WitnessCursor,\n\n queryFn: async ({ pageParam }: { pageParam: WitnessCursor }) => {\n const response = (await callREST(\n \"hafbe\",\n \"/witnesses\",\n {\n \"page-size\": limit,\n page: pageParam,\n }\n )) as HafbeWitnessesResponse;\n\n return response.witnesses.map(mapRestWitness);\n },\n\n getNextPageParam: (lastPage, _allPages, lastPageParam) =>\n lastPage.length === limit ? lastPageParam + 1 : undefined,\n });\n}\n\nexport type WitnessVoterSortField =\n | \"vests\"\n | \"account_vests\"\n | \"proxied_vests\"\n | \"account_name\"\n | \"timestamp\";\n\nexport type WitnessVoterSortDirection = \"asc\" | \"desc\";\n\n/**\n * Get a single page of voters for a specific witness.\n *\n * Server-side pagination + sort: each page click fetches that page directly\n * from hafbe rather than scrolling through accumulated pages on the client.\n *\n * @param witness - Witness account name\n * @param page - 1-based page index\n * @param pageSize - Number of voters per page\n * @param sort - Field to sort by\n * @param direction - asc or desc\n */\nexport function getWitnessVotersPageQueryOptions(\n witness: string,\n page: number,\n pageSize: number,\n sort: WitnessVoterSortField = \"vests\",\n direction: WitnessVoterSortDirection = \"desc\"\n) {\n return queryOptions({\n queryKey: QueryKeys.witnesses.voters(witness, page, pageSize, sort, direction),\n queryFn: async ({ signal }) => {\n return (await callREST(\n \"hafbe\",\n \"/witnesses/{witness-name}/voters\",\n {\n \"witness-name\": witness,\n \"page-size\": pageSize,\n page,\n sort,\n direction,\n },\n undefined,\n undefined,\n signal\n )) as WitnessVotersResponse;\n },\n enabled: !!witness,\n staleTime: 60_000,\n });\n}\n\n/**\n * Get total voter count for a witness.\n *\n * @param witness - Witness account name\n */\nexport function getWitnessVoterCountQueryOptions(witness: string) {\n return queryOptions({\n queryKey: QueryKeys.witnesses.voterCount(witness),\n queryFn: async () => {\n return (await callREST(\n \"hafbe\",\n \"/witnesses/{witness-name}/voters/count\",\n { \"witness-name\": witness }\n )) as number;\n },\n enabled: !!witness,\n staleTime: 60_000,\n });\n}\n","export enum PointTransactionType {\n CHECKIN = 10,\n LOGIN = 20,\n CHECKIN_EXTRA = 30,\n POST = 100,\n COMMENT = 110,\n VOTE = 120,\n REBLOG = 130,\n DELEGATION = 150,\n REFERRAL = 160,\n COMMUNITY = 170,\n TRANSFER_SENT = 998,\n TRANSFER_INCOMING = 999,\n MINTED = 991,\n /**\n * Points burned out of supply rather than moved to the treasury. Written by the\n * AI surfaces (assist, image, transcribe), which pay a real per-request vendor\n * bill, so the Points are consumed rather than parked.\n *\n * The row carries no counterparty at all, which is what distinguishes it from\n * TRANSFER_SENT: `sender` and `receiver` are both null. A refund of a burn comes\n * back as this same type with a positive amount, so read the sign rather than\n * assuming a burn is always a debit.\n */\n BURNED = 997,\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { EcencyAnalytics } from \"@/modules/analytics\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { getPointsQueryOptions } from \"../queries\";\nimport type { Points } from \"../types\";\n\n/**\n * POST a points claim and return the parsed JSON body.\n *\n * The endpoint normally answers with JSON, but an edge/proxy layer can\n * occasionally return a 2xx whose body is an HTML interstitial or plain text\n * (ECENCY-NEXT-1FCJ). Calling `response.json()` on that throws a bare\n * `SyntaxError` that names neither the endpoint nor the cause. Instead we check\n * the content type first and fail with a STABLE, low-cardinality message\n * (content type + status) — never the raw body — so these group as a single\n * Sentry issue instead of fragmenting on every distinct HTML page.\n */\nexport async function claimPointsRequest(\n username: string | undefined,\n accessToken: string | undefined\n) {\n if (!username) {\n throw new Error(\"[SDK][Points][Claim] – username wasn't provided\");\n }\n\n if (!accessToken) {\n throw new Error(\"[SDK][Points][Claim] – access token wasn't found\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/points-claim\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n }\n );\n\n // Media types are case-insensitive; normalise once and reuse in every branch.\n const contentType = (response.headers.get(\"content-type\") ?? \"\")\n .split(\";\")[0]\n .trim()\n .toLowerCase();\n const body = await response.text();\n\n if (!response.ok) {\n if (response.status === 406) {\n try {\n return JSON.parse(body);\n } catch {\n return { message: body, code: response.status };\n }\n }\n // Only fold a short JSON error body into the message; an HTML gateway page\n // (e.g. 502/503) would otherwise fragment the Sentry group per distinct\n // page — the same problem the non-JSON guard below avoids for a 2xx body.\n const detail =\n body && contentType.includes(\"json\") ? `: ${body.slice(0, 200)}` : \"\";\n throw new Error(\n `[SDK][Points][Claim] – failed with status ${response.status}${detail}`\n );\n }\n\n if (!contentType.includes(\"json\")) {\n throw new Error(\n `[SDK][Points][Claim] – expected JSON but received \"${contentType || \"empty\"}\" response (status ${response.status})`\n );\n }\n\n try {\n return JSON.parse(body);\n } catch {\n throw new Error(\n `[SDK][Points][Claim] – malformed JSON response (status ${response.status})`\n );\n }\n}\n\nexport function useClaimPoints(\n username: string | undefined,\n accessToken: string | undefined,\n onSuccess?: () => void,\n onError?: Parameters[\"0\"][\"onError\"]\n) {\n const { mutateAsync: recordActivity } = EcencyAnalytics.useRecordActivity(\n username,\n \"points-claimed\"\n );\n\n return useMutation({\n mutationFn: () => claimPointsRequest(username, accessToken),\n onError,\n onSuccess: () => {\n recordActivity();\n\n getQueryClient().setQueryData(\n getPointsQueryOptions(username).queryKey,\n (data) => {\n if (!data) {\n return data;\n }\n\n return {\n ...data,\n points: (\n parseFloat(data.points) + parseFloat(data.uPoints)\n ).toFixed(3),\n uPoints: \"0\",\n };\n }\n );\n\n onSuccess?.();\n },\n });\n}\n","// A token only counts at the start of the query or after whitespace, matching\n// the search API's parser. Unanchored, these matched inside ordinary words:\n// \"prototype:v2\" read as type=v2 and the API rejected it as an invalid type,\n// \"subcategory:hive-1\" filtered on category=hive-1 with a stray \"sub\" left as\n// required text. The boundary is captured rather than looked behind so it can\n// be put back when the token is stripped, keeping the neighbouring words apart\n// (a lookbehind would also be fine here, but this stays portable).\nconst author_re = /(^|\\s)author:([^\\s]+)/g;\nconst type_re = /(^|\\s)type:([^\\s]+)/g;\nconst category_re = /(^|\\s)category:([^\\s]+)/g;\nconst tag_re = /(^|\\s)tag:([^\\s]+)/g;\n\n// Index of the token value in a match; group 1 is the boundary.\nconst VALUE = 2;\n\nexport enum SearchType {\n ALL = \"\",\n POST = \"post\",\n COMMENT = \"comment\"\n}\n\nexport const MAX_SEARCH_TAGS = 5;\n\n// The search API applies both caps itself (see query_validator); mirrored here\n// so the client can refuse instead of turning a 400 into an empty result list.\nexport const MAX_SEARCH_QUERY_LENGTH = 100;\n\n/**\n * Both parsers match a token with /author:([^\\s]+)/, so a value containing a\n * space stops filtering at the space and the remainder silently becomes\n * required free text. Keep the first word only, which is what the API would\n * have filtered on anyway.\n */\nfunction firstToken(value: string): string {\n return value.trim().split(/\\s+/)[0] ?? \"\";\n}\n\n/**\n * Hive account names are lowercase and the API filters authors with an exact\n * term query, so \"@Demo\" has to become \"demo\" or it matches nothing.\n */\nexport function normalizeSearchAuthor(value: string): string {\n return firstToken(value).replace(/^@+/, \"\").toLowerCase();\n}\n\nexport function normalizeSearchCategory(value: string): string {\n // Leading \"#\" goes for the same reason it goes on tags: a category is matched\n // by an exact term query, and users write categories the way they write tags.\n return firstToken(value).replace(/^#+/, \"\").toLowerCase();\n}\n\n/**\n * Accepts what a user actually types (\"travel, photography\", \"#travel travel\")\n * and returns exact-match ready tags, deduped in first-seen order.\n */\nexport function normalizeSearchTags(value: string): string[] {\n const seen = new Set();\n\n return value\n .split(/[\\s,]+/)\n .map((tag) => tag.replace(/^#+/, \"\").toLowerCase())\n .filter((tag) => {\n if (tag === \"\" || seen.has(tag)) {\n return false;\n }\n\n seen.add(tag);\n return true;\n });\n}\n\nexport interface SearchQueryParts {\n search?: string;\n author?: string;\n type?: SearchType;\n category?: string;\n /** Raw user input (\"a, b\") or an already split list. */\n tags?: string | string[];\n}\n\nexport interface BuiltSearchQuery {\n /** The `q` value to put in the URL. Round-trips through `SearchQuery`. */\n q: string;\n search: string;\n author: string;\n type: SearchType;\n category: string;\n tags: string[];\n}\n\n/**\n * Assembles the single `q` string that both this app and the search API parse\n * back into filters. Returns the normalized parts too, because the caller has\n * to validate the tag count and the total length before navigating.\n */\nexport function buildSearchQuery({\n search = \"\",\n author = \"\",\n type = SearchType.ALL,\n category = \"\",\n tags = []\n}: SearchQueryParts): BuiltSearchQuery {\n const normalizedSearch = search.trim().replace(/\\s+/g, \" \");\n const normalizedAuthor = normalizeSearchAuthor(author);\n const normalizedCategory = normalizeSearchCategory(category);\n const normalizedTags = normalizeSearchTags(Array.isArray(tags) ? tags.join(\",\") : tags);\n\n const parts = [normalizedSearch];\n\n if (normalizedAuthor) {\n parts.push(`author:${normalizedAuthor}`);\n }\n\n if (type) {\n parts.push(`type:${type}`);\n }\n\n if (normalizedCategory) {\n parts.push(`category:${normalizedCategory}`);\n }\n\n if (normalizedTags.length > 0) {\n // No space after the commas: a tag token ends at the first space, so\n // anything past one stops filtering and becomes required free text.\n parts.push(`tag:${normalizedTags.join(\",\")}`);\n }\n\n return {\n // Dropping the empty free text here is what keeps a filter-only query from\n // starting with a space.\n q: parts.filter((part) => part !== \"\").join(\" \"),\n search: normalizedSearch,\n author: normalizedAuthor,\n type,\n category: normalizedCategory,\n tags: normalizedTags\n };\n}\n\nexport class SearchQuery {\n public query: string = \"\";\n public search: string = \"\";\n public author: string = \"\";\n public type: SearchType = SearchType.ALL;\n public category: string = \"\";\n public tags: string[] = [];\n\n constructor(_query: string) {\n this.query = _query;\n this.search = _query;\n\n this.grabAuthor();\n this.grabType();\n this.grabCategory();\n this.grabTags();\n this.grabSearch();\n }\n\n private grab = (re: RegExp): string => {\n // @ts-ignore\n const matches = [...this.query.matchAll(re)];\n if (matches.length > 0) {\n return matches[0][VALUE].trim();\n }\n\n return \"\";\n };\n\n private grabAuthor = () => {\n this.author = this.grab(author_re);\n };\n\n private grabType = () => {\n const type = this.grab(type_re) as SearchType;\n if (Object.values(SearchType).includes(type)) {\n this.type = type as SearchType;\n }\n };\n\n private grabCategory = () => {\n this.category = this.grab(category_re);\n };\n\n private grabTags = () => {\n // Every tag: token counts, not just the first one. The API joins all of its\n // own tag: matches before splitting on commas, so reading only the first\n // token here under-reports the tags a query really applies and let a query\n // past the MAX_SEARCH_TAGS guard that the API then rejects with a 400.\n // A trailing comma (\"tag:a,\") must not yield an empty tag either - it would\n // be shown back as a phantom tag and counted against the same cap.\n const seen = new Set();\n\n this.tags = [...this.query.matchAll(tag_re)]\n .flatMap((match) => match[VALUE].split(\",\"))\n .map((tag) => tag.trim())\n .filter((tag) => {\n if (tag === \"\" || seen.has(tag)) {\n return false;\n }\n\n seen.add(tag);\n return true;\n });\n };\n\n private grabSearch = () => {\n [author_re, type_re, category_re, tag_re].forEach((r) => {\n // Put the captured boundary back, or removing a mid-query token would\n // run the words either side of it together.\n this.search = this.search.replace(r, \"$1\");\n });\n\n while (this.search.indexOf(\" \") !== -1) {\n this.search = this.search.replace(\" \", \" \");\n }\n\n this.search = this.search.trim();\n };\n}\n","export type RequestError = Error & { status?: number; data?: unknown };\n\n/**\n * Reads a response body and, when the status is not OK, throws an error that\n * keeps both the status and the parsed body.\n *\n * The search backend answers a malformed query with an explanation the user can\n * act on (\"Maximum 5 tags!\", \"Query string too long! ...\", \"Parsed query is\n * empty!\"). Dropping the body leaves callers with a bare status: they can\n * neither tell the user what to change nor tell a deterministic rejection from\n * a transient failure worth retrying.\n *\n * Module-internal on purpose - it is not part of the published SDK surface.\n */\nexport async function parseJsonResponse(\n response: Response,\n /**\n * Shape guard for a SUCCESSFUL body. JSON.parse happily accepts `null`,\n * `\"maintenance\"` and `{\"error\": \"...\"}`, none of which are the payload the\n * caller asked for, and all of which would otherwise be returned as `T` and\n * cached as valid data. Callers that have a known shape pass a guard so an\n * unexpected 200 fails here instead of at the first property access.\n */\n isValid?: (data: unknown) => boolean\n): Promise {\n const parseBody = async (): Promise => {\n // Read the body ONCE. Calling json() and then falling back to text() on the\n // same response cannot work: json() consumes the stream, so the fallback\n // always threw and the raw body of a non-JSON failure (an HTML error page\n // from a proxy) was silently lost.\n let raw: string;\n try {\n raw = await response.text();\n } catch {\n return undefined;\n }\n\n if (raw === \"\") {\n return undefined;\n }\n\n try {\n return JSON.parse(raw) as unknown;\n } catch {\n // Raw text is a diagnostic, not a payload. On a failed response it is\n // what the caller shows or logs, but on a 2xx returning it would hand\n // back a string typed as the parsed body: callers reading `.results`\n // would see undefined and report an empty result set, and the\n // controversial/rising pager would throw on `resp.results.length`. An\n // unparseable success is a failure, so let it fall through to the throw\n // below rather than caching a string as a SearchResponse.\n return response.ok ? undefined : raw;\n }\n };\n\n const data = await parseBody();\n if (!response.ok) {\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n if (data === undefined || (isValid !== undefined && !isValid(data))) {\n throw new Error(\"Response body was empty, invalid JSON, or not the expected shape\");\n }\n\n return data as T;\n}\n\n/**\n * The contract every /search-api consumer relies on: an object carrying a\n * `results` array. Enough to keep a stray 200 from reaching `resp.results.length`.\n */\nexport function isSearchResponse(data: unknown): boolean {\n return (\n typeof data === \"object\" &&\n data !== null &&\n Array.isArray((data as { results?: unknown }).results)\n );\n}\n","import { isServer } from \"@tanstack/react-query\";\nimport type { RequestError } from \"./parse-json-response\";\n\n/**\n * The app-wide default the browser QueryClient uses. Restated because supplying\n * a `retry` callback replaces React Query's own budget rather than adding to it.\n *\n * The 0 on the server is load-bearing: server QueryClients set `retry: false`\n * globally, and these queries are prefetched during SSR, so a flat 3 would\n * resurrect SSR retries against a single-region backend.\n */\nconst MAX_RETRIES = isServer ? 0 : 3;\n\n/**\n * Shared retry rule for every /search-api call.\n *\n * A 4xx is the backend rejecting the query itself (too many tags, over the\n * length cap, nothing left to search once the filters are parsed out).\n * Repeating it repeats the same answer, so the only effect is four requests\n * over several seconds before the UI can say what to change.\n *\n * 408 and 429 are the exceptions: they describe when the request arrived rather\n * than what it contained, and backing off is what resolves them. A client-side\n * timeout aborts the fetch and carries no status at all, so it falls through to\n * the normal budget like any other transport failure.\n */\nexport function searchRetryPolicy(failureCount: number, error: Error): boolean {\n const { status } = error as RequestError;\n const isTransient = status === 408 || status === 429;\n\n if (status !== undefined && status >= 400 && status < 500 && !isTransient) {\n return false;\n }\n\n return failureCount < MAX_RETRIES;\n}\n","import { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, INTERNAL_API_TIMEOUT_MS, withTimeoutSignal, QueryKeys } from \"@/modules/core\";\nimport { SearchResponse } from \"../types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"../parse-json-response\";\nimport { searchRetryPolicy } from \"../retry-policy\";\n\nexport function searchQueryOptions(\n q: string,\n sort: string,\n hideLow: string,\n since?: string,\n scroll_id?: string,\n votes?: number\n) {\n return queryOptions({\n queryKey: QueryKeys.search.results(q, sort, hideLow, since, scroll_id, votes),\n queryFn: async ({ signal }) => {\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) data.since = since;\n if (scroll_id) data.scroll_id = scroll_id;\n if (votes) data.votes = votes;\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body) instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n retry: searchRetryPolicy,\n });\n}\n\ntype PageParam = {\n sid: string | undefined;\n hasNextPage: boolean;\n};\n\nexport function getControversialRisingInfiniteQueryOptions(\n what: string,\n tag: string,\n enabled = true\n) {\n return infiniteQueryOptions<\n SearchResponse,\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.search.controversialRising(what, tag),\n initialPageParam: { sid: undefined, hasNextPage: true } as PageParam,\n\n queryFn: async ({ pageParam, signal }: { pageParam: PageParam; signal: AbortSignal }) => {\n if (!pageParam.hasNextPage) {\n return {\n hits: 0,\n took: 0,\n results: [],\n };\n }\n\n let sinceDate: Date | undefined;\n const now = new Date();\n\n switch (tag) {\n case \"today\":\n sinceDate = new Date(now.getTime() - 24 * 60 * 60 * 1000);\n break;\n case \"week\":\n sinceDate = new Date(now.getTime() - 7 * 24 * 60 * 60 * 1000);\n break;\n case \"month\":\n sinceDate = new Date(now.getTime() - 30 * 24 * 60 * 60 * 1000);\n break;\n case \"year\":\n sinceDate = new Date(now.getTime() - 365 * 24 * 60 * 60 * 1000);\n break;\n default:\n sinceDate = undefined;\n }\n\n const q = \"* type:post\";\n const sort = what === \"rising\" ? \"children\" : what;\n const since = sinceDate ? sinceDate.toISOString().split(\".\")[0] : undefined;\n const hideLow = \"0\";\n const votes = tag === \"today\" ? 50 : 200;\n\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) data.since = since;\n if (pageParam.sid) data.scroll_id = pageParam.sid;\n if (votes) data.votes = votes;\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body) instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n\n getNextPageParam: (resp: SearchResponse): PageParam => {\n return {\n sid: resp?.scroll_id,\n hasNextPage: resp.results.length > 0,\n };\n },\n\n enabled,\n retry: searchRetryPolicy,\n });\n}\n","import { CONFIG, INTERNAL_API_TIMEOUT_MS, getBoundFetch, withTimeoutSignal } from \"@/modules/core\";\nimport { SearchResponse } from \"./types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"./parse-json-response\";\n\nexport async function search(\n q: string,\n sort: string,\n hideLow: string,\n since?: string,\n scroll_id?: string,\n votes?: number,\n signal?: AbortSignal\n): Promise {\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) {\n data.since = since;\n }\n if (scroll_id) {\n data.scroll_id = scroll_id;\n }\n if (votes) {\n data.votes = votes;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n return parseJsonResponse(response, isSearchResponse);\n}\n\nexport async function similar(\n params: {\n author: string;\n permlink: string;\n title?: string;\n body?: string;\n tags?: string[];\n since?: string;\n },\n signal?: AbortSignal,\n timeoutMs: number = INTERNAL_API_TIMEOUT_MS\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/similar\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(params),\n signal: withTimeoutSignal(timeoutMs, signal),\n });\n\n return parseJsonResponse(response, isSearchResponse);\n}\n\nexport async function searchPath(q: string, signal?: AbortSignal): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/search-path\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify({ q }),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n const data = await parseJsonResponse(response, Array.isArray);\n return data?.length > 0 ? data : [q];\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { similar } from \"../requests\";\nimport { SearchResult } from \"../types/search-response\";\n\n// Without a recency window the backend ranks across the entire historical\n// index and surfaces years-old posts. Constrain suggestions to the last\n// ~6 months so related posts stay fresh (it also bounds the backend's\n// more_like_this candidate set, which is what keeps it fast).\nconst SIMILAR_ENTRIES_SINCE_MS = 182 * 24 * 60 * 60 * 1000;\n\n// How many results the suggestions strip renders at most.\nconst SIMILAR_ENTRIES_TARGET = 4;\n\n// more_like_this only extracts a handful of significant terms, so an excerpt is\n// enough signal and keeps the request payload small.\nconst SIMILAR_ENTRIES_BODY_LIMIT = 3000;\n\n// On the server the prefetch sits on the entry-page render path, and the search\n// backend is single-region (EU) — so anything slower than this stalls SSR for a\n// non-essential \"related posts\" strip. Keep the SSR cap short and let the strip\n// fall back to a client fetch (only that render misses the in-HTML strip; it's\n// ISR-cached anyway). Do NOT raise this — 2s is the SSR budget.\nconst SIMILAR_ENTRIES_SSR_TIMEOUT_MS = 2000;\n\n// The client fetch doesn't block paint, so it previously had no cap and fell\n// through to the SDK's generic INTERNAL_API_TIMEOUT_MS (10s; CF's worker further\n// truncates at ~8s). Combined with React Query's default client retry (3×), a\n// /search-api/similar outage turned this best-effort strip into a multi-second\n// post-onload tail (observed as a ~29s \"fully loaded\" in GTmetrix). Cap the\n// client call short and disable retry (below) so a degraded backend just hides\n// the strip quickly instead of churning.\nconst SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS = 4000;\n\n// The strip is hidden below this many results. A lone suggestion looks\n// sparse. Exported so the web component shares one threshold (filter == render).\nexport const SIMILAR_ENTRIES_MIN_RENDER = 2;\n\n// Strip markdown image/link/URL noise before truncating, so more_like_this\n// keys on prose terms instead of image-CDN domains and file hashes (which\n// rarely match the index's sanitized body and just waste the term budget).\nfunction toMltExcerpt(body: string, limit: number): string {\n return body\n .replace(/!\\[[^\\]]*\\]\\([^)]*\\)/g, \" \") // markdown images\n .replace(/\\[([^\\]]*)\\]\\([^)]*\\)/g, \"$1\") // markdown links -> keep link text\n .replace(/<[^>]+>/g, \" \") // html tags\n .replace(/https?:\\/\\/\\S+/g, \" \") // bare URLs\n .replace(/\\s+/g, \" \")\n .trim()\n .slice(0, limit);\n}\n\n// Compact deterministic fingerprint (djb2) of the MLT inputs. Folded into the\n// cache key so an edited post (title/tags/body changed) refetches instead of\n// serving stale recommendations under the same author/permlink. Deterministic\n// so the SSR prefetch and the client compute the same key from the same entry.\nfunction fingerprint(s: string): string {\n let h = 5381;\n for (let i = 0; i < s.length; i++) {\n h = ((h << 5) + h + s.charCodeAt(i)) | 0;\n }\n return (h >>> 0).toString(36);\n}\n\ninterface Entry {\n author: string;\n permlink: string;\n title?: string;\n body?: string;\n json_metadata?: {\n // Hive's json_metadata is user-controlled and untyped on-chain: `tags` is\n // usually a string[] but some posts store it as a bare string (or other\n // junk). Typed as unknown on purpose so callers can't assume an array —\n // it's narrowed with a runtime guard below.\n tags?: unknown;\n };\n}\n\nexport function getSimilarEntriesQueryOptions(entry: Entry) {\n const title = entry.title ?? \"\";\n // `?? []` only guards null/undefined; a non-array tags value (e.g. a bare\n // string from json_metadata) slips through and crashes `.filter` — which\n // took down the entry-page SSR prefetch (Sentry ECENCY-NEXT-1FMA). Guard on\n // Array.isArray so only real arrays reach the filter.\n const rawTags = entry.json_metadata?.tags;\n const tags = (Array.isArray(rawTags) ? rawTags : []).filter(\n (tag): tag is string => typeof tag === \"string\" && tag !== \"\"\n );\n const body = toMltExcerpt(entry.body ?? \"\", SIMILAR_ENTRIES_BODY_LIMIT);\n const contentKey = fingerprint(`${title}|${tags.join(\",\")}|${body}`);\n\n return queryOptions({\n queryKey: QueryKeys.search.similarEntries(entry.author, entry.permlink, contentKey),\n queryFn: async ({ signal }) => {\n // Naive `YYYY-MM-DDTHH:mm:ss` (no `Z`) matches the search-api date\n // contract used elsewhere; a <14h skew on a 182-day boundary is immaterial.\n const since = new Date(Date.now() - SIMILAR_ENTRIES_SINCE_MS).toISOString().slice(0, 19);\n\n // Elasticsearch more_like_this recommendations: content-based \"related\n // posts\" ranked by shared significant terms in title/body/tags, scoped\n // to the recency window. The backend already excludes the source author,\n // spam and nsfw.\n const response = await similar(\n {\n author: entry.author,\n permlink: entry.permlink,\n title,\n body,\n tags,\n since\n },\n signal,\n // Short cap server-side so a slow cross-region call can't stall SSR;\n // a slightly longer (but still bounded) cap client-side so a degraded\n // backend can't hang the request on the SDK's generic 8s timeout.\n typeof window === \"undefined\"\n ? SIMILAR_ENTRIES_SSR_TIMEOUT_MS\n : SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS\n );\n\n // Light client guard mirroring the render contract: never the source\n // post, never nsfw, one per author, capped at the render target.\n const collected: SearchResult[] = [];\n const seenAuthors = new Set();\n for (const r of response.results) {\n if (collected.length >= SIMILAR_ENTRIES_TARGET) break;\n if (r.permlink === entry.permlink) continue;\n if ((r.tags ?? []).indexOf(\"nsfw\") !== -1) continue;\n if (seenAuthors.has(r.author)) continue;\n seenAuthors.add(r.author);\n collected.push(r);\n }\n\n return collected;\n },\n // The entry page server-prefetches this query and dehydrates it. Without a\n // staleTime, React Query treats the hydrated data as stale and refetches on\n // mount — issuing a *redundant* /search-api/similar XHR right after\n // hydration even though SSR already provided the data. That refetch was the\n // long post-onload tail in the waterfall (held open to the client timeout),\n // inflating GTmetrix \"Fully Loaded\" while the visible strip was already\n // populated from SSR. A staleTime makes the hydrated data fresh so the\n // client skips that refetch; if SSR delivered nothing (empty cache), the\n // client still fetches. Recommendations are stable per post (and the cache\n // key is content-fingerprinted), so 5 min matches the page's ISR cadence.\n staleTime: 5 * 60 * 1000,\n // Best-effort suggestions strip — never retry-storm a degraded backend.\n // The web QueryClient only disables retries on the server; the browser\n // client keeps React Query's default retry (3×) — and other SDK consumers\n // (e.g. mobile) may too — so pin retry:false here to cover every caller.\n retry: false\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { getProfiles } from \"@/modules/bridge\";\nimport { Profile } from \"@/modules/accounts/types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchAccountQueryOptions(q: string, limit = 5) {\n const normalized = q.trim();\n\n return queryOptions({\n queryKey: QueryKeys.search.account(normalized, limit),\n queryFn: async (): Promise => {\n const usernames = (await callRPC(\"condenser_api.lookup_accounts\", [\n normalized,\n limit,\n ])) as string[];\n\n if (usernames.length === 0) {\n return [];\n }\n\n return getProfiles(usernames);\n },\n enabled: !!normalized,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { TrendingTag } from \"@/modules/posts/types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchTopicsQueryOptions(q: string, limit = 10) {\n const normalized = q.trim();\n\n return queryOptions({\n queryKey: QueryKeys.search.topics(normalized, limit),\n queryFn: async (): Promise => {\n const tags = (await callRPC(\"condenser_api.get_trending_tags\", [\n normalized,\n limit + 1,\n ])) as TrendingTag[];\n\n return tags\n .map((t) => t.name)\n .filter((name) => name !== \"\" && !name.startsWith(\"hive-\"))\n .slice(0, limit);\n },\n enabled: !!normalized,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, INTERNAL_API_TIMEOUT_MS, withTimeoutSignal, QueryKeys } from \"@/modules/core\";\nimport { SearchResponse } from \"../types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"../parse-json-response\";\nimport { searchRetryPolicy } from \"../retry-policy\";\n\nexport function getSearchApiInfiniteQueryOptions(\n q: string,\n sort: string,\n hideLow: boolean,\n since?: string,\n votes?: number,\n includeNsfw?: boolean\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.search.api(q, sort, hideLow, since, votes, includeNsfw),\n queryFn: async ({ pageParam, signal }: { pageParam: string | undefined; signal: AbortSignal }) => {\n interface SearchApiPayload {\n q: string;\n sort: string;\n hide_low: boolean;\n since?: string;\n scroll_id?: string;\n votes?: number;\n include_nsfw?: number;\n }\n\n const payload: SearchApiPayload = { q, sort, hide_low: hideLow };\n\n if (since) {\n payload.since = since;\n }\n if (pageParam) {\n payload.scroll_id = pageParam;\n }\n if (votes !== undefined) {\n payload.votes = votes;\n }\n if (includeNsfw) {\n payload.include_nsfw = 1;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(payload),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body), instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n initialPageParam: undefined as string | undefined,\n getNextPageParam: (lastPage: SearchResponse) => lastPage?.scroll_id,\n enabled: !!q,\n retry: searchRetryPolicy,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\n\nexport function getSearchPathQueryOptions(q: string) {\n return queryOptions({\n queryKey: [\"search\", \"path\", q],\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search-path\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify({ q }),\n });\n\n if (!response.ok) {\n throw new Error(`Search path failed: ${response.status}`);\n }\n\n const data = await response.json();\n\n if (data?.length > 0) {\n return data as string[];\n }\n\n return [q];\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { SupportSettings } from \"../types\";\n\n/**\n * Fetch the active user's Support Ecency settings. The username is resolved\n * server-side from the validated `code`, so only the code is sent. Throws on a\n * non-2xx with the server's `.status` + parsed `.data` attached. Exported for\n * unit testing; the query options below wrap it.\n */\nexport async function getSupportSettingsRequest(code: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/support-settings\", {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ code }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to fetch support settings: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as SupportSettings;\n}\n\n/**\n * Query options for the active user's Support Ecency settings\n * (beneficiary percent + curation holdback percent). Zeros mean both\n * opt-ins are off; the backend returns zeros when no row exists.\n */\nexport function getSupportSettingsQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n const name = username?.replace(\"@\", \"\");\n\n return queryOptions({\n queryKey: QueryKeys.support.settings(name),\n queryFn: () => {\n if (!code) {\n throw new Error(\"[SDK][Support] missing auth\");\n }\n return getSupportSettingsRequest(code);\n },\n enabled: !!name && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { QueryClient, useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { SupportSettings, UpdateSupportSettingsPayload } from \"../types\";\n\n/**\n * POST a Support Ecency settings update. Both percents are integers within\n * 0..100 (0 = off); the gateway rejects anything else with a 400. Throws on a\n * non-2xx with the server's `.status` + parsed `.data` attached so the caller\n * can surface the plain validation message. Exported for unit testing; the\n * hook below wraps it.\n */\nexport async function updateSupportSettingsRequest(\n code: string,\n payload: UpdateSupportSettingsPayload\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/support-settings-update\", {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({\n code,\n beneficiary_percent: payload.beneficiary_percent,\n curation_percent: payload.curation_percent,\n }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to update support settings: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as SupportSettings;\n}\n\n/**\n * Sync the settings cache after a successful update: seed the fresh server\n * response and invalidate so any active observers refetch. Exported for unit\n * testing; `useUpdateSupportSettings` calls it from `onSuccess`.\n */\nexport function applySupportSettingsUpdate(\n queryClient: QueryClient,\n username: string,\n data: SupportSettings\n) {\n queryClient.setQueryData(QueryKeys.support.settings(username), data);\n return queryClient.invalidateQueries({ queryKey: QueryKeys.support.settings(username) });\n}\n\n/**\n * Update the user's voluntary Support Ecency opt-ins (post beneficiary percent\n * and curation holdback percent). On success the settings query is refreshed\n * so every surface (publish dialog, settings card, injection hooks) sees the\n * new preference.\n */\nexport function useUpdateSupportSettings(\n username: string | undefined,\n code: string | undefined\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"support\", \"settings-update\", name],\n mutationFn: async (payload: UpdateSupportSettingsPayload) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Support] missing auth\");\n }\n return updateSupportSettingsRequest(code, payload);\n },\n onSuccess(data) {\n if (name) {\n applySupportSettingsUpdate(queryClient, name, data);\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\nexport function getBoostPlusPricesQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"boost-plus-prices\"],\n queryFn: async () => {\n if (!accessToken) {\n return [];\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/boost-plus-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch boost plus prices: ${response.status}`);\n }\n\n return await response.json() as PromotePrice[];\n },\n staleTime: Infinity,\n enabled: !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\n/**\n * RC top-up pricing: duration -> Points cost tiers, served by the ePoints\n * backend via the private API. Reuses the {@link PromotePrice} shape\n * ({ duration, price }).\n */\nexport function getRcDelegationPricesQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"rc-delegation-prices\"],\n queryFn: async () => {\n if (!accessToken) {\n return [];\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/rc-delegation-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch RC delegation prices: ${response.status}`);\n }\n\n return (await response.json()) as PromotePrice[];\n },\n staleTime: Infinity,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\n\nexport interface RcDelegationActive {\n user: string;\n expires: Date;\n}\n\n/**\n * The active (ON) RC top-up for a user, if any. Lets the UI block a duplicate\n * purchase up front (only one RC top-up is allowed at a time). Returns null\n * when the user has no active top-up.\n */\nexport function getRcDelegationActiveQueryOptions(username: string, accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"rc-delegation-active\", username],\n queryFn: async (): Promise => {\n if (!accessToken || !username) {\n return null;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/rc-delegation-active\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\"\n },\n body: JSON.stringify({ code: accessToken, username })\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch RC delegation active: ${response.status}`);\n }\n\n const responseData = (await response.json()) as { user?: string; expires?: string };\n\n return responseData && responseData.expires && responseData.user\n ? { user: responseData.user, expires: new Date(responseData.expires) }\n : null;\n },\n enabled: !!username && !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\nexport function getPromotePriceQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"promote-price\"],\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/promote-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch promote prices: ${response.status}`);\n }\n\n return await response.json() as PromotePrice[];\n },\n enabled: !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\n\nexport interface BoostPlusAccountPrice {\n account: string;\n expires: Date;\n}\n\nexport function getBoostPlusAccountPricesQueryOptions(account: string, accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"boost-plus-accounts\", account],\n queryFn: async (): Promise => {\n if (!accessToken || !account) {\n return null;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/boosted-plus-account\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken, account }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch boost plus account prices: ${response.status}`);\n }\n\n const responseData = await response.json() as {\n expires: string;\n account: string;\n };\n\n return responseData\n ? {\n account: responseData.account,\n expires: new Date(responseData.expires)\n }\n : null;\n },\n enabled: !!account && !!accessToken\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildBoostPlusOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface BoostPlusPayload {\n account: string;\n duration: number;\n}\n\nexport function useBoostPlus(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"promotions\", \"boost-plus\"],\n username,\n ({ account, duration }) => [\n buildBoostPlusOp(username!, account, duration)\n ],\n async (_data, { account }) => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.promotions.boostPlusAccounts(account),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildRcDelegationOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface RcDelegationPayload {\n duration: number;\n}\n\n/**\n * Buys a short-term, RC-only delegation (RC top-up) for the active user, paid\n * with Ecency Points. Mirrors {@link useBoostPlus} but is RC-only (no Hive\n * Power / voting power transferred). Invalidates the user's account + RC caches\n * so the new RC shows up once the relay delegation lands.\n */\nexport function useRcDelegation(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"promotions\", \"rc-delegation\"],\n username,\n ({ duration }) => [buildRcDelegationOp(username!, duration)],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.resourceCredits.account(username!),\n [\"promotions\", \"rc-delegation-active\", username]\n ]);\n }\n },\n auth,\n \"active\",\n { broadcastMode }\n );\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { HsTokenRenewResponse } from \"./types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nexport async function hsTokenRenew(code: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/auth-api/hs-token-refresh\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n data = undefined;\n }\n const error = new Error(`Failed to refresh token: ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n const data = (await response.json()) as HsTokenRenewResponse;\n return data;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"../../core\";\n\nconst BAD_ACTORS_URL =\n \"https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt\";\n\nexport function getBadActorsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.badActors.list(),\n queryFn: async ({ signal }) => {\n const response = await fetch(BAD_ACTORS_URL, { signal });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bad actors list: ${response.status}`);\n }\n\n const text = await response.text();\n return new Set(text.split(\"\\n\").filter(Boolean));\n },\n staleTime: 24 * 60 * 60 * 1000,\n /**\n * Deliberately left unbounded, including under SSR.\n *\n * `Infinity` is the one value that schedules no gc timer at all —\n * `isValidTimeout` in query-core rejects non-finite timeouts, so\n * `scheduleGc` is a no-op. With no timer there is no GC root, and on a\n * per-request client the entry dies with the request that made it.\n * Replacing it with a finite window would *create* a timer that retains the\n * Query and, through it, that request's whole QueryCache — strictly worse\n * here than leaving it alone.\n */\n gcTime: Infinity\n });\n}\n","export const POLLS_PROTOCOL_VERSION = 1.1;\n\nexport enum PollPreferredInterpretation {\n NUMBER_OF_VOTES = \"number_of_votes\",\n TOKENS = \"tokens\",\n}\n\nexport interface PollChoiceVotes {\n total_votes: number;\n hive_hp?: number;\n hive_proxied_hp?: number;\n hive_hp_incl_proxied: number | null;\n}\n\nexport interface PollChoice {\n choice_num: number;\n choice_text: string;\n votes?: PollChoiceVotes;\n}\n\nexport interface PollVoter {\n name: string;\n choices: number[];\n hive_hp?: number;\n hive_proxied_hp?: number;\n hive_hp_incl_proxied?: number;\n}\n\nexport interface PollStats {\n total_voting_accounts_num: number;\n total_hive_hp?: number;\n total_hive_proxied_hp?: number;\n total_hive_hp_incl_proxied: number | null;\n}\n\nexport interface Poll {\n author: string;\n permlink: string;\n question: string;\n poll_choices: PollChoice[];\n poll_voters?: PollVoter[];\n poll_stats?: PollStats;\n poll_trx_id: string;\n status: string;\n end_time: string;\n preferred_interpretation: PollPreferredInterpretation | string;\n max_choices_voted: number;\n filter_account_age_days: number;\n protocol_version: number;\n created: string;\n post_title: string;\n post_body: string;\n parent_permlink: string;\n tags: string[];\n image: unknown[];\n token?: string | null;\n community_membership?: string[];\n allow_vote_changes?: boolean;\n ui_hide_res_until_voted?: boolean;\n platform?: string;\n}\n\nexport function mapMetaChoicesToPollChoices(metaChoices: string[]): PollChoice[] {\n if (!metaChoices) {\n return [];\n }\n\n return metaChoices.map((choice, index) => ({\n choice_num: index + 1,\n choice_text: choice,\n votes: {\n total_votes: 0,\n hive_hp: 0,\n hive_proxied_hp: 0,\n hive_hp_incl_proxied: 0,\n },\n }));\n}\n","import { isServer, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys, SERVER_GC_TIME_MS } from \"@/modules/core\";\nimport { getBoundFetch } from \"@/modules/core/utils\";\nimport type { Poll, PollChoice, PollVoter, PollStats } from \"../types\";\n\nfunction normalizePoll(raw: Record): Poll {\n const pollChoices = (raw.poll_choices as Record[] | undefined) ?? [];\n const pollVoters = (raw.poll_voters as Record[] | undefined) ?? [];\n const rawStats = raw.poll_stats as Record | undefined;\n\n const choices: PollChoice[] = pollChoices.map((c) => {\n const votes = c.votes as Record | undefined;\n return {\n choice_num: (c.choice_num as number) ?? 0,\n choice_text: (c.choice_text as string) ?? \"\",\n votes: votes\n ? {\n total_votes: (votes.total_votes as number) ?? 0,\n hive_hp: votes.hive_hp as number | undefined,\n hive_proxied_hp: votes.hive_proxied_hp as number | undefined,\n hive_hp_incl_proxied: (votes.hive_hp_incl_proxied as number | null) ?? null,\n }\n : undefined,\n };\n });\n\n const voters: PollVoter[] = pollVoters.map((v) => ({\n name: (v.name as string) ?? \"\",\n choices: (v.choices as number[]) ?? [],\n hive_hp: v.hive_hp as number | undefined,\n hive_proxied_hp: v.hive_proxied_hp as number | undefined,\n hive_hp_incl_proxied: v.hive_hp_incl_proxied as number | undefined,\n }));\n\n const stats: PollStats | undefined = rawStats\n ? {\n total_voting_accounts_num: (rawStats.total_voting_accounts_num as number) ?? 0,\n total_hive_hp: rawStats.total_hive_hp as number | undefined,\n total_hive_proxied_hp: rawStats.total_hive_proxied_hp as number | undefined,\n total_hive_hp_incl_proxied: (rawStats.total_hive_hp_incl_proxied as number | null) ?? null,\n }\n : undefined;\n\n return {\n author: (raw.author as string) ?? \"\",\n permlink: (raw.permlink as string) ?? \"\",\n question: (raw.question as string) ?? \"\",\n poll_choices: choices,\n poll_voters: voters,\n poll_stats: stats,\n poll_trx_id: (raw.poll_trx_id as string) ?? \"\",\n status: (raw.status as string) ?? \"\",\n end_time: (raw.end_time as string) ?? \"\",\n preferred_interpretation: (raw.preferred_interpretation as string) ?? \"number_of_votes\",\n max_choices_voted: (raw.max_choices_voted as number) ?? 1,\n filter_account_age_days: (raw.filter_account_age_days as number) ?? 0,\n protocol_version: (raw.protocol_version as number) ?? 0,\n created: (raw.created as string) ?? \"\",\n post_title: (raw.post_title as string) ?? \"\",\n post_body: (raw.post_body as string) ?? \"\",\n parent_permlink: (raw.parent_permlink as string) ?? \"\",\n tags: (raw.tags as string[]) ?? [],\n image: (raw.image as unknown[]) ?? [],\n token: raw.token as string | null | undefined,\n community_membership: raw.community_membership as string[] | undefined,\n allow_vote_changes: raw.allow_vote_changes as boolean | undefined,\n ui_hide_res_until_voted: (raw.ui_hide_res_until_voted as boolean | undefined) ?? false,\n platform: raw.platform as string | undefined,\n };\n}\n\nexport function getPollQueryOptions(\n author: string | undefined,\n permlink: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.polls.details(author ?? \"\", permlink ?? \"\"),\n enabled: !!author && !!permlink,\n // Long in a browser, where a poll is cheap to keep and often revisited;\n // bounded during SSR, where holding it also holds that request's whole\n // cache. See SERVER_GC_TIME_MS.\n gcTime: isServer ? SERVER_GC_TIME_MS : 30 * 60 * 1000,\n queryFn: async (): Promise => {\n if (!author || !permlink) {\n throw new Error(\"[SDK][Polls] – missing author or permlink\");\n }\n\n const fetchApi = getBoundFetch();\n const url = `${CONFIG.pollsApiHost}/rpc/poll?author=eq.${encodeURIComponent(author)}&permlink=eq.${encodeURIComponent(permlink)}`;\n const response = await fetchApi(url);\n\n if (!response.ok) {\n throw new Error(`[SDK][Polls] – fetch failed: ${response.status}`);\n }\n\n const data = await response.json();\n\n if (!Array.isArray(data) || !data[0]) {\n throw new Error(\"[SDK][Polls] – no poll data found\");\n }\n\n return normalizePoll(data[0]);\n },\n });\n}\n","import { QueryKeys, useBroadcastMutation } from \"@/modules/core\";\nimport type { BroadcastMode, AuthContextV2 } from \"@/modules/core\";\n\nexport interface PollVotePayload {\n pollTrxId: string;\n choices: number[];\n}\n\nexport function usePollVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n QueryKeys.polls.vote(),\n username ?? \"\",\n ({ pollTrxId, choices }) => {\n if (!username) {\n throw new Error(\"[SDK][Polls] Cannot vote without an authenticated username\");\n }\n return [\n [\n \"custom_json\",\n {\n id: \"polls\",\n required_auths: [],\n required_posting_auths: [username],\n json: JSON.stringify({\n poll: pollTrxId,\n action: \"vote\",\n choices,\n }),\n },\n ],\n ];\n },\n undefined,\n auth,\n \"posting\",\n { broadcastMode: broadcastMode ?? \"async\" }\n );\n}\n","/**\n * Thresholds behind the content moderation treatment. Single source of truth for\n * every client: web and mobile previously carried their own copies, which drifted\n * (mobile flagged downvoted content at -7B rshares and 4 voters where web used\n * -10B and 5), so the same post read differently depending on the app.\n */\n\n/** Sum of rshares below which a post counts as heavily downvoted. */\nexport const HIDDEN_POST_RSHARES_THRESHOLD = -10000000000;\n\n/** Downvoting is only conclusive once enough accounts have voted. */\nexport const HIDDEN_POST_MIN_VOTES = 5;\n\n/**\n * Reputation (human-readable 0-100 scale) below which an author counts as\n * low-trust. New Hive accounts start around 25.\n *\n * NOTE: reputation is the only input. Account age is NOT part of the check, so a\n * years-old account that never earned reputation trips it exactly like a fresh\n * one. User-facing copy must say \"low reputation\", never \"new account\".\n */\nexport const LOW_TRUST_REPUTATION_THRESHOLD = 30;\n","/**\n * Converts Hive's raw reputation to the human-readable 0-100 scale, passing\n * through values that are already on it (the bridge returns both shapes\n * depending on the endpoint).\n */\nconst isHumanReadable = (input: number): boolean =>\n Math.abs(input) > 0 && Math.abs(input) <= 100;\n\nexport function accountReputation(input: string | number): number {\n if (typeof input === \"number\" && isHumanReadable(input)) {\n return Math.floor(input);\n }\n\n if (typeof input === \"string\") {\n input = Number(input);\n\n if (isHumanReadable(input)) {\n return Math.floor(input);\n }\n }\n\n if (input === 0) {\n return 25;\n }\n\n let neg = false;\n\n if (input < 0) {\n neg = true;\n }\n\n let reputationLevel = Math.log10(Math.abs(input as number));\n reputationLevel = Math.max(reputationLevel - 9, 0);\n\n if (reputationLevel < 0) {\n reputationLevel = 0;\n }\n\n if (neg) {\n reputationLevel *= -1;\n }\n\n reputationLevel = reputationLevel * 9 + 25;\n\n return Math.floor(reputationLevel);\n}\n","/**\n * Outbound-link detection for the SEO/backlink-farm signal.\n *\n * A link only counts as outbound promotion when it leaves the Hive/Ecency\n * ecosystem and is not an embedded image, so ordinary on-platform references and\n * post illustrations never trip the check.\n */\n\n// Hosts that are part of the Hive/Ecency ecosystem.\nconst INTERNAL_HOSTS = [\n \"ecency.com\",\n \"ecency.app\",\n \"hive.blog\",\n \"hive.io\",\n \"hiveblocks.com\",\n \"peakd.com\",\n \"snapie.io\",\n \"hivesuite.app\",\n \"leofinance.io\",\n \"inleo.io\",\n \"3speak.tv\",\n \"d.buzz\",\n \"waivio.com\"\n];\n\n// Image/media hosts: an embedded image is content, not a backlink.\nconst IMAGE_HOSTS = [\n \"imgur.com\",\n \"images.hive.blog\",\n \"files.peakd.com\",\n \"i.ecency.com\",\n \"images.ecency.com\",\n \"steemitimages.com\",\n \"cdn.steemitimages.com\",\n \"media.giphy.com\"\n];\n\nconst IMAGE_EXT_RE = /\\.(jpe?g|png|gif|webp|svg|bmp|avif)(\\?|#|$)/i;\n// Match absolute AND protocol-relative URLs (\"//host/...\"), so the check can't be\n// evaded with `[promo](//shop.example)` (the renderer allows protocol-relative hrefs).\nconst URL_RE = /(?:https?:)?\\/\\/[^\\s)<>\"'\\]]+/gi;\n// URLs in prose are commonly followed by punctuation (\"https://ecency.com, and...\");\n// strip it so the host parses correctly and internal links do not false-positive.\nconst TRAILING_PUNCT_RE = /[.,;:!?'\"]+$/;\n\nfunction hostOf(url: string): string {\n const m = /^(?:https?:)?\\/\\/([^/?#]+)/i.exec(url);\n return m ? m[1].toLowerCase().replace(/^www\\./, \"\") : \"\";\n}\n\nfunction isExternalPromoLink(rawUrl: string): boolean {\n const url = rawUrl.replace(TRAILING_PUNCT_RE, \"\");\n if (IMAGE_EXT_RE.test(url)) {\n return false; // embedded image, not a backlink\n }\n const host = hostOf(url);\n if (!host.includes(\".\")) {\n return false; // not a real domain (e.g. a stray \"//something\")\n }\n const matches = (h: string) => host === h || host.endsWith(\".\" + h);\n if (INTERNAL_HOSTS.some(matches) || IMAGE_HOSTS.some(matches)) {\n return false; // Hive/Ecency or image host\n }\n return true;\n}\n\n/** True if the post body contains an outbound (non-Hive, non-image) link. */\nexport function hasExternalLink(body: string | undefined | null): boolean {\n if (!body) {\n return false;\n }\n const matches = body.match(URL_RE);\n if (!matches) {\n return false;\n }\n return matches.some(isExternalPromoLink);\n}\n","import { accountReputation } from \"./account-reputation\";\nimport {\n HIDDEN_POST_MIN_VOTES,\n HIDDEN_POST_RSHARES_THRESHOLD,\n LOW_TRUST_REPUTATION_THRESHOLD\n} from \"./constants\";\nimport { hasExternalLink } from \"./external-links\";\n\n/**\n * Why a piece of content gets the moderation treatment. Clients render their own\n * copy per reason; the rules that pick the reason live here so web and mobile\n * always agree on which one fired.\n */\nexport enum ContentModerationReason {\n /**\n * `stats.gray` / `stats.hide` from hivemind: community moderator mutes, mutes\n * applied by the observer account, and authors hivemind itself grays out.\n */\n MOD_MUTED = \"mod_muted\",\n /** Heavily downvoted by enough distinct accounts to be conclusive. */\n DOWNVOTED = \"downvoted\",\n /** Low-reputation author whose post carries an outbound promotional link. */\n LOW_TRUST = \"low_trust\"\n}\n\n/**\n * The fields of a post or comment the rules read. Deliberately structural: web\n * passes an `Entry`, mobile passes a raw bridge post, and neither has to convert.\n */\nexport interface ModerationCandidate {\n author?: string;\n author_reputation?: string | number;\n body?: string | null;\n net_rshares?: number;\n active_votes?: unknown[] | null;\n stats?: {\n gray?: boolean;\n hide?: boolean;\n total_votes?: number;\n } | null;\n}\n\n/**\n * hivemind's `total_votes` is the authoritative count when present; `active_votes`\n * is the fallback for the feeds that omit stats.\n */\nfunction countVotes(content: ModerationCandidate): number {\n return content?.stats?.total_votes ?? content?.active_votes?.length ?? 0;\n}\n\n/** Heavily downvoted: strongly negative rshares from more than a handful of voters. */\nexport function isHiddenPost(\n netRshares: number | undefined,\n activeVotesLength: number\n): boolean {\n return (\n (netRshares ?? 0) < HIDDEN_POST_RSHARES_THRESHOLD &&\n activeVotesLength >= HIDDEN_POST_MIN_VOTES\n );\n}\n\n/**\n * Content-moderation signal for SEO/backlink-farm abuse: low-reputation accounts\n * publishing an outbound link are the signature of free-faucet SEO spam.\n *\n * Such posts are not blocked, they are de-emphasized and their outbound link is\n * flagged as unverified, so the promotional payoff drops to zero. Low reputation\n * on its own is NOT a moderation signal: plenty of small accounts post ordinary\n * content, and dimming all of them punishes newcomers for existing.\n */\nexport function isLowTrustSeoPost(\n content: Pick\n): boolean {\n const reputation = content?.author_reputation;\n // Some feeds omit reputation entirely. An unknown value is not evidence of\n // anything, so it must not be read as \"brand new account\" (raw 0 scales to 25,\n // which is below the threshold and would flag every post carrying a link).\n if (reputation === undefined || reputation === null) {\n return false;\n }\n return (\n accountReputation(reputation) < LOW_TRUST_REPUTATION_THRESHOLD &&\n hasExternalLink(content?.body)\n );\n}\n\n/** True when the viewer has personally muted this author. */\nexport function isAuthorMuted(\n author: string | undefined,\n mutedAuthors: string[] | undefined | null\n): boolean {\n return !!author && !!mutedAuthors?.includes(author);\n}\n\n/**\n * The reason a post or comment should be de-emphasized, or null when it is fine.\n *\n * Precedence, most authoritative first: an explicit moderation action outranks\n * the vote heuristic, which outranks the spam heuristic. Order matters because a\n * heavily downvoted post usually also has a battered reputation, and labelling\n * that \"low trust\" would hide why the content was actually flagged.\n *\n * A viewer's personal mute list is NOT an input here. Muting an author removes\n * their content from the viewer's lists entirely (see `isAuthorMuted`), rather\n * than labelling it.\n */\nexport function getContentModerationReason(\n content: ModerationCandidate | undefined | null\n): ContentModerationReason | null {\n if (!content) {\n return null;\n }\n if (content.stats?.gray || content.stats?.hide) {\n return ContentModerationReason.MOD_MUTED;\n }\n if (isHiddenPost(content.net_rshares, countVotes(content))) {\n return ContentModerationReason.DOWNVOTED;\n }\n if (isLowTrustSeoPost(content)) {\n return ContentModerationReason.LOW_TRUST;\n }\n return null;\n}\n","/**\n * Error types for the newsletter client, in their own dependency-free file so\n * test setups can hand out the REAL classes (instanceof must hold across the\n * app) without pulling the SDK config chain along.\n */\nexport class NewsletterApiError extends Error {\n constructor(\n message: string,\n public readonly status: number,\n public readonly data?: unknown,\n ) {\n super(message);\n }\n}\n\n/** A refused send, carrying the relay's routing `code` (already_sent, suspended, ...). */\nexport class NewsletterSendRefusedError extends NewsletterApiError {\n constructor(\n message: string,\n status: number,\n public readonly code?: string,\n public readonly taken?: Array<{ cadence: string; period: string; kind: string }>,\n data?: unknown,\n ) {\n super(message, status, data);\n }\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { NewsletterApiError, NewsletterSendRefusedError } from \"./errors\";\nimport type {\n DigestSubscribeInput,\n DigestSubscribeResult,\n DigestSubscription,\n NewsletterCandidatePost,\n NewsletterListType,\n NewsletterSendPreview,\n NewsletterSendRequest,\n NewsletterSendResult,\n NewsletterSenderStanding,\n NewsletterSentIssue,\n} from \"./types\";\n\n/**\n * Client for the newsletter relay at {privateApiHost}/api/newsletter/*\n * (Next.js route handlers on ecency.com, which alone hold the news-service\n * credentials — clients never talk to the service directly).\n *\n * Identity is the HiveSigner access token, passed here as the explicit `code`\n * argument. Transport mirrors the deployed web client per route: subscribe and\n * unsubscribe-all carry it in the POST body as `code` (the subscribe route\n * authenticates ONLY from the body — a header alone is treated as anonymous);\n * every other call, the send/preview POSTs included, uses the `X-HS-Token`\n * header. The relay verifies it upstream and derives the account from it, so\n * a stale token 401s — callers are responsible for supplying a fresh one\n * (web: ensureValidToken; mobile: the token-refresh wrapper).\n *\n * The email-token confirm/unsubscribe flows are deliberately absent: those\n * links land on web pages.\n */\nfunction newsletterUrl(path: string): string {\n // The relay lives on the WEB origin; newsletterHost overrides where that is\n // (\"\" = same-origin, the web client's case). Nullish on purpose: only an\n // unset override falls back, an empty string is a meaningful host.\n return `${CONFIG.newsletterHost ?? CONFIG.privateApiHost}/api/newsletter${path}`;\n}\n\nasync function parse(response: Response): Promise {\n const data = (await response.json().catch(() => undefined)) as\n | (T & { error?: string })\n | undefined;\n if (!response.ok) {\n throw new NewsletterApiError(\n data?.error || `Request failed (${response.status})`,\n response.status,\n data,\n );\n }\n // A 2xx without a JSON body is not a result; saying so beats returning blanks.\n if (!data || typeof data !== \"object\") {\n throw new NewsletterApiError(\n `Unexpected response (${response.status})`,\n response.status,\n );\n }\n return data;\n}\n\n/**\n * Subscribe an address to a digest. Authenticated callers (code given) skip\n * the captcha; anonymous callers must supply `captchaToken` in the input and\n * get double opt-in. The `own` digest type is always authenticated.\n */\nexport async function subscribeDigestRequest(\n input: DigestSubscribeInput,\n code?: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/subscribe\"), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ ...input, ...(code ? { code } : {}) }),\n });\n return parse(response);\n}\n\n/** Every live digest subscription attributed to the token's account. */\nexport async function getDigestSubscriptionsRequest(\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/subscriptions\"), {\n headers: { \"X-HS-Token\": code },\n });\n const data = await parse<{ subscriptions?: DigestSubscription[] }>(response);\n return data.subscriptions ?? [];\n}\n\n/** Leave one digest by subscription id. */\nexport async function leaveDigestRequest(\n id: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/subscriptions/${encodeURIComponent(id)}`),\n { method: \"DELETE\", headers: { \"X-HS-Token\": code } },\n );\n await parse<{ left: boolean }>(response);\n}\n\n/**\n * Suppress ONE address entirely (no Ecency bulk mail to it again). Only that\n * address stops: an account can hold subscriptions under several addresses.\n */\nexport async function unsubscribeAllDigestsRequest(\n email: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/unsubscribe-all\"), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, code }),\n });\n await parse<{ suppressed: boolean }>(response);\n}\n\n/** Sender standing (status, complaint/bounce stats, subscriber counts) for a list. */\nexport async function getNewsletterSenderRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/sender?type=${type}&target=${encodeURIComponent(target)}`),\n { headers: { \"X-HS-Token\": code } },\n );\n return parse(response);\n}\n\n/** Already-sent issues for a list, newest first. */\nexport async function getNewsletterIssuesRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/issues?type=${type}&target=${encodeURIComponent(target)}`),\n { headers: { \"X-HS-Token\": code } },\n );\n const data = await parse<{ issues?: NewsletterSentIssue[] }>(response);\n return data.issues ?? [];\n}\n\n/** Candidate posts for composing a digest issue. */\nexport async function getNewsletterPostsRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n limit = 20,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(\n `/posts?type=${type}&target=${encodeURIComponent(target)}&limit=${limit}`,\n ),\n { headers: { \"X-HS-Token\": code } },\n );\n const data = await parse<{ posts?: NewsletterCandidatePost[] }>(response);\n return data.posts ?? [];\n}\n\nasync function postSend(\n path: string,\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(path), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\", \"X-HS-Token\": code },\n body: JSON.stringify(request),\n });\n const data = (await response.json().catch(() => undefined)) as\n | (T & {\n error?: string;\n code?: string;\n taken?: NewsletterSendRefusedError[\"taken\"];\n })\n | undefined;\n if (!response.ok) {\n throw new NewsletterSendRefusedError(\n data?.error || `Request failed (${response.status})`,\n response.status,\n data?.code,\n data?.taken,\n data,\n );\n }\n if (!data || typeof data !== \"object\") {\n throw new NewsletterSendRefusedError(\n `Unexpected response (${response.status})`,\n response.status,\n );\n }\n return data;\n}\n\n/** Render the would-be issue (subject/html/text, counts, taken periods) without sending. */\nexport function previewNewsletterSendRequest(\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n return postSend(\"/send/preview\", request, code);\n}\n\n/** Send a post or composed digest to the list's subscribers. Pro/team gated by the relay. */\nexport function sendNewsletterIssueRequest(\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n return postSend(\"/send\", request, code);\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getDigestSubscriptionsRequest } from \"../api\";\n\n/**\n * The signed-in account's live digest subscriptions. Disabled without a\n * username + token: callers render nothing then, and a request that\n * predictably 401s is noise. `retry: false` because the common failure is a\n * stale token, which a retry with the same token cannot fix.\n */\nexport function getDigestSubscriptionsQueryOptions(\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.subscriptions(name),\n enabled: !!name && !!code,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getDigestSubscriptionsRequest(code);\n },\n staleTime: 60_000,\n retry: false,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterSenderRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/**\n * Sender standing for a creator/community list. View access is the list's\n * owner (creator) or the community team, decided by the relay — enable this\n * only for callers already known to be the sender.\n */\nexport function getNewsletterSenderQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.sender(type, target, name),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterSenderRequest(type, target, code);\n },\n staleTime: 5 * 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterIssuesRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/** Already-sent issues for a creator/community list (sender-only view). */\nexport function getNewsletterIssuesQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.issues(type, target, name),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterIssuesRequest(type, target, code);\n },\n staleTime: 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterPostsRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/** Candidate posts for composing a digest issue (send-gated by the relay). */\nexport function getNewsletterPostsQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n limit = 20,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.posts(type, target, name, limit),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterPostsRequest(type, target, code, limit);\n },\n staleTime: 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { subscribeDigestRequest } from \"../api\";\nimport type { DigestSubscribeInput } from \"../types\";\n\n/**\n * Subscribe to a digest (also re-used to change cadence: same list + address\n * with a new cadence updates the row). Works signed-in (code) and anonymous\n * (input.captchaToken); the signed-in path refreshes the account's\n * subscriptions list on success.\n */\nexport function useSubscribeDigest(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"subscribe\", name],\n mutationFn: (input: DigestSubscribeInput) =>\n subscribeDigestRequest(input, code),\n onSuccess() {\n if (name) {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.subscriptions(name),\n });\n }\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { leaveDigestRequest } from \"../api\";\nimport type { DigestSubscription } from \"../types\";\n\n/** Leave one digest by subscription id; drops the row from the cached list. */\nexport function useLeaveDigest(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"leave\", name],\n mutationFn: async (id: string) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return leaveDigestRequest(id, code);\n },\n onSuccess(_result, id) {\n queryClient.setQueryData(\n QueryKeys.newsletter.subscriptions(name),\n (prev) => (prev ?? []).filter((s) => s.id !== id),\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { unsubscribeAllDigestsRequest } from \"../api\";\nimport type { DigestSubscription } from \"../types\";\n\n/**\n * Stop all Ecency mail to ONE address. Only that address's rows leave the\n * cached list: an account can hold subscriptions under more than one address,\n * and those stay visible.\n */\nexport function useUnsubscribeAllDigests(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"unsubscribe-all\", name],\n mutationFn: async (email: string) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return unsubscribeAllDigestsRequest(email, code);\n },\n onSuccess(_result, email) {\n queryClient.setQueryData(\n QueryKeys.newsletter.subscriptions(name),\n (prev) =>\n (prev ?? []).filter(\n (s) => s.email.toLowerCase() !== email.toLowerCase(),\n ),\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport {\n previewNewsletterSendRequest,\n sendNewsletterIssueRequest,\n} from \"../api\";\nimport type { NewsletterSendRequest } from \"../types\";\n\n/**\n * Preview the would-be issue. No cache side effects: a preview changes\n * nothing server-side.\n */\nexport function usePreviewNewsletterIssue(\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return useMutation({\n mutationKey: [\"newsletter\", \"send-preview\", name],\n mutationFn: async (request: NewsletterSendRequest) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return previewNewsletterSendRequest(request, code);\n },\n });\n}\n\n/**\n * Send a post or composed digest to a list. Errors are\n * NewsletterSendRefusedError with the relay's routing `code`\n * (already_sent + taken periods, suspended, post_refused, ...). On success the\n * list's issues + sender standing refresh.\n */\nexport function useSendNewsletterIssue(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"send\", name],\n mutationFn: async (request: NewsletterSendRequest) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return sendNewsletterIssueRequest(request, code);\n },\n onSuccess(_result, request) {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.issues(request.type, request.target, name),\n });\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.sender(request.type, request.target, name),\n });\n },\n });\n}\n","/**\n * Curation desk types.\n *\n * Shapes mirror the desk routes behind `/private-api/curation-desk/*`. Public\n * rows carry no curator identity; the roster feed and the tick add an `overlay`\n * with marks, signals and flags. The window state (full, half, eighth, locked,\n * paid) is never in a payload: clients derive it from `created` and `payout_at`.\n */\n\nexport const CURATION_REASONS = [\"quality\", \"underrated\", \"newcomer\", \"other\"] as const;\nexport type CurationReason = (typeof CURATION_REASONS)[number];\n\nexport const CURATION_SORTS = [\"queue\", \"newest\", \"unique\", \"random\"] as const;\nexport type CurationSort = (typeof CURATION_SORTS)[number];\n\nexport const CURATION_VIEWS = [\n \"queue\",\n \"latest\",\n \"new-authors\",\n \"recommended\",\n \"curated\",\n \"all\",\n \"excluded\",\n] as const;\nexport type CurationView = (typeof CURATION_VIEWS)[number];\n\nexport const CURATION_APPS = [\"all\", \"ecency\", \"peakd\", \"other\"] as const;\nexport type CurationApp = (typeof CURATION_APPS)[number];\n\nexport const CURATION_WINDOWS = [\"12h\", \"full\", \"half\", \"eighth\", \"locked\", \"all\"] as const;\nexport type CurationWindow = (typeof CURATION_WINDOWS)[number];\n\nexport const CURATION_MARK_STATES = [\"reviewed\", \"snoozed\", \"flagged\", \"noted\"] as const;\nexport type CurationMarkState = (typeof CURATION_MARK_STATES)[number];\n\nexport const CURATION_FLAG_REASONS = [\n \"plagiarism\",\n \"ai_slop\",\n \"recycled\",\n \"image_only\",\n \"tag_abuse\",\n \"farming\",\n \"nsfw_untagged\",\n \"other\",\n] as const;\nexport type CurationFlagReason = (typeof CURATION_FLAG_REASONS)[number];\n\nexport type CurationRole = \"admin\" | \"mod\" | \"curator\" | \"trial\";\n\n/** Filters shared by the public feed (query params) and the roster feed (body). */\nexport interface CurationFeedParams {\n sort?: CurationSort;\n view?: CurationView;\n app?: CurationApp;\n community?: string;\n window?: CurationWindow;\n rep_min?: number;\n rep_max?: number;\n min_words?: number;\n max_words?: number;\n has_images?: boolean;\n new_authors?: boolean;\n recommended?: boolean;\n hide_curated?: boolean;\n limit?: number;\n}\n\n/** Roster-only additions: the random seed and the team-mark predicates. */\nexport interface CurationRosterFeedParams extends CurationFeedParams {\n seed?: string;\n flagged?: boolean;\n hide_reviewed?: boolean;\n hide_snoozed?: boolean;\n}\n\nexport interface CurationTrailedBy {\n curator: string;\n at: string;\n weight: number;\n source: \"erobot_push\" | \"history\" | \"inferred\" | string;\n confirmed: boolean;\n}\n\nexport interface CurationVotedBy {\n voter: string;\n weight: number;\n at: string;\n}\n\n/** Public row (route 1, 4 rows are narrower, route 5 adds recommenders). */\nexport interface CurationRow {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n created: string;\n app: string | null;\n is_ecency: boolean;\n community: string | null;\n community_title: string | null;\n tags: string[];\n rep: number | null;\n is_new_author: boolean;\n author_post_count: number | null;\n author_created?: string | null;\n word_count: number | null;\n image_count: number;\n first_image: string | null;\n summary: string | null;\n edited_at: string | null;\n edit_count: number;\n votes: number | null;\n pending_payout: number | null;\n pending_payout_est?: number | null;\n payout_at: string | null;\n is_declined?: boolean | null;\n is_gray?: boolean | null;\n rshares_total?: number | null;\n rshares_after_24h?: number | null;\n /** 0 open, 1 curated, 2 dropped */\n state: number;\n trailed_by: CurationTrailedBy | null;\n voted_by: CurationVotedBy[];\n author_trailed_at: string | null;\n /** Set on the hivewatchers unvote path. */\n unvoted_at?: string | null;\n /** Materialization time; with `created` it tells a late row. */\n inserted_at?: string | null;\n recommend_count: number;\n unique_recommenders: number;\n reco_no_meta_count: number;\n /** Opaque keyset cursor for the page that follows this row. */\n _cursor?: string;\n}\n\nexport interface CurationMark {\n curator: string;\n state: CurationMarkState;\n reason?: string | null;\n note?: string | null;\n /**\n * Whether a note body exists. Tick deltas carry this instead of the body,\n * so a delta must never overwrite a note the client already holds.\n */\n has_note?: boolean;\n snooze_until?: string | null;\n updated_at: string;\n}\n\nexport interface CurationSignals {\n formulaic?: number | null;\n images?: { on_hive?: number; total?: number } | null;\n engagement?: { replies_per_day?: number | null } | null;\n style?: { alert?: boolean; sigma?: number; feature?: string; sample?: number } | null;\n /**\n * The detector's read of the post's FIRST image, which is the one rendered as the\n * thumbnail. `over` is the only field to act on; `score` and `classes` are for tuning.\n * A null score means unknown (no image, or the check could not run), never \"clean\".\n */\n nsfw?: {\n score?: number | null;\n class?: string | null;\n over?: boolean;\n classes?: string[];\n note?: string;\n } | null;\n [key: string]: unknown;\n}\n\nexport interface CurationFlags {\n low_rep?: boolean;\n /** The author's reputation has gone negative, which is not the same line as low_rep. */\n negative_rep?: boolean;\n ignorelist?: boolean;\n abuser?: boolean;\n spaminator?: boolean;\n blocked_tag?: boolean;\n /** The post carries Hive's own `nsfw` tag. */\n nsfw?: boolean;\n patch_body?: boolean;\n deleted?: boolean;\n hivewatchers_downvote?: boolean;\n [key: string]: unknown;\n}\n\n/** Roster-only overlay shipped inline with the roster feed and in tick deltas. */\nexport interface CurationOverlay {\n signals: CurationSignals | null;\n flags: CurationFlags;\n excluded_reason: string | null;\n team_mark: CurationMarkState | null;\n team_mark_by: string | null;\n team_snooze_until?: string | null;\n resurfaced_at: string | null;\n /** Set when the roster dismissed the recommendations of this post. */\n reco_dismissed_at?: string | null;\n marks: CurationMark[];\n notes_count: number;\n}\n\nexport type CurationRosterRow = CurationRow & { overlay: CurationOverlay | null };\n\nexport interface CurationTeamCursor {\n post_id: number | null;\n created: string | null;\n set_by?: string;\n set_at?: string;\n}\n\nexport interface CurationActiveCurator {\n username: string;\n last_action_at: string;\n}\n\n/**\n * The narrowing facets a curator was working when they made a mark. Empty means\n * the whole queue. The keys are the roster feed's own params, so a value here has\n * already been through the allow lists the query runs on.\n */\nexport type CurationLane = Partial<{\n /** Present only when it is not the queue order, under which alone a position is a watermark. */\n sort: CurationSort;\n view: string;\n app: CurationApp;\n community: string;\n window: CurationWindow;\n rep_min: number;\n rep_max: number;\n min_words: number;\n max_words: number;\n has_images: boolean;\n new_authors: boolean;\n recommended: boolean;\n flagged: boolean;\n hide_curated: boolean;\n hide_reviewed: boolean;\n hide_snoozed: boolean;\n}>;\n\n/**\n * How far one curator has got, derived from their marks so nobody types it. This\n * is the hand-off curators used to post in Discord.\n *\n * `reviewed_to` is a progress claim rather than a contiguous reviewed prefix: a\n * mark is any of the four states and marks are not made in queue order. It is\n * read, never used to aim anything. `lane` travels with the mark that set the\n * position, so the two always describe the same moment. Roster-only: the public\n * payloads carry no per-curator activity at all.\n */\nexport interface CurationHandoffEntry {\n username: string;\n reviewed_to: string | null;\n reviewed_to_post_id: number | null;\n last_mark_at: string;\n /** Absent for a trial viewer looking at somebody else. */\n marks_24h?: number;\n /**\n * Null is UNKNOWN: a mark from before the desk sent lanes, or one that said\n * nothing. It is never the whole queue, which is `{}`. Absent until the\n * backend that records it is deployed.\n */\n lane?: CurationLane | null;\n}\n\nexport interface CurationFeedPage {\n items: CurationRow[];\n next_cursor: string | null;\n team_cursor: CurationTeamCursor;\n head_lag_seconds: number;\n feed_version: string | null;\n generated_at: string;\n}\n\nexport interface CurationRosterFeedPage {\n items: CurationRosterRow[];\n next_cursor: string | null;\n team_cursor: CurationTeamCursor;\n active_curators: CurationActiveCurator[];\n /** Roster only, and absent until the backend that derives it is deployed. */\n handoff?: CurationHandoffEntry[];\n facets: { communities: Array<{ community: string; title?: string | null; count?: number }> };\n total_estimate: number | null;\n head_lag_seconds: number;\n generated_at: string;\n}\n\nexport interface CurationManaSpent {\n equiv: number;\n trail: number;\n other: number;\n crosscheck: number | null;\n since: string;\n}\n\nexport interface CurationVp {\n account: string;\n percent: number;\n live_percent: number;\n implied_weight: number;\n at: string;\n sustainable_votes_per_day: number;\n regen_votes_per_hour: number;\n reward_fund?: {\n recent_claims: string | number;\n reward_balance: number;\n median_price: number;\n at: string;\n } | null;\n}\n\nexport interface CurationStatus {\n team_cursor: CurationTeamCursor;\n behind_seconds: number | null;\n counts: {\n unreviewed: number;\n curated_24h: number;\n trail_votes_today: { posts: number; comments: number };\n recommended_posts: number;\n };\n mana_spent_today: CurationManaSpent | null;\n vp: CurationVp | null;\n head_lag_seconds: number;\n reco_lag_blocks: number | null;\n feed_version: string | null;\n latest_post_id: number | null;\n worker_tick_age_seconds: number | null;\n}\n\n/**\n * The per-curator conditions erobot applies before trailing a vote. The three\n * weights are Hive vote weights (100 = 1%); `trail` overrides the per-role\n * default, and is what `config.followAccounts` used to be.\n */\nexport interface CurationRosterRules {\n min_weight?: number;\n max_weight?: number;\n waves_only_below?: number;\n trail?: boolean;\n}\n\nexport interface CurationRosterEntry {\n username: string;\n role: CurationRole;\n active: boolean;\n rules?: CurationRosterRules | null;\n /** Resolved by the backend, so no client re-implements the per-role default. */\n trail?: boolean;\n}\n\n/**\n * The admin view of a row. These fields are private, so they arrive from the\n * roster-list POST and never from the edge-cached roster GET.\n */\nexport interface CurationRosterAdminEntry extends CurationRosterEntry {\n added_by: string | null;\n added_at: string | null;\n removed_at: string | null;\n note: string | null;\n}\n\nexport interface CurationRoster {\n curators: CurationRosterEntry[];\n updated_at: string;\n}\n\nexport interface CurationRosterAdminList {\n curators: CurationRosterAdminEntry[];\n}\n\nexport interface CurationRosterSetInput {\n curator: string;\n role: CurationRole;\n rules?: CurationRosterRules;\n note?: string;\n}\n\nexport interface CurationRecommender {\n username: string;\n rep: number | null;\n reason: CurationReason | null;\n at: string;\n has_meta: boolean;\n is_self?: boolean;\n /**\n * Ordering weight of this recommender, 0.5 to 1.5 with 1.0 neutral. Above\n * 1.0 means curators curated their picks more often than they dismissed\n * them over the window. It changes ordering only, never what is shown.\n */\n precision?: number;\n /** At least 10 recommendations and a precision of 1.2 or more. */\n trusted?: boolean;\n}\n\n/**\n * Route 14: one recommender's 90-day scorecard. An unknown username answers\n * zeros with a neutral precision and `trusted: false`, never a 404, so a name\n * that never recommended anything is not an error state.\n */\nexport interface CurationRecommenderStats {\n username: string;\n window_days: number;\n recommended: number;\n curated: number;\n dismissed: number;\n withdrawn: number;\n precision: number;\n trusted: boolean;\n computed_at: string | null;\n}\n\nexport type CurationReasonsHistogram = Partial>;\n\nexport interface CurationRecommendationItem {\n author: string;\n permlink: string;\n title: string;\n created: string;\n /**\n * The post's cover, the same column the feed row carries. Optional because a\n * desk older than the field answers without it; absent and null both mean no\n * cover, and the caller proxifies before rendering.\n */\n first_image?: string | null;\n recommend_count: number;\n unique_recommenders: number;\n no_meta_count: number;\n reasons: CurationReasonsHistogram;\n recommenders: CurationRecommender[];\n _cursor?: string;\n}\n\nexport interface CurationRecommendationsPage {\n items: CurationRecommendationItem[];\n next_cursor: string | null;\n}\n\nexport type CurationRecommendationsSort = \"unique\" | \"newest\";\n\nexport interface CurationRecommendationsParams {\n sort?: CurationRecommendationsSort;\n limit?: number;\n}\n\n/** Route 5: the public row plus the recommender list, self row included. */\nexport interface CurationPost extends CurationRow {\n recommenders: CurationRecommender[];\n no_meta_count: number;\n reasons: CurationReasonsHistogram;\n}\n\nexport interface CurationTickRequest {\n /** `generated_at` echoed verbatim from the previous response. */\n since: string | null;\n /** Loaded rows that have no overlay yet (at most 100). */\n need: number[];\n /** Visible rows (at most 100). */\n visible: number[];\n}\n\n/**\n * Tick answer. `truncated` says the delta window was too wide to answer in\n * full; it only means something when the request carried a `since`, since a\n * first tick with `since: null` asks for a snapshot, not a window.\n */\nexport interface CurationTickResponse {\n overlay: Array<{ post_id: number } & CurationOverlay>;\n deltas: {\n marks: Array<{ post_id: number } & CurationMark>;\n flags: Array<{ post_id: number; flags: CurationFlags; excluded_reason: string | null }>;\n signals: Array<{ post_id: number; signals: CurationSignals | null }>;\n /**\n * Rows whose curation state moved since the client's own `generated_at`.\n * The overlay carries no state, so without these a page the client keeps\n * holding would render a curated post as open and votable. Optional: a\n * backend that predates it simply sends nothing.\n */\n rows?: Array<\n Pick\n >;\n };\n team_cursor: CurationTeamCursor;\n active_curators: CurationActiveCurator[];\n /** Roster only, and absent until the backend that derives it is deployed. */\n handoff?: CurationHandoffEntry[];\n trail_alerts: unknown[];\n generated_at: string;\n truncated: boolean;\n}\n\nexport interface CurationMarkInput {\n author: string;\n permlink: string;\n state: CurationMarkState;\n reason?: string;\n note?: string;\n snooze_until?: string;\n /**\n * The feed params the desk was showing when it made this mark. The hand-off\n * reads a position and its lane off the same mark, so a desk with two tabs on\n * different filters stamps each mark with its own. Paging keys are dropped by\n * the gateway; absent means the lane is unknown, never the whole queue.\n */\n lane?: CurationRosterFeedParams;\n}\n\nexport interface CurationMarkResponse {\n mark: CurationMark | null;\n row: CurationRosterRow;\n}\n\nexport interface CurationMarkClearResponse {\n ok: boolean;\n row: CurationRosterRow;\n}\n\nexport interface CurationMyMarksParams {\n state?: CurationMarkState;\n cursor?: string;\n limit?: number;\n}\n\nexport interface CurationMyMark extends CurationMark {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n created: string;\n row?: CurationRosterRow | null;\n}\n\nexport interface CurationMyMarksResponse {\n items: CurationMyMark[];\n next_cursor: string | null;\n}\n\nexport type CurationCursorAction = \"advance\" | \"rewind\";\n\nexport interface CurationCursorInput {\n post_id: number;\n action: CurationCursorAction;\n reason?: string;\n}\n\nexport interface CurationCursorResponse {\n team_cursor: CurationTeamCursor;\n moved: boolean;\n swept_count: number | null;\n}\n\nexport type CurationUaClass = \"web\" | \"mobile\";\n\nexport interface CurationRecommendMetaInput {\n author: string;\n permlink: string;\n /** 40 hex chars when the broadcast path returned one; omitted otherwise. */\n trx_id?: string | null;\n ua_class: CurationUaClass;\n}\n\nexport type CurationDismissAction = \"dismiss\" | \"restore\";\n\nexport interface CurationDismissRecoInput {\n author: string;\n permlink: string;\n action: CurationDismissAction;\n}\n\nexport interface CurationDismissRecoResponse {\n row: CurationRosterRow;\n}\n","import type { CurationFlags } from \"./types\";\n\n/**\n * The desk shows the moderation flags the backend materialized from the bot's\n * config and from external abuse lists. The web reads them through this helper\n * so the list's name stays a wire detail of the payload: it is a warning the\n * desk displays, never a verdict and never an input to indexability.\n */\nexport function isOnAbuseList(flags: CurationFlags | null | undefined): boolean {\n return !!flags?.spaminator || !!flags?.abuser;\n}\n\n/**\n * Any flag that keeps a row out of the public queue. `low_rep` is deliberately\n * absent: it is the one excluded reason every view still lists with a chip,\n * because 25 is the reputation a brand new account has. `negative_rep` is the\n * separate line for a reputation that has gone negative, and that one does\n * remove the row.\n */\nexport function isExcludedByFlags(flags: CurationFlags | null | undefined): boolean {\n return (\n !!flags?.ignorelist ||\n !!flags?.abuser ||\n !!flags?.blocked_tag ||\n !!flags?.nsfw ||\n !!flags?.patch_body ||\n !!flags?.negative_rep ||\n !!flags?.deleted\n );\n}\n","import type { InfiniteData } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\n\n/**\n * Takedown masking for desk payloads.\n *\n * The desk serves rows the bridge never touched, so they never pass through\n * `filterDmcaEntry`. The test is the same one that file runs (`CONFIG`\n * patterns plus regexes against `@author/permlink`); what a row can leak is\n * its title, its summary and its thumbnail, so those are what the mask blanks.\n */\n\ninterface MaskableCurationRow {\n author: string;\n permlink: string;\n title: string;\n summary?: string | null;\n first_image?: string | null;\n}\n\nexport function isDmcaCurationPath(author: string, permlink: string): boolean {\n const path = `@${author}/${permlink}`;\n return (\n CONFIG.dmcaPatterns.includes(path) || CONFIG.dmcaPatternRegexes.some((regex) => regex.test(path))\n );\n}\n\n/** Returns the SAME object when nothing matches, so memoized rows keep identity. */\nexport function maskDmcaCurationRow(row: T): T {\n if (!row || !isDmcaCurationPath(row.author, row.permlink)) {\n return row;\n }\n const masked = { ...row, title: \"\" } as MaskableCurationRow & Record;\n if (\"summary\" in masked) masked.summary = null;\n if (\"first_image\" in masked) masked.first_image = null;\n return masked as T;\n}\n\n/** Masks every page item; untouched pages keep their identity. */\nexport function maskDmcaCurationPages(\n data: InfiniteData\n): InfiniteData {\n let changed = false;\n const pages = data.pages.map((page) => {\n let pageChanged = false;\n const items = page.items.map((item) => {\n const masked = maskDmcaCurationRow(item);\n if (masked !== item) pageChanged = true;\n return masked;\n });\n if (!pageChanged) return page;\n changed = true;\n return { ...page, items };\n });\n return changed ? { ...data, pages } : data;\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport type {\n CurationCursorInput,\n CurationCursorResponse,\n CurationDismissRecoInput,\n CurationDismissRecoResponse,\n CurationFeedPage,\n CurationFeedParams,\n CurationMarkClearResponse,\n CurationMarkInput,\n CurationMarkResponse,\n CurationMyMarksParams,\n CurationMyMarksResponse,\n CurationPost,\n CurationRecommendMetaInput,\n CurationRecommendationsPage,\n CurationRecommendationsParams,\n CurationRecommenderStats,\n CurationRoster,\n CurationRosterAdminEntry,\n CurationRosterAdminList,\n CurationRosterFeedPage,\n CurationRosterFeedParams,\n CurationRosterSetInput,\n CurationStatus,\n CurationTickRequest,\n CurationTickResponse,\n} from \"./types\";\n\n/**\n * Curation desk transport. Public GETs carry no identity; authed POSTs take the\n * HiveSigner access `code` as an explicit argument and send it in the body.\n * Token freshness is the caller's job (web: ensureValidToken; mobile: its token\n * wrapper), so a builder never captures a code that can expire.\n */\n\nconst ROUTE = \"/private-api/curation-desk\";\n\nexport class CurationApiError extends Error {\n readonly status: number;\n readonly data: unknown;\n\n constructor(message: string, status: number, data?: unknown) {\n super(message);\n this.name = \"CurationApiError\";\n this.status = status;\n this.data = data;\n }\n}\n\n/**\n * A light shape check per response family, not a schema validator: it answers\n * \"is this the kind of body the consumers dereference\", so a 200 that carries\n * something else (an error envelope, another route's body) fails here instead\n * of inside a query builder reading `.items.length`.\n */\ntype ShapeCheck = (data: unknown) => boolean;\n\nfunction isRecord(data: unknown): data is Record {\n return typeof data === \"object\" && data !== null && !Array.isArray(data);\n}\n\n/** Every paged family: the list is what the consumers page over. */\nconst hasItems: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.items);\nconst hasCurators: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.curators);\n/** Route 5: the viewer finds their own recommendation by name in this list. */\nconst hasRecommenders: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.recommenders);\n/** `vp` is nullable, so the field has to be present rather than truthy. */\nconst isStatus: ShapeCheck = (data) => isRecord(data) && \"vp\" in data;\n/**\n * A scorecard is counted, never absent: an unknown recommender answers zeros\n * rather than a 404, so a body without a numeric `recommended` is another\n * route's answer and not an empty scorecard.\n */\n/** Every number the scorecard prints, the window it prints them for included. */\nconst SCORECARD_COUNTS = [\"window_days\", \"recommended\", \"curated\", \"dismissed\", \"withdrawn\", \"precision\"] as const;\nconst isRecommenderStats: ShapeCheck = (data) =>\n isRecord(data) &&\n SCORECARD_COUNTS.every((key) => typeof data[key] === \"number\") &&\n typeof data.trusted === \"boolean\";\n\nasync function parse(response: Response, what: string, check?: ShapeCheck): Promise {\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n data = undefined;\n }\n throw new CurationApiError(`Failed to ${what}: ${response.status}`, response.status, data);\n }\n // The gateway answers an unknown GET with a 200 HTML page. That is never an\n // empty queue, so a non-JSON body is an error too. A body that only claims\n // to be JSON gets the same treatment: parsing it must not reach the caller\n // as a SyntaxError with no status on it.\n const contentType = response.headers?.get?.(\"content-type\") ?? \"\";\n if (contentType && !contentType.includes(\"json\")) {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n let data: unknown;\n try {\n data = await response.json();\n } catch {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n if (check && !check(data)) {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n return data as T;\n}\n\nconst COMMUNITY_RE = /^hive-\\d{5,6}$/;\nconst SEED_RE = /^[a-z0-9]{8,16}$/;\n\n/**\n * Booleans the desk already defaults to true, so only an explicit false says\n * anything. Sending the \"1\" would split memo and cache keys against a gateway\n * that drops it.\n */\nconst DEFAULT_TRUE = new Set([\"hide_curated\", \"hide_reviewed\", \"hide_snoozed\"]);\n\n/** Fixed emission order: keeps memo and shared-cache keys stable across clients. */\nconst PARAM_ORDER = [\n \"sort\",\n \"seed\",\n \"view\",\n \"app\",\n \"community\",\n \"window\",\n \"rep_min\",\n \"rep_max\",\n \"min_words\",\n \"max_words\",\n \"has_images\",\n \"new_authors\",\n \"recommended\",\n \"flagged\",\n \"hide_curated\",\n \"hide_reviewed\",\n \"hide_snoozed\",\n \"limit\",\n] as const;\n\nexport type NormalizedCurationParams = Record;\n\n/**\n * Drops defaults and unknown values, emits fixed-order string params. Used for\n * the query string, the roster body and the React Query key, so all three agree.\n */\nexport function normalizeCurationParams(\n params: CurationRosterFeedParams | CurationFeedParams = {}\n): NormalizedCurationParams {\n const source = params as Record;\n const out: NormalizedCurationParams = {};\n for (const name of PARAM_ORDER) {\n const value = source[name];\n if (value === undefined || value === null || value === \"\") continue;\n if (typeof value === \"boolean\") {\n if (DEFAULT_TRUE.has(name)) {\n if (!value) out[name] = \"0\";\n } else if (value) {\n out[name] = \"1\";\n }\n continue;\n }\n if (typeof value === \"number\") {\n if (!Number.isFinite(value)) continue;\n out[name] = String(Math.trunc(value));\n continue;\n }\n const text = String(value);\n if ((name === \"app\" || name === \"window\") && text === \"all\") continue;\n if (name === \"community\" && !COMMUNITY_RE.test(text)) continue;\n if (name === \"seed\" && !SEED_RE.test(text)) continue;\n out[name] = text;\n }\n // The seed only means something for the random order.\n if (out.sort !== \"random\") delete out.seed;\n return out;\n}\n\nfunction toQuery(normalized: NormalizedCurationParams, cursor?: string): string {\n const search = new URLSearchParams();\n for (const name of PARAM_ORDER) {\n if (normalized[name] !== undefined) search.set(name, normalized[name]);\n }\n if (cursor) search.set(\"cursor\", cursor);\n const text = search.toString();\n return text ? `?${text}` : \"\";\n}\n\nfunction url(path: string): string {\n return `${CONFIG.privateApiHost}${ROUTE}${path}`;\n}\n\n/** Hosts a credential may reach without TLS: a local gateway has no certificate. */\nconst LOOPBACK_HOSTS = new Set([\"localhost\", \"127.0.0.1\", \"::1\", \"[::1]\"]);\n\n/**\n * The authed routes put the HiveSigner code in the body, so the transport is\n * the only thing keeping a replayable credential private. A relative host\n * (empty for same-origin, `//gateway`, `/api`) takes the page's own transport,\n * so it is resolved against the page before the scheme is read.\n */\nfunction assertCredentialTransport(what: string) {\n const host = CONFIG.privateApiHost || \"\";\n const page = typeof window !== \"undefined\" ? window.location?.href : undefined;\n let parsed: URL;\n try {\n parsed = page ? new URL(host, page) : new URL(host);\n } catch {\n // Relative with no page to resolve against: outside a browser nothing can\n // be fetched from a relative URL either.\n return;\n }\n if (parsed.protocol === \"https:\") return;\n if (parsed.protocol === \"http:\" && LOOPBACK_HOSTS.has(parsed.hostname)) return;\n throw new CurationApiError(`Refusing to ${what} over an insecure connection`, 0);\n}\n\nasync function getJson(\n path: string,\n what: string,\n signal?: AbortSignal,\n check?: ShapeCheck\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url(path), { method: \"GET\", signal });\n return parse(response, what, check);\n}\n\nasync function postJson(\n path: string,\n code: string | undefined,\n body: Record,\n what: string,\n signal?: AbortSignal,\n check?: ShapeCheck\n): Promise {\n if (!code) {\n throw new Error(\"[SDK][Curation] missing auth\");\n }\n assertCredentialTransport(what);\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url(path), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ ...body, code }),\n // A 307 or 308 would resend this body, code included, to wherever the\n // redirect points.\n redirect: \"error\",\n signal,\n });\n return parse(response, what, check);\n}\n\n// ---------------------------------------------------------------------------\n// Public reads (used by the query builders)\n// ---------------------------------------------------------------------------\n\nexport function fetchCurationFeedPage(\n params: CurationFeedParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/feed${toQuery(normalizeCurationParams(params), cursor)}`,\n \"fetch curation feed\",\n signal,\n hasItems\n );\n}\n\nexport function fetchCurationStatus(signal?: AbortSignal): Promise {\n return getJson(\"/status\", \"fetch curation status\", signal, isStatus);\n}\n\nexport function fetchCurationRoster(signal?: AbortSignal): Promise {\n return getJson(\"/roster\", \"fetch curation roster\", signal, hasCurators);\n}\n\nexport function fetchCurationRecommendationsPage(\n params: CurationRecommendationsParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n const search = new URLSearchParams();\n if (params.sort) search.set(\"sort\", params.sort);\n if (params.limit) search.set(\"limit\", String(params.limit));\n if (cursor) search.set(\"cursor\", cursor);\n const text = search.toString();\n return getJson(\n `/recommendations${text ? `?${text}` : \"\"}`,\n \"fetch curation recommendations\",\n signal,\n hasItems\n );\n}\n\nexport function fetchCurationRecommenderStats(\n username: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/recommender/${encodeURIComponent(username)}`,\n \"fetch recommender stats\",\n signal,\n isRecommenderStats\n );\n}\n\nexport function fetchCurationPost(\n author: string,\n permlink: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/post/${encodeURIComponent(author)}/${encodeURIComponent(permlink)}`,\n \"fetch curation post\",\n signal,\n hasRecommenders\n );\n}\n\n// ---------------------------------------------------------------------------\n// Authed writes and reads (code in the body)\n// ---------------------------------------------------------------------------\n\nexport function curationRosterFeedRequest(\n code: string | undefined,\n params: CurationRosterFeedParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n const body: Record = { ...normalizeCurationParams(params) };\n if (cursor) body.cursor = cursor;\n return postJson(\n \"/roster-feed\",\n code,\n body,\n \"fetch roster feed\",\n signal,\n hasItems\n );\n}\n\nexport function curationTickRequest(\n code: string | undefined,\n body: CurationTickRequest,\n signal?: AbortSignal\n): Promise {\n return postJson(\n \"/tick\",\n code,\n {\n since: body.since,\n need: body.need.slice(0, 100),\n visible: body.visible.slice(0, 100),\n },\n \"tick\",\n signal\n );\n}\n\n/**\n * The roster admin routes. All three are admin-only upstream, and all three are\n * POSTs: the private view carries notes and retired rows, which must never enter\n * the edge-cached roster GET.\n */\nexport function curationRosterListRequest(\n code: string | undefined,\n signal?: AbortSignal\n): Promise {\n // Same shape check as the public roster: a 200 carrying an error envelope, or any\n // body without `curators`, must reach the query's error path. Without it the panel\n // renders `data?.curators ?? []` and an outage looks like an empty roster.\n return postJson(\"/roster-list\", code, {}, \"list roster\", signal, hasCurators);\n}\n\nexport function curationRosterSetRequest(\n code: string | undefined,\n input: CurationRosterSetInput\n): Promise<{ curator: CurationRosterAdminEntry }> {\n const { curator, role, rules, note } = input;\n if (!curator || !role) {\n throw new Error(\"[SDK][Curation] roster set needs a curator and a role\");\n }\n const body: Record = { curator, role };\n // Sent whole or not at all: the backend replaces the stored rules with what\n // arrives, so a partial object would silently drop the rules left out.\n if (rules) body.rules = rules;\n if (note !== undefined) body.note = note;\n return postJson<{ curator: CurationRosterAdminEntry }>(\"/roster-set\", code, body, \"set curator\");\n}\n\nexport function curationRosterRetireRequest(\n code: string | undefined,\n curator: string\n): Promise<{ ok: boolean; curator: string }> {\n if (!curator) {\n throw new Error(\"[SDK][Curation] roster retire needs a curator\");\n }\n return postJson<{ ok: boolean; curator: string }>(\n \"/roster-retire\",\n code,\n { curator },\n \"retire curator\"\n );\n}\n\nexport function curationMarkRequest(\n code: string | undefined,\n input: CurationMarkInput\n): Promise {\n const { author, permlink, state, reason, note, snooze_until, lane } = input;\n if (!author || !permlink || !state) {\n throw new Error(\"[SDK][Curation] mark needs author, permlink and state\");\n }\n const body: Record = { author, permlink, state };\n if (reason) body.reason = reason;\n if (note) body.note = note;\n if (snooze_until) body.snooze_until = snooze_until;\n if (lane) body.lane = lane;\n return postJson(\"/mark\", code, body, \"set mark\");\n}\n\nexport function curationMarkClearRequest(\n code: string | undefined,\n input: { author: string; permlink: string }\n): Promise {\n if (!input.author || !input.permlink) {\n throw new Error(\"[SDK][Curation] mark-clear needs author and permlink\");\n }\n return postJson(\n \"/mark-clear\",\n code,\n { author: input.author, permlink: input.permlink },\n \"clear mark\"\n );\n}\n\nexport function curationMyMarksRequest(\n code: string | undefined,\n params: CurationMyMarksParams = {},\n signal?: AbortSignal\n): Promise {\n const body: Record = {};\n if (params.state) body.state = params.state;\n if (params.cursor) body.cursor = params.cursor;\n if (params.limit) body.limit = params.limit;\n return postJson(\"/marks\", code, body, \"fetch my marks\", signal, hasItems);\n}\n\nexport function curationCursorRequest(\n code: string | undefined,\n input: CurationCursorInput\n): Promise {\n if (!Number.isFinite(input.post_id) || !input.action) {\n throw new Error(\"[SDK][Curation] cursor needs post_id and action\");\n }\n const body: Record = { post_id: input.post_id, action: input.action };\n if (input.reason) body.reason = input.reason;\n return postJson(\"/cursor\", code, body, \"move cursor\");\n}\n\nconst TRX_ID_RE = /^[0-9a-f]{40}$/;\n\nexport function curationRecommendMetaRequest(\n code: string | undefined,\n input: CurationRecommendMetaInput\n): Promise<{ ok: boolean }> {\n const { author, permlink, trx_id, ua_class } = input;\n if (!author || !permlink || !ua_class) {\n throw new Error(\"[SDK][Curation] recommend-meta needs author, permlink and ua_class\");\n }\n const body: Record = { author, permlink, ua_class };\n // Optional and informational: only a well-formed id travels, so a path that\n // returned an odd shape never turns the ping into a 400.\n if (typeof trx_id === \"string\" && TRX_ID_RE.test(trx_id)) body.trx_id = trx_id;\n return postJson<{ ok: boolean }>(\"/recommend-meta\", code, body, \"send recommendation meta\");\n}\n\nexport function curationDismissRecoRequest(\n code: string | undefined,\n input: CurationDismissRecoInput\n): Promise {\n if (!input.author || !input.permlink || !input.action) {\n throw new Error(\"[SDK][Curation] recommendation-dismiss needs author, permlink and action\");\n }\n return postJson(\n \"/recommendation-dismiss\",\n code,\n { author: input.author, permlink: input.permlink, action: input.action },\n \"dismiss recommendation\"\n );\n}\n","import { infiniteQueryOptions, type InfiniteData } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { maskDmcaCurationPages } from \"../dmca\";\nimport { fetchCurationFeedPage, normalizeCurationParams } from \"../requests\";\nimport type { CurationFeedPage, CurationFeedParams, CurationRow } from \"../types\";\n\nexport const CURATION_FEED_PAGE_SIZE = 25;\nexport const CURATION_FEED_STALE_MS = 10_000;\n\n/**\n * Drops rows whose key already appeared on an earlier page. Needed for the\n * live-keyset `unique` order (a row whose count rose between two pages repeats),\n * harmless for the immutable chronological orders. Untouched pages keep their\n * identity so memoized rows do not re-render.\n */\nexport function dedupePagesBy(\n data: InfiniteData,\n keyOf: (item: TPage[\"items\"][number]) => string | number\n): InfiniteData {\n const seen = new Set();\n let changed = false;\n const pages = data.pages.map((page) => {\n const items = page.items.filter((row) => {\n const key = keyOf(row);\n if (seen.has(key)) {\n changed = true;\n return false;\n }\n seen.add(key);\n return true;\n });\n return items.length === page.items.length ? page : { ...page, items };\n });\n return changed ? { ...data, pages } : data;\n}\n\n/** Feed pages dedupe by `post_id`. */\nexport function dedupeCurationPages }>(\n data: InfiniteData\n): InfiniteData {\n return dedupePagesBy(data, (row) => row.post_id);\n}\n\ninterface SelectableFeedRow {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n summary?: string | null;\n first_image?: string | null;\n}\n\n/**\n * The select every desk feed shares: dedupe by `post_id`, then blank the rows\n * on the takedown list. The roster feed (web owned, because its queryFn needs\n * a fresh token) uses it too, so both feeds hide the same rows.\n */\nexport function selectCurationFeedPages(\n data: InfiniteData\n): InfiniteData {\n return maskDmcaCurationPages(dedupeCurationPages(data));\n}\n\n/**\n * Public curation feed (route 1), keyset paginated.\n *\n * `_cursor` on the last row is opaque: it encodes the order's key (`created`\n * and `post_id` for the chronological sorts, the recommender pair for `unique`,\n * the hash pair for `random`). A short page ends the list. No `refetchInterval`\n * (React Query would refetch every loaded page) and no `initialData` (the web\n * client's `refetchOnMount: false` would then never fetch page 1): the web polls\n * `status` and refetches page 1 only when `feed_version` changes.\n */\nexport function getCurationFeedInfiniteQueryOptions(params: CurationFeedParams = {}) {\n const limit = params.limit ?? CURATION_FEED_PAGE_SIZE;\n const normalized = normalizeCurationParams({ ...params, limit });\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.curation.feed(normalized),\n initialPageParam: undefined as string | undefined,\n queryFn: ({ pageParam, signal }) => fetchCurationFeedPage({ ...params, limit }, pageParam, signal),\n getNextPageParam: (lastPage: CurationFeedPage): string | undefined => {\n if (!lastPage || lastPage.items.length < limit) {\n return undefined;\n }\n const last: CurationRow | undefined = lastPage.items[lastPage.items.length - 1];\n return last?._cursor ?? lastPage.next_cursor ?? undefined;\n },\n select: selectCurationFeedPages,\n staleTime: CURATION_FEED_STALE_MS,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationStatus } from \"../requests\";\n\n/**\n * Desk status (route 2): team cursor, counts, @ecency VP and the mana budget.\n * Public, memoized 15 s at the gateway. The web polls it every 60 s while\n * visible and uses `feed_version` to decide whether page 1 needs a refetch.\n */\nexport function getCurationStatusQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.curation.status(),\n queryFn: ({ signal }) => fetchCurationStatus(signal),\n staleTime: 15_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRoster } from \"../requests\";\n\n/** Curator roster (route 3): usernames and roles. Changes rarely; 10 minutes shared. */\nexport function getCurationRosterQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.curation.roster(),\n queryFn: ({ signal }) => fetchCurationRoster(signal),\n staleTime: 600_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { curationRosterListRequest } from \"../requests\";\n\n/**\n * The admin view of the roster: notes, who added whom, and the retired rows the\n * public roster hides. Admin only upstream, so it is keyed by the viewer and\n * never shares a cache entry with the public roster query.\n */\nexport function getCurationRosterAdminQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.curation.rosterAdmin(username),\n queryFn: ({ signal }) => curationRosterListRequest(code, signal),\n enabled: !!username && !!code,\n staleTime: 60_000,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRecommendationsPage } from \"../requests\";\nimport { maskDmcaCurationPages } from \"../dmca\";\nimport type { CurationRecommendationsPage, CurationRecommendationsParams } from \"../types\";\nimport { dedupePagesBy } from \"./get-curation-feed-infinite-query-options\";\n\nexport const CURATION_RECOMMENDATIONS_PAGE_SIZE = 25;\n\n/**\n * Open posts with at least one active recommendation (route 4), ordered by\n * unique recommenders (networks) or by first recommendation time.\n */\nexport function getCurationRecommendationsInfiniteQueryOptions(\n params: CurationRecommendationsParams = {}\n) {\n const sort = params.sort ?? \"unique\";\n const limit = params.limit ?? CURATION_RECOMMENDATIONS_PAGE_SIZE;\n const normalized: Record = { sort, limit: String(limit) };\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.curation.recommendations(normalized),\n initialPageParam: undefined as string | undefined,\n queryFn: ({ pageParam, signal }) =>\n fetchCurationRecommendationsPage({ sort, limit }, pageParam, signal),\n getNextPageParam: (lastPage: CurationRecommendationsPage): string | undefined => {\n if (!lastPage || lastPage.items.length < limit) {\n return undefined;\n }\n const last = lastPage.items[lastPage.items.length - 1];\n return last?._cursor ?? lastPage.next_cursor ?? undefined;\n },\n // Route 4 items carry no post_id; the author/permlink pair is the identity.\n select: (data) =>\n maskDmcaCurationPages(dedupePagesBy(data, (item) => `${item.author}/${item.permlink}`)),\n staleTime: 10_000,\n });\n}\n\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationPost } from \"../requests\";\n\nconst ACCOUNT_RE = /^[a-z0-9.-]{3,16}$/;\nconst PERMLINK_RE = /^[a-z0-9-]{1,255}$/;\n\n/**\n * One post's public desk row plus its recommenders (route 5). A viewer finds\n * their own recommendation state by their username in `recommenders`, so no\n * authed read exists. Memoized 15 s at the gateway, which is why a recommender's\n * own row is optimistic and polls this with backoff.\n */\nexport function getCurationPostQueryOptions(author: string, permlink: string) {\n const valid = ACCOUNT_RE.test(author) && PERMLINK_RE.test(permlink);\n\n return queryOptions({\n queryKey: QueryKeys.curation.post(author, permlink),\n queryFn: ({ signal }) => {\n // Guarded twice: `enabled` only gates automatic fetching, a prefetch\n // still runs the queryFn.\n if (!valid) {\n throw new Error(\"[SDK][Curation] invalid author or permlink\");\n }\n return fetchCurationPost(author, permlink, signal);\n },\n enabled: valid,\n staleTime: 15_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRecommenderStats } from \"../requests\";\n\nconst ACCOUNT_RE = /^[a-z0-9.-]{3,16}$/;\n\n/**\n * One recommender's 90-day scorecard (route 14): how many recommendations they\n * made, how many were curated, dismissed or withdrawn, the resulting precision\n * and whether they count as trusted. Public and memoized 60 s at the gateway,\n * so a popover that opens twice costs one request.\n *\n * The route answers zeros with a neutral precision for a name it has never\n * seen, so a missing scorecard is data rather than an error.\n */\nexport function getCurationRecommenderQueryOptions(username: string) {\n const valid = ACCOUNT_RE.test(username ?? \"\");\n\n return queryOptions({\n queryKey: QueryKeys.curation.recommender(username),\n queryFn: ({ signal }) => {\n // Guarded twice: `enabled` gates automatic fetching only, a prefetch\n // still runs this.\n if (!valid) {\n throw new Error(\"[SDK][Curation] invalid recommender username\");\n }\n return fetchCurationRecommenderStats(username, signal);\n },\n enabled: valid,\n staleTime: 60_000,\n });\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport {\n buildCurationRecommendOp,\n buildCurationUnrecommendOp,\n} from \"@/modules/operations/builders\";\nimport type { CurationReason } from \"../types\";\n\nexport interface CurationRecommendPayload {\n author: string;\n permlink: string;\n /** Defaults to \"quality\" on recommend; ignored on withdraw. */\n reason?: CurationReason;\n /** Broadcast the `unrecommend` op instead. */\n withdraw?: boolean;\n}\n\n/**\n * The broadcast result is not uniform across auth paths: the key path returns\n * `{tx_id, status}`, the HiveSigner token and Keychain extension paths return\n * `{id, block_num, ...}`; the redirect flows never resolve at all. This\n * gives the one shape the desk needs (a 40 hex char id) or null.\n */\nexport function normalizeBroadcastTrxId(result: unknown): string | null {\n if (!result || typeof result !== \"object\") return null;\n const r = result as { tx_id?: unknown; id?: unknown };\n const id = typeof r.tx_id === \"string\" ? r.tx_id : typeof r.id === \"string\" ? r.id : null;\n return id && /^[0-9a-f]{40}$/.test(id) ? id : null;\n}\n\n/**\n * Recommend a post to the curators (or withdraw a recommendation) with one\n * `custom_json` under posting authority. The desk indexes the op from the\n * chain; nothing is written to a desk route here. Platform wrappers send the\n * optional meta ping after success.\n */\nexport function useCurationRecommend(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n QueryKeys.curation.recommend(),\n username,\n (payload) => [\n payload.withdraw\n ? buildCurationUnrecommendOp(username!, payload.author, payload.permlink)\n : buildCurationRecommendOp(username!, payload.author, payload.permlink, payload.reason),\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.curation.post(variables.author, variables.permlink),\n [...QueryKeys.curation._recommendationsPrefix],\n ]);\n },\n auth,\n \"posting\",\n { broadcastMode }\n );\n}\n"]} \ No newline at end of file +{"version":3,"sources":["../../src/hive-tx/helpers/ByteBuffer.ts","../../src/hive-tx/config.ts","../../src/hive-tx/helpers/Signature.ts","../../src/hive-tx/helpers/PublicKey.ts","../../src/hive-tx/helpers/Asset.ts","../../src/hive-tx/helpers/HexBuffer.ts","../../src/hive-tx/helpers/serializer.ts","../../src/hive-tx/helpers/sleep.ts","../../src/hive-tx/helpers/call.ts","../../src/hive-tx/Transaction.ts","../../src/hive-tx/helpers/PrivateKey.ts","../../src/hive-tx/helpers/aes.ts","../../src/hive-tx/helpers/deserializer.ts","../../src/hive-tx/helpers/memo.ts","../../src/hive-tx/helpers/utils.ts","../../src/modules/core/hive-tx.ts","../../src/modules/core/errors/chain-errors.ts","../../src/modules/core/mutations/use-broadcast-mutation.ts","../../src/modules/core/mutations/broadcast-json.ts","../../src/modules/core/mutations/invalidate-after-broadcast.ts","../../src/modules/core/abort-signal.ts","../../src/modules/core/config.ts","../../src/modules/core/queries-manager.ts","../../src/modules/core/utils/decoder-encoder.ts","../../src/modules/core/utils/parse-asset.ts","../../src/modules/core/utils/get-bound-fetch.ts","../../src/modules/core/utils/is-community.ts","../../src/modules/core/utils/pagination-helpers.ts","../../src/modules/core/utils/vests-to-hp.ts","../../src/modules/core/utils/is-empty-date.ts","../../src/modules/core/queries/get-dynamic-props-query-options.ts","../../src/modules/core/queries/get-reward-fund-query-options.ts","../../src/modules/core/query-keys.ts","../../src/modules/core/utf8.ts","../../src/modules/ai/queries/get-ai-generate-price-query-options.ts","../../src/modules/ai/queries/get-ai-images-query-options.ts","../../src/modules/ai/queries/get-ai-assist-price-query-options.ts","../../src/modules/ai/queries/get-ai-transcribe-price-query-options.ts","../../src/modules/ai/mutations/use-generate-image.ts","../../src/modules/ai/mutations/use-ai-assist.ts","../../src/modules/ai/mutations/use-ai-transcribe.ts","../../src/modules/accounts/queries/get-account-full-query-options.ts","../../src/modules/accounts/utils/profile-metadata.ts","../../src/modules/accounts/utils/parse-accounts.ts","../../src/modules/accounts/utils/account-name-query.ts","../../src/modules/accounts/queries/get-accounts-query-options.ts","../../src/modules/accounts/queries/get-follow-count-query-options.ts","../../src/modules/accounts/queries/get-followers-query-options.ts","../../src/modules/accounts/queries/get-following-query-options.ts","../../src/modules/accounts/queries/get-muted-users-query-options.ts","../../src/modules/accounts/queries/lookup-accounts-query-options.ts","../../src/modules/accounts/queries/search-accounts-by-username-query-options.ts","../../src/modules/accounts/queries/check-username-wallets-pending-query-options.ts","../../src/modules/accounts/queries/get-relationship-between-accounts-query-options.ts","../../src/modules/accounts/queries/get-account-subscriptions-query-options.ts","../../src/modules/accounts/queries/get-bookmarks-query-options.ts","../../src/modules/accounts/queries/get-favorites-query-options.ts","../../src/modules/accounts/queries/check-favorite-query-options.ts","../../src/modules/accounts/queries/get-favorite-tags-query-options.ts","../../src/modules/accounts/utils/normalize-tag.ts","../../src/modules/accounts/queries/get-favorite-tag-check-query-options.ts","../../src/modules/accounts/queries/get-account-recoveries-query-options.ts","../../src/modules/accounts/queries/get-account-pending-recovery-query-options.ts","../../src/modules/accounts/queries/get-account-reputations-query-options.ts","../../src/modules/accounts/queries/get-transactions-infinite-query-options.ts","../../src/modules/accounts/queries/get-bots-query-options.ts","../../src/modules/accounts/queries/get-referrals-infinite-query-options.ts","../../src/modules/accounts/queries/get-referrals-stats-query-options.ts","../../src/modules/accounts/queries/get-friends-infinite-query-options.ts","../../src/modules/accounts/queries/get-search-friends-query-options.ts","../../src/modules/posts/queries/get-trending-tags-query-options.ts","../../src/modules/posts/queries/get-trending-tags-with-stats-query-options.ts","../../src/modules/posts/queries/get-fragments-query-options.ts","../../src/modules/posts/queries/get-promoted-posts-query-options.ts","../../src/modules/posts/queries/get-entry-active-votes-query-options.ts","../../src/modules/posts/queries/get-user-post-vote-query-options.ts","../../src/modules/posts/queries/get-content-query-options.ts","../../src/modules/posts/queries/get-content-replies-query-options.ts","../../src/modules/posts/queries/get-post-header-query-options.ts","../../src/modules/posts/utils/filter-dmca-entries.ts","../../src/modules/bridge/verify-on-alternate-node.ts","../../src/modules/posts/queries/get-post-query-options.ts","../../src/modules/bridge/requests.ts","../../src/modules/posts/queries/get-discussions-query-options.ts","../../src/modules/posts/queries/get-account-posts-query-options.ts","../../src/modules/posts/queries/get-posts-ranked-query-options.ts","../../src/modules/posts/queries/get-reblogs-query-options.ts","../../src/modules/posts/queries/get-reblogged-by-query-options.ts","../../src/modules/posts/queries/get-schedules-query-options.ts","../../src/modules/posts/queries/get-drafts-query-options.ts","../../src/modules/posts/queries/get-images-query-options.ts","../../src/modules/posts/queries/get-comment-history-query-options.ts","../../src/modules/posts/queries/get-deleted-entry-query-options.ts","../../src/modules/posts/queries/get-post-tips-query-options.ts","../../src/modules/posts/utils/waves-helpers.ts","../../src/modules/posts/queries/get-waves-feed-query-options.ts","../../src/modules/posts/queries/get-shorts-feed-query-options.ts","../../src/modules/posts/queries/get-waves-by-host-query-options.ts","../../src/modules/posts/queries/get-waves-by-tag-query-options.ts","../../src/modules/posts/queries/get-waves-following-query-options.ts","../../src/modules/posts/queries/get-waves-trending-tags-query-options.ts","../../src/modules/posts/queries/get-waves-by-account-query-options.ts","../../src/modules/posts/queries/get-waves-trending-authors-query-options.ts","../../src/modules/posts/queries/get-normalize-post-query-options.ts","../../src/modules/accounts/queries/get-account-vote-history-infinite-query-options.ts","../../src/modules/accounts/queries/get-profiles-query-options.ts","../../src/modules/accounts/queries/get-balance-history-query-options.ts","../../src/modules/accounts/queries/get-aggregated-balance-query-options.ts","../../src/modules/accounts/queries/get-pro-members-query-options.ts","../../src/modules/accounts/mutations/use-account-update.ts","../../src/modules/accounts/mutations/use-account-relations-update.ts","../../src/modules/operations/builders/content.ts","../../src/modules/operations/builders/wallet.ts","../../src/modules/operations/builders/social.ts","../../src/modules/operations/builders/governance.ts","../../src/modules/operations/builders/community.ts","../../src/modules/operations/builders/market.ts","../../src/modules/operations/builders/account.ts","../../src/modules/operations/builders/ecency.ts","../../src/modules/accounts/mutations/use-follow.ts","../../src/modules/accounts/mutations/use-unfollow.ts","../../src/modules/accounts/mutations/bookmarks/use-account-bookmark-add.ts","../../src/modules/accounts/mutations/bookmarks/use-account-bookmark-delete.ts","../../src/modules/accounts/mutations/favorites/use-account-favorite-add.ts","../../src/modules/accounts/mutations/favorites/use-account-favorite-delete.ts","../../src/modules/accounts/mutations/favorite-tags/requests.ts","../../src/modules/accounts/mutations/favorite-tags/use-favorite-tag-add.ts","../../src/modules/accounts/mutations/favorite-tags/use-favorite-tag-delete.ts","../../src/modules/accounts/mutations/use-account-update-key-auths.ts","../../src/modules/accounts/mutations/use-account-update-password.ts","../../src/modules/accounts/mutations/use-account-revoke-posting.ts","../../src/modules/accounts/mutations/use-account-update-recovery.ts","../../src/modules/accounts/mutations/build-revoke-keys-op.ts","../../src/modules/accounts/mutations/use-account-revoke-key.ts","../../src/modules/accounts/mutations/use-claim-account.ts","../../src/modules/accounts/mutations/use-grant-posting-permission.ts","../../src/modules/accounts/mutations/use-create-account.ts","../../src/modules/accounts/utils/account-power.ts","../../src/modules/operations/authority-map.ts","../../src/modules/operations/mutations/sign-operation-by-key.ts","../../src/modules/operations/mutations/sign-operation-by-keychain.ts","../../src/modules/operations/mutations/sign-operation-by-hivesigner.ts","../../src/modules/operations/queries/get-chain-properties-query-options.ts","../../src/modules/posts/utils/fragment-cache-helpers.ts","../../src/modules/posts/mutations/add-fragment.ts","../../src/modules/posts/mutations/edit-fragment.ts","../../src/modules/posts/mutations/remove-fragment.ts","../../src/modules/private-api/requests.ts","../../src/modules/posts/mutations/use-add-draft.ts","../../src/modules/posts/mutations/use-update-draft.ts","../../src/modules/posts/mutations/use-delete-draft.ts","../../src/modules/posts/mutations/use-add-schedule.ts","../../src/modules/posts/mutations/use-delete-schedule.ts","../../src/modules/posts/mutations/use-move-schedule.ts","../../src/modules/posts/mutations/use-add-image.ts","../../src/modules/posts/mutations/use-delete-image.ts","../../src/modules/posts/mutations/use-upload-image.ts","../../src/modules/posts/cache/entries-cache-management.ts","../../src/modules/posts/mutations/use-vote.ts","../../src/modules/posts/mutations/use-reblog.ts","../../src/modules/posts/mutations/use-comment.ts","../../src/modules/posts/cache/discussions-cache-utils.ts","../../src/modules/posts/mutations/use-delete-comment.ts","../../src/modules/posts/mutations/use-cross-post.ts","../../src/modules/posts/mutations/use-update-reply.ts","../../src/modules/posts/mutations/use-promote.ts","../../src/modules/posts/utils/validate-post-creating.ts","../../src/modules/analytics/mutations/index.ts","../../src/modules/analytics/mutations/use-record-activity.ts","../../src/modules/analytics/queries/get-discover-leaderboard-query-options.ts","../../src/modules/analytics/queries/get-discover-curation-query-options.ts","../../src/modules/analytics/queries/get-page-stats-query-options.ts","../../src/modules/integrations/3speak/functions/beneficiary.ts","../../src/modules/integrations/3speak/queries/index.ts","../../src/modules/integrations/hivesigner/queries/index.ts","../../src/modules/integrations/hivesigner/queries/get-decode-memo-query-options.ts","../../src/modules/integrations/hivesigner/index.ts","../../src/modules/integrations/3speak/queries/get-account-token-query-options.ts","../../src/modules/integrations/3speak/queries/get-account-videos-query-options.ts","../../src/modules/integrations/3speak/index.ts","../../src/modules/integrations/hiveposh/queries/get-hiveposh-links-query-options.ts","../../src/modules/integrations/plausible/queries/get-stats-query-options.ts","../../src/modules/resource-credits/queries/get-rc-stats-query-options.ts","../../src/modules/resource-credits/queries/get-account-rc-query-options.ts","../../src/modules/resource-credits/queries/get-rc-resource-params-query-options.ts","../../src/modules/resource-credits/types/resource-params.ts","../../src/modules/resource-credits/utils/estimate-comment-rc-cost.ts","../../src/modules/resource-credits/utils/price-rc-usage.ts","../../src/modules/resource-credits/utils/count-operation-usage.ts","../../src/modules/resource-credits/utils/estimate-rc-precheck.ts","../../src/modules/games/queries/game-status-check-query-options.ts","../../src/modules/games/mutations/game-claim.ts","../../src/modules/quests/queries/get-quests-query-options.ts","../../src/modules/quests/catalog.ts","../../src/modules/quests/mutations/buy-streak-freeze.ts","../../src/modules/communities/mutations/use-subscribe-community.ts","../../src/modules/communities/mutations/use-unsubscribe-community.ts","../../src/modules/communities/mutations/use-mute-post.ts","../../src/modules/communities/mutations/use-set-community-role.ts","../../src/modules/communities/mutations/use-update-community.ts","../../src/modules/communities/mutations/use-register-community-rewards.ts","../../src/modules/communities/mutations/use-pin-post.ts","../../src/modules/communities/queries/get-communities-query-options.ts","../../src/modules/communities/queries/get-community-context-query-options.ts","../../src/modules/communities/queries/get-community-query-options.ts","../../src/modules/communities/queries/get-community-subscribers-query-options.ts","../../src/modules/communities/queries/get-account-notifications-infinite-query-options.ts","../../src/modules/communities/queries/get-rewarded-communities-query-options.ts","../../src/modules/communities/types/community.ts","../../src/modules/communities/utils/index.ts","../../src/modules/notifications/queries/get-notifications-unread-count-query-options.ts","../../src/modules/notifications/queries/get-notifications-infinite-query-options.ts","../../src/modules/notifications/enums/notification-filter.ts","../../src/modules/notifications/enums/notify-types.ts","../../src/modules/notifications/queries/get-notifications-settings-query-options.ts","../../src/modules/notifications/queries/get-announcements-query-options.ts","../../src/modules/notifications/queries/get-spotlights-query-options.ts","../../src/modules/notifications/mutations/use-mark-notifications-read.ts","../../src/modules/notifications/mutations/use-set-last-read.ts","../../src/modules/proposals/queries/get-proposal-query-options.ts","../../src/modules/proposals/queries/get-proposals-query-options.ts","../../src/modules/proposals/queries/get-proposal-votes-query-options.ts","../../src/modules/proposals/queries/get-user-proposal-votes-query-options.ts","../../src/modules/proposals/mutations/use-proposal-vote.ts","../../src/modules/proposals/mutations/use-proposal-create.ts","../../src/modules/wallet/queries/get-vesting-delegations-query-options.ts","../../src/modules/wallet/queries/get-account-delegations-query-options.ts","../../src/modules/wallet/queries/get-vesting-delegation-expirations-query-options.ts","../../src/modules/wallet/queries/get-conversion-requests-query-options.ts","../../src/modules/wallet/queries/get-collateralized-conversion-requests-query-options.ts","../../src/modules/wallet/queries/get-savings-withdraw-from-query-options.ts","../../src/modules/wallet/queries/get-withdraw-routes-query-options.ts","../../src/modules/wallet/queries/get-open-orders-query-options.ts","../../src/modules/wallet/queries/get-outgoing-rc-delegations-infinite-query-options.ts","../../src/modules/wallet/queries/get-incoming-rc-query-options.ts","../../src/modules/wallet/utils/received-vesting-shares.ts","../../src/modules/wallet/queries/get-received-vesting-shares-query-options.ts","../../src/modules/wallet/queries/get-recurrent-transfers-query-options.ts","../../src/modules/wallet/queries/get-portfolio-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-general-info-query-options.ts","../../src/modules/wallet/queries/get-hbd-asset-general-info-query-options.ts","../../src/modules/wallet/queries/get-hive-power-asset-general-info-query-options.ts","../../src/modules/wallet/consts/hive-account-operation-groups.ts","../../src/modules/wallet/consts/hive-operation-list.ts","../../src/modules/wallet/consts/hive-operation-orders.ts","../../src/modules/wallet/queries/get-hive-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hbd-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hive-power-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-metric-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-withdrawal-routes-query-options.ts","../../src/modules/wallet/queries/get-hive-power-delegates-query-options.ts","../../src/modules/wallet/queries/get-hive-power-delegatings-query-options.ts","../../src/modules/market/queries/get-order-book-query-options.ts","../../src/modules/market/queries/get-market-statistics-query-options.ts","../../src/modules/market/queries/get-market-history-query-options.ts","../../src/modules/market/queries/get-hive-hbd-stats-query-options.ts","../../src/modules/market/queries/get-market-data-query-options.ts","../../src/modules/market/queries/get-trade-history-query-options.ts","../../src/modules/market/queries/get-feed-history-query-options.ts","../../src/modules/market/queries/get-current-median-history-price-query-options.ts","../../src/modules/market/mutations/use-limit-order-create.ts","../../src/modules/market/mutations/use-limit-order-cancel.ts","../../src/modules/market/requests.ts","../../src/modules/hive-engine/requests.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-balances-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-market-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-metadata-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-transactions-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-metrics-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-unclaimed-rewards-query-options.ts","../../src/modules/hive-engine/queries/get-all-hive-engine-tokens-query-options.ts","../../src/modules/hive-engine/utils/formatted-number.ts","../../src/modules/hive-engine/utils/hive-engine-token.ts","../../src/modules/hive-engine/queries/get-hive-engine-balances-with-usd-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-general-info-query-options.ts","../../src/modules/points/queries/get-points-query-options.ts","../../src/modules/points/queries/get-points-asset-general-info-query-options.ts","../../src/modules/points/queries/get-points-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-account-wallet-asset-info-query-options.ts","../../src/modules/wallet/types/asset-operation.ts","../../src/modules/wallet/mutations/use-transfer.ts","../../src/modules/wallet/mutations/use-transfer-point.ts","../../src/modules/wallet/mutations/use-delegate-vesting-shares.ts","../../src/modules/wallet/mutations/use-set-withdraw-vesting-route.ts","../../src/modules/wallet/mutations/use-transfer-engine-token.ts","../../src/modules/wallet/mutations/use-transfer-to-savings.ts","../../src/modules/wallet/mutations/use-transfer-from-savings.ts","../../src/modules/wallet/mutations/use-transfer-to-vesting.ts","../../src/modules/wallet/mutations/use-withdraw-vesting.ts","../../src/modules/wallet/mutations/use-convert.ts","../../src/modules/wallet/mutations/use-claim-interest.ts","../../src/modules/wallet/mutations/use-claim-rewards.ts","../../src/modules/wallet/mutations/use-delegate-engine-token.ts","../../src/modules/wallet/mutations/use-undelegate-engine-token.ts","../../src/modules/wallet/mutations/use-stake-engine-token.ts","../../src/modules/wallet/mutations/use-unstake-engine-token.ts","../../src/modules/wallet/mutations/use-claim-engine-rewards.ts","../../src/modules/wallet/mutations/use-engine-market-order.ts","../../src/modules/wallet/mutations/use-wallet-operation.ts","../../src/modules/wallet/mutations/use-delegate-rc.ts","../../src/modules/witnesses/mutations/use-witness-vote.ts","../../src/modules/witnesses/mutations/use-witness-proxy.ts","../../src/modules/witnesses/queries/get-witnesses-query-options.ts","../../src/modules/points/types/point-transaction-type.ts","../../src/modules/points/mutations/use-claim-points.ts","../../src/modules/search/query-builder.ts","../../src/modules/search/parse-json-response.ts","../../src/modules/search/retry-policy.ts","../../src/modules/search/queries/get-search-query-options.ts","../../src/modules/search/requests.ts","../../src/modules/search/queries/get-similar-entries-query-options.ts","../../src/modules/search/queries/get-search-account-query-options.ts","../../src/modules/search/queries/get-search-topics-query-options.ts","../../src/modules/search/queries/get-search-api-infinite-query-options.ts","../../src/modules/search/queries/get-search-path-query-options.ts","../../src/modules/support/queries/get-support-settings-query-options.ts","../../src/modules/support/mutations/update-support-settings.ts","../../src/modules/promotions/queries/get-boost-plus-prices-query-options.ts","../../src/modules/promotions/queries/get-rc-delegation-prices-query-options.ts","../../src/modules/promotions/queries/get-rc-delegation-active-query-options.ts","../../src/modules/promotions/queries/get-promote-price-query-options.ts","../../src/modules/promotions/queries/get-boost-plus-account-prices-query-options.ts","../../src/modules/promotions/mutations/use-boost-plus.ts","../../src/modules/promotions/mutations/use-rc-delegation.ts","../../src/modules/auth/requests.ts","../../src/modules/bad-actors/queries/get-bad-actors-query-options.ts","../../src/modules/polls/types/poll.ts","../../src/modules/polls/queries/get-poll-query-options.ts","../../src/modules/polls/mutations/use-poll-vote.ts","../../src/modules/moderation/constants.ts","../../src/modules/moderation/account-reputation.ts","../../src/modules/moderation/external-links.ts","../../src/modules/moderation/content-moderation.ts","../../src/modules/newsletter/errors.ts","../../src/modules/newsletter/api.ts","../../src/modules/newsletter/queries/get-digest-subscriptions-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-sender-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-issues-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-posts-query-options.ts","../../src/modules/newsletter/mutations/use-subscribe-digest.ts","../../src/modules/newsletter/mutations/use-leave-digest.ts","../../src/modules/newsletter/mutations/use-unsubscribe-all-digests.ts","../../src/modules/newsletter/mutations/use-send-newsletter-issue.ts","../../src/modules/curation/types.ts","../../src/modules/curation/flags.ts","../../src/modules/curation/dmca.ts","../../src/modules/curation/requests.ts","../../src/modules/curation/queries/get-curation-feed-infinite-query-options.ts","../../src/modules/curation/queries/get-curation-status-query-options.ts","../../src/modules/curation/queries/get-curation-roster-query-options.ts","../../src/modules/curation/queries/get-curation-roster-admin-query-options.ts","../../src/modules/curation/queries/get-curation-recommendations-infinite-query-options.ts","../../src/modules/curation/queries/get-curation-post-query-options.ts","../../src/modules/curation/queries/get-curation-recommender-query-options.ts","../../src/modules/curation/mutations/use-curation-recommend.ts"],"names":["EMPTY_BUFFER","_encoder","_decoder","getEncoder","s","utf8","i","c","next","getDecoder","b","bytes","result","byte","codePoint","ByteBuffer","_ByteBuffer","capacity","littleEndian","buffers","buf","bb","view","offset","buffer","source","value","relative","src","copy","begin","end","target","targetOffset","sourceOffset","sourceLimit","targetRelative","len","current","length","forceCopy","limit","size","str","currentOffset","encoded","lenVarintSize","start","lenResult","lenValue","lenLength","config","DEFAULT_SERVER_RPC_PROXY_METHODS","serverRpcProxy","setServerRpcProxy","opts","url","headers","k","v","timeoutMs","methods","m","pos","fallback","sanitizeNodeList","nodes","n","setNodes","validNodes","setRestNodes","valid","setRestNodesByApi","map","api","list","setUserAgent","ua","setResilience","r","bool","Signature","_Signature","data","recovery","compressed","string","temp","hexToBytes","bytesToHex","message","sig","secp256k1","PublicKey","_PublicKey","key","prefix","wif","expectedPrefix","bs58","checksum","expectedChecksum","ripemd160","isUint8ArrayEqual","signature","encodePublic","a","Asset","_Asset","amount","symbol","expectedSymbol","amountString","HexBuffer","_HexBuffer","OPERATION_IDS","VoidSerializer","StringSerializer","Int16Serializer","Int64Serializer","UInt8Serializer","UInt16Serializer","UInt32Serializer","UInt64Serializer","BooleanSerializer","StaticVariantSerializer","itemSerializers","id","item","AssetSerializer","asset","precision","DateSerializer","PublicKeySerializer","BinarySerializer","VariableBinarySerializer","FlatMapSerializer","keySerializer","valueSerializer","ArraySerializer","itemSerializer","ObjectSerializer","keySerializers","serializer","error","OptionalSerializer","AuthoritySerializer","BeneficiarySerializer","PriceSerializer","ChainPropertiesSerializer","OperationDataSerializer","operationId","definitions","objectSerializer","OperationSerializers","ProposalUpdateSerializer","OperationSerializer","operation","TransactionSerializer","EncryptedMemoSerializer","Serializer","sleep","ms","resolve","isNodeRuntime","serverIdentityHeaders","rpcProxyStats","ProxyMiss","reason","errorMessage","proxyConsecutiveMisses","proxyOpenUntil","proxyRpcCall","proxy","method","params","callerTimeoutMs","externalSignal","validate","dot","tSignal","cleanupTimeout","createTimeoutSignal","signal","cleanupMerge","mergeSignals","res","e","relayed","RPCError","rpcError","NodeError","node","parseRetryAfterMs","header","secs","dateMs","delta","PRE_CONNECTION_ERRORS","BROWSER_NETWORK_ERRORS","flattenErrorText","parts","cause","depth","isBroadcastSafeToRetry","text","code","msg","isNodeLevelRPCError","apiOf","RATE_LIMIT_BASE_MS","RATE_LIMIT_MAX_MS","RATE_LIMIT_STREAK_RESET_MS","MAX_API_FAILURES_BEFORE_COOLDOWN","API_COOLDOWN_MS","HEAD_BLOCK_MAX_AGE_MS","STALE_BLOCK_THRESHOLD","LATENCY_EWMA_ALPHA","LATENCY_MIN_SAMPLES","LATENCY_MAX_AGE_MS","LATENCY_REPROBE_MS","LATENCY_UNPROVEN_PRIOR_MS","LATENCY_SLOW_FAILURE_MS","NodeHealthTracker","h","durationMs","profileKey","apiFail","now","p","elapsedMs","existing","retryAfterMs","hasHeader","cooldown","blockNum","recent","best","healthy","unhealthy","ordered","d","probe","threshold","cand","candTouch","touch","rpcHealthTracker","restHealthTracker","HedgeBudget","tokens","rpcHedgeBudget","adaptiveAttemptTimeout","tracker","callerTimeout","explicit","ewma","recordError","tryRecordHeadBlock","block","createTimeoutReason","err","controller","timer","primary","secondary","onPrimaryAbort","onSecondaryAbort","cleanup","jsonRPCCall","timeout","shouldRetry","body","jitterDelay","hedgedRpcAttempt","hedgePool","explicitTimeout","deadlineAt","onHedgeFired","reject","done","pendingLegs","hedgeFired","primarySettled","lastError","hedgeTimer","primaryStart","controllers","finish","settle","startLeg","isHedge","merged","legTimeout","primaryWindow","delay","live","callRPC","retry","ceiling","served","deadline","triedInRound","attempt","orderedNodes","callStart","callRPCBroadcast","triedNodes","apiMethods","callREST","endpoint","restProfileKey","apiNodes","alreadyRecorded","baseUrl","path","paramObj","processedPathParams","restSignal","restCleanup","restCallStart","response","callWithQuorum","quorum","allNodes","arr","j","currentBatchSize","allResults","batchNodes","promises","batchResults","consensusResult","findConsensus","results","resultGroups","consensusGroup","group","chainId","Transaction","_Transaction","options","operationName","operationBody","keys","digest","txId","checkStatus","maxPollAttempts","status","transactionData","sha256","expiration","props","refBlockPrefix","expirationIso","NETWORK_ID","PrivateKey","_PrivateKey","decodePrivate","seed","username","password","role","rv","encodePrivate","publicKey","sha512","doubleSha256","input","encodedKey","checksumVerify","encrypt","privateKey","nonce","uniqueNonce","crypt","decrypt","nonceL","S","ebuf","encryptionKey","iv","tag","check","cbuf","check32","cryptoJsDecrypt","cryptoJsEncrypt","messageBuffer","AESCBC","uniqueNonceEntropy","randomPrivateKey","long","entropy","PublicKeyDeserializer","fixedBuf","UInt64Deserializer","UInt32Deserializer","BinaryDeserializer","bCopy","BufferDeserializer","keyDeserializers","obj","deserializer","EncryptedMemoDeserializer","Deserializer","encode","memo","testNonce","checkEncryption","toPrivateObj","toPublicObj","mbuf","memoBuffer","mbuf2","decode","from","to","encrypted","otherpub","encodeTest","plaintext","cyphertext","o","Memo","utils_exports","__export","buildWitnessSetProperties","makeBitMaskFilter","operations","validateUsername","suffix","ref","label","allowedOperations","reduceFunction","low","high","allowedOperation","owner","type","serialize","nobleSha256","isWif","broadcastOperations","ops","tx","op","broadcastOperationsAsync","MANA_REGENERATION_SECONDS","calculateManabar","maxMana","manabar","currentMana","percentage","getVests","account","vests","delegated","received","withdrawRate","alreadyWithdrawn","withdrawVests","calculateVPMana","calculateRCMana","rcAccount","ErrorType","parseChainError","errorDescription","errorCode","errorString","testPattern","pattern","formatError","parsed","shouldTriggerAuthFallback","isResourceCreditsError","isInfoError","isNetworkError","broadcastWithMethod","auth","authority","fetchedKey","fetchedToken","broadcastMode","adapter","token","hs","tokenError","broadcastWithFallback","loginType","hasPostingAuth","selectedMethod","hsError","chain","errors","shouldSkip","skipReason","prefetchedKey","prefetchedToken","skipReasons","errorMessages","useBroadcastMutation","mutationKey","onSuccess","useMutation","payload","postingKey","accessToken","broadcastJson","jjson","BROADCAST_INCLUSION_DELAY_MS","invalidateAfterBroadcast","withTimeoutSignal","timeoutSignal","ac","onAbort","isDevelopment","getHeliusApiKey","INTERNAL_API_TIMEOUT_MS","SERVER_GC_TIME_MS","queryClientResolver","fallbackQueryClient","resolveQueryClient","QueryClient","CONFIG","client","ConfigManager","setQueryClient","setQueryClientResolver","setPrivateApiHost","host","setNewsletterHost","setClientId","clientId","setDefaultObserver","observer","getValidatedBaseUrl","setPollsApiHost","setImageHost","setHiveNodes","userAgent","getServerRpcProxyStats","analyzeRedosRisk","unboundedRange","match","min","max","testRegexPerformance","regex","adversarialInputs","maxExecutionTime","duration","safeCompileRegex","maxLength","staticAnalysis","compileErr","runtimeTest","setDmcaLists","lists","coerceList","resolved","rejectedTagCount","makeQueryClient","getQueryClient","EcencyQueriesManager","getQueryData","queryKey","getInfiniteQueryData","prefetchQuery","prefetchInfiniteQuery","generateClientServerQuery","useQuery","generateClientServerInfiniteQuery","useInfiniteQuery","encodeObj","decodeObj","dataToParse","Symbol","NaiMap","parseAsset","sval","sp","cachedFetch","getBoundFetch","isCommunity","isWrappedResponse","normalizeToWrappedResponse","vestsToHp","hivePerMVests","isEmptyDate","DYNAMIC_PROPS_REFRESH_MS","getDynamicPropsQueryOptions","queryOptions","QueryKeys","rawGlobalDynamic","rawFeedHistory","rawChainProps","rawRewardFund","rawHardforkProps","totalVestingSharesAmount","totalVestingFundAmount","base","quote","fundRecentClaims","fundRewardBalance","votePowerReserveRate","authorRewardCurve","contentConstant","currentHardforkVersion","lastHardfork","hbdPrintRate","hbdInterestRate","headBlock","totalVestingFund","totalVestingShares","virtualSupply","vestingRewardPercent","accountCreationFee","getRewardFundQueryOptions","fundName","entryPath","author","permlink","filter","startAuthor","startPermlink","activeUsername","sort","order","onlyMeta","hours","usernames","following","mode","followType","query","follower","startFollowing","startFollower","excludeList","accounts","targetUsername","reference","name","communityName","proposalId","voter","q","hideLow","since","scrollId","votes","what","content","includeNsfw","witness","page","pageSize","direction","user","coinType","granularity","onlyEnabled","currency","filterKey","bucketSeconds","seconds","startDate","endDate","coin","vsCurrency","fromTs","toTs","dimensions","metrics","dateRange","gameType","utf8ByteLength","varintByteLength","count","remaining","getAiGeneratePriceQueryOptions","getAiImagesQueryOptions","getAiAssistPriceQueryOptions","getAiTranscribePriceQueryOptions","makeIdempotencyKey","invalidateGenerateImageCaches","useGenerateImage","pendingData","useAiAssist","useAiTranscribe","form","isMetadataStripped","hasProfileValues","profile","getAccountFullQueryOptions","bridgeProfile","rows","chainAccount","reread","parseProfileMetadata","stats","follow_stats","reputationValue","DENIED_KEYS","isPlainObject","proto","deepMerge","srcVal","tgtVal","sanitizeTokens","meta","rest","safeMeta","postingJsonMetadata","extractAccountProfile","pickRicherMetadataSnapshot","preferred","preferredKeys","parsePostingMetadataRoot","buildPostingJsonMetadata","existingPostingJsonMetadata","root","existingProfile","mergedProfile","buildProfileMetadata","profileTokens","_ignoredVersion","profileRest","metadata","parseAccounts","rawAccounts","x","jsonMetadata","accountNameByteLength","isQueryableAccountName","getAccountsQueryOptions","queryable","getFollowCountQueryOptions","getFollowersQueryOptions","getFollowingQueryOptions","MUTED_USERS_PAGE_SIZE","MUTED_USERS_MAX_PAGES","getMutedUsersQueryOptions","muted","names","lookupAccountsQueryOptions","getSearchAccountsByUsernameQueryOptions","RESERVED_META_KEYS","checkUsernameWalletsPendingQueryOptions","wallets","walletItem","sanitizedMeta","address","showFlag","baseCandidate","metaTokenCandidates","metaSymbol","metaValue","getRelationshipBetweenAccountsQueryOptions","getAccountSubscriptionsQueryOptions","getBookmarksQueryOptions","getBookmarksInfiniteQueryOptions","infiniteQueryOptions","pageParam","json","lastPage","getFavoritesQueryOptions","getFavoritesInfiniteQueryOptions","checkFavoriteQueryOptions","getFavoriteTagsQueryOptions","getFavoriteTagsInfiniteQueryOptions","TAG_PATTERN","COMMUNITY_PATTERN","normalizeTag","raw","getFavoriteTagCheckQueryOptions","normalized","getAccountRecoveriesQueryOptions","getAccountPendingRecoveryQueryOptions","getAccountReputationsQueryOptions","ACCOUNT_OPERATION_GROUPS","ALL_ACCOUNT_OPERATIONS","deriveNum","entry","normalizeOpType","restType","isNaiAsset","naiToString","normalizeOpValue","getTransactionsInfiniteQueryOptions","operationTypes","fetchPage","toEntries","entries","currentPage","chained","nextPage","getBotsQueryOptions","getReferralsInfiniteQueryOptions","maxId","nextMaxId","getReferralsStatsQueryOptions","getFriendsInfiniteQueryOptions","enabled","accountNames","SEARCH_LIMIT","getSearchFriendsQueryOptions","getTrendingTagsQueryOptions","afterTag","tags","getTrendingTagsWithStatsQueryOptions","getFragmentsQueryOptions","getFragmentsInfiniteQueryOptions","getPromotedPostsQuery","getEntryActiveVotesQueryOptions","getUserPostVoteQueryOptions","getContentQueryOptions","getContentRepliesQueryOptions","getPostHeaderQueryOptions","filterDmcaEntry","entryOrEntries","applyFilter","verifyPostOnAlternateNode","getPostQueryOptions","num","cleanPermlink","verified","verifiedEntry","bridgeApiCall","resolvePost","post","resp","getPost","resolvePosts","posts","validatedPosts","validateEntry","getPostsRanked","start_author","start_permlink","getAccountPosts","newEntry","requiredStringProps","prop","validatedEntry","getPostHeader","getDiscussion","validatedResp","getCommunity","getCommunities","last","normalizePost","getSubscriptions","getSubscribers","community","getRelationshipBetweenAccounts","getProfiles","SortOrder","sortDiscussions","discussion","allPayout","absNegative","isPinned","sortOrders","_a","_b","keyA","keyB","sorted","pinnedIndex","pinned","getDiscussionsQueryOptions","resolvedObserver","oldData","newData","optimisticEntries","fetchedPermlinks","missingOptimistic","opt","getDiscussionQueryOptions","getAccountPostsInfiniteQueryOptions","hasNextPage","getAccountPostsQueryOptions","displaySelects","displaySelect","select","orderForDisplay","byCreated","getPostsRankedInfiniteQueryOptions","_options","sanitizedTag","getPostsRankedQueryOptions","getReblogsQueryOptions","getRebloggedByQueryOptions","getSchedulesQueryOptions","getSchedulesInfiniteQueryOptions","getDraftsQueryOptions","getDraftsInfiniteQueryOptions","fetchUserImages","getImagesQueryOptions","getGalleryImagesQueryOptions","getImagesInfiniteQueryOptions","getCommentHistoryQueryOptions","makeEntryPath","cleanAuthor","normalizedAuthor","normalizedPermlink","getDeletedEntryQueryOptions","isValid","history","title","getPostTipsQueryOptions","isEnabled","normalizeContainer","normalizeParent","normalizeWaveEntryFromApi","containerSource","container","parent","toEntryArray","getVisibleFirstLevelThreadItems","discussionItemsRaw","discussionItems","firstLevelItems","parent_author","parent_permlink","mapThreadItemsToWaveEntries","items","DEFAULT_FEED_LIMIT","normalizeParams","fetchWavesFeedPage","containers","cursor","row","getWavesFeedQueryOptions","getWavesLatestFeedQueryOptions","fetchShortsFeedPage","getShortsFeedQueryOptions","THREAD_CONTAINER_BATCH_SIZE","MAX_CONTAINERS_TO_SCAN","getThreads","scannedContainers","skipContainerId","rpcParams","normalizedContainers","visibleItems","lastContainer","getWavesByHostQueryOptions","DEFAULT_TAG_FEED_LIMIT","getWavesByTagQueryOptions","getWavesFollowingQueryOptions","normalizedUsername","flattened","getWavesTrendingTagsQueryOptions","getWavesByAccountQueryOptions","getWavesTrendingAuthorsQueryOptions","getNormalizePostQueryOptions","isEntry","getDays","createdDate","past","getAccountVoteHistoryInfiniteQueryOptions","filters","dayLimit","historyObj","filtered","firstHistory","getProfilesQueryOptions","getBalanceHistoryInfiniteQueryOptions","getAggregatedBalanceQueryOptions","getProMembersQueryOptions","proMembersSet","members","useAccountUpdate","queryClient","useQueryClient","_data","variables","useAccountRelationsUpdate","onError","kind","relationsQuery","actualRelation","buildVoteOp","weight","buildCommentOp","parentAuthor","parentPermlink","missing","buildCommentOptionsOp","maxAcceptedPayout","percentHbd","allowVotes","allowCurationRewards","extensions","buildDeleteCommentOp","buildReblogOp","deleteReblog","buildTransferOp","buildMultiTransferOps","destinations","dest","buildRecurrentTransferOp","recurrence","executions","buildTransferToSavingsOp","buildTransferFromSavingsOp","requestId","buildCancelTransferFromSavingsOp","buildClaimInterestOps","buildTransferToVestingOp","buildWithdrawVestingOp","vestingShares","buildDelegateVestingSharesOp","delegator","delegatee","buildSetWithdrawVestingRouteOp","fromAccount","toAccount","percent","autoVest","buildConvertOp","buildCollateralizedConvertOp","buildEngineOp","contractAction","contractPayload","contractName","buildEngineClaimOp","buildDelegateRcOp","delegatees","maxRc","delegateeArray","buildFollowOp","buildUnfollowOp","buildIgnoreOp","buildUnignoreOp","buildSetLastReadOps","date","lastReadDate","notifyOp","ecencyNotifyOp","buildWitnessVoteOp","approve","buildWitnessProxyOp","buildProposalCreateOp","creator","buildProposalVoteOp","proposalIds","buildRemoveProposalOp","proposalOwner","buildUpdateProposalOp","dailyPay","subject","buildSubscribeOp","buildUnsubscribeOp","buildSetRoleOp","buildUpdateCommunityOp","buildPinPostOp","pin","buildMutePostOp","notes","mute","buildMuteUserOp","buildFlagPostOp","BuySellTransactionType","OrderIdPrefix","buildLimitOrderCreateOp","amountToSell","minToReceive","fillOrKill","orderId","formatNumber","decimals","buildLimitOrderCreateOpWithType","orderType","idPrefix","expirationStr","formattedAmountToSell","formattedMinToReceive","buildLimitOrderCancelOp","buildClaimRewardBalanceOp","rewardHive","rewardHbd","rewardVests","buildAccountUpdateOp","active","posting","memoKey","buildAccountUpdate2Op","buildAccountCreateOp","newAccountName","fee","buildCreateClaimedAccountOp","buildClaimAccountOp","buildGrantPostingPermissionOp","currentPosting","grantedAccount","weightThreshold","existingIndex","acc","newAccountAuths","newPosting","buildRevokePostingPermissionOp","revokedAccount","buildChangeRecoveryAccountOp","accountToRecover","newRecoveryAccount","buildRequestAccountRecoveryOp","recoveryAccount","newOwnerAuthority","buildRecoverAccountOp","recentOwnerAuthority","buildBoostPlusOp","buildRcDelegationOp","buildPromoteOp","CURATION_REASONS","buildCurationRecommendOp","recommender","buildCurationUnrecommendOp","buildPointTransferOp","sender","receiver","normalizedAmount","buildMultiPointTransferOps","destArray","buildCommunityRegistrationOp","buildActiveCustomJsonOp","buildPostingCustomJsonOp","useFollow","_result","useUnfollow","useBookmarkAdd","useBookmarkDelete","bookmarkId","useAccountFavoriteAdd","qc","useAccountFavoriteDelete","listKey","infinitePrefix","checkKey","previousList","f","previousCheck","infiniteQueries","previousInfinite","context","favoriteTagRequest","route","addFavoriteTagRequest","deleteFavoriteTagRequest","useFavoriteTagAdd","favoriteTagDeleteMutationOptions","invalidateAll","_tag","useFavoriteTagDelete","dedupeAndSortKeyAuths","additions","useAccountUpdateKeyAuths","accountData","keepCurrent","currentKey","keysToRevoke","keysToRevokeByAuthority","prepareAuth","keyName","allKeysToRevoke","existingKeys","values","useAccountUpdatePassword","updateKeys","newPassword","currentPassword","useAccountRevokePosting","accountName","ctx","useAccountUpdateRecovery","email","canRevokeFromAuthority","revokingKeyStrs","remainingWeight","sum","accountWeight","buildRevokeKeysOp","revokingKeys","hasAnyKeyInAuth","clone","needsOwnerUpdate","useAccountRevokeKey","revokingKey","useClaimAccount","useGrantPostingPermission","useCreateAccount","HIVE_VOTING_MANA_REGENERATION_SECONDS","HIVE_100_PERCENT","HIVE_VOTE_DUST_THRESHOLD","getEffectiveVests","vesting","vestsToRshares","votingPowerValue","votePerc","hasStableVoteHardfork","dynamicProps","major","minor","stableVoteRshares","reserveRate","effectiveVests","usedMana","mana","votingRshares","totalVests","votingPower","powerRechargeTime","power","downVotingPower","totalShares","elapsed","currentManaPerc","rewardsToStakeRatio","curation","rewards","ownVests","rcPower","votingValue","rShares","OPERATION_AUTHORITY_MAP","getCustomJsonAuthority","customJsonOp","opType","customJson","getProposalAuthority","proposalOp","getOperationAuthority","getRequiredAuthority","highestAuthority","useSignOperationByKey","keyOrSeed","useSignOperationByKeychain","keyType","useSignOperationByHivesigner","callbackUri","getChainPropertiesQueryOptions","applyFragmentUpdate","vars","buildAddedFragment","useAddFragment","newFragment","index","useEditFragment","fragmentId","applyUpdate","fragment","useRemoveFragment","parseJsonResponse","errorData","signUp","referral","captchaToken","subscribeEmail","usrActivity","ty","bl","getNotifications","saveNotificationSetting","system","allows_notify","notify_types","getNotificationSetting","markNotifications","addImage","UPLOAD_HOST","uploadImage","file","fetchApi","formData","uploadImageWithSignature","deleteImage","imageId","addDraft","updateDraft","draftId","deleteDraft","addSchedule","schedule","reblog","deleteSchedule","moveSchedule","getPromotedPost","onboardEmail","friend","dataBody","useAddDraft","useUpdateDraft","useDeleteDraft","_variables","useAddSchedule","useDeleteSchedule","useMoveSchedule","useAddImage","nextCode","effectiveCode","useDeleteImage","prev","img","useUploadImage","getEntryFromCache","setEntryInCache","mutateEntry","updater","updated","EntriesCacheManagement","updateVotes","payout","updateReblogsCount","updateRepliesCount","addReply","reply","updateEntries","invalidateEntry","getEntry","isVoteAlreadyReflected","activeVotes","hasVoterRecord","applyVoteCacheUpdate","newVotes","newPayout","useVote","doInvalidate","useReblog","newCount","invalidate","resolveContentActivityType","useComment","beneficiaries","sortedBeneficiaries","isPost","activityType","queriesToInvalidate","discussionsAuthor","discussionsPermlink","addOptimisticDiscussionEntry","rootAuthor","rootPermlink","queries","removeOptimisticDiscussionEntry","snapshots","restoreDiscussionSnapshots","updateEntryInCache","updates","previous","restoreEntryInCache","useDeleteComment","_error","useCrossPost","useUpdateReply","usePromote","DEFAULT_VALIDATE_POST_DELAYS","getContent","validatePostCreating","attempts","delays","waitMs","mutations_exports","useRecordActivity","getLocationInfo","locationInfo","domain","getDiscoverLeaderboardQueryOptions","getDiscoverCurationQueryOptions","accountsResponse","element","curator","receivedVestingShares","delegatedVestingShares","vestingWithdrawRate","effectiveVest","getPageStatsQueryOptions","sortedDimensions","sortedMetrics","THREESPEAK_BENEFICIARY_ACCOUNT","THREESPEAK_BENEFICIARY_WEIGHT","hasThreeSpeakEmbed","enforceThreeSpeakBeneficiary","isThreeSpeakBeneficiary","queries_exports","getAccountTokenQueryOptions","getAccountVideosQueryOptions","getDecodeMemoQueryOptions","HiveSignerIntegration","memoQueryOptions","memoDecoded","tokenQueryOptions","ThreeSpeakIntegration","getHivePoshLinksQueryOptions","getStatsQueryOptions","filterBy","getRcStatsQueryOptions","getAccountRcQueryOptions","getRcResourceParamsQueryOptions","RC_RESOURCE_NAMES","TRANSACTION_HEADER_BYTES","SIGNATURE_BYTES","ASSET_BYTES","big","computeResourceCost","curve","pool","resourceCount","regenShare","coeffA","coeffB","shift","denom","countCommentResourceUsage","transactionBytes","permlinkLength","signatures","hasCommentOptions","sizeInfo","state","exec","stringFieldBytes","commentOperationBytes","commentOptionsBytes","estimateCommentTransactionBytes","EMPTY","estimateCommentRcCost","rcParams","rcStats","usage","regen","cost","breakdown","share","scaled","resourceCost","priceRcUsage","emptyUsage","estimateVoteTransactionBytes","operationBytes","countVoteResourceUsage","estimateRcPrecheck","priced","priceOperation","safeBuffer","estimatedCost","willLikelyFail","average","averageCost","MINIMAL_VOTE","MINIMAL_COMMENT","getGameStatusCheckQueryOptions","gameClaimRequest","contentType","detail","useGameClaim","recordActivity","getQuestsQueryOptions","QUEST_CATALOG","getQuestCatalogEntry","tier","QUEST_MIN_CONTENT_LENGTH","measureQuestContentLength","earnsQuestContentCredit","STREAK_FREEZE_PRICE","STREAK_FREEZE_MAX_OWNED","genIdempotencyKey","buyStreakFreezeRequest","useBuyStreakFreeze","useSubscribeCommunity","useUnsubscribeCommunity","useMutePost","useSetCommunityRole","team","idx","useUpdateCommunity","useRegisterCommunityRewards","usePinPost","getCommunitiesQueryOptions","getCommunityContextQueryOptions","getCommunityQueryOptions","SUBSCRIBERS_PAGE_SIZE","fetchSubscribersPage","getCommunitySubscribersQueryOptions","getCommunitySubscribersInfiniteQueryOptions","getAccountNotificationsInfiniteQueryOptions","getRewardedCommunitiesQueryOptions","ROLES","roleMap","getCommunityType","type_id","getCommunityPermissions","communityType","userRole","subscribed","canPost","canComment","isModerator","getNotificationsUnreadCountQueryOptions","getNotificationsInfiniteQueryOptions","NotificationFilter","NotifyTypes","ALL_NOTIFY_TYPES","NotificationViewType","getNotificationsSettingsQueryOptions","initialMuted","getAnnouncementsQueryOptions","getSpotlightsQueryOptions","_accessToken","markNotificationRead","isInfiniteData","useMarkNotificationsRead","previousData","updatedData","unreadKey","currentUnread","unreadCount","useSetLastRead","getProposalQueryOptions","proposal","getProposalsQueryOptions","proposals","expired","getProposalVotesInfiniteQueryOptions","getUserProposalVotesQueryOptions","vote","useProposalVote","useProposalCreate","getVestingDelegationsQueryOptions","fetchLimit","getAccountDelegationsQueryOptions","getVestingDelegationExpirationsQueryOptions","getConversionRequestsQueryOptions","getCollateralizedConversionRequestsQueryOptions","getSavingsWithdrawFromQueryOptions","getWithdrawRoutesQueryOptions","getOpenOrdersQueryOptions","getOutgoingRcDelegationsInfiniteQueryOptions","delegations","delegation","getIncomingRcQueryOptions","rawVestsToAsset","padded","toReceivedVestingShares","getReceivedVestingSharesQueryOptions","getRecurrentTransfersQueryOptions","normalizeString","trimmed","normalizeNumber","direct","parseToken","rawToken","extractTokens","record","resolveUsername","getPortfolioQueryOptions","getHiveAssetGeneralInfoQueryOptions","marketTicker","marketPrice","liquidBalance","savingsBalance","getHbdAssetGeneralInfoQueryOptions","price","getAPR","currentInflationRate","totalVestingFunds","getHivePowerAssetGeneralInfoQueryOptions","delegatedVests","receivedVests","withdrawRateVests","remainingToWithdrawVests","nextWithdrawalVests","hpBalance","outgoingDelegationsHp","incomingDelegationsHp","pendingPowerDownHp","nextPowerDownHp","totalBalance","availableHp","HIVE_ACCOUNT_OPERATION_GROUPS","HIVE_OPERATION_LIST","operationOrders","HIVE_OPERATION_ORDERS","HIVE_OPERATION_NAME_BY_ID","isHiveOperationName","resolveHiveOperationFilters","rawValues","hasAll","uniqueValues","operationIds","filterArgs","collectRequestedOperations","getNextAccountHistoryPageParam","oldest","resolveAccountHistoryLimit","getHiveAssetTransactionsQueryOptions","requestedOperations","pages","pageParams","getHbdAssetTransactionsQueryOptions","getHivePowerAssetTransactionsQueryOptions","userSelectedOperations","hasAllFilter","formatDate","pad","subtractSeconds","getHiveAssetMetricQueryOptions","hive","non_hive","open","_","__","prevStartDate","getHiveAssetWithdrawalRoutesQueryOptions","getHivePowerDelegatesInfiniteQueryOptions","getHivePowerDelegatingsQueryOptions","getOrderBookQueryOptions","getMarketStatisticsQueryOptions","getMarketHistoryQueryOptions","getHiveHbdStatsQueryOptions","oneDayAgo","dayChange","getMarketDataQueryOptions","getTradeHistoryQueryOptions","getFeedHistoryQueryOptions","getCurrentMedianHistoryPriceQueryOptions","useLimitOrderCreate","useLimitOrderCancel","getMarketData","getCurrencyRate","cur","getCurrencyTokenRate","getCurrencyRates","getHivePrice","ENGINE_RPC_HEADERS","engineRpc","engineRpcSafe","getHiveEngineOrderBook","baseParams","buy","sell","sortByPriceDesc","left","sortByPriceAsc","right","getHiveEngineTradeHistory","getHiveEngineOpenOrders","buyRaw","sellRaw","formatTotal","quantity","getHiveEngineMetrics","symbolQuery","getHiveEngineTokensMarket","getHiveEngineTokensBalances","getHiveEngineTokensMetadata","getHiveEngineTokenTransactions","getHiveEngineTokenMetrics","interval","getHiveEngineUnclaimedRewards","getHiveEngineTokensBalancesQueryOptions","getHiveEngineTokensMarketQueryOptions","getHiveEngineTokensMetadataQueryOptions","getHiveEngineTokenTransactionsQueryOptions","_allPages","lastPageParam","_firstPage","firstPageParam","getHiveEngineTokensMetricsQueryOptions","getHiveEngineUnclaimedRewardsQueryOptions","pending_token","getAllHiveEngineTokensQueryOptions","formattedNumber","fractionDigits","out","av","HiveEngineToken","getHiveEngineBalancesWithUsdQueryOptions","allTokens","balances","t","pricePerHive","providedMetrics","unpricedSymbols","balance","metric","tokenMetadata","lastPrice","balanceAmount","usdValue","getHiveEngineTokenGeneralInfoQueryOptions","hiveQuery","hiveData","metadataList","balanceList","marketList","stakedBalance","unstakingBalance","getPointsQueryOptions","pointsResponse","points","transactionsResponse","transactions","getPointsAssetGeneralInfoQueryOptions","getPointsAssetTransactionsQueryOptions","created","getAccountWalletAssetInfoQueryOptions","fetchQuery","qo","convertPriceToUserCurrency","assetInfo","conversionRate","portfolioQuery","getPortfolioAssetInfo","assetItem","extraItem","dataKey","numValue","portfolioAssetInfo","converted","AssetOperation","useTransfer","useTransferPoint","useDelegateVestingShares","useSetWithdrawVestingRoute","useTransferEngineToken","useTransferToSavings","useTransferFromSavings","useTransferToVesting","useWithdrawVesting","useConvert","useClaimInterest","CLAIM_REWARDS_INVALIDATION_DELAY_MS","pendingInvalidationTimers","useClaimRewards","timerKey","keysToInvalidate","existingTimer","rejected","useDelegateEngineToken","useUndelegateEngineToken","useStakeEngineToken","useUnstakeEngineToken","useClaimEngineRewards","useEngineMarketOrder","buildHiveOperations","buildEngineOperations","getWalletOperationAuthority","useWalletOperation","hiveOps","engineOps","useDelegateRc","useWitnessVote","useWitnessProxy","mapRestWitness","w","getWitnessesInfiniteQueryOptions","getWitnessVotersPageQueryOptions","getWitnessVoterCountQueryOptions","PointTransactionType","claimPointsRequest","useClaimPoints","author_re","type_re","category_re","tag_re","SearchType","MAX_SEARCH_TAGS","MAX_SEARCH_QUERY_LENGTH","firstToken","normalizeSearchAuthor","normalizeSearchCategory","normalizeSearchTags","seen","buildSearchQuery","search","category","normalizedSearch","normalizedCategory","normalizedTags","part","SearchQuery","_query","re","matches","isSearchResponse","MAX_RETRIES","isServer","searchRetryPolicy","failureCount","isTransient","searchQueryOptions","scroll_id","getControversialRisingInfiniteQueryOptions","sinceDate","similar","searchPath","SIMILAR_ENTRIES_SINCE_MS","SIMILAR_ENTRIES_TARGET","SIMILAR_ENTRIES_BODY_LIMIT","SIMILAR_ENTRIES_SSR_TIMEOUT_MS","SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS","SIMILAR_ENTRIES_MIN_RENDER","toMltExcerpt","fingerprint","getSimilarEntriesQueryOptions","rawTags","contentKey","collected","seenAuthors","getSearchAccountQueryOptions","getSearchTopicsQueryOptions","getSearchApiInfiniteQueryOptions","getSearchPathQueryOptions","getSupportSettingsRequest","getSupportSettingsQueryOptions","updateSupportSettingsRequest","applySupportSettingsUpdate","useUpdateSupportSettings","getBoostPlusPricesQueryOptions","getRcDelegationPricesQueryOptions","getRcDelegationActiveQueryOptions","responseData","getPromotePriceQueryOptions","getBoostPlusAccountPricesQueryOptions","useBoostPlus","useRcDelegation","hsTokenRenew","BAD_ACTORS_URL","getBadActorsQueryOptions","POLLS_PROTOCOL_VERSION","PollPreferredInterpretation","mapMetaChoicesToPollChoices","metaChoices","choice","normalizePoll","pollChoices","pollVoters","rawStats","choices","voters","getPollQueryOptions","usePollVote","pollTrxId","HIDDEN_POST_RSHARES_THRESHOLD","HIDDEN_POST_MIN_VOTES","LOW_TRUST_REPUTATION_THRESHOLD","isHumanReadable","accountReputation","neg","reputationLevel","INTERNAL_HOSTS","IMAGE_HOSTS","IMAGE_EXT_RE","URL_RE","TRAILING_PUNCT_RE","hostOf","isExternalPromoLink","rawUrl","hasExternalLink","ContentModerationReason","countVotes","isHiddenPost","netRshares","activeVotesLength","isLowTrustSeoPost","reputation","isAuthorMuted","mutedAuthors","getContentModerationReason","NewsletterApiError","NewsletterSendRefusedError","taken","newsletterUrl","parse","subscribeDigestRequest","getDigestSubscriptionsRequest","leaveDigestRequest","unsubscribeAllDigestsRequest","getNewsletterSenderRequest","getNewsletterIssuesRequest","getNewsletterPostsRequest","postSend","request","previewNewsletterSendRequest","sendNewsletterIssueRequest","getDigestSubscriptionsQueryOptions","getNewsletterSenderQueryOptions","getNewsletterIssuesQueryOptions","getNewsletterPostsQueryOptions","useSubscribeDigest","useLeaveDigest","useUnsubscribeAllDigests","usePreviewNewsletterIssue","useSendNewsletterIssue","CURATION_SORTS","CURATION_VIEWS","CURATION_APPS","CURATION_WINDOWS","CURATION_MARK_STATES","CURATION_FLAG_REASONS","isOnAbuseList","flags","isExcludedByFlags","isDmcaCurationPath","maskDmcaCurationRow","masked","maskDmcaCurationPages","changed","pageChanged","ROUTE","CurationApiError","isRecord","hasItems","hasCurators","hasRecommenders","isStatus","SCORECARD_COUNTS","isRecommenderStats","COMMUNITY_RE","SEED_RE","DEFAULT_TRUE","PARAM_ORDER","normalizeCurationParams","toQuery","LOOPBACK_HOSTS","assertCredentialTransport","getJson","postJson","fetchCurationFeedPage","fetchCurationStatus","fetchCurationRoster","fetchCurationRecommendationsPage","fetchCurationRecommenderStats","fetchCurationPost","curationRosterFeedRequest","curationTickRequest","curationRosterListRequest","curationRosterSetRequest","rules","note","curationRosterRetireRequest","curationMarkRequest","snooze_until","lane","curationMarkClearRequest","curationMyMarksRequest","curationCursorRequest","TRX_ID_RE","curationRecommendMetaRequest","trx_id","ua_class","curationDismissRecoRequest","CURATION_FEED_PAGE_SIZE","CURATION_FEED_STALE_MS","dedupePagesBy","keyOf","dedupeCurationPages","selectCurationFeedPages","getCurationFeedInfiniteQueryOptions","getCurationStatusQueryOptions","getCurationRosterQueryOptions","getCurationRosterAdminQueryOptions","CURATION_RECOMMENDATIONS_PAGE_SIZE","getCurationRecommendationsInfiniteQueryOptions","ACCOUNT_RE","PERMLINK_RE","getCurationPostQueryOptions","getCurationRecommenderQueryOptions","normalizeBroadcastTrxId","useCurationRecommend"],"mappings":"wkBASA,IAAMA,EAAAA,CAAe,IAAI,WAAA,CAAY,CAAC,EAIlCC,EAAAA,CAAqD,IAAA,CACrDC,EAAAA,CAAuD,IAAA,CAE3D,SAASC,EAAAA,EAAgD,CACvD,OAAKF,EAAAA,GACC,OAAO,WAAA,CAAgB,GAAA,CACzBA,GAAW,IAAI,WAAA,CAEfA,EAAAA,CAAW,CACT,MAAA,CAAOG,CAAAA,CAAuB,CAE5B,IAAMC,CAAAA,CAAiB,EAAC,CACxB,IAAA,IAASC,CAAAA,CAAI,EAAGA,CAAAA,CAAIF,CAAAA,CAAE,MAAA,CAAQE,CAAAA,EAAAA,CAAK,CACjC,IAAIC,EAAIH,CAAAA,CAAE,UAAA,CAAWE,CAAC,CAAA,CACtB,GAAIC,EAAI,GAAA,CACNF,CAAAA,CAAK,IAAA,CAAKE,CAAC,CAAA,CAAA,KAAA,GACFA,CAAAA,CAAI,KACbF,CAAAA,CAAK,IAAA,CAAK,GAAA,CAAQE,CAAAA,EAAK,CAAA,CAAI,GAAA,CAAQA,EAAI,EAAK,CAAA,CAAA,KAAA,GACnCA,CAAAA,EAAK,KAAA,EAAUA,CAAAA,EAAK,KAAA,EAAUD,EAAI,CAAA,CAAIF,CAAAA,CAAE,OAAQ,CACzD,IAAMI,EAAOJ,CAAAA,CAAE,UAAA,CAAW,EAAEE,CAAC,CAAA,CAC7BC,CAAAA,CAAI,QAAYA,CAAAA,CAAI,IAAA,GAAU,EAAA,CAAA,EAAOC,CAAAA,CAAO,IAAA,CAAA,CAC5CH,CAAAA,CAAK,KAAK,GAAA,CAAQE,CAAAA,EAAK,EAAA,CAAK,GAAA,CAASA,CAAAA,EAAK,EAAA,CAAM,GAAO,GAAA,CAASA,CAAAA,EAAK,EAAK,EAAA,CAAO,GAAA,CAAQA,EAAI,EAAK,EACpG,CAAA,KACEF,CAAAA,CAAK,IAAA,CAAK,GAAA,CAAQE,GAAK,EAAA,CAAK,GAAA,CAASA,CAAAA,EAAK,CAAA,CAAK,EAAA,CAAO,GAAA,CAAQA,EAAI,EAAK,EAE3E,CACA,OAAO,IAAI,UAAA,CAAWF,CAAI,CAC5B,CACF,GAGGJ,EACT,CAEA,SAASQ,EAAAA,EAAkD,CACzD,OAAKP,EAAAA,GACC,OAAO,WAAA,CAAgB,IACzBA,EAAAA,CAAW,IAAI,WAAA,CAEfA,EAAAA,CAAW,CACT,MAAA,CAAOQ,EAAyB,CAC9B,IAAMC,CAAAA,CAAQD,CAAAA,YAAa,WAAA,CAAc,IAAI,WAAWA,CAAC,CAAA,CAAI,IAAI,UAAA,CAAYA,CAAAA,CAAsB,OAASA,CAAAA,CAAsB,UAAA,CAAaA,CAAAA,CAAsB,UAAU,CAAA,CAC3KE,CAAAA,CAAS,GACb,IAAA,IAASN,CAAAA,CAAI,CAAA,CAAGA,CAAAA,CAAIK,CAAAA,CAAM,MAAA,EAAU,CAClC,IAAME,CAAAA,CAAOF,CAAAA,CAAML,CAAC,CAAA,CAChBQ,CAAAA,CACAD,EAAO,GAAA,EAAQC,CAAAA,CAAYD,CAAAA,CAAMP,CAAAA,EAAK,CAAA,EAAA,CAChCO,CAAAA,CAAO,OAAU,GAAA,EAAQC,CAAAA,CAAAA,CAAcD,CAAAA,CAAO,EAAA,GAAS,CAAA,CAAMF,CAAAA,CAAML,EAAI,CAAC,CAAA,CAAI,EAAA,CAAOA,CAAAA,EAAK,CAAA,EAAA,CACxFO,CAAAA,CAAO,OAAU,GAAA,EAAQC,CAAAA,CAAAA,CAAcD,CAAAA,CAAO,EAAA,GAAS,EAAA,CAAA,CAAQF,CAAAA,CAAML,EAAI,CAAC,CAAA,CAAI,KAAS,CAAA,CAAMK,CAAAA,CAAML,EAAI,CAAC,CAAA,CAAI,EAAA,CAAOA,CAAAA,EAAK,CAAA,GAC3HQ,CAAAA,CAAAA,CAAcD,EAAO,CAAA,GAAS,EAAA,CAAA,CAAQF,CAAAA,CAAML,CAAAA,CAAI,CAAC,CAAA,CAAI,KAAS,EAAA,CAAA,CAAQK,CAAAA,CAAML,CAAAA,CAAI,CAAC,CAAA,CAAI,EAAA,GAAS,EAAMK,CAAAA,CAAML,CAAAA,CAAI,CAAC,CAAA,CAAI,EAAA,CAAOA,GAAK,CAAA,CAAA,CAClIQ,CAAAA,EAAa,KAAA,CAAUF,CAAAA,EAAU,MAAA,CAAO,YAAA,CAAaE,CAAS,CAAA,EAC3DA,CAAAA,EAAa,KAAA,CAASF,CAAAA,EAAU,MAAA,CAAO,YAAA,CAAa,OAAUE,CAAAA,EAAa,EAAA,CAAA,CAAK,KAAA,EAAUA,CAAAA,CAAY,IAAA,CAAM,CAAA,EACrH,CACA,OAAOF,CACT,CACF,CAAA,CAAA,CAGGV,EACT,CAEO,IAAMa,CAAAA,CAAN,MAAMC,CAAW,CACtB,OAAO,cAAgB,IAAA,CACvB,OAAO,UAAA,CAAa,KAAA,CACpB,OAAO,gBAAA,CAAmB,GAC1B,OAAO,cAAA,CAAiBA,CAAAA,CAAW,UAAA,CAEnC,MAAA,CACA,IAAA,CACA,OACA,YAAA,CACA,KAAA,CACA,aAEA,WAAA,CACEC,CAAAA,CAAmBD,EAAW,gBAAA,CAC9BE,CAAAA,CAAwBF,CAAAA,CAAW,cAAA,CACnC,CACA,IAAA,CAAK,OAASC,CAAAA,GAAa,CAAA,CAAIjB,EAAAA,CAAe,IAAI,WAAA,CAAYiB,CAAQ,EACtE,IAAA,CAAK,IAAA,CAAOA,CAAAA,GAAa,CAAA,CAAI,IAAI,QAAA,CAASjB,EAAY,CAAA,CAAI,IAAI,SAAS,IAAA,CAAK,MAAM,EAClF,IAAA,CAAK,MAAA,CAAS,CAAA,CACd,IAAA,CAAK,YAAA,CAAe,EAAA,CACpB,KAAK,KAAA,CAAQiB,CAAAA,CACb,IAAA,CAAK,YAAA,CAAeC,EACtB,CAEA,OAAO,QAAA,CAASD,CAAAA,CAAmBC,CAAAA,CAAoC,CACrE,OAAO,IAAIF,EAAWC,CAAAA,CAAUC,CAAY,CAC9C,CAEA,OAAO,OACLC,CAAAA,CACAD,CAAAA,CACY,CACZ,IAAID,CAAAA,CAAW,CAAA,CACf,QAASX,CAAAA,CAAI,CAAA,CAAGA,CAAAA,CAAIa,CAAAA,CAAQ,MAAA,CAAQ,EAAEb,EAAG,CACvC,IAAMc,CAAAA,CAAMD,CAAAA,CAAQb,CAAC,CAAA,CACrB,GAAIc,CAAAA,YAAeJ,CAAAA,CACjBC,GAAYG,CAAAA,CAAI,KAAA,CAAQA,EAAI,MAAA,CAAA,KAAA,GACnBA,CAAAA,YAAe,UAAA,CACxBH,CAAAA,EAAYG,CAAAA,CAAI,MAAA,CAAA,KAAA,GACPA,aAAe,WAAA,CACxBH,CAAAA,EAAYG,CAAAA,CAAI,UAAA,CAAA,KAAA,GACP,KAAA,CAAM,OAAA,CAAQA,CAAG,CAAA,CAC1BH,CAAAA,EAAYG,CAAAA,CAAI,MAAA,CAAA,KAEhB,MAAM,SAAA,CAAU,gBAAgB,CAEpC,CAEA,GAAIH,CAAAA,GAAa,CAAA,CACf,OAAO,IAAID,CAAAA,CAAW,CAAA,CAAGE,CAAY,CAAA,CAGvC,IAAMG,CAAAA,CAAK,IAAIL,CAAAA,CAAWC,CAAAA,CAAUC,CAAY,CAAA,CAC1CI,CAAAA,CAAO,IAAI,WAAWD,CAAAA,CAAG,MAAM,CAAA,CACjCE,CAAAA,CAAS,CAAA,CAEb,IAAA,IAASjB,EAAI,CAAA,CAAGA,CAAAA,CAAIa,EAAQ,MAAA,CAAQ,EAAEb,EAAG,CACvC,IAAIc,CAAAA,CAAMD,CAAAA,CAAQb,CAAC,CAAA,CACfc,aAAeJ,CAAAA,EACjBM,CAAAA,CAAK,GAAA,CAAI,IAAI,UAAA,CAAWF,CAAAA,CAAI,OAAQA,CAAAA,CAAI,MAAA,CAAQA,CAAAA,CAAI,KAAA,CAAQA,CAAAA,CAAI,MAAM,EAAGG,CAAM,CAAA,CAC/EA,GAAUH,CAAAA,CAAI,KAAA,CAAQA,EAAI,MAAA,EACjBA,CAAAA,YAAe,UAAA,EACxBE,CAAAA,CAAK,GAAA,CAAIF,CAAAA,CAAKG,CAAM,CAAA,CACpBA,CAAAA,EAAUH,CAAAA,CAAI,MAAA,EACLA,CAAAA,YAAe,WAAA,EACxBE,EAAK,GAAA,CAAI,IAAI,UAAA,CAAWF,CAAG,CAAA,CAAGG,CAAM,EACpCA,CAAAA,EAAUH,CAAAA,CAAI,aAGdE,CAAAA,CAAK,GAAA,CAAIF,EAAiBG,CAAM,CAAA,CAChCA,CAAAA,EAAWH,CAAAA,CAAiB,MAAA,EAEhC,CAEA,OAAAC,CAAAA,CAAG,KAAA,CAAQA,CAAAA,CAAG,MAAA,CAASE,CAAAA,CACvBF,CAAAA,CAAG,OAAS,CAAA,CACLA,CACT,CAEA,OAAO,IAAA,CACLG,CAAAA,CACAN,EACY,CACZ,GAAIM,aAAkBR,CAAAA,CAAY,CAChC,IAAMK,CAAAA,CAAKG,CAAAA,CAAO,KAAA,EAAM,CACxB,OAAAH,CAAAA,CAAG,aAAe,EAAA,CACXA,CACT,CAEA,IAAIA,CAAAA,CACJ,GAAIG,aAAkB,UAAA,CACpBH,CAAAA,CAAK,IAAIL,CAAAA,CAAW,CAAA,CAAGE,CAAY,EAC/BM,CAAAA,CAAO,MAAA,CAAS,IAClBH,CAAAA,CAAG,MAAA,CAASG,EAAO,MAAA,CACnBH,CAAAA,CAAG,MAAA,CAASG,CAAAA,CAAO,UAAA,CACnBH,CAAAA,CAAG,MAAQG,CAAAA,CAAO,UAAA,CAAaA,CAAAA,CAAO,UAAA,CACtCH,CAAAA,CAAG,IAAA,CAAO,IAAI,QAAA,CAASG,CAAAA,CAAO,MAAM,CAAA,CAAA,CAAA,KAAA,GAE7BA,CAAAA,YAAkB,WAAA,CAC3BH,EAAK,IAAIL,CAAAA,CAAW,EAAGE,CAAY,CAAA,CAC/BM,EAAO,UAAA,CAAa,CAAA,GACtBH,CAAAA,CAAG,MAAA,CAASG,CAAAA,CACZH,CAAAA,CAAG,OAAS,CAAA,CACZA,CAAAA,CAAG,KAAA,CAAQG,CAAAA,CAAO,UAAA,CAClBH,CAAAA,CAAG,KAAOG,CAAAA,CAAO,UAAA,CAAa,CAAA,CAAI,IAAI,QAAA,CAASA,CAAM,EAAI,IAAI,QAAA,CAASxB,EAAY,CAAA,CAAA,CAAA,KAAA,GAE3E,KAAA,CAAM,QAAQwB,CAAM,CAAA,CAC7BH,CAAAA,CAAK,IAAIL,CAAAA,CAAWQ,CAAAA,CAAO,OAAQN,CAAY,CAAA,CAC/CG,CAAAA,CAAG,KAAA,CAAQG,CAAAA,CAAO,MAAA,CAClB,IAAI,UAAA,CAAWH,CAAAA,CAAG,MAAM,CAAA,CAAE,GAAA,CAAIG,CAAM,OAEpC,MAAM,SAAA,CAAU,gBAAgB,CAAA,CAGlC,OAAOH,CACT,CAEA,UAAA,CACEI,CAAAA,CACAF,CAAAA,CACY,CACZ,OAAO,IAAA,CAAK,OAAOE,CAAAA,CAAQF,CAAM,CACnC,CAEA,SAAA,CAAUG,CAAAA,CAAeH,EAA6B,CACpD,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CACnC,OAAII,CAAAA,CAAUJ,CAAAA,CAAS,KAAK,MAAA,CACvBA,CAAAA,CAASA,EAEVA,CAAAA,CAAS,CAAA,CAAI,IAAA,CAAK,MAAA,CAAO,UAAA,EAC3B,IAAA,CAAK,OAAOA,CAAAA,CAAS,CAAC,CAAA,CAGxB,IAAA,CAAK,IAAA,CAAK,OAAA,CAAQA,EAAQG,CAAK,CAAA,CAE3BC,CAAAA,GAAU,IAAA,CAAK,MAAA,EAAU,CAAA,CAAA,CACtB,IACT,CAEA,SAAA,CAAUD,EAAeH,CAAAA,CAA6B,CACpD,OAAO,IAAA,CAAK,SAAA,CAAUG,CAAAA,CAAOH,CAAM,CACrC,CAEA,WAAWG,CAAAA,CAAeH,CAAAA,CAA6B,CACrD,IAAMI,CAAAA,CAAW,OAAOJ,EAAW,GAAA,CACnC,OAAII,CAAAA,CAAUJ,CAAAA,CAAS,IAAA,CAAK,MAAA,CACvBA,EAASA,CAAAA,CAEVA,CAAAA,CAAS,EAAI,IAAA,CAAK,MAAA,CAAO,YAC3B,IAAA,CAAK,MAAA,CAAOA,CAAAA,CAAS,CAAC,CAAA,CAGxB,IAAA,CAAK,KAAK,QAAA,CAASA,CAAAA,CAAQG,CAAK,CAAA,CAE5BC,CAAAA,GAAU,IAAA,CAAK,QAAU,CAAA,CAAA,CACtB,IACT,CAEA,UAAA,CAAWD,CAAAA,CAAeH,CAAAA,CAA6B,CACrD,OAAO,IAAA,CAAK,WAAWG,CAAAA,CAAOH,CAAM,CACtC,CAEA,SAAA,CAAUA,CAAAA,CAAyB,CACjC,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CAC/BI,CAAAA,CAAUJ,CAAAA,CAAS,IAAA,CAAK,MAAA,CACvBA,EAASA,CAAAA,CAEd,IAAMG,CAAAA,CAAQ,IAAA,CAAK,IAAA,CAAK,QAAA,CAASH,CAAM,CAAA,CACvC,OAAII,IAAU,IAAA,CAAK,MAAA,EAAU,GACtBD,CACT,CAEA,SAAA,CAAUH,CAAAA,CAAyB,CACjC,OAAO,KAAK,SAAA,CAAUA,CAAM,CAC9B,CAEA,UAAA,CAAWG,CAAAA,CAAeH,EAA6B,CACrD,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CACnC,OAAII,CAAAA,CAAUJ,CAAAA,CAAS,KAAK,MAAA,CACvBA,CAAAA,CAASA,EAEVA,CAAAA,CAAS,CAAA,CAAI,IAAA,CAAK,MAAA,CAAO,UAAA,EAC3B,IAAA,CAAK,OAAOA,CAAAA,CAAS,CAAC,CAAA,CAGxB,IAAA,CAAK,IAAA,CAAK,QAAA,CAASA,EAAQG,CAAAA,CAAO,IAAA,CAAK,YAAY,CAAA,CAE/CC,CAAAA,GAAU,IAAA,CAAK,QAAU,CAAA,CAAA,CACtB,IACT,CAEA,UAAA,CAAWD,CAAAA,CAAeH,EAA6B,CACrD,OAAO,IAAA,CAAK,UAAA,CAAWG,CAAAA,CAAOH,CAAM,CACtC,CAEA,WAAA,CAAYG,CAAAA,CAAeH,CAAAA,CAA6B,CACtD,IAAMI,EAAW,OAAOJ,CAAAA,CAAW,GAAA,CACnC,OAAII,CAAAA,CAAUJ,CAAAA,CAAS,KAAK,MAAA,CACvBA,CAAAA,CAASA,CAAAA,CAEVA,CAAAA,CAAS,CAAA,CAAI,IAAA,CAAK,OAAO,UAAA,EAC3B,IAAA,CAAK,MAAA,CAAOA,CAAAA,CAAS,CAAC,CAAA,CAGxB,KAAK,IAAA,CAAK,SAAA,CAAUA,CAAAA,CAAQG,CAAAA,CAAO,IAAA,CAAK,YAAY,EAEhDC,CAAAA,GAAU,IAAA,CAAK,MAAA,EAAU,CAAA,CAAA,CACtB,IACT,CAEA,YAAYD,CAAAA,CAAeH,CAAAA,CAA6B,CACtD,OAAO,IAAA,CAAK,YAAYG,CAAAA,CAAOH,CAAM,CACvC,CAEA,UAAA,CAAWG,CAAAA,CAAeH,EAA6B,CACrD,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CACnC,OAAII,CAAAA,CAAUJ,CAAAA,CAAS,IAAA,CAAK,MAAA,CACvBA,CAAAA,CAASA,CAAAA,CAEVA,EAAS,CAAA,CAAI,IAAA,CAAK,OAAO,UAAA,EAC3B,IAAA,CAAK,OAAOA,CAAAA,CAAS,CAAC,CAAA,CAGxB,IAAA,CAAK,IAAA,CAAK,QAAA,CAASA,EAAQG,CAAAA,CAAO,IAAA,CAAK,YAAY,CAAA,CAE/CC,CAAAA,GAAU,IAAA,CAAK,QAAU,CAAA,CAAA,CACtB,IACT,CAEA,QAAA,CAASD,CAAAA,CAAeH,CAAAA,CAA6B,CACnD,OAAO,IAAA,CAAK,WAAWG,CAAAA,CAAOH,CAAM,CACtC,CAEA,WAAA,CAAYG,CAAAA,CAAeH,CAAAA,CAA6B,CACtD,IAAMI,EAAW,OAAOJ,CAAAA,CAAW,GAAA,CACnC,OAAII,CAAAA,CAAUJ,CAAAA,CAAS,KAAK,MAAA,CACvBA,CAAAA,CAASA,CAAAA,CAEVA,CAAAA,CAAS,CAAA,CAAI,IAAA,CAAK,OAAO,UAAA,EAC3B,IAAA,CAAK,OAAOA,CAAAA,CAAS,CAAC,EAGxB,IAAA,CAAK,IAAA,CAAK,SAAA,CAAUA,CAAAA,CAAQG,CAAAA,CAAO,IAAA,CAAK,YAAY,CAAA,CAEhDC,CAAAA,GAAU,IAAA,CAAK,MAAA,EAAU,CAAA,CAAA,CACtB,IACT,CAEA,WAAA,CAAYD,CAAAA,CAAeH,CAAAA,CAA6B,CACtD,OAAO,IAAA,CAAK,YAAYG,CAAAA,CAAOH,CAAM,CACvC,CAEA,UAAA,CAAWA,EAAyB,CAClC,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CAC/BI,EAAUJ,CAAAA,CAAS,IAAA,CAAK,MAAA,CACvBA,CAAAA,CAASA,CAAAA,CAEd,IAAMG,EAAQ,IAAA,CAAK,IAAA,CAAK,SAAA,CAAUH,CAAAA,CAAQ,IAAA,CAAK,YAAY,EAC3D,OAAII,CAAAA,GACF,KAAK,MAAA,EAAU,CAAA,CAAA,CAEVD,CACT,CAEA,UAAA,CAAa,IAAA,CAAK,UAAA,CAElB,MAAA,CAAOD,CAAAA,CAA0DF,EAA6B,CAC5F,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CAC/BI,EAAUJ,CAAAA,CAAS,IAAA,CAAK,MAAA,CACvBA,CAAAA,CAASA,CAAAA,CAEd,IAAIK,EAYJ,OAXIH,CAAAA,YAAkBT,GACpBY,CAAAA,CAAM,IAAI,WAAWH,CAAAA,CAAO,MAAA,CAAQA,CAAAA,CAAO,MAAA,CAAQA,CAAAA,CAAO,KAAA,CAAQA,EAAO,MAAM,CAAA,CAC/EA,CAAAA,CAAO,MAAA,EAAUG,CAAAA,CAAI,MAAA,EACZH,aAAkB,UAAA,CAC3BG,CAAAA,CAAMH,CAAAA,CACGA,CAAAA,YAAkB,WAAA,CAC3BG,CAAAA,CAAM,IAAI,UAAA,CAAWH,CAAM,CAAA,CAE3BG,CAAAA,CAAM,IAAI,UAAA,CAAWH,CAAM,CAAA,CAGzBG,CAAAA,CAAI,MAAA,EAAU,CAAA,CAAU,IAAA,EAExBL,CAAAA,CAASK,EAAI,MAAA,CAAS,IAAA,CAAK,MAAA,CAAO,UAAA,EACpC,IAAA,CAAK,MAAA,CAAOL,EAASK,CAAAA,CAAI,MAAM,CAAA,CAGjC,IAAI,UAAA,CAAW,IAAA,CAAK,MAAM,CAAA,CAAE,GAAA,CAAIA,EAAKL,CAAM,CAAA,CAEvCI,IAAU,IAAA,CAAK,MAAA,EAAUC,CAAAA,CAAI,MAAA,CAAA,CAC1B,IAAA,CACT,CAEA,MAAMC,CAAAA,CAA4B,CAChC,IAAMR,CAAAA,CAAK,IAAIL,CAAAA,CAAW,EAAG,IAAA,CAAK,YAAY,CAAA,CAC9C,OAAIa,CAAAA,EACFR,CAAAA,CAAG,OAAS,IAAI,WAAA,CAAY,KAAK,MAAA,CAAO,UAAU,EAClD,IAAI,UAAA,CAAWA,CAAAA,CAAG,MAAM,CAAA,CAAE,GAAA,CAAI,IAAI,UAAA,CAAW,IAAA,CAAK,MAAM,CAAC,CAAA,CACzDA,CAAAA,CAAG,KAAO,IAAI,QAAA,CAASA,CAAAA,CAAG,MAAM,CAAA,GAEhCA,CAAAA,CAAG,OAAS,IAAA,CAAK,MAAA,CACjBA,EAAG,IAAA,CAAO,IAAA,CAAK,MAEjBA,CAAAA,CAAG,MAAA,CAAS,IAAA,CAAK,MAAA,CACjBA,CAAAA,CAAG,YAAA,CAAe,KAAK,YAAA,CACvBA,CAAAA,CAAG,KAAA,CAAQ,IAAA,CAAK,KAAA,CACTA,CACT,CAEA,IAAA,CAAKS,CAAAA,CAAgBC,CAAAA,CAA0B,CAI7C,GAHID,CAAAA,GAAU,SAAWA,CAAAA,CAAQ,IAAA,CAAK,QAClCC,CAAAA,GAAQ,MAAA,GAAWA,EAAM,IAAA,CAAK,KAAA,CAAA,CAE9BD,CAAAA,GAAUC,CAAAA,CACZ,OAAO,IAAIf,EAAW,CAAA,CAAG,IAAA,CAAK,YAAY,CAAA,CAG5C,IAAMC,CAAAA,CAAWc,EAAMD,CAAAA,CACjBT,CAAAA,CAAK,IAAIL,CAAAA,CAAWC,CAAAA,CAAU,IAAA,CAAK,YAAY,CAAA,CACrD,OAAAI,EAAG,MAAA,CAAS,CAAA,CACZA,EAAG,KAAA,CAAQJ,CAAAA,CAEX,IAAI,UAAA,CAAWI,CAAAA,CAAG,MAAM,EAAE,GAAA,CAAI,IAAI,UAAA,CAAW,IAAA,CAAK,MAAM,CAAA,CAAE,SAASS,CAAAA,CAAOC,CAAG,CAAA,CAAG,CAAC,CAAA,CAC1EV,CACT,CAEA,MAAA,CACEW,CAAAA,CACAC,EACAC,CAAAA,CACAC,CAAAA,CACY,CACZ,IAAMC,CAAAA,CAAiB,OAAOH,CAAAA,CAAiB,GAAA,CACzCN,CAAAA,CAAW,OAAOO,CAAAA,CAAiB,GAAA,CACzCD,CAAAA,CAAeG,CAAAA,CAAiBJ,CAAAA,CAAO,MAAA,CAASC,EAChDC,CAAAA,CAAeP,CAAAA,CAAW,IAAA,CAAK,MAAA,CAASO,CAAAA,CACxCC,CAAAA,CAAcA,IAAgB,MAAA,CAAY,IAAA,CAAK,MAAQA,CAAAA,CAEvD,IAAME,EAAMF,CAAAA,CAAcD,CAAAA,CAC1B,OAAIG,CAAAA,GAAQ,CAAA,CAAUL,CAAAA,EAEtBA,EAAO,cAAA,CAAeC,CAAAA,CAAeI,CAAG,CAAA,CACxC,IAAI,UAAA,CAAWL,EAAO,MAAM,CAAA,CAAE,GAAA,CAC5B,IAAI,UAAA,CAAW,IAAA,CAAK,MAAM,CAAA,CAAE,QAAA,CAASE,CAAAA,CAAcC,CAAW,CAAA,CAC9DF,CACF,EAEIN,CAAAA,GAAU,IAAA,CAAK,MAAA,EAAUU,CAAAA,CAAAA,CACzBD,CAAAA,GAAgBJ,CAAAA,CAAO,QAAUK,CAAAA,CAAAA,CAC9B,IAAA,CACT,CAEA,cAAA,CAAepB,CAAAA,CAA8B,CAC3C,IAAIqB,CAAAA,CAAU,IAAA,CAAK,MAAA,CAAO,UAAA,CAC1B,OAAIA,CAAAA,CAAUrB,EACL,IAAA,CAAK,MAAA,CAAA,CAAQqB,GAAW,CAAA,EAAKrB,CAAAA,CAAWqB,EAAUrB,CAAQ,CAAA,CAE5D,IACT,CAEA,IAAA,EAAmB,CACjB,YAAK,KAAA,CAAQ,IAAA,CAAK,MAAA,CAClB,IAAA,CAAK,MAAA,CAAS,CAAA,CACP,IACT,CAEA,MAAA,CAAOA,CAAAA,CAA8B,CACnC,GAAI,IAAA,CAAK,OAAO,UAAA,CAAaA,CAAAA,CAAU,CACrC,IAAMO,CAAAA,CAAS,IAAI,WAAA,CAAYP,CAAQ,CAAA,CACvC,IAAI,UAAA,CAAWO,CAAM,EAAE,GAAA,CAAI,IAAI,UAAA,CAAW,IAAA,CAAK,MAAM,CAAC,EACtD,IAAA,CAAK,MAAA,CAASA,CAAAA,CACd,IAAA,CAAK,IAAA,CAAO,IAAI,SAASA,CAAM,EACjC,CACA,OAAO,IACT,CAEA,IAAA,CAAKe,CAAAA,CAA4B,CAC/B,OAAA,IAAA,CAAK,MAAA,EAAUA,CAAAA,CACR,IACT,CAEA,UAAA,CAAWb,CAAAA,CAAwBH,CAAAA,CAA6B,CAC9D,IAAMI,EAAW,OAAOJ,CAAAA,CAAW,GAAA,CACnC,OAAII,CAAAA,CAAUJ,CAAAA,CAAS,KAAK,MAAA,CACvBA,CAAAA,CAASA,EAEV,OAAOG,CAAAA,EAAU,WAAUA,CAAAA,CAAQ,MAAA,CAAOA,CAAK,CAAA,CAAA,CAE/CH,CAAAA,CAAS,CAAA,CAAI,KAAK,MAAA,CAAO,UAAA,EAC3B,IAAA,CAAK,MAAA,CAAOA,CAAAA,CAAS,CAAC,EAGxB,IAAA,CAAK,IAAA,CAAK,WAAA,CAAYA,CAAAA,CAAQG,CAAAA,CAAO,IAAA,CAAK,YAAY,CAAA,CAElDC,CAAAA,GAAU,KAAK,MAAA,EAAU,CAAA,CAAA,CACtB,IACT,CAEA,SAAA,CAAUD,CAAAA,CAAwBH,CAAAA,CAA6B,CAC7D,OAAO,KAAK,UAAA,CAAWG,CAAAA,CAAOH,CAAM,CACtC,CAEA,SAAA,CAAUA,EAAyB,CACjC,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CAC/BI,EAAUJ,CAAAA,CAAS,IAAA,CAAK,OACvBA,CAAAA,CAASA,CAAAA,CAEd,IAAMG,CAAAA,CAAQ,IAAA,CAAK,IAAA,CAAK,WAAA,CAAYH,CAAAA,CAAQ,IAAA,CAAK,YAAY,CAAA,CAC7D,OAAII,CAAAA,GAAU,IAAA,CAAK,MAAA,EAAU,CAAA,CAAA,CACtBD,CACT,CAEA,QAAA,CAASH,CAAAA,CAAyB,CAChC,OAAO,IAAA,CAAK,UAAUA,CAAM,CAC9B,CAEA,WAAA,CAAYG,CAAAA,CAAwBH,EAA6B,CAC/D,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CACnC,OAAII,CAAAA,CAAUJ,CAAAA,CAAS,IAAA,CAAK,MAAA,CACvBA,CAAAA,CAASA,CAAAA,CAEV,OAAOG,CAAAA,EAAU,QAAA,GAAUA,CAAAA,CAAQ,MAAA,CAAOA,CAAK,CAAA,CAAA,CAE/CH,EAAS,CAAA,CAAI,IAAA,CAAK,MAAA,CAAO,UAAA,EAC3B,IAAA,CAAK,MAAA,CAAOA,EAAS,CAAC,CAAA,CAGxB,IAAA,CAAK,IAAA,CAAK,YAAA,CAAaA,CAAAA,CAAQG,EAAO,IAAA,CAAK,YAAY,CAAA,CAEnDC,CAAAA,GAAU,IAAA,CAAK,MAAA,EAAU,GACtB,IACT,CAEA,WAAA,CAAYD,CAAAA,CAAwBH,CAAAA,CAA6B,CAC/D,OAAO,IAAA,CAAK,WAAA,CAAYG,EAAOH,CAAM,CACvC,CAEA,UAAA,CAAWA,CAAAA,CAAyB,CAClC,IAAMI,CAAAA,CAAW,OAAOJ,EAAW,GAAA,CAC/BI,CAAAA,CAAUJ,CAAAA,CAAS,IAAA,CAAK,MAAA,CACvBA,CAAAA,CAASA,EAEd,IAAMG,CAAAA,CAAQ,IAAA,CAAK,IAAA,CAAK,YAAA,CAAaH,CAAAA,CAAQ,KAAK,YAAY,CAAA,CAC9D,OAAII,CAAAA,GAAU,IAAA,CAAK,QAAU,CAAA,CAAA,CACtBD,CACT,CAEA,UAAA,CAAWH,CAAAA,CAAyB,CAClC,OAAO,IAAA,CAAK,UAAA,CAAWA,CAAM,CAC/B,CAEA,QAAA,CAASiB,EAAsC,CAC7C,IAAMjB,CAAAA,CAAS,IAAA,CAAK,MAAA,CACdkB,CAAAA,CAAQ,KAAK,KAAA,CACnB,OAAI,CAACD,CAAAA,EAAajB,CAAAA,GAAW,GAAKkB,CAAAA,GAAU,IAAA,CAAK,MAAA,CAAO,UAAA,CAC/C,IAAA,CAAK,MAAA,CAEVlB,IAAWkB,CAAAA,CAAczC,EAAAA,CACtB,IAAA,CAAK,MAAA,CAAO,KAAA,CAAMuB,CAAAA,CAAQkB,CAAK,CACxC,CAEA,aAAA,CAAcD,CAAAA,CAAsC,CAClD,OAAO,KAAK,QAAA,CAASA,CAAS,CAChC,CAEA,aAAA,CAAcd,CAAAA,CAAeH,EAAsC,CACjE,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CAC/BI,EAAUJ,CAAAA,CAAS,IAAA,CAAK,MAAA,CACvBA,CAAAA,CAASA,CAAAA,CAEd,IAAMmB,EAAO,IAAA,CAAK,iBAAA,CAAkBhB,CAAK,CAAA,CAMzC,IALIH,CAAAA,CAASmB,EAAO,IAAA,CAAK,MAAA,CAAO,YAC9B,IAAA,CAAK,MAAA,CAAOnB,EAASmB,CAAI,CAAA,CAG3BhB,CAAAA,IAAW,CAAA,CACJA,CAAAA,EAAS,GAAA,EACd,KAAK,IAAA,CAAK,QAAA,CAASH,CAAAA,EAAAA,CAAWG,CAAAA,CAAQ,GAAA,CAAQ,GAAI,EAClDA,CAAAA,IAAW,CAAA,CAIb,OAFA,IAAA,CAAK,IAAA,CAAK,QAAA,CAASH,IAAUG,CAAK,CAAA,CAE9BC,GACF,IAAA,CAAK,MAAA,CAASJ,EACP,IAAA,EAEFmB,CACT,CAEA,YAAA,CAAanB,CAAAA,CAA6D,CACxE,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CAC/B,OAAOA,CAAAA,CAAW,MACpBA,CAAAA,CAAS,IAAA,CAAK,MAAA,CAAA,CAEhB,IAAIhB,CAAAA,CAAI,CAAA,CACJmB,EAAQ,CAAA,CACRhB,CAAAA,CACJ,GACEA,CAAAA,CAAI,IAAA,CAAK,KAAK,QAAA,CAASa,CAAAA,EAAQ,CAAA,CAC3BhB,CAAAA,CAAI,CAAA,GACNmB,CAAAA,EAAAA,CAAUhB,EAAI,GAAA,GAAU,CAAA,CAAIH,CAAAA,CAAAA,CAE9B,EAAEA,CAAAA,CAAAA,MAAAA,CACMG,CAAAA,CAAI,OAAU,CAAA,EAGxB,OAFAgB,CAAAA,EAAS,CAAA,CAELC,CAAAA,EACF,IAAA,CAAK,OAASJ,CAAAA,CACPG,CAAAA,EAEF,CAAE,KAAA,CAAAA,CAAAA,CAAO,MAAA,CAAQnB,CAAE,CAC5B,CAEA,iBAAA,CAAkBmB,CAAAA,CAAuB,CAEvC,OADAA,EAAQA,CAAAA,GAAU,CAAA,CACdA,CAAAA,CAAQ,GAAA,CAAe,CAAA,CAClBA,CAAAA,CAAQ,MAAgB,CAAA,CACxBA,CAAAA,CAAQ,CAAA,EAAK,EAAA,CAAW,CAAA,CACxBA,CAAAA,CAAQ,GAAK,EAAA,CAAW,CAAA,CACrB,CACd,CAEA,YAAA,CAAaiB,EAAapB,CAAAA,CAAsC,CAC9D,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,IAC/BqB,CAAAA,CAAgBjB,CAAAA,CAAW,IAAA,CAAK,MAAA,CAASJ,CAAAA,CAEvCsB,CAAAA,CAAU1C,IAAW,CAAE,MAAA,CAAOwC,CAAG,CAAA,CACjCN,CAAAA,CAAMQ,CAAAA,CAAQ,OACdC,CAAAA,CAAgB,IAAA,CAAK,kBAAkBT,CAAG,CAAA,CAYhD,OAVIO,CAAAA,CAAgBE,CAAAA,CAAgBT,CAAAA,CAAM,IAAA,CAAK,MAAA,CAAO,UAAA,EACpD,KAAK,MAAA,CAAOO,CAAAA,CAAgBE,CAAAA,CAAgBT,CAAG,CAAA,CAGjD,IAAA,CAAK,cAAcA,CAAAA,CAAKO,CAAa,CAAA,CACrCA,CAAAA,EAAiBE,CAAAA,CAEjB,IAAI,WAAW,IAAA,CAAK,MAAM,EAAE,GAAA,CAAID,CAAAA,CAASD,CAAa,CAAA,CACtDA,CAAAA,EAAiBP,CAAAA,CAEbV,CAAAA,EACF,IAAA,CAAK,MAAA,CAASiB,EACP,IAAA,EAEFA,CAAAA,EAAiBrB,CAAAA,EAAU,CAAA,CACpC,CAEA,WAAA,CAAYA,EAA8D,CACxE,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CAC/BI,EAAUJ,CAAAA,CAAS,IAAA,CAAK,OACvBA,CAAAA,CAASA,CAAAA,CAEd,IAAMwB,CAAAA,CAAQxB,CAAAA,CACRyB,CAAAA,CAAY,IAAA,CAAK,YAAA,CAAazB,CAAM,EACpC0B,CAAAA,CAAWD,CAAAA,CAAU,KAAA,CACrBE,CAAAA,CAAYF,CAAAA,CAAU,MAAA,CAE5BzB,GAAU2B,CAAAA,CAGV,IAAMP,CAAAA,CAAMlC,EAAAA,EAAW,CAAE,MAAA,CAAO,IAAI,UAAA,CAAW,IAAA,CAAK,OAAuBc,CAAAA,CAAQ0B,CAAQ,CAAC,CAAA,CAG5F,OAFA1B,CAAAA,EAAU0B,CAAAA,CAENtB,CAAAA,EACF,IAAA,CAAK,OAASJ,CAAAA,CACPoB,CAAAA,EAEA,CACL,MAAA,CAAQA,CAAAA,CACR,MAAA,CAAQpB,EAASwB,CACnB,CAEJ,CAEA,cAAA,CAAeR,CAAAA,CAAgBhB,CAAAA,CAA8D,CAC3F,IAAMI,CAAAA,CAAW,OAAOJ,CAAAA,CAAW,GAAA,CAC/BI,EAAUJ,CAAAA,CAAS,IAAA,CAAK,MAAA,CACvBA,CAAAA,CAASA,CAAAA,CAMd,IAAMoB,EAAMlC,EAAAA,EAAW,CAAE,MAAA,CAAO,IAAI,UAAA,CAAW,IAAA,CAAK,OAAuBc,CAAAA,CAAQgB,CAAM,CAAC,CAAA,CAE1F,OAAIZ,CAAAA,EACF,KAAK,MAAA,EAAUY,CAAAA,CACRI,GAEA,CACL,MAAA,CAAQA,EACR,MAAA,CAAAJ,CACF,CAEJ,CACF,CAAA,CCzpBO,IAAMY,EAAS,CAqBpB,KAAA,CAAO,CACL,uBAAA,CACA,0BAAA,CACA,8BAAA,CACA,yBACA,4BACF,CAAA,CAMA,SAAA,CAAW,CACT,uBAAA,CACA,4BAAA,CACA,yBACA,4BAAA,CACA,wBACF,CAAA,CAcA,cAAA,CAAgB,CACd,SAAA,CAAW,CAAC,uBAAA,CAAyB,wBAAwB,CAC/D,CAAA,CAaA,SAAA,CAAW,YAAA,CAKX,SAAU,kEAAA,CAKV,cAAA,CAAgB,KAAA,CAMhB,OAAA,CAAS,GAAA,CAQT,gBAAA,CAAkB,KASlB,KAAA,CAAO,CAAA,CAyBP,WAAY,CACV,eAAA,CAAiB,KACjB,sBAAA,CAAwB,GAAA,CACxB,qBAAA,CAAuB,CAAA,CACvB,KAAA,CAAO,KAAA,CACP,kBAAmB,GAAA,CACnB,gBAAA,CAAkB,CAAA,CAClB,mBAAA,CAAqB,EAAA,CACrB,qBAAA,CAAuB,GAWvB,iBAAA,CAAmB,CACrB,CACF,CAAA,CA8BaC,EAAAA,CAAsD,CACjE,0BACA,0BAAA,CACA,iBAAA,CACA,wBACA,oBAAA,CACA,qBAAA,CACA,uBACA,yBAAA,CACA,4BAAA,CACA,2BAAA,CACA,6CAAA,CACA,iCACF,CAAA,CAWWC,GAA6C,IAAA,CAY3CC,EAAAA,CAAqBC,CAAAA,EAA6C,CAC7E,GAAIA,CAAAA,GAAS,KAAM,CACjBF,EAAAA,CAAiB,IAAA,CACjB,MACF,CACA,GAAI,CAACE,CAAAA,EAAQ,OAAOA,GAAS,QAAA,CAAU,OACvC,IAAMC,CAAAA,CAAM,OAAOD,CAAAA,CAAK,GAAA,EAAQ,QAAA,CAAWA,CAAAA,CAAK,IAAI,IAAA,EAAK,CAAI,EAAA,CAC7D,GAAI,CAAC,eAAA,CAAgB,KAAKC,CAAG,CAAA,CAAG,OAChC,IAAMC,CAAAA,CAAkC,GACxC,GAAIF,CAAAA,CAAK,SAAW,OAAOA,CAAAA,CAAK,SAAY,QAAA,CAC1C,IAAA,GAAW,CAACG,CAAAA,CAAGC,CAAC,CAAA,GAAK,OAAO,OAAA,CAAQJ,CAAAA,CAAK,OAAO,CAAA,CAC1C,OAAOI,CAAAA,EAAM,UAAYA,CAAAA,EAAK,CAAC,uBAAA,CAAwB,IAAA,CAAKA,CAAC,CAAA,EAAK,CAAC,uBAAA,CAAwB,IAAA,CAAKD,CAAC,CAAA,GACnGD,CAAAA,CAAQC,CAAC,CAAA,CAAIC,CAAAA,CAAAA,CAInB,IAAMC,CAAAA,CACJ,OAAOL,CAAAA,CAAK,WAAc,QAAA,EAAY,MAAA,CAAO,QAAA,CAASA,CAAAA,CAAK,SAAS,CAAA,EAAKA,EAAK,SAAA,CAAY,CAAA,CACtFA,CAAAA,CAAK,SAAA,CACL,GAAA,CACAM,CAAAA,CACJN,EAAK,OAAA,GAAY,MAAA,CACb,CAAC,GAAGH,EAAgC,EACpC,KAAA,CAAM,OAAA,CAAQG,CAAAA,CAAK,OAAO,CAAA,CACxBA,CAAAA,CAAK,QAAQ,MAAA,CAAQO,CAAAA,EAAmB,OAAOA,CAAAA,EAAM,QAAA,EAAYA,CAAAA,CAAE,SAAS,GAAG,CAAC,CAAA,CAChF,EAAC,CAET,GAAID,EAAQ,MAAA,GAAW,CAAA,CAAG,OAC1B,IAAME,CAAAA,CAAM,CAACJ,CAAAA,CAAYK,CAAAA,GACvB,OAAOL,CAAAA,EAAM,QAAA,EAAY,MAAA,CAAO,SAASA,CAAC,CAAA,EAAKA,CAAAA,CAAI,CAAA,CAAIA,CAAAA,CAAIK,CAAAA,CAC7DX,GAAiB,CACf,GAAA,CAAAG,CAAAA,CACA,OAAA,CAAAC,CAAAA,CACA,SAAA,CAAAG,EACA,OAAA,CAAAC,CAAAA,CACA,gBAAA,CAAkB,IAAA,CAAK,KAAA,CAAME,CAAAA,CAAIR,EAAK,gBAAA,CAAkB,CAAC,CAAC,CAAA,CAC1D,UAAA,CAAYQ,CAAAA,CAAIR,EAAK,UAAA,CAAY,GAAM,CAAA,CACvC,SAAA,CAAW,IAAI,GAAA,CAAIM,CAAO,CAC5B,EACF,CAAA,CAoBMI,EAAAA,CAAoBC,CAAAA,EACxB,KAAA,CAAM,QAAQA,CAAK,CAAA,CACf,CACE,GAAG,IAAI,IACLA,CAAAA,CACG,MAAA,CAAQC,CAAAA,EAAmB,OAAOA,CAAAA,EAAM,QAAQ,EAKhD,GAAA,CAAKA,CAAAA,EAAMA,CAAAA,CAAE,IAAA,EAAK,CAAE,OAAA,CAAQ,OAAQ,EAAE,CAAC,CAAA,CACvC,MAAA,CAAQA,CAAAA,EAAMA,CAAAA,CAAE,OAAS,CAAA,EAAK,gBAAA,CAAiB,KAAKA,CAAC,CAAC,CAC3D,CACF,CAAA,CACA,EAAC,CAEMC,EAAAA,CAAYF,CAAAA,EAA0B,CACjD,IAAMG,CAAAA,CAAaJ,EAAAA,CAAiBC,CAAK,CAAA,CACpCG,CAAAA,CAAW,SAChBlB,CAAAA,CAAO,KAAA,CAAQkB,CAAAA,EACjB,CAAA,CAYaC,EAAAA,CAAgBJ,CAAAA,EAA0B,CACrD,IAAMK,CAAAA,CAAQN,GAAiBC,CAAK,CAAA,CAC/BK,EAAM,MAAA,GACXpB,CAAAA,CAAO,SAAA,CAAYoB,CAAAA,EACrB,CAAA,CAUaC,EAAAA,CACXC,GACS,CACT,GAAI,CAACA,CAAAA,EAAO,OAAOA,CAAAA,EAAQ,SAAU,OACrC,IAAMjE,CAAAA,CAA8C,CAAE,GAAG2C,CAAAA,CAAO,cAAe,CAAA,CAC/E,IAAA,GAAW,CAACuB,CAAAA,CAAKC,CAAI,IAAK,MAAA,CAAO,OAAA,CAAQF,CAAG,CAAA,CAAG,CAC7C,IAAMF,EAAQN,EAAAA,CAAiBU,CAAI,CAAA,CAC/BJ,CAAAA,CAAM,MAAA,CACR/D,CAAAA,CAAKkE,CAAiB,CAAA,CAAIH,CAAAA,CAE1B,OAAO/D,CAAAA,CAAKkE,CAAiB,EAEjC,CACAvB,CAAAA,CAAO,cAAA,CAAiB3C,EAC1B,CAAA,CASaoE,EAAAA,CAAgBC,GAAqB,CAGhD,GAAI,OAAOA,CAAAA,EAAO,QAAA,CAAU,OAC5B,IAAMnD,CAAAA,CAAQmD,CAAAA,CAAG,IAAA,EAAK,CAKlB,CAACnD,CAAAA,EAAS,wBAAwB,IAAA,CAAKA,CAAK,CAAA,GAChDyB,CAAAA,CAAO,SAAA,CAAYzB,CAAAA,EACrB,EAaaoD,EAAAA,CAAiBvB,CAAAA,EAA2C,CACvE,GAAI,CAACA,GAAQ,OAAOA,CAAAA,EAAS,QAAA,CAAU,OACvC,IAAMwB,CAAAA,CAAI5B,EAAO,UAAA,CACX6B,CAAAA,CAAQrB,CAAAA,EAA6B,OAAOA,CAAAA,EAAM,SAAA,CAClDI,EAAOJ,CAAAA,EACX,OAAOA,CAAAA,EAAM,QAAA,EAAY,MAAA,CAAO,QAAA,CAASA,CAAC,CAAA,EAAKA,CAAAA,CAAI,EACjDqB,CAAAA,CAAKzB,CAAAA,CAAK,eAAe,CAAA,GAAGwB,CAAAA,CAAE,eAAA,CAAkBxB,CAAAA,CAAK,eAAA,CAAA,CAMrDQ,CAAAA,CAAIR,EAAK,sBAAsB,CAAA,GACjCwB,CAAAA,CAAE,sBAAA,CAAyB,IAAA,CAAK,GAAA,CAAIxB,EAAK,sBAAA,CAAwB,GAAK,CAAA,CAAA,CAEpEQ,CAAAA,CAAIR,CAAAA,CAAK,qBAAqB,IAAGwB,CAAAA,CAAE,qBAAA,CAAwBxB,CAAAA,CAAK,qBAAA,CAAA,CAChEyB,CAAAA,CAAKzB,CAAAA,CAAK,KAAK,CAAA,GAAGwB,CAAAA,CAAE,KAAA,CAAQxB,CAAAA,CAAK,KAAA,CAAA,CACjCQ,CAAAA,CAAIR,EAAK,iBAAiB,CAAA,GAAGwB,CAAAA,CAAE,iBAAA,CAAoBxB,CAAAA,CAAK,iBAAA,CAAA,CACxDQ,EAAIR,CAAAA,CAAK,gBAAgB,CAAA,GAAGwB,CAAAA,CAAE,gBAAA,CAAmBxB,CAAAA,CAAK,kBACtDQ,CAAAA,CAAIR,CAAAA,CAAK,mBAAmB,CAAA,GAAGwB,CAAAA,CAAE,oBAAsBxB,CAAAA,CAAK,mBAAA,CAAA,CAI5DQ,CAAAA,CAAIR,CAAAA,CAAK,qBAAqB,CAAA,GAChCwB,EAAE,qBAAA,CAAwB,IAAA,CAAK,GAAA,CAAIxB,CAAAA,CAAK,qBAAA,CAAuB,CAAC,GAG9DQ,CAAAA,CAAIR,CAAAA,CAAK,iBAAiB,CAAA,GAC5BwB,CAAAA,CAAE,iBAAA,CAAoB,KAAK,GAAA,CAAIxB,CAAAA,CAAK,kBAAmB,CAAC,CAAA,EAE5D,EC9YO,IAAM0B,EAAAA,CAAN,MAAMC,CAAU,CACrB,IAAA,CACA,SACQ,UAAA,CAQR,WAAA,CAAYC,EAAkBC,CAAAA,CAAkBC,CAAAA,CAAsB,CACpE,IAAA,CAAK,IAAA,CAAOF,CAAAA,CACZ,IAAA,CAAK,QAAA,CAAWC,CAAAA,CAChB,KAAK,UAAA,CAAaC,CAAAA,EAAc,KAClC,CAQA,OAAO,IAAA,CAAKC,EAAgB,CAC1B,GAAI,OAAOA,CAAAA,EAAW,QAAA,CAAU,CAC9B,IAAMC,CAAAA,CAAOC,mBAAAA,CAAWF,CAAM,CAAA,CAC1BF,CAAAA,CAAW,SAASK,mBAAAA,CAAWF,CAAAA,CAAK,QAAA,CAAS,CAAA,CAAG,CAAC,CAAC,EAAG,EAAE,CAAA,CAAI,EAAA,CAC3DF,CAAAA,CAAa,IAAA,CAGbD,CAAAA,CAAW,IACbC,CAAAA,CAAa,KAAA,CACbD,CAAAA,CAAWA,CAAAA,CAAW,CAAA,CAAA,CAExB,IAAMD,EAAOI,CAAAA,CAAK,QAAA,CAAS,CAAC,CAAA,CAC5B,OAAO,IAAIL,CAAAA,CAAUC,CAAAA,CAAMC,CAAAA,CAAUC,CAAU,CACjD,CAAA,WACQ,IAAI,KAAA,CAAM,0BAA0B,CAE9C,CAMA,QAAA,EAAW,CACT,IAAM7D,CAAAA,CAAS,IAAI,UAAA,CAAW,EAAE,CAAA,CAAE,KAAK,CAAC,CAAA,CACxC,OAAI,IAAA,CAAK,UAAA,CACPA,EAAO,CAAC,CAAA,CAAK,IAAA,CAAK,QAAA,CAAW,EAAA,CAAM,GAAA,CAEnCA,EAAO,CAAC,CAAA,CAAK,IAAA,CAAK,QAAA,CAAW,EAAA,CAAM,GAAA,CAErCA,EAAO,GAAA,CAAI,IAAA,CAAK,IAAA,CAAM,CAAC,CAAA,CAChBA,CACT,CAMA,cAAA,EAAiB,CACf,OAAOiE,mBAAAA,CAAW,IAAA,CAAK,UAAU,CACnC,CAQA,QAAA,EAAW,CACT,OAAO,KAAK,cAAA,EACd,CAQA,YAAA,CAAaC,CAAAA,CAAyC,CACpD,GACGA,CAAAA,YAAmB,UAAA,EAAcA,CAAAA,CAAQ,MAAA,GAAW,EAAA,EACpD,OAAOA,GAAY,QAAA,EAAYA,CAAAA,CAAQ,MAAA,GAAW,EAAA,CAEnD,MAAM,IAAI,MAAM,yCAAyC,CAAA,CAEvD,OAAOA,CAAAA,EAAY,QAAA,GACrBA,CAAAA,CAAUF,oBAAWE,CAAO,CAAA,CAAA,CAE9B,IAAMC,CAAAA,CAAMC,sBAAAA,CAAU,SAAA,CAAU,UAAU,IAAA,CAAK,IAAA,CAAM,SAAS,CAAA,CACxDL,CAAAA,CAAO,IAAIK,uBAAU,SAAA,CAAUD,CAAAA,CAAI,EAAGA,CAAAA,CAAI,CAAA,CAAG,KAAK,QAAQ,CAAA,CAChE,OAAO,IAAIE,CAAAA,CAAUN,CAAAA,CAAK,iBAAiBG,CAAO,CAAA,CAAE,OAAA,EAAS,CAC/D,CACF,EC5FO,IAAMG,CAAAA,CAAN,MAAMC,CAAU,CACrB,GAAA,CACA,OAOA,WAAA,CAAYC,CAAAA,CAAiBC,EAAiB,CAC5C,IAAA,CAAK,IAAMD,CAAAA,CAGX,IAAA,CAAK,MAAA,CAASC,CAAAA,EAAU7C,CAAAA,CAAO,eACjC,CAUA,OAAO,UAAA,CAAW8C,CAAAA,CAAwB,CACxC,IAAMC,CAAAA,CAAiB/C,EAAO,cAAA,CAC9B,GAAI,OAAO8C,CAAAA,EAAQ,QAAA,EAAYA,CAAAA,CAAI,QAAUC,CAAAA,CAAe,MAAA,CAC1D,MAAM,IAAI,KAAA,CAAM,oBAAoB,CAAA,CAEtC,IAAMF,CAAAA,CAASC,CAAAA,CAAI,KAAA,CAAM,CAAA,CAAGC,EAAe,MAAM,CAAA,CACjD,GAAIF,CAAAA,GAAWE,CAAAA,CACb,MAAM,IAAI,KAAA,CAAM,CAAA,2BAAA,EAA8BA,CAAc,CAAA,CAAE,CAAA,CAEhE,IAAI1E,EACJ,GAAI,CACFA,EAAS2E,mBAAAA,CAAK,MAAA,CAAOF,EAAI,KAAA,CAAMC,CAAAA,CAAe,MAAM,CAAC,EACvD,CAAA,KAAQ,CACN,MAAM,IAAI,KAAA,CAAM,6BAA6B,CAC/C,CAEA,GAAI1E,CAAAA,CAAO,MAAA,GAAW,EAAA,CACpB,MAAM,IAAI,KAAA,CAAM,2BAA2B,CAAA,CAE7C,IAAMuE,EAAMvE,CAAAA,CAAO,QAAA,CAAS,EAAG,EAAE,CAAA,CAC3B4E,CAAAA,CAAW5E,CAAAA,CAAO,QAAA,CAAS,EAAA,CAAI,EAAE,CAAA,CACjC6E,CAAAA,CAAmBC,mBAAAA,CAAUP,CAAG,CAAA,CAAE,QAAA,CAAS,EAAG,CAAC,CAAA,CACrD,GAAI,CAACQ,EAAAA,CAAkBH,CAAAA,CAAUC,CAAgB,CAAA,CAC/C,MAAM,IAAI,KAAA,CAAM,8BAA8B,EAEhD,GAAI,CACFT,sBAAAA,CAAU,KAAA,CAAM,SAAA,CAAUG,CAAG,EAC/B,CAAA,KAAQ,CACN,MAAM,IAAI,KAAA,CAAM,oBAAoB,CACtC,CACA,OAAO,IAAID,CAAAA,CAAUC,CAAAA,CAAKC,CAAM,CAClC,CAOA,OAAO,KAAKtE,CAAAA,CAAsC,CAChD,OAAIA,CAAAA,YAAiBoE,CAAAA,CACZpE,CAAAA,CAEAoE,CAAAA,CAAU,UAAA,CAAWpE,CAAe,CAE/C,CAQA,MAAA,CAAOgE,CAAAA,CAAqBc,CAAAA,CAAwC,CAClE,OAAI,OAAOA,CAAAA,EAAc,QAAA,GACvBA,CAAAA,CAAYvB,EAAAA,CAAU,IAAA,CAAKuB,CAAS,GAE/BZ,sBAAAA,CAAU,MAAA,CAAOY,CAAAA,CAAU,IAAA,CAAMd,CAAAA,CAAS,IAAA,CAAK,IAAK,CACzD,OAAA,CAAS,KAAA,CACT,MAAA,CAAQ,SACV,CAAC,CACH,CAMA,QAAA,EAAmB,CACjB,OAAOe,EAAAA,CAAa,IAAA,CAAK,IAAK,IAAA,CAAK,MAAM,CAC3C,CAMA,MAAA,EAAiB,CACf,OAAO,IAAA,CAAK,QAAA,EACd,CAMA,OAAA,EAAkB,CAChB,OAAO,CAAA,WAAA,EAAc,IAAA,CAAK,QAAA,EAAU,CAAA,CACtC,CACF,CAAA,CAEMA,EAAAA,CAAe,CAACV,CAAAA,CAAiBC,CAAAA,GAA2B,CAChE,IAAMI,CAAAA,CAAWE,mBAAAA,CAAUP,CAAG,CAAA,CAC9B,OAAOC,CAAAA,CAASG,oBAAK,MAAA,CAAO,IAAI,WAAW,CAAC,GAAGJ,EAAK,GAAGK,CAAAA,CAAS,QAAA,CAAS,CAAA,CAAG,CAAC,CAAC,CAAC,CAAC,CAClF,CAAA,CAEMG,EAAAA,CAAoB,CAACG,CAAAA,CAAehG,IAA2B,CACnE,GAAIgG,CAAAA,CAAE,UAAA,GAAehG,CAAAA,CAAE,UAAA,CAAY,OAAO,MAAA,CAC1C,IAAA,IAASJ,EAAI,CAAA,CAAGA,CAAAA,CAAIoG,EAAE,UAAA,CAAYpG,CAAAA,EAAAA,CAChC,GAAIoG,CAAAA,CAAEpG,CAAC,CAAA,GAAMI,EAAEJ,CAAC,CAAA,CAAG,OAAO,MAAA,CAE5B,OAAO,KACT,EC9HO,IAAMqG,EAAAA,CAAN,MAAMC,CAAM,CACjB,MAAA,CACA,OAEA,WAAA,CAAYC,CAAAA,CAAgBC,EAAgB,CAC1C,IAAA,CAAK,OAASD,CAAAA,CACd,IAAA,CAAK,MAAA,CAASC,CAAAA,GAAW,MAAA,CAAS,OAAA,CAAUA,IAAW,KAAA,CAAQ,KAAA,CAAQA,EACzE,CAGA,OAAO,UAAA,CAAWxB,EAAgByB,CAAAA,CAAgC,IAAA,CAAa,CAC7E,GAAM,CAACC,CAAAA,CAAcF,CAAM,CAAA,CAAIxB,CAAAA,CAAO,MAAM,GAAG,CAAA,CAC/C,GAAI,CAAC,OAAA,CAAS,OAAA,CAAS,KAAA,CAAO,OAAA,CAAS,KAAA,CAAO,OAAQ,KAAK,CAAA,CAAE,OAAA,CAAQwB,CAAM,CAAA,GAAM,EAAA,CAC/E,MAAM,IAAI,KAAA,CAAM,CAAA,sBAAA,EAAyBA,CAAM,CAAA,CAAE,CAAA,CAEnD,GAAIC,CAAAA,EAAkBD,CAAAA,GAAWC,EAC/B,MAAM,IAAI,MAAM,CAAA,gCAAA,EAAmCA,CAAc,CAAA,MAAA,EAASD,CAAM,CAAA,CAAE,CAAA,CAEpF,IAAMD,CAAAA,CAAS,MAAA,CAAO,UAAA,CAAWG,CAAY,CAAA,CAC7C,GAAI,CAAC,MAAA,CAAO,QAAA,CAASH,CAAM,CAAA,CACzB,MAAM,IAAI,MAAM,CAAA,sBAAA,EAAyBG,CAAY,EAAE,CAAA,CAEzD,OAAO,IAAIJ,CAAAA,CAAMC,CAAAA,CAAQC,CAAM,CACjC,CAOA,OAAO,KAAKpF,CAAAA,CAAgCoF,CAAAA,CAA+B,CACzE,GAAIpF,CAAAA,YAAiBkF,CAAAA,CAAO,CAC1B,GAAIE,CAAAA,EAAUpF,CAAAA,CAAM,MAAA,GAAWoF,CAAAA,CAC7B,MAAM,IAAI,KAAA,CAAM,CAAA,gCAAA,EAAmCA,CAAM,CAAA,MAAA,EAASpF,CAAAA,CAAM,MAAM,EAAE,CAAA,CAElF,OAAOA,CACT,CAAA,KAAO,CAAA,GAAI,OAAOA,GAAU,QAAA,EAAY,MAAA,CAAO,QAAA,CAASA,CAAK,CAAA,CAC3D,OAAO,IAAIkF,CAAAA,CAAMlF,CAAAA,CAAOoF,CAAAA,EAAU,OAAO,CAAA,CACpC,GAAI,OAAOpF,CAAAA,EAAU,QAAA,CAC1B,OAAOkF,CAAAA,CAAM,UAAA,CAAWlF,EAAOoF,CAAM,CAAA,CAErC,MAAM,IAAI,KAAA,CAAM,CAAA,eAAA,EAAkB,OAAOpF,CAAK,CAAC,CAAA,CAAA,CAAG,CAAA,CAEtD,CAKA,YAAA,EAAe,CACb,OAAQ,IAAA,CAAK,MAAA,EACX,KAAK,OAAA,CACL,KAAK,KAAA,CACL,KAAK,QACL,KAAK,KAAA,CACL,KAAK,KAAA,CACL,KAAK,MAAA,CACH,OAAO,CAAA,CACT,KAAK,QACH,OAAO,CAAA,CACT,QACE,OAAO,CACX,CACF,CAGA,QAAA,EAAW,CACT,OAAO,CAAA,EAAG,IAAA,CAAK,MAAA,CAAO,QAAQ,IAAA,CAAK,YAAA,EAAc,CAAC,CAAA,CAAA,EAAI,KAAK,MAAM,CAAA,CACnE,CAEA,MAAA,EAAS,CACP,OAAO,KAAK,QAAA,EACd,CACF,CAAA,CCvEO,IAAMuF,EAAAA,CAAN,MAAMC,CAAU,CACrB,MAAA,CAEA,OAAO,IAAA,CAAKxF,CAAAA,CAAwC,CAClD,OAAIA,CAAAA,YAAiBwF,CAAAA,CACZxF,CAAAA,CACEA,CAAAA,YAAiB,UAAA,CACnB,IAAIwF,CAAAA,CAAUxF,CAAK,CAAA,CACjB,OAAOA,CAAAA,EAAU,QAAA,CACnB,IAAIwF,CAAAA,CAAU1B,mBAAAA,CAAW9D,CAAK,CAAC,CAAA,CAE/B,IAAIwF,EAAU,IAAI,UAAA,CAAWxF,CAAK,CAAC,CAE9C,CAEA,WAAA,CAAYF,CAAAA,CAAoB,CAC9B,IAAA,CAAK,MAAA,CAASA,EAChB,CAEA,QAAA,EAAW,CACT,OAAOiE,mBAAAA,CAAW,IAAA,CAAK,MAAM,CAC/B,CAEA,MAAA,EAAS,CACP,OAAO,IAAA,CAAK,QAAA,EACd,CACF,CAAA,CCtBA,IAAM0B,CAAAA,CAAgB,CACpB,KAAM,CAAA,CACN,OAAA,CAAS,CAAA,CACT,QAAA,CAAU,CAAA,CACV,mBAAA,CAAqB,EACrB,gBAAA,CAAkB,CAAA,CAClB,kBAAA,CAAoB,CAAA,CACpB,kBAAA,CAAoB,CAAA,CACpB,aAAc,CAAA,CACd,OAAA,CAAS,CAAA,CACT,cAAA,CAAgB,CAAA,CAChB,cAAA,CAAgB,GAChB,cAAA,CAAgB,EAAA,CAChB,qBAAsB,EAAA,CACtB,qBAAA,CAAuB,GAEvB,MAAA,CAAQ,EAAA,CAER,cAAA,CAAgB,EAAA,CAChB,WAAA,CAAa,EAAA,CACb,gBAAiB,EAAA,CACjB,0BAAA,CAA4B,EAAA,CAC5B,mBAAA,CAAqB,EAAA,CACrB,aAAA,CAAe,GACf,sBAAA,CAAwB,EAAA,CACxB,wBAAA,CAA0B,EAAA,CAC1B,eAAA,CAAiB,EAAA,CACjB,wBAAyB,EAAA,CACzB,eAAA,CAAiB,EAAA,CACjB,cAAA,CAAgB,EAAA,CAChB,cAAA,CAAgB,GAEhB,cAAA,CAAgB,EAAA,CAChB,mBAAA,CAAqB,EAAA,CACrB,qBAAA,CAAuB,EAAA,CACvB,6BAA8B,EAAA,CAE9B,qBAAA,CAAuB,EAAA,CACvB,aAAA,CAAe,EAAA,CACf,iBAAA,CAAmB,GACnB,oBAAA,CAAsB,EAAA,CACtB,uBAAA,CAAyB,EAAA,CACzB,8BAAA,CAAgC,EAAA,CAChC,uBAAwB,EAAA,CACxB,eAAA,CAAiB,GACjB,eAAA,CAAiB,EAAA,CACjB,sBAAuB,EAAA,CACvB,eAAA,CAAiB,EAAA,CACjB,eAAA,CAAiB,EAAA,CACjB,sBAAA,CAAwB,GACxB,kBAAA,CAAoB,EACtB,CAAA,CAIMC,EAAAA,CAAiB,IAAM,CAC3B,MAAM,IAAI,KAAA,CAAM,4BAA4B,CAC9C,CAAA,CACMC,CAAAA,CAAmB,CAAC7F,CAAAA,CAAoB2D,CAAAA,GAAiB,CAC7D3D,CAAAA,CAAO,YAAA,CAAa2D,CAAI,EAC1B,CAAA,CAEMmC,EAAAA,CAAkB,CAAC9F,CAAAA,CAAoB2D,CAAAA,GAAiB,CAC5D3D,CAAAA,CAAO,UAAA,CAAW2D,CAAI,EACxB,CAAA,CAEMoC,EAAAA,CAAkB,CAAC/F,CAAAA,CAAoB2D,CAAAA,GAA0B,CACrE3D,CAAAA,CAAO,UAAA,CAAW2D,CAAI,EACxB,CAAA,CAEMqC,EAAAA,CAAkB,CAAChG,CAAAA,CAAoB2D,CAAAA,GAAiB,CAC5D3D,CAAAA,CAAO,UAAA,CAAW2D,CAAI,EACxB,CAAA,CAEMsC,EAAAA,CAAmB,CAACjG,CAAAA,CAAoB2D,CAAAA,GAAiB,CAC7D3D,CAAAA,CAAO,WAAA,CAAY2D,CAAI,EACzB,CAAA,CAEMuC,CAAAA,CAAmB,CAAClG,CAAAA,CAAoB2D,CAAAA,GAAiB,CAC7D3D,EAAO,WAAA,CAAY2D,CAAI,EACzB,CAAA,CAEMwC,EAAAA,CAAmB,CAACnG,EAAoB2D,CAAAA,GAA0B,CACtE3D,CAAAA,CAAO,WAAA,CAAY2D,CAAI,EACzB,EAEMyC,EAAAA,CAAoB,CAACpG,CAAAA,CAAoB2D,CAAAA,GAA2B,CACxE3D,CAAAA,CAAO,UAAU2D,CAAAA,CAAO,CAAA,CAAI,CAAC,EAC/B,CAAA,CAEM0C,EAAAA,CAA2BC,GAgCxB,CAACtG,CAAAA,CAAoB2D,IAAc,CACxC,GAAM,CAAC4C,CAAAA,CAAIC,CAAI,CAAA,CAAI7C,CAAAA,CACnB3D,CAAAA,CAAO,aAAA,CAAcuG,CAAE,CAAA,CACvBD,CAAAA,CAAgBC,CAAE,CAAA,CAAEvG,CAAAA,CAAQwG,CAAI,EAClC,CAAA,CAQIC,CAAAA,CAAkB,CAACzG,CAAAA,CAAoB2D,CAAAA,GAAyB,CACpE,IAAM+C,CAAAA,CAAQvB,EAAAA,CAAM,KAAKxB,CAAI,CAAA,CACvBgD,EAAYD,CAAAA,CAAM,YAAA,EAAa,CACrC1G,CAAAA,CAAO,UAAA,CAAW,IAAA,CAAK,MAAM0G,CAAAA,CAAM,MAAA,CAAS,IAAA,CAAK,GAAA,CAAI,EAAA,CAAIC,CAAS,CAAC,CAAC,CAAA,CACpE3G,CAAAA,CAAO,UAAA,CAAW2G,CAAS,CAAA,CAC3B,QAAS7H,CAAAA,CAAI,CAAA,CAAGA,EAAI,CAAA,CAAGA,CAAAA,EAAAA,CACrBkB,EAAO,UAAA,CAAW0G,CAAAA,CAAM,MAAA,CAAO,UAAA,CAAW5H,CAAC,CAAA,EAAK,CAAC,EAErD,CAAA,CAEM8H,EAAAA,CAAiB,CAAC5G,CAAAA,CAAoB2D,CAAAA,GAAiB,CAC3D3D,CAAAA,CAAO,WAAA,CAAY,IAAA,CAAK,KAAA,CAAM,IAAI,IAAA,CAAK2D,EAAO,GAAG,CAAA,CAAE,OAAA,EAAQ,CAAI,GAAI,CAAC,EACtE,CAAA,CAEMkD,EAAAA,CAAsB,CAAC7G,CAAAA,CAAoB2D,CAAAA,GAA6B,CAE1EA,IAAS,IAAA,EACR,OAAOA,CAAAA,EAAS,QAAA,EAAYA,CAAAA,CAAK,KAAA,CAAM,GAAG,CAAA,GAAM,yCAAA,CAEjD3D,CAAAA,CAAO,MAAA,CAAO,IAAI,UAAA,CAAW,EAAE,CAAA,CAAE,IAAA,CAAK,CAAC,CAAC,CAAA,CAExCA,EAAO,MAAA,CAAOqE,CAAAA,CAAU,IAAA,CAAKV,CAAI,CAAA,CAAE,GAAG,EAE1C,CAAA,CAEMmD,EAAAA,CAAmB,CAAC5F,CAAAA,CAAsB,IAAA,GACvC,CAAClB,EAAoB2D,CAAAA,GAA0C,CACpEA,CAAAA,CAAO8B,EAAAA,CAAU,IAAA,CAAK9B,CAAI,EAC1B,IAAM9C,CAAAA,CAAM8C,EAAK,MAAA,CAAO,MAAA,CACxB,GAAIzC,CAAAA,CAAAA,CACF,GAAIL,CAAAA,GAAQK,CAAAA,CACV,MAAM,IAAI,MAAM,CAAA,qCAAA,EAAwCA,CAAI,CAAA,YAAA,EAAeL,CAAG,CAAA,CAAE,CAAA,CAAA,KAGlFb,EAAO,aAAA,CAAca,CAAG,CAAA,CAE1Bb,CAAAA,CAAO,MAAA,CAAO2D,CAAAA,CAAK,MAAM,EAC3B,CAAA,CAGIoD,GAA2BD,EAAAA,EAAiB,CAE5CE,GAAoB,CAACC,CAAAA,CAAoBC,CAAAA,GACtC,CAAClH,CAAAA,CAAoB2D,CAAAA,GAAc,CACxC3D,CAAAA,CAAO,aAAA,CAAc2D,CAAAA,CAAK,MAAM,CAAA,CAChC,IAAA,GAAW,CAACY,CAAAA,CAAKrE,CAAK,CAAA,GAAKyD,CAAAA,CACzBsD,CAAAA,CAAcjH,CAAAA,CAAQuE,CAAG,CAAA,CACzB2C,CAAAA,CAAgBlH,EAAQE,CAAK,EAEjC,EAGIiH,CAAAA,CAAmBC,CAAAA,EAChB,CAACpH,CAAAA,CAAoB2D,CAAAA,GAAgB,CAC1C3D,EAAO,aAAA,CAAc2D,CAAAA,CAAK,MAAM,CAAA,CAChC,IAAA,IAAW6C,CAAAA,IAAQ7C,EACjByD,CAAAA,CAAepH,CAAAA,CAAQwG,CAAI,EAE/B,CAAA,CAGIa,EAAAA,CAAoBC,GACjB,CAACtH,CAAAA,CAAoB2D,IAAc,CACxC,IAAA,GAAW,CAACY,CAAAA,CAAKgD,CAAU,CAAA,GAAKD,CAAAA,CAC9B,GAAI,CACFC,EAAWvH,CAAAA,CAAQ2D,CAAAA,CAAKY,CAAG,CAAC,EAC9B,CAAA,MAASiD,EAAY,CACnB,MAAAA,CAAAA,CAAM,OAAA,CAAU,CAAA,EAAGjD,CAAG,KAAKiD,CAAAA,CAAM,OAAO,GAClCA,CACR,CAEJ,EAGIC,EAAAA,CAAsBP,CAAAA,EACnB,CAAClH,CAAAA,CAAoB2D,CAAAA,GAA0B,CAChDA,IAAS,MAAA,EACX3D,CAAAA,CAAO,SAAA,CAAU,CAAC,CAAA,CAClBkH,CAAAA,CAAgBlH,EAAQ2D,CAAI,CAAA,EAE5B3D,CAAAA,CAAO,SAAA,CAAU,CAAC,EAEtB,EAGI0H,CAAAA,CAAsBL,EAAAA,CAAiB,CAC3C,CAAC,kBAAA,CAAoBnB,CAAgB,CAAA,CACrC,CAAC,eAAA,CAAiBc,EAAAA,CAAkBnB,CAAAA,CAAkBI,EAAgB,CAAC,CAAA,CACvE,CAAC,WAAA,CAAae,EAAAA,CAAkBH,EAAAA,CAAqBZ,EAAgB,CAAC,CACxE,CAAC,CAAA,CAEK0B,EAAAA,CAAwBN,EAAAA,CAAiB,CAC7C,CAAC,SAAA,CAAWxB,CAAgB,CAAA,CAC5B,CAAC,QAAA,CAAUI,EAAgB,CAC7B,CAAC,CAAA,CAEK2B,EAAAA,CAAkBP,EAAAA,CAAiB,CACvC,CAAC,OAAQZ,CAAe,CAAA,CACxB,CAAC,OAAA,CAASA,CAAe,CAC3B,CAAC,CAAA,CAWKoB,EAAAA,CAA4BR,EAAAA,CAAiB,CACjD,CAAC,sBAAA,CAAwBZ,CAAe,CAAA,CACxC,CAAC,qBAAsBP,CAAgB,CAAA,CACvC,CAAC,mBAAA,CAAqBD,EAAgB,CACxC,CAAC,CAAA,CAEK6B,CAAAA,CAA0B,CAACC,CAAAA,CAA0BC,CAAAA,GAAqB,CAC9E,IAAMC,CAAAA,CAAmBZ,EAAAA,CAAiBW,CAAW,CAAA,CACrD,OAAO,CAAChI,CAAAA,CAAoB2D,CAAAA,GAAc,CACxC3D,EAAO,aAAA,CAAc+H,CAAW,EAChCE,CAAAA,CAAiBjI,CAAAA,CAAQ2D,CAAI,EAC/B,CACF,CAAA,CAEMuE,CAAAA,CAAmF,EAAC,CAE1FA,EAAqB,cAAA,CAAiBJ,CAAAA,CAAwBnC,CAAAA,CAAc,cAAA,CAAgB,CAC1F,CAAC,MAAOc,CAAe,CAAA,CACvB,CAAC,SAAA,CAAWZ,CAAgB,CAAA,CAC5B,CAAC,kBAAA,CAAoBA,CAAgB,EACrC,CAAC,OAAA,CAAS6B,CAAmB,CAAA,CAC7B,CAAC,QAAA,CAAUA,CAAmB,CAAA,CAC9B,CAAC,UAAWA,CAAmB,CAAA,CAC/B,CAAC,UAAA,CAAYb,EAAmB,CAAA,CAChC,CAAC,eAAA,CAAiBhB,CAAgB,CACpC,CAAC,CAAA,CAEDqC,CAAAA,CAAqB,+BAAiCJ,CAAAA,CACpDnC,CAAAA,CAAc,+BACd,CACE,CAAC,MAAOc,CAAe,CAAA,CACvB,CAAC,YAAA,CAAcA,CAAe,CAAA,CAC9B,CAAC,SAAA,CAAWZ,CAAgB,CAAA,CAC5B,CAAC,kBAAA,CAAoBA,CAAgB,EACrC,CAAC,OAAA,CAAS6B,CAAmB,CAAA,CAC7B,CAAC,QAAA,CAAUA,CAAmB,CAAA,CAC9B,CAAC,UAAWA,CAAmB,CAAA,CAC/B,CAAC,UAAA,CAAYb,EAAmB,CAAA,CAChC,CAAC,eAAA,CAAiBhB,CAAgB,EAClC,CAAC,YAAA,CAAcsB,CAAAA,CAAgBvB,EAAc,CAAC,CAChD,CACF,CAAA,CAEAsC,CAAAA,CAAqB,cAAA,CAAiBJ,CAAAA,CAAwBnC,CAAAA,CAAc,cAAA,CAAgB,CAC1F,CAAC,SAAA,CAAWE,CAAgB,CAAA,CAC5B,CAAC,QAAS4B,EAAAA,CAAmBC,CAAmB,CAAC,CAAA,CACjD,CAAC,QAAA,CAAUD,GAAmBC,CAAmB,CAAC,CAAA,CAClD,CAAC,SAAA,CAAWD,EAAAA,CAAmBC,CAAmB,CAAC,CAAA,CACnD,CAAC,UAAA,CAAYb,EAAmB,CAAA,CAChC,CAAC,eAAA,CAAiBhB,CAAgB,CACpC,CAAC,CAAA,CAEDqC,EAAqB,qBAAA,CAAwBJ,CAAAA,CAC3CnC,CAAAA,CAAc,qBAAA,CACd,CACE,CAAC,UAAWE,CAAgB,CAAA,CAC5B,CAAC,OAAA,CAASA,CAAgB,CAC5B,CACF,CAAA,CAEAqC,CAAAA,CAAqB,oBAAA,CAAuBJ,CAAAA,CAC1CnC,CAAAA,CAAc,oBAAA,CACd,CACE,CAAC,SAAA,CAAWE,CAAgB,CAAA,CAC5B,CAAC,SAAA,CAAWA,CAAgB,CAAA,CAC5B,CAAC,SAAA,CAAWO,EAAiB,CAC/B,CACF,EAEA8B,CAAAA,CAAqB,4BAAA,CAA+BJ,CAAAA,CAClDnC,CAAAA,CAAc,4BAAA,CACd,CACE,CAAC,MAAA,CAAQE,CAAgB,CAAA,CACzB,CAAC,YAAA,CAAcK,CAAgB,CACjC,CACF,CAAA,CAEAgC,EAAqB,uBAAA,CAA0BJ,CAAAA,CAC7CnC,EAAc,uBAAA,CACd,CACE,CAAC,oBAAA,CAAsBE,CAAgB,CAAA,CACvC,CAAC,sBAAA,CAAwBA,CAAgB,CAAA,CACzC,CAAC,YAAA,CAAcsB,CAAAA,CAAgBvB,EAAc,CAAC,CAChD,CACF,CAAA,CAEAsC,CAAAA,CAAqB,aAAA,CAAgBJ,EAAwBnC,CAAAA,CAAc,aAAA,CAAe,CACxF,CAAC,SAAA,CAAWE,CAAgB,CAAA,CAC5B,CAAC,KAAA,CAAOY,CAAe,CAAA,CACvB,CAAC,aAAcU,CAAAA,CAAgBvB,EAAc,CAAC,CAChD,CAAC,CAAA,CAEDsC,EAAqB,oBAAA,CAAuBJ,CAAAA,CAC1CnC,CAAAA,CAAc,oBAAA,CACd,CACE,CAAC,UAAWE,CAAgB,CAAA,CAC5B,CAAC,aAAA,CAAeY,CAAe,EAC/B,CAAC,YAAA,CAAcA,CAAe,CAAA,CAC9B,CAAC,cAAA,CAAgBA,CAAe,CAClC,CACF,CAAA,CAEAyB,CAAAA,CAAqB,OAAA,CAAUJ,CAAAA,CAAwBnC,EAAc,OAAA,CAAS,CAC5E,CAAC,eAAA,CAAiBE,CAAgB,CAAA,CAClC,CAAC,iBAAA,CAAmBA,CAAgB,EACpC,CAAC,QAAA,CAAUA,CAAgB,CAAA,CAC3B,CAAC,UAAA,CAAYA,CAAgB,CAAA,CAC7B,CAAC,QAASA,CAAgB,CAAA,CAC1B,CAAC,MAAA,CAAQA,CAAgB,CAAA,CACzB,CAAC,eAAA,CAAiBA,CAAgB,CACpC,CAAC,CAAA,CAEDqC,CAAAA,CAAqB,gBAAkBJ,CAAAA,CAAwBnC,CAAAA,CAAc,gBAAiB,CAC5F,CAAC,SAAUE,CAAgB,CAAA,CAC3B,CAAC,UAAA,CAAYA,CAAgB,CAAA,CAC7B,CAAC,qBAAA,CAAuBY,CAAe,CAAA,CACvC,CAAC,aAAA,CAAeR,EAAgB,EAChC,CAAC,aAAA,CAAeG,EAAiB,CAAA,CACjC,CAAC,wBAAA,CAA0BA,EAAiB,CAAA,CAC5C,CACE,aACAe,CAAAA,CACEd,EAAAA,CAAwB,CACtBgB,EAAAA,CAAiB,CAAC,CAAC,eAAA,CAAiBF,CAAAA,CAAgBQ,EAAqB,CAAC,CAAC,CAAC,CAC9E,CAAC,CACH,CACF,CACF,CAAC,CAAA,CAEDO,CAAAA,CAAqB,OAAA,CAAUJ,CAAAA,CAAwBnC,CAAAA,CAAc,QAAS,CAC5E,CAAC,QAASE,CAAgB,CAAA,CAC1B,CAAC,WAAA,CAAaK,CAAgB,CAAA,CAC9B,CAAC,QAAA,CAAUO,CAAe,CAC5B,CAAC,CAAA,CAEDyB,CAAAA,CAAqB,sBAAA,CAAyBJ,CAAAA,CAC5CnC,CAAAA,CAAc,uBACd,CACE,CAAC,SAAA,CAAWE,CAAgB,CAAA,CAC5B,CAAC,mBAAoBA,CAAgB,CAAA,CACrC,CAAC,OAAA,CAAS6B,CAAmB,CAAA,CAC7B,CAAC,QAAA,CAAUA,CAAmB,CAAA,CAC9B,CAAC,SAAA,CAAWA,CAAmB,EAC/B,CAAC,UAAA,CAAYb,EAAmB,CAAA,CAChC,CAAC,eAAA,CAAiBhB,CAAgB,CAAA,CAClC,CAAC,YAAA,CAAcsB,CAAAA,CAAgBvB,EAAc,CAAC,CAChD,CACF,CAAA,CAEAsC,EAAqB,MAAA,CAASJ,CAAAA,CAAwBnC,EAAc,MAAA,CAAQ,CAC1E,CAAC,gBAAA,CAAkBwB,CAAAA,CAAgBtB,CAAgB,CAAC,CAAA,CACpD,CAAC,IAAA,CAAMI,EAAgB,CAAA,CACvB,CAAC,OAAQc,EAAwB,CACnC,CAAC,CAAA,CAYDmB,CAAAA,CAAqB,WAAA,CAAcJ,EAAwBnC,CAAAA,CAAc,WAAA,CAAa,CACpF,CAAC,gBAAA,CAAkBwB,EAAgBtB,CAAgB,CAAC,CAAA,CACpD,CAAC,wBAAA,CAA0BsB,CAAAA,CAAgBtB,CAAgB,CAAC,CAAA,CAC5D,CAAC,IAAA,CAAMA,CAAgB,CAAA,CACvB,CAAC,MAAA,CAAQA,CAAgB,CAC3B,CAAC,CAAA,CAEDqC,CAAAA,CAAqB,sBAAwBJ,CAAAA,CAC3CnC,CAAAA,CAAc,sBACd,CACE,CAAC,UAAWE,CAAgB,CAAA,CAC5B,CAAC,SAAA,CAAWO,EAAiB,CAC/B,CACF,CAAA,CAEA8B,CAAAA,CAAqB,uBAAA,CAA0BJ,CAAAA,CAC7CnC,CAAAA,CAAc,uBAAA,CACd,CACE,CAAC,WAAA,CAAaE,CAAgB,CAAA,CAC9B,CAAC,WAAA,CAAaA,CAAgB,CAAA,CAC9B,CAAC,iBAAkBY,CAAe,CACpC,CACF,CAAA,CAEAyB,CAAAA,CAAqB,cAAA,CAAiBJ,CAAAA,CAAwBnC,CAAAA,CAAc,cAAA,CAAgB,CAC1F,CAAC,QAAA,CAAUE,CAAgB,CAAA,CAC3B,CAAC,UAAA,CAAYA,CAAgB,CAC/B,CAAC,CAAA,CAEDqC,CAAAA,CAAqB,cAAA,CAAiBJ,CAAAA,CAAwBnC,EAAc,cAAA,CAAgB,CAC1F,CAAC,MAAA,CAAQE,CAAgB,EACzB,CAAC,IAAA,CAAMA,CAAgB,CAAA,CACvB,CAAC,OAAA,CAASA,CAAgB,CAAA,CAC1B,CAAC,KAAA,CAAOA,CAAgB,CAAA,CACxB,CAAC,YAAaK,CAAgB,CAAA,CAC9B,CAAC,SAAA,CAAWE,EAAiB,CAC/B,CAAC,CAAA,CAED8B,CAAAA,CAAqB,eAAiBJ,CAAAA,CAAwBnC,CAAAA,CAAc,eAAgB,CAC1F,CAAC,MAAA,CAAQE,CAAgB,CAAA,CACzB,CAAC,KAAMA,CAAgB,CAAA,CACvB,CAAC,OAAA,CAASA,CAAgB,CAAA,CAC1B,CAAC,KAAA,CAAOA,CAAgB,CAAA,CACxB,CAAC,WAAA,CAAaK,CAAgB,CAChC,CAAC,CAAA,CAEDgC,EAAqB,cAAA,CAAiBJ,CAAAA,CAAwBnC,EAAc,cAAA,CAAgB,CAC1F,CAAC,MAAA,CAAQE,CAAgB,CAAA,CACzB,CAAC,IAAA,CAAMA,CAAgB,CAAA,CACvB,CAAC,OAAA,CAASA,CAAgB,EAC1B,CAAC,KAAA,CAAOA,CAAgB,CAAA,CACxB,CAAC,UAAA,CAAYA,CAAgB,CAAA,CAC7B,CAAC,WAAA,CAAaK,CAAgB,CAAA,CAC9B,CAAC,aAAcO,CAAe,CAAA,CAC9B,CAAC,aAAA,CAAeA,CAAe,CACjC,CAAC,CAAA,CAEDyB,CAAAA,CAAqB,eAAA,CAAkBJ,CAAAA,CAAwBnC,CAAAA,CAAc,eAAA,CAAiB,CAC5F,CAAC,MAAA,CAAQE,CAAgB,CAAA,CACzB,CAAC,IAAA,CAAMA,CAAgB,CAAA,CACvB,CAAC,aAAcY,CAAe,CAAA,CAC9B,CAAC,aAAA,CAAeA,CAAe,CAAA,CAC/B,CAAC,WAAA,CAAaP,CAAgB,EAC9B,CAAC,OAAA,CAASL,CAAgB,CAAA,CAC1B,CAAC,KAAA,CAAOY,CAAe,CAAA,CACvB,CAAC,WAAA,CAAaZ,CAAgB,CAAA,CAC9B,CAAC,wBAAyBe,EAAc,CAAA,CACxC,CAAC,mBAAA,CAAqBA,EAAc,CACtC,CAAC,CAAA,CAEDsB,CAAAA,CAAqB,YAAA,CAAeJ,CAAAA,CAAwBnC,CAAAA,CAAc,aAAc,CACtF,CAAC,WAAA,CAAaE,CAAgB,CAAA,CAC9B,CAAC,gBAAiB+B,EAAe,CACnC,CAAC,CAAA,CAEDM,CAAAA,CAAqB,kBAAA,CAAqBJ,EACxCnC,CAAAA,CAAc,kBAAA,CACd,CACE,CAAC,OAAA,CAASE,CAAgB,CAAA,CAC1B,CAAC,SAAA,CAAWK,CAAgB,CAC9B,CACF,EAEAgC,CAAAA,CAAqB,kBAAA,CAAqBJ,CAAAA,CACxCnC,CAAAA,CAAc,kBAAA,CACd,CACE,CAAC,OAAA,CAASE,CAAgB,CAAA,CAC1B,CAAC,SAAA,CAAWK,CAAgB,EAC5B,CAAC,gBAAA,CAAkBO,CAAe,CAAA,CAClC,CAAC,iBAAkBA,CAAe,CAAA,CAClC,CAAC,cAAA,CAAgBL,EAAiB,CAAA,CAClC,CAAC,YAAA,CAAcQ,EAAc,CAC/B,CACF,CAAA,CAEAsB,CAAAA,CAAqB,oBAAsBJ,CAAAA,CACzCnC,CAAAA,CAAc,mBAAA,CACd,CACE,CAAC,OAAA,CAASE,CAAgB,CAAA,CAC1B,CAAC,UAAWK,CAAgB,CAAA,CAC5B,CAAC,gBAAA,CAAkBO,CAAe,CAAA,CAClC,CAAC,eAAA,CAAiBmB,EAAe,EACjC,CAAC,cAAA,CAAgBxB,EAAiB,CAAA,CAClC,CAAC,YAAA,CAAcQ,EAAc,CAC/B,CACF,CAAA,CAEAsB,CAAAA,CAAqB,eAAA,CAAkBJ,CAAAA,CAAwBnC,EAAc,eAAA,CAAiB,CAC5F,CAAC,oBAAA,CAAsBE,CAAgB,EACvC,CAAC,qBAAA,CAAuB6B,CAAmB,CAAA,CAC3C,CAAC,wBAAA,CAA0BA,CAAmB,CAAA,CAC9C,CAAC,YAAA,CAAcP,CAAAA,CAAgBvB,EAAc,CAAC,CAChD,CAAC,CAAA,CAYDsC,CAAAA,CAAqB,wBAAA,CAA2BJ,CAAAA,CAC9CnC,CAAAA,CAAc,yBACd,CACE,CAAC,mBAAoBE,CAAgB,CAAA,CACrC,CAAC,oBAAA,CAAsBA,CAAgB,CAAA,CACvC,CAAC,qBAAA,CAAuB6B,CAAmB,EAC3C,CAAC,YAAA,CAAcP,CAAAA,CAAgBvB,EAAc,CAAC,CAChD,CACF,CAAA,CAEAsC,CAAAA,CAAqB,aAAA,CAAgBJ,CAAAA,CAAwBnC,CAAAA,CAAc,aAAA,CAAe,CACxF,CAAC,eAAA,CAAiBE,CAAgB,CAAA,CAClC,CAAC,kBAAA,CAAoBA,CAAgB,CAAA,CACrC,CAAC,qBAAA,CAAuB6B,CAAmB,CAC7C,CAAC,EAEDQ,CAAAA,CAAqB,iBAAA,CAAoBJ,CAAAA,CAAwBnC,CAAAA,CAAc,iBAAA,CAAmB,CAChG,CAAC,SAAA,CAAWE,CAAgB,CAAA,CAC5B,CAAC,uBAAA,CAAyBA,CAAgB,EAC1C,CAAC,eAAA,CAAiBA,CAAgB,CACpC,CAAC,EAEDqC,CAAAA,CAAqB,0BAAA,CAA6BJ,CAAAA,CAChDnC,CAAAA,CAAc,0BAAA,CACd,CACE,CAAC,cAAA,CAAgBE,CAAgB,CAAA,CACjC,CAAC,YAAA,CAAcA,CAAgB,EAC/B,CAAC,SAAA,CAAWI,EAAgB,CAAA,CAC5B,CAAC,WAAA,CAAaG,EAAiB,CACjC,CACF,EAEA8B,CAAAA,CAAqB,QAAA,CAAWJ,EAAwBnC,CAAAA,CAAc,QAAA,CAAU,CAC9E,CAAC,MAAA,CAAQE,CAAgB,EACzB,CAAC,IAAA,CAAMA,CAAgB,CAAA,CACvB,CAAC,QAAA,CAAUY,CAAe,CAAA,CAC1B,CAAC,MAAA,CAAQZ,CAAgB,CAC3B,CAAC,EAEDqC,CAAAA,CAAqB,qBAAA,CAAwBJ,EAC3CnC,CAAAA,CAAc,qBAAA,CACd,CACE,CAAC,MAAA,CAAQE,CAAgB,CAAA,CACzB,CAAC,YAAA,CAAcK,CAAgB,CAAA,CAC/B,CAAC,IAAA,CAAML,CAAgB,CAAA,CACvB,CAAC,SAAUY,CAAe,CAAA,CAC1B,CAAC,MAAA,CAAQZ,CAAgB,CAC3B,CACF,CAAA,CAEAqC,CAAAA,CAAqB,oBAAsBJ,CAAAA,CACzCnC,CAAAA,CAAc,oBACd,CACE,CAAC,MAAA,CAAQE,CAAgB,CAAA,CACzB,CAAC,KAAMA,CAAgB,CAAA,CACvB,CAAC,QAAA,CAAUY,CAAe,CAAA,CAC1B,CAAC,MAAA,CAAQZ,CAAgB,CAC3B,CACF,CAAA,CAEAqC,CAAAA,CAAqB,oBAAsBJ,CAAAA,CACzCnC,CAAAA,CAAc,oBACd,CACE,CAAC,OAAQE,CAAgB,CAAA,CACzB,CAAC,IAAA,CAAMA,CAAgB,CAAA,CACvB,CAAC,QAAA,CAAUY,CAAe,CAC5B,CACF,CAAA,CAEAyB,CAAAA,CAAqB,KAAOJ,CAAAA,CAAwBnC,CAAAA,CAAc,IAAA,CAAM,CACtE,CAAC,OAAA,CAASE,CAAgB,CAAA,CAC1B,CAAC,SAAUA,CAAgB,CAAA,CAC3B,CAAC,UAAA,CAAYA,CAAgB,CAAA,CAC7B,CAAC,QAAA,CAAUC,EAAe,CAC5B,CAAC,CAAA,CAEDoC,CAAAA,CAAqB,gBAAA,CAAmBJ,CAAAA,CAAwBnC,CAAAA,CAAc,iBAAkB,CAC9F,CAAC,SAAA,CAAWE,CAAgB,CAAA,CAC5B,CAAC,iBAAkBY,CAAe,CACpC,CAAC,CAAA,CAEDyB,CAAAA,CAAqB,eAAiBJ,CAAAA,CAAwBnC,CAAAA,CAAc,cAAA,CAAgB,CAC1F,CAAC,OAAA,CAASE,CAAgB,CAAA,CAC1B,CAAC,KAAA,CAAOA,CAAgB,CAAA,CACxB,CAAC,oBAAqBgB,EAAmB,CAAA,CACzC,CAAC,OAAA,CAASgB,EAAyB,CAAA,CACnC,CAAC,KAAA,CAAOpB,CAAe,CACzB,CAAC,CAAA,CAEDyB,CAAAA,CAAqB,uBAAyBJ,CAAAA,CAC5CnC,CAAAA,CAAc,sBAAA,CACd,CACE,CAAC,OAAA,CAASE,CAAgB,CAAA,CAC1B,CAAC,OAAA,CAASmB,EAAAA,CAAkBnB,CAAAA,CAAkBkB,EAAwB,CAAC,CAAA,CACvE,CAAC,YAAA,CAAcI,CAAAA,CAAgBvB,EAAc,CAAC,CAChD,CACF,CAAA,CAEAsC,EAAqB,eAAA,CAAkBJ,CAAAA,CAAwBnC,EAAc,eAAA,CAAiB,CAC5F,CAAC,SAAA,CAAWE,CAAgB,CAAA,CAC5B,CAAC,OAAA,CAAS4B,EAAAA,CAAmBC,CAAmB,CAAC,CAAA,CACjD,CAAC,SAAUD,EAAAA,CAAmBC,CAAmB,CAAC,CAAA,CAClD,CAAC,SAAA,CAAWD,GAAmBC,CAAmB,CAAC,EACnD,CAAC,UAAA,CAAYD,GAAmBZ,EAAmB,CAAC,CAAA,CACpD,CAAC,eAAA,CAAiBhB,CAAgB,EAClC,CAAC,uBAAA,CAAyBA,CAAgB,CAAA,CAC1C,CAAC,YAAA,CAAcsB,EAAgBvB,EAAc,CAAC,CAChD,CAAC,CAAA,CAEDsC,CAAAA,CAAqB,gBAAkBJ,CAAAA,CAAwBnC,CAAAA,CAAc,gBAAiB,CAC5F,CAAC,UAAWE,CAAgB,CAAA,CAC5B,CAAC,UAAA,CAAYA,CAAgB,CAAA,CAC7B,CAAC,YAAA,CAAce,EAAc,CAAA,CAC7B,CAAC,UAAA,CAAYA,EAAc,EAC3B,CAAC,WAAA,CAAaH,CAAe,CAAA,CAC7B,CAAC,SAAA,CAAWZ,CAAgB,CAAA,CAC5B,CAAC,WAAYA,CAAgB,CAAA,CAC7B,CAAC,YAAA,CAAcsB,CAAAA,CAAgBvB,EAAc,CAAC,CAChD,CAAC,EAEDsC,CAAAA,CAAqB,qBAAA,CAAwBJ,CAAAA,CAC3CnC,CAAAA,CAAc,qBAAA,CACd,CACE,CAAC,OAAA,CAASE,CAAgB,CAAA,CAC1B,CAAC,cAAA,CAAgBsB,CAAAA,CAAgBpB,EAAe,CAAC,CAAA,CACjD,CAAC,SAAA,CAAWK,EAAiB,EAC7B,CAAC,YAAA,CAAce,CAAAA,CAAgBvB,EAAc,CAAC,CAChD,CACF,CAAA,CAEAsC,CAAAA,CAAqB,eAAA,CAAkBJ,CAAAA,CAAwBnC,CAAAA,CAAc,eAAA,CAAiB,CAC5F,CAAC,gBAAA,CAAkBE,CAAgB,CAAA,CACnC,CAAC,cAAA,CAAgBsB,EAAgBpB,EAAe,CAAC,EACjD,CAAC,YAAA,CAAcoB,EAAgBvB,EAAc,CAAC,CAChD,CAAC,CAAA,CAED,IAAMuC,GAA2Bd,EAAAA,CAAiB,CAAC,CAAC,UAAA,CAAYT,EAAc,CAAC,CAAC,CAAA,CAEhFsB,CAAAA,CAAqB,eAAA,CAAkBJ,CAAAA,CAAwBnC,CAAAA,CAAc,eAAA,CAAiB,CAC5F,CAAC,aAAA,CAAeQ,EAAgB,CAAA,CAChC,CAAC,UAAWN,CAAgB,CAAA,CAC5B,CAAC,WAAA,CAAaY,CAAe,CAAA,CAC7B,CAAC,SAAA,CAAWZ,CAAgB,CAAA,CAC5B,CAAC,UAAA,CAAYA,CAAgB,EAC7B,CACE,YAAA,CACAsB,CAAAA,CAAgBd,EAAAA,CAAwB,CAACT,EAAAA,CAAgBuC,EAAwB,CAAC,CAAC,CACrF,CACF,CAAC,CAAA,CAEDD,EAAqB,sBAAA,CAAyBJ,CAAAA,CAC5CnC,CAAAA,CAAc,sBAAA,CACd,CACE,CAAC,QAASE,CAAgB,CAAA,CAC1B,CAAC,WAAA,CAAaK,CAAgB,CAAA,CAC9B,CAAC,QAAA,CAAUO,CAAe,CAC5B,CACF,CAAA,CAEAyB,CAAAA,CAAqB,mBAAqBJ,CAAAA,CACxCnC,CAAAA,CAAc,mBACd,CACE,CAAC,OAAQE,CAAgB,CAAA,CACzB,CAAC,IAAA,CAAMA,CAAgB,CAAA,CACvB,CAAC,QAAA,CAAUY,CAAe,CAAA,CAC1B,CAAC,MAAA,CAAQZ,CAAgB,EACzB,CAAC,YAAA,CAAcI,EAAgB,CAAA,CAC/B,CAAC,YAAA,CAAcA,EAAgB,CAAA,CAC/B,CACE,aACAkB,CAAAA,CACEE,EAAAA,CAAiB,CACf,CAAC,MAAA,CAAQrB,EAAe,CAAA,CACxB,CAAC,OAAA,CAASqB,GAAiB,CAAC,CAAC,SAAA,CAAWrB,EAAe,CAAC,CAAC,CAAC,CAC5D,CAAC,CACH,CACF,CACF,CACF,EAEA,IAAMoC,EAAAA,CAAsB,CAACpI,CAAAA,CAAoBqI,CAAAA,GAAyB,CACxE,IAAMd,CAAAA,CAAaW,CAAAA,CAAqBG,CAAAA,CAAU,CAAC,CAAC,EACpD,GAAI,CAACd,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,gCAAgCc,CAAAA,CAAU,CAAC,CAAC,CAAA,CAAE,CAAA,CAEhE,GAAI,CACFd,CAAAA,CAAWvH,CAAAA,CAAQqI,CAAAA,CAAU,CAAC,CAAC,EACjC,OAASb,CAAAA,CAAY,CACnB,MAAAA,CAAAA,CAAM,OAAA,CAAU,CAAA,EAAGa,EAAU,CAAC,CAAC,CAAA,EAAA,EAAKb,CAAAA,CAAM,OAAO,CAAA,CAAA,CAC3CA,CACR,CACF,CAAA,CAEMc,EAAAA,CAAwBjB,EAAAA,CAAiB,CAC7C,CAAC,gBAAiBpB,EAAgB,CAAA,CAClC,CAAC,kBAAA,CAAoBC,CAAgB,EACrC,CAAC,YAAA,CAAcU,EAAc,CAAA,CAC7B,CAAC,YAAA,CAAcO,EAAgBiB,EAAmB,CAAC,CAAA,CACnD,CAAC,YAAA,CAAcjB,CAAAA,CAAgBtB,CAAgB,CAAC,CAClD,CAAC,CAAA,CAEK0C,EAAAA,CAA0BlB,EAAAA,CAAiB,CAC/C,CAAC,MAAA,CAAQR,EAAmB,CAAA,CAC5B,CAAC,KAAMA,EAAmB,CAAA,CAC1B,CAAC,OAAA,CAASV,EAAgB,CAAA,CAC1B,CAAC,OAAA,CAASD,CAAgB,CAAA,CAC1B,CAAC,WAAA,CAAaY,EAAAA,EAAkB,CAClC,CAAC,CAAA,CAEY0B,EAAAA,CAAa,CAExB,KAAA,CAAO/B,EAUP,IAAA,CAAM8B,EAAAA,CAIN,MAAOX,EAAAA,CACP,SAAA,CAAWf,GAEX,MAAA,CAAQhB,CAAAA,CACR,WAAA,CAAayC,EAAAA,CACb,MAAA,CAAQrC,EAAAA,CACR,OAAQC,CAIV,CAAA,CCvwBO,IAAMuC,EAAAA,CAASC,CAAAA,EACb,IAAI,OAAA,CAASC,CAAAA,EAAY,UAAA,CAAWA,EAASD,CAAE,CAAC,CAAA,CCmBzD,IAAME,EAAAA,CAAAA,CAA0B,IAAM,CACpC,GAAI,CAGF,OACE,EAFA,OAAO,SAAA,CAAc,KAAgB,SAAA,CAAkB,OAAA,GAAY,aAAA,CAAA,EAGnE,OAAO,OAAA,CAAY,GAAA,EACnB,QAAQ,QAAA,EAAY,IAAA,EACpB,OAAA,CAAQ,QAAA,CAAS,IAAA,EAAQ,IAE7B,MAAQ,CACN,OAAO,MACT,CACF,CAAA,IAOA,SAASC,EAAAA,EAAgD,CACvD,OAAOD,EAAAA,CAAgB,CAAE,aAAcjH,CAAAA,CAAO,SAAU,CAAA,CAAI,EAC9D,CAUO,IAAMmH,EAAAA,CAAgB,CAC3B,MAAA,CAAQ,CAAA,CACR,QAAA,CAAU,CAAA,CAEV,QAAS,CAAA,CACT,gBAAA,CAAkB,CAAE,MAAA,CAAQ,CAAA,CAAG,SAAU,CAAA,CAAG,OAAA,CAAS,CAAA,CAAG,SAAA,CAAW,CAAA,CAAG,QAAA,CAAU,EAAG,KAAA,CAAO,CAAE,CAC9F,CAAA,CAWMC,EAAAA,CAAN,cAAwB,KAAM,CAC5B,WAAA,CACSC,CAAAA,CACP9E,CAAAA,CACA,CACA,KAAA,CAAMA,CAAO,CAAA,CAHN,IAAA,CAAA,MAAA,CAAA8E,EAIT,CAJS,MAKX,EAEMC,EAAAA,CAAgB,CAAA,EACpB,CAAA,YAAa,KAAA,CAAQ,CAAA,CAAE,OAAA,CAAU,OAAO,CAAA,EAAM,QAAA,CAAW,CAAA,CAAI,MAAA,CAAO,CAAC,CAAA,CAInEC,GAAyB,CAAA,CACzBC,EAAAA,CAAiB,CAAA,CAcrB,eAAeC,EAAAA,CACbC,CAAAA,CACAC,EACAC,CAAAA,CACAC,CAAAA,CACAC,EACAC,CAAAA,CACY,CACZ,IAAMC,CAAAA,CAAML,CAAAA,CAAO,OAAA,CAAQ,GAAG,CAAA,CAC9B,GAAIK,GAAO,CAAA,EAAKA,CAAAA,GAAQL,CAAAA,CAAO,MAAA,CAAS,CAAA,CAGtC,MAAM,IAAIP,EAAAA,CAAU,WAAA,CAAa,CAAA,8BAAA,EAAiCO,CAAM,CAAA,CAAE,CAAA,CAG5E,GAAM,CAAE,MAAA,CAAQM,EAAS,OAAA,CAASC,CAAe,EAAIC,EAAAA,CACnD,IAAA,CAAK,GAAA,CAAIT,CAAAA,CAAM,SAAA,CAAWG,CAAe,CAC3C,CAAA,CACM,CAAE,MAAA,CAAAO,CAAAA,CAAQ,OAAA,CAASC,CAAa,EAAIC,EAAAA,CAAaL,CAAAA,CAASH,CAAc,CAAA,CAC9E,GAAI,CACF,IAAIS,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAM,MAAM,MAAMb,CAAAA,CAAM,GAAA,CAAK,CAC3B,MAAA,CAAQ,MAAA,CACR,IAAA,CAAM,KAAK,SAAA,CAAU,CAAE,GAAA,CAAKC,CAAAA,CAAO,KAAA,CAAM,CAAA,CAAGK,CAAG,CAAA,CAAG,MAAA,CAAQL,CAAAA,CAAO,KAAA,CAAMK,CAAAA,CAAM,CAAC,EAAG,MAAA,CAAAJ,CAAO,CAAC,CAAA,CACzF,OAAA,CAAS,CAAE,cAAA,CAAgB,kBAAA,CAAoB,GAAGV,EAAAA,EAAsB,CAAG,GAAGQ,EAAM,OAAQ,CAAA,CAC5F,MAAA,CAAAU,CACF,CAAC,EACH,OAASI,CAAAA,CAAY,CACnB,MAAIV,CAAAA,EAAgB,OAAA,CAAeU,CAAAA,CAC7B,IAAIpB,EAAAA,CAAUa,CAAAA,CAAQ,OAAA,CAAU,SAAA,CAAY,WAAA,CAAaX,EAAAA,CAAakB,CAAC,CAAC,CAChF,CACA,GAAID,CAAAA,CAAI,MAAA,GAAW,IAAK,CAEtB,GAAI,CACF,MAAMA,CAAAA,CAAI,IAAA,EAAM,SAClB,CAAA,KAAQ,CAER,CACA,IAAME,CAAAA,CAAUF,EAAI,MAAA,GAAW,GAAA,EAAA,CAAQA,EAAI,OAAA,CAAQ,GAAA,CAAI,aAAa,CAAA,EAAK,EAAA,EAAI,WAAA,EAAY,GAAM,UAAA,CAC/F,MAAM,IAAInB,EAAAA,CAAUqB,CAAAA,CAAU,UAAA,CAAa,QAAA,CAAUA,CAAAA,CAAU,4BAAA,CAA+B,kBAAkBF,CAAAA,CAAI,MAAM,CAAA,CAAE,CAC9H,CACA,IAAI9K,EACJ,GAAI,CACFA,EAAS,MAAM8K,CAAAA,CAAI,OACrB,CAAA,MAASC,CAAAA,CAAY,CACnB,MAAIV,CAAAA,EAAgB,QAAeU,CAAAA,CAC7B,IAAIpB,EAAAA,CAAUa,CAAAA,CAAQ,OAAA,CAAU,SAAA,CAAY,QAASX,EAAAA,CAAakB,CAAC,CAAC,CAC5E,CACA,GAAIT,GAAY,CAACA,CAAAA,CAAStK,CAAM,CAAA,CAC9B,MAAM,IAAI2J,EAAAA,CAAU,UAAA,CAAY,oCAAoC,CAAA,CAEtE,OAAO3J,CACT,QAAE,CACAyK,CAAAA,EAAe,CACfG,CAAAA,GACF,CACF,CAIO,IAAMK,CAAAA,CAAN,cAAuB,KAAM,CAClC,IAAA,CAAO,WACP,IAAA,CACA,IAAA,CACA,MAAmB,MAAA,CACnB,WAAA,CAAYC,EAAyD,CACnE,KAAA,CAAMA,CAAAA,CAAS,OAAO,CAAA,CACtB,IAAA,CAAK,KAAOA,CAAAA,CAAS,IAAA,CACjB,MAAA,GAAUA,CAAAA,GACZ,IAAA,CAAK,IAAA,CAAOA,EAAS,IAAA,EAEzB,CACF,CAAA,CAOMC,EAAAA,CAAN,cAAwB,KAAM,CAC5B,IAAA,CAEA,WAAA,CAIA,YACA,WAAA,CACEC,CAAAA,CACAtG,EACAnC,CAAAA,CAAwD,EAAC,CACzD,CACA,KAAA,CAAMmC,CAAO,EACb,IAAA,CAAK,IAAA,CAAOsG,CAAAA,CACZ,IAAA,CAAK,WAAA,CAAczI,CAAAA,CAAK,aAAe,CAAA,CACvC,IAAA,CAAK,WAAA,CAAcA,CAAAA,CAAK,WAAA,EAAe,MACzC,CACF,CAAA,CAQA,SAAS0I,GAAkBC,CAAAA,CAA+B,CACxD,GAAI,CAACA,CAAAA,CAAQ,OAAO,CAAA,CACpB,IAAMC,CAAAA,CAAO,OAAOD,CAAM,CAAA,CAC1B,GAAI,MAAA,CAAO,QAAA,CAASC,CAAI,EAAG,OAAOA,CAAAA,CAAO,CAAA,CAAIA,CAAAA,CAAO,GAAA,CAAO,CAAA,CAC3D,IAAMC,CAAAA,CAAS,IAAA,CAAK,MAAMF,CAAM,CAAA,CAChC,GAAI,MAAA,CAAO,QAAA,CAASE,CAAM,CAAA,CAAG,CAC3B,IAAMC,EAAQD,CAAAA,CAAS,IAAA,CAAK,GAAA,EAAI,CAChC,OAAOC,CAAAA,CAAQ,EAAIA,CAAAA,CAAQ,CAC7B,CACA,OAAO,CACT,CAGA,IAAMC,EAAAA,CAAwB,CAAC,cAAA,CAAgB,WAAA,CAAa,cAAA,CAAgB,WAAW,EAOjFC,EAAAA,CAAyB,CAC7B,iBAAA,CACA,uCAAA,CACA,aAAA,CACA,cACF,EASA,SAASC,EAAAA,CAAiB,CAAA,CAAgB,CACxC,GAAI,CAAC,EAAG,OAAO,EAAA,CACf,IAAMC,CAAAA,CAAkB,CAAC,MAAA,CAAO,EAAE,IAAA,EAAQ,EAAE,EAAG,MAAA,CAAO,CAAA,CAAE,SAAW,EAAE,CAAA,CAAG,MAAA,CAAO,CAAA,CAAE,IAAA,EAAQ,EAAE,CAAC,CAAA,CACxFC,CAAAA,CAAQ,CAAA,CAAE,KAAA,CACd,IAAA,IAASC,CAAAA,CAAQ,EAAGD,CAAAA,EAASC,CAAAA,CAAQ,CAAA,CAAGA,CAAAA,EAAAA,CACtCF,CAAAA,CAAM,IAAA,CAAK,OAAOC,CAAAA,CAAM,IAAA,EAAQ,EAAE,CAAA,CAAG,MAAA,CAAOA,EAAM,OAAA,EAAW,EAAE,CAAC,CAAA,CAChEA,CAAAA,CAAQA,CAAAA,CAAM,MAEhB,OAAOD,CAAAA,CAAM,IAAA,CAAK,GAAG,CACvB,CAmBA,SAASG,EAAAA,CAAuB,CAAA,CAAiB,CAC/C,GAAI,CAAC,CAAA,CAAG,OAAO,MAAA,CACf,GAAI,aAAab,EAAAA,CAAW,OAAO,MACnC,GAAI,CAAA,YAAaF,CAAAA,CAAU,OAAO,MAAA,CAElC,IAAMgB,EAAOL,EAAAA,CAAiB,CAAC,CAAA,CAQ/B,OAPI,CAAA,EAAAF,EAAAA,CAAsB,KAAMQ,CAAAA,EAASD,CAAAA,CAAK,QAAA,CAASC,CAAI,CAAC,CAAA,EACxDP,GAAuB,IAAA,CAAMQ,CAAAA,EAAQF,EAAK,QAAA,CAASE,CAAG,CAAC,CAAA,EAIvD,CAAA,YAAa,WAAA,EAEb,sDAAA,CAAuD,IAAA,CAAKF,CAAI,EAGtE,CAwEA,SAASG,EAAAA,CAAoBF,CAAAA,CAAcpH,CAAAA,CAA0B,CASnE,OAPI,CAAA,EAAAoH,CAAAA,GAAS,MAAA,EAETA,CAAAA,EAAQ,KAAA,EAAUA,CAAAA,EAAQ,QAE1BA,CAAAA,GAAS,MAAA,EAGTA,IAAS,MAAA,EAAU,yCAAA,CAA0C,KAAKpH,CAAO,CAAA,CAE/E,CAGA,SAASuH,EAAAA,CAAMnC,CAAAA,CAAwB,CACrC,IAAMK,CAAAA,CAAML,CAAAA,CAAO,OAAA,CAAQ,GAAG,CAAA,CAC9B,OAAOK,CAAAA,CAAM,CAAA,CAAIL,CAAAA,CAAO,KAAA,CAAM,CAAA,CAAGK,CAAG,EAAIL,CAC1C,KAKMoC,EAAAA,CAAqB,GAAA,CAGrBC,GAAoB,GAAA,CAGpBC,EAAAA,CAA6B,IAAA,CAG7BC,EAAAA,CAAmC,CAAA,CAEnCC,EAAAA,CAAkB,IAElBC,EAAAA,CAAwB,IAAA,CAExBC,EAAAA,CAAwB,EAAA,CAKxBC,EAAAA,CAAqB,EAAA,CAIrBC,GAAsB,CAAA,CAGtBC,EAAAA,CAAqB,CAAA,CAAI,GAAA,CAKzBC,EAAAA,CAAqB,GAAA,CAKrBC,GAA4B,GAAA,CAK5BC,EAAAA,CAA0B,IAiBnBC,EAAAA,CAAN,KAAwB,CACrB,MAAA,CAAS,IAAI,IAEb,WAAA,CAAY/B,CAAAA,CAA0B,CAC5C,IAAIgC,CAAAA,CAAI,IAAA,CAAK,OAAO,GAAA,CAAIhC,CAAI,CAAA,CAC5B,OAAKgC,CAAAA,GACHA,CAAAA,CAAI,CACF,mBAAA,CAAqB,CAAA,CACrB,eAAA,CAAiB,CAAA,CACjB,gBAAA,CAAkB,CAAA,CAClB,gBAAiB,CAAA,CACjB,eAAA,CAAiB,CAAA,CACjB,WAAA,CAAa,IAAI,GAAA,CACjB,UAAW,CAAA,CACX,kBAAA,CAAoB,EACpB,aAAA,CAAe,MAAA,CACf,mBAAoB,CAAA,CACpB,gBAAA,CAAkB,CAAA,CASlB,WAAA,CAAa,IAAA,CAAK,GAAA,GAClB,UAAA,CAAY,IAAI,GAClB,CAAA,CACA,IAAA,CAAK,MAAA,CAAO,IAAIhC,CAAAA,CAAMgC,CAAC,CAAA,CAAA,CAElBA,CACT,CAEA,aAAA,CAAchC,EAActH,CAAAA,CAAcuJ,CAAAA,CAAqBC,EAA2B,CACxF,IAAMF,EAAI,IAAA,CAAK,WAAA,CAAYhC,CAAI,CAAA,CAU/B,GATAgC,CAAAA,CAAE,oBAAsB,CAAA,CAQxBA,CAAAA,CAAE,eAAA,CAAkB,CAAA,CAChBtJ,CAAAA,CAAK,CAMP,IAAMyJ,CAAAA,CAAUH,CAAAA,CAAE,WAAA,CAAY,GAAA,CAAItJ,CAAG,CAAA,CAAA,CACjC,CAACyJ,CAAAA,EAAW,EAAEA,EAAQ,SAAA,EAAaA,CAAAA,CAAQ,cAAgB,IAAA,CAAK,GAAA,EAAI,CAAA,GACtEH,CAAAA,CAAE,WAAA,CAAY,MAAA,CAAOtJ,CAAG,EAE5B,CACI,OAAOuJ,CAAAA,EAAe,QAAA,EAAY,MAAA,CAAO,SAASA,CAAU,CAAA,EAAKA,CAAAA,EAAc,CAAA,EAIjF,IAAA,CAAK,aAAA,CAAcD,EAAGC,CAAAA,CAAYC,CAAAA,EAAcxJ,CAAG,EAEvD,CAUA,iBAAA,CAAkBsH,EAAciC,CAAAA,CAAoBC,CAAAA,CAA2B,CACzE,CAAC,MAAA,CAAO,QAAA,CAASD,CAAU,CAAA,EAAKA,CAAAA,CAAaH,EAAAA,EACjD,IAAA,CAAK,aAAA,CAAc,IAAA,CAAK,YAAY9B,CAAI,CAAA,CAAGiC,CAAAA,CAAYC,CAAU,EACnE,CAaA,mBAAmBlC,CAAAA,CAAckC,CAAAA,CAAyC,CACxE,IAAMF,CAAAA,CAAI,KAAK,MAAA,CAAO,GAAA,CAAIhC,CAAI,CAAA,CAC9B,GAAI,CAACgC,EAAG,OACR,IAAMI,CAAAA,CAAM,IAAA,CAAK,GAAA,EAAI,CACrB,GAAIF,CAAAA,GAAe,MAAA,CAAW,CAC5B,IAAMG,CAAAA,CAAIL,CAAAA,CAAE,WAAW,GAAA,CAAIE,CAAU,EACrC,OAAOG,CAAAA,EACLA,EAAE,WAAA,EAAeX,EAAAA,EACjBU,CAAAA,CAAMC,CAAAA,CAAE,SAAA,EAAaV,EAAAA,CACnBU,EAAE,MAAA,CACF,MACN,CACA,OAAO,IAAA,CAAK,eAAA,CAAgBL,EAAGI,CAAG,CAAA,CAAIJ,CAAAA,CAAE,aAAA,CAAgB,MAC1D,CAkBA,sBAAsBhC,CAAAA,CAAcsC,CAAAA,CAAmBJ,EAA2B,CAC5E,CAAC,OAAO,QAAA,CAASI,CAAS,CAAA,EAAKA,CAAAA,CAAY,EAAA,EAC/C,IAAA,CAAK,cAAc,IAAA,CAAK,WAAA,CAAYtC,CAAI,CAAA,CAAGsC,CAAAA,CAAWJ,CAAU,EAClE,CAOQ,aAAA,CAAcF,CAAAA,CAAeC,CAAAA,CAAoBC,CAAAA,CAA2B,CAClF,IAAME,CAAAA,CAAM,IAAA,CAAK,GAAA,EAAI,CAkBrB,GAZIJ,CAAAA,CAAE,iBAAmB,CAAA,EAAKI,CAAAA,CAAMJ,CAAAA,CAAE,gBAAA,CAAmBL,EAAAA,GACvDK,CAAAA,CAAE,cAAgB,MAAA,CAClBA,CAAAA,CAAE,kBAAA,CAAqB,CAAA,CACvBA,CAAAA,CAAE,UAAA,CAAW,OAAM,CAAA,CAErBA,CAAAA,CAAE,aAAA,CACAA,CAAAA,CAAE,aAAA,GAAkB,MAAA,CAChBC,EACAR,EAAAA,CAAqBQ,CAAAA,CAAAA,CAAc,EAAIR,EAAAA,EAAsBO,CAAAA,CAAE,cACrEA,CAAAA,CAAE,kBAAA,EAAA,CACFA,CAAAA,CAAE,gBAAA,CAAmBI,CAAAA,CAEjBF,CAAAA,GAAe,OAAW,CAC5B,IAAMG,CAAAA,CAAIL,CAAAA,CAAE,UAAA,CAAW,GAAA,CAAIE,CAAU,CAAA,CACjC,CAACG,CAAAA,EAAKD,CAAAA,CAAMC,CAAAA,CAAE,SAAA,CAAYV,GAC5BK,CAAAA,CAAE,UAAA,CAAW,IAAIE,CAAAA,CAAY,CAAE,OAAQD,CAAAA,CAAY,WAAA,CAAa,CAAA,CAAG,SAAA,CAAWG,CAAI,CAAC,GAEnFC,CAAAA,CAAE,MAAA,CAASZ,EAAAA,CAAqBQ,CAAAA,CAAAA,CAAc,CAAA,CAAIR,EAAAA,EAAsBY,EAAE,MAAA,CAC1EA,CAAAA,CAAE,WAAA,EAAA,CACFA,CAAAA,CAAE,SAAA,CAAYD,CAAAA,EAElB,CACF,CAEA,aAAA,CAAcpC,EAActH,CAAAA,CAAoB,CAC9C,IAAMsJ,CAAAA,CAAI,IAAA,CAAK,WAAA,CAAYhC,CAAI,CAAA,CAC/B,GAAItH,EAAK,CAIP,IAAM0J,CAAAA,CAAM,IAAA,CAAK,GAAA,EAAI,CACfG,EAKFP,CAAAA,CAAE,WAAA,CAAY,GAAA,CAAItJ,CAAG,CAAA,EAAK,CAAE,MAAO,CAAA,CAAG,aAAA,CAAe,EAAG,eAAA,CAAiB,CAAE,GAI5E6J,CAAAA,CAAS,aAAA,CAAgB,CAAA,EAAKA,CAAAA,CAAS,aAAA,EAAiBH,CAAAA,EACxDG,EAAS,eAAA,CAAkB,CAAA,EAAKH,CAAAA,CAAMG,CAAAA,CAAS,eAAA,CAAkB,GAAA,IAElEA,EAAS,KAAA,CAAQ,CAAA,CACjBA,CAAAA,CAAS,aAAA,CAAgB,CAAA,CAAA,CAE3BA,CAAAA,CAAS,QACTA,CAAAA,CAAS,eAAA,CAAkBH,EACvBG,CAAAA,CAAS,KAAA,EAASlB,KACpBkB,CAAAA,CAAS,aAAA,CAAgBH,CAAAA,CAAMd,EAAAA,CAAAA,CAEjCU,CAAAA,CAAE,WAAA,CAAY,IAAItJ,CAAAA,CAAK6J,CAAQ,EACjC,CAAA,KAEEP,CAAAA,CAAE,mBAAA,EAAA,CACFA,EAAE,eAAA,CAAkB,IAAA,CAAK,GAAA,GAE7B,CAaA,uBAAA,CAAwBhC,EAActH,CAAAA,CAAmB,CACvD,IAAMsJ,CAAAA,CAAI,IAAA,CAAK,YAAYhC,CAAI,CAAA,CACzBoC,CAAAA,CAAM,IAAA,CAAK,GAAA,EAAI,CACfG,EAKFP,CAAAA,CAAE,WAAA,CAAY,GAAA,CAAItJ,CAAG,CAAA,EAAK,CAAE,MAAO,CAAA,CAAG,aAAA,CAAe,CAAA,CAAG,eAAA,CAAiB,CAAE,CAAA,CAC/E6J,EAAS,KAAA,CAAQ,IAAA,CAAK,IAAIA,CAAAA,CAAS,KAAA,CAAQ,EAAGlB,EAAgC,CAAA,CAC9EkB,CAAAA,CAAS,eAAA,CAAkBH,CAAAA,CAC3BG,CAAAA,CAAS,cAAgBH,CAAAA,CAAMd,EAAAA,CAC/BiB,CAAAA,CAAS,SAAA,CAAY,IAAA,CACrBP,CAAAA,CAAE,YAAY,GAAA,CAAItJ,CAAAA,CAAK6J,CAAQ,EACjC,CAWA,eAAA,CAAgBvC,EAAcwC,CAAAA,CAA6B,CACzD,IAAMR,CAAAA,CAAI,IAAA,CAAK,WAAA,CAAYhC,CAAI,CAAA,CACzBoC,CAAAA,CAAM,IAAA,CAAK,GAAA,EAAI,CAEjBJ,CAAAA,CAAE,gBAAkB,CAAA,EAAKI,CAAAA,CAAMJ,CAAAA,CAAE,eAAA,CAAkBZ,EAAAA,GACrDY,CAAAA,CAAE,gBAAkB,CAAA,CAAA,CAEtB,IAAMS,CAAAA,CAAY,OAAOD,CAAAA,EAAiB,QAAA,EAAY,OAAO,QAAA,CAASA,CAAY,GAAKA,CAAAA,CAAe,CAAA,CAChGE,EAAWD,CAAAA,CACbD,CAAAA,CACA,IAAA,CAAK,GAAA,CAAItB,EAAAA,CAAqB,CAAA,EAAKc,EAAE,eAAA,CAAiBb,EAAiB,CAAA,CAItEsB,CAAAA,EAAWT,CAAAA,CAAE,eAAA,EAAA,CAClBA,EAAE,eAAA,CAAkBI,CAAAA,CAMpBJ,CAAAA,CAAE,gBAAA,CAAmBS,CAAAA,CACjBL,CAAAA,CAAMM,EACN,IAAA,CAAK,GAAA,CAAIV,EAAE,gBAAA,CAAkBI,CAAAA,CAAMM,CAAQ,CAAA,CAC/CV,CAAAA,CAAE,mBAAA,EAAA,CACFA,CAAAA,CAAE,eAAA,CAAkBI,EACtB,CAGA,eAAA,CAAgBpC,CAAAA,CAAc2C,CAAAA,CAAwB,CACpD,GAAI,CAACA,GAAY,CAAC,MAAA,CAAO,QAAA,CAASA,CAAQ,CAAA,CAAG,OAC7C,IAAMX,CAAAA,CAAI,IAAA,CAAK,YAAYhC,CAAI,CAAA,CAC/BgC,EAAE,SAAA,CAAYW,CAAAA,CACdX,CAAAA,CAAE,kBAAA,CAAqB,IAAA,CAAK,GAAA,GAC9B,CAQQ,kBAAA,EAA6B,CACnC,IAAMI,CAAAA,CAAM,IAAA,CAAK,KAAI,CACfQ,CAAAA,CAAmB,EAAC,CAC1B,IAAA,IAAWZ,CAAAA,IAAK,KAAK,MAAA,CAAO,MAAA,GACtBA,CAAAA,CAAE,SAAA,CAAY,GAAKI,CAAAA,CAAMJ,CAAAA,CAAE,kBAAA,EAAsBT,EAAAA,EACnDqB,CAAAA,CAAO,IAAA,CAAKZ,EAAE,SAAS,CAAA,CAG3B,OAAIY,CAAAA,CAAO,MAAA,CAAS,CAAA,CAAU,GAC9BA,CAAAA,CAAO,IAAA,CAAK,CAAClI,CAAAA,CAAGhG,CAAAA,GAAMgG,CAAAA,CAAIhG,CAAC,CAAA,CAEpBkO,CAAAA,CAAO,KAAK,KAAA,CAAA,CAAOA,CAAAA,CAAO,OAAS,CAAA,EAAK,CAAC,CAAC,CAAA,CACnD,CAGA,aAAA,CAAc5C,EAActH,CAAAA,CAAuB,CACjD,IAAMsJ,CAAAA,CAAI,IAAA,CAAK,MAAA,CAAO,IAAIhC,CAAI,CAAA,CAC9B,GAAI,CAACgC,CAAAA,CAAG,OAAO,MACf,IAAMI,CAAAA,CAAM,KAAK,GAAA,EAAI,CAMrB,GAHIJ,CAAAA,CAAE,gBAAA,CAAmBI,CAAAA,EAGrBJ,CAAAA,CAAE,mBAAA,EAAuB,CAAA,EAAKI,EAAMJ,CAAAA,CAAE,eAAA,CAAkB,GAAA,CAAQ,OAAO,MAAA,CAG3E,GAAItJ,EAAK,CACP,IAAMyJ,CAAAA,CAAUH,CAAAA,CAAE,WAAA,CAAY,GAAA,CAAItJ,CAAG,CAAA,CACrC,GAAIyJ,GAAWA,CAAAA,CAAQ,aAAA,CAAgBC,EAAK,OAAO,MACrD,CAGA,IAAMS,CAAAA,CAAO,IAAA,CAAK,oBAAmB,CACrC,OACE,EAAAA,CAAAA,CAAO,CAAA,EACPb,CAAAA,CAAE,UAAY,CAAA,EACdI,CAAAA,CAAMJ,CAAAA,CAAE,kBAAA,EAAsBT,EAAAA,EAC9BsB,CAAAA,CAAOb,EAAE,SAAA,CAAYR,EAAAA,CAMzB,CAeA,eAAA,CAAgBtJ,CAAAA,CAAiBQ,CAAAA,CAAwB,CACvD,IAAMoK,CAAAA,CAAoB,EAAC,CACrBC,CAAAA,CAAsB,GAC5B,IAAA,IAAW/C,CAAAA,IAAQ9H,CAAAA,CACb,IAAA,CAAK,aAAA,CAAc8H,CAAAA,CAAMtH,CAAG,CAAA,CAC9BoK,CAAAA,CAAQ,IAAA,CAAK9C,CAAI,CAAA,CAEjB+C,CAAAA,CAAU,KAAK/C,CAAI,CAAA,CAGvB,GAAI8C,CAAAA,CAAQ,MAAA,EAAU,EACpB,OAAO,CAAC,GAAGA,CAAAA,CAAS,GAAGC,CAAS,EAElC,IAAMX,CAAAA,CAAM,IAAA,CAAK,GAAA,EAAI,CAGfY,CAAAA,CAAUF,EACb,GAAA,CAAI,CAAC9C,CAAAA,CAAM1L,CAAAA,IAAO,CAAE,IAAA,CAAA0L,EAAM,CAAA,CAAA1L,CAAAA,CAAG,MAAO,IAAA,CAAK,SAAA,CAAU0L,EAAMoC,CAAG,CAAE,CAAA,CAAE,CAAA,CAChE,IAAA,CAAK,CAAC1H,EAAGhG,CAAAA,GAAMgG,CAAAA,CAAE,KAAA,CAAQhG,CAAAA,CAAE,KAAA,EAASgG,CAAAA,CAAE,EAAIhG,CAAAA,CAAE,CAAC,CAAA,CAC7C,GAAA,CAAKuO,CAAAA,EAAMA,CAAAA,CAAE,IAAI,CAAA,CACdC,CAAAA,CAAQ,KAAK,oBAAA,CAAqBJ,CAAAA,CAASV,CAAG,CAAA,CACpD,OAAIc,CAAAA,EAASF,CAAAA,CAAQ,CAAC,CAAA,GAAME,EACnB,CAACA,CAAAA,CAAO,GAAGF,CAAAA,CAAQ,MAAA,CAAQ7K,CAAAA,EAAMA,IAAM+K,CAAK,CAAA,CAAG,GAAGH,CAAS,CAAA,CAE7D,CAAC,GAAGC,CAAAA,CAAS,GAAGD,CAAS,CAClC,CAGQ,gBAAgBf,CAAAA,CAA2BI,CAAAA,CAAsB,CACvE,OACE,CAAC,CAACJ,GACFA,CAAAA,CAAE,aAAA,GAAkB,MAAA,EACpBA,CAAAA,CAAE,kBAAA,EAAsBN,EAAAA,EACxBU,EAAMJ,CAAAA,CAAE,gBAAA,EAAoBL,EAEhC,CAOQ,SAAA,CAAU3B,CAAAA,CAAcoC,EAAqB,CACnD,IAAMJ,EAAI,IAAA,CAAK,MAAA,CAAO,IAAIhC,CAAI,CAAA,CAC9B,OAAK,IAAA,CAAK,eAAA,CAAgBgC,CAAAA,CAAGI,CAAG,CAAA,CACzBJ,CAAAA,CAAG,aAAA,CADgCH,EAE5C,CAaQ,oBAAA,CAAqBiB,EAAmBV,CAAAA,CAAiC,CAC/E,IAAMe,CAAAA,CAAYf,CAAAA,CAAMR,EAAAA,CACpBwB,EACAC,CAAAA,CAAY,CAAA,CAAA,CAAA,CAChB,QAAWlL,CAAAA,IAAK2K,CAAAA,CAAS,CACvB,IAAMd,CAAAA,CAAI,IAAA,CAAK,WAAA,CAAY7J,CAAC,CAAA,CACtBmL,EAAQ,IAAA,CAAK,GAAA,CAAItB,CAAAA,CAAE,gBAAA,CAAkBA,CAAAA,CAAE,WAAW,EACpDsB,CAAAA,EAASH,CAAAA,EAAaG,CAAAA,CAAQD,CAAAA,GAChCD,CAAAA,CAAOjL,CAAAA,CACPkL,EAAYC,CAAAA,EAEhB,CACA,OAAIF,CAAAA,GAAM,IAAA,CAAK,YAAYA,CAAI,CAAA,CAAE,WAAA,CAAchB,CAAAA,CAAAA,CACxCgB,CACT,CACF,EAKaG,CAAAA,CAAmB,IAAIxB,EAAAA,CAEvByB,EAAAA,CAAoB,IAAIzB,EAAAA,CAkBxB0B,GAAN,KAAkB,CACf,MAAA,CAAStM,CAAAA,CAAO,UAAA,CAAW,mBAAA,CAEnC,UAAoB,CAGlB,OAFA,IAAA,CAAK,KAAA,EAAM,CAEP,IAAA,CAAK,QAAU,CAAA,CAAI,IAAA,EACrB,IAAA,CAAK,MAAA,EAAU,CAAA,CACR,IAAA,EAEF,KACT,CAEA,MAAA,EAAe,CACb,IAAA,CAAK,KAAA,EAAM,CACX,KAAK,MAAA,CAAS,IAAA,CAAK,GAAA,CACjBA,CAAAA,CAAO,UAAA,CAAW,mBAAA,CAClB,KAAK,MAAA,CAASA,CAAAA,CAAO,WAAW,qBAClC,EACF,CAGQ,KAAA,EAAc,CAChB,IAAA,CAAK,MAAA,CAASA,CAAAA,CAAO,UAAA,CAAW,sBAClC,IAAA,CAAK,MAAA,CAASA,CAAAA,CAAO,UAAA,CAAW,mBAAA,EAEpC,CAGA,IAAI,SAAA,EAAoB,CACtB,OAAO,IAAA,CAAK,MACd,CAGA,MAAMuM,CAAAA,CAASvM,CAAAA,CAAO,WAAW,mBAAA,CAA2B,CAC1D,KAAK,MAAA,CAASuM,EAChB,CACF,CAAA,CAGaC,EAAAA,CAAiB,IAAIF,GAqBlC,SAASG,EAAAA,CACPC,CAAAA,CACA7D,CAAAA,CACAkC,CAAAA,CACA4B,CAAAA,CACAC,EACQ,CACR,IAAMhL,CAAAA,CAAI5B,CAAAA,CAAO,UAAA,CACjB,GAAI,CAAC4B,CAAAA,CAAE,eAAA,EAAmBgL,EAAU,OAAOD,CAAAA,CAC3C,IAAME,CAAAA,CAAOH,CAAAA,CAAQ,kBAAA,CAAmB7D,CAAAA,CAAMkC,CAAU,CAAA,CACxD,OAAI8B,CAAAA,GAAS,MAAA,CAAkBF,CAAAA,CAGxB,IAAA,CAAK,IAAA,CACV,IAAA,CAAK,IAAIA,CAAAA,CAAe,IAAA,CAAK,GAAA,CAAI/K,CAAAA,CAAE,sBAAA,CAAwBA,CAAAA,CAAE,sBAAwBiL,CAAI,CAAC,CAC5F,CACF,CAKA,SAASC,GAAYJ,CAAAA,CAA4B7D,CAAAA,CAAcL,CAAAA,CAAQjH,CAAAA,CAAoB,CACrFiH,CAAAA,YAAaI,GACXJ,CAAAA,CAAE,WAAA,CAEJkE,CAAAA,CAAQ,eAAA,CAAgB7D,CAAAA,CAAML,CAAAA,CAAE,aAAe,MAAS,CAAA,CAExDkE,CAAAA,CAAQ,aAAA,CAAc7D,CAAAA,CAAMtH,CAAG,EAExBiH,CAAAA,YAAaE,CAAAA,CAEtBgE,EAAQ,aAAA,CAAc7D,CAAAA,CAAMtH,CAAG,CAAA,CAG/BmL,CAAAA,CAAQ,aAAA,CAAc7D,CAAI,EAE9B,CAOA,SAASkE,EAAAA,CACPL,CAAAA,CACA7D,CAAAA,CACAlB,CAAAA,CACAlK,CAAAA,CACM,CAEN,GADI,CAACA,CAAAA,EAAU,OAAOA,CAAAA,EAAW,QAAA,EAC7B,CAACkK,EAAO,QAAA,CAAS,+BAA+B,EAAG,OACvD,IAAMqF,EAASvP,CAAAA,CAAe,iBAAA,CAC1B,OAAOuP,CAAAA,EAAU,QAAA,EACnBN,CAAAA,CAAQ,gBAAgB7D,CAAAA,CAAMmE,CAAK,EAEvC,CAWA,SAASC,EAAAA,EAA6B,CACpC,GAAI,OAAO,YAAA,CAAiB,GAAA,CAC1B,OAAO,IAAI,aAAa,0CAAA,CAA4C,cAAc,EAEpF,IAAMC,CAAAA,CAAM,IAAI,KAAA,CAAM,0CAA0C,CAAA,CAChE,OAAAA,CAAAA,CAAI,IAAA,CAAO,eACJA,CACT,CAKA,SAAS/E,EAAAA,CAAoBpB,CAAAA,CAA0D,CAIrF,GADAA,CAAAA,CAAK,IAAA,CAAK,IAAA,CAAKA,CAAE,CAAA,CACb,OAAO,YAAY,OAAA,EAAY,UAAA,CACjC,OAAO,CAAE,MAAA,CAAQ,WAAA,CAAY,QAAQA,CAAE,CAAA,CAAG,OAAA,CAAS,IAAM,CAAC,CAAE,EAE9D,IAAMoG,CAAAA,CAAa,IAAI,eAAA,CACjBC,CAAAA,CAAQ,UAAA,CAAW,IAAMD,CAAAA,CAAW,KAAA,CAAMF,EAAAA,EAAqB,CAAA,CAAGlG,CAAE,EAC1E,OAAO,CAAE,OAAQoG,CAAAA,CAAW,MAAA,CAAQ,QAAS,IAAM,YAAA,CAAaC,CAAK,CAAE,CACzE,CAMA,SAAS9E,EAAAA,CACP+E,CAAAA,CACAC,CAAAA,CAC8C,CAC9C,GAAI,CAACA,EAAW,OAAO,CAAE,MAAA,CAAQD,CAAAA,CAAS,OAAA,CAAS,IAAM,CAAC,CAAE,CAAA,CAC5D,GAAI,OAAO,WAAA,CAAY,KAAQ,UAAA,CAC7B,OAAO,CAAE,MAAA,CAAQ,WAAA,CAAY,GAAA,CAAI,CAACA,CAAAA,CAASC,CAAS,CAAC,CAAA,CAAG,OAAA,CAAS,IAAM,CAAC,CAAE,CAAA,CAG5E,IAAMH,CAAAA,CAAa,IAAI,eAAA,CACvB,GAAIE,CAAAA,CAAQ,OAAA,CACV,OAAAF,CAAAA,CAAW,KAAA,CAAME,EAAQ,MAAM,CAAA,CACxB,CAAE,MAAA,CAAQF,CAAAA,CAAW,MAAA,CAAQ,QAAS,IAAM,CAAC,CAAE,CAAA,CAExD,GAAIG,CAAAA,CAAU,QACZ,OAAAH,CAAAA,CAAW,KAAA,CAAMG,CAAAA,CAAU,MAAM,CAAA,CAC1B,CAAE,MAAA,CAAQH,CAAAA,CAAW,OAAQ,OAAA,CAAS,IAAM,CAAC,CAAE,CAAA,CAGxD,IAAMI,CAAAA,CAAiB,IAAMJ,CAAAA,CAAW,MAAME,CAAAA,CAAQ,MAAM,CAAA,CACtDG,CAAAA,CAAmB,IAAML,CAAAA,CAAW,MAAMG,CAAAA,CAAU,MAAM,CAAA,CAChED,CAAAA,CAAQ,gBAAA,CAAiB,OAAA,CAASE,EAAgB,CAAE,IAAA,CAAM,IAAK,CAAC,CAAA,CAChED,EAAU,gBAAA,CAAiB,OAAA,CAASE,CAAAA,CAAkB,CAAE,IAAA,CAAM,IAAK,CAAC,CAAA,CAEpE,IAAMC,CAAAA,CAAU,IAAM,CACpBJ,CAAAA,CAAQ,oBAAoB,OAAA,CAASE,CAAc,CAAA,CACnDD,CAAAA,CAAU,mBAAA,CAAoB,OAAA,CAASE,CAAgB,EACzD,CAAA,CACA,OAAO,CAAE,MAAA,CAAQL,EAAW,MAAA,CAAQ,OAAA,CAAAM,CAAQ,CAC9C,CAQA,IAAMC,GAAc,MAClBrN,CAAAA,CACAsH,CAAAA,CACAC,CAAAA,CACA+F,CAAAA,CAAU3N,CAAAA,CAAO,QACjB4N,CAAAA,CAAc,KAAA,CACd9F,CAAAA,GACG,CACH,IAAMlD,CAAAA,CAAK,KAAK,KAAA,CAAM,IAAA,CAAK,QAAO,CAAI,GAAW,EAC3CiJ,CAAAA,CAAO,CACX,OAAA,CAAS,KAAA,CACT,MAAA,CAAAlG,CAAAA,CACA,OAAAC,CAAAA,CACA,EAAA,CAAAhD,CACF,CAAA,CAKM,CAAE,MAAA,CAAQqD,EAAS,OAAA,CAASC,CAAe,CAAA,CAAIC,EAAAA,CAAoBwF,CAAO,CAAA,CAC1E,CAAE,MAAA,CAAAvF,CAAAA,CAAQ,OAAA,CAASC,CAAa,CAAA,CAAIC,EAAAA,CAAaL,EAASH,CAAc,CAAA,CACxE2F,CAAAA,CAAU,IAAM,CACpBvF,CAAAA,GACAG,CAAAA,GACF,CAAA,CAEA,GAAI,CACF,IAAME,EAAM,MAAM,KAAA,CAAMlI,CAAAA,CAAK,CAC3B,MAAA,CAAQ,MAAA,CACR,KAAM,IAAA,CAAK,SAAA,CAAUwN,CAAI,CAAA,CACzB,OAAA,CAAS,CAAE,cAAA,CAAgB,kBAAA,CAAoB,GAAG3G,EAAAA,EAAwB,CAAA,CAC1E,OAAAkB,CACF,CAAC,CAAA,CAID,GAAIG,CAAAA,CAAI,MAAA,GAAW,IACjB,MAAM,IAAIK,EAAAA,CAAUvI,CAAAA,CAAK,uBAAA,CAAyB,CAChD,YAAayI,EAAAA,CAAkBP,CAAAA,CAAI,QAAQ,GAAA,CAAI,aAAa,CAAC,CAAA,CAC7D,WAAA,CAAa,CAAA,CACf,CAAC,CAAA,CAUH,GAAIA,EAAI,MAAA,EAAU,GAAA,EAAOA,CAAAA,CAAI,MAAA,CAAS,GAAA,CACpC,MAAM,IAAIK,EAAAA,CAAUvI,CAAAA,CAAK,CAAA,KAAA,EAAQkI,CAAAA,CAAI,MAAM,CAAA,MAAA,EAASlI,CAAG,CAAA,CAAE,CAAA,CAG3D,IAAM5C,CAAAA,CAAU,MAAM8K,EAAI,IAAA,EAAK,CAC/B,GACE,CAAC9K,CAAAA,EACD,OAAOA,EAAO,EAAA,CAAO,GAAA,EACrBA,CAAAA,CAAO,EAAA,GAAOmH,CAAAA,EACdnH,CAAAA,CAAO,UAAY,KAAA,CAEnB,MAAM,IAAI,KAAA,CAAM,qBAAqB,CAAA,CAEvC,GAAI,QAAA,GAAYA,CAAAA,CACd,OAAOA,CAAAA,CAAO,MAAA,CAEhB,GAAI,OAAA,GAAWA,CAAAA,CAAQ,CACrB,IAAM+K,CAAAA,CAAI/K,CAAAA,CAAO,MACjB,MAAI,SAAA,GAAa+K,CAAAA,EAAK,MAAA,GAAUA,CAAAA,CACxB,IAAIE,EAASF,CAAC,CAAA,CAEhB/K,CAAAA,CAAO,KACf,CAEA,MAAMA,CACR,CAAA,MAAS+K,CAAAA,CAAG,CAQV,GAPIA,CAAAA,YAAaE,GAIbF,CAAAA,YAAaI,EAAAA,EAGbd,CAAAA,EAAgB,OAAA,CAClB,MAAMU,CAAAA,CAER,GAAIoF,CAAAA,CACF,OAAOF,EAAAA,CAAYrN,CAAAA,CAAKsH,CAAAA,CAAQC,CAAAA,CAAQ+F,EAAS,KAAA,CAAO7F,CAAc,CAAA,CAExE,MAAMU,CACR,CAAA,OAAE,CACAiF,CAAAA,GACF,CACF,CAAA,CAGA,SAASK,IAA6B,CACpC,OAAOhH,EAAAA,CAAM,EAAA,CAAK,IAAA,CAAK,MAAA,GAAW,EAAE,CACtC,CA4BA,SAASiH,EAAAA,CAAoB3N,CAAAA,CA0Bd,CACb,GAAM,CACJ,MAAA,CAAAuH,CAAAA,CACA,MAAA,CAAAC,CAAAA,CACA,IAAArG,CAAAA,CACA,OAAA,CAAA8L,EACA,SAAA,CAAAW,CAAAA,CACA,cAAArB,CAAAA,CACA,eAAA,CAAAsB,CAAAA,CACA,UAAA,CAAAC,CAAAA,CACA,cAAA,CAAApG,EACA,YAAA,CAAAqG,CAAAA,CACA,QAAA,CAAApG,CACF,CAAA,CAAI3H,CAAAA,CACJ,OAAO,IAAI,OAAA,CAAW,CAAC4G,CAAAA,CAASoH,CAAAA,GAAW,CACzC,IAAIC,CAAAA,CAAO,KAAA,CACPC,CAAAA,CAAc,CAAA,CACdC,CAAAA,CAAa,KAAA,CAKbC,EAAiB,KAAA,CACjBC,CAAAA,CACAC,EAAAA,CACAC,EAAAA,CAAe,CAAA,CACbC,CAAAA,CAAiC,EAAC,CAIlCC,CAAAA,CAAUC,CAAAA,EAAuB,CACrC,GAAI,CAAAT,EACJ,CAAAA,CAAAA,CAAO,IAAA,CACHK,EAAAA,GAAe,MAAA,GACjB,YAAA,CAAaA,EAAU,CAAA,CACvBA,EAAAA,CAAa,QAEf,IAAA,IAAWtR,CAAAA,IAAKwR,EACTxR,CAAAA,CAAE,MAAA,CAAO,OAAA,EAASA,CAAAA,CAAE,KAAA,EAAM,CAEjC0R,IAAO,CACT,CAAA,CAEMC,CAAAA,CAAW,CAAClG,CAAAA,CAAcmG,CAAAA,GAAqB,CACnDV,CAAAA,EAAAA,CACA,IAAMnB,EAAAA,CAAa,IAAI,eAAA,CACvByB,CAAAA,CAAY,KAAKzB,EAAU,CAAA,CAG3B,IAAM8B,EAAAA,CAAS3G,EAAAA,CAAa6E,GAAW,MAAA,CAAQrF,CAAc,CAAA,CACvDoH,EAAAA,CAAazC,EAAAA,CACjBL,CAAAA,CACAvD,EACAlB,CAAAA,CACAgF,CAAAA,CACAsB,CACF,CAAA,CACMrO,EAAAA,CAAQ,IAAA,CAAK,KAAI,CAClBoP,CAAAA,GAASL,EAAAA,CAAe/O,EAAAA,CAAAA,CAC7B8N,EAAAA,CAAY7E,CAAAA,CAAMlB,EAAQC,CAAAA,CAAQsH,EAAAA,CAAY,MAAOD,EAAAA,CAAO,MAAM,EAC/D,IAAA,CAAM1G,EAAAA,EAAQ,CAIb,GAHA0G,EAAAA,CAAO,OAAA,GACPX,CAAAA,EAAAA,CACKU,CAAAA,GAASR,CAAAA,CAAiB,IAAA,CAAA,CAC3B,CAAAH,CAAAA,CACJ,IAAItG,CAAAA,EAAY,CAACA,CAAAA,CAASQ,EAAG,CAAA,CAAG,CAS9B,GAJA6D,CAAAA,CAAiB,uBAAA,CAAwBvD,EAAMtH,CAAG,CAAA,CAClDkN,EAAY,IAAI,KAAA,CACd,CAAA,yCAAA,EAA4C9G,CAAM,CAAA,MAAA,EAASkB,CAAI,EACjE,CAAA,CACI,CAACmG,CAAAA,EAAW,CAACT,CAAAA,CAAY,CAC3BM,EAAO,IAAMT,CAAAA,CAAOK,CAAS,CAAC,CAAA,CAC9B,MACF,CACIH,CAAAA,GAAgB,CAAA,EAClBO,EAAO,IAAMT,CAAAA,CAAOK,CAAS,CAAC,CAAA,CAEhC,MACF,CACArC,CAAAA,CAAiB,aAAA,CAAcvD,EAAMtH,CAAAA,CAAK,IAAA,CAAK,GAAA,EAAI,CAAI3B,EAAAA,CAAO+H,CAAM,EACpEoF,EAAAA,CAAmBX,CAAAA,CAAkBvD,CAAAA,CAAMlB,CAAAA,CAAQY,EAAG,CAAA,CAClDyG,EACGR,CAAAA,EAKHpC,CAAAA,CAAiB,sBAAsBiB,CAAAA,CAAS,IAAA,CAAK,KAAI,CAAIsB,EAAAA,CAAchH,CAAM,CAAA,CAEzE4G,CAAAA,EACV/B,EAAAA,CAAe,QAAO,CAExBqC,CAAAA,CAAO,IAAM7H,CAAAA,CAAQuB,EAAQ,CAAC,GAChC,CAAC,CAAA,CACA,KAAA,CAAOC,EAAAA,EAAM,CAIZ,GAHAyG,GAAO,OAAA,EAAQ,CACfX,IACKU,CAAAA,GAASR,CAAAA,CAAiB,MAC3B,CAAAH,CAAAA,CACJ,CAAA,GAAIvG,CAAAA,EAAgB,OAAA,CAAS,CAE3B+G,EAAO,IAAMT,CAAAA,CAAO5F,EAAC,CAAC,CAAA,CACtB,MACF,CACA,GAAIA,EAAAA,YAAaE,CAAAA,EAAY,CAACmB,EAAAA,CAAoBrB,EAAAA,CAAE,KAAMA,EAAAA,CAAE,OAAO,CAAA,CAAG,CAEpEqG,CAAAA,CAAO,IAAMT,EAAO5F,EAAC,CAAC,CAAA,CACtB,MACF,CAKA,GAHAsE,GAAYV,CAAAA,CAAkBvD,CAAAA,CAAML,EAAAA,CAAGjH,CAAG,CAAA,CAC1C6K,CAAAA,CAAiB,kBAAkBvD,CAAAA,CAAM,IAAA,CAAK,GAAA,EAAI,CAAIjJ,EAAAA,CAAO+H,CAAM,EACnE8G,CAAAA,CAAYjG,EAAAA,CACR,CAACwG,CAAAA,EAAW,CAACT,EAAY,CAE3BM,CAAAA,CAAO,IAAMT,CAAAA,CAAO5F,EAAC,CAAC,EACtB,MACF,CACI8F,CAAAA,GAAgB,CAAA,EAClBO,CAAAA,CAAO,IAAMT,EAAOK,CAAS,CAAC,EAAA,CAGlC,CAAC,EACL,CAAA,CAEAM,EAAS1B,CAAAA,CAAS,KAAK,EAUvB,IAAMR,CAAAA,CAAOT,EAAiB,kBAAA,CAAmBiB,CAAAA,CAAS1F,CAAM,CAAA,EAAK,CAAA,CAC/DwH,CAAAA,CAAgB1C,GACpBL,CAAAA,CACAiB,CAAAA,CACA1F,CAAAA,CACAgF,CAAAA,CACAsB,CACF,CAAA,CACMmB,EAAQ,IAAA,CAAK,GAAA,CACjB,IAAA,CAAK,GAAA,CAAIpP,CAAAA,CAAO,UAAA,CAAW,kBAAmBA,CAAAA,CAAO,UAAA,CAAW,iBAAmB6M,CAAI,CAAA,CACvF,GAAMsC,CACR,CAAA,CACAT,EAAAA,CAAa,UAAA,CAAW,IAAM,CAK5B,GAJAA,EAAAA,CAAa,MAAA,CACTL,CAAAA,EAAQvG,CAAAA,EAAgB,OAAA,EAGxB,IAAA,CAAK,KAAI,EAAKoG,CAAAA,CAAY,OAK9B,IAAMmB,CAAAA,CAAOrB,CAAAA,CAAU,OAAQhN,EAAAA,EAAMoL,CAAAA,CAAiB,cAAcpL,EAAAA,CAAGO,CAAG,CAAC,CAAA,CAC3E,GAAI8N,CAAAA,CAAK,MAAA,GAAW,CAAA,CAAG,OACvB,IAAMxQ,CAAAA,CAASwQ,CAAAA,CAAK,IAAA,CAAK,KAAA,CAAM,IAAA,CAAK,MAAA,GAAWA,CAAAA,CAAK,MAAM,CAAC,CAAA,CAEtD7C,EAAAA,CAAe,QAAA,KACpB+B,CAAAA,CAAa,IAAA,CACbJ,EAAatP,CAAM,CAAA,CACnBkQ,EAASlQ,CAAAA,CAAQ,IAAI,CAAA,EACvB,CAAA,CAAGuQ,CAAK,EACV,CAAC,CACH,CA4CO,IAAME,CAAAA,CAAU,MACrB3H,CAAAA,CACAC,EAAyB,EAAC,CAC1B+F,CAAAA,CACA4B,CAAAA,CAAQvP,CAAAA,CAAO,KAAA,CACfoI,EACAL,CAAAA,GACe,CACf,GAAI,CAAC,KAAA,CAAM,QAAQ/H,CAAAA,CAAO,KAAK,CAAA,CAC7B,MAAM,IAAI,KAAA,CAAM,8BAA8B,CAAA,CAEhD,GAAIA,CAAAA,CAAO,KAAA,CAAM,MAAA,GAAW,CAAA,CAC1B,MAAM,IAAI,KAAA,CAAM,uBAAuB,CAAA,CAKzC,IAAMiO,CAAAA,CAAkBN,IAAY,MAAA,CAC9B6B,CAAAA,CAAU7B,GAAW3N,CAAAA,CAAO,OAAA,CAC5BuB,EAAMuI,EAAAA,CAAMnC,CAAM,CAAA,CAgBlBD,CAAAA,CAAQxH,EAAAA,CACd,GAAIwH,GAAST,EAAAA,EAAiBS,CAAAA,CAAM,SAAA,CAAU,GAAA,CAAIC,CAAM,CAAA,CACtD,GAAI,IAAA,CAAK,GAAA,EAAI,CAAIH,EAAAA,CACfL,EAAAA,CAAc,OAAA,EAAA,CAAA,QAEV,CACF,IAAMsI,CAAAA,CAAS,MAAMhI,EAAAA,CAAgBC,CAAAA,CAAOC,EAAQC,CAAAA,CAAQ4H,CAAAA,CAASpH,CAAAA,CAAQL,CAAQ,CAAA,CACrF,OAAAZ,GAAc,MAAA,EAAA,CACdI,EAAAA,CAAyB,CAAA,CAClBkI,CACT,CAAA,MAASjH,CAAAA,CAAY,CACnB,GAAIJ,CAAAA,EAAQ,OAAA,CAAS,MAAMI,CAAAA,CAC3BrB,EAAAA,CAAc,WACd,IAAME,CAAAA,CAAiBmB,aAAapB,EAAAA,CAAYoB,CAAAA,CAAE,OAAS,WAAA,CAC3DrB,EAAAA,CAAc,gBAAA,CAAiBE,CAAM,CAAA,CAAA,CAAKF,EAAAA,CAAc,iBAAiBE,CAAM,CAAA,EAAK,CAAA,EAAK,CAAA,CACrFA,CAAAA,GAAW,UAAA,CAIbE,GAAyB,CAAA,CAChB,EAAEA,EAAAA,EAA0BG,CAAAA,CAAM,gBAAA,GAC3CF,EAAAA,CAAiB,KAAK,GAAA,EAAI,CAAIE,EAAM,UAAA,CACpCH,EAAAA,CAAyB,GAE7B,CAIJ,IAAMmI,CAAAA,CAAW,IAAA,CAAK,GAAA,EAAI,CAAI1P,EAAO,UAAA,CAAW,iBAAA,CAAoBwP,CAAAA,CAI9DG,CAAAA,CAAe,IAAI,GAAA,CACrBlB,EAEJ,IAAA,IAASmB,CAAAA,CAAU,CAAA,CAAGA,CAAAA,EAAWL,CAAAA,EAC3B,EAAAK,EAAU,CAAA,EAAK,IAAA,CAAK,KAAI,EAAKF,CAAAA,CAAAA,CADKE,IAAW,CAMjD,IAAMC,CAAAA,CAAezD,CAAAA,CAAiB,eAAA,CAAgBpM,CAAAA,CAAO,MAAOuB,CAAG,CAAA,CAEnEsH,CAAAA,CAAOgH,CAAAA,CAAa,IAAA,CAAM7O,CAAAA,EAAM,CAAC2O,CAAAA,CAAa,GAAA,CAAI3O,CAAC,CAAC,CAAA,CACnD6H,CAAAA,GACH8G,EAAa,KAAA,EAAM,CACnB9G,EAAOgH,CAAAA,CAAa,CAAC,GAEvBF,CAAAA,CAAa,GAAA,CAAI9G,CAAI,CAAA,CAKrB,IAAImF,CAAAA,CAAsB,EAAC,CAU3B,GAREhO,CAAAA,CAAO,UAAA,CAAW,KAAA,EAClBoM,CAAAA,CAAiB,mBAAmBvD,CAAAA,CAAMlB,CAAM,CAAA,GAAM,MAAA,GAEtDqG,CAAAA,CAAY6B,CAAAA,CACT,OAAQ7O,CAAAA,EAAM,CAAC2O,EAAa,GAAA,CAAI3O,CAAC,GAAKoL,CAAAA,CAAiB,aAAA,CAAcpL,CAAAA,CAAGO,CAAG,CAAC,CAAA,CAC5E,MAAM,CAAA,CAAG,CAAC,CAAA,CAAA,CAGXyM,CAAAA,CAAU,MAAA,CAAS,CAAA,CACrB,GAAI,CAGF,OAAO,MAAMD,EAAAA,CAAoB,CAC/B,MAAA,CAAApG,EACA,MAAA,CAAAC,CAAAA,CACA,IAAArG,CAAAA,CACA,OAAA,CAASsH,EACT,SAAA,CAAAmF,CAAAA,CACA,aAAA,CAAewB,CAAAA,CACf,eAAA,CAAAvB,CAAAA,CACA,WAAYyB,CAAAA,CACZ,cAAA,CAAgBtH,CAAAA,CAChB,YAAA,CAAepH,CAAAA,EAAM2O,CAAAA,CAAa,IAAI3O,CAAC,CAAA,CACvC,QAAA,CAAA+G,CACF,CAAC,CACH,OAASS,CAAAA,CAAQ,CAIf,GAHIA,CAAAA,YAAaE,CAAAA,EAAY,CAACmB,EAAAA,CAAoBrB,CAAAA,CAAE,IAAA,CAAMA,CAAAA,CAAE,OAAO,CAAA,EAG/DJ,GAAQ,OAAA,CACV,MAAMI,CAAAA,CAERiG,CAAAA,CAAYjG,CAAAA,CACRoH,CAAAA,CAAUL,GACZ,MAAMzB,EAAAA,EAAY,CAEpB,QACF,CAGF,IAAMgC,EAAY,IAAA,CAAK,GAAA,EAAI,CAC3B,GAAI,CACF,IAAMvH,EAAM,MAAMmF,EAAAA,CAChB7E,CAAAA,CACAlB,CAAAA,CACAC,CAAAA,CACA6E,EAAAA,CAAuBL,EAAkBvD,CAAAA,CAAMlB,CAAAA,CAAQ6H,CAAAA,CAASvB,CAAe,CAAA,CAC/E,CAAA,CAAA,CACA7F,CACF,CAAA,CACA,GAAIL,CAAAA,EAAY,CAACA,CAAAA,CAASQ,CAAG,EAAG,CAK9B6D,CAAAA,CAAiB,wBAAwBvD,CAAAA,CAAMtH,CAAG,EAClDkN,CAAAA,CAAY,IAAI,KAAA,CAAM,CAAA,yCAAA,EAA4C9G,CAAM,CAAA,MAAA,EAASkB,CAAI,CAAA,CAAE,CAAA,CACnF+G,CAAAA,CAAUL,CAAAA,EACZ,MAAMzB,EAAAA,GAER,QACF,CACA,OAAA1B,CAAAA,CAAiB,aAAA,CAAcvD,CAAAA,CAAMtH,EAAK,IAAA,CAAK,GAAA,GAAQuO,CAAAA,CAAWnI,CAAM,EAExE6E,EAAAA,CAAe,MAAA,EAAO,CACtBO,EAAAA,CAAmBX,CAAAA,CAAkBvD,CAAAA,CAAMlB,EAAQY,CAAG,CAAA,CAC/CA,CACT,CAAA,MAASC,CAAAA,CAAQ,CAYf,GAPIA,CAAAA,YAAaE,CAAAA,EACX,CAACmB,EAAAA,CAAoBrB,CAAAA,CAAE,IAAA,CAAMA,EAAE,OAAO,CAAA,EAMxCJ,GAAQ,OAAA,CACV,MAAMI,EAERsE,EAAAA,CAAYV,CAAAA,CAAkBvD,CAAAA,CAAML,CAAAA,CAAGjH,CAAG,CAAA,CAK1C6K,EAAiB,iBAAA,CAAkBvD,CAAAA,CAAM,IAAA,CAAK,GAAA,EAAI,CAAIiH,CAAAA,CAAWnI,CAAM,CAAA,CACvE8G,CAAAA,CAAYjG,CAAAA,CAGRoH,CAAAA,CAAUL,CAAAA,EACZ,MAAMzB,KAEV,CACF,CAEA,MAAMW,CACR,EAcasB,EAAAA,CAAmB,MAC9BpI,CAAAA,CACAC,CAAAA,CAAyB,EAAC,CAC1B+F,EAAU3N,CAAAA,CAAO,gBAAA,CACjBoI,CAAAA,GACe,CACf,GAAI,CAAC,MAAM,OAAA,CAAQpI,CAAAA,CAAO,KAAK,CAAA,CAC7B,MAAM,IAAI,MAAM,8BAA8B,CAAA,CAEhD,GAAIA,CAAAA,CAAO,KAAA,CAAM,SAAW,CAAA,CAC1B,MAAM,IAAI,KAAA,CAAM,uBAAuB,CAAA,CAEzC,IAAMuB,CAAAA,CAAMuI,EAAAA,CAAMnC,CAAM,CAAA,CAElBqI,CAAAA,CAAa,IAAI,IACnBvB,CAAAA,CAEJ,IAAA,IAASmB,CAAAA,CAAU,CAAA,CAAGA,CAAAA,CAAU5P,CAAAA,CAAO,MAAM,MAAA,CAAQ4P,CAAAA,EAAAA,CAAW,CAG9D,IAAM/G,CAAAA,CADeuD,EAAiB,eAAA,CAAgBpM,CAAAA,CAAO,KAAA,CAAOuB,CAAG,CAAA,CAC7C,IAAA,CAAMP,GAAM,CAACgP,CAAAA,CAAW,GAAA,CAAIhP,CAAC,CAAC,CAAA,CACxD,GAAI,CAAC6H,CAAAA,CAAM,MAEX,GADAmH,CAAAA,CAAW,GAAA,CAAInH,CAAI,CAAA,CACfT,CAAAA,EAAQ,QACV,MAAM,IAAI,MAAM,SAAS,CAAA,CAE3B,GAAI,CACF,IAAMG,CAAAA,CAAM,MAAMmF,EAAAA,CAAY7E,CAAAA,CAAMlB,CAAAA,CAAQC,CAAAA,CAAQ+F,CAAAA,CAAS,CAAA,CAAA,CAAOvF,CAAM,CAAA,CAM1E,OAAAgE,CAAAA,CAAiB,aAAA,CAAcvD,CAAAA,CAAMtH,CAAG,EACjCgH,CACT,CAAA,MAASC,CAAAA,CAAQ,CAgBf,GAdIA,CAAAA,YAAaE,GAGbN,CAAAA,EAAQ,OAAA,GAGZ0E,EAAAA,CAAYV,CAAAA,CAAkBvD,CAAAA,CAAML,CAAAA,CAAGjH,CAAG,CAAA,CAC1CkN,CAAAA,CAAYjG,CAAAA,CAOR,CAACiB,EAAAA,CAAuBjB,CAAC,GAC3B,MAAMA,CAEV,CACF,CAEA,MAAMiG,CACR,EAIMwB,EAAAA,CAAyC,CAC7C,QAAS,cAAA,CACT,KAAA,CAAO,aACP,KAAA,CAAO,YAAA,CACP,QAAA,CAAU,eAAA,CACV,SAAA,CAAW,gBAAA,CACX,WAAY,iBAAA,CACZ,aAAA,CAAe,kBAAA,CACf,MAAA,CAAQ,SAAA,CACR,MAAA,CAAQ,aACV,EAgCA,eAAsBC,EAAAA,CACpB3O,CAAAA,CACA4O,CAAAA,CACAvI,CAAAA,CACA+F,EACA4B,CAAAA,CAAQvP,CAAAA,CAAO,MACfoI,CAAAA,CACc,CACd,GAAI,CAAC,KAAA,CAAM,OAAA,CAAQpI,CAAAA,CAAO,SAAS,CAAA,CACjC,MAAM,IAAI,KAAA,CAAM,kCAAkC,CAAA,CAEpD,GAAIA,CAAAA,CAAO,UAAU,MAAA,GAAW,CAAA,CAC9B,MAAM,IAAI,KAAA,CAAM,2BAA2B,EAK7C,IAAMiO,CAAAA,CAAkBN,IAAY,MAAA,CAC9B6B,CAAAA,CAAU7B,GAAW3N,CAAAA,CAAO,OAAA,CAC5B0P,CAAAA,CAAW,IAAA,CAAK,GAAA,EAAI,CAAI1P,EAAO,UAAA,CAAW,iBAAA,CAAoBwP,CAAAA,CAI9DY,CAAAA,CAAiB,CAAA,EAAG7O,CAAG,IAAI4O,CAAQ,CAAA,CAAA,CAKnCE,CAAAA,CACJrQ,CAAAA,CAAO,cAAA,GAAiBuB,CAAG,GAAG,MAAA,CAC1BvB,CAAAA,CAAO,eAAeuB,CAAG,CAAA,CACzBvB,EAAO,SAAA,CACP2P,CAAAA,CAAe,IAAI,GAAA,CACrBlB,CAAAA,CAEA6B,CAAAA,CAAkB,MAEtB,IAAA,IAASV,CAAAA,CAAU,CAAA,CAAGA,CAAAA,EAAWL,CAAAA,EAC3B,EAAAK,EAAU,CAAA,EAAK,IAAA,CAAK,GAAA,EAAI,EAAKF,CAAAA,CAAAA,CADKE,CAAAA,EAAAA,CAAW,CAMjD,IAAMC,CAAAA,CAAexD,GAAkB,eAAA,CAAgBgE,CAAAA,CAAU9O,CAAG,CAAA,CAChEsH,CAAAA,CAAOgH,CAAAA,CAAa,IAAA,CAAM7O,CAAAA,EAAM,CAAC2O,EAAa,GAAA,CAAI3O,CAAC,CAAC,CAAA,CACnD6H,CAAAA,GACH8G,CAAAA,CAAa,OAAM,CACnB9G,CAAAA,CAAOgH,CAAAA,CAAa,CAAC,CAAA,CAAA,CAEvBF,CAAAA,CAAa,IAAI9G,CAAI,CAAA,CACrB,IAAM0H,CAAAA,CAAU1H,CAAAA,CAAOoH,GAAW1O,CAAG,CAAA,CACjCiP,CAAAA,CAAOL,CAAAA,CACLM,EAAAA,CAAW7I,CAAAA,EAAW,EAAC,CACvB8I,EAAAA,CAAsB,IAAI,GAAA,CAGhC,MAAA,CAAO,OAAA,CAAQD,EAAQ,CAAA,CAAE,OAAA,CAAQ,CAAC,CAAC7N,CAAAA,CAAKrE,EAAK,IAAM,CAC7CiS,CAAAA,CAAK,SAAS,CAAA,CAAA,EAAI5N,CAAG,GAAG,CAAA,GAC1B4N,CAAAA,CAAOA,CAAAA,CAAK,OAAA,CAAQ,CAAA,CAAA,EAAI5N,CAAG,IAAK,kBAAA,CAAmB,MAAA,CAAOrE,EAAK,CAAC,CAAC,CAAA,CACjEmS,GAAoB,GAAA,CAAI9N,CAAG,CAAA,EAE/B,CAAC,CAAA,CACD,IAAMvC,EAAM,IAAI,GAAA,CAAIkQ,CAAAA,CAAUC,CAAI,CAAA,CAYlC,GAVA,OAAO,OAAA,CAAQC,EAAQ,CAAA,CAAE,OAAA,CAAQ,CAAC,CAAC7N,EAAKrE,EAAK,CAAA,GAAM,CAC5CmS,EAAAA,CAAoB,GAAA,CAAI9N,CAAG,IAC1B,KAAA,CAAM,OAAA,CAAQrE,EAAK,CAAA,CACrBA,EAAAA,CAAM,OAAA,CAASiC,IAAMH,CAAAA,CAAI,YAAA,CAAa,OAAOuC,CAAAA,CAAK,MAAA,CAAOpC,EAAC,CAAC,CAAC,CAAA,CAE5DH,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAIuC,EAAK,MAAA,CAAOrE,EAAK,CAAC,CAAA,EAG7C,CAAC,CAAA,CAEG6J,GAAQ,OAAA,CACV,MAAM,IAAI,KAAA,CAAM,SAAS,CAAA,CAE3BkI,EAAkB,KAAA,CAGlB,GAAM,CAAE,MAAA,CAAQrI,CAAAA,CAAS,QAASC,CAAe,CAAA,CAAIC,EAAAA,CACnDsE,EAAAA,CAAuBJ,EAAAA,CAAmBxD,CAAAA,CAAMuH,EAAgBZ,CAAAA,CAASvB,CAAe,CAC1F,CAAA,CACM,CAAE,MAAA,CAAQ0C,EAAY,OAAA,CAAStI,CAAa,CAAA,CAAIC,EAAAA,CAAaL,CAAAA,CAASG,CAAM,EAC5EwI,CAAAA,CAAc,IAAM,CAAE1I,CAAAA,EAAe,CAAGG,IAAe,CAAA,CACvDwI,CAAAA,CAAgB,IAAA,CAAK,GAAA,EAAI,CAC/B,GAAI,CACF,IAAMC,CAAAA,CAAW,MAAM,KAAA,CAAMzQ,CAAAA,CAAI,UAAS,CAAG,CAC3C,MAAA,CAAQsQ,CAAAA,CACR,OAAA,CAASzJ,EAAAA,EACX,CAAC,CAAA,CACD,GAAI4J,CAAAA,CAAS,MAAA,GAAW,GAAA,CACtB,MAAM,IAAI,KAAA,CAAM,6CAA6C,CAAA,CAE/D,GAAIA,CAAAA,CAAS,SAAW,GAAA,CAEtB,MAAAzE,EAAAA,CAAkB,eAAA,CAChBxD,CAAAA,CACAC,EAAAA,CAAkBgI,EAAS,OAAA,CAAQ,GAAA,CAAI,aAAa,CAAC,CAAA,EAAK,KAAA,CAC5D,EACAR,CAAAA,CAAkB,CAAA,CAAA,CACZ,IAAI,KAAA,CAAM,CAAA,yBAAA,EAA4BzH,CAAI,CAAA,CAAE,CAAA,CAEpD,GAAIiI,CAAAA,CAAS,MAAA,GAAW,GAAA,CACtB,MAAAzE,EAAAA,CAAkB,aAAA,CAAcxD,CAAAA,CAAMtH,CAAG,CAAA,CACzC+O,CAAAA,CAAkB,GACZ,IAAI,KAAA,CAAM,CAAA,kCAAA,EAAqCzH,CAAI,CAAA,CAAE,CAAA,CAE7D,GAAI,CAACiI,CAAAA,CAAS,GACZ,MAAAzE,EAAAA,CAAkB,cAAcxD,CAAAA,CAAMtH,CAAG,CAAA,CACzC+O,CAAAA,CAAkB,CAAA,CAAA,CACZ,IAAI,MAAM,CAAA,KAAA,EAAQQ,CAAAA,CAAS,MAAM,CAAA,MAAA,EAASjI,CAAI,CAAA,CAAE,EAExD,OAAAwD,EAAAA,CAAkB,aAAA,CAAcxD,CAAAA,CAAMtH,CAAAA,CAAK,IAAA,CAAK,KAAI,CAAIsP,CAAAA,CAAeT,CAAc,CAAA,CAC9EU,CAAAA,CAAS,MAClB,CAAA,MAAStI,CAAAA,CAAQ,CASf,GAPIA,CAAAA,EAAG,SAAS,QAAA,CAAS,UAAU,CAAA,EAO/BJ,CAAAA,EAAQ,OAAA,CACV,MAAMI,EAGH8H,CAAAA,EACHjE,EAAAA,CAAkB,aAAA,CAAcxD,CAAAA,CAAMtH,CAAG,CAAA,CAM3C8K,GAAkB,iBAAA,CAAkBxD,CAAAA,CAAM,IAAA,CAAK,GAAA,EAAI,CAAIgI,CAAAA,CAAeT,CAAc,CAAA,CACpF3B,CAAAA,CAAYjG,CAAAA,CAERoH,CAAAA,CAAUL,CAAAA,EACZ,MAAMzB,KAEV,CAAA,OAAE,CACA8C,CAAAA,GACF,CACF,CAEA,MAAMnC,CACR,CAWO,IAAMsC,EAAAA,CAAiB,MAC5BpJ,EACAC,CAAAA,CAAyB,GACzBoJ,CAAAA,CAAS,CAAA,CACT5I,IACe,CACf,GAAI,CAAC,KAAA,CAAM,OAAA,CAAQpI,CAAAA,CAAO,KAAK,CAAA,CAC7B,MAAM,IAAI,KAAA,CAAM,8BAA8B,CAAA,CAEhD,GAAIgR,CAAAA,CAAShR,CAAAA,CAAO,KAAA,CAAM,MAAA,CACxB,MAAM,IAAI,MAAM,8BAA8B,CAAA,CAWhD,IAAIiR,CAAAA,CAAAA,CARkBC,CAAAA,EAAkB,CACtC,IAAM3N,CAAAA,CAAI,CAAC,GAAG2N,CAAG,CAAA,CACjB,QAAS/T,CAAAA,CAAIoG,CAAAA,CAAE,MAAA,CAAS,CAAA,CAAGpG,CAAAA,CAAI,CAAA,CAAGA,IAAK,CACrC,IAAMgU,CAAAA,CAAI,IAAA,CAAK,KAAA,CAAM,IAAA,CAAK,QAAO,EAAKhU,CAAAA,CAAI,EAAE,CAAA,CAC5C,CAACoG,EAAEpG,CAAC,CAAA,CAAGoG,CAAAA,CAAE4N,CAAC,CAAC,CAAA,CAAI,CAAC5N,CAAAA,CAAE4N,CAAC,CAAA,CAAG5N,CAAAA,CAAEpG,CAAC,CAAC,EAC5B,CACA,OAAOoG,CACT,CAAA,EAC4BvD,CAAAA,CAAO,KAAK,EACpCoR,CAAAA,CAAmB,IAAA,CAAK,IAAIJ,CAAAA,CAAQC,CAAAA,CAAS,MAAM,CAAA,CACnDI,CAAAA,CAAoB,EAAC,CACzB,KAAOD,CAAAA,CAAmB,GAAKH,CAAAA,CAAS,MAAA,CAAS,CAAA,EAAG,CAElD,IAAMK,CAAAA,CAAaL,EAAS,MAAA,CAAO,CAAA,CAAGG,CAAgB,CAAA,CAChDG,CAAAA,CAA2B,GAC3BC,CAAAA,CAAsB,GAE5B,IAAA,IAASrU,CAAAA,CAAI,EAAGA,CAAAA,CAAImU,CAAAA,CAAW,MAAA,CAAQnU,CAAAA,EAAAA,CACrCoU,CAAAA,CAAS,IAAA,CACP7D,GAAY4D,CAAAA,CAAWnU,CAAC,CAAA,CAAGwK,CAAAA,CAAQC,CAAAA,CAAQ,MAAA,CAAW,KAAMQ,CAAM,CAAA,CAC/D,IAAA,CAAMpG,CAAAA,EAASwP,CAAAA,CAAa,IAAA,CAAKxP,CAAI,CAAC,CAAA,CACtC,MAAM,IAAM,CAAC,CAAC,CACnB,CAAA,CAEF,MAAM,OAAA,CAAQ,GAAA,CAAIuP,CAAQ,EAC1BF,CAAAA,CAAW,IAAA,CAAK,GAAGG,CAAY,CAAA,CAE/B,IAAMC,EAAkBC,EAAAA,CAAcL,CAAAA,CAAYL,CAAM,CAAA,CACxD,GAAIS,CAAAA,CACF,OAAOA,CAAAA,CAIT,GADAL,EAAmB,IAAA,CAAK,GAAA,CAAIJ,EAAQC,CAAAA,CAAS,MAAM,CAAA,CAC/CG,CAAAA,GAAqB,CAAA,CACvB,MAAM,IAAI,KAAA,CAAM,0BAA0B,CAE9C,CACA,MAAM,IAAI,MAAM,wBAAwB,CAC1C,EAEA,SAASM,EAAAA,CAAcC,CAAAA,CAAgBX,EAAgB,CACrD,IAAMY,CAAAA,CAAe,IAAI,GAAA,CACzB,IAAA,IAAWnU,KAAUkU,CAAAA,CAAS,CAC5B,IAAM/O,CAAAA,CAAM,IAAA,CAAK,SAAA,CAAUnF,CAAM,CAAA,CAC5BmU,CAAAA,CAAa,GAAA,CAAIhP,CAAG,CAAA,EACvBgP,CAAAA,CAAa,IAAIhP,CAAAA,CAAK,EAAE,CAAA,CAE1BgP,CAAAA,CAAa,GAAA,CAAIhP,CAAG,CAAA,CAAG,IAAA,CAAKnF,CAAM,EACpC,CACA,IAAMoU,CAAAA,CAAiB,KAAA,CAAM,IAAA,CAAKD,CAAAA,CAAa,MAAA,EAAQ,EAAE,IAAA,CAAME,CAAAA,EAAUA,CAAAA,CAAM,MAAA,EAAUd,CAAM,CAAA,CAC/F,OAAOa,CAAAA,CAAiBA,CAAAA,CAAe,CAAC,CAAA,CAAI,IAC9C,KCh5DME,EAAAA,CAAU1P,mBAAAA,CAAWrC,EAAO,QAAQ,CAAA,CAW7BgS,GAAN,MAAMC,CAAY,CACvB,WAAA,CAEA,UAAA,CAAqB,GAAA,CAEb,KAER,WAAA,CAAYC,CAAAA,CAA8B,CACpCA,CAAAA,EAAS,WAAA,GACPA,CAAAA,CAAQ,uBAAuBD,CAAAA,EACjC,IAAA,CAAK,WAAA,CAAcC,CAAAA,CAAQ,WAAA,CAAY,WAAA,CACvC,KAAK,UAAA,CAAaA,CAAAA,CAAQ,YAAY,UAAA,EAEtC,IAAA,CAAK,YAAcA,CAAAA,CAAQ,WAAA,CAMzB,IAAA,CAAK,WAAA,EAAe,CAAC,KAAA,CAAM,QAAQ,IAAA,CAAK,WAAA,CAAY,UAAU,CAAA,GAChE,IAAA,CAAK,WAAA,CAAY,WAAa,EAAC,CAAA,CAEjC,IAAA,CAAK,IAAA,CAAO,IAAA,CAAK,MAAA,GAAS,IAAA,CAAA,CAExBA,CAAAA,EAAS,aACX,IAAA,CAAK,UAAA,CAAaA,EAAQ,UAAA,EAE9B,CAUA,MAAM,YAAA,CACJC,CAAAA,CACAC,CAAAA,CACe,CACV,IAAA,CAAK,WAAA,EACR,MAAM,IAAA,CAAK,iBAAA,CAAkB,IAAA,CAAK,UAAU,CAAA,CAE9C,IAAA,CAAK,WAAA,CAAa,UAAA,CAAW,IAAA,CAAK,CAACD,EAAeC,CAAa,CAAC,EAClE,CASA,IAAA,CAAKC,EAAkD,CACrD,GAAI,CAAC,IAAA,CAAK,WAAA,CACR,MAAM,IAAI,KAAA,CAAM,+CAA+C,CAAA,CAEjE,GAAI,IAAA,CAAK,WAAA,CAAa,CACpB,GAAM,CAAE,MAAA,CAAAC,CAAAA,CAAQ,IAAA,CAAAC,CAAK,EAAI,IAAA,CAAK,MAAA,GACzB,KAAA,CAAM,OAAA,CAAQF,CAAI,CAAA,GACrBA,CAAAA,CAAO,CAACA,CAAI,CAAA,CAAA,CAEd,IAAA,IAAWzP,KAAOyP,CAAAA,CAAM,CACtB,IAAMhP,CAAAA,CAAYT,CAAAA,CAAI,IAAA,CAAK0P,CAAM,CAAA,CACjC,IAAA,CAAK,WAAA,CAAY,UAAA,CAAW,IAAA,CAAKjP,CAAAA,CAAU,gBAAgB,EAC7D,CACA,OAAA,IAAA,CAAK,IAAA,CAAOkP,EACL,IAAA,CAAK,WACd,CAAA,KACE,MAAM,IAAI,KAAA,CAAM,wBAAwB,CAE5C,CAYA,MAAM,SAAA,CAAUC,CAAAA,CAAc,KAAA,CAAiC,CAC7D,GAAI,CAAC,IAAA,CAAK,WAAA,CACR,MAAM,IAAI,MACR,gFACF,CAAA,CAEF,GAAI,IAAA,CAAK,WAAA,CAAY,UAAA,CAAW,SAAW,CAAA,CACzC,MAAM,IAAI,KAAA,CACR,iFACF,CAAA,CAEF,GAAI,CACF,MAAMzC,EAAAA,CAAiB,qCAAA,CAAuC,CAAC,IAAA,CAAK,WAAW,CAAC,EAClF,CAAA,MAASvH,CAAAA,CAAG,CACV,GAAI,EAAAA,CAAAA,YAAaE,CAAAA,EAAYF,EAAE,OAAA,CAAQ,QAAA,CAAS,oCAAoC,CAAA,CAAA,CAGlF,MAAMA,CAEV,CAIA,GAHK,IAAA,CAAK,OACR,IAAA,CAAK,IAAA,CAAO,IAAA,CAAK,MAAA,EAAO,CAAE,IAAA,CAAA,CAExB,CAACgK,CAAAA,CACH,OAAO,CAAE,KAAA,CAAO,IAAA,CAAK,IAAA,CAAM,OAAQ,SAAU,CAAA,CAI/C,IAAMC,CAAAA,CAAkB,EAAA,CACxB,MAAM3L,EAAAA,CAAM,GAAI,CAAA,CAChB,IAAI4L,CAAAA,CAAS,MAAM,KAAK,WAAA,EAAY,CAChCvV,CAAAA,CAAI,CAAA,CACR,KACEuV,CAAAA,EAAQ,SAAW,2BAAA,EACnBA,CAAAA,EAAQ,MAAA,GAAW,sBAAA,EACnBA,CAAAA,EAAQ,MAAA,GAAW,WACnBvV,CAAAA,CAAIsV,CAAAA,EAEJ,MAAM3L,EAAAA,CAAM,GAAA,CAAO3J,EAAI,GAAG,CAAA,CAC1BuV,CAAAA,CAAS,MAAM,IAAA,CAAK,WAAA,GACpBvV,CAAAA,EAAAA,CAEF,OAAO,CACL,KAAA,CAAO,IAAA,CAAK,IAAA,CACZ,OAASuV,CAAAA,EAAQ,MAAA,EAAU,SAC7B,CACF,CAQA,MAAA,EAAqB,CACnB,GAAI,CAAC,KAAK,WAAA,CACR,MAAM,IAAI,KAAA,CAAM,+CAA+C,CAAA,CAEjE,IAAMrU,CAAAA,CAAS,IAAIT,EAAWA,CAAAA,CAAW,gBAAA,CAAkBA,CAAAA,CAAW,aAAa,CAAA,CAC7EwE,CAAAA,CAAO,CAAE,GAAG,IAAA,CAAK,WAAY,CAAA,CACnC,GAAI,CACFyE,GAAW,WAAA,CAAYxI,CAAAA,CAAQ+D,CAAI,EACrC,CAAA,MAASmH,EAAO,CACd,MAAM,IAAI,KAAA,CAAM,mCAAA,CAAsCA,CAAK,CAC7D,CACAlL,CAAAA,CAAO,IAAA,EAAK,CACZ,IAAMsU,CAAAA,CAAkB,IAAI,UAAA,CAAWtU,CAAAA,CAAO,QAAA,EAAU,CAAA,CAClDkU,CAAAA,CAAOjQ,oBAAWsQ,cAAAA,CAAOD,CAAe,CAAC,CAAA,CAAE,KAAA,CAAM,EAAG,EAAE,CAAA,CAE5D,OAAO,CAAE,MAAA,CADMC,cAAAA,CAAO,IAAI,UAAA,CAAW,CAAC,GAAGb,EAAAA,CAAS,GAAGY,CAAe,CAAC,CAAC,CAAA,CACrD,IAAA,CAAAJ,CAAK,CACxB,CASA,aAAalP,CAAAA,CAAoC,CAC/C,GAAI,CAAC,IAAA,CAAK,YACR,MAAM,IAAI,KAAA,CAAM,mDAAmD,CAAA,CAErE,GAAI,OAAOA,CAAAA,EAAc,QAAA,CACvB,MAAM,IAAI,KAAA,CAAM,0BAA0B,EAE5C,GAAIA,CAAAA,CAAU,MAAA,GAAW,GAAA,CACvB,MAAM,IAAI,MAAM,uCAAuC,CAAA,CAEzD,OAAA,IAAA,CAAK,WAAA,CAAY,UAAA,CAAW,IAAA,CAAKA,CAAS,CAAA,CACnC,IAAA,CAAK,WACd,CAGA,MAAM,WAAA,EAA0C,CAC9C,OAAK,IAAA,CAAK,IAAA,GACR,IAAA,CAAK,IAAA,CAAO,IAAA,CAAK,QAAO,CAAE,IAAA,CAAA,CAErBiM,CAAAA,CAAQ,yCAAA,CAA2C,CACxD,cAAA,CAAgB,KAAK,IAAA,CACrB,UAAA,CAAY,KAAK,WAAA,EAAa,UAChC,CAAC,CACH,CAQQ,iBAAA,CAAoB,MAAOuD,CAAAA,EAAuB,CACxD,IAAMC,CAAAA,CAAQ,MAAMxD,CAAAA,CAAQ,6CAAA,CAA+C,EAAE,EACvE9R,CAAAA,CAAQ6E,mBAAAA,CAAWyQ,CAAAA,CAAM,aAAa,CAAA,CACtCC,CAAAA,CAAiB,OAAO,IAAI,WAAA,CAAYvV,EAAM,MAAA,CAAQA,CAAAA,CAAM,WAAa,CAAA,CAAG,CAAC,CAAA,CAAE,CAAC,CAAC,CAAA,CACjFwV,EAAgB,IAAI,IAAA,CAAK,IAAA,CAAK,GAAA,EAAI,CAAIH,CAAU,EAAE,WAAA,EAAY,CAAE,KAAA,CAAM,CAAA,CAAG,EAAE,CAAA,CACjF,KAAK,WAAA,CAAc,CACjB,WAAYG,CAAAA,CACZ,UAAA,CAAY,EAAC,CACb,UAAA,CAAY,EAAC,CACb,aAAA,CAAeF,CAAAA,CAAM,kBAAoB,KAAA,CACzC,gBAAA,CAAkBC,CAAAA,CAClB,UAAA,CAAY,EACd,EACF,CACF,ECnOA,IAAME,EAAAA,CAAa,IAAI,UAAA,CAAW,CAAC,GAAI,CAAC,CAAA,CA2B3BC,CAAAA,CAAN,MAAMC,CAAW,CACtB,IAEA,WAAA,CAAYvQ,CAAAA,CAAiB,CAC3B,IAAA,CAAK,GAAA,CAAMA,EACX,GAAI,CACFH,sBAAAA,CAAU,YAAA,CAAaG,CAAG,EAC5B,MAAY,CACV,MAAM,IAAI,KAAA,CAAM,qBAAqB,CACvC,CACF,CAUA,OAAO,IAAA,CAAKrE,CAAAA,CAAwC,CAClD,OAAI,OAAOA,CAAAA,EAAU,QAAA,CACZ4U,EAAW,UAAA,CAAW5U,CAAK,EAE3B,IAAI4U,CAAAA,CAAW5U,CAAK,CAE/B,CASA,OAAO,WAAWuE,CAAAA,CAAyB,CACzC,OAAO,IAAIqQ,CAAAA,CAAWC,EAAAA,CAActQ,CAAG,CAAA,CAAE,QAAA,CAAS,CAAC,CAAC,CACtD,CASA,OAAO,QAAA,CAASuQ,CAAAA,CAAuC,CACrD,GAAI,OAAOA,GAAS,QAAA,CAElB,GADc,gBAAA,CAAiB,IAAA,CAAKA,CAAI,CAAA,CAEtCA,EAAOhR,mBAAAA,CAAWgR,CAAI,CAAA,CAAA,KACjB,CAGL,IAAM7V,CAAAA,CAAkB,EAAC,CACzB,IAAA,IAASL,CAAAA,CAAI,CAAA,CAAGA,CAAAA,CAAIkW,CAAAA,CAAK,OAAQlW,CAAAA,EAAAA,CAAK,CACpC,IAAIC,CAAAA,CAAIiW,CAAAA,CAAK,UAAA,CAAWlW,CAAC,CAAA,CACzB,GAAIC,CAAAA,CAAI,GAAA,CACNI,CAAAA,CAAM,IAAA,CAAKJ,CAAC,CAAA,CAAA,KAAA,GACHA,CAAAA,CAAI,IAAA,CACbI,CAAAA,CAAM,IAAA,CAAK,GAAA,CAAQJ,GAAK,CAAA,CAAI,GAAA,CAAQA,CAAAA,CAAI,EAAK,CAAA,CAAA,KAAA,GACpCA,CAAAA,EAAK,OAAUA,CAAAA,EAAK,KAAA,EAAUD,EAAI,CAAA,CAAIkW,CAAAA,CAAK,OAAQ,CAC5D,IAAMhW,CAAAA,CAAOgW,CAAAA,CAAK,UAAA,CAAW,EAAElW,CAAC,CAAA,CAChCC,CAAAA,CAAI,KAAA,EAAA,CAAYA,CAAAA,CAAI,IAAA,GAAU,EAAA,CAAA,EAAOC,EAAO,IAAA,CAAA,CAC5CG,CAAAA,CAAM,IAAA,CAAK,GAAA,CAAQJ,CAAAA,EAAK,EAAA,CAAK,IAASA,CAAAA,EAAK,EAAA,CAAM,GAAO,GAAA,CAASA,CAAAA,EAAK,EAAK,EAAA,CAAO,GAAA,CAAQA,CAAAA,CAAI,EAAK,EACrG,CAAA,KACEI,EAAM,IAAA,CAAK,GAAA,CAAQJ,CAAAA,EAAK,EAAA,CAAK,GAAA,CAASA,CAAAA,EAAK,EAAK,EAAA,CAAO,GAAA,CAAQA,CAAAA,CAAI,EAAK,EAE5E,CACAiW,EAAO,IAAI,UAAA,CAAW7V,CAAK,EAC7B,CAEF,OAAO,IAAI2V,CAAAA,CAAWP,cAAAA,CAAOS,CAAI,CAAC,CACpC,CAWA,OAAO,SAAA,CAAUC,CAAAA,CAAkBC,CAAAA,CAAkBC,CAAAA,CAAgB,QAAA,CAAsB,CACzF,IAAMH,CAAAA,CAAOC,CAAAA,CAAWE,CAAAA,CAAOD,CAAAA,CAC/B,OAAOJ,EAAW,QAAA,CAASE,CAAI,CACjC,CASA,IAAA,CAAK9Q,EAAgC,CACnC,IAAMkR,CAAAA,CAAKhR,sBAAAA,CAAU,IAAA,CAAKF,CAAAA,CAAS,KAAK,GAAA,CAAK,CAC3C,YAAA,CAAc,IAAA,CACd,MAAA,CAAQ,WAAA,CACR,QAAS,KACX,CAAC,CAAA,CACKN,CAAAA,CAAW,QAAA,CAASK,mBAAAA,CAAWmR,EAAG,QAAA,CAAS,CAAA,CAAG,CAAC,CAAC,CAAA,CAAG,EAAE,CAAA,CAC3D,OAAO3R,EAAAA,CAAU,IAAA,CAAA,CAAMG,CAAAA,CAAW,EAAA,EAAI,SAAS,EAAE,CAAA,CAAIK,mBAAAA,CAAWmR,CAAAA,CAAG,QAAA,CAAS,CAAC,CAAC,CAAC,CACjF,CAQA,YAAA,CAAa5Q,CAAAA,CAA4B,CACvC,OAAO,IAAIH,CAAAA,CAAUD,uBAAU,YAAA,CAAa,IAAA,CAAK,GAAG,CAAA,CAAGI,CAAM,CAC/D,CAQA,QAAA,EAAmB,CACjB,OAAO6Q,EAAAA,CAAc,IAAI,UAAA,CAAW,CAAC,GAAGT,EAAAA,CAAY,GAAG,IAAA,CAAK,GAAG,CAAC,CAAC,CACnE,CASA,SAAkB,CAChB,IAAMrQ,EAAM,IAAA,CAAK,QAAA,GACjB,OAAO,CAAA,YAAA,EAAeA,CAAAA,CAAI,KAAA,CAAM,CAAA,CAAG,CAAC,CAAC,CAAA,GAAA,EAAMA,CAAAA,CAAI,KAAA,CAAM,EAAE,CAAC,CAAA,CAC1D,CASA,eAAA,CAAgB+Q,CAAAA,CAAkC,CAChD,IAAM1W,CAAAA,CAAIwF,sBAAAA,CAAU,gBAAgB,IAAA,CAAK,GAAA,CAAKkR,CAAAA,CAAU,GAAG,CAAA,CAE3D,OAAOC,eAAO3W,CAAAA,CAAE,QAAA,CAAS,CAAC,CAAC,CAC7B,CASA,OAAO,SAAA,EAAwB,CAC7B,OAAO,IAAIkW,CAAAA,CAAW1Q,sBAAAA,CAAU,QAAO,CAAE,SAAS,CACpD,CACF,CAAA,CAEMoR,EAAAA,CAAgBC,GACRlB,cAAAA,CAAOA,cAAAA,CAAOkB,CAAK,CAAC,CAAA,CAK5BJ,GAAiB9Q,CAAAA,EAAoB,CAEzC,IAAMK,CAAAA,CAAW4Q,EAAAA,CAAajR,CAAG,EACjC,OAAOI,mBAAAA,CAAK,MAAA,CAAO,IAAI,UAAA,CAAW,CAAC,GAAGJ,CAAAA,CAAK,GAAGK,CAAAA,CAAS,KAAA,CAAM,CAAA,CAAG,CAAC,CAAC,CAAC,CAAC,CACtE,CAAA,CAGMmQ,EAAAA,CAAiBW,GAAuB,CAC5C,IAAM1V,CAAAA,CAAS2E,mBAAAA,CAAK,MAAA,CAAO+Q,CAAU,EACrC,GAAI,CAAC3Q,EAAAA,CAAkB/E,CAAAA,CAAO,KAAA,CAAM,CAAA,CAAG,CAAC,CAAA,CAAG4U,EAAU,CAAA,CACnD,MAAM,IAAI,KAAA,CAAM,iCAAiC,CAAA,CAEnD,IAAMhQ,EAAW5E,CAAAA,CAAO,KAAA,CAAM,EAAE,CAAA,CAC1BuE,CAAAA,CAAMvE,CAAAA,CAAO,KAAA,CAAM,CAAA,CAAG,EAAE,EACxB2V,CAAAA,CAAiBH,EAAAA,CAAajR,CAAG,CAAA,CAAE,KAAA,CAAM,CAAA,CAAG,CAAC,CAAA,CACnD,GAAI,CAACQ,EAAAA,CAAkBH,CAAAA,CAAU+Q,CAAc,EAC7C,MAAM,IAAI,MAAM,+BAA+B,CAAA,CAEjD,OAAOpR,CACT,CAAA,CAEMQ,EAAAA,CAAoB,CAACG,CAAAA,CAAehG,CAAAA,GAAkB,CAC1D,GAAIgG,CAAAA,GAAMhG,CAAAA,CAAG,OAAO,KAAA,CACpB,GAAIgG,EAAE,UAAA,GAAehG,CAAAA,CAAE,UAAA,CAAY,OAAO,MAAA,CAC1C,IAAM2B,EAAMqE,CAAAA,CAAE,UAAA,CACVpG,EAAI,CAAA,CACR,KAAOA,EAAI+B,CAAAA,EAAOqE,CAAAA,CAAEpG,CAAC,CAAA,GAAMI,CAAAA,CAAEJ,CAAC,GAAGA,CAAAA,EAAAA,CACjC,OAAOA,CAAAA,GAAM+B,CACf,EClOO,IAAM+U,EAAAA,CAAU,CACrBC,CAAAA,CACAP,EACApR,CAAAA,CACA4R,CAAAA,CAAgBC,EAAAA,EAAY,GACzBC,EAAAA,CAAMH,CAAAA,CAAYP,EAAWQ,CAAAA,CAAO5R,CAAO,CAAA,CAEnC+R,EAAAA,CAAU,CACrBJ,CAAAA,CACAP,EACAQ,CAAAA,CACA5R,CAAAA,CACAU,IAEUoR,EAAAA,CAAMH,CAAAA,CAAYP,EAAWQ,CAAAA,CAAO5R,CAAAA,CAASU,CAAQ,CAAA,CACtD,OAAA,CAOLoR,EAAAA,CAAQ,CACZH,CAAAA,CACAP,CAAAA,CACAQ,CAAAA,CACA5R,CAAAA,CACAU,CAAAA,GAC6D,CAC7D,IAAMsR,CAAAA,CAASJ,CAAAA,CACTK,CAAAA,CAAIN,CAAAA,CAAW,eAAA,CAAgBP,CAAS,EAC1Cc,CAAAA,CAAO,IAAI7W,CAAAA,CAAWA,CAAAA,CAAW,gBAAA,CAAkBA,CAAAA,CAAW,aAAa,CAAA,CAC/E6W,CAAAA,CAAK,WAAA,CAAYF,CAAM,CAAA,CACvBE,CAAAA,CAAK,OAAOD,CAAC,CAAA,CACbC,CAAAA,CAAK,IAAA,EAAK,CAEV,IAAMC,EAAgBd,cAAAA,CAAO,IAAI,UAAA,CAAWa,CAAAA,CAAK,QAAA,EAAU,CAAC,CAAA,CACtDE,CAAAA,CAAKD,EAAc,QAAA,CAAS,EAAA,CAAI,EAAE,CAAA,CAClCE,CAAAA,CAAMF,CAAAA,CAAc,QAAA,CAAS,CAAA,CAAG,EAAE,EAGlCG,CAAAA,CAAQjC,cAAAA,CAAO8B,CAAa,CAAA,CAAE,QAAA,CAAS,CAAA,CAAG,CAAC,CAAA,CAC3CI,CAAAA,CAAO,IAAIlX,CAAAA,CAAWA,CAAAA,CAAW,gBAAA,CAAkBA,EAAW,aAAa,CAAA,CACjFkX,EAAK,MAAA,CAAOD,CAAK,EACjBC,CAAAA,CAAK,IAAA,EAAK,CACV,IAAMC,CAAAA,CAAUD,CAAAA,CAAK,YAAW,CAChC,GAAI7R,CAAAA,GAAa,MAAA,CAAW,CAC1B,GAAI8R,IAAY9R,CAAAA,CACd,MAAM,IAAI,KAAA,CAAM,aAAa,CAAA,CAE/BV,EAAUyS,EAAAA,CAAgBzS,CAAAA,CAASqS,EAAKD,CAAE,EAC5C,MACEpS,CAAAA,CAAU0S,EAAAA,CAAgB1S,CAAAA,CAASqS,CAAAA,CAAKD,CAAE,CAAA,CAE5C,OAAO,CAAE,KAAA,CAAOJ,CAAAA,CAAQ,OAAA,CAAAhS,CAAAA,CAAS,QAAA,CAAUwS,CAAQ,CACrD,CAAA,CAOMC,EAAAA,CAAkB,CAACzS,CAAAA,CAAqBqS,CAAAA,CAAiBD,IAA+B,CAC5F,IAAIO,EAAgB3S,CAAAA,CAEpB,OAAA2S,EADiBC,UAAAA,CAAOP,CAAAA,CAAKD,CAAE,CAAA,CACN,OAAA,CAAQO,CAAa,EACvCA,CACT,CAAA,CAOaD,EAAAA,CAAkB,CAC7B1S,CAAAA,CACAqS,CAAAA,CACAD,IACe,CACf,IAAIO,CAAAA,CAAgB3S,CAAAA,CAEpB,OAAA2S,CAAAA,CADeC,WAAOP,CAAAA,CAAKD,CAAE,EACN,OAAA,CAAQO,CAAa,EACrCA,CACT,CAAA,CAEIE,EAAAA,CAAoC,IAAA,CAElChB,EAAAA,CAAc,IAAc,CAChC,GAAIgB,EAAAA,GAAuB,IAAA,CAAM,CAC/B,IAAMC,CAAAA,CAAmB5S,uBAAU,KAAA,CAAM,eAAA,EAAgB,CACzD2S,EAAAA,CAAsBC,CAAAA,CAAiB,CAAC,GAAK,CAAA,CAAKA,CAAAA,CAAiB,CAAC,EACtE,CACA,IAAIC,CAAAA,CAAO,MAAA,CAAO,IAAA,CAAK,GAAA,EAAK,CAAA,CACtBC,EAAU,EAAEH,EAAAA,CAAqB,KAAA,CACvC,OAAAE,CAAAA,CAAQA,CAAAA,EAAQ,OAAO,EAAE,CAAA,CAAK,MAAA,CAAOC,CAAO,CAAA,CACrCD,CACT,ECpGA,IAAME,EAAAA,CAAyBvX,GAAoB,CACjD,IAAMb,EAAIqY,EAAAA,CAASxX,CAAAA,CAAK,EAAE,CAAA,CAC1B,OAAO,IAAIyE,EAAUtF,CAAC,CACxB,CAAA,CAEMsY,EAAAA,CAAsBnY,CAAAA,EACnBA,CAAAA,CAAE,YAAW,CAGhBoY,EAAAA,CAAsBpY,CAAAA,EACnBA,CAAAA,CAAE,UAAA,EAAW,CAGhBqY,GAAsBrY,CAAAA,EAAkB,CAC5C,IAAM2B,CAAAA,CAAc3B,CAAAA,CAAE,YAAA,GAChBsY,CAAAA,CAAQtY,CAAAA,CAAE,IAAA,CAAKA,CAAAA,CAAE,MAAA,CAAQA,CAAAA,CAAE,OAAS2B,CAAG,CAAA,CAC7C,OAAA3B,CAAAA,CAAE,IAAA,CAAK2B,CAAG,EACH,IAAI,UAAA,CAAW2W,CAAAA,CAAM,QAAA,EAAU,CACxC,EAEMC,EAAAA,CAAsBC,CAAAA,EAA2B9X,GAAoB,CACzE,IAAM+X,EAAW,EAAC,CACZ3X,CAAAA,CAAS,IAAIT,CAAAA,CAAWA,CAAAA,CAAW,iBAAkBA,CAAAA,CAAW,aAAa,CAAA,CACnFS,CAAAA,CAAO,MAAA,CAAOJ,CAAG,EACjBI,CAAAA,CAAO,IAAA,EAAK,CACZ,IAAA,GAAW,CAACuE,CAAAA,CAAKqT,CAAY,CAAA,GAAKF,CAAAA,CAChC,GAAI,CACFC,CAAAA,CAAIpT,CAAG,CAAA,CAAIqT,CAAAA,CAAa5X,CAAM,EAChC,CAAA,MAASwH,CAAAA,CAAY,CACnB,MAAAA,CAAAA,CAAM,OAAA,CAAU,CAAA,EAAGjD,CAAG,CAAA,EAAA,EAAKiD,EAAM,OAAO,CAAA,CAAA,CAClCA,CACR,CAEF,OAAOmQ,CACT,EAEA,SAASP,EAAAA,CAASlY,EAAe2B,CAAAA,CAAa,CAC5C,GAAK3B,CAAAA,CAEE,CACL,IAAMsY,CAAAA,CAAQtY,CAAAA,CAAE,IAAA,CAAKA,EAAE,MAAA,CAAQA,CAAAA,CAAE,MAAA,CAAS2B,CAAG,CAAA,CAC7C,OAAA3B,EAAE,IAAA,CAAK2B,CAAG,CAAA,CACH,IAAI,UAAA,CAAW2W,CAAAA,CAAM,UAAU,CACxC,CAAA,KALE,MAAM,KAAA,CAAM,oCAAoC,CAMpD,CAEA,IAAMK,EAAAA,CAA4BJ,EAAAA,CAAmB,CACnD,CAAC,OAAQN,EAAqB,CAAA,CAC9B,CAAC,IAAA,CAAMA,EAAqB,CAAA,CAC5B,CAAC,OAAA,CAASE,EAAkB,CAAA,CAC5B,CAAC,OAAA,CAASC,EAAkB,EAC5B,CAAC,WAAA,CAAaC,EAAkB,CAClC,CAAC,EAEYO,EAAAA,CAAe,CAC1B,IAAA,CAAMD,EACR,CAAA,CCvBA,IAAME,GAAS,CACblC,CAAAA,CACAP,CAAAA,CACA0C,CAAAA,CACAC,CAAAA,GACW,CACX,GAAI,CAACD,CAAAA,CAAK,UAAA,CAAW,GAAG,CAAA,CACtB,OAAOA,EAETA,CAAAA,CAAOA,CAAAA,CAAK,UAAU,CAAC,CAAA,CACvBE,IAAgB,CAChBrC,CAAAA,CAAasC,EAAAA,CAAatC,CAAU,CAAA,CACpCP,CAAAA,CAAY8C,GAAY9C,CAAS,CAAA,CACjC,IAAM+C,CAAAA,CAAO,IAAI9Y,CAAAA,CAAWA,EAAW,gBAAA,CAAkBA,CAAAA,CAAW,aAAa,CAAA,CACjF8Y,CAAAA,CAAK,YAAA,CAAaL,CAAI,CAAA,CACtB,IAAMM,EAAa,IAAI,UAAA,CAAWD,EAAK,IAAA,CAAK,CAAA,CAAGA,CAAAA,CAAK,MAAM,CAAA,CAAE,QAAA,EAAU,CAAA,CAChE,CAAE,KAAA,CAAAvC,CAAAA,CAAO,OAAA,CAAA5R,CAAAA,CAAS,SAAAU,CAAS,CAAA,CAAQgR,EAAAA,CAAQC,CAAAA,CAAYP,CAAAA,CAAWgD,CAAAA,CAAYL,CAAS,CAAA,CACvFM,CAAAA,CAAQ,IAAIhZ,CAAAA,CAAWA,CAAAA,CAAW,gBAAA,CAAkBA,EAAW,aAAa,CAAA,CAClFiJ,EAAAA,CAAW,IAAA,CAAK+P,CAAAA,CAAO,CACrB,MAAO3T,CAAAA,CACP,SAAA,CAAWV,CAAAA,CACX,IAAA,CAAM2R,CAAAA,CAAW,YAAA,GACjB,KAAA,CAAAC,CAAAA,CACA,EAAA,CAAIR,CACN,CAAC,CAAA,CACDiD,EAAM,IAAA,EAAK,CACX,IAAM5U,CAAAA,CAAO,IAAI,WAAW4U,CAAAA,CAAM,QAAA,EAAU,CAAA,CAC5C,OAAO,GAAA,CAAM5T,oBAAK,MAAA,CAAOhB,CAAI,CAC/B,CAAA,CAWM6U,EAAAA,CAAS,CAAC3C,EAAiCmC,CAAAA,GAAyB,CACxE,GAAI,CAACA,CAAAA,CAAK,UAAA,CAAW,GAAG,CAAA,CACtB,OAAOA,EAETA,CAAAA,CAAOA,CAAAA,CAAK,UAAU,CAAC,CAAA,CACvBE,EAAAA,EAAgB,CAChBrC,CAAAA,CAAasC,EAAAA,CAAatC,CAAU,CAAA,CAEpC,IAAIyC,CAAAA,CAAaR,EAAAA,CAAa,IAAA,CAAKnT,mBAAAA,CAAK,OAAOqT,CAAI,CAAC,CAAA,CAC9C,CAAE,IAAA,CAAAS,CAAAA,CAAM,GAAAC,CAAAA,CAAI,KAAA,CAAA5C,EAAO,KAAA,CAAAU,CAAAA,CAAO,UAAAmC,CAAU,CAAA,CAAIL,CAAAA,CAExCM,CAAAA,CADS/C,CAAAA,CAAW,YAAA,GAAe,QAAA,EAAS,GAErC,IAAIxR,CAAAA,CAAUoU,CAAAA,CAAK,GAAG,EAAE,QAAA,EAAS,CAAI,IAAIpU,CAAAA,CAAUqU,CAAAA,CAAG,GAAG,EAAI,IAAIrU,CAAAA,CAAUoU,EAAK,GAAG,CAAA,CAChGH,EAAiBrC,EAAAA,CAAQJ,CAAAA,CAAY+C,CAAAA,CAAU9C,CAAAA,CAAO6C,CAAAA,CAAWnC,CAAK,EACtE,IAAM6B,CAAAA,CAAO,IAAI9Y,CAAAA,CAAWA,CAAAA,CAAW,gBAAA,CAAkBA,EAAW,aAAa,CAAA,CACjF,OAAA8Y,CAAAA,CAAK,MAAA,CAAOC,CAAU,EACtBD,CAAAA,CAAK,IAAA,GACE,GAAA,CAAMA,CAAAA,CAAK,aACpB,CAAA,CAEIQ,EAAAA,CACEX,EAAAA,CAAkB,IAAM,CAC5B,GAAIW,EAAAA,GAAe,MAAA,CAAW,CAC5B,IAAIC,CAAAA,CACJD,EAAAA,CAAa,KACb,GAAI,CACF,IAAMpU,CAAAA,CAAM,qDAAA,CAENsU,CAAAA,CAAahB,GAAOtT,CAAAA,CADX,uDAAA,CACwB,aAAQ,CAAA,CAC/CqU,CAAAA,CAAYN,GAAO/T,CAAAA,CAAKsU,CAAU,EACpC,CAAA,OAAE,CACAF,EAAAA,CAAaC,IAAc,cAC7B,CACF,CACA,GAAID,EAAAA,GAAe,KAAA,CACjB,MAAM,IAAI,KAAA,CAAM,+CAA+C,CAEnE,CAAA,CAEMV,EAAAA,CAAgBa,GAChB,OAAOA,CAAAA,EAAM,SACRnE,CAAAA,CAAW,UAAA,CAAWmE,CAAC,CAAA,CAEvBA,CAAAA,CAGLZ,EAAAA,CAAeY,CAAAA,EACf,OAAOA,CAAAA,EAAM,SACR3U,CAAAA,CAAU,UAAA,CAAW2U,CAAC,CAAA,CAEtBA,CAAAA,CAuBEC,EAAAA,CAAO,CAClB,MAAA,CAAAT,EAAAA,CACA,MAAA,CAAAT,EACF,ECvJA,IAAAmB,GAAA,GAAAC,EAAAA,CAAAD,EAAAA,CAAA,CAAA,yBAAA,CAAA,IAAAE,EAAAA,CAAA,iBAAA,CAAA,IAAAC,GAAA,UAAA,CAAA,IAAAC,EAAAA,CAAA,gBAAA,CAAA,IAAAC,EAAAA,CAAAA,CAAAA,CAkBO,IAAMA,EAAAA,CAAoBtE,CAAAA,EAAoC,CACnE,IAAIuE,EAAS,sBAAA,CACb,GAAI,CAACvE,CAAAA,CACH,OAAOuE,CAAAA,CAAS,gBAElB,IAAMzY,CAAAA,CAASkU,EAAS,MAAA,CACxB,GAAIlU,EAAS,CAAA,CACX,OAAOyY,CAAAA,CAAS,YAAA,CAElB,GAAIzY,CAAAA,CAAS,GACX,OAAOyY,CAAAA,CAAS,aAAA,CAEd,IAAA,CAAK,IAAA,CAAKvE,CAAQ,IACpBuE,CAAAA,CAAS,8BAAA,CAAA,CAEX,IAAMC,CAAAA,CAAMxE,CAAAA,CAAS,KAAA,CAAM,GAAG,CAAA,CACxBpU,CAAAA,CAAM4Y,EAAI,MAAA,CAChB,IAAA,IAAS,EAAI,CAAA,CAAG,CAAA,CAAI5Y,CAAAA,CAAK,CAAA,EAAA,CAAK,CAC5B,IAAM6Y,EAAQD,CAAAA,CAAI,CAAC,CAAA,CACnB,GAAI,CAAC,QAAA,CAAS,KAAKC,CAAK,CAAA,CACtB,OAAOF,CAAAA,CAAS,gCAAA,CAElB,GAAI,CAAC,cAAA,CAAe,IAAA,CAAKE,CAAK,CAAA,CAC5B,OAAOF,EAAS,iDAAA,CAElB,GAAI,CAAC,WAAA,CAAY,IAAA,CAAKE,CAAK,EACzB,OAAOF,CAAAA,CAAS,uCAAA,CAElB,GAAIE,CAAAA,CAAM,MAAA,CAAS,EACjB,OAAOF,CAAAA,CAAS,YAEpB,CACA,OAAO,IACT,EAEaF,EAAAA,CAAa,CACxB,KAAM,CAAA,CACN,OAAA,CAAS,EACT,QAAA,CAAU,CAAA,CACV,mBAAA,CAAqB,CAAA,CACrB,gBAAA,CAAkB,CAAA,CAClB,mBAAoB,CAAA,CACpB,kBAAA,CAAoB,CAAA,CACpB,YAAA,CAAc,CAAA,CACd,OAAA,CAAS,EACT,cAAA,CAAgB,CAAA,CAChB,cAAA,CAAgB,EAAA,CAChB,cAAA,CAAgB,EAAA,CAChB,qBAAsB,EAAA,CACtB,qBAAA,CAAuB,GACvB,GAAA,CAAK,EAAA,CACL,OAAQ,EAAA,CACR,sBAAA,CAAwB,EAAA,CACxB,cAAA,CAAgB,EAAA,CAChB,WAAA,CAAa,GACb,eAAA,CAAiB,EAAA,CACjB,0BAAA,CAA4B,EAAA,CAC5B,mBAAA,CAAqB,EAAA,CACrB,cAAe,EAAA,CACf,sBAAA,CAAwB,EAAA,CACxB,wBAAA,CAA0B,EAAA,CAC1B,eAAA,CAAiB,GACjB,uBAAA,CAAyB,EAAA,CACzB,gBAAiB,EAAA,CACjB,cAAA,CAAgB,GAChB,cAAA,CAAgB,EAAA,CAChB,IAAA,CAAM,EAAA,CACN,cAAA,CAAgB,EAAA,CAChB,oBAAqB,EAAA,CACrB,qBAAA,CAAuB,EAAA,CACvB,4BAAA,CAA8B,EAAA,CAC9B,aAAA,CAAe,GACf,qBAAA,CAAuB,EAAA,CACvB,aAAA,CAAe,EAAA,CACf,iBAAA,CAAmB,EAAA,CACnB,qBAAsB,EAAA,CACtB,uBAAA,CAAyB,GACzB,8BAAA,CAAgC,EAAA,CAChC,uBAAwB,EAAA,CACxB,eAAA,CAAiB,EAAA,CACjB,eAAA,CAAiB,EAAA,CACjB,qBAAA,CAAuB,GACvB,eAAA,CAAiB,EAAA,CACjB,eAAA,CAAiB,EAAA,CACjB,sBAAA,CAAwB,EAAA,CACxB,mBAAoB,EAAA,CAEpB,oBAAA,CAAsB,EAAA,CACtB,aAAA,CAAe,EAAA,CACf,eAAA,CAAiB,GACjB,cAAA,CAAgB,EAAA,CAChB,gBAAA,CAAkB,EAAA,CAClB,QAAA,CAAU,EAAA,CACV,sBAAuB,EAAA,CACvB,UAAA,CAAY,EAAA,CACZ,gBAAA,CAAkB,EAAA,CAClB,0BAAA,CAA4B,GAC5B,QAAA,CAAU,EAAA,CACV,qBAAA,CAAuB,EAAA,CACvB,yBAAA,CAA2B,EAAA,CAC3B,0BAA2B,EAAA,CAC3B,eAAA,CAAiB,EAAA,CACjB,0BAAA,CAA4B,EAAA,CAC5B,YAAA,CAAc,GACd,QAAA,CAAU,EAAA,CACV,cAAe,EAAA,CACf,qBAAA,CAAuB,GACvB,cAAA,CAAgB,EAAA,CAChB,4BAAA,CAA8B,EAAA,CAC9B,sBAAA,CAAwB,EAAA,CACxB,2BAA4B,EAAA,CAC5B,WAAA,CAAa,EAAA,CACb,4BAAA,CAA8B,EAAA,CAC9B,wBAAA,CAA0B,GAC1B,6BAAA,CAA+B,EAAA,CAC/B,UAAA,CAAY,EAAA,CACZ,oBAAA,CAAsB,EAAA,CACtB,gBAAiB,EAAA,CACjB,mCAAA,CAAqC,GACrC,cAAA,CAAgB,EAAA,CAChB,wBAAyB,EAAA,CACzB,yBAAA,CAA2B,EAAA,CAC3B,qBAAA,CAAuB,EAAA,CACvB,eAAA,CAAiB,GACjB,YAAA,CAAc,EAAA,CACd,2CAAA,CAA6C,EAAA,CAC7C,eAAA,CAAiB,EAAA,CACjB,gBAAiB,EAAA,CACjB,aAAA,CAAe,EAAA,CACf,sBAAA,CAAwB,EAC1B,CAAA,CAKaD,GAAqBM,CAAAA,EACzBA,CAAAA,CACJ,OAAOC,EAAAA,CAAgB,CAAC,OAAO,CAAC,CAAA,CAAG,MAAA,CAAO,CAAC,CAAC,CAAC,EAC7C,GAAA,CAAK1Z,CAAAA,EAAmBA,CAAAA,GAAU,MAAA,CAAO,CAAC,CAAA,CAAIA,EAAM,QAAA,EAAS,CAAI,IAAK,CAAA,CAErE0Z,EAAAA,CAAiB,CACrB,CAACC,CAAAA,CAAKC,CAAI,EACVC,CAAAA,GAEIA,CAAAA,CAAmB,GACd,CAACF,CAAAA,CAAO,MAAA,CAAO,CAAC,CAAA,EAAK,MAAA,CAAOE,CAAgB,CAAA,CAAID,CAAI,CAAA,CAEpD,CAACD,CAAAA,CAAKC,CAAAA,CAAQ,OAAO,CAAC,CAAA,EAAK,MAAA,CAAOC,CAAAA,CAAmB,EAAE,CAAE,EAIvDX,EAAAA,CAA4B,CACvCY,EACAvF,CAAAA,GACmF,CACnF,IAAM9Q,CAAAA,CAAO,CACX,UAAA,CAAY,EAAC,CACb,KAAA,CAAAqW,EACA,KAAA,CAAY,EACd,CAAA,CACA,IAAA,IAAWzV,CAAAA,IAAO,OAAO,IAAA,CAAKkQ,CAAK,CAAA,CAAG,CACpC,GAAKA,CAAAA,CAAclQ,CAAG,CAAA,GAAM,MAAA,CAAW,SACvC,IAAI0V,CAAAA,CACJ,OAAQ1V,CAAAA,EACN,KAAK,KAAA,CACL,KAAK,iBAAA,CACH0V,EAAOzR,EAAAA,CAAW,SAAA,CAClB,MACF,KAAK,wBAAA,CACL,KAAK,wBACL,KAAK,oBAAA,CACHyR,CAAAA,CAAOzR,EAAAA,CAAW,MAAA,CAClB,MACF,KAAK,mBAAA,CACHyR,CAAAA,CAAOzR,GAAW,MAAA,CAClB,MACF,KAAK,KAAA,CACHyR,CAAAA,CAAOzR,EAAAA,CAAW,MAAA,CAClB,MACF,KAAK,oBACHyR,CAAAA,CAAOzR,EAAAA,CAAW,KAAA,CAClB,MACF,KAAK,sBAAA,CACHyR,EAAOzR,EAAAA,CAAW,KAAA,CAClB,MACF,QACE,MAAM,IAAI,MAAM,CAAA,sBAAA,EAAyBjE,CAAG,CAAA,CAAE,CAClD,CACAZ,CAAAA,CAAK,MAAM,IAAA,CAAK,CAACY,CAAAA,CAAK2V,EAAAA,CAAUD,CAAAA,CAAMxF,CAAAA,CAAMlQ,CAAG,CAAC,CAAC,CAAC,EACpD,CACA,OAAAZ,EAAK,KAAA,CAAM,IAAA,CAAK,CAACuB,CAAAA,CAAQhG,CAAAA,GAAWgG,CAAAA,CAAE,CAAC,CAAA,CAAE,aAAA,CAAchG,EAAE,CAAC,CAAC,CAAC,CAAA,CACrD,CAAC,wBAAA,CAA0ByE,CAAI,CACxC,CAAA,CAEMuW,GAAY,CAAC3S,CAAAA,CAAiB5D,CAAAA,GAAc,CAChD,IAAM3D,CAAAA,CAAS,IAAIT,CAAAA,CAAWA,CAAAA,CAAW,gBAAA,CAAkBA,CAAAA,CAAW,aAAa,CAAA,CACnF,OAAAgI,CAAAA,CAAWvH,CAAAA,CAAQ2D,CAAI,CAAA,CACvB3D,CAAAA,CAAO,MAAK,CAELiE,mBAAAA,CAAW,IAAI,UAAA,CAAWjE,CAAAA,CAAO,QAAA,EAAU,CAAC,CACrD,CAAA,CCpIO,SAASuU,EAAAA,CAAOkB,CAAAA,CAAwC,CAC7D,IAAI9R,CAAAA,CACJ,GAAI,OAAO8R,CAAAA,EAAU,SAAU,CAG7B,IAAMtW,EAAkB,EAAC,CACzB,IAAA,IAASL,CAAAA,CAAI,CAAA,CAAGA,CAAAA,CAAI2W,EAAM,MAAA,CAAQ3W,CAAAA,EAAAA,CAAK,CACrC,IAAIC,CAAAA,CAAI0W,CAAAA,CAAM,WAAW3W,CAAC,CAAA,CAC1B,GAAIC,CAAAA,CAAI,GAAA,CACNI,CAAAA,CAAM,KAAKJ,CAAC,CAAA,CAAA,KAAA,GACHA,EAAI,IAAA,CACbI,CAAAA,CAAM,KAAK,GAAA,CAAQJ,CAAAA,EAAK,CAAA,CAAI,GAAA,CAAQA,CAAAA,CAAI,EAAK,UACpCA,CAAAA,EAAK,KAAA,EAAUA,CAAAA,EAAK,KAAA,EAAUD,CAAAA,CAAI,CAAA,CAAI2W,EAAM,MAAA,CAAQ,CAC7D,IAAMzW,CAAAA,CAAOyW,CAAAA,CAAM,UAAA,CAAW,EAAE3W,CAAC,CAAA,CACjCC,EAAI,KAAA,EAAA,CAAYA,CAAAA,CAAI,OAAU,EAAA,CAAA,EAAOC,CAAAA,CAAO,IAAA,CAAA,CAC5CG,CAAAA,CAAM,IAAA,CAAK,GAAA,CAAQJ,GAAK,EAAA,CAAK,GAAA,CAASA,CAAAA,EAAK,EAAA,CAAM,EAAA,CAAO,GAAA,CAASA,GAAK,CAAA,CAAK,EAAA,CAAO,GAAA,CAAQA,CAAAA,CAAI,EAAK,EACrG,MACEI,CAAAA,CAAM,IAAA,CAAK,IAAQJ,CAAAA,EAAK,EAAA,CAAK,IAASA,CAAAA,EAAK,CAAA,CAAK,EAAA,CAAO,GAAA,CAAQA,CAAAA,CAAI,EAAK,EAE5E,CACA4E,CAAAA,CAAO,IAAI,UAAA,CAAWxE,CAAK,EAC7B,MACEwE,CAAAA,CAAO8R,CAAAA,CAET,OAAO0E,cAAAA,CAAYxW,CAAI,CACzB,CAGO,SAASyW,EAAAA,CAAM7V,EAAsB,CAC1C,GAAI,CACF,OAAAsQ,CAAAA,CAAW,UAAA,CAAWtQ,CAAG,CAAA,CAClB,CAAA,CACT,MAAQ,CACN,OAAO,MACT,CACF,CAaA,eAAsB8V,GACpBC,CAAAA,CACA/V,CAAAA,CACkC,CAClC,IAAMgW,CAAAA,CAAK,IAAI5G,GACf,IAAA,IAAW6G,CAAAA,IAAMF,CAAAA,CACf,MAAMC,CAAAA,CAAG,YAAA,CACPC,EAAG,CAAC,CAAA,CACJA,CAAAA,CAAG,CAAC,CACN,CAAA,CAEF,OAAAD,CAAAA,CAAG,IAAA,CAAKhW,CAAG,CAAA,CACJmN,EAAAA,CAAiB,iDAAA,CAAmD,CACzE6I,CAAAA,CAAG,WACL,CAAC,CACH,CAmBA,eAAsBE,GACpBH,CAAAA,CACA/V,CAAAA,CAC0B,CAC1B,IAAMgW,CAAAA,CAAK,IAAI5G,EAAAA,CACf,IAAA,IAAW6G,CAAAA,IAAMF,CAAAA,CACf,MAAMC,CAAAA,CAAG,aACPC,CAAAA,CAAG,CAAC,CAAA,CACJA,CAAAA,CAAG,CAAC,CACN,EAEF,OAAAD,CAAAA,CAAG,IAAA,CAAKhW,CAAG,CAAA,CACJgW,CAAAA,CAAG,UAAU,KAAK,CAC3B,CAeA,IAAMG,EAAAA,CAA4B,MAElC,SAASC,EAAAA,CAAiBC,CAAAA,CAAiBC,CAAAA,CAA8B,CACvE,IAAMhQ,EAAQ,IAAA,CAAK,GAAA,EAAI,CAAI,GAAA,CAAOgQ,CAAAA,CAAQ,gBAAA,CACtCC,EACF,MAAA,CAAOD,CAAAA,CAAQ,YAAY,CAAA,CAC1BhQ,CAAAA,CAAQ+P,CAAAA,CAAWF,GAClBK,CAAAA,CAAa,IAAA,CAAK,MAAOD,CAAAA,CAAcF,CAAAA,CAAW,GAAK,CAAA,CAC3D,OAAI,CAAC,QAAA,CAASG,CAAU,CAAA,EAAKA,EAAa,CAAA,CACxCA,CAAAA,CAAa,CAAA,CACJA,CAAAA,CAAa,GAAA,GACtBA,CAAAA,CAAa,KAER,CAAE,YAAA,CAAcD,CAAAA,CAAa,QAAA,CAAUF,CAAAA,CAAS,UAAA,CAAAG,CAAW,CACpE,CAMA,SAASC,EAAAA,CAASC,CAAAA,CAAsB,CACtC,IAAMC,CAAAA,CAAQ,UAAA,CAAWD,CAAAA,CAAQ,cAAc,CAAA,CACzCE,EAAY,UAAA,CAAWF,CAAAA,CAAQ,wBAAwB,CAAA,CACvDG,CAAAA,CAAW,UAAA,CAAWH,EAAQ,uBAAuB,CAAA,CACrDI,CAAAA,CAAe,UAAA,CAAWJ,CAAAA,CAAQ,qBAAqB,EACvDK,CAAAA,CAAAA,CACH,MAAA,CAAOL,EAAQ,WAAW,CAAA,CAAI,OAAOA,CAAAA,CAAQ,SAAS,CAAA,EAAK,GAAA,CACxDM,CAAAA,CAAgB,IAAA,CAAK,IAAIF,CAAAA,CAAcC,CAAgB,CAAA,CAC7D,OAAOJ,CAAAA,CAAQK,CAAAA,CAAgBJ,EAAYC,CAC7C,CAGO,SAASI,EAAAA,CAAgBP,CAAAA,CAA0B,CACxD,IAAML,CAAAA,CAAUI,EAAAA,CAASC,CAAO,CAAA,CAAI,GAAA,CACpC,OAAON,EAAAA,CAAiBC,CAAAA,CAASK,CAAAA,CAAQ,cAAc,CACzD,CAGO,SAASQ,EAAAA,CAAgBC,CAAAA,CAAkC,CAChE,OAAOf,EAAAA,CACL,MAAA,CAAOe,EAAU,MAAM,CAAA,CACvBA,CAAAA,CAAU,UACZ,CACF,KC1OYC,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,OAAS,QAAA,CACTA,CAAAA,CAAA,KAAO,MAAA,CACPA,CAAAA,CAAA,6BAAA,CAAgC,+BAAA,CAChCA,CAAAA,CAAA,iBAAA,CAAoB,oBACpBA,CAAAA,CAAA,aAAA,CAAgB,eAAA,CAChBA,CAAAA,CAAA,OAAA,CAAU,SAAA,CACVA,EAAA,OAAA,CAAU,SAAA,CACVA,CAAAA,CAAA,UAAA,CAAa,YAAA,CARHA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,IAmCL,SAASC,EAAAA,CAAgBpU,CAAAA,CAA8B,CAG5D,IAAMqU,CAAAA,CAAmBrU,GAAO,iBAAA,CAAoB,MAAA,CAAOA,CAAAA,CAAM,iBAAiB,CAAA,CAAI,EAAA,CAChFyB,EAAezB,CAAAA,EAAO,OAAA,CAAU,MAAA,CAAOA,CAAAA,CAAM,OAAO,CAAA,CAAI,GAExDsU,CAAAA,CAAYtU,CAAAA,EAAO,KAAA,CAAQ,MAAA,CAAOA,CAAAA,CAAM,KAAK,EAAI,EAAA,CACjDuU,CAAAA,CAAcF,GAAoB5S,CAAAA,EAAgB,MAAA,CAAOzB,GAAS,EAAE,CAAA,CAGpEwU,CAAAA,CAAeC,CAAAA,EAEf,CAAA,EAAAH,CAAAA,EAAaG,EAAQ,IAAA,CAAKH,CAAS,CAAA,EAEnCD,CAAAA,EAAoBI,CAAAA,CAAQ,IAAA,CAAKJ,CAAgB,CAAA,EAEjD5S,CAAAA,EAAgBgT,CAAAA,CAAQ,IAAA,CAAKhT,CAAY,CAAA,EAEzC8S,GAAeE,CAAAA,CAAQ,IAAA,CAAKF,CAAW,CAAA,CAAA,CAK7C,GACEC,EAAY,0BAA0B,CAAA,EACtCA,CAAAA,CAAY,kBAAkB,CAAA,EAC9BA,CAAAA,CAAY,sCAAsC,CAAA,CAElD,OAAO,CACL,OAAA,CAAS,yDAAA,CACT,IAAA,CAAM,gCACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,+BAA+B,EAC7C,OAAO,CACL,QAAS,gFAAA,CACT,IAAA,CAAM,SACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,iDAAiD,EAC/D,OAAO,CACL,OAAA,CAAS,8CAAA,CACT,IAAA,CAAM,MAAA,CACN,cAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,uBAAuB,CAAA,CACrC,OAAO,CACL,OAAA,CAAS,wDACT,IAAA,CAAM,MAAA,CACN,cAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,+BAA+B,CAAA,CAC7C,OAAO,CACL,OAAA,CAAS,8DAAA,CACT,IAAA,CAAM,MAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,4CAA4C,CAAA,CAC1D,OAAO,CACL,OAAA,CAAS,8CAAA,CACT,KAAM,MAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,gBAAgB,CAAA,CAC9B,OAAO,CACL,OAAA,CAAS,uCAAA,CACT,IAAA,CAAM,QAAA,CACN,aAAA,CAAexU,CACjB,EAIF,GAAIwU,CAAAA,CAAY,kBAAkB,CAAA,CAChC,OAAO,CACL,QAAS,yDAAA,CACT,IAAA,CAAM,SACN,aAAA,CAAexU,CACjB,EAIF,GAAIwU,CAAAA,CAAY,6DAA6D,CAAA,CAC3E,OAAO,CACL,QAAS,uDAAA,CACT,IAAA,CAAM,QAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,+CAA+C,CAAA,CAC7D,OAAO,CACL,OAAA,CAAS,qEACT,IAAA,CAAM,mBAAA,CACN,cAAexU,CACjB,CAAA,CAOF,GAAIwU,CAAAA,CAAY,uCAAuC,CAAA,CACrD,OAAO,CACL,OAAA,CAAS,qEACT,IAAA,CAAM,mBAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,EAAY,sCAAsC,CAAA,CACpD,OAAO,CACL,OAAA,CAAS,kEAAA,CACT,KAAM,mBAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,wCAAwC,CAAA,CACtD,OAAO,CACL,OAAA,CAAS,4DAAA,CACT,IAAA,CAAM,oBACN,aAAA,CAAexU,CACjB,CAAA,CAMF,GACEsU,CAAAA,GAAc,eAAA,EACdA,IAAc,qBAAA,EACdE,CAAAA,CAAY,gBAAgB,CAAA,EAC5BA,CAAAA,CAAY,gBAAgB,GAC5BA,CAAAA,CAAY,mBAAmB,GAC/BA,CAAAA,CAAY,gBAAgB,EAE5B,OAAO,CACL,OAAA,CAAS,oDAAA,CACT,IAAA,CAAM,eAAA,CACN,cAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,wBAAwB,CAAA,EAAKA,EAAY,8BAA8B,CAAA,CACrF,OAAO,CACL,OAAA,CAAS,uCAAA,CACT,KAAM,MAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,EAAY,wBAAwB,CAAA,CACtC,OAAO,CACL,OAAA,CAAS,8CAAA,CACT,KAAM,MAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GACEwU,CAAAA,CAAY,eAAe,CAAA,EAC3BA,CAAAA,CAAY,qBAAqB,CAAA,EACjCA,CAAAA,CAAY,kBAAkB,GAC9BA,CAAAA,CAAY,mEAAmE,EAE/E,OAAO,CACL,QAAS,4DAAA,CACT,IAAA,CAAM,SAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,UAAU,CAAA,EAAKA,CAAAA,CAAY,YAAY,CAAA,CACrD,OAAO,CACL,OAAA,CAAS,sCAAA,CACT,IAAA,CAAM,SAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,EAAY,0BAA0B,CAAA,EAAKA,EAAY,oBAAoB,CAAA,CAC7E,OAAO,CACL,OAAA,CAAS,+CAAA,CACT,KAAM,YAAA,CACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,mBAAmB,CAAA,CACjC,OAAO,CACL,OAAA,CAAS,2CAAA,CACT,IAAA,CAAM,aACN,aAAA,CAAexU,CACjB,EAIF,GAAIwU,CAAAA,CAAY,sEAAsE,CAAA,CACpF,OAAO,CACL,OAAA,CAAS,0CAAA,CACT,IAAA,CAAM,aACN,aAAA,CAAexU,CACjB,CAAA,CAIF,GAAIwU,CAAAA,CAAY,2BAA2B,EAGzC,OAAO,CACL,OAAA,CAAA,CAFexU,CAAAA,EAAO,OAAA,EAAWuU,CAAAA,EAAa,UAAU,CAAA,CAAG,GAAG,GAAK,2BAAA,CAGnE,IAAA,CAAM,aACN,aAAA,CAAevU,CACjB,CAAA,CAKF,GAAIA,CAAAA,EAAO,iBAAA,EAAqB,OAAOA,CAAAA,CAAM,iBAAA,EAAsB,QAAA,CACjE,OAAO,CACL,OAAA,CAASA,EAAM,iBAAA,CAAkB,SAAA,CAAU,CAAA,CAAG,GAAG,CAAA,CACjD,IAAA,CAAM,SACN,aAAA,CAAeA,CACjB,EAIF,GAAIA,CAAAA,EAAO,SAAW,OAAOA,CAAAA,CAAM,OAAA,EAAY,QAAA,CAC7C,OAAO,CACL,QAASA,CAAAA,CAAM,OAAA,CAAQ,SAAA,CAAU,CAAA,CAAG,GAAG,CAAA,CACvC,KAAM,QAAA,CACN,aAAA,CAAeA,CACjB,CAAA,CAIF,IAAItD,CAAAA,CACJ,OAAI,OAAOsD,CAAAA,EAAU,QAAA,EAAYA,CAAAA,GAAU,IAAA,CAErCA,CAAAA,CAAM,kBACRtD,CAAAA,CAAU,MAAA,CAAOsD,CAAAA,CAAM,iBAAiB,CAAA,CAC/BA,CAAAA,CAAM,KACftD,CAAAA,CAAU,CAAA,YAAA,EAAesD,CAAAA,CAAM,IAAI,CAAA,CAAA,CAC1BuU,CAAAA,EAAeA,IAAgB,iBAAA,CACxC7X,CAAAA,CAAU6X,CAAAA,CAAY,SAAA,CAAU,CAAA,CAAG,GAAG,EAEtC7X,CAAAA,CAAU,wBAAA,CAGZA,EAAU6X,CAAAA,CAAY,SAAA,CAAU,EAAG,GAAG,CAAA,EAAK,wBAAA,CAGtC,CACL,OAAA,CAAA7X,CAAAA,CACA,KAAM,QAAA,CACN,aAAA,CAAesD,CACjB,CACF,CAsBO,SAAS0U,GAAY1U,CAAAA,CAAiC,CAC3D,IAAM2U,CAAAA,CAASP,EAAAA,CAAgBpU,CAAK,EACpC,OAAO,CAAC2U,EAAO,OAAA,CAASA,CAAAA,CAAO,IAAI,CACrC,CAsBO,SAASC,EAAAA,CAA0B5U,CAAAA,CAAqB,CAC7D,GAAM,CAAE,IAAA,CAAAyS,CAAK,CAAA,CAAI2B,EAAAA,CAAgBpU,CAAK,EACtC,OAAOyS,CAAAA,GAAS,mBAAA,EAA+BA,CAAAA,GAAS,eAC1D,CAoBO,SAASoC,EAAAA,CAAuB7U,CAAAA,CAAqB,CAC1D,GAAM,CAAE,KAAAyS,CAAK,CAAA,CAAI2B,EAAAA,CAAgBpU,CAAK,CAAA,CACtC,OAAOyS,IAAS,+BAClB,CASO,SAASqC,EAAAA,CAAY9U,CAAAA,CAAqB,CAC/C,GAAM,CAAE,IAAA,CAAAyS,CAAK,CAAA,CAAI2B,EAAAA,CAAgBpU,CAAK,EACtC,OAAOyS,CAAAA,GAAS,MAClB,CAQO,SAASsC,EAAAA,CAAe/U,EAAqB,CAClD,GAAM,CAAE,IAAA,CAAAyS,CAAK,CAAA,CAAI2B,GAAgBpU,CAAK,CAAA,CACtC,OAAOyS,CAAAA,GAAS,SAAA,EAAqBA,CAAAA,GAAS,SAChD,CC3XA,eAAeuC,EAAAA,CACblT,EACA2L,CAAAA,CACAqF,CAAAA,CACAmC,EACAC,CAAAA,CAA4B,SAAA,CAC5BC,EACAC,CAAAA,CACAC,CAAAA,CAA+B,OAAA,CACqB,CACpD,IAAMC,CAAAA,CAAUL,GAAM,OAAA,CAEtB,OAAQnT,CAAAA,EACN,KAAK,KAAA,CAAO,CACV,GAAI,CAACwT,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,wCAAwC,CAAA,CAI1D,IAAIvY,EAAiCoY,CAAAA,CAErC,GAAIpY,IAAQ,MAAA,CAEV,OAAQmY,CAAAA,EACN,KAAK,OAAA,CACH,GAAII,CAAAA,CAAQ,WAAA,CACVvY,CAAAA,CAAM,MAAMuY,CAAAA,CAAQ,WAAA,CAAY7H,CAAQ,CAAA,CAAA,KAExC,MAAM,IAAI,KAAA,CACR,iIAEF,CAAA,CAEF,MAEF,KAAK,QAAA,CACC6H,EAAQ,YAAA,GACVvY,CAAAA,CAAM,MAAMuY,CAAAA,CAAQ,YAAA,CAAa7H,CAAQ,CAAA,CAAA,CAE3C,MAEF,KAAK,OACH,GAAI6H,CAAAA,CAAQ,UAAA,CACVvY,CAAAA,CAAM,MAAMuY,CAAAA,CAAQ,WAAW7H,CAAQ,CAAA,CAAA,KAEvC,MAAM,IAAI,KAAA,CACR,yEACF,EAEF,MAGF,QACE1Q,CAAAA,CAAM,MAAMuY,CAAAA,CAAQ,aAAA,CAAc7H,CAAQ,CAAA,CAC1C,KACJ,CAGF,GAAI,CAAC1Q,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,CAAA,GAAA,EAAMmY,CAAS,CAAA,mBAAA,EAAsBzH,CAAQ,EAAE,CAAA,CAIjE,IAAMY,CAAAA,CAAahB,CAAAA,CAAW,UAAA,CAAWtQ,CAAG,EAC5C,OAAIsY,CAAAA,GAAkB,QACb,MAAMpC,EAAAA,CAAyBH,EAAKzE,CAAU,CAAA,CAEhD,MAAMwE,EAAAA,CAAoBC,CAAAA,CAAKzE,CAAU,CAClD,CAEA,KAAK,UAAA,CAAY,CACf,GAAI,CAACiH,GAAS,qBAAA,CACZ,MAAM,IAAI,KAAA,CAAM,mCAAmC,CAAA,CAErD,OAAO,MAAMA,CAAAA,CAAQ,sBAAsB7H,CAAAA,CAAUqF,CAAAA,CAAKoC,CAAS,CACrE,CAEA,KAAK,YAAA,CAAc,CACjB,GAAI,CAACI,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,yCAAyC,CAAA,CAK3D,GAAIJ,CAAAA,GAAc,SAAA,CAAW,CAC3B,GAAII,CAAAA,CAAQ,uBAAA,CACV,OAAO,MAAMA,CAAAA,CAAQ,wBAAwB7H,CAAAA,CAAUqF,CAAAA,CAAKoC,CAAS,CAAA,CAEvE,MAAM,IAAI,KAAA,CAAM,CAAA,oCAAA,EAAuCA,CAAS,+CAA+C,CACjH,CAGA,IAAMK,CAAAA,CAAQH,CAAAA,GAAiB,MAAA,CAC3BA,EACA,MAAME,CAAAA,CAAQ,cAAA,CAAe7H,CAAQ,CAAA,CAEzC,GAAI8H,EACF,GAAI,CAGF,QADiB,MADF,IAAIC,oBAAG,MAAA,CAAO,CAAE,WAAA,CAAaD,CAAM,CAAC,CAAA,CACrB,UAAUzC,CAAG,CAAA,EAC3B,MAClB,CAAA,MAAS2C,CAAAA,CAAY,CAEnB,GAAIH,CAAAA,CAAQ,uBAAA,EAA2BV,EAAAA,CAA0Ba,CAAU,CAAA,CACzE,OAAO,MAAMH,CAAAA,CAAQ,uBAAA,CAAwB7H,EAAUqF,CAAAA,CAAKoC,CAAS,EAEvE,MAAMO,CACR,CAIF,GAAIH,CAAAA,CAAQ,uBAAA,CACV,OAAO,MAAMA,CAAAA,CAAQ,uBAAA,CAAwB7H,CAAAA,CAAUqF,CAAAA,CAAKoC,CAAS,EAGvE,MAAM,IAAI,KAAA,CAAM,CAAA,8BAAA,EAAiCzH,CAAQ,CAAA,CAAE,CAC7D,CAEA,KAAK,WAAY,CACf,GAAI,CAAC6H,CAAAA,EAAS,qBAAA,CACZ,MAAM,IAAI,KAAA,CAAM,mCAAmC,EAErD,OAAO,MAAMA,CAAAA,CAAQ,qBAAA,CAAsB7H,CAAAA,CAAUqF,CAAAA,CAAKoC,CAAS,CACrE,CAEA,KAAK,QAAA,CAAU,CACb,GAAI,CAACD,CAAAA,EAAM,SAAA,CACT,MAAM,IAAI,KAAA,CAAM,uCAAuC,CAAA,CAEzD,OAAQ,MAAMA,CAAAA,CAAK,SAAA,CAAUnC,CAAAA,CAAKoC,CAAS,CAC7C,CAEA,QACE,MAAM,IAAI,KAAA,CAAM,wBAAwBpT,CAAM,CAAA,CAAE,CACpD,CACF,CAuCA,eAAe4T,GACbjI,CAAAA,CACAqF,CAAAA,CACAmC,CAAAA,CACAC,CAAAA,CAA4B,SAAA,CAC5BG,CAAAA,CAA+B,QACqB,CACpD,IAAMC,CAAAA,CAAUL,CAAAA,EAAM,OAAA,CAItB,GAAIK,GAAS,YAAA,CAAc,CACzB,IAAMK,CAAAA,CAAY,MAAML,CAAAA,CAAQ,aAAa7H,CAAAA,CAAUyH,CAAS,CAAA,CAEhE,GAAIS,CAAAA,CAAW,CAIb,IAAMC,CAAAA,CAAiBN,CAAAA,CAAQ,wBAC3B,MAAMA,CAAAA,CAAQ,wBAAwB7H,CAAQ,CAAA,CAC9C,KAAA,CAIJ,GACEyH,CAAAA,GAAc,SAAA,EACdU,GACAD,CAAAA,GAAc,KAAA,CAEd,GAAI,CAEF,OAAO,MAAMX,GAAoB,YAAA,CAAcvH,CAAAA,CAAUqF,CAAAA,CAAKmC,CAAAA,CAAMC,CAAAA,CAAW,KAAA,CAAA,CAAW,OAAWG,CAAa,CACpH,OAASrV,CAAAA,CAAO,CAGd,GAAI,CAAC4U,EAAAA,CAA0B5U,CAAK,CAAA,CAClC,MAAMA,CAAAA,CAGR,QAAQ,IAAA,CAAK,0DAAA,CAA4DA,CAAK,EAChF,CAIF,GACEkV,IAAc,SAAA,EACdU,CAAAA,EACAD,CAAAA,GAAc,UAAA,CAEd,GAAI,CACF,OAAO,MAAMX,EAAAA,CAAoB,aAAcvH,CAAAA,CAAUqF,CAAAA,CAAKmC,EAAMC,CAAAA,CAAW,KAAA,CAAA,CAAW,KAAA,CAAA,CAAWG,CAAa,CACpH,CAAA,MAASrV,EAAO,CACd,GAAI,CAAC4U,EAAAA,CAA0B5U,CAAK,CAAA,CAClC,MAAMA,CAAAA,CAER,OAAA,CAAQ,IAAA,CAAK,oEAAA,CAAsEA,CAAK,EAC1F,CAIF,GACEkV,CAAAA,GAAc,WACdU,CAAAA,EACAD,CAAAA,GAAc,WAEd,GAAI,CAEF,OAAO,MAAMX,EAAAA,CAAoB,YAAA,CAAcvH,EAAUqF,CAAAA,CAAKmC,CAAAA,CAAMC,CAAAA,CAAW,KAAA,CAAA,CAAW,KAAA,CAAA,CAAWG,CAAa,CACpH,CAAA,MAASrV,CAAAA,CAAO,CAGd,GAAI,CAAC4U,EAAAA,CAA0B5U,CAAK,CAAA,CAClC,MAAMA,EAGR,OAAA,CAAQ,IAAA,CAAK,gEAAiEA,CAAK,EACrF,CAIF,GAAI,CACF,OAAO,MAAMgV,EAAAA,CAAoBW,CAAAA,CAAWlI,CAAAA,CAAUqF,CAAAA,CAAKmC,CAAAA,CAAMC,CAAAA,CAAW,OAAW,KAAA,CAAA,CAAWG,CAAa,CACjH,CAAA,MAASrV,CAAAA,CAAO,CAEd,GAAI4U,EAAAA,CAA0B5U,CAAK,GAG/BsV,CAAAA,CAAQ,iBAAA,GACPJ,IAAc,SAAA,EAAaA,CAAAA,GAAc,QAAA,CAAA,CAC1C,CAEA,IAAM5I,CAAAA,CAAgBwG,EAAI,MAAA,CAAS,CAAA,CAAIA,CAAAA,CAAI,CAAC,CAAA,CAAE,CAAC,EAAI,SAAA,CAC7C+C,CAAAA,CAAiB,MAAMP,CAAAA,CAAQ,iBAAA,CAAkBJ,CAAAA,CAAW5I,CAAa,CAAA,CAC/E,GAAI,CAACuJ,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,CAAA,mBAAA,EAAsBX,CAAS,CAAA,yCAAA,CAA2C,CAAA,CAM5F,OAAO,MAAMF,EAAAA,CAAoBa,CAAAA,CAAgBpI,CAAAA,CAAUqF,CAAAA,CAAKmC,CAAAA,CAAMC,CAAAA,CAAW,OAAW,MAAA,CAAWG,CAAa,CACtH,CAIF,MAAMrV,CACR,CACF,CAGA,GAAIkV,CAAAA,GAAc,SAAA,CAEhB,GAAI,CACF,OAAO,MAAMF,EAAAA,CAAoB,YAAA,CAAcvH,CAAAA,CAAUqF,CAAAA,CAAKmC,CAAAA,CAAMC,EAAW,KAAA,CAAA,CAAW,KAAA,CAAA,CAAWG,CAAa,CACpH,CAAA,MAASS,CAAAA,CAAS,CAChB,GAAIlB,EAAAA,CAA0BkB,CAAO,CAAA,EAAKR,CAAAA,CAAQ,iBAAA,CAAmB,CACnE,IAAMhJ,CAAAA,CAAgBwG,EAAI,MAAA,CAAS,CAAA,CAAIA,EAAI,CAAC,CAAA,CAAE,CAAC,CAAA,CAAI,SAAA,CAC7C+C,CAAAA,CAAiB,MAAMP,CAAAA,CAAQ,iBAAA,CAAkBJ,CAAAA,CAAW5I,CAAa,CAAA,CAC/E,GAAI,CAACuJ,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,CAAA,4BAAA,EAA+BpI,CAAQ,wBAAwB,CAAA,CAEjF,OAAO,MAAMuH,EAAAA,CAAoBa,CAAAA,CAAgBpI,EAAUqF,CAAAA,CAAKmC,CAAAA,CAAMC,CAAAA,CAAW,MAAA,CAAW,MAAA,CAAWG,CAAa,CACtH,CACA,MAAMS,CACR,CAAA,KAAA,GACSZ,CAAAA,GAAc,QAAA,EAAYI,EAAQ,iBAAA,CAAmB,CAE9D,IAAMhJ,CAAAA,CAAgBwG,CAAAA,CAAI,MAAA,CAAS,EAAIA,CAAAA,CAAI,CAAC,EAAE,CAAC,CAAA,CAAI,UAC7C+C,CAAAA,CAAiB,MAAMP,CAAAA,CAAQ,iBAAA,CAAkBJ,CAAAA,CAAW5I,CAAa,EAC/E,GAAI,CAACuJ,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,sBAAsBX,CAAS,CAAA,yCAAA,CAA2C,CAAA,CAE5F,OAAO,MAAMF,EAAAA,CAAoBa,EAAgBpI,CAAAA,CAAUqF,CAAAA,CAAKmC,EAAMC,CAAAA,CAAW,MAAA,CAAW,OAAWG,CAAa,CACtH,CACF,CAIA,IAAMU,CAAAA,CAAQd,GAAM,aAAA,EAAiB,CAAC,KAAA,CAAO,UAAA,CAAY,YAAA,CAAc,UAAA,CAAY,QAAQ,CAAA,CACrFe,CAAAA,CAA6B,IAAI,GAAA,CAEvC,IAAA,IAAWlU,CAAAA,IAAUiU,EACnB,GAAI,CAEF,IAAIE,CAAAA,CAAa,CAAA,CAAA,CACbC,EAAa,EAAA,CACbC,CAAAA,CACAC,CAAAA,CAEJ,OAAQtU,CAAAA,EACN,KAAK,KAAA,CACH,GAAI,CAACwT,CAAAA,CACHW,CAAAA,CAAa,CAAA,CAAA,CACbC,EAAa,qBAAA,CAAA,KACR,CAEL,IAAInZ,CAAAA,CAEJ,OAAQmY,CAAAA,EACN,KAAK,OAAA,CACCI,EAAQ,WAAA,GACVvY,CAAAA,CAAM,MAAMuY,CAAAA,CAAQ,WAAA,CAAY7H,CAAQ,CAAA,CAAA,CAE1C,MACF,KAAK,SACC6H,CAAAA,CAAQ,YAAA,GACVvY,CAAAA,CAAM,MAAMuY,CAAAA,CAAQ,YAAA,CAAa7H,CAAQ,CAAA,CAAA,CAE3C,MACF,KAAK,MAAA,CACC6H,CAAAA,CAAQ,UAAA,GACVvY,EAAM,MAAMuY,CAAAA,CAAQ,WAAW7H,CAAQ,CAAA,CAAA,CAEzC,MAEF,QACE1Q,CAAAA,CAAM,MAAMuY,CAAAA,CAAQ,aAAA,CAAc7H,CAAQ,EAC1C,KACJ,CAEK1Q,CAAAA,CAIHoZ,CAAAA,CAAgBpZ,CAAAA,EAHhBkZ,CAAAA,CAAa,GACbC,CAAAA,CAAa,CAAA,GAAA,EAAMhB,CAAS,CAAA,cAAA,CAAA,EAIhC,CACA,MACF,KAAK,UAAA,CACEI,CAAAA,EAAS,qBAAA,GACZW,CAAAA,CAAa,CAAA,CAAA,CACbC,CAAAA,CAAa,qCAEf,MACF,KAAK,YAAA,CACH,GAAI,CAACZ,CAAAA,CACHW,EAAa,CAAA,CAAA,CACbC,CAAAA,CAAa,qBAAA,CAAA,KACR,CAEL,IAAMX,CAAAA,CAAQ,MAAMD,CAAAA,CAAQ,cAAA,CAAe7H,CAAQ,CAAA,CAC/C8H,CAAAA,GACFa,CAAAA,CAAkBb,GAItB,CACA,MACF,KAAK,UAAA,CACED,CAAAA,EAAS,wBACZW,CAAAA,CAAa,CAAA,CAAA,CACbC,CAAAA,CAAa,mCAAA,CAAA,CAEf,MACF,KAAK,SACEjB,CAAAA,EAAM,SAAA,GACTgB,CAAAA,CAAa,CAAA,CAAA,CACbC,CAAAA,CAAa,uCAAA,CAAA,CAEf,KACJ,CAEA,GAAID,CAAAA,CAAY,CACdD,CAAAA,CAAO,GAAA,CAAIlU,EAAQ,IAAI,KAAA,CAAM,YAAYoU,CAAU,CAAA,CAAE,CAAC,CAAA,CACtD,QACF,CAGA,OAAO,MAAMlB,EAAAA,CAAoBlT,EAAQ2L,CAAAA,CAAUqF,CAAAA,CAAKmC,CAAAA,CAAMC,CAAAA,CAAWiB,CAAAA,CAAeC,CAAAA,CAAiBf,CAAa,CACxH,CAAA,MAASrV,CAAAA,CAAO,CAKd,GAHAgW,CAAAA,CAAO,IAAIlU,CAAAA,CAAQ9B,CAAc,EAG7B,CAAC4U,EAAAA,CAA0B5U,CAAK,CAAA,CAElC,MAAMA,CAEV,CAQF,GAAI,CAJoB,MAAM,IAAA,CAAKgW,CAAAA,CAAO,MAAA,EAAQ,CAAA,CAAE,IAAA,CAClDhW,GAAS,CAACA,CAAAA,CAAM,OAAA,CAAQ,UAAA,CAAW,UAAU,CAC/C,EAEsB,CAEpB,IAAMqW,CAAAA,CAAc,KAAA,CAAM,IAAA,CAAKL,CAAAA,CAAO,SAAS,CAAA,CAC5C,GAAA,CAAI,CAAC,CAAClU,CAAAA,CAAQ9B,CAAK,CAAA,GAAM,CAAA,EAAG8B,CAAM,CAAA,EAAA,EAAK9B,CAAAA,CAAM,OAAO,EAAE,CAAA,CACtD,IAAA,CAAK,IAAI,CAAA,CACZ,MAAM,IAAI,MACR,CAAA,+CAAA,EAAkDyN,CAAQ,KAAK4I,CAAW,CAAA,CAC5E,CACF,CAGA,IAAMC,CAAAA,CAAgB,KAAA,CAAM,IAAA,CAAKN,CAAAA,CAAO,SAAS,CAAA,CAC9C,GAAA,CAAI,CAAC,CAAClU,CAAAA,CAAQ9B,CAAK,CAAA,GAAM,CAAA,EAAG8B,CAAM,CAAA,EAAA,EAAK9B,CAAAA,CAAM,OAAO,EAAE,CAAA,CACtD,IAAA,CAAK,IAAI,CAAA,CAEZ,MAAM,IAAI,KAAA,CACR,CAAA,6CAAA,EAAgDyN,CAAQ,CAAA,UAAA,EAAa6I,CAAa,CAAA,CACpF,CACF,CA6DO,SAASC,CAAAA,CACdC,CAAAA,CAA2B,EAAC,CAC5B/I,EACAqE,CAAAA,CACA2E,CAAAA,CAAgE,IAAM,CAAC,CAAA,CACvExB,CAAAA,CACAC,EAA4B,SAAA,CAC5B7I,CAAAA,CAeA,CACA,IAAMgJ,CAAAA,CAAgBhJ,GAAS,aAAA,EAAiB,OAAA,CAEhD,OAAOqK,sBAAAA,CAAY,CACjB,SAAA,CAAAD,EACA,QAAA,CAAUpK,CAAAA,EAAS,QAAA,CACnB,OAAA,CAASA,CAAAA,EAAS,OAAA,CAClB,UAAWA,CAAAA,EAAS,SAAA,CACpB,WAAA,CAAa,CAAC,GAAGmK,CAAAA,CAAa/I,CAAQ,CAAA,CACtC,UAAA,CAAY,MAAOkJ,CAAAA,EAAe,CAChC,GAAI,CAAClJ,CAAAA,CACH,MAAM,IAAI,KAAA,CACR,kEACF,CAAA,CAGF,IAAMqF,CAAAA,CAAMhB,CAAAA,CAAW6E,CAAO,CAAA,CAE9B,GAAI,CAEF,GAAI1B,CAAAA,EAAM,cAAA,GAAmB,CAAA,CAAA,EAASA,CAAAA,EAAM,OAAA,CAC1C,OAAO,MAAMS,EAAAA,CAAsBjI,CAAAA,CAAUqF,EAAKmC,CAAAA,CAAMC,CAAAA,CAAWG,CAAa,CAAA,CAIlF,GAAIJ,CAAAA,EAAM,SAAA,CACR,OAAO,MAAMA,EAAK,SAAA,CAAUnC,CAAAA,CAAKoC,CAAS,CAAA,CAG5C,IAAM0B,CAAAA,CAAa3B,GAAM,UAAA,CACzB,GAAI2B,CAAAA,CAAY,CAEd,GAAI1B,CAAAA,GAAc,UAChB,MAAM,IAAI,MACR,CAAA,mEAAA,EAAsEA,CAAS,0DACtCA,CAAS,CAAA,YAAA,CACpD,CAAA,CAGF,IAAM7G,CAAAA,CAAahB,CAAAA,CAAW,WAAWuJ,CAAU,CAAA,CAEnD,OAAO,MAAM/D,EAAAA,CACXC,CAAAA,CACAzE,CACF,CACF,CAEA,IAAMwI,CAAAA,CAAc5B,CAAAA,EAAM,WAAA,CAC1B,GAAI4B,CAAAA,CAGF,OAAA,CADiB,MADF,IAAIrB,mBAAAA,CAAG,OAAO,CAAE,WAAA,CAAAqB,CAAY,CAAC,CAAA,CACd,SAAA,CAAU/D,CAAG,CAAA,EAC3B,MAAA,CAGlB,MAAM,IAAI,KAAA,CACR,mEACF,CACF,CAAA,MAASnQ,CAAAA,CAAG,CACV,MAAIA,CAAAA,YAAaE,CAAAA,CAKT,IAAI,KAAA,CAAMF,CAAAA,CAAE,OAAO,CAAA,CAErBA,CACR,CACF,CACF,CAAC,CACH,CClnBA,eAAsBmU,EAAAA,CACpBrJ,CAAAA,CACA1O,CAAAA,CACA4X,CAAAA,CACA1B,CAAAA,CACA,CACA,GAAI,CAACxH,CAAAA,CACH,MAAM,IAAI,KAAA,CACR,kEACF,CAAA,CAEF,IAAMsJ,EAAQ,CACZ,EAAA,CAAAhY,EACA,cAAA,CAAgB,EAAC,CACjB,sBAAA,CAAwB,CAAC0O,CAAQ,EACjC,IAAA,CAAM,IAAA,CAAK,SAAA,CAAUkJ,CAAO,CAC9B,CAAA,CAEA,GAAI1B,CAAAA,EAAM,SAAA,CACR,OAAOA,CAAAA,CAAK,SAAA,CAAU,CAAC,CAAC,aAAA,CAAe8B,CAAK,CAAC,CAAA,CAAG,SAAS,EAG3D,IAAMH,CAAAA,CAAa3B,CAAAA,EAAM,UAAA,CACzB,GAAI2B,CAAAA,CAAY,CACd,IAAMvI,CAAAA,CAAahB,CAAAA,CAAW,UAAA,CAAWuJ,CAAU,CAAA,CAEnD,OAAO/D,EAAAA,CACL,CAAC,CAAC,aAAA,CAAekE,CAAK,CAAC,EACvB1I,CACF,CACF,CAGA,IAAMwI,CAAAA,CAAc5B,GAAM,WAAA,CAC1B,GAAI4B,CAAAA,CAIF,OAAA,CAHiB,MAAM,IAAIrB,oBAAG,MAAA,CAAO,CACnC,WAAA,CAAAqB,CACF,CAAC,CAAA,CAAE,WAAW,EAAC,CAAG,CAACpJ,CAAQ,CAAA,CAAG1O,CAAAA,CAAI,KAAK,SAAA,CAAU4X,CAAO,CAAC,CAAA,EACzC,MAAA,CAgBlB,IAAMrB,EAAUL,CAAAA,EAAM,OAAA,CACtB,GAAIK,CAAAA,CAAS,CACX,IAAMxC,EACJ,CAAC,CAAC,aAAA,CAAeiE,CAAK,CAAC,CAAA,CAEzB,GAAI9B,CAAAA,EAAM,SAAA,GAAc,UAAA,EAAcK,CAAAA,CAAQ,qBAAA,CAC5C,OAAOA,EAAQ,qBAAA,CAAsB7H,CAAAA,CAAUqF,EAAK,SAAS,CAAA,CAE/D,GAAImC,CAAAA,EAAM,SAAA,GAAc,UAAA,EAAcK,CAAAA,CAAQ,qBAAA,CAC5C,OAAOA,EAAQ,qBAAA,CAAsB7H,CAAAA,CAAUqF,CAAAA,CAAK,SAAS,CAEjE,CAEA,MAAM,IAAI,KAAA,CACR,mEACF,CACF,CClEO,IAAMkE,GAA+B,IAYrC,SAASC,EACd3B,CAAAA,CACAD,CAAAA,CACA7I,EACsB,CACtB,GAAK8I,CAAAA,EAAS,iBAAA,CACd,CAAA,GAAID,CAAAA,GAAkB,OAEpB,OAAOC,CAAAA,CAAQ,iBAAA,CAAkB9I,CAAI,CAAA,CAEvC,UAAA,CAAW,IAAM8I,CAAAA,CAAQ,iBAAA,GAAoB9I,CAAI,CAAA,CAAG,GAA4B,EAAA,CAClF,CChCO,SAAS0K,EAAAA,CAAkBtc,EAAmB2H,CAAAA,CAAmC,CACtF,IAAM4U,CAAAA,CAAgB,WAAA,CAAY,OAAA,CAAQvc,CAAS,CAAA,CACnD,GAAI,CAAC2H,CAAAA,CAAQ,OAAO4U,CAAAA,CAIpB,GAAI,OAAO,WAAA,CAAY,KAAQ,UAAA,CAC7B,OAAO,WAAA,CAAY,GAAA,CAAI,CAAC5U,CAAAA,CAAQ4U,CAAa,CAAC,CAAA,CAGhD,IAAMC,CAAAA,CAAK,IAAI,gBACTC,CAAAA,CAAU,IAAM,CACpB,IAAM7V,CAAAA,CAASe,CAAAA,CAAO,QAAUA,CAAAA,CAAO,MAAA,CAAS4U,CAAAA,CAAc,MAAA,CAC9DC,CAAAA,CAAG,KAAA,CAAM5V,CAAM,CAAA,CACfe,CAAAA,CAAO,mBAAA,CAAoB,OAAA,CAAS8U,CAAO,CAAA,CAC3CF,EAAc,mBAAA,CAAoB,OAAA,CAASE,CAAO,EACpD,CAAA,CACA,OAAI9U,CAAAA,CAAO,OAAA,CACT6U,CAAAA,CAAG,KAAA,CAAM7U,CAAAA,CAAO,MAAM,EACb4U,CAAAA,CAAc,OAAA,CACvBC,CAAAA,CAAG,KAAA,CAAMD,CAAAA,CAAc,MAAM,GAE7B5U,CAAAA,CAAO,gBAAA,CAAiB,OAAA,CAAS8U,CAAAA,CAAS,CAAE,IAAA,CAAM,IAAK,CAAC,CAAA,CACxDF,EAAc,gBAAA,CAAiB,OAAA,CAASE,EAAS,CAAE,IAAA,CAAM,IAAK,CAAC,CAAA,CAAA,CAE1DD,CAAAA,CAAG,MACZ,CCTA,IAAME,IAAiB,IAAM,CAC3B,GAAI,CACF,OAAO,OAAA,CAAQ,KAAK,QAAA,GAAa,aACnC,MAAQ,CACN,OAAO,MACT,CACF,CAAA,GAAG,CAEGC,EAAAA,CAAkB,IAAM,CAC5B,GAAI,CACF,OAAO,OAAA,CAAQ,GAAA,EAAK,mBACtB,CAAA,KAAQ,CACN,MACF,CACF,CAAA,CAGaC,EAAAA,CAA0B,GAAA,CAsB1BC,EAAAA,CAAoB,IAAS,GAAA,CAsBtCC,EAAAA,CAGAC,GAEJ,SAASC,EAAAA,EAAkC,CACzC,OAAIF,EAAAA,CACKA,EAAAA,EAAoB,CAErBC,EAAAA,GAAwB,IAAIE,sBACtC,CAEO,IAAMC,CAAAA,CAAS,CACpB,cAAA,CAAgB,oBAAA,CAQhB,cAAA,CAAgB,OAYhB,eAAA,CAAiB,QAAA,CASjB,QAAA,CAAU,YAAA,CACV,SAAA,CAAW,sBAAA,CAEX,IAAI,SAAA,EAAsB,CACxB,OAAO3d,CAAAA,CAAa,KACtB,EACA,YAAA,CAAcod,EAAAA,EAAgB,CAQ9B,IAAI,WAAA,EAA2B,CAC7B,OAAOK,EAAAA,EACT,CAAA,CACA,IAAI,WAAA,CAAYG,CAAAA,CAAqB,CACnCL,EAAAA,CAAsB,IAAMK,EAC9B,CAAA,CACA,YAAA,CAAc,yBAAA,CACd,cAAe,uBAAA,CAEf,YAAA,CAAc,EAAC,CACf,QAAA,CAAU,EAAC,CACX,YAAA,CAAc,EAAC,CAEf,cAAA,CAAgB,GAChB,kBAAA,CAAoB,EAAC,CAErB,gBAAA,CAAkB,KACpB,CAAA,CAQiBC,kCAAV,CACE,SAASC,CAAAA,CAAeF,CAAAA,CAAqB,CAClDD,CAAAA,CAAO,YAAcC,EACvB,CAFOC,GAAS,cAAA,CAAAC,CAAAA,CAsBT,SAASC,CAAAA,CAAuB/W,CAAAA,CAA4B,CACjEuW,EAAAA,CAAsBvW,EACxB,CAFO6W,GAAS,sBAAA,CAAAE,CAAAA,CAQT,SAASC,CAAAA,CAAkBC,CAAAA,CAAc,CAC9CN,EAAO,cAAA,CAAiBM,EAC1B,CAFOJ,EAAAA,CAAS,iBAAA,CAAAG,CAAAA,CAST,SAASE,CAAAA,CAAkBD,CAAAA,CAA0B,CAC1DN,CAAAA,CAAO,cAAA,CAAiBM,EAC1B,CAFOJ,EAAAA,CAAS,iBAAA,CAAAK,CAAAA,CAWT,SAASC,CAAAA,CAAYC,EAAkB,CAC5CT,CAAAA,CAAO,QAAA,CAAWS,EACpB,CAFOP,EAAAA,CAAS,YAAAM,CAAAA,CAiBT,SAASE,CAAAA,CAAmBC,CAAAA,CAAkB,CACnD,GAAI,OAAOA,CAAAA,EAAa,QAAA,EAAYA,EAAS,IAAA,EAAK,GAAM,GACtD,MAAM,IAAI,KAAA,CACR,kLAEF,CAAA,CAGFX,CAAAA,CAAO,gBAAkBW,EAC3B,CATOT,EAAAA,CAAS,kBAAA,CAAAQ,CAAAA,CAuBT,SAASE,GAA8B,CAC5C,OAAIZ,CAAAA,CAAO,cAAA,CACFA,CAAAA,CAAO,cAAA,CAGZ,OAAO,MAAA,CAAW,GAAA,EAAe,OAAO,QAAA,EAAU,MAAA,CAC7C,OAAO,QAAA,CAAS,MAAA,CAIlB,oBACT,CAXOE,EAAAA,CAAS,mBAAA,CAAAU,EAiBT,SAASC,CAAAA,CAAgBP,CAAAA,CAAc,CAC5CN,CAAAA,CAAO,YAAA,CAAeM,EACxB,CAFOJ,EAAAA,CAAS,eAAA,CAAAW,CAAAA,CAQT,SAASC,CAAAA,CAAaR,EAAc,CACzCN,CAAAA,CAAO,UAAYM,EACrB,CAFOJ,GAAS,YAAA,CAAAY,CAAAA,CAWT,SAASC,CAAAA,CAAa3d,CAAAA,CAAiB,CAC5CE,GAAeF,CAAK,EACtB,CAFO8c,EAAAA,CAAS,YAAA,CAAAa,CAAAA,CAWT,SAASvd,CAAAA,CAAaJ,CAAAA,CAAiB,CAC5CI,EAAAA,CAAmBJ,CAAK,EAC1B,CAFO8c,EAAAA,CAAS,YAAA,CAAA1c,CAAAA,CAYT,SAASE,CAAAA,CAAkBC,CAAAA,CAA4C,CAC5ED,EAAAA,CAAwBC,CAAG,EAC7B,CAFOuc,EAAAA,CAAS,iBAAA,CAAAxc,EAWT,SAASI,CAAAA,CAAakd,CAAAA,CAAmB,CAC9Cld,EAAAA,CAAmBkd,CAAS,EAC9B,CAFOd,EAAAA,CAAS,YAAA,CAAApc,CAAAA,CAaT,SAASE,CAAAA,CAAcvB,EAAkC,CAC9DuB,EAAAA,CAAoBvB,CAAI,EAC1B,CAFOyd,GAAS,aAAA,CAAAlc,CAAAA,CAYT,SAASxB,CAAAA,CAAkBC,CAAAA,CAAoC,CACpED,GAAwBC,CAAI,EAC9B,CAFOyd,EAAAA,CAAS,iBAAA,CAAA1d,CAAAA,CAaT,SAASye,CAAAA,EAAyD,CACvE,OAAOzX,EACT,CAFO0W,EAAAA,CAAS,uBAAAe,CAAAA,CAShB,SAASC,EAAiBvE,CAAAA,CAAqD,CAE7E,GAAI,4BAAA,CAA6B,IAAA,CAAKA,CAAO,CAAA,CAC3C,OAAO,CAAE,KAAM,KAAA,CAAO,MAAA,CAAQ,6BAA8B,CAAA,CAI9D,GAAI,wBAAA,CAAyB,KAAKA,CAAO,CAAA,CACvC,OAAO,CAAE,IAAA,CAAM,KAAA,CAAO,OAAQ,iDAAkD,CAAA,CAIlF,GAAI,wBAAA,CAAyB,IAAA,CAAKA,CAAO,CAAA,CACvC,OAAO,CAAE,IAAA,CAAM,KAAA,CAAO,MAAA,CAAQ,uDAAwD,CAAA,CAIxF,GAAI,UAAA,CAAW,IAAA,CAAKA,CAAO,CAAA,EAAK,WAAW,IAAA,CAAKA,CAAO,CAAA,CACrD,OAAO,CAAE,IAAA,CAAM,MAAO,MAAA,CAAQ,0CAA2C,CAAA,CAI3E,IAAMwE,CAAAA,CAAiB,qBAAA,CACnBC,EACJ,KAAA,CAAQA,CAAAA,CAAQD,CAAAA,CAAe,IAAA,CAAKxE,CAAO,CAAA,IAAO,MAAM,CACtD,GAAM,EAAG0E,CAAAA,CAAKC,CAAG,EAAIF,CAAAA,CAErB,GADc,QAAA,CAASE,CAAAA,CAAK,EAAE,CAAA,CAAI,SAASD,CAAAA,CAAK,EAAE,EACtC,GAAA,CACV,OAAO,CAAE,IAAA,CAAM,KAAA,CAAO,MAAA,CAAQ,CAAA,kBAAA,EAAqBA,CAAG,CAAA,CAAA,EAAIC,CAAG,CAAA,CAAA,CAAI,CAErE,CAEA,OAAO,CAAE,IAAA,CAAM,IAAK,CACtB,CAOA,SAASC,CAAAA,CAAqBC,CAAAA,CAAmD,CAE/E,IAAMC,CAAAA,CAAoB,CAExB,IAAI,MAAA,CAAO,EAAE,EAAI,GAAA,CAEjB,IAAA,CAAK,MAAA,CAAO,EAAE,CAAA,CAAI,GAAA,CAElB,IAAI,MAAA,CAAO,GAAG,CAAA,CAEd,KAAA,CAAM,MAAA,CAAO,EAAE,EAAI,KAAA,CAAM,MAAA,CAAO,EAAE,CAAA,CAAI,GACxC,CAAA,CAEMC,EAAmB,CAAA,CAEzB,IAAA,IAAWvL,KAASsL,CAAAA,CAAmB,CACrC,IAAMxf,CAAAA,CAAQ,IAAA,CAAK,GAAA,EAAI,CACvB,GAAI,CACFuf,EAAM,IAAA,CAAKrL,CAAK,CAAA,CAChB,IAAMwL,CAAAA,CAAW,IAAA,CAAK,KAAI,CAAI1f,CAAAA,CAE9B,GAAI0f,CAAAA,CAAWD,CAAAA,CACb,OAAO,CACL,IAAA,CAAM,CAAA,CAAA,CACN,MAAA,CAAQ,CAAA,sBAAA,EAAyBA,CAAgB,CAAA,SAAA,EAAYC,CAAQ,CAAA,mBAAA,EAAsBxL,CAAAA,CAAM,MAAM,CAAA,CAAA,CACzG,CAEJ,CAAA,MAAS5G,EAAK,CACZ,OAAO,CAAE,IAAA,CAAM,KAAA,CAAO,MAAA,CAAQ,6BAA6BA,CAAG,CAAA,CAAG,CACnE,CACF,CAEA,OAAO,CAAE,IAAA,CAAM,IAAK,CACtB,CAQA,SAASqS,EAAiBjF,CAAAA,CAAiBkF,CAAAA,CAAY,GAAA,CAAoB,CAGzE,GAAI,CAEF,GAAI,CAAClF,CAAAA,CACH,OAAI6C,EAAAA,EACF,OAAA,CAAQ,IAAA,CAAK,4CAA4C,CAAA,CAEpD,IAAA,CAGT,GAAI7C,CAAAA,CAAQ,MAAA,CAASkF,CAAAA,CACnB,OAAIrC,EAAAA,EACF,OAAA,CAAQ,KAAK,CAAA,oCAAA,EAAuC7C,CAAAA,CAAQ,MAAM,CAAA,aAAA,EAAgBkF,CAAS,CAAA,YAAA,EAAelF,CAAAA,CAAQ,SAAA,CAAU,CAAA,CAAG,EAAE,CAAC,CAAA,GAAA,CAAK,CAAA,CAElI,IAAA,CAIT,IAAMmF,CAAAA,CAAiBZ,EAAiBvE,CAAO,CAAA,CAC/C,GAAI,CAACmF,CAAAA,CAAe,IAAA,CAClB,OAAItC,EAAAA,EACF,OAAA,CAAQ,KAAK,CAAA,qDAAA,EAAwDsC,CAAAA,CAAe,MAAM,CAAA,aAAA,EAAgBnF,CAAAA,CAAQ,SAAA,CAAU,CAAA,CAAG,EAAE,CAAC,KAAK,CAAA,CAElI,IAAA,CAIT,IAAI6E,CAAAA,CACJ,GAAI,CACFA,EAAQ,IAAI,MAAA,CAAO7E,CAAO,EAC5B,CAAA,MAASoF,CAAAA,CAAY,CACnB,OAAIvC,EAAAA,EACF,QAAQ,IAAA,CAAK,CAAA,2DAAA,EAA8D7C,EAAQ,SAAA,CAAU,CAAA,CAAG,EAAE,CAAC,CAAA,GAAA,CAAA,CAAOoF,CAAU,EAE/G,IACT,CAGA,IAAMC,CAAAA,CAAcT,CAAAA,CAAqBC,CAAK,EAC9C,OAAKQ,CAAAA,CAAY,IAAA,CAOVR,CAAAA,EANDhC,EAAAA,EACF,OAAA,CAAQ,KAAK,CAAA,kDAAA,EAAqDwC,CAAAA,CAAY,MAAM,CAAA,aAAA,EAAgBrF,CAAAA,CAAQ,UAAU,CAAA,CAAG,EAAE,CAAC,CAAA,GAAA,CAAK,CAAA,CAE5H,IAAA,CAIX,OAASpN,CAAAA,CAAK,CACZ,OAAIiQ,EAAAA,EACF,OAAA,CAAQ,IAAA,CAAK,4DAA4D7C,CAAAA,CAAQ,SAAA,CAAU,CAAA,CAAG,EAAE,CAAC,CAAA,GAAA,CAAA,CAAOpN,CAAG,CAAA,CAEtG,IACT,CACF,CAMO,SAAS0S,GACdC,CAAAA,CAAwB,EAAC,CACzB,CACA,IAAMC,CAAAA,CAAcvhB,GAClB,KAAA,CAAM,OAAA,CAAQA,CAAK,CAAA,CAAIA,CAAAA,CAAM,MAAA,CAAQsG,GAAyB,OAAOA,CAAAA,EAAS,QAAQ,CAAA,CAAI,EAAC,CAGvFiP,EAAQ+L,CAAAA,EAAS,GAEjBE,CAAAA,CAAW,CACf,SAAUD,CAAAA,CAAWhM,CAAAA,CAAM,QAAQ,CAAA,CACnC,IAAA,CAAMgM,CAAAA,CAAWhM,EAAM,IAAI,CAAA,CAC3B,QAAA,CAAUgM,CAAAA,CAAWhM,CAAAA,CAAM,KAAK,CAClC,CAAA,CAEA6J,CAAAA,CAAO,YAAA,CAAeoC,CAAAA,CAAS,QAAA,CAC/BpC,CAAAA,CAAO,SAAWoC,CAAAA,CAAS,IAAA,CAC3BpC,CAAAA,CAAO,YAAA,CAAeoC,CAAAA,CAAS,QAAA,CAG/BpC,EAAO,cAAA,CAAiBoC,CAAAA,CAAS,IAAA,CAC9B,GAAA,CAAKzF,CAAAA,EAAYiF,CAAAA,CAAiBjF,CAAO,CAAC,CAAA,CAC1C,MAAA,CAAQ1Y,CAAAA,EAAmBA,CAAAA,GAAM,IAAI,EAIxC+b,CAAAA,CAAO,kBAAA,CAAqB,EAAC,CAE7B,IAAMqC,CAAAA,CAAmBD,EAAS,IAAA,CAAK,MAAA,CAASpC,EAAO,cAAA,CAAe,MAAA,CAMlE,CAACA,CAAAA,CAAO,gBAAA,EAAoBR,EAAAA,GAC9B,OAAA,CAAQ,GAAA,CAAI,kCAAkC,EAC9C,OAAA,CAAQ,GAAA,CAAI,CAAA,cAAA,EAAiB4C,CAAAA,CAAS,QAAA,CAAS,MAAM,EAAE,CAAA,CACvD,OAAA,CAAQ,GAAA,CAAI,CAAA,kBAAA,EAAqBpC,CAAAA,CAAO,cAAA,CAAe,MAAM,CAAA,CAAA,EAAIoC,CAAAA,CAAS,KAAK,MAAM,CAAA,WAAA,EAAcC,CAAgB,CAAA,UAAA,CAAY,CAAA,CAC/H,OAAA,CAAQ,GAAA,CAAI,CAAA,mBAAA,EAAsBD,CAAAA,CAAS,SAAS,MAAM,CAAA,8BAAA,CAAgC,CAAA,CAEtFC,CAAAA,CAAmB,CAAA,EACrB,OAAA,CAAQ,KAAK,CAAA,MAAA,EAASA,CAAgB,CAAA,8FAAA,CAAgG,CAAA,CAAA,CAI1IrC,CAAAA,CAAO,gBAAA,CAAmB,KAC5B,CA9COE,EAAAA,CAAS,aAAA+B,GAAAA,CAAAA,EA9VD/B,qBAAAA,GAAA,IC/IV,SAASoC,EAAAA,EAAkB,CAChC,OAAO,IAAIvC,uBAAY,CACrB,cAAA,CAAgB,CACd,OAAA,CAAS,CAIP,oBAAA,CAAsB,MACtB,cAAA,CAAgB,KAClB,CACF,CACF,CAAC,CACH,CACO,IAAMwC,CAAAA,CAAiB,IAAMvC,CAAAA,CAAO,WAAA,CAE1BwC,wCAAV,CACE,SAASC,CAAAA,CAAgBC,CAAAA,CAAoB,CAElD,OADoBH,GAAe,CAChB,YAAA,CAAgBG,CAAQ,CAC7C,CAHOF,CAAAA,CAAS,aAAAC,CAAAA,CAKT,SAASE,EAAwBD,CAAAA,CAAoB,CAE1D,OADoBH,CAAAA,EAAe,CAChB,YAAA,CAA8BG,CAAQ,CAC3D,CAHOF,EAAS,oBAAA,CAAAG,CAAAA,CAKhB,eAAsBC,CAAAA,CAAiBrO,CAAAA,CAA6B,CAElE,aADoBgO,CAAAA,EAAe,CACjB,aAAA,CAAchO,CAAO,CAAA,CAChCkO,CAAAA,CAAgBlO,EAAQ,QAAQ,CACzC,CAJAiO,CAAAA,CAAsB,aAAA,CAAAI,EAMtB,eAAsBC,CAAAA,CACpBtO,CAAAA,CAOA,CAEA,OAAA,MADoBgO,CAAAA,GACF,qBAAA,CAAsBhO,CAAO,CAAA,CACxCoO,CAAAA,CAAwBpO,CAAAA,CAAQ,QAAQ,CACjD,CAZAiO,CAAAA,CAAsB,qBAAA,CAAAK,CAAAA,CAcf,SAASC,CAAAA,CAA6BvO,EAA6B,CACxE,OAAO,CACL,QAAA,CAAU,IAAMqO,EAAcrO,CAAO,CAAA,CACrC,OAAA,CAAS,IAAMkO,CAAAA,CAAgBlO,CAAAA,CAAQ,QAAQ,CAAA,CAC/C,cAAA,CAAgB,IAAMwO,mBAAAA,CAASxO,CAAO,CAAA,CACtC,YAAa,IAAMgO,CAAAA,EAAe,CAAE,UAAA,CAAWhO,CAAO,CACxD,CACF,CAPOiO,CAAAA,CAAS,yBAAA,CAAAM,CAAAA,CAST,SAASE,CAAAA,CACdzO,EAOA,CACA,OAAO,CACL,QAAA,CAAU,IAAMsO,CAAAA,CAAsBtO,CAAO,CAAA,CAC7C,OAAA,CAAS,IAAMoO,CAAAA,CAAwBpO,CAAAA,CAAQ,QAAQ,EACvD,cAAA,CAAgB,IAAM0O,2BAAAA,CAAiB1O,CAAO,CAAA,CAC9C,WAAA,CAAa,IAAMgO,CAAAA,EAAe,CAAE,mBAAmBhO,CAAO,CAChE,CACF,CAfOiO,CAAAA,CAAS,iCAAA,CAAAQ,EAAAA,CAAAA,EAxCDR,4BAAAA,GAAA,EAAA,CAAA,CC/BV,SAASU,EAAAA,CAAUxJ,CAAAA,CAAgB,CACxC,OAAO,IAAA,CAAK,IAAA,CAAK,SAAA,CAAUA,CAAC,CAAC,CAC/B,CAEO,SAASyJ,GAAUzJ,CAAAA,CAAa,CACrC,IAAI0J,CAAAA,CAAc,IAAA,CAAK1J,CAAC,CAAA,CACxB,GAAI0J,CAAAA,CAAY,CAAC,CAAA,GAAM,GAAA,CAGvB,OAAO,IAAA,CAAK,KAAA,CAAMA,CAAW,CAC/B,CCRO,IAAKC,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,IAAA,CAAO,MAAA,CACPA,EAAA,GAAA,CAAM,KAAA,CACNA,EAAA,KAAA,CAAQ,OAAA,CAHEA,QAAA,EAAA,CAAA,CAMAC,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,aAAA,CAAA,CAAgB,MAAA,CAChBA,CAAAA,CAAA,eAAgB,KAAA,CAChBA,CAAAA,CAAA,aAAA,CAAA,CAAgB,OAAA,CAHNA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,EAWL,SAASC,CAAAA,CAAWC,CAAAA,CAAgC,CACzD,GAAI,OAAOA,CAAAA,EAAS,SAAU,CAC5B,IAAMC,EAAKD,CAAAA,CAAK,KAAA,CAAM,GAAG,CAAA,CACzB,OAAO,CACL,MAAA,CAAQ,UAAA,CAAWC,CAAAA,CAAG,CAAC,CAAC,CAAA,CAExB,MAAA,CAAQJ,EAAAA,CAAOI,CAAAA,CAAG,CAAC,CAAC,CACtB,CACF,CAAA,KACE,OAAO,CACL,MAAA,CAAQ,WAAWD,CAAAA,CAAK,MAAA,CAAO,UAAU,CAAA,CAAI,KAAK,GAAA,CAAI,EAAA,CAAIA,CAAAA,CAAK,SAAS,CAAA,CAExE,MAAA,CAAQF,GAAOE,CAAAA,CAAK,GAAG,CACzB,CAEJ,CClCA,IAAIE,GAEG,SAASC,CAAAA,EAAgB,CAC9B,GAAI,CAACD,EAAAA,CAAa,CAChB,GAAI,OAAO,WAAW,KAAA,EAAU,UAAA,CAC9B,MAAM,IAAI,KAAA,CAAM,+CAA+C,CAAA,CAGjEA,EAAAA,CAAc,UAAA,CAAW,MAAM,IAAA,CAAK,UAAU,EAChD,CAEA,OAAOA,EACT,CCZO,SAASE,EAAAA,CAAYhjB,CAAAA,CAAgB,CAC1C,OAAO,OAAOA,GAAU,QAAA,CAAW,YAAA,CAAa,KAAKA,CAAK,CAAA,CAAI,KAChE,CCGO,SAASijB,EAAAA,CAAqB1Q,CAAAA,CAA+C,CAClF,OACEA,GACA,OAAOA,CAAAA,EAAa,QAAA,EACpB,MAAA,GAAUA,CAAAA,EACV,YAAA,GAAgBA,GAChB,KAAA,CAAM,OAAA,CAAQA,CAAAA,CAAS,IAAI,CAE/B,CAMO,SAAS2Q,EAAAA,CACd3Q,CAAAA,CACAxR,CAAAA,CACoB,CACpB,OAAIkiB,EAAAA,CAAqB1Q,CAAQ,CAAA,CACxBA,CAAAA,CAKF,CACL,IAAA,CAAM,KAAA,CAAM,OAAA,CAAQA,CAAQ,CAAA,CAAIA,CAAAA,CAAW,EAAC,CAC5C,UAAA,CAAY,CACV,MAAO,KAAA,CAAM,OAAA,CAAQA,CAAQ,CAAA,CAAIA,CAAAA,CAAS,MAAA,CAAS,EACnD,KAAA,CAAAxR,CAAAA,CACA,OAAQ,CAAA,CACR,QAAA,CAAU,KACZ,CACF,CACF,CCtCO,SAASoiB,EAAAA,CAAUnI,CAAAA,CAAeoI,EAA+B,CACtE,OAAQpI,CAAAA,CAAQ,GAAA,CAAOoI,CACzB,CCFO,SAASC,EAAAA,CAAY3kB,CAAAA,CAAgC,CAC1D,OAAIA,CAAAA,GAAM,MAAA,CACD,KAGF,QAAA,CAASA,CAAAA,CAAE,MAAM,GAAG,CAAA,CAAE,CAAC,CAAA,CAAG,EAAE,CAAA,CAAI,IACzC,CCEA,IAAM4kB,GAA2B,EAAA,CAAK,GAAA,CAE/B,SAASC,EAAAA,EAA8B,CAC5C,OAAOC,wBAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,IAAA,CAAK,YAAA,EAAa,CACtC,gBAAiBH,EAAAA,CACjB,SAAA,CAAWA,GACX,OAAA,CAAS,MAAO,CAAE,MAAA,CAAAzZ,CAAO,CAAA,GAA6B,CAGpD,GAAM,CAAC6Z,EAAkBC,CAAAA,CAAgBC,CAAAA,CAAeC,CAAAA,CAAeC,CAAgB,CAAA,CAAI,MAAM,QAAQ,GAAA,CAAI,CAC3G/S,CAAAA,CAAQ,6CAAA,CAA+C,EAAC,CAAG,OAAW,MAAA,CAAWlH,CAAM,EACvFkH,CAAAA,CAAQ,gCAAA,CAAkC,EAAC,CAAG,MAAA,CAAW,MAAA,CAAWlH,CAAM,CAAA,CAC1EkH,CAAAA,CAAQ,qCAAsC,EAAC,CAAG,MAAA,CAAW,MAAA,CAAWlH,CAAM,CAAA,CAC9EkH,EAAQ,+BAAA,CAAiC,CAAC,MAAM,CAAA,CAAG,MAAA,CAAW,MAAA,CAAWlH,CAAM,CAAA,CAC/EkH,CAAAA,CAAQ,uCAAwC,EAAC,CAAG,OAAW,MAAA,CAAWlH,CAAM,CAAA,CAC7E,KAAA,CAAM,KAAO,CAAE,yBAA0B,QAAA,CAAU,aAAA,CAAe,EAAG,CAAA,CAAE,CAC5E,CAAC,EAIKka,CAAAA,CAA2BpB,CAAAA,CAAWe,CAAAA,CAAiB,oBAAoB,CAAA,CAAE,MAAA,CAC7EM,EAAyBrB,CAAAA,CAAWe,CAAAA,CAAiB,uBAAuB,CAAA,CAAE,MAAA,CAGhFN,EAAgB,CAAA,CAElB,MAAA,CAAO,QAAA,CAASW,CAAwB,CAAA,EACxCA,CAAAA,GAA6B,GAC7B,MAAA,CAAO,QAAA,CAASC,CAAsB,CAAA,GAEtCZ,CAAAA,CAAiBY,CAAAA,CAAyBD,EAA4B,GAAA,CAAA,CAExE,IAAME,CAAAA,CAAOtB,CAAAA,CAAWgB,CAAAA,CAAe,sBAAA,CAAuB,IAAI,CAAA,CAAE,MAAA,CAC9DO,EAAQvB,CAAAA,CAAWgB,CAAAA,CAAe,uBAAuB,KAAK,CAAA,CAAE,MAAA,CAChEQ,CAAAA,CAAmB,UAAA,CAAWN,CAAAA,CAAc,aAAa,CAAA,CACzDO,CAAAA,CAAoBzB,CAAAA,CAAWkB,CAAAA,CAAc,cAAc,CAAA,CAAE,OAC7DQ,CAAAA,CAAuB,MAAA,CAAOX,CAAAA,CAAiB,uBAAA,EAA2B,CAAC,CAAA,CAC3EY,EAAoBT,CAAAA,CAAc,mBAAA,EAAuB,QAAA,CACzDU,CAAAA,CAAkB,MAAA,CAAOV,CAAAA,CAAc,kBAAoB,CAAC,CAAA,CAC5DW,CAAAA,CAAyB,MAAA,CAAOV,CAAAA,CAAiB,wBAAA,EAA4B,OAAO,CAAA,CACpFW,CAAAA,CAAe,MAAA,CAAOX,CAAAA,CAAiB,aAAA,EAAiB,CAAC,EACzDY,CAAAA,CAAehB,CAAAA,CAAiB,cAAA,CAChCiB,EAAAA,CAAkBjB,CAAAA,CAAiB,iBAAA,CACnCkB,GAAYlB,CAAAA,CAAiB,iBAAA,CAC7BmB,EAAmBb,CAAAA,CACnBc,CAAAA,CAAqBf,EACrBgB,CAAAA,CAAgBpC,CAAAA,CAAWe,CAAAA,CAAiB,cAAc,CAAA,CAAE,MAAA,CAC5DsB,EAAuBtB,CAAAA,CAAiB,sBAAA,EAA0B,CAAA,CAClEuB,CAAAA,CAAqBrB,CAAAA,CAAc,oBAAA,CAEzC,OAAO,CAEL,aAAA,CAAAR,CAAAA,CACA,IAAA,CAAAa,CAAAA,CACA,KAAA,CAAAC,EACA,gBAAA,CAAAC,CAAAA,CACA,kBAAAC,CAAAA,CACA,oBAAA,CAAAC,EACA,iBAAA,CAAAC,CAAAA,CACA,eAAA,CAAAC,CAAAA,CACA,sBAAA,CAAAC,CAAAA,CACA,aAAAC,CAAAA,CACA,YAAA,CAAAC,CAAAA,CACA,eAAA,CAAAC,EAAAA,CACA,SAAA,CAAAC,GACA,gBAAA,CAAAC,CAAAA,CACA,kBAAA,CAAAC,CAAAA,CACA,aAAA,CAAAC,CAAAA,CACA,qBAAAC,CAAAA,CACA,kBAAA,CAAAC,EAIA,GAAA,CAAK,CACH,cAAevB,CAAAA,CACf,WAAA,CAAaC,CAAAA,CACb,UAAA,CAAYC,CAAAA,CACZ,UAAA,CAAYC,EACZ,aAAA,CAAeC,CACjB,CACF,CACF,CACF,CAAC,CACH,CCvEO,SAASoB,GAA0BC,CAAAA,CAAW,MAAA,CAAQ,CAC3D,OAAO3B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,IAAA,CAAK,UAAA,CAAW0B,CAAQ,CAAA,CAC5C,QAAS,IACPpU,CAAAA,CAAQ,+BAAA,CAAiC,CACvCoU,CACF,CAAC,CACL,CAAC,CACH,CCVA,SAAS9gB,EAAAA,CAAAA,GAAO0G,CAAAA,CAA6B,CAC3C,IAAI1K,CAAAA,CAAM0K,EAAM,MAAA,CAChB,KAAO1K,EAAM,CAAA,EAAK0K,CAAAA,CAAM1K,CAAAA,CAAM,CAAC,CAAA,GAAM,MAAA,EACnCA,IAEF,OAAO0K,CAAAA,CAAM,KAAA,CAAM,CAAA,CAAG1K,CAAG,CAC3B,CAEO,IAAMojB,CAAAA,CAAY,CAIvB,KAAA,CAAO,CACL,KAAA,CAAQ2B,GAAsB,CAAC,OAAA,CAAS,QAASA,CAAS,CAAA,CAC1D,WAAY,CAACC,CAAAA,CAAgBC,CAAAA,GAC3B,CAAC,OAAA,CAAS,aAAA,CAAeD,EAAQC,CAAQ,CAAA,CAC3C,OAAA,CAAS,CAACD,CAAAA,CAAgBC,CAAAA,GACxB,CAAC,OAAA,CAAS,SAAA,CAAWD,CAAAA,CAAQC,CAAQ,CAAA,CACvC,cAAA,CAAgB,CAACD,CAAAA,CAAgBC,CAAAA,GAC/B,CAAC,OAAA,CAAS,iBAAA,CAAmBD,EAAQC,CAAQ,CAAA,CAC/C,YAAA,CAAc,CACZvQ,CAAAA,CACAwQ,CAAAA,CACAxkB,EACAgf,CAAAA,GACG,CAAC,OAAA,CAAS,eAAA,CAAiBhL,CAAAA,CAAUwQ,CAAAA,CAAQxkB,EAAOgf,CAAQ,CAAA,CACjE,gBAAA,CAAkB,CAChBhL,CAAAA,CACAwQ,CAAAA,CACAC,EACAC,CAAAA,CACA1kB,CAAAA,CACAgf,CAAAA,GAEA,CACE,OAAA,CACA,oBAAA,CACAhL,EACAwQ,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACA1kB,CAAAA,CACAgf,CACF,CAAA,CACF,aAAc,CAAChL,CAAAA,CAAkBsQ,CAAAA,CAAgBC,CAAAA,GAC/C,CAAC,OAAA,CAAS,YAAavQ,CAAAA,CAAUsQ,CAAAA,CAAQC,CAAQ,CAAA,CACnD,OAAA,CAAS,CAACvQ,EAAkBhU,CAAAA,GAC1B,CAAC,QAAS,SAAA,CAAWgU,CAAAA,CAAUhU,CAAK,CAAA,CACtC,gBAAA,CAAkB,CAACskB,CAAAA,CAAiBC,CAAAA,GAClC,CAAC,QAAS,oBAAA,CAAsBD,CAAAA,CAAQC,CAAQ,CAAA,CAClD,WAAA,CAAa,CAACD,EAAgBC,CAAAA,GAC5B,CAAC,OAAA,CAAS,cAAA,CAAgBD,CAAAA,CAAQC,CAAQ,EAC5C,IAAA,CAAM,CAACD,EAAgBC,CAAAA,GACrB,CAAC,QAAS,MAAA,CAAQD,CAAAA,CAAQC,CAAQ,CAAA,CACpC,SAAA,CAAW,CAACD,EAAgBC,CAAAA,GAC1B,CAAC,OAAA,CAAS,WAAA,CAAaD,CAAAA,CAAQC,CAAQ,EACzC,MAAA,CAASI,CAAAA,EACP,CAAC,OAAA,CAAS,QAAA,CAAUA,CAAc,EACpC,cAAA,CAAgB,CAACA,EAAyB3kB,CAAAA,GACxCsD,EAAAA,CAAI,QAAS,QAAA,CAAU,UAAA,CAAYqhB,CAAAA,CAAgB3kB,CAAK,CAAA,CAC1D,SAAA,CAAY2kB,GACV,CAAC,OAAA,CAAS,WAAA,CAAaA,CAAc,CAAA,CACvC,iBAAA,CAAmB,CAACA,CAAAA,CAAyB3kB,CAAAA,GAC3CsD,EAAAA,CAAI,OAAA,CAAS,WAAA,CAAa,UAAA,CAAYqhB,EAAgB3kB,CAAK,CAAA,CAC7D,UAAYgU,CAAAA,EACV,CAAC,QAAS,WAAA,CAAaA,CAAQ,CAAA,CACjC,iBAAA,CAAmB,CAACA,CAAAA,CAAmBhU,IACrCsD,EAAAA,CAAI,OAAA,CAAS,WAAA,CAAa,UAAA,CAAY0Q,CAAAA,CAAUhU,CAAK,EACvD,MAAA,CAASgU,CAAAA,EAAsB,CAAC,OAAA,CAAS,QAAA,CAAUA,CAAQ,EAC3D,aAAA,CAAgB2Q,CAAAA,EACd,CAAC,OAAA,CAAS,gBAAA,CAAkBA,CAAc,CAAA,CAC5C,cAAA,CAAgB,CAAC3Q,CAAAA,CAAmBhU,CAAAA,GAClCsD,EAAAA,CAAI,QAAS,QAAA,CAAU,UAAA,CAAY0Q,CAAAA,CAAUhU,CAAK,CAAA,CACpD,QAAA,CAAWgZ,GAAiB,CAAC,OAAA,CAAS,UAAA,CAAYA,CAAI,CAAA,CACtD,eAAA,CAAiB,CAAC,OAAA,CAAS,UAAU,EACrC,sBAAA,CAAyBhF,CAAAA,EACvB,CAAC,OAAA,CAAS,eAAA,CAAiBA,CAAAA,CAAU,MAAM,CAAA,CAC7C,WAAA,CAAa,CACX4Q,CAAAA,CACAtP,CAAAA,CACAtV,CAAAA,CACAgf,CAAAA,GACG,CAAC,OAAA,CAAS,eAAgB4F,CAAAA,CAAMtP,CAAAA,CAAKtV,CAAAA,CAAOgf,CAAQ,CAAA,CACzD,eAAA,CAAiB,CACf4F,CAAAA,CACAH,CAAAA,CACAC,EACA1kB,CAAAA,CACAsV,CAAAA,CACA0J,IAEA,CACE,OAAA,CACA,mBAAA,CACA4F,CAAAA,CACAH,CAAAA,CACAC,CAAAA,CACA1kB,EACAsV,CAAAA,CACA0J,CACF,CAAA,CACF,WAAA,CAAa,CACXsF,CAAAA,CACAC,EACAM,CAAAA,CACA7F,CAAAA,GACG,CAAC,OAAA,CAAS,aAAA,CAAesF,CAAAA,CAAQC,EAAUM,CAAAA,CAAO7F,CAAQ,CAAA,CAC/D,UAAA,CAAY,CAACsF,CAAAA,CAAgBC,EAAkBvF,CAAAA,GAC7C,CAAC,OAAA,CAAS,YAAA,CAAcsF,CAAAA,CAAQC,CAAAA,CAAUvF,CAAQ,CAAA,CACpD,YAAA,CAAeqF,CAAAA,EACb,CAAC,OAAA,CAAS,eAAA,CAAiBA,CAAS,CAAA,CACtC,cAAA,CAAgB,CACdC,CAAAA,CACAC,CAAAA,CACAO,CAAAA,GACG,CAAC,OAAA,CAAS,iBAAA,CAAmBR,EAAQC,CAAAA,CAAUO,CAAQ,EAC5D,YAAA,CAAc,IAAM,CAAC,OAAA,CAAS,eAAe,CAAA,CAC7C,sBAAwB9kB,CAAAA,EACtB,CAAC,OAAA,CAAS,eAAA,CAAiB,OAAA,CAASA,CAAK,EAC3C,SAAA,CAAW,CACTsI,CAAAA,CAOI,EAAC,GACF,CACH,QACA,OAAA,CACA,MAAA,CACAA,EAAO,GAAA,EAAO,EAAA,CACdA,EAAO,SAAA,EAAa,EAAA,CACpBA,CAAAA,CAAO,MAAA,EAAU,EAAA,CACjBA,CAAAA,CAAO,UAAY,EAAA,CACnBA,CAAAA,CAAO,KAAA,EAAS,CAAA,CAChB,CAAC,GAAIA,EAAO,UAAA,EAAc,EAAG,CAAA,CAAE,IAAA,EAAK,CAAE,KAAK,GAAG,CAChD,EACA,UAAA,CAAY,CACVA,EAMI,EAAC,GACF,CACH,OAAA,CACA,OAAA,CACA,QAAA,CACAA,EAAO,GAAA,EAAO,EAAA,CACdA,CAAAA,CAAO,MAAA,EAAU,EAAA,CACjBA,CAAAA,CAAO,UAAY,EAAA,CACnBA,CAAAA,CAAO,KAAA,EAAS,CAAA,CAChB,CAAC,GAAIA,EAAO,UAAA,EAAc,EAAG,CAAA,CAAE,IAAA,GAAO,IAAA,CAAK,GAAG,CAChD,CAAA,CACA,WAAA,CAAcqW,CAAAA,EACZ,CAAC,OAAA,CAAS,OAAA,CAAS,SAAA,CAAWA,CAAI,CAAA,CACpC,UAAA,CAAY,CAACA,CAAAA,CAAcrJ,CAAAA,GACzB,CAAC,OAAA,CAAS,OAAA,CAAS,QAAA,CAAUqJ,EAAMrJ,CAAG,CAAA,CACxC,eAAgB,CAACqJ,CAAAA,CAAc3K,IAC7B,CAAC,OAAA,CAAS,OAAA,CAAS,WAAA,CAAa2K,CAAAA,CAAM3K,CAAQ,EAChD,iBAAA,CAAmB,CAAC2K,CAAAA,CAAcoG,CAAAA,GAChC,CAAC,OAAA,CAAS,QAAS,eAAA,CAAiBpG,CAAAA,CAAMoG,CAAK,CAAA,CACjD,cAAA,CAAgB,CAACpG,EAAc3K,CAAAA,GAC7B,CAAC,QAAS,OAAA,CAAS,YAAA,CAAc2K,EAAM3K,CAAQ,CAAA,CACjD,oBAAA,CAAuB2K,CAAAA,EACrB,CAAC,OAAA,CAAS,QAAS,kBAAA,CAAoBA,CAAI,CAAA,CAC7C,OAAA,CAAS,CAAC,OAAO,CACnB,CAAA,CAKA,QAAA,CAAU,CACR,IAAA,CAAO3K,CAAAA,EAAsB,CAAC,mBAAoBA,CAAQ,CAAA,CAC1D,KAAM,CAAA,GAAIgR,CAAAA,GACR,CAAC,UAAA,CAAY,MAAA,CAAQ,GAAGA,CAAS,CAAA,CACnC,OAAA,CAAS,CACPC,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACAnlB,CAAAA,GACG,CAAC,UAAA,CAAY,UAAWilB,CAAAA,CAAWC,CAAAA,CAAMC,CAAAA,CAAYnlB,CAAK,CAAA,CAC/D,aAAA,CAAe,CAACgU,CAAAA,CAAkBkR,CAAAA,CAAcE,CAAAA,GAC9C,CAAC,UAAA,CAAY,SAAA,CAAW,SAAUpR,CAAAA,CAAUkR,CAAAA,CAAME,CAAK,CAAA,CACzD,aAAA,CAAgBpR,CAAAA,EACd,CAAC,UAAA,CAAY,eAAA,CAAiBA,CAAQ,CAAA,CACxC,WAAA,CAAcA,CAAAA,EACZ,CAAC,UAAA,CAAY,cAAA,CAAgBA,CAAQ,CAAA,CACvC,UAAA,CAAaA,CAAAA,EACX,CAAC,UAAA,CAAY,YAAA,CAAcA,CAAQ,CAAA,CACrC,eAAA,CAAkBA,GAChB,CAAC,UAAA,CAAY,YAAA,CAAcA,CAAAA,CAAU,iBAAiB,CAAA,CACxD,mBAAoB,CAACA,CAAAA,CAAkB3J,CAAAA,GACrC,CAAC,UAAA,CAAY,sBAAA,CAAwB2J,EAAU3J,CAAI,CAAA,CACrD,UAAA,CAAa2J,CAAAA,EACX,CAAC,UAAA,CAAY,cAAeA,CAAQ,CAAA,CACtC,UAAW,CACTqR,CAAAA,CACAC,EACAH,CAAAA,CACAnlB,CAAAA,GAEA,CACE,UAAA,CACA,WAAA,CACAqlB,CAAAA,CACAC,EACAH,CAAAA,CACAnlB,CACF,CAAA,CACF,SAAA,CAAW,CACTilB,CAAAA,CACAM,EACAJ,CAAAA,CACAnlB,CAAAA,GAEA,CACE,UAAA,CACA,WAAA,CACAilB,CAAAA,CACAM,EACAJ,CAAAA,CACAnlB,CACF,EACF,MAAA,CAAQ,CAAColB,EAAeI,CAAAA,GACtB,CAAC,UAAA,CAAY,QAAA,CAAUJ,CAAAA,CAAOI,CAAW,EAC3C,QAAA,CAAU,CAACC,CAAAA,CAAoBzG,CAAAA,GAC7B,CAAC,UAAA,CAAY,WAAYyG,CAAAA,CAAUzG,CAAQ,CAAA,CAC7C,MAAA,CAAQ,CAACoG,CAAAA,CAAeplB,IACtB,CAAC,UAAA,CAAY,QAAA,CAAUolB,CAAAA,CAAOplB,CAAK,CAAA,CACrC,aAAc,CAACgU,CAAAA,CAAkBxB,CAAAA,CAAexS,CAAAA,GAC9C,CAAC,UAAA,CAAY,eAAgBgU,CAAAA,CAAUxB,CAAAA,CAAOxS,CAAK,CAAA,CACrD,SAAA,CAAY2kB,CAAAA,EACV,CAAC,UAAA,CAAY,WAAA,CAAaA,CAAc,CAAA,CAC1C,iBAAA,CAAmB,CAACA,EAAyB3kB,CAAAA,GAC3CsD,EAAAA,CAAI,WAAY,WAAA,CAAa,UAAA,CAAYqhB,EAAgB3kB,CAAK,CAAA,CAChE,aAAA,CAAe,CAAC2kB,CAAAA,CAAwBe,CAAAA,GACtC,CACE,UAAA,CACA,WAAA,CACA,OAAA,CACAf,CAAAA,CACAe,CACF,CAAA,CACF,aAAef,CAAAA,EACb,CAAC,UAAA,CAAY,eAAA,CAAiBA,CAAc,CAAA,CAC9C,qBAAsB,CAACA,CAAAA,CAAyB3kB,IAC9CsD,EAAAA,CAAI,UAAA,CAAY,gBAAiB,UAAA,CAAYqhB,CAAAA,CAAgB3kB,CAAK,CAAA,CACpE,gBAAA,CAAkB,CAAC2kB,EAAwBrP,CAAAA,GACzC,CAAC,UAAA,CAAY,eAAA,CAAiB,OAAA,CAASqP,CAAAA,CAAgBrP,CAAG,CAAA,CAC5D,SAAA,CAAW,CAACqQ,CAAAA,CAA+BpmB,CAAAA,GACzC,CAAC,WAAY,WAAA,CAAaomB,CAAAA,CAAWpmB,CAAM,CAAA,CAC7C,IAAA,CAAM,IAAM,CAAC,UAAA,CAAY,MAAM,CAAA,CAC/B,WAAA,CAAa,CAACyU,EAAkBhU,CAAAA,GAC9B,CAAC,UAAA,CAAY,cAAA,CAAgBgU,CAAAA,CAAUhU,CAAK,EAC9C,WAAA,CAAa,CAAColB,CAAAA,CAAeplB,CAAAA,GAC3B,CAAC,UAAA,CAAY,cAAeolB,CAAAA,CAAOplB,CAAK,CAAA,CAC1C,SAAA,CAAY2kB,CAAAA,EACV,CAAC,WAAY,WAAA,CAAaA,CAAc,CAAA,CAC1C,iBAAA,CAAmB,CAACA,CAAAA,CAAyB3kB,IAC3CsD,EAAAA,CAAI,UAAA,CAAY,WAAA,CAAa,UAAA,CAAYqhB,CAAAA,CAAgB3kB,CAAK,EAChE,SAAA,CAAYgU,CAAAA,EACV,CAAC,UAAA,CAAY,WAAA,CAAaA,CAAQ,EACpC,cAAA,CAAiBA,CAAAA,EACf,CAAC,UAAA,CAAY,iBAAA,CAAmBA,CAAQ,CAAA,CAC1C,UAAA,CAAY,IAAM,CAAC,UAAA,CAAY,aAAa,EAC5C,OAAA,CAAS,CAAC,UAAU,CACtB,CAAA,CAKA,aAAA,CAAe,CACb,aAAA,CAAe,IAAM,CAAC,eAAA,CAAiB,eAAe,CAAA,CACtD,WAAY,IAAM,CAAC,gBAAiB,YAAY,CAAA,CAChD,KAAM,CAAC2Q,CAAAA,CAAyBH,CAAAA,GAC9B,CAAC,eAAA,CAAiBG,CAAAA,CAAgBH,CAAM,CAAA,CAC1C,WAAA,CAAcG,CAAAA,EACZ,CAAC,eAAA,CAAiB,QAAA,CAAUA,CAAc,CAAA,CAC5C,QAAA,CAAWA,CAAAA,EACT,CAAC,eAAA,CAAiB,UAAA,CAAYA,CAAc,CAAA,CAC9C,OAAA,CAAS,CAAC,eAAe,CAC3B,EAKA,IAAA,CAAM,CACJ,UAAA,CAAaP,CAAAA,EACX,CAAC,MAAA,CAAQ,cAAeA,CAAQ,CAAA,CAClC,YAAA,CAAc,IAAM,CAAC,MAAA,CAAQ,eAAe,CAAA,CAC5C,eAAA,CAAiB,IAAM,CAAC,MAAA,CAAQ,kBAAkB,EAClD,OAAA,CAAS,CAAC,MAAM,CAClB,CAAA,CAKA,YAAa,CACX,MAAA,CAAQ,CAACwB,CAAAA,CAAe5G,CAAAA,GACtB,CAAC,YAAa,QAAA,CAAU4G,CAAAA,CAAM5G,CAAQ,CAAA,CAExC,YAAA,CAAe4G,CAAAA,EACb,CAAC,WAAA,CAAa,QAAA,CAAUA,CAAI,CAAA,CAC9B,OAAA,CAAS,CAAC5R,EAAkB6R,CAAAA,GAC1B,CAAC,YAAa,SAAA,CAAW7R,CAAAA,CAAU6R,CAAa,CAAA,CAClD,QAAA,CAAU,IAAM,CAAC,aAAA,CAAe,UAAU,EAC1C,IAAA,CAAM,CAACjB,CAAAA,CAAcQ,CAAAA,CAAeplB,CAAAA,GAClC,CAAC,cAAe,MAAA,CAAQ4kB,CAAAA,CAAMQ,CAAAA,CAAOplB,CAAK,CAAA,CAC5C,WAAA,CAAc6lB,GACZ,CAAC,aAAA,CAAe,cAAeA,CAAa,CAAA,CAC9C,oBAAsBA,CAAAA,EACpB,CAAC,aAAA,CAAe,aAAA,CAAe,UAAA,CAAYA,CAAa,EAC1D,oBAAA,CAAsB,CAAC7L,CAAAA,CAAiBha,CAAAA,GACtC,CAAC,aAAA,CAAe,wBAAyBga,CAAAA,CAASha,CAAK,CAC3D,CAAA,CAKA,SAAA,CAAW,CACT,KAAM,IAAM,CAAC,YAAa,MAAM,CAAA,CAChC,SAAWsF,CAAAA,EAAe,CAAC,WAAA,CAAa,UAAA,CAAYA,CAAE,CAAA,CACtD,MAAO,CAACwgB,CAAAA,CAAoBC,CAAAA,CAAe/lB,CAAAA,GACzC,CAAC,WAAA,CAAa,QAAS8lB,CAAAA,CAAYC,CAAAA,CAAO/lB,CAAK,CAAA,CACjD,WAAA,CAAc8lB,CAAAA,EACZ,CAAC,WAAA,CAAa,OAAA,CAASA,CAAU,CAAA,CACnC,WAAA,CAAcC,CAAAA,EACZ,CAAC,WAAA,CAAa,OAAA,CAAS,SAAA,CAAWA,CAAK,CAC3C,CAAA,CAKA,OAAQ,CACN,MAAA,CAAQ,CAACC,CAAAA,CAAWhmB,CAAAA,GAAkB,CAAC,SAAU,QAAA,CAAUgmB,CAAAA,CAAGhmB,CAAK,CAAA,CACnE,IAAA,CAAOgmB,CAAAA,EAAc,CAAC,QAAA,CAAU,MAAA,CAAQA,CAAC,CAAA,CACzC,OAAA,CAAS,CAACA,CAAAA,CAAWhmB,CAAAA,GACnB,CAAC,QAAA,CAAU,SAAA,CAAWgmB,CAAAA,CAAGhmB,CAAK,CAAA,CAChC,OAAA,CAAS,CACPgmB,CAAAA,CACApB,CAAAA,CACAqB,CAAAA,CACAC,EACAC,CAAAA,CACAC,CAAAA,GAGO,CAAC,QAAA,CAAUJ,CAAAA,CAAGpB,CAAAA,CADK,OAAOqB,CAAAA,EAAY,QAAA,CAAWA,IAAY,GAAA,EAAOA,CAAAA,GAAY,OAASA,CAAAA,CAClDC,CAAAA,CAAOC,CAAAA,CAAUC,CAAK,CAAA,CAEtE,mBAAA,CAAqB,CAACC,CAAAA,CAAc/Q,CAAAA,GAClC,CAAC,QAAA,CAAU,sBAAA,CAAwB+Q,CAAAA,CAAM/Q,CAAG,CAAA,CAC9C,cAAA,CAAgB,CAACgP,CAAAA,CAAgBC,CAAAA,CAAkB+B,CAAAA,GACjDA,EACI,CAAC,QAAA,CAAU,kBAAmBhC,CAAAA,CAAQC,CAAAA,CAAU+B,CAAO,CAAA,CACvD,CAAC,QAAA,CAAU,iBAAA,CAAmBhC,CAAAA,CAAQC,CAAQ,EACpD,GAAA,CAAK,CACHyB,CAAAA,CACApB,CAAAA,CACAqB,CAAAA,CACAC,CAAAA,CACAE,EACAG,CAAAA,GACGjjB,EAAAA,CAAI,QAAA,CAAU,KAAA,CAAO0iB,CAAAA,CAAGpB,CAAAA,CAAMqB,EAASC,CAAAA,CAAOE,CAAAA,CAAOG,CAAW,CACvE,CAAA,CAKA,UAAW,CACT,IAAA,CAAOvmB,CAAAA,EAAkB,CAAC,WAAA,CAAa,MAAA,CAAQA,CAAK,CAAA,CACpD,KAAA,CAAQgU,CAAAA,EAAiC,CAAC,WAAA,CAAa,OAAA,CAASA,CAAQ,CAAA,CACxE,KAAA,CAAO,IAAM,CAAC,WAAA,CAAa,OAAO,EAClC,MAAA,CAAQ,CACNwS,EACAC,CAAAA,CACAC,CAAAA,CACA9B,EACA+B,CAAAA,GACG,CAAC,WAAA,CAAa,QAAA,CAAUH,CAAAA,CAASC,CAAAA,CAAMC,EAAU9B,CAAAA,CAAM+B,CAAS,CAAA,CACrE,UAAA,CAAaH,CAAAA,EACX,CAAC,YAAa,aAAA,CAAeA,CAAO,CACxC,CAAA,CAKA,MAAA,CAAQ,CACN,sBAAuB,CAACxS,CAAAA,CAAkBhU,IACxC,CAAC,QAAA,CAAU,0BAA2BgU,CAAAA,CAAUhU,CAAK,CAAA,CACvD,kBAAA,CAAoB,CAACgU,CAAAA,CAAkBhU,IACrC,CAAC,QAAA,CAAU,qBAAA,CAAuBgU,CAAAA,CAAUhU,CAAK,CAAA,CACnD,eAAiBga,CAAAA,EACf,CAAC,QAAA,CAAU,iBAAA,CAAmBA,CAAO,CAAA,CACvC,WAAahG,CAAAA,EACX,CAAC,SAAU,aAAA,CAAeA,CAAQ,EACpC,kBAAA,CAAqBgG,CAAAA,EACnB,CAAC,QAAA,CAAU,qBAAA,CAAuBA,CAAO,EAC3C,qBAAA,CAAwBhG,CAAAA,EACtB,CAAC,QAAA,CAAU,yBAAA,CAA2BA,CAAQ,EAChD,eAAA,CAAkBgG,CAAAA,EAChB,CAAC,QAAA,CAAU,kBAAA,CAAoBA,CAAO,EACxC,UAAA,CAAa4M,CAAAA,EACX,CAAC,QAAA,CAAU,aAAA,CAAeA,CAAI,EAChC,gCAAA,CAAmC5M,CAAAA,EACjC,CAAC,QAAA,CAAU,oCAAA,CAAsCA,CAAO,EAC1D,kBAAA,CAAqBhG,CAAAA,EACnB,CAAC,QAAA,CAAU,qBAAA,CAAuBA,CAAQ,EAC5C,cAAA,CAAgB,CAACA,CAAAA,CAAkB6S,CAAAA,CAAkBH,CAAAA,GACnD,CAAC,SAAU,iBAAA,CAAmB1S,CAAAA,CAAU6S,EAAUH,CAAQ,CAAA,CAC5D,kBAAmB,CACjB1S,CAAAA,CACA6S,CAAAA,CACAC,CAAAA,GAEAA,CAAAA,GAAgB,MAAA,CACZ,CAAC,QAAA,CAAU,oBAAA,CAAsB9S,CAAAA,CAAU6S,CAAQ,CAAA,CACnD,CAAC,SAAU,oBAAA,CAAsB7S,CAAAA,CAAU6S,CAAAA,CAAUC,CAAW,CAAA,CACtE,SAAA,CAAW,CACT9S,CAAAA,CACA+S,CAAAA,CACAC,IAEA,CAAC,QAAA,CAAU,YAAa,IAAA,CAAMhT,CAAAA,CAAU+S,CAAAA,CAAaC,CAAQ,CACjE,CAAA,CAKA,OAAQ,CACN,eAAA,CAAkBhT,CAAAA,EAChB,CAAC,QAAA,CAAU,MAAA,CAAQ,eAAgBA,CAAQ,CAAA,CAC7C,gBAAA,CAAkB,CAACA,CAAAA,CAAkBhU,CAAAA,CAAeinB,IAClD,CAAC,QAAA,CAAU,OAAQ,cAAA,CAAgBjT,CAAAA,CAAUhU,EAAOinB,CAAS,CAAA,CAC/D,oBAAA,CAAuBjT,CAAAA,EACrB,CAAC,QAAA,CAAU,OAAQ,mBAAA,CAAqBA,CAAQ,CAAA,CAClD,WAAA,CAAckT,CAAAA,EACZ,CAAC,SAAU,MAAA,CAAQ,SAAA,CAAWA,CAAa,CAAA,CAC7C,cAAA,CAAiBlT,CAAAA,EACf,CAAC,QAAA,CAAU,KAAA,CAAO,eAAgBA,CAAQ,CAAA,CAC5C,gBAAiB,CACfA,CAAAA,CACAhU,CAAAA,CACAinB,CAAAA,GACG,CAAC,QAAA,CAAU,MAAO,cAAA,CAAgBjT,CAAAA,CAAUhU,CAAAA,CAAOinB,CAAS,CAAA,CACjE,oBAAA,CAAuBjT,GACrB,CAAC,QAAA,CAAU,YAAA,CAAc,cAAA,CAAgBA,CAAQ,CAAA,CACnD,mBAAqBA,CAAAA,EACnB,CAAC,SAAU,YAAA,CAAc,WAAA,CAAaA,CAAQ,CAAA,CAChD,oBAAA,CAAuBA,CAAAA,EACrB,CAAC,QAAA,CAAU,YAAA,CAAc,cAAeA,CAAQ,CAAA,CAClD,qBAAA,CAAuB,CACrBA,CAAAA,CACAhU,CAAAA,CACAinB,IAEA,CACE,QAAA,CACA,YAAA,CACA,cAAA,CACAjT,CAAAA,CACAhU,CAAAA,CACAinB,CACF,CAAA,CACF,iBAAA,CAAoBjT,GAClB,CAAC,QAAA,CAAU,SAAU,cAAA,CAAgBA,CAAQ,CAAA,CAC/C,kBAAA,CAAoB,CAACA,CAAAA,CAAkBgF,IACrC,CAAC,QAAA,CAAU,QAAA,CAAU,cAAA,CAAgBhF,CAAAA,CAAUgF,CAAI,EACrD,eAAA,CAAiB,CAAChF,CAAAA,CAAkBvO,CAAAA,CAAeuhB,CAAAA,GACjD,CAAC,iBAAkB,YAAA,CAAchT,CAAAA,CAAUvO,EAAOuhB,CAAQ,CAC9D,EAKA,MAAA,CAAQ,CACN,UAAA,CAAY,IAAM,CAAC,QAAA,CAAU,YAAY,CAAA,CACzC,SAAA,CAAYhnB,CAAAA,EAAkB,CAAC,QAAA,CAAU,YAAA,CAAcA,CAAK,CAAA,CAC5D,OAAA,CAAS,CAACmnB,CAAAA,CAAiBC,CAAAA,CAAmBC,CAAAA,GAC5C,CAAC,QAAA,CAAU,SAAA,CAAWF,CAAAA,CAASC,CAAAA,CAAWC,CAAO,CAAA,CACnD,YAAa,IAAM,CAAC,QAAA,CAAU,cAAc,CAAA,CAC5C,YAAA,CAAc,IAAM,CAAC,QAAA,CAAU,gBAAgB,CAAA,CAC/C,IAAA,CAAM,CACJC,EACAC,CAAAA,CACAC,CAAAA,CACAC,CAAAA,GACG,CAAC,QAAA,CAAU,MAAA,CAAQH,EAAMC,CAAAA,CAAYC,CAAAA,CAAQC,CAAI,CAAA,CACtD,YAAA,CAAc,CAACznB,CAAAA,CAAeM,CAAAA,CAAehB,CAAAA,GAC3C,CAAC,QAAA,CAAU,eAAA,CAAiBU,EAAOM,CAAAA,CAAOhB,CAAG,CAAA,CAC/C,yBAAA,CAA2B,IACzB,CAAC,SAAU,8BAA8B,CAC7C,CAAA,CAKA,SAAA,CAAW,CACT,gBAAA,CAAmB0gB,GACjB,CAAC,WAAA,CAAa,oBAAqBA,CAAQ,CAAA,CAC7C,UAAW,CACTjf,CAAAA,CACA2mB,CAAAA,CACAC,CAAAA,CACAC,CAAAA,GAEA,CAAC,YAAa,YAAA,CAAc7mB,CAAAA,CAAK2mB,CAAAA,CAAYC,CAAAA,CAASC,CAAS,CAAA,CACjE,oBAAsB5H,CAAAA,EACpB,CAAC,WAAA,CAAa,sBAAA,CAAwBA,CAAQ,CAClD,EAKA,UAAA,CAAY,CACV,aAAc,IAAM,CAAC,aAAc,eAAe,CAAA,CAClD,eAAA,CAAiB,IAAM,CAAC,YAAA,CAAc,mBAAmB,CAAA,CACzD,iBAAA,CAAoBhG,CAAAA,EAClB,CAAC,YAAA,CAAc,qBAAA,CAAuBA,CAAO,CACjD,CAAA,CAKA,eAAA,CAAiB,CACf,OAAA,CAAUhG,CAAAA,EACR,CAAC,kBAAA,CAAoB,SAAA,CAAWA,CAAQ,CAAA,CAC1C,KAAA,CAAO,IAAM,CAAC,kBAAA,CAAoB,OAAO,CAAA,CACzC,cAAA,CAAgB,IAAM,CAAC,kBAAA,CAAoB,iBAAiB,CAC9D,CAAA,CAKA,MAAA,CAAQ,CACN,OAAQ,CAACA,CAAAA,CAAkBwQ,CAAAA,GACzB,CAAC,QAAA,CAAUxQ,CAAAA,CAAUwQ,CAAM,CAAA,CAC7B,OAAA,CAAUxQ,GAAqB,CAAC,QAAA,CAAUA,CAAQ,CACpD,CAAA,CAKA,KAAA,CAAO,CACL,OAAA,CAAS,CAACsQ,EAAgBC,CAAAA,GACxB,CAAC,OAAA,CAAS,SAAA,CAAWD,CAAAA,CAAQC,CAAQ,EACvC,IAAA,CAAM,CAACD,CAAAA,CAAiBC,CAAAA,GACtBD,CAAAA,EAAUC,CAAAA,CACN,CAAC,OAAA,CAAS,MAAA,CAAQD,EAAQC,CAAQ,CAAA,CAClC,CAAC,OAAA,CAAS,MAAM,CAAA,CACtB,OAAA,CAAS,CAAC,OAAO,CACnB,CAAA,CAKA,UAAA,CAAY,CACV,eAAA,CAAiB,IAAM,CAAC,aAAc,kBAAkB,CAC1D,CAAA,CAKA,KAAA,CAAO,CACL,WAAA,CAAa,CAACsD,CAAAA,CAAkB7T,CAAAA,GAC9B,CAAC,OAAA,CAAS,cAAA,CAAgB6T,EAAU7T,CAAQ,CAChD,CAAA,CAEA,MAAA,CAAQ,CACN,MAAA,CAASA,GAAiC,CAAC,QAAA,CAAU,QAAA,CAAUA,CAAQ,CACzE,CAAA,CAKA,WAAY,CACV,aAAA,CAAgBA,CAAAA,EAAiC,CAC/C,YAAA,CACA,eAAA,CACAA,CACF,CAAA,CACA,MAAA,CAAQ,CAACgF,CAAAA,CAAczZ,CAAAA,CAAgByU,CAAAA,GAAiC,CACtE,YAAA,CACA,QAAA,CACAgF,CAAAA,CACAzZ,CAAAA,CACAyU,CACF,CAAA,CACA,OAAQ,CAACgF,CAAAA,CAAczZ,CAAAA,CAAgByU,CAAAA,GAAiC,CACtE,YAAA,CACA,SACAgF,CAAAA,CACAzZ,CAAAA,CACAyU,CACF,CAAA,CACA,KAAA,CAAO,CACLgF,EACAzZ,CAAAA,CACAyU,CAAAA,CACAhU,IACG,CAAC,YAAA,CAAc,QAASgZ,CAAAA,CAAMzZ,CAAAA,CAAQyU,CAAAA,CAAUhU,CAAK,CAAA,CAC1D,OAAA,CAAS,CAAC,YAAY,CACxB,CAAA,CAKA,OAAA,CAAS,CACP,QAAA,CAAWgU,GAAiC,CAAC,SAAA,CAAW,UAAA,CAAYA,CAAQ,CAAA,CAC5E,OAAA,CAAS,CAAC,SAAS,CACrB,EAKA,SAAA,CAAW,CACT,KAAM,IAAM,CAAC,YAAA,CAAc,MAAM,CAAA,CACjC,OAAA,CAAS,CAAC,YAAY,CACxB,CAAA,CAKA,QAAA,CAAU,CAER,IAAA,CAAM,CAAC1L,CAAAA,CAAiC,EAAC,GAAM,CAAC,UAAA,CAAY,MAAA,CAAQA,CAAM,CAAA,CAE1E,UAAA,CAAY,CAAC0L,CAAAA,CAA8B1L,CAAAA,CAAiC,EAAC,GAAM,CACjF,UAAA,CACA,aAAA,CACA0L,CAAAA,CACA1L,CACF,EACA,MAAA,CAAQ,IAAM,CAAC,UAAA,CAAY,QAAQ,CAAA,CACnC,OAAQ,IAAM,CAAC,UAAA,CAAY,QAAQ,CAAA,CAMnC,WAAA,CAAc0L,GAAiC,CAAC,UAAA,CAAY,eAAgBA,CAAQ,CAAA,CACpF,kBAAmB,IAAM,CAAC,UAAA,CAAY,cAAc,CAAA,CACpD,eAAA,CAAiB,CAAC1L,CAAAA,CAAiC,EAAC,GAAM,CACxD,UAAA,CACA,iBAAA,CACAA,CACF,CAAA,CACA,sBAAA,CAAwB,CAAC,UAAA,CAAY,iBAAiB,CAAA,CACtD,KAAM,CAACgc,CAAAA,CAAgBC,IAAqB,CAAC,UAAA,CAAY,OAAQD,CAAAA,CAAQC,CAAQ,CAAA,CAEjF,WAAA,CAAcvQ,CAAAA,EAAqB,CAAC,WAAY,aAAA,CAAeA,CAAQ,CAAA,CAEvE,SAAA,CAAW,IAAM,CAAC,WAAY,WAAW,CAAA,CACzC,OAAA,CAAS,CAAC,UAAU,CACtB,EAKA,EAAA,CAAI,CACF,OAAQ,IAAM,CAAC,KAAM,QAAQ,CAAA,CAC7B,YAAA,CAAeA,CAAAA,EAAsB,CAAC,IAAA,CAAM,gBAAiBA,CAAQ,CAAA,CACrE,eAAA,CAAkBA,CAAAA,EAAsB,CAAC,IAAA,CAAM,mBAAoBA,CAAQ,CAAA,CAC3E,MAAA,CAASA,CAAAA,EAAsB,CAAC,IAAA,CAAM,SAAUA,CAAQ,CAAA,CACxD,QAAS,CAAC,IAAI,CAChB,CACF,ECvqBO,SAAS8T,EAAAA,CAAe7oB,CAAAA,CAAuB,CACpD,GAAI,OAAO,WAAA,CAAgB,GAAA,CACzB,OAAO,IAAI,WAAA,GAAc,MAAA,CAAOA,CAAK,CAAA,CAAE,MAAA,CAGzC,IAAIf,CAAAA,CAAQ,EACZ,IAAA,IAASL,CAAAA,CAAI,CAAA,CAAGA,CAAAA,CAAIoB,CAAAA,CAAM,MAAA,CAAQpB,IAAK,CACrC,IAAMC,CAAAA,CAAImB,CAAAA,CAAM,UAAA,CAAWpB,CAAC,EACxBC,CAAAA,CAAI,GAAA,CACNI,CAAAA,EAAS,CAAA,CACAJ,CAAAA,CAAI,IAAA,CACbI,GAAS,CAAA,CACAJ,CAAAA,EAAK,KAAA,EAAUA,CAAAA,EAAK,KAAA,EAAUD,CAAAA,CAAI,EAAIoB,CAAAA,CAAM,MAAA,EAErDpB,IACAK,CAAAA,EAAS,CAAA,EAETA,GAAS,EAEb,CACA,OAAOA,CACT,CAGO,SAAS6pB,GAAiB9oB,CAAAA,CAAuB,CACtD,IAAI+oB,CAAAA,CAAQ,CAAA,CACRC,CAAAA,CAAYhpB,EAChB,GACE+oB,CAAAA,EAAAA,CACAC,CAAAA,IAAe,CAAA,CAAA,MACRA,CAAAA,CAAY,CAAA,EACrB,OAAOD,CACT,CCrCO,SAASE,EAAAA,CAA+B9K,CAAAA,CAAqB,CAClE,OAAOqF,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,EAAA,CAAG,QAAO,CAC9B,OAAA,CAAS,SAAY,CAEnB,IAAMlR,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,gCAAA,CAAkC,CACxF,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAMjB,CAAY,CAAC,CAC5C,CAAC,CAAA,CAED,GAAI,CAAC5L,CAAAA,CAAS,GACZ,MAAM,IAAI,KAAA,CAAM,CAAA,sCAAA,EAAyCA,CAAAA,CAAS,MAAM,EAAE,CAAA,CAG5E,OAAQ,MAAMA,CAAAA,CAAS,IAAA,EACzB,CAAA,CACA,SAAA,CAAW,GAAA,CACX,OAAA,CAAS,CAAC,CAAC4L,CACb,CAAC,CACH,CCjBO,SAAS+K,EAAAA,CAAwBnU,CAAAA,CAA8BoJ,CAAAA,CAAqB,CACzF,OAAOqF,wBAAa,CAClB,QAAA,CAAUC,EAAU,EAAA,CAAG,MAAA,CAAO1O,CAAQ,CAAA,CACtC,OAAA,CAAS,SAAY,CAEnB,IAAMxC,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,wBAAA,CAA0B,CAChF,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAMjB,CAAY,CAAC,CAC5C,CAAC,CAAA,CAED,GAAI,CAAC5L,CAAAA,CAAS,GACZ,MAAM,IAAI,KAAA,CAAM,CAAA,kCAAA,EAAqCA,CAAAA,CAAS,MAAM,EAAE,CAAA,CAGxE,OAAQ,MAAMA,CAAAA,CAAS,IAAA,EACzB,EACA,SAAA,CAAW,GAAA,CAKX,eAAgB,QAAA,CAChB,OAAA,CAAS,CAAC,CAACwC,CAAAA,EAAY,CAAC,CAACoJ,CAC3B,CAAC,CACH,CChCO,SAASgL,GAA6BpU,CAAAA,CAA8BoJ,CAAAA,CAAqB,CAC9F,OAAOqF,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,EAAA,CAAG,YAAA,CAAa1O,CAAQ,CAAA,CAC5C,OAAA,CAAS,SAAY,CAEnB,IAAMxC,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,EAAO,cAAA,CAAiB,8BAAA,CAAgC,CACtF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAMjB,CAAY,CAAC,CAC5C,CAAC,EAED,GAAI,CAAC5L,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,MAAM,CAAA,kCAAA,EAAqCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGxE,OAAQ,MAAMA,CAAAA,CAAS,IAAA,EACzB,CAAA,CACA,SAAA,CAAW,GAAA,CACX,QAAS,CAAC,CAAC4L,CACb,CAAC,CACH,CCbO,SAASiL,EAAAA,CACdrU,EACAoJ,CAAAA,CACA,CACA,OAAOqF,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,EAAA,CAAG,eAAA,CAAgB1O,CAAQ,CAAA,CAC/C,OAAA,CAAS,SAAY,CAEnB,IAAMxC,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,EAAO,cAAA,CAAiB,kCAAA,CAAoC,CAC1F,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAMjB,CAAY,CAAC,CAC5C,CAAC,CAAA,CAED,GAAI,CAAC5L,CAAAA,CAAS,GACZ,MAAM,IAAI,MAAM,CAAA,qCAAA,EAAwCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAG3E,OAAQ,MAAMA,CAAAA,CAAS,IAAA,EACzB,CAAA,CACA,SAAA,CAAW,GAAA,CACX,QAAS,CAAC,CAAC4L,CACb,CAAC,CACH,CCxBA,SAASkL,EAAAA,EAA6B,CACpC,GAAI,OAAO,MAAA,CAAW,GAAA,EAAe,OAAO,MAAA,CAAO,YAAe,UAAA,CAChE,OAAO,MAAA,CAAO,UAAA,EAAW,CAE3B,IAAM1W,EAAM,IAAI,UAAA,CAAW,EAAE,CAAA,CAC7B,GAAI,OAAO,OAAW,GAAA,EAAe,OAAO,OAAO,eAAA,EAAoB,UAAA,CACrE,OAAO,eAAA,CAAgBA,CAAG,CAAA,CAAA,KAE1B,IAAA,IAAS/T,CAAAA,CAAI,CAAA,CAAGA,EAAI+T,CAAAA,CAAI,MAAA,CAAQ/T,CAAAA,EAAAA,CAAK+T,CAAAA,CAAI/T,CAAC,CAAA,CAAI,KAAK,KAAA,CAAM,IAAA,CAAK,MAAA,EAAO,CAAI,GAAG,CAAA,CAE9E,OAAO,KAAA,CAAM,IAAA,CAAK+T,CAAG,CAAA,CAClB,GAAA,CAAK3T,GAAMA,CAAAA,CAAE,QAAA,CAAS,EAAE,CAAA,CAAE,QAAA,CAAS,CAAA,CAAG,GAAG,CAAC,CAAA,CAC1C,IAAA,CAAK,EAAE,CACZ,CAKO,SAASsqB,EAAAA,CAA8BvU,CAAAA,CAAkB,CAC9D4M,CAAAA,EAAe,CAAE,iBAAA,CAAkB,CACjC,QAAA,CAAU8B,CAAAA,CAAU,MAAA,CAAO,OAAA,CAAQ1O,CAAQ,CAC7C,CAAC,CAAA,CACD4M,CAAAA,EAAe,CAAE,iBAAA,CAAkB,CACjC,QAAA,CAAU8B,EAAU,EAAA,CAAG,MAAA,CAAO1O,CAAQ,CACxC,CAAC,EACH,CAEO,SAASwU,EAAAA,CACdxU,CAAAA,CACAoJ,CAAAA,CACA,CACA,OAAOH,uBAAY,CACjB,WAAA,CAAa,CAAC,IAAA,CAAM,gBAAgB,EACpC,UAAA,CAAY,MAAO3U,CAAAA,EAA+D,CAChF,GAAI,CAAC0L,EACH,MAAM,IAAI,KAAA,CACR,0DACF,CAAA,CAGF,GAAI,CAACoJ,CAAAA,CACH,MAAM,IAAI,KAAA,CACR,2DACF,CAAA,CAIF,IAAM5L,CAAAA,CAAW,MADAwQ,GAAc,CAE7B3D,CAAAA,CAAO,eAAiB,gCAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,KAAMjB,CAAAA,CACN,EAAA,CAAIpJ,CAAAA,CACJ,MAAA,CAAQ1L,CAAAA,CAAO,MAAA,CACf,aAAcA,CAAAA,CAAO,YAAA,EAAgB,MACrC,KAAA,CAAOA,CAAAA,CAAO,OAAS,CAAA,CACvB,eAAA,CAAiBA,CAAAA,CAAO,eAAA,EAAmBggB,EAAAA,EAC7C,CAAC,CACH,CACF,CAAA,CAEA,GAAI,CAAC9W,CAAAA,CAAS,GAAI,CAChB,IAAMjD,CAAAA,CAAO,MAAMiD,CAAAA,CAAS,IAAA,GACxB0J,CAAAA,CAAkC,EAAC,CACvC,GAAI,CACFA,CAAAA,CAAS,KAAK,KAAA,CAAM3M,CAAI,EAC1B,CAAA,KAAQ,CAER,CAEA,IAAMX,CAAAA,CAAM,IAAI,KAAA,CACd,CAAA,mDAAA,EAAiD4D,CAAAA,CAAS,MAAM,GAAGjD,CAAAA,CAAO,CAAA,EAAA,EAAKA,CAAI,CAAA,CAAA,CAAK,EAAE,CAAA,CAC5F,EACA,MAACX,CAAAA,CAAY,OAAS4D,CAAAA,CAAS,MAAA,CAC9B5D,EAAY,IAAA,CAAOsN,CAAAA,CACdtN,CACR,CAMA,GAAI4D,CAAAA,CAAS,SAAW,GAAA,CAAK,CAC3B,IAAIiX,CAAAA,CAAuC,EAAC,CAC5C,GAAI,CACFA,CAAAA,CAAc,MAAMjX,CAAAA,CAAS,IAAA,GAC/B,MAAQ,CAER,CACA,IAAM5D,CAAAA,CAAM,IAAI,MAAM,kDAA6C,CAAA,CACnE,MAACA,CAAAA,CAAY,MAAA,CAAS,GAAA,CACrBA,EAAY,IAAA,CAAO6a,CAAAA,CACd7a,CACR,CAIA,OAFc,MAAM4D,EAAS,IAAA,EAG/B,CAAA,CACA,SAAA,CAAW,IAAM,CACXwC,GACFuU,EAAAA,CAA8BvU,CAAQ,EAE1C,CACF,CAAC,CACH,CC9GA,SAASsU,IAA6B,CACpC,GAAI,OAAO,MAAA,CAAW,GAAA,EAAe,OAAO,OAAO,UAAA,EAAe,UAAA,CAChE,OAAO,MAAA,CAAO,UAAA,EAAW,CAE3B,IAAM1W,CAAAA,CAAM,IAAI,UAAA,CAAW,EAAE,CAAA,CAC7B,GAAI,OAAO,MAAA,CAAW,GAAA,EAAe,OAAO,MAAA,CAAO,eAAA,EAAoB,UAAA,CACrE,OAAO,eAAA,CAAgBA,CAAG,CAAA,CAAA,KAE1B,IAAA,IAAS/T,CAAAA,CAAI,CAAA,CAAGA,EAAI+T,CAAAA,CAAI,MAAA,CAAQ/T,CAAAA,EAAAA,CAAK+T,CAAAA,CAAI/T,CAAC,CAAA,CAAI,KAAK,KAAA,CAAM,IAAA,CAAK,QAAO,CAAI,GAAG,EAE9E,OAAO,KAAA,CAAM,IAAA,CAAK+T,CAAG,CAAA,CAClB,GAAA,CAAK3T,GAAMA,CAAAA,CAAE,QAAA,CAAS,EAAE,CAAA,CAAE,QAAA,CAAS,CAAA,CAAG,GAAG,CAAC,CAAA,CAC1C,IAAA,CAAK,EAAE,CACZ,CAEO,SAASyqB,EAAAA,CACd1U,CAAAA,CACAoJ,EACA,CACA,OAAOH,uBAAY,CACjB,WAAA,CAAa,CAAC,IAAA,CAAM,QAAQ,CAAA,CAC5B,WAAY,MAAO3U,CAAAA,EAAsD,CACvE,GAAI,CAAC0L,CAAAA,CACH,MAAM,IAAI,KAAA,CACR,mDACF,CAAA,CAGF,GAAI,CAACoJ,EACH,MAAM,IAAI,MACR,oDACF,CAAA,CAIF,IAAM5L,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,yBACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAM/V,EAAO,IAAA,EAAQ8U,CAAAA,CACrB,GAAIpJ,CAAAA,CACJ,MAAA,CAAQ1L,EAAO,MAAA,CACf,IAAA,CAAMA,CAAAA,CAAO,IAAA,CACb,eAAA,CAAiBggB,EAAAA,EACnB,CAAC,CACH,CACF,CAAA,CAEA,GAAI,CAAC9W,EAAS,EAAA,CAAI,CAChB,IAAMjD,CAAAA,CAAO,MAAMiD,CAAAA,CAAS,MAAK,CAC7B0J,CAAAA,CAAkC,EAAC,CACvC,GAAI,CACFA,CAAAA,CAAS,IAAA,CAAK,KAAA,CAAM3M,CAAI,EAC1B,CAAA,KAAQ,CAER,CAEA,IAAMX,CAAAA,CAAM,IAAI,KAAA,CACd,CAAA,4CAAA,EAA0C4D,EAAS,MAAM,CAAA,EAAGjD,CAAAA,CAAO,CAAA,EAAA,EAAKA,CAAI,CAAA,CAAA,CAAK,EAAE,CAAA,CACrF,CAAA,CACA,MAACX,CAAAA,CAAY,MAAA,CAAS4D,EAAS,MAAA,CAC9B5D,CAAAA,CAAY,IAAA,CAAOsN,CAAAA,CACdtN,CACR,CAEA,OAAQ,MAAM4D,CAAAA,CAAS,IAAA,EACzB,CAAA,CACA,SAAA,CAAY9O,GAAS,CACfsR,CAAAA,GAEEtR,CAAAA,CAAK,IAAA,CAAO,CAAA,EACdke,CAAAA,GAAiB,iBAAA,CAAkB,CACjC,SAAU8B,CAAAA,CAAU,MAAA,CAAO,QAAQ1O,CAAQ,CAC7C,CAAC,CAAA,CAGH4M,CAAAA,EAAe,CAAE,kBAAkB,CACjC,QAAA,CAAU8B,CAAAA,CAAU,EAAA,CAAG,YAAA,CAAa1O,CAAQ,CAC9C,CAAC,CAAA,EAEL,CACF,CAAC,CACH,CC5FA,SAASsU,EAAAA,EAA6B,CACpC,GAAI,OAAO,MAAA,CAAW,GAAA,EAAe,OAAO,MAAA,CAAO,UAAA,EAAe,WAChE,OAAO,MAAA,CAAO,UAAA,EAAW,CAE3B,IAAM1W,CAAAA,CAAM,IAAI,UAAA,CAAW,EAAE,CAAA,CAC7B,GAAI,OAAO,MAAA,CAAW,KAAe,OAAO,MAAA,CAAO,iBAAoB,UAAA,CACrE,MAAA,CAAO,gBAAgBA,CAAG,CAAA,CAAA,KAE1B,IAAA,IAAS/T,CAAAA,CAAI,CAAA,CAAGA,CAAAA,CAAI+T,EAAI,MAAA,CAAQ/T,CAAAA,EAAAA,CAAK+T,CAAAA,CAAI/T,CAAC,CAAA,CAAI,IAAA,CAAK,MAAM,IAAA,CAAK,MAAA,EAAO,CAAI,GAAG,CAAA,CAE9E,OAAO,MAAM,IAAA,CAAK+T,CAAG,EAClB,GAAA,CAAK3T,CAAAA,EAAMA,EAAE,QAAA,CAAS,EAAE,CAAA,CAAE,QAAA,CAAS,CAAA,CAAG,GAAG,CAAC,CAAA,CAC1C,IAAA,CAAK,EAAE,CACZ,CASO,SAAS0qB,GAAgB3U,CAAAA,CAA8BoJ,CAAAA,CAAiC,CAC7F,OAAOH,sBAAAA,CAAY,CACjB,YAAa,CAAC,IAAA,CAAM,YAAY,CAAA,CAChC,UAAA,CAAY,MAAO3U,CAAAA,EAA8D,CAC/E,GAAI,CAAC0L,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,uDAAkD,CAAA,CAMpE,IAAM3J,CAAAA,CAAO/B,CAAAA,CAAO,MAAQ8U,CAAAA,CAC5B,GAAI,CAAC/S,CAAAA,CACH,MAAM,IAAI,MAAM,wDAAmD,CAAA,CAGrE,IAAMue,CAAAA,CAAO,IAAI,SACjBA,CAAAA,CAAK,MAAA,CAAO,MAAA,CAAQve,CAAI,CAAA,CAGxBue,CAAAA,CAAK,OAAO,aAAA,CAAe,MAAA,CAAO,IAAA,CAAK,KAAA,CAAMtgB,CAAAA,CAAO,UAAU,CAAC,CAAC,CAAA,CAKhEsgB,CAAAA,CAAK,MAAA,CAAO,iBAAA,CAAmBtgB,CAAAA,CAAO,iBAAmBggB,EAAAA,EAAoB,EAC7EM,CAAAA,CAAK,MAAA,CAAO,QAAStgB,CAAAA,CAAO,KAAA,CAAOA,CAAAA,CAAO,QAAA,EAAY,WAAW,CAAA,CAKjE,IAAMkJ,CAAAA,CAAW,MAHAwQ,CAAAA,EAAc,CAGC3D,CAAAA,CAAO,cAAA,CAAiB,6BAA8B,CACpF,MAAA,CAAQ,MAAA,CACR,IAAA,CAAMuK,CACR,CAAC,EAED,GAAI,CAACpX,EAAS,EAAA,CAAI,CAChB,IAAMjD,CAAAA,CAAO,MAAMiD,CAAAA,CAAS,IAAA,EAAK,CAC7B0J,CAAAA,CAAkC,EAAC,CACvC,GAAI,CACFA,CAAAA,CAAS,IAAA,CAAK,KAAA,CAAM3M,CAAI,EAC1B,CAAA,KAAQ,CAER,CAKA,MAAM,MAAA,CAAO,OACX,IAAI,KAAA,CACF,mDAA8CiD,CAAAA,CAAS,MAAM,GAAGjD,CAAAA,CAAO,CAAA,EAAA,EAAKA,CAAI,CAAA,CAAA,CAAK,EAAE,CAAA,CACzF,EACA,CAAE,MAAA,CAAQiD,CAAAA,CAAS,MAAA,CAAQ,IAAA,CAAM0J,CAAO,CAC1C,CACF,CAEA,OAAQ,MAAM1J,CAAAA,CAAS,IAAA,EACzB,CAAA,CACA,SAAA,CAAY9O,CAAAA,EAAS,CACfsR,CAAAA,GACEtR,CAAAA,CAAK,KAAO,CAAA,EACdke,CAAAA,EAAe,CAAE,iBAAA,CAAkB,CACjC,QAAA,CAAU8B,EAAU,MAAA,CAAO,OAAA,CAAQ1O,CAAQ,CAC7C,CAAC,CAAA,CAGH4M,GAAe,CAAE,iBAAA,CAAkB,CACjC,QAAA,CAAU8B,CAAAA,CAAU,EAAA,CAAG,gBAAgB1O,CAAQ,CACjD,CAAC,CAAA,EAEL,CACF,CAAC,CACH,CC5EA,SAAS6U,GAAmB7O,CAAAA,CAA8B,CACxD,OAAO,CAACA,CAAAA,CAAQ,qBAAA,EAAyB,CAACA,CAAAA,CAAQ,aACpD,CAKA,SAAS8O,EAAAA,CAAiBC,EAAmD,CAC3E,OAAKA,CAAAA,CACE,MAAA,CAAO,MAAA,CAAOA,CAAO,EAAE,IAAA,CAAM9pB,CAAAA,EAClC,OAAOA,CAAAA,EAAU,QAAA,CAAWA,CAAAA,CAAM,OAAS,CAAA,CAAIA,CAAAA,EAAS,IAC1D,CAAA,CAHqB,KAIvB,CAEO,SAAS+pB,CAAAA,CAA2BhV,CAAAA,CAA8B,CACvE,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAC1C,QAAS,MAAO,CAAE,MAAA,CAAAlL,CAAO,CAAA,GAAM,CAC7B,GAAI,CAACkL,CAAAA,CACH,OAAO,IAAA,CAUT,GAAM,CAACxC,EAAUyX,CAAa,CAAA,CAAI,MAAM,OAAA,CAAQ,GAAA,CAAI,CAClDjZ,CAAAA,CACE,4BAAA,CACA,CAAC,CAACgE,CAAQ,CAAC,EACX,MAAA,CACA,MAAA,CACAlL,CAAAA,CAKCogB,CAAAA,EAAS,KAAA,CAAM,OAAA,CAAQA,CAAI,CAC9B,CAAA,CACAlZ,CAAAA,CACE,oBAAA,CACA,CAAE,OAAA,CAASgE,CAAS,CAAA,CACpB,MAAA,CACA,OACAlL,CACF,CAAA,CAAE,MAAOI,CAAAA,EAA4B,CAGnC,GAAIJ,CAAAA,EAAQ,OAAA,CAAS,MAAMI,EAC3B,OAAO,IACT,CAAC,CACH,CAAC,CAAA,CACD,GAAI,CAACsI,CAAAA,GAAW,CAAC,CAAA,CAKf,OAAO,IAAA,CAGT,IAAI2X,CAAAA,CAAe3X,CAAAA,CAAS,CAAC,CAAA,CAW7B,GACEqX,GAAmBM,CAAY,CAAA,EAC/BL,EAAAA,CAAiBG,CAAAA,EAAe,QAAA,EAAU,OAAO,EACjD,CAKA,IAAMG,CAAAA,CAAS,MAAMpZ,CAAAA,CACnB,4BAAA,CACA,CAAC,CAACgE,CAAQ,CAAC,CAAA,CACX,MAAA,CACA,MAAA,CACAlL,EACCogB,CAAAA,EACC,KAAA,CAAM,QAAQA,CAAI,CAAA,GACjB,CAACA,CAAAA,CAAK,CAAC,CAAA,EAAK,CAACL,EAAAA,CAAmBK,CAAAA,CAAK,CAAC,CAAe,CAAA,CAC1D,CAAA,CACA,GAAIE,CAAAA,CAAO,CAAC,GAAK,CAACP,EAAAA,CAAmBO,CAAAA,CAAO,CAAC,CAAC,CAAA,CAC5CD,EAAeC,CAAAA,CAAO,CAAC,CAAA,CAAA,KAEvB,MAAM,IAAI,KAAA,CACR,uDAAkDpV,CAAQ,CAAA,yDAAA,CAC5D,CAEJ,CAEA,IAAM+U,CAAAA,CAAUM,GAAqBF,CAAAA,CAAa,qBAAqB,CAAA,CAMjEG,CAAAA,CAAQL,CAAAA,EAAe,KAAA,CACvBM,EAA+CD,CAAAA,CACjD,CACE,OAAA,CAASH,CAAAA,CAAa,IAAA,CACtB,cAAA,CAAgBG,EAAM,SAAA,EAAa,CAAA,CACnC,gBAAiBA,CAAAA,CAAM,SAAA,EAAa,CACtC,CAAA,CACA,MAAA,CACEE,CAAAA,CAA0BP,CAAAA,EAAe,UAAA,EAAc,CAAA,CAE7D,OAAO,CACL,IAAA,CAAME,CAAAA,CAAa,IAAA,CACnB,KAAA,CAAOA,CAAAA,CAAa,MACpB,MAAA,CAAQA,CAAAA,CAAa,MAAA,CACrB,OAAA,CAASA,CAAAA,CAAa,OAAA,CACtB,SAAUA,CAAAA,CAAa,QAAA,CACvB,WAAYA,CAAAA,CAAa,UAAA,CACzB,QAASA,CAAAA,CAAa,OAAA,CACtB,qBAAA,CAAuBA,CAAAA,CAAa,qBAAA,CACpC,cAAA,CAAgBA,EAAa,cAAA,CAC7B,SAAA,CAAWA,CAAAA,CAAa,SAAA,CACxB,aAAA,CAAeA,CAAAA,CAAa,cAC5B,mBAAA,CAAqBA,CAAAA,CAAa,mBAAA,CAClC,kBAAA,CAAoBA,CAAAA,CAAa,kBAAA,CACjC,oBAAqBA,CAAAA,CAAa,mBAAA,CAClC,uBAAwBA,CAAAA,CAAa,sBAAA,CACrC,QAASA,CAAAA,CAAa,OAAA,CACtB,WAAA,CAAaA,CAAAA,CAAa,WAAA,CAC1B,eAAA,CAAiBA,EAAa,eAAA,CAC9B,mBAAA,CAAqBA,CAAAA,CAAa,mBAAA,CAClC,iCAAA,CACEA,CAAAA,CAAa,kCACf,+BAAA,CACEA,CAAAA,CAAa,+BAAA,CACf,mBAAA,CAAqBA,CAAAA,CAAa,mBAAA,CAClC,wBAAyBA,CAAAA,CAAa,uBAAA,CACtC,yBAA0BA,CAAAA,CAAa,wBAAA,CACvC,eAAgBA,CAAAA,CAAa,cAAA,CAC7B,wBAAA,CAA0BA,CAAAA,CAAa,wBAAA,CACvC,uBAAA,CAAyBA,EAAa,uBAAA,CACtC,qBAAA,CAAuBA,CAAAA,CAAa,qBAAA,CACpC,WAAA,CAAaA,CAAAA,CAAa,YAC1B,SAAA,CAAWA,CAAAA,CAAa,SAAA,CAIxB,gBAAA,CACEA,CAAAA,CAAa,gBAAA,GAAqB,OAC9B,MAAA,CACA,MAAA,CAAOA,EAAa,gBAAgB,CAAA,CAC1C,gBACEA,CAAAA,CAAa,eAAA,GAAoB,MAAA,CAC7B,MAAA,CACA,MAAA,CAAOA,CAAAA,CAAa,eAAe,CAAA,CACzC,aAAA,CAAeA,CAAAA,CAAa,aAAA,CAC5B,KAAA,CAAOA,CAAAA,CAAa,MACpB,gBAAA,CAAkBA,CAAAA,CAAa,gBAAA,CAC/B,iBAAA,CAAmBA,CAAAA,CAAa,iBAAA,CAChC,eAAgBA,CAAAA,CAAa,cAAA,CAC7B,aAAcA,CAAAA,CAAa,YAAA,CAC3B,iBAAkBA,CAAAA,CAAa,gBAAA,CAC/B,YAAA,CAAAI,CAAAA,CACA,UAAA,CAAYC,CAAAA,CACZ,QAAAT,CACF,CACF,CAAA,CACA,OAAA,CAAS,CAAC,CAAC/U,EACX,SAAA,CAAW,GACb,CAAC,CACH,CCrMA,IAAMyV,EAAAA,CAAc,IAAI,IAAI,CAAC,WAAA,CAAa,aAAA,CAAe,WAAW,CAAC,CAAA,CAErE,SAASC,EAAAA,CAAczqB,CAAAA,CAAkD,CACvE,GAAI,CAACA,CAAAA,EAAS,OAAOA,CAAAA,EAAU,QAAA,EAAY,KAAA,CAAM,OAAA,CAAQA,CAAK,CAAA,CAC5D,OAAO,MAAA,CAET,IAAM0qB,CAAAA,CAAQ,MAAA,CAAO,cAAA,CAAe1qB,CAAK,EACzC,OAAO0qB,CAAAA,GAAU,IAAA,EAAQA,CAAAA,GAAU,MAAA,CAAO,SAC5C,CAEA,SAASC,EAAAA,CAA6CrqB,CAAAA,CAAWP,CAAAA,CAAoC,CACnG,IAAMb,EAAS,CAAE,GAAGoB,CAAO,CAAA,CAC3B,IAAA,IAAW+D,CAAAA,IAAO,OAAO,IAAA,CAAKtE,CAAM,EAAG,CACrC,GAAIyqB,GAAY,GAAA,CAAInmB,CAAG,CAAA,CACrB,SAEF,IAAMumB,CAAAA,CAAS7qB,EAAOsE,CAAG,CAAA,CACnBwmB,CAAAA,CAAS3rB,CAAAA,CAAOmF,CAAG,CAAA,CACrBomB,GAAcG,CAAM,CAAA,EAAKH,EAAAA,CAAcI,CAAM,CAAA,CAC/C3rB,CAAAA,CAAOmF,CAAG,CAAA,CAAIsmB,EAAAA,CAAUE,EAAQD,CAAM,CAAA,CAEtC1rB,EAAOmF,CAAG,CAAA,CAAIumB,EAElB,CACA,OAAO1rB,CACT,CAQA,SAAS4rB,EAAAA,CACP9c,CAAAA,CAC2B,CAE3B,GAAI,EAAA,CAACA,GAAU,CAAC,KAAA,CAAM,OAAA,CAAQA,CAAM,CAAA,CAAA,CAIpC,OAAOA,EAAO,GAAA,CAAI,CAAC,CAAE,IAAA,CAAA+c,CAAAA,CAAM,GAAGC,CAAK,CAAA,GAAM,CACvC,GAAI,CAACD,CAAAA,EAAQ,OAAOA,CAAAA,EAAS,QAAA,CAC3B,OAAO,CAAE,GAAGC,CAAAA,CAAM,KAAAD,CAAK,CAAA,CAGzB,GAAM,CAAE,UAAA,CAAApV,CAAAA,CAAY,SAAAZ,CAAAA,CAAU,GAAGkW,CAAS,CAAA,CAAIF,CAAAA,CAC9C,OAAO,CAAE,GAAGC,CAAAA,CAAM,IAAA,CAAMC,CAAS,CACnC,CAAC,CACH,CAEO,SAASb,EAAAA,CACdc,CAAAA,CACgB,CAChB,GAAI,CAACA,CAAAA,CACH,OAAO,EAAC,CAGV,GAAI,CACF,IAAMjP,CAAAA,CAAS,KAAK,KAAA,CAAMiP,CAAmB,EAC7C,GACEjP,CAAAA,EACA,OAAOA,CAAAA,EAAW,QAAA,EAClBA,CAAAA,CAAO,SACP,OAAOA,CAAAA,CAAO,OAAA,EAAY,QAAA,CAE1B,OAAOA,CAAAA,CAAO,OAElB,CAAA,MAAStN,CAAAA,CAAK,CACZ,OAAA,CAAQ,IAAA,CAAK,8CAAA,CAAgDA,EAAK,CAAE,MAAA,CAAQuc,GAAqB,MAAA,EAAU,CAAE,CAAC,EAChH,CAEA,OAAO,EACT,CAEO,SAASC,EAAAA,CACd1nB,CAAAA,CACgB,CAChB,OAAO2mB,EAAAA,CAAqB3mB,CAAAA,EAAM,qBAAqB,CACzD,CAUO,SAAS2nB,EAAAA,CAGdC,CAAAA,CACA/oB,CAAAA,CACsB,CACtB,GAAI,CAAC+oB,EAAW,OAAO/oB,CAAAA,CACvB,GAAI,CAACA,CAAAA,CAAU,OAAO+oB,CAAAA,CACtB,IAAMC,CAAAA,CAAgB,OAAO,IAAA,CAC3BlB,EAAAA,CAAqBiB,CAAAA,CAAU,qBAAqB,CACtD,CAAA,CAAE,OAIF,OAHqB,MAAA,CAAO,IAAA,CAC1BjB,EAAAA,CAAqB9nB,CAAAA,CAAS,qBAAqB,CACrD,CAAA,CAAE,MAAA,CACoBgpB,CAAAA,CAAgBhpB,CAAAA,CAAW+oB,CACnD,CAWO,SAASE,EAAAA,CACdL,CAAAA,CACyB,CACzB,GAAI,CAACA,CAAAA,CACH,OAAO,EAAC,CAGV,GAAI,CACF,IAAMjP,CAAAA,CAAS,KAAK,KAAA,CAAMiP,CAAmB,CAAA,CAC7C,GAAIT,EAAAA,CAAcxO,CAAM,EACtB,OAAOA,CAEX,OAAStN,CAAAA,CAAK,CACZ,QAAQ,IAAA,CAAK,mDAAA,CAAqDA,CAAAA,CAAK,CACrE,MAAA,CAAQuc,CAAAA,EAAqB,QAAU,CACzC,CAAC,EACH,CAEA,OAAO,EACT,CASO,SAASM,EAAAA,CAAyB,CACvC,2BAAA,CAAAC,CAAAA,CACA,QAAA3B,CAAAA,CACA,MAAA,CAAA9b,CACF,CAAA,CAIW,CACT,IAAM0d,CAAAA,CAAOH,EAAAA,CAAyBE,CAA2B,CAAA,CAC3DE,CAAAA,CAAkBlB,EAAAA,CAAciB,EAAK,OAAO,CAAA,CAC7CA,CAAAA,CAAK,OAAA,CACL,EAAC,CAEAE,EAAgBC,EAAAA,CAAqB,CACzC,eAAA,CAAAF,CAAAA,CACA,OAAA,CAAA7B,CAAAA,CACA,OAAA9b,CACF,CAAC,EAED,OAAO,IAAA,CAAK,UAAU,CAAE,GAAG0d,CAAAA,CAAM,OAAA,CAASE,CAAc,CAAC,CAC3D,CAEO,SAASC,EAAAA,CAAqB,CACnC,eAAA,CAAAF,CAAAA,CACA,QAAA7B,CAAAA,CACA,MAAA,CAAA9b,CACF,CAAA,CAA6C,CAC3C,GAAM,CAAE,MAAA,CAAQ8d,CAAAA,CAAe,QAASC,CAAAA,CAAiB,GAAGC,CAAY,CAAA,CACtElC,CAAAA,EAAW,EAAC,CAERmC,CAAAA,CAAWtB,EAAAA,CACdgB,GAAmB,EAAC,CACrBK,CACF,CAAA,CAGA,OAAIC,CAAAA,CAAS,QAAU,CAAC,KAAA,CAAM,OAAA,CAAQA,CAAAA,CAAS,MAAM,CAAA,GACnDA,EAAS,MAAA,CAAS,MAAA,CAAA,CAOhBje,IAAW,MAAA,CAEbie,CAAAA,CAAS,OAASje,CAAAA,EAAUA,CAAAA,CAAO,MAAA,CAAS,CAAA,CAAIA,CAAAA,CAAS,GAChD8d,CAAAA,GAAkB,MAAA,GAE3BG,CAAAA,CAAS,MAAA,CAASH,CAAAA,CAAAA,CAGpBG,CAAAA,CAAS,OAASnB,EAAAA,CAAemB,CAAAA,CAAS,MAAM,CAAA,CAChDA,CAAAA,CAAS,OAAA,CAAU,EAEZA,CACT,CCrMO,SAASC,EAAAA,CAAcC,CAAAA,CAAmC,CAC/D,OAAOA,CAAAA,CAAY,GAAA,CAAKC,CAAAA,EAAM,CAC5B,IAAMrR,EAAuB,CAC3B,IAAA,CAAMqR,CAAAA,CAAE,IAAA,CACR,KAAA,CAAOA,CAAAA,CAAE,MACT,MAAA,CAAQA,CAAAA,CAAE,MAAA,CACV,OAAA,CAASA,CAAAA,CAAE,OAAA,CACX,SAAUA,CAAAA,CAAE,QAAA,CACZ,WAAYA,CAAAA,CAAE,UAAA,CACd,QAASA,CAAAA,CAAE,OAAA,CACX,UAAA,CAAYA,CAAAA,CAAE,UAAA,CACd,qBAAA,CAAuBA,EAAE,qBAAA,CACzB,cAAA,CAAgBA,CAAAA,CAAE,cAAA,CAClB,SAAA,CAAWA,CAAAA,CAAE,UACb,aAAA,CAAeA,CAAAA,CAAE,aAAA,CACjB,mBAAA,CAAqBA,CAAAA,CAAE,mBAAA,CACvB,mBAAoBA,CAAAA,CAAE,kBAAA,CACtB,mBAAA,CAAqBA,CAAAA,CAAE,mBAAA,CACvB,sBAAA,CAAwBA,EAAE,sBAAA,CAC1B,OAAA,CAASA,CAAAA,CAAE,OAAA,CACX,WAAA,CAAaA,CAAAA,CAAE,YACf,eAAA,CAAiBA,CAAAA,CAAE,eAAA,CACnB,mBAAA,CAAqBA,CAAAA,CAAE,mBAAA,CACvB,kCAAmCA,CAAAA,CAAE,iCAAA,CACrC,+BAAA,CAAiCA,CAAAA,CAAE,+BAAA,CACnC,mBAAA,CAAqBA,EAAE,mBAAA,CACvB,uBAAA,CAAyBA,EAAE,uBAAA,CAC3B,wBAAA,CAA0BA,EAAE,wBAAA,CAC5B,cAAA,CAAgBA,CAAAA,CAAE,cAAA,CAClB,wBAAA,CAA0BA,CAAAA,CAAE,yBAC5B,uBAAA,CAAyBA,CAAAA,CAAE,uBAAA,CAC3B,qBAAA,CAAuBA,CAAAA,CAAE,qBAAA,CACzB,YAAaA,CAAAA,CAAE,WAAA,CACf,SAAA,CAAWA,CAAAA,CAAE,SAAA,CACb,aAAA,CAAeA,EAAE,aAAA,CACjB,KAAA,CAAOA,EAAE,KAAA,CACT,gBAAA,CAAkBA,EAAE,gBAAA,CACpB,iBAAA,CAAmBA,CAAAA,CAAE,iBAAA,CACrB,cAAA,CAAgBA,CAAAA,CAAE,eAClB,YAAA,CAAcA,CAAAA,CAAE,YAAA,CAChB,gBAAA,CAAkBA,CAAAA,CAAE,gBACtB,EAGItC,CAAAA,CAAsCM,EAAAA,CACxCgC,CAAAA,CAAE,qBACJ,CAAA,CAGA,GAAI,CAACtC,CAAAA,EAAW,MAAA,CAAO,KAAKA,CAAO,CAAA,CAAE,SAAW,CAAA,CAC9C,GAAI,CACF,IAAMuC,CAAAA,CAAe,IAAA,CAAK,MAAMD,CAAAA,CAAE,aAAA,EAAiB,IAAI,CAAA,CACnDC,CAAAA,CAAa,OAAA,GACfvC,EAAUuC,CAAAA,CAAa,OAAA,EAE3B,CAAA,KAAY,CAEZ,CAIF,OAAA,CAAI,CAACvC,CAAAA,EAAW,MAAA,CAAO,KAAKA,CAAO,CAAA,CAAE,SAAW,CAAA,IAC9CA,CAAAA,CAAU,CACR,KAAA,CAAO,EAAA,CACP,WAAA,CAAa,GACb,QAAA,CAAU,EAAA,CACV,IAAA,CAAM,EAAA,CACN,aAAA,CAAe,EAAA,CACf,QAAS,EACX,CAAA,CAAA,CAGK,CAAE,GAAG/O,CAAAA,CAAS,OAAA,CAAA+O,CAAQ,CAC/B,CAAC,CACH,CC9DO,SAASwC,GAAsBtsB,CAAAA,CAAuB,CAC3D,OAAO,IAAI,WAAA,EAAY,CAAE,OAAOA,CAAK,CAAA,CAAE,MACzC,CAWO,SAASusB,EAAAA,CAAuBvsB,EAA2C,CAChF,OAAKA,CAAAA,CAIEssB,EAAAA,CAAsBtsB,CAAK,CAAA,EAAK,GAH9B,KAIX,CC/BO,SAASwsB,EAAAA,CAAwBzG,CAAAA,CAAqB,CAC3D,OAAOvC,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,KAAK,GAAGsC,CAAS,CAAA,CAC9C,OAAA,CAASA,CAAAA,CAAU,MAAA,CAAS,EAC5B,OAAA,CAAS,SAAoC,CAI3C,IAAM0G,CAAAA,CAAY1G,CAAAA,CAAU,OAAOwG,EAAsB,CAAA,CACzD,GAAIE,CAAAA,CAAU,MAAA,GAAW,EACvB,OAAO,EAAC,CAOV,IAAMla,CAAAA,CAAY,MAAMxB,EACtB,4BAAA,CACA,CAAC0b,CAAS,CAAA,CACV,MAAA,CACA,MAAA,CACA,OACCxC,CAAAA,EAAS,KAAA,CAAM,OAAA,CAAQA,CAAI,CAC9B,CAAA,CACA,OAAOiC,EAAAA,CAAc3Z,CAAAA,EAAY,EAAE,CACrC,CACF,CAAC,CACH,CC3BO,SAASma,EAAAA,CAA2B3X,CAAAA,CAAkB,CAC3D,OAAOyO,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,QAAA,CAAS,WAAA,CAAY1O,CAAQ,CAAA,CACjD,OAAA,CAAS,IACPhE,CAAAA,CAAQ,gCAAA,CAAkC,CACxCgE,CACF,CAAC,CACL,CAAC,CACH,CCHO,SAAS4X,EAAAA,CACd3G,CAAAA,CACAM,CAAAA,CACAJ,CAAAA,CAAa,MAAA,CACbnlB,EAAQ,GAAA,CACR,CACA,OAAOyiB,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,QAAA,CAAS,SAAA,CAAUuC,EAAYM,CAAAA,CAAeJ,CAAAA,CAAYnlB,CAAK,CAAA,CACnF,OAAA,CAAS,IACPgQ,CAAAA,CAAQ,6BAAA,CAA+B,CACrCiV,EACAM,CAAAA,CACAJ,CAAAA,CACAnlB,CACF,CAAC,CAAA,CACH,OAAA,CAAS,CAAC,CAACilB,CACb,CAAC,CACH,CCjBO,SAAS4G,EAAAA,CACdxG,CAAAA,CACAC,EACAH,CAAAA,CAAa,MAAA,CACbnlB,CAAAA,CAAQ,GAAA,CACR,CACA,OAAOyiB,wBAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,SAAA,CAAU2C,CAAAA,CAAUC,EAAgBH,CAAAA,CAAYnlB,CAAK,CAAA,CAClF,OAAA,CAAS,IACPgQ,CAAAA,CAAQ,8BAA+B,CACrCqV,CAAAA,CACAC,CAAAA,CACAH,CAAAA,CACAnlB,CACF,CAAC,EACH,OAAA,CAAS,CAAC,CAACqlB,CACb,CAAC,CACH,CCxBA,IAAMyG,EAAAA,CAAwB,IAQxBC,EAAAA,CAAwB,EAAA,CAiBvB,SAASC,EAAAA,CAA0BhY,CAAAA,CAA8B,CACtE,OAAOyO,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,QAAA,CAAS,WAAW1O,CAAS,CAAA,CACjD,OAAA,CAAS,SAAY,CACnB,IAAMiY,EAAkB,EAAC,CACrB3rB,CAAAA,CAAQ,EAAA,CAEZ,IAAA,IAASmmB,CAAAA,CAAO,EAAGA,CAAAA,CAAOsF,EAAAA,CAAuBtF,CAAAA,EAAAA,CAAQ,CACvD,IAAMjV,CAAAA,CAAY,MAAMxB,CAAAA,CAAQ,6BAAA,CAA+B,CAC7DgE,CAAAA,CACA1T,CAAAA,CACA,SACAwrB,EACF,CAAC,CAAA,CAED,GAAI,CAACta,CAAAA,EAAU,OACb,MAGF,IAAI0a,CAAAA,CAAQ1a,CAAAA,CAAS,GAAA,CAAKoV,CAAAA,EAASA,EAAK,SAAS,CAAA,CAgBjD,GAVIsF,CAAAA,CAAM,CAAC,CAAA,GAAM5rB,IACf4rB,CAAAA,CAAQA,CAAAA,CAAM,MAAM,CAAC,CAAA,CAAA,CAGnB,CAACA,CAAAA,CAAM,MAAA,GAIXD,CAAAA,CAAM,IAAA,CAAK,GAAGC,CAAK,EAEf1a,CAAAA,CAAS,MAAA,CAASsa,EAAAA,CAAAA,CACpB,MAGFxrB,CAAAA,CAAQ4rB,CAAAA,CAAMA,EAAM,MAAA,CAAS,CAAC,EAChC,CAEA,OAAOD,CACT,EACA,OAAA,CAAS,CAAC,CAACjY,CACb,CAAC,CACH,CClEO,SAASmY,EAAAA,CAA2B/G,EAAeplB,CAAAA,CAAQ,EAAA,CAAI,CACpE,OAAOyiB,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,QAAA,CAAS,MAAA,CAAO0C,CAAAA,CAAOplB,CAAK,CAAA,CAChD,QAAS,SAKFwrB,EAAAA,CAAuBpG,CAAK,CAAA,CAI1BpV,CAAAA,CAAQ,gCAAiC,CAC9CoV,CAAAA,CACAplB,CACF,CAAC,CAAA,CANQ,GAQX,OAAA,CAAS,CAAC,CAAColB,CAAAA,CACX,SAAA,CAAW,CAAA,CAAA,CACb,CAAC,CACH,CC3BO,SAASgH,EAAAA,CACdhH,CAAAA,CACAplB,EAAQ,CAAA,CACRwlB,CAAAA,CAAwB,EAAC,CACzB,CACA,OAAO/C,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,QAAA,CAAS,MAAA,CAAO0C,CAAAA,CAAOI,CAAW,CAAA,CACtD,OAAA,CAAS,CAAC,CAACJ,CAAAA,CACX,OAAA,CAAS,SAAA,CACW,MAAMpV,CAAAA,CAAQ,gCAAiC,CAACoV,CAAAA,CAAOplB,CAAK,CAAC,CAAA,EAC/D,OAAQuF,CAAAA,EACtBigB,CAAAA,CAAY,MAAA,CAAS,CAAA,CAAI,CAACA,CAAAA,CAAY,SAASjgB,CAAI,CAAA,CAAI,IACzD,CAEJ,CAAC,CACH,CCEA,IAAM8mB,EAAAA,CAAqB,IAAI,GAAA,CAAI,CACjC,iBACA,iBAAA,CACA,kBAAA,CACA,eACF,CAAC,CAAA,CAUM,SAASC,EAAAA,CACdtY,CAAAA,CACA3J,CAAAA,CACA,CACA,OAAOoY,uBAAAA,CAAkD,CACvD,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,mBAAmB1O,CAAAA,CAAU3J,CAAAA,EAAQ,IAAI,CAAA,CACtE,OAAA,CAAS,SAAY,CACnB,GAAI,CAAC2J,GAAY,CAAC3J,CAAAA,CAChB,OAAO,CAAE,KAAA,CAAO,KAAM,CAAA,CAIxB,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,sBAAA,CACxB,CACE,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,QAAA,CAAArK,CAAAA,CACA,KAAA3J,CACF,CAAC,CACH,CACF,CAAA,CAEA,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,OAAO,CAAE,KAAA,CAAO,KAAM,EAGxB,IAAM0L,CAAAA,CAAW,MAAM1L,CAAAA,CAAS,IAAA,EAAK,CAE/B+a,EAAqC,KAAA,CAAM,OAAA,CAAQrP,CAAO,CAAA,CAC5DA,CAAAA,CAAQ,QAAS3X,CAAAA,EAAS,CACxB,GAAI,CAACA,CAAAA,EAAQ,OAAOA,GAAS,QAAA,CAC3B,OAAO,EAAC,CAGV,IAAMinB,CAAAA,CAAajnB,EAEblB,CAAAA,CACJ,OAAOmoB,CAAAA,CAAW,KAAA,EAAU,QAAA,CACxBA,CAAAA,CAAW,MACX,MAAA,CAEN,GAAI,CAACnoB,CAAAA,CACH,OAAO,GAGT,IAAM2lB,CAAAA,CACJwC,CAAAA,CAAW,IAAA,EAAQ,OAAOA,CAAAA,CAAW,MAAS,QAAA,CAC1C,CAAE,GAAIA,CAAAA,CAAW,IAAiC,CAAA,CAClD,EAAC,CAEDC,CAAAA,CAAyC,EAAC,CAE1CC,CAAAA,CACJ,OAAOF,EAAW,OAAA,EAAY,QAAA,EAAYA,EAAW,OAAA,CACjDA,CAAAA,CAAW,QACX,MAAA,CAOAG,CAAAA,CAAAA,CAJJ,OAAOH,CAAAA,CAAW,MAAA,EAAW,QAAA,CACzBA,EAAW,MAAA,GAAW,CAAA,CACtB,MAAA,GAEyB,KAAA,CAE3BE,CAAAA,GACFD,CAAAA,CAAc,QAAUC,CAAAA,CAAAA,CAG1BD,CAAAA,CAAc,IAAA,CAAOE,CAAAA,CAErB,IAAMC,CAAAA,CAAgB,CACpB,MAAA,CAAAvoB,CAAAA,CACA,SAAUA,CAAAA,CACV,OAAA,CAAAqoB,EACA,IAAA,CAAMC,CAAAA,CACN,IAAA,CAAM,OAAA,CACN,IAAA,CAAMF,CACR,EAEMI,CAAAA,CAAiD,EAAC,CAExD,IAAA,GAAW,CAACC,CAAAA,CAAYC,CAAS,CAAA,GAAK,MAAA,CAAO,OAAA,CAAQ/C,CAAI,CAAA,CACnD,OAAO8C,GAAe,QAAA,GAItBT,EAAAA,CAAmB,IAAIS,CAAU,CAAA,EAIjC,OAAOC,CAAAA,EAAc,QAAA,EAAY,CAACA,CAAAA,EAIjC,kBAAA,CAAmB,IAAA,CAAKD,CAAU,CAAA,EAIvCD,CAAAA,CAAoB,IAAA,CAAK,CACvB,MAAA,CAAQC,CAAAA,CACR,SAAUA,CAAAA,CACV,OAAA,CAASC,CAAAA,CACT,IAAA,CAAMJ,CAAAA,CACN,IAAA,CAAM,QACN,IAAA,CAAM,CAAE,QAASI,CAAAA,CAAW,IAAA,CAAMJ,CAAS,CAC7C,CAAC,CAAA,CAAA,CAGH,OAAO,CAACC,CAAAA,CAAe,GAAGC,CAAmB,CAC/C,CAAC,CAAA,CACD,EAAC,CAEL,OAAO,CACL,KAAA,CAAON,CAAAA,CAAQ,MAAA,CAAS,CAAA,CACxB,MAAA,CAAQA,EAAQ,MAAA,CAASA,CAAAA,CAAU,OACnC,OAAA,CAASA,CAAAA,CAAQ,OAASA,CAAAA,CAAU,MACtC,CACF,CAAA,CACA,cAAA,CAAgB,IAClB,CAAC,CACH,CC3JO,SAASS,EAAAA,CACdrH,CAAAA,CACApmB,CAAAA,CACA,CACA,OAAOkjB,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,SAAS,SAAA,CAAUiD,CAAAA,CAAWpmB,CAAM,CAAA,CACxD,OAAA,CAAS,CAAC,CAAComB,CAAAA,EAAa,CAAC,CAACpmB,CAAAA,CAC1B,cAAA,CAAgB,KAAA,CAChB,eAAA,CAAiB,IAAA,CACjB,OAAA,CAAS,SAAY,CACnB,IAAMgC,CAAAA,CAAgC,CACpC,OAAA,CAAS,KAAA,CACT,QAAS,KAAA,CACT,UAAA,CAAY,MACZ,aAAA,CAAe,KAAA,CACf,mBAAoB,KACtB,CAAA,CAKA,OAAI,CAACokB,CAAAA,EAAa,CAACpmB,EACVgC,CAAAA,CAGM,MAAMyO,CAAAA,CAAQ,0CAAA,CAA4C,CAAC2V,CAAAA,CAAWpmB,CAAM,CAAC,CAAA,EAC1EgC,CACpB,CACF,CAAC,CACH,CC5BO,SAAS0rB,EAAAA,CACdjZ,EACA,CACA,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,SAAS,aAAA,CAAc1O,CAAS,CAAA,CACpD,OAAA,CAAS,CAAC,CAACA,EACX,OAAA,CAAS,MAAO,CAAE,MAAA,CAAAlL,CAAO,CAAA,GACN,MAAMkH,CAAAA,CAAQ,+BAAA,CAAiC,CAC5D,OAAA,CAASgE,CACX,EAAG,MAAA,CAAW,MAAA,CAAWlL,CAAM,CAAA,EACb,EAExB,CAAC,CACH,CCfO,SAASokB,EAAAA,CACdvI,CAAAA,CACAta,CAAAA,CACA,CACA,OAAOoY,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,QAAA,CAAS,UAAUiC,CAAc,CAAA,CACrD,OAAA,CAAS,CAAC,CAACA,CAAAA,EAAkB,CAAC,CAACta,CAAAA,CAC/B,OAAA,CAAS,SAAY,CACnB,GAAI,CAACsa,CAAAA,EAAkB,CAACta,CAAAA,CACtB,MAAM,IAAI,KAAA,CAAM,gDAA2C,CAAA,CAa7D,OAAQ,MAVS,MADA2X,CAAAA,GAEf3D,CAAAA,CAAO,cAAA,CAAiB,wBAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,QAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,UAAU,CAAE,IAAA,CAAAhU,CAAK,CAAC,CAC/B,CACF,GACuB,IAAA,EACzB,CACF,CAAC,CACH,CAEO,SAAS8iB,EAAAA,CACdxI,CAAAA,CACAta,CAAAA,CACArK,CAAAA,CAAgB,EAAA,CAChB,CACA,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,QAAA,CAAS,kBAAkBiC,CAAAA,CAAgB3kB,CAAK,CAAA,CACpE,OAAA,CAAS,MAAO,CAAE,UAAAqtB,CAAAA,CAAY,CAAE,IAAM,CACpC,GAAI,CAAC1I,CAAAA,EAAkB,CAACta,CAAAA,CACtB,OAAO,CACL,IAAA,CAAM,EAAC,CACP,UAAA,CAAY,CACV,KAAA,CAAO,CAAA,CACP,KAAA,CAAArK,EACA,MAAA,CAAQ,CAAA,CACR,QAAA,CAAU,KACZ,CACF,CAAA,CAIF,IAAMwR,CAAAA,CAAW,MADAwQ,GAAc,CAE7B,CAAA,EAAG3D,EAAO,cAAc,CAAA,6CAAA,EAAgDgP,CAAS,CAAA,OAAA,EAAUrtB,CAAK,CAAA,CAAA,CAChG,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAAqK,CAAK,CAAC,CAC/B,CACF,EAEA,GAAI,CAACmH,EAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,2BAAA,EAA8BA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGjE,IAAM8b,CAAAA,CAAO,MAAM9b,CAAAA,CAAS,MAAK,CACjC,OAAO2Q,EAAAA,CAA4CmL,CAAAA,CAAMttB,CAAK,CAChE,EACA,gBAAA,CAAkB,CAAA,CAClB,gBAAA,CAAmButB,CAAAA,EAAa,CAC9B,GAAIA,EAAS,UAAA,CAAW,QAAA,CACtB,OAAOA,CAAAA,CAAS,UAAA,CAAW,MAAA,CAASA,EAAS,UAAA,CAAW,KAG5D,CAAA,CACA,OAAA,CAAS,CAAC,CAAC5I,GAAkB,CAAC,CAACta,CACjC,CAAC,CACH,CC3EO,SAASmjB,EAAAA,CACd7I,CAAAA,CACAta,CAAAA,CACA,CACA,OAAOoY,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,SAAA,CAAUiC,CAAc,CAAA,CACrD,QAAS,CAAC,CAACA,CAAAA,EAAkB,CAAC,CAACta,CAAAA,CAC/B,QAAS,SAAY,CACnB,GAAI,CAACsa,CAAAA,EAAkB,CAACta,CAAAA,CACtB,MAAM,IAAI,KAAA,CAAM,gDAA2C,CAAA,CAa7D,OAAQ,KAAA,CAVS,MADA2X,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,yBACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CAAE,KAAAhU,CAAK,CAAC,CAC/B,CACF,CAAA,EACuB,IAAA,EACzB,CACF,CAAC,CACH,CAEO,SAASojB,EAAAA,CACd9I,EACAta,CAAAA,CACArK,CAAAA,CAAgB,EAAA,CAChB,CACA,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,QAAA,CAAS,iBAAA,CAAkBiC,CAAAA,CAAgB3kB,CAAK,EACpE,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqtB,CAAAA,CAAY,CAAE,IAAM,CACpC,GAAI,CAAC1I,CAAAA,EAAkB,CAACta,CAAAA,CACtB,OAAO,CACL,IAAA,CAAM,EAAC,CACP,UAAA,CAAY,CACV,MAAO,CAAA,CACP,KAAA,CAAArK,EACA,MAAA,CAAQ,CAAA,CACR,SAAU,KACZ,CACF,CAAA,CAIF,IAAMwR,CAAAA,CAAW,MADAwQ,GAAc,CAE7B,CAAA,EAAG3D,CAAAA,CAAO,cAAc,CAAA,6CAAA,EAAgDgP,CAAS,UAAUrtB,CAAK,CAAA,CAAA,CAChG,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,UAAU,CAAE,IAAA,CAAAqK,CAAK,CAAC,CAC/B,CACF,EAEA,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,MAAM,CAAA,2BAAA,EAA8BA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGjE,IAAM8b,EAAO,MAAM9b,CAAAA,CAAS,MAAK,CACjC,OAAO2Q,GAA4CmL,CAAAA,CAAMttB,CAAK,CAChE,CAAA,CACA,gBAAA,CAAkB,CAAA,CAClB,iBAAmButB,CAAAA,EAAa,CAC9B,GAAIA,CAAAA,CAAS,UAAA,CAAW,QAAA,CACtB,OAAOA,CAAAA,CAAS,UAAA,CAAW,MAAA,CAASA,CAAAA,CAAS,UAAA,CAAW,KAG5D,EACA,OAAA,CAAS,CAAC,CAAC5I,CAAAA,EAAkB,CAAC,CAACta,CACjC,CAAC,CACH,CCrEO,SAASqjB,EAAAA,CACd/I,CAAAA,CACAta,CAAAA,CACAqb,CAAAA,CACA,CACA,OAAOjD,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,aAAA,CAAciC,EAAiBe,CAAe,CAAA,CAC3E,QAAS,CAAC,CAACf,GAAkB,CAAC,CAACta,CAAAA,EAAQ,CAAC,CAACqb,CAAAA,CACzC,QAAS,SAAY,CACnB,GAAI,CAACf,CAAAA,EAAkB,CAACta,EACtB,MAAM,IAAI,KAAA,CAAM,gDAA2C,CAAA,CAE7D,GAAI,CAACqb,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,sDAAiD,EAGnE,IAAMlU,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,eAAiB,8BAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,KAAAhU,CAAAA,CACA,OAAA,CAASqb,CACX,CAAC,CACH,CACF,CAAA,CAEA,GAAI,CAAClU,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CACR,CAAA,qEAAA,EAAmEA,CAAAA,CAAS,MAAM,CAAA,EAAA,EAAKA,CAAAA,CAAS,UAAU,CAAA,CAC5G,CAAA,CAGF,IAAMrT,CAAAA,CAAS,MAAMqT,CAAAA,CAAS,MAAK,CACnC,GAAI,OAAOrT,CAAAA,EAAW,SAAA,CACpB,MAAM,IAAI,KAAA,CACR,CAAA,+FAAA,EAA6F,OAAOA,CAAM,CAAA,CAC5G,EAGF,OAAOA,CACT,CACF,CAAC,CACH,CC/CO,SAASwvB,GACdhJ,CAAAA,CACAta,CAAAA,CACA,CACA,OAAOoY,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,YAAA,CAAaiC,CAAc,CAAA,CACxD,QAAS,CAAC,CAACA,CAAAA,EAAkB,CAAC,CAACta,CAAAA,CAC/B,QAAS,SAAY,CACnB,GAAI,CAACsa,CAAAA,EAAkB,CAACta,EACtB,MAAM,IAAI,MAAM,mDAA8C,CAAA,CAGhE,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,6BACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAAhU,CAAK,CAAC,CAC/B,CACF,CAAA,CACA,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,+BAAA,EAAkCA,EAAS,MAAM,CAAA,CAAE,CAAA,CAErE,OAAQ,MAAMA,CAAAA,CAAS,MACzB,CACF,CAAC,CACH,CAEO,SAASoc,GACdjJ,CAAAA,CACAta,CAAAA,CACArK,CAAAA,CAAgB,EAAA,CAChB,CACA,OAAOotB,gCAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,QAAA,CAAS,oBAAA,CAAqBiC,CAAAA,CAAgB3kB,CAAK,CAAA,CACvE,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqtB,CAAAA,CAAY,CAAE,CAAA,GAAM,CACpC,GAAI,CAAC1I,CAAAA,EAAkB,CAACta,EACtB,OAAO,CACL,KAAM,EAAC,CACP,WAAY,CACV,KAAA,CAAO,CAAA,CACP,KAAA,CAAArK,CAAAA,CACA,MAAA,CAAQ,EACR,QAAA,CAAU,KACZ,CACF,CAAA,CAIF,IAAMwR,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B,CAAA,EAAG3D,CAAAA,CAAO,cAAc,CAAA,iDAAA,EAAoDgP,CAAS,CAAA,OAAA,EAAUrtB,CAAK,GACpG,CACE,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CAAE,IAAA,CAAAqK,CAAK,CAAC,CAC/B,CACF,CAAA,CAEA,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,+BAAA,EAAkCA,EAAS,MAAM,CAAA,CAAE,EAGrE,IAAM8b,CAAAA,CAAO,MAAM9b,CAAAA,CAAS,IAAA,EAAK,CACjC,OAAO2Q,EAAAA,CAA+CmL,CAAAA,CAAMttB,CAAK,CACnE,CAAA,CACA,gBAAA,CAAkB,EAClB,gBAAA,CAAmButB,CAAAA,EAAa,CAC9B,GAAIA,CAAAA,CAAS,UAAA,CAAW,SACtB,OAAOA,CAAAA,CAAS,WAAW,MAAA,CAASA,CAAAA,CAAS,WAAW,KAG5D,CAAA,CACA,OAAA,CAAS,CAAC,CAAC5I,CAAAA,EAAkB,CAAC,CAACta,CACjC,CAAC,CACH,CCvFA,IAAMwjB,EAAAA,CAAc,mBAAA,CACdC,EAAAA,CAAoB,aAUnB,SAASC,EAAAA,CAAaC,EAA6B,CACxD,GAAI,OAAOA,CAAAA,EAAQ,QAAA,CACjB,OAAO,IAAA,CAGT,IAAI1Y,CAAAA,CAAM0Y,EAAI,IAAA,EAAK,CAAE,WAAA,EAAY,CAKjC,OAJI1Y,CAAAA,CAAI,WAAW,GAAG,CAAA,GACpBA,CAAAA,CAAMA,CAAAA,CAAI,KAAA,CAAM,CAAC,GAGf,CAACuY,EAAAA,CAAY,KAAKvY,CAAG,CAAA,EAAKwY,GAAkB,IAAA,CAAKxY,CAAG,CAAA,CAC/C,IAAA,CAGFA,CACT,CCZO,SAAS2Y,EAAAA,CACdtJ,CAAAA,CACAta,CAAAA,CACAiL,CAAAA,CACA,CACA,IAAM4Y,EAAaH,EAAAA,CAAazY,CAAG,CAAA,CAEnC,OAAOmN,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,QAAA,CAAS,iBAAiBiC,CAAAA,EAAkB,EAAA,CAAIuJ,GAAc,EAAE,CAAA,CACpF,OAAA,CAAS,CAAC,CAACvJ,CAAAA,EAAkB,CAAC,CAACta,CAAAA,EAAQ6jB,CAAAA,GAAe,IAAA,CACtD,OAAA,CAAS,SAAY,CACnB,GAAI,CAACvJ,CAAAA,EAAkB,CAACta,CAAAA,CACtB,MAAM,IAAI,KAAA,CAAM,mDAA8C,CAAA,CAEhE,GAAI6jB,CAAAA,GAAe,IAAA,CACjB,OAAO,MAAA,CAGT,IAAM1c,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,EAAO,cAAA,CAAiB,kCAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAAhU,CAAAA,CACA,IAAK6jB,CACP,CAAC,CACH,CACF,CAAA,CAEA,GAAI,CAAC1c,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CACR,CAAA,4EAAA,EAA0EA,CAAAA,CAAS,MAAM,CAAA,EAAA,EAAKA,EAAS,UAAU,CAAA,CACnH,CAAA,CAGF,IAAMrT,CAAAA,CAAS,MAAMqT,EAAS,IAAA,EAAK,CACnC,GAAI,OAAOrT,CAAAA,EAAW,UACpB,MAAM,IAAI,KAAA,CACR,CAAA,sGAAA,EAAoG,OAAOA,CAAM,EACnH,CAAA,CAGF,OAAOA,CACT,CACF,CAAC,CACH,CC1DO,SAASgwB,EAAAA,CACdna,EACA3J,CAAAA,CACA,CACA,OAAOoY,uBAAAA,CAAa,CAClB,QAAS,CAAC,CAACzO,CAAAA,EAAY,CAAC,CAAC3J,CAAAA,CACzB,SAAUqY,CAAAA,CAAU,QAAA,CAAS,UAAA,CAAW1O,CAAS,CAAA,CACjD,OAAA,CAAS,SAAY,CACnB,GAAI,CAACA,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,kDAAkD,CAAA,CAcpE,OAAA,CAXiB,MADA2X,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,yBAAA,CACxB,CACE,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAAhU,CAAK,CAAC,CAC/B,CACF,CAAA,EAEgB,MAClB,CACF,CAAC,CACH,CC1BO,SAAS+jB,EAAAA,CACdpa,CAAAA,CACA,CACA,OAAOyO,uBAAAA,CAAa,CAClB,QAAS,CAAC,CAACzO,CAAAA,CACX,QAAA,CAAU0O,CAAAA,CAAU,QAAA,CAAS,gBAAgB1O,CAAS,CAAA,CACtD,QAAS,IACPhE,CAAAA,CAAQ,qDAAsD,CAAE,QAAA,CAAU,CAACgE,CAAQ,CAAE,CAAC,CAC1F,CAAC,CACH,CCPO,SAASqa,EAAAA,CAAkCjJ,CAAAA,CAAeplB,CAAAA,CAAQ,EAAA,CAAI,CAC3E,OAAOyiB,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,QAAA,CAAS,YAAY0C,CAAAA,CAAOplB,CAAK,CAAA,CACrD,OAAA,CAAS,CAAC,CAAColB,EACX,OAAA,CAAS,SAGH,CAACA,CAAAA,EAAS,CAACoG,EAAAA,CAAuBpG,CAAK,CAAA,CAClC,EAAC,CAGHpV,CAAAA,CAAQ,uCAAA,CAAyC,CAACoV,EAAOplB,CAAK,CAAC,CAE1E,CAAC,CACH,CCbA,IAAMqZ,CAAAA,CAAMpB,EAAAA,CAAM,WAELqW,EAAAA,CAA6D,CACxE,SAAA,CAAW,CACTjV,CAAAA,CAAI,QAAA,CACJA,EAAI,mBAAA,CACJA,CAAAA,CAAI,qBAAA,CACJA,CAAAA,CAAI,4BAAA,CAIJA,CAAAA,CAAI,2BACJA,CAAAA,CAAI,kBAAA,CACJA,EAAI,uBAAA,CACJA,CAAAA,CAAI,eACN,CAAA,CACA,eAAA,CAAiB,CACfA,CAAAA,CAAI,oBAAA,CACJA,CAAAA,CAAI,WACJA,CAAAA,CAAI,mCAAA,CACJA,CAAAA,CAAI,mBAAA,CACJA,CAAAA,CAAI,kBAAA,CACJA,EAAI,kBACN,CAAA,CACA,SAAA,CAAW,CAACA,CAAAA,CAAI,QAAQ,EACxB,kBAAA,CAAoB,CAClBA,EAAI,yBAAA,CACJA,CAAAA,CAAI,iBACJA,CAAAA,CAAI,mBAAA,CACJA,CAAAA,CAAI,0BAAA,CACJA,CAAAA,CAAI,qBAAA,CACJA,EAAI,qBAAA,CACJA,CAAAA,CAAI,qBAAA,CACJA,CAAAA,CAAI,uBACN,CAAA,CACA,QAAS,CACPA,CAAAA,CAAI,aAAA,CACJA,CAAAA,CAAI,eAAA,CACJA,CAAAA,CAAI,gBACJA,CAAAA,CAAI,oBAAA,CACJA,EAAI,yBAAA,CACJA,CAAAA,CAAI,iBACJA,CAAAA,CAAI,YACN,CACF,CAAA,CAOakV,EAAAA,CAAyB,KAAA,CAAM,KAC1C,IAAI,GAAA,CAAI,MAAA,CAAO,MAAA,CAAOD,EAAwB,CAAA,CAAE,MAAM,CACxD,EA2CA,SAASE,EAAAA,CAAUC,CAAAA,CAA+B,CAChD,OAAOA,CAAAA,CAAM,KAAA,CAAQ,GAAA,CAAaA,CAAAA,CAAM,YAAA,CAAe,IAAMA,CAAAA,CAAM,MACrE,CAMA,SAASC,EAAAA,CAAgBC,CAAAA,CAA0B,CACjD,OAAOA,CAAAA,CAAS,OAAA,CAAQ,aAAA,CAAe,EAAE,CAC3C,CAKA,SAASC,EAAAA,CAAW1tB,CAAAA,CAAqE,CACvF,OAAO,OAAOA,GAAM,QAAA,EAAYA,CAAAA,GAAM,MAAQ,KAAA,GAASA,CAAAA,EAAK,WAAYA,CAAAA,EAAK,WAAA,GAAeA,CAC9F,CAMA,SAAS2tB,EAAAA,CAAY3tB,EAAqB,CACxC,GAAI,CAAC0tB,EAAAA,CAAW1tB,CAAC,CAAA,CAAG,OAAOA,CAAAA,CAC3B,IAAMga,CAAAA,CAAS0G,CAAAA,CAAW1gB,CAAC,CAAA,CACrBmD,EAASsd,EAAAA,CAAOzgB,CAAAA,CAAE,GAA0B,CAAA,EAAK,SAAA,CACvD,OAAO,CAAA,EAAGga,CAAAA,CAAO,MAAA,CAAO,OAAA,CAAQha,CAAAA,CAAE,SAAS,CAAC,CAAA,CAAA,EAAImD,CAAM,CAAA,CACxD,CAMA,SAASyqB,EAAAA,CAAiB7vB,EAAyD,CACjF,IAAMd,CAAAA,CAAkC,EAAC,CACzC,IAAA,GAAW,CAAC8C,CAAAA,CAAGC,CAAC,IAAK,MAAA,CAAO,OAAA,CAAQjC,CAAK,CAAA,CACvCd,CAAAA,CAAO8C,CAAC,CAAA,CAAI4tB,EAAAA,CAAY3tB,CAAC,EAE3B,OAAO/C,CACT,CAWO,SAAS4wB,EAAAA,CACd/a,CAAAA,CACAhU,EAAQ,EAAA,CACRwS,CAAAA,CAA6B,EAAA,CAC7B,CACA,IAAMwc,CAAAA,CAAiBxc,EACnB8b,EAAAA,CAAyB9b,CAAK,CAAA,CAC9B+b,EAAAA,CAEJ,OAAOnB,+BAAAA,CAML,CACA,QAAA,CAAU1K,CAAAA,CAAU,QAAA,CAAS,YAAA,CAAa1O,CAAAA,EAAY,EAAA,CAAIxB,EAAOxS,CAAK,CAAA,CACtE,gBAAA,CAAkB,IAAA,CAElB,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqtB,CAAAA,CAAW,MAAA,CAAAvkB,CAAO,CAAA,GAAqD,CACvF,GAAI,CAACkL,CAAAA,CACH,OAAO,CAAE,OAAA,CAAS,EAAC,CAAG,WAAA,CAAa,CAAE,CAAA,CAGvC,IAAMib,CAAAA,CAAY,MAAOxI,CAAAA,EAAmB,CAC1C,IAAMne,CAAAA,CAA0C,CAC9C,cAAA,CAAgB0L,EAChB,iBAAA,CAAmBgb,CAAAA,CAAe,IAAA,CAAK,GAAG,CAAA,CAC1C,WAAA,CAAahvB,CACf,CAAA,CAIA,OAAIymB,IAAS,IAAA,GACXne,CAAAA,CAAO,KAAOme,CAAAA,CAAAA,CAGR,MAAM7V,EAAAA,CACZ,OAAA,CACA,qCAAA,CACAtI,CAAAA,CACA,OACA,MAAA,CACAQ,CACF,CACF,CAAA,CAEMomB,CAAAA,CAAa1d,CAAAA,EACjBA,EAAS,iBAAA,CAAkB,GAAA,CAAKid,CAAAA,EAAU,CACxC,IAAMzV,CAAAA,CAAO0V,GAAgBD,CAAAA,CAAM,EAAA,CAAG,IAAI,CAAA,CAE1C,OAAO,CACL,GAFYK,EAAAA,CAAiBL,CAAAA,CAAM,EAAA,CAAG,KAAK,CAAA,CAG3C,IAAKD,EAAAA,CAAUC,CAAK,CAAA,CACpB,IAAA,CAAAzV,CAAAA,CACA,SAAA,CAAWyV,EAAM,SAAA,CACjB,MAAA,CAAQA,CAAAA,CAAM,MAChB,CACF,CAAC,EAEGjd,CAAAA,CAAW,MAAMyd,EAAU5B,CAAS,CAAA,CACtC8B,EAAUD,CAAAA,CAAU1d,CAAQ,CAAA,CAC5B4d,CAAAA,CAAc/B,CAAAA,EAAa7b,CAAAA,CAAS,YAOxC,GAAI6b,CAAAA,GAAc,IAAA,EAAQ8B,CAAAA,CAAQ,MAAA,CAASnvB,CAAAA,EAASwR,EAAS,WAAA,CAAc,CAAA,CACzE,GAAI,CACF,IAAM6d,CAAAA,CAAU,MAAMJ,CAAAA,CAAUzd,CAAAA,CAAS,YAAc,CAAC,CAAA,CACxD2d,EAAU,CAAC,GAAGA,CAAAA,CAAS,GAAGD,CAAAA,CAAUG,CAAO,CAAC,CAAA,CAC5CD,CAAAA,CAAc5d,CAAAA,CAAS,WAAA,CAAc,EACvC,CAAA,MAAStI,EAAG,CAGV,GAAIJ,CAAAA,EAAQ,OAAA,CACV,MAAMI,CAIV,CAGF,OAAO,CAAE,QAAAimB,CAAAA,CAAS,WAAA,CAAAC,CAAY,CAChC,CAAA,CAEA,gBAAA,CAAmB7B,CAAAA,EAAa,CAC9B,IAAM+B,EAAW/B,CAAAA,CAAS,WAAA,CAAc,CAAA,CACxC,OAAO+B,CAAAA,EAAY,CAAA,CAAIA,EAAW,MACpC,CACF,CAAC,CACH,CCpPO,SAASC,EAAAA,EAAsB,CACpC,OAAO9M,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,IAAA,GAC7B,OAAA,CAAS,SAAY,CACnB,IAAMlR,CAAAA,CAAW,MAAM,MAAM6M,CAAAA,CAAO,cAAA,CAAiB,0BAAA,CAA4B,CAC/E,MAAA,CAAQ,KAAA,CACR,QAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CAAC,CAAA,CAED,GAAI,CAAC7M,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,yBAAyBA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAG5D,OAAOA,CAAAA,CAAS,MAClB,CAAA,CACA,cAAA,CAAgB,IAAA,CAChB,SAAA,CAAW,CAAA,CAAA,CACb,CAAC,CACH,CCjBO,SAASge,EAAAA,CAAiCxb,CAAAA,CAAkB,CACjE,OAAOoZ,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,QAAA,CAAS,SAAA,CAAU1O,CAAQ,CAAA,CAC/C,iBAAkB,CAAE,KAAA,CAAO,MAAU,CAAA,CACrC,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqZ,CAAU,IAAgC,CAC1D,GAAM,CAAE,KAAA,CAAAoC,CAAM,CAAA,CAAIpC,CAAAA,EAAa,EAAC,CAC1Bpc,EAAUsN,qBAAAA,CAAc,mBAAA,EAAoB,CAC5Cxd,CAAAA,CAAM,IAAI,GAAA,CAAI,0BAA0BiT,CAAQ,CAAA,CAAA,CAAI/C,CAAO,CAAA,CAE7Dwe,CAAAA,GAAU,MAAA,EACZ1uB,EAAI,YAAA,CAAa,GAAA,CAAI,SAAU0uB,CAAAA,CAAM,QAAA,EAAU,CAAA,CAGjD,IAAMje,CAAAA,CAAW,MAAM,KAAA,CAAMzQ,CAAAA,CAAI,UAAS,CAAG,CAC3C,MAAA,CAAQ,KAAA,CACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CACF,CAAC,CAAA,CAED,GAAI,CAACyQ,EAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,2BAAA,EAA8BA,EAAS,MAAM,CAAA,CAAE,CAAA,CAGjE,OAAOA,CAAAA,CAAS,IAAA,EAClB,CAAA,CACA,gBAAA,CAAmB+b,CAAAA,EAA6B,CAC9C,IAAMmC,CAAAA,CAAYnC,IAAWA,CAAAA,CAAS,MAAA,CAAS,CAAC,CAAA,EAAG,EAAA,CACnD,OAAO,OAAOmC,CAAAA,EAAc,QAAA,CAAY,CAAE,KAAA,CAAOA,CAAU,EAAkB,MAC/E,CACF,CAAC,CACH,CC5BO,SAASC,EAAAA,CAA8B3b,CAAAA,CAAkB,CAC9D,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,cAAA,CAAe1O,CAAQ,CAAA,CACpD,OAAA,CAAS,SAAY,CACnB,IAAMxC,EAAW,MAAM,KAAA,CACrB6M,CAAAA,CAAO,cAAA,CAAiB,CAAA,uBAAA,EAA0BrK,CAAQ,SAC1D,CACE,MAAA,CAAQ,KAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,CAAA,CAEA,GAAI,CAACxC,CAAAA,CAAS,GACZ,MAAM,IAAI,MAAM,CAAA,gCAAA,EAAmCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGtE,IAAM9O,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,MAAK,CAEjC,GAAI,CAAC9O,CAAAA,CACH,MAAM,IAAI,MAAM,6BAA6B,CAAA,CAG/C,OAAO,CACL,KAAA,CAAOA,CAAAA,CAAK,OAAS,CAAA,CACrB,QAAA,CAAUA,CAAAA,CAAK,QAAA,EAAY,CAC7B,CACF,CACF,CAAC,CACH,CCnBO,SAASktB,EAAAA,CACd3K,CAAAA,CACAC,CAAAA,CACAtS,CAAAA,CAKA,CACA,GAAM,CAAE,UAAA,CAAAuS,CAAAA,CAAa,MAAA,CAAQ,KAAA,CAAAnlB,CAAAA,CAAQ,IAAK,OAAA,CAAA6vB,CAAAA,CAAU,IAAK,CAAA,CAAIjd,CAAAA,EAAW,EAAC,CAEzE,OAAOwa,+BAAAA,CAML,CACA,QAAA,CAAU1K,CAAAA,CAAU,SAAS,OAAA,CAAQuC,CAAAA,CAAWC,CAAAA,CAAMC,CAAAA,CAAYnlB,CAAK,CAAA,CACvE,iBAAkB,CAAE,cAAA,CAAgB,EAAG,CAAA,CACvC,OAAA,CAAA6vB,CAAAA,CACA,eAAgB,IAAA,CAEhB,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAxC,CAAU,CAAA,GAAuC,CACjE,GAAM,CAAE,cAAA,CAAA/H,CAAe,EAAI+H,CAAAA,CAKrByC,CAAAA,CAAAA,CAFY,MAAM9f,CAAAA,CAAQ,CAAA,cAAA,EADjBkV,CAAAA,GAAS,YAAc,eAAA,CAAkB,eACD,CAAA,CAAA,CAAI,CAACD,CAAAA,CAAWK,CAAAA,GAAmB,GAAK,IAAA,CAAOA,CAAAA,CAAgBH,EAAYnlB,CAAK,CAAC,GAE1G,GAAA,CAAKkJ,CAAAA,EACjCgc,CAAAA,GAAS,WAAA,CAAchc,CAAAA,CAAE,SAAA,CAAYA,EAAE,QACzC,CAAA,CAcA,OAAA,CAXkB,MAAM8G,CAAAA,CAAQ,qBAAA,CAAuB,CACrD,QAAA,CAAU8f,CAAAA,CACV,QAAA,CAAU,MACZ,CAAC,CAAA,EAEsC,EAAC,EAAG,GAAA,CAAK7rB,IAAO,CACrD,IAAA,CAAMA,EAAE,IAAA,CACR,UAAA,CAAYA,CAAAA,CAAE,UAAA,CACd,MAAA,CAAQA,CAAAA,CAAE,MACZ,CAAA,CAAE,CAGJ,CAAA,CAEA,gBAAA,CAAmBspB,CAAAA,EACjBA,CAAAA,EAAYA,EAAS,MAAA,GAAWvtB,CAAAA,CAC5B,CAAE,cAAA,CAAgButB,CAAAA,CAASA,CAAAA,CAAS,OAAS,CAAC,CAAA,CAAE,IAAK,CAAA,CACrD,MACR,CAAC,CACH,CCpEA,IAAMwC,EAAAA,CAAe,EAAA,CASd,SAASC,EAAAA,CACdhc,CAAAA,CACAkR,CAAAA,CACAE,EACA,CACA,OAAO3C,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,SAAS,aAAA,CAAc1O,CAAAA,CAAUkR,EAAME,CAAK,CAAA,CAChE,eAAgB,KAAA,CAChB,OAAA,CAAS,KAAA,CACT,OAAA,CAAS,SAA2C,CAClD,GAAI,CAACA,CAAAA,CAAO,OAAO,EAAC,CAEpB,IAAM9kB,EAAQ8kB,CAAAA,CAAM,KAAA,CAAM,CAAA,CAAG,EAAE,CAAA,CAIzB0K,CAAAA,CAAAA,CAFY,MAAM9f,CAAAA,CAAQ,CAAA,cAAA,EADjBkV,IAAS,WAAA,CAAc,eAAA,CAAkB,eACD,CAAA,CAAA,CAAI,CAAClR,CAAAA,CAAU1T,CAAAA,CAAO,MAAA,CAAQ,GAAI,CAAC,CAAA,EAGvF,GAAA,CAAK4I,CAAAA,EAAOgc,CAAAA,GAAS,WAAA,CAAchc,CAAAA,CAAE,UAAYA,CAAAA,CAAE,QAAS,CAAA,CAC5D,MAAA,CAAQ0c,CAAAA,EAASA,CAAAA,CAAK,aAAY,CAAE,QAAA,CAASR,CAAAA,CAAM,WAAA,EAAa,CAAC,EACjE,KAAA,CAAM,CAAA,CAAG2K,EAAY,CAAA,CAQxB,OAAA,CALkB,MAAM/f,EAAQ,qBAAA,CAAuB,CACrD,QAAA,CAAU8f,CAAAA,CACV,QAAA,CAAU,MACZ,CAAC,CAAA,GAGW,GAAA,CAAK7rB,CAAAA,GAAO,CACpB,IAAA,CAAMA,CAAAA,CAAE,KACR,SAAA,CAAWA,CAAAA,CAAE,SAAS,OAAA,EAAS,IAAA,EAAQ,GACvC,UAAA,CAAYA,CAAAA,CAAE,UAAA,CACd,MAAA,CAAQA,CAAAA,CAAE,MACZ,EAAE,CAAA,EAAK,EAEX,CACF,CAAC,CACH,CC9CO,SAASgsB,GAA4BjwB,CAAAA,CAAQ,EAAA,CAAI,CACtD,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,KAAA,CAAM,cAAa,CACvC,OAAA,CAAS,MAAO,CAAE,SAAA,CAAW,CAAE,SAAAwN,CAAS,CAAE,CAAA,GACxClgB,CAAAA,CAAQ,iCAAA,CAAmC,CAACkgB,EAAUlwB,CAAK,CAAC,EACzD,IAAA,CAAMmwB,CAAAA,EACLA,EACG,MAAA,CAAQ9E,CAAAA,EAAMA,CAAAA,CAAE,IAAA,GAAS,EAAE,CAAA,CAC3B,OAAQA,CAAAA,EAAM,CAACA,CAAAA,CAAE,IAAA,CAAK,UAAA,CAAW,OAAO,CAAC,CAAA,CACzC,GAAA,CAAKA,CAAAA,EAAMA,CAAAA,CAAE,IAAI,CACtB,EACJ,gBAAA,CAAkB,CAAE,SAAU,EAAG,CAAA,CACjC,iBAAmBkC,CAAAA,EACjBA,CAAAA,EAAU,MAAA,CAAS,CAAA,CACf,CAAE,QAAA,CAAUA,EAASA,CAAAA,CAAS,MAAA,CAAS,CAAC,CAAE,CAAA,CAC1C,MAAA,CACN,UAAW,IAAA,CAAU,GACvB,CAAC,CACH,CCjBO,SAAS6C,EAAAA,CAAqCpwB,CAAAA,CAAQ,IAAK,CAChE,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,MAAM,qBAAA,CAAsB1iB,CAAK,CAAA,CACrD,OAAA,CAAS,MAAO,CAAE,UAAW,CAAE,QAAA,CAAAkwB,CAAS,CAAE,CAAA,GACxClgB,CAAAA,CAAQ,kCAAmC,CAACkgB,CAAAA,CAAUlwB,CAAK,CAAC,CAAA,CACzD,KAAMmwB,CAAAA,EACLA,CAAAA,CAAK,MAAA,CAAQ7a,CAAAA,EAAQA,CAAAA,CAAI,IAAA,GAAS,EAAE,CAAA,CAAE,MAAA,CAAQA,CAAAA,EAAQ,CAAC2M,EAAAA,CAAY3M,CAAAA,CAAI,IAAI,CAAC,CAC9E,CAAA,CACJ,gBAAA,CAAkB,CAAE,QAAA,CAAU,EAAG,CAAA,CACjC,gBAAA,CAAmBiY,GACjBA,CAAAA,EAAU,MAAA,CAAS,CAAE,QAAA,CAAUA,CAAAA,CAASA,CAAAA,CAAS,MAAA,CAAS,CAAC,CAAA,CAAE,IAAK,CAAA,CAAI,MAAA,CACxE,SAAA,CAAW,CAAA,CAAA,CACb,CAAC,CACH,CCfO,SAAS8C,EAAAA,CAAyBrc,CAAAA,CAAkB3J,CAAAA,CAAe,CACxE,OAAOoY,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,SAAA,CAAU1O,CAAQ,CAAA,CAC5C,QAAS,SACF3J,CAAAA,CAAAA,CAIY,MADA2X,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,eAAiB,wBAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,IAAA,CAAM,IAAA,CAAK,UAAU,CACnB,IAAA,CAAAhU,CACF,CAAC,CAAA,CACD,QAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,CAAA,EAEgB,MAAK,CAhBZ,EAAC,CAkBZ,OAAA,CAAS,CAAC,CAAC2J,GAAY,CAAC,CAAC3J,CAC3B,CAAC,CACH,CAEO,SAASimB,EAAAA,CACdtc,CAAAA,CACA3J,EACArK,CAAAA,CAAgB,EAAA,CAChB,CACA,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,KAAA,CAAM,kBAAkB1O,CAAAA,CAAUhU,CAAK,CAAA,CAC3D,OAAA,CAAS,MAAO,CAAE,UAAAqtB,CAAAA,CAAY,CAAE,CAAA,GAAM,CACpC,GAAI,CAACrZ,GAAY,CAAC3J,CAAAA,CAChB,OAAO,CACL,IAAA,CAAM,EAAC,CACP,UAAA,CAAY,CACV,KAAA,CAAO,CAAA,CACP,KAAA,CAAArK,EACA,MAAA,CAAQ,CAAA,CACR,QAAA,CAAU,KACZ,CACF,CAAA,CAIF,IAAMwR,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B,CAAA,EAAG3D,CAAAA,CAAO,cAAc,CAAA,6CAAA,EAAgDgP,CAAS,UAAUrtB,CAAK,CAAA,CAAA,CAChG,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAAqK,CACF,CAAC,CACH,CACF,CAAA,CAEA,GAAI,CAACmH,CAAAA,CAAS,GACZ,MAAM,IAAI,MAAM,CAAA,2BAAA,EAA8BA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGjE,IAAM8b,CAAAA,CAAO,MAAM9b,CAAAA,CAAS,MAAK,CACjC,OAAO2Q,EAAAA,CAAqCmL,CAAAA,CAAMttB,CAAK,CACzD,EACA,gBAAA,CAAkB,CAAA,CAClB,gBAAA,CAAmButB,CAAAA,EAAa,CAC9B,GAAIA,EAAS,UAAA,CAAW,QAAA,CACtB,OAAOA,CAAAA,CAAS,UAAA,CAAW,OAASA,CAAAA,CAAS,UAAA,CAAW,KAG5D,CAAA,CACA,OAAA,CAAS,CAAC,CAACvZ,CAAAA,EAAY,CAAC,CAAC3J,CAC3B,CAAC,CACH,CC7EO,SAASkmB,EAAAA,CACdvX,EAAyB,MAAA,CACzB,CACA,OAAOyJ,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,KAAA,CAAM,QAAA,CAAS1J,CAAI,CAAA,CACvC,OAAA,CAAS,SAAY,CACnB,IAAM/H,CAAAA,CAAUsN,qBAAAA,CAAc,mBAAA,EAAoB,CAC5Cxd,EAAM,IAAI,GAAA,CAAI,+BAAA,CAAiCkQ,CAAO,CAAA,CAC5D,OAAI+H,IAAS,OAAA,EACXjY,CAAAA,CAAI,YAAA,CAAa,MAAA,CAAO,eAAA,CAAiB,GAAG,EAUjC,KAAA,CANI,MADAihB,CAAAA,EAAc,CACCjhB,CAAAA,CAAI,QAAA,GAAY,CAC9C,MAAA,CAAQ,KAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CAAC,CAAA,EAC2B,IAAA,EAE9B,CACF,CAAC,CACH,CCtBO,SAASyvB,EAAAA,CAAgC/B,CAAAA,CAAe,CAC7D,OAAOhM,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,gBAAA,CAAiB+L,CAAAA,EAAO,MAAA,CAAQA,GAAO,QAAQ,CAAA,CACzE,OAAA,CAAS,SACAze,CAAAA,CAAQ,gCAAA,CAAkC,CAC/Cye,CAAAA,EAAO,MAAA,CACPA,GAAO,QACT,CAAC,EAEH,OAAA,CAAS,CAAC,CAACA,CACb,CAAC,CACH,CCHO,SAASgC,EAAAA,CACdzc,EACAsQ,CAAAA,CACAC,CAAAA,CACA,CACA,OAAO9B,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,KAAA,CAAM,aAAa1O,CAAAA,CAAWsQ,CAAAA,CAASC,CAAS,CAAA,CACpE,OAAA,CAAS,SAAA,CACQ,MAAMvU,CAAAA,CAAQ,yBAAA,CAA2B,CACtD,KAAA,CAAO,CAACgE,CAAAA,CAAUsQ,CAAAA,CAAQC,CAAQ,CAAA,CAClC,MAAO,CAAA,CACP,KAAA,CAAO,kBACT,CAAC,CAAA,GAGe,KAAA,GAAQ,CAAC,CAAA,EAAK,IAAA,CAEhC,QAAS,CAAC,CAACvQ,GAAY,CAAC,CAACsQ,CAAAA,EAAU,CAAC,CAACC,CACvC,CAAC,CACH,CC3BO,SAASmM,EAAAA,CAAuBpM,CAAAA,CAAgBC,CAAAA,CAAkB,CACvE,OAAO9B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,MAAM,OAAA,CAAQ4B,CAAAA,CAAQC,CAAQ,CAAA,CAClD,OAAA,CAAS,CAAC,CAACD,CAAAA,EAAU,CAAC,CAACC,CAAAA,CACvB,OAAA,CAAS,SACPvU,CAAAA,CAAQ,2BAAA,CAA6B,CACnCsU,EACAC,CACF,CAAC,CACL,CAAC,CACH,CCVO,SAASoM,EAAAA,CAA8BrM,EAAgBC,CAAAA,CAAkB,CAC9E,OAAO9B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,KAAA,CAAM,cAAA,CAAe4B,CAAAA,CAAQC,CAAQ,CAAA,CACzD,OAAA,CAAS,CAAC,CAACD,CAAAA,EAAU,CAAC,CAACC,CAAAA,CACvB,OAAA,CAAS,SACPvU,CAAAA,CAAQ,mCAAA,CAAqC,CAC3C,MAAA,CAAAsU,CAAAA,CACA,SAAAC,CACF,CAAC,CACL,CAAC,CACH,CCVO,SAASqM,EAAAA,CAA0BtM,CAAAA,CAAgBC,EAAkB,CAC1E,OAAO9B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,MAAM,UAAA,CAAW4B,CAAAA,CAAQC,CAAQ,CAAA,CACrD,OAAA,CAAS,SACAvU,EAAQ,wBAAA,CAA0B,CACvC,MAAA,CAAAsU,CAAAA,CACA,QAAA,CAAAC,CACF,CAAC,CAAA,CAEH,WAAA,CAAa,IACf,CAAC,CACH,CCLO,SAASsM,EAAAA,CAAgBC,CAAAA,CAAwF,CACtH,OAAI,KAAA,CAAM,QAAQA,CAAc,CAAA,CAEvBA,EAAe,GAAA,CAAKrC,CAAAA,EAAUsC,EAAAA,CAAYtC,CAAK,CAAC,CAAA,CAElDsC,GAAYD,CAAc,CACnC,CAEA,SAASC,EAAAA,CAAYtC,CAAAA,CAA2D,CAC9E,GAAI,CAACA,CAAAA,CAAO,OAAOA,CAAAA,CAEnB,IAAMpK,EAAY,CAAA,CAAA,EAAIoK,CAAAA,CAAM,MAAM,CAAA,CAAA,EAAIA,CAAAA,CAAM,QAAQ,CAAA,CAAA,CAKpD,OAHEpQ,CAAAA,CAAO,YAAA,CAAa,QAAA,CAASgG,CAAS,GACtChG,CAAAA,CAAO,kBAAA,CAAmB,IAAA,CAAMwB,CAAAA,EAAUA,CAAAA,CAAM,IAAA,CAAKwE,CAAS,CAAC,CAAA,CAGxD,CACL,GAAGoK,CAAAA,CACH,IAAA,CAAM,kEACN,KAAA,CAAO,EACT,EAGKA,CACT,CCxBA,eAAsBuC,EAAAA,CACpB1M,CAAAA,CACAC,CAAAA,CACAvF,CAAAA,CACuB,CACvB,GAAI,CACF,IAAMxN,CAAAA,CAAW,MAAMC,EAAAA,CAAe,iBAAA,CAAmB,CACvD,OAAA6S,CAAAA,CACA,QAAA,CAAAC,CAAAA,CACA,QAAA,CAAAvF,CACF,CAAA,CAAG,CAAC,CAAA,CAEJ,GACExN,GACA,OAAOA,CAAAA,EAAa,UACnBA,CAAAA,CAAmB,MAAA,GAAW8S,CAAAA,EAC9B9S,CAAAA,CAAmB,QAAA,GAAa+S,CAAAA,CAEjC,OAAO/S,CAEX,CAAA,KAAQ,CAER,CAEA,OAAO,IACT,CC9BO,SAASyf,EAAAA,CACd3M,CAAAA,CACAC,CAAAA,CACAvF,CAAAA,CAAW,EAAA,CACXkS,EACA,CACA,IAAMC,EAAgB5M,CAAAA,EAAU,IAAA,GAC1BF,CAAAA,CAAY,CAAA,EAAA,EAAKC,CAAM,CAAA,CAAA,EAAI6M,CAAAA,EAAiB,EAAE,GAEpD,OAAO1O,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,MAAM2B,CAAS,CAAA,CACzC,OAAA,CAAS,SAAY,CACnB,GAAI,CAAC8M,CAAAA,EAAiBA,CAAAA,GAAkB,YACtC,OAAO,IAAA,CAKT,IAAM3f,CAAAA,CAAW,MAAMxB,CAAAA,CAAQ,iBAAA,CAAmB,CAChD,MAAA,CAAAsU,EACA,QAAA,CAAU6M,CAAAA,CACV,QAAA,CAAAnS,CACF,CAAC,CAAA,CAED,GAAI,CAACxN,CAAAA,CAAU,CAGb,IAAM4f,CAAAA,CAAW,MAAMJ,GAA0B1M,CAAAA,CAAQ6M,CAAAA,CAAenS,CAAQ,CAAA,CAChF,GAAI,CAACoS,CAAAA,CACH,OAAO,IAAA,CAET,IAAMC,CAAAA,CAAgBH,CAAAA,GAAQ,OAAY,CAAE,GAAGE,CAAAA,CAAU,GAAA,CAAAF,CAAI,CAAA,CAAaE,EAC1E,OAAOP,EAAAA,CAAgBQ,CAAa,CACtC,CAEA,IAAM5C,EAAQyC,CAAAA,GAAQ,MAAA,CAAY,CAAE,GAAG1f,CAAAA,CAAU,GAAA,CAAA0f,CAAI,CAAA,CAAa1f,CAAAA,CAClE,OAAOqf,EAAAA,CAAgBpC,CAAK,CAC9B,EACA,OAAA,CACE,CAAC,CAACnK,CAAAA,EACF,CAAC,CAACC,GACFA,CAAAA,CAAS,IAAA,EAAK,GAAM,EAAA,EACpBA,CAAAA,CAAS,IAAA,KAAW,WACxB,CAAC,CACH,CCzCO,SAAS+M,EAAAA,CAAiBzgB,CAAAA,CAAkBvI,CAAAA,CAAsBQ,EAAkC,CACzG,OAAOkH,CAAAA,CAAQ,CAAA,OAAA,EAAUa,CAAQ,CAAA,CAAA,CAAIvI,EAAQ,MAAA,CAAW,MAAA,CAAWQ,CAAM,CAC3E,CAEA,eAAsByoB,GACpBC,CAAAA,CACAxS,CAAAA,CACAkS,EACApoB,CAAAA,CACgB,CAChB,GAAM,CAAE,aAAA,CAAewkB,CAAK,CAAA,CAAIkE,CAAAA,CAEhC,GAAIlE,GAAM,eAAA,EAAmBA,CAAAA,EAAM,iBAAA,EAAqBA,CAAAA,CAAK,IAAA,GAAO,CAAC,IAAM,YAAA,CACzE,GAAI,CACF,IAAMmE,CAAAA,CAAO,MAAMC,GACjBpE,CAAAA,CAAK,eAAA,CACLA,EAAK,iBAAA,CACLtO,CAAAA,CACAkS,EACApoB,CACF,CAAA,CACA,OAAI2oB,CAAAA,CACK,CACL,GAAGD,EACH,cAAA,CAAgBC,CAAAA,CAChB,GAAA,CAAAP,CACF,CAAA,CAEKM,CACT,MAAQ,CACN,OAAOA,CACT,CAGF,OAAO,CAAE,GAAGA,CAAAA,CAAM,GAAA,CAAAN,CAAI,CACxB,CAEA,eAAeS,GAAaC,CAAAA,CAAgB5S,CAAAA,CAAkBlW,CAAAA,CAAwC,CACpG,IAAM+oB,CAAAA,CAAiBD,EAAM,GAAA,CAAIE,EAAa,CAAA,CACxCrR,CAAAA,CAAW,MAAM,OAAA,CAAQ,IAAIoR,CAAAA,CAAe,GAAA,CAAKjmB,CAAAA,EAAM2lB,EAAAA,CAAY3lB,CAAAA,CAAGoT,CAAAA,CAAU,OAAWlW,CAAM,CAAC,CAAC,CAAA,CACzG,OAAO+nB,GAAgBpQ,CAAQ,CACjC,CAEA,eAAsBsR,EAAAA,CACpBnN,CAAAA,CACAoN,EAAuB,EAAA,CACvBC,CAAAA,CAAyB,EAAA,CACzBjyB,CAAAA,CAAgB,EAAA,CAChBsV,CAAAA,CAAc,GACd0J,CAAAA,CAAmB,EAAA,CACnBlW,CAAAA,CACyB,CACzB,IAAM2oB,CAAAA,CAAO,MAAMH,EAAAA,CAA8B,kBAAA,CAAoB,CACnE,IAAA,CAAA1M,CAAAA,CACA,aAAAoN,CAAAA,CACA,cAAA,CAAAC,CAAAA,CACA,KAAA,CAAAjyB,CAAAA,CACA,GAAA,CAAAsV,EACA,QAAA,CAAA0J,CACF,CAAA,CAAGlW,CAAM,CAAA,CAET,OAAI,MAAM,OAAA,CAAQ2oB,CAAI,CAAA,CACbE,EAAAA,CAAaF,CAAAA,CAAMzS,CAAAA,CAAUlW,CAAM,CAAA,EAGxC2oB,CAAAA,EAAQ,MACV,OAAA,CAAQ,IAAA,CACN,mCAAmC,OAAOA,CAAI,CAAA,8BAAA,EAAiC7M,CAAI,CAAA,yBAAA,CACrF,CAAA,CAGK,KACT,CAEA,eAAsBsN,EAAAA,CACpBtN,CAAAA,CACA5K,CAAAA,CACAgY,CAAAA,CAAuB,GACvBC,CAAAA,CAAyB,EAAA,CACzBjyB,CAAAA,CAAgB,EAAA,CAChBgf,CAAAA,CAAmB,EAAA,CACnBlW,EACyB,CACzB,GAAIuV,CAAAA,CAAO,YAAA,CAAa,QAAA,CAASrE,CAAO,EACtC,OAAO,EAAC,CAGV,IAAMyX,CAAAA,CAAO,MAAMH,GAA8B,mBAAA,CAAqB,CACpE,IAAA,CAAA1M,CAAAA,CACA,OAAA,CAAA5K,CAAAA,CACA,aAAAgY,CAAAA,CACA,cAAA,CAAAC,CAAAA,CACA,KAAA,CAAAjyB,CAAAA,CACA,QAAA,CAAAgf,CACF,CAAA,CAAGlW,CAAM,EAET,OAAI,KAAA,CAAM,QAAQ2oB,CAAI,CAAA,CACbE,EAAAA,CAAaF,CAAAA,CAAMzS,CAAAA,CAAUlW,CAAM,GAGxC2oB,CAAAA,EAAQ,IAAA,EACV,OAAA,CAAQ,IAAA,CACN,CAAA,iCAAA,EAAoC,OAAOA,CAAI,CAAA,iCAAA,EAAoCzX,CAAO,CAAA,OAAA,EAAU4K,CAAI,CAAA,yBAAA,CAC1G,CAAA,CAGK,KACT,CAKA,SAASkN,GAAcrD,CAAAA,CAAqB,CAC1C,IAAM0D,CAAAA,CAAkB,CACtB,GAAG1D,CAAAA,CACH,YAAA,CAAc,KAAA,CAAM,QAAQA,CAAAA,CAAM,YAAY,CAAA,CAAI,CAAC,GAAGA,CAAAA,CAAM,YAAY,CAAA,CAAI,EAAC,CAC7E,aAAA,CAAe,KAAA,CAAM,OAAA,CAAQA,EAAM,aAAa,CAAA,CAAI,CAAC,GAAGA,CAAAA,CAAM,aAAa,CAAA,CAAI,EAAC,CAChF,UAAA,CAAY,KAAA,CAAM,OAAA,CAAQA,EAAM,UAAU,CAAA,CAAI,CAAC,GAAGA,CAAAA,CAAM,UAAU,EAAI,EAAC,CACvE,OAAA,CAAS,KAAA,CAAM,OAAA,CAAQA,CAAAA,CAAM,OAAO,CAAA,CAAI,CAAC,GAAGA,CAAAA,CAAM,OAAO,EAAI,EAAC,CAC9D,KAAA,CAAOA,CAAAA,CAAM,KAAA,CAAQ,CAAE,GAAGA,CAAAA,CAAM,KAAM,CAAA,CAAI,IAC5C,CAAA,CAEM2D,CAAAA,CAAuC,CAC3C,QAAA,CACA,OAAA,CACA,MAAA,CACA,SAAA,CACA,UAAA,CACA,UAAA,CACA,MACA,SACF,CAAA,CAEA,QAAWC,CAAAA,IAAQD,CAAAA,CACbD,EAASE,CAAI,CAAA,EAAK,IAAA,GACnBF,CAAAA,CAAiBE,CAAI,CAAA,CAAI,IAI9B,OAAIF,CAAAA,CAAS,iBAAA,EAAqB,IAAA,GAChCA,CAAAA,CAAS,iBAAA,CAAoB,GAE3BA,CAAAA,CAAS,QAAA,EAAY,IAAA,GACvBA,CAAAA,CAAS,QAAA,CAAW,CAAA,CAAA,CAElBA,EAAS,KAAA,EAAS,IAAA,GACpBA,EAAS,KAAA,CAAQ,CAAA,CAAA,CAEfA,EAAS,WAAA,EAAe,IAAA,GAC1BA,CAAAA,CAAS,WAAA,CAAc,CAAA,CAAA,CAErBA,CAAAA,CAAS,QAAU,IAAA,GACrBA,CAAAA,CAAS,MAAA,CAAS,CAAA,CAAA,CAEhBA,CAAAA,CAAS,WAAA,EAAe,OAC1BA,CAAAA,CAAS,WAAA,CAAc,CAAA,CAAA,CAGpBA,CAAAA,CAAS,KAAA,GACZA,CAAAA,CAAS,MAAQ,CACf,WAAA,CAAa,EACb,IAAA,CAAM,KAAA,CACN,KAAM,KAAA,CACN,WAAA,CAAa,CACf,CAAA,CAAA,CAGEA,CAAAA,CAAS,mBAAA,EAAuB,OAClCA,CAAAA,CAAS,mBAAA,CAAsB,WAAA,CAAA,CAE7BA,CAAAA,CAAS,oBAAA,EAAwB,IAAA,GACnCA,EAAS,oBAAA,CAAuB,WAAA,CAAA,CAE9BA,CAAAA,CAAS,mBAAA,EAAuB,IAAA,GAClCA,CAAAA,CAAS,oBAAsB,iBAAA,CAAA,CAE7BA,CAAAA,CAAS,SAAA,EAAa,IAAA,GACxBA,CAAAA,CAAS,SAAA,CAAY,IAEnBA,CAAAA,CAAS,oBAAA,EAAwB,IAAA,GACnCA,CAAAA,CAAS,oBAAA,CAAuB,WAAA,CAAA,CAE9BA,EAAS,QAAA,EAAY,IAAA,GACvBA,CAAAA,CAAS,QAAA,CAAW,WAAA,CAAA,CAGlBA,CAAAA,CAAS,YAAc,IAAA,GACzBA,CAAAA,CAAS,UAAA,CAAa,KAAA,CAAA,CAGjBA,CACT,CAEA,eAAsBT,EAAAA,CACpBpN,CAAAA,CAAiB,GACjBC,CAAAA,CAAmB,EAAA,CACnBvF,EAAmB,EAAA,CACnBkS,CAAAA,CACApoB,CAAAA,CAC4B,CAC5B,IAAM2oB,CAAAA,CAAO,MAAMH,EAAAA,CAA4B,UAAA,CAAY,CACzD,MAAA,CAAAhN,CAAAA,CACA,QAAA,CAAAC,EACA,QAAA,CAAAvF,CACF,CAAA,CAAGlW,CAAM,CAAA,CAET,GAAI2oB,EAAM,CACR,IAAMa,EAAiBR,EAAAA,CAAcL,CAAI,EACnCD,CAAAA,CAAO,MAAMD,EAAAA,CAAYe,CAAAA,CAAgBtT,CAAAA,CAAUkS,CAAAA,CAAKpoB,CAAM,CAAA,CACpE,OAAO+nB,EAAAA,CAAgBW,CAAI,CAC7B,CAGF,CAEA,eAAsBe,EAAAA,CACpBjO,CAAAA,CAAiB,EAAA,CACjBC,CAAAA,CAAmB,EAAA,CACI,CACvB,IAAMkN,CAAAA,CAAO,MAAMH,EAAAA,CAA4B,iBAAA,CAAmB,CAChE,MAAA,CAAAhN,CAAAA,CACA,QAAA,CAAAC,CACF,CAAC,CAAA,CACD,OAAOkN,CAAAA,EAAOK,EAAAA,CAAcL,CAAI,CAClC,CAEA,eAAsBe,GACpBlO,CAAAA,CACAC,CAAAA,CACAvF,CAAAA,CACuC,CACvC,IAAMyS,CAAAA,CAAO,MAAMH,EAAAA,CAA4C,gBAAA,CAAkB,CAC/E,MAAA,CAAAhN,CAAAA,CACA,SAAAC,CAAAA,CACA,QAAA,CAAUvF,CAAAA,EAAYsF,CACxB,CAAC,CAAA,CAED,GAAImN,CAAAA,CAAM,CACR,IAAMgB,CAAAA,CAAuC,EAAC,CAC9C,OAAW,CAACnvB,CAAAA,CAAKmrB,CAAK,CAAA,GAAK,MAAA,CAAO,OAAA,CAAQgD,CAAI,CAAA,CAC5CgB,CAAAA,CAAcnvB,CAAG,CAAA,CAAIwuB,EAAAA,CAAcrD,CAAK,CAAA,CAE1C,OAAOgE,CACT,CACA,OAAOhB,CACT,CAEA,eAAsBiB,EAAAA,CACpB9M,CAAAA,CACA5G,CAAAA,CAA+B,EAAA,CACJ,CAC3B,OAAOsS,EAAAA,CAAgC,eAAA,CAAiB,CAAE,IAAA,CAAA1L,CAAAA,CAAM,QAAA,CAAA5G,CAAS,CAAC,CAC5E,CAEA,eAAsB2T,EAAAA,CACpBC,EAAe,EAAA,CACf5yB,CAAAA,CAAgB,GAAA,CAChBolB,CAAAA,CACAR,CAAAA,CAAe,MAAA,CACf5F,EAAmB,EAAA,CACU,CAC7B,OAAOsS,EAAAA,CAAkC,kBAAA,CAAoB,CAC3D,KAAAsB,CAAAA,CACA,KAAA,CAAA5yB,CAAAA,CACA,KAAA,CAAAolB,CAAAA,CACA,IAAA,CAAAR,EACA,QAAA,CAAA5F,CACF,CAAC,CACH,CAEA,eAAsB6T,EAAAA,CAAcrB,CAAAA,CAAsC,CACxE,IAAMC,CAAAA,CAAO,MAAMH,GAA4B,gBAAA,CAAkB,CAAE,IAAA,CAAAE,CAAK,CAAC,CAAA,CACzE,OAAOC,CAAAA,EAAOK,EAAAA,CAAcL,CAAI,CAClC,CAEA,eAAsBqB,GAAiB9Y,CAAAA,CAAiD,CACtF,OAAOsX,EAAAA,CAAqC,wBAAA,CAA0B,CAAE,QAAAtX,CAAQ,CAAC,CACnF,CAEA,eAAsB+Y,EAAAA,CAAeC,EAAmD,CACtF,OAAO1B,EAAAA,CAAqC,kBAAA,CAAoB,CAAE,SAAA,CAAA0B,CAAU,CAAC,CAC/E,CAEA,eAAsBC,EAAAA,CACpB5N,CAAAA,CACAJ,EACqC,CACrC,OAAOqM,GAA0C,mCAAA,CAAqC,CACpFjM,EACAJ,CACF,CAAC,CACH,CAEA,eAAsBiO,EAAAA,CACpBzN,EACAzG,CAAAA,CACoB,CACpB,OAAOsS,EAAAA,CAAyB,cAAA,CAAgB,CAAE,SAAA7L,CAAAA,CAAU,QAAA,CAAAzG,CAAS,CAAC,CACxE,KC7SYmU,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,SAAW,UAAA,CACXA,CAAAA,CAAA,kBAAoB,mBAAA,CACpBA,CAAAA,CAAA,KAAA,CAAQ,OAAA,CACRA,CAAAA,CAAA,OAAA,CAAU,UAJAA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,EAOZ,SAASvR,EAAAA,CAAW3iB,CAAAA,CAAmD,CACrE,IAAMwgB,CAAAA,CAAQxgB,CAAAA,CAAM,KAAA,CAAM,0BAA0B,CAAA,CACpD,OAAKwgB,EACE,CACL,MAAA,CAAQ,WAAWA,CAAAA,CAAM,CAAC,CAAC,CAAA,CAC3B,MAAA,CAAQA,CAAAA,CAAM,CAAC,CACjB,CAAA,CAJmB,CAAE,MAAA,CAAQ,CAAA,CAAG,MAAA,CAAQ,EAAG,CAK7C,CAEO,SAAS2T,EAAAA,CACd3E,CAAAA,CACA4E,CAAAA,CACAxO,CAAAA,CACA,CACA,IAAMyO,EAAax1B,CAAAA,EACjB8jB,EAAAA,CAAW9jB,EAAE,oBAAoB,CAAA,CAAE,OACnC8jB,EAAAA,CAAW9jB,CAAAA,CAAE,mBAAmB,CAAA,CAAE,MAAA,CAClC8jB,EAAAA,CAAW9jB,EAAE,oBAAoB,CAAA,CAAE,MAAA,CAE/By1B,CAAAA,CAAetvB,CAAAA,EAAaA,CAAAA,CAAE,YAAc,CAAA,CAC5CuvB,CAAAA,CAAYvvB,CAAAA,EAChBwqB,CAAAA,CAAM,aAAA,EAAe,YAAA,GAAiB,GAAGxqB,CAAAA,CAAE,MAAM,IAAIA,CAAAA,CAAE,QAAQ,GAE3DwvB,CAAAA,CAAa,CACjB,QAAA,CAAU,CAACxvB,CAAAA,CAAUhG,CAAAA,GAAa,CAChC,GAAIs1B,CAAAA,CAAYtvB,CAAC,CAAA,CACf,OAAO,CAAA,CAGT,GAAIsvB,CAAAA,CAAYt1B,CAAC,CAAA,CACf,OAAO,GAAA,CAGT,IAAMy1B,EAAKJ,CAAAA,CAAUrvB,CAAC,EAChB0vB,CAAAA,CAAKL,CAAAA,CAAUr1B,CAAC,CAAA,CACtB,OAAIy1B,CAAAA,GAAOC,CAAAA,CACFA,CAAAA,CAAKD,CAAAA,CAGP,CACT,CAAA,CACA,iBAAA,CAAmB,CAACzvB,CAAAA,CAAUhG,CAAAA,GAAa,CACzC,IAAM21B,CAAAA,CAAO3vB,CAAAA,CAAE,iBAAA,CACT4vB,CAAAA,CAAO51B,CAAAA,CAAE,iBAAA,CAEf,OAAI21B,CAAAA,CAAOC,CAAAA,CAAa,GACpBD,CAAAA,CAAOC,CAAAA,CAAa,EAEjB,CACT,CAAA,CACA,KAAA,CAAO,CAAC5vB,CAAAA,CAAUhG,CAAAA,GAAa,CAC7B,IAAM21B,CAAAA,CAAO3vB,CAAAA,CAAE,QAAA,CACT4vB,CAAAA,CAAO51B,CAAAA,CAAE,SAEf,OAAI21B,CAAAA,CAAOC,CAAAA,CAAa,EAAA,CACpBD,CAAAA,CAAOC,CAAAA,CAAa,EAEjB,CACT,CAAA,CACA,OAAA,CAAS,CAAC5vB,CAAAA,CAAUhG,CAAAA,GAAa,CAC/B,GAAIs1B,CAAAA,CAAYtvB,CAAC,CAAA,CACf,OAAO,CAAA,CAGT,GAAIsvB,CAAAA,CAAYt1B,CAAC,CAAA,CACf,OAAO,GAAA,CAGT,IAAM21B,EAAO,IAAA,CAAK,KAAA,CAAM3vB,CAAAA,CAAE,OAAO,CAAA,CAC3B4vB,CAAAA,CAAO,KAAK,KAAA,CAAM51B,CAAAA,CAAE,OAAO,CAAA,CAEjC,OAAI21B,EAAOC,CAAAA,CAAa,EAAA,CACpBD,CAAAA,CAAOC,CAAAA,CAAa,CAAA,CAEjB,CACT,CACF,CAAA,CAEMC,CAAAA,CAAST,CAAAA,CAAW,IAAA,CAAKI,CAAAA,CAAW5O,CAAK,CAAC,CAAA,CAC1CkP,CAAAA,CAAcD,CAAAA,CAAO,SAAA,CAAWj2B,CAAAA,EAAM21B,CAAAA,CAAS31B,CAAC,CAAC,CAAA,CACjDm2B,EAASF,CAAAA,CAAOC,CAAW,EACjC,OAAIA,CAAAA,EAAe,CAAA,GACjBD,CAAAA,CAAO,MAAA,CAAOC,CAAAA,CAAa,CAAC,CAAA,CAC5BD,CAAAA,CAAO,OAAA,CAAQE,CAAM,CAAA,CAAA,CAEhBF,CACT,CAEO,SAASG,EAAAA,CACdxF,CAAAA,CACA5J,CAAAA,CAAmB,SAAA,CACnBgL,CAAAA,CAAmB,KACnB7Q,CAAAA,CACA,CAKA,IAAMkV,CAAAA,CAAmBlV,CAAAA,EAAYX,EAAO,eAAA,CAE5C,OAAOoE,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,MAAM,WAAA,CAAY+L,CAAAA,EAAO,MAAA,CAAQA,CAAAA,EAAO,QAAA,CAAU5J,CAAAA,CAAOqP,CAAgB,CAAA,CAC7F,OAAA,CAAS,SAAY,CACnB,GAAI,CAACzF,EACH,OAAO,GAGT,IAAMjd,CAAAA,CAAW,MAAMxB,CAAAA,CAAQ,uBAAA,CAAyB,CACtD,MAAA,CAAQye,CAAAA,CAAM,MAAA,CACd,SAAUA,CAAAA,CAAM,QAAA,CAChB,QAAA,CAAUyF,CACZ,CAAC,CAAA,CAEK7hB,EAAUb,CAAAA,CACZ,KAAA,CAAM,IAAA,CAAK,MAAA,CAAO,MAAA,CAAOA,CAAiC,CAAC,CAAA,CAC3D,GACJ,OAAOqf,EAAAA,CAAgBxe,CAAO,CAChC,CAAA,CACA,OAAA,CAASwd,CAAAA,EAAW,CAAC,CAACpB,EACtB,MAAA,CAAS/rB,CAAAA,EAAkB0wB,EAAAA,CAAgB3E,CAAAA,CAAO/rB,CAAAA,CAAMmiB,CAAK,EAI7D,iBAAA,CAAmB,CAACsP,CAAAA,CAASC,CAAAA,GAAY,CACvC,GAAI,CAACD,CAAAA,EAAW,CAACC,EAAS,OAAOA,CAAAA,CAGjC,IAAMC,CAAAA,CAAqBF,CAAAA,CAAoB,MAAA,CAC5C1F,CAAAA,EAAiBA,CAAAA,CAAM,aAAA,GAAkB,IAC5C,CAAA,CAEM6F,CAAAA,CAAmB,IAAI,GAAA,CAC1BF,CAAAA,CAAoB,GAAA,CAAKlrB,GAAa,CAAA,EAAGA,CAAAA,CAAE,MAAM,CAAA,CAAA,EAAIA,CAAAA,CAAE,QAAQ,EAAE,CACpE,CAAA,CAEMqrB,EAAoBF,CAAAA,CAAkB,MAAA,CACzCG,GAAe,CAACF,CAAAA,CAAiB,GAAA,CAAI,CAAA,EAAGE,CAAAA,CAAI,MAAM,IAAIA,CAAAA,CAAI,QAAQ,CAAA,CAAE,CACvE,CAAA,CAGA,OAAID,EAAkB,MAAA,CAAS,CAAA,CACtB,CAAC,GAAIH,CAAAA,CAAqB,GAAGG,CAAiB,CAAA,CAGhDH,CACT,CACF,CAAC,CACH,CAEO,SAASK,EAAAA,CACdnQ,CAAAA,CACAC,CAAAA,CACAvF,CAAAA,CACA6Q,CAAAA,CAAU,IAAA,CACV,CACA,IAAMqE,CAAAA,CAAmBlV,CAAAA,EAAYX,CAAAA,CAAO,eAAA,CAE5C,OAAOoE,wBAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,UAAA,CAAW4B,CAAAA,CAAQC,EAAU2P,CAAgB,CAAA,CACvE,QAASrE,CAAAA,EAAW,CAAC,CAACvL,CAAAA,EAAU,CAAC,CAACC,CAAAA,CAClC,OAAA,CAAS,SACPiO,GAAclO,CAAAA,CAAQC,CAAAA,CAAU2P,CAAgB,CAIpD,CAAC,CACH,CCvKO,SAASQ,EAAAA,CACd1gB,CAAAA,CACAwQ,EAAS,OAAA,CACTxkB,CAAAA,CAAQ,GACRgf,CAAAA,CAAW,EAAA,CACX6Q,CAAAA,CAAU,IAAA,CACV,CACA,OAAOzC,gCAML,CACA,QAAA,CAAU1K,CAAAA,CAAU,KAAA,CAAM,YAAA,CAAa1O,CAAAA,EAAY,GAAIwQ,CAAAA,CAAQxkB,CAAAA,CAAOgf,CAAQ,CAAA,CAC9E,OAAA,CAAS,CAAC,CAAChL,CAAAA,EAAY6b,CAAAA,CACvB,iBAAkB,CAChB,MAAA,CAAQ,OACR,QAAA,CAAU,MAAA,CACV,WAAA,CAAa,IACf,CAAA,CAEA,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAxC,CAAAA,CAAW,MAAA,CAAAvkB,CAAO,CAAA,GAAM,CACxC,GAAI,CAACukB,CAAAA,EAAW,WAAA,EAAe,CAACrZ,CAAAA,CAAU,OAAO,EAAC,CAElD,IAAMxC,CAAAA,CAAW,MAAM0gB,GACrB1N,CAAAA,CACAxQ,CAAAA,CACAqZ,CAAAA,CAAU,MAAA,EAAU,EAAA,CACpBA,CAAAA,CAAU,UAAY,EAAA,CACtBrtB,CAAAA,CACAgf,CAAAA,CACAlW,CACF,CAAA,CAEA,OAAO+nB,GAAgBrf,CAAAA,EAAY,EAAE,CACvC,CAAA,CAEA,gBAAA,CAAmB+b,GAA0C,CAC3D,IAAMqF,EAAOrF,CAAAA,GAAWA,CAAAA,CAAS,OAAS,CAAC,CAAA,CAGrCoH,CAAAA,CAAAA,CAAepH,CAAAA,EAAU,MAAA,EAAU,CAAA,IAAOvtB,EAEhD,GAAK20B,CAAAA,CAIL,OAAO,CACL,MAAA,CAAQ/B,CAAAA,EAAM,OACd,QAAA,CAAUA,CAAAA,EAAM,QAAA,CAChB,WAAA,CAAA+B,CACF,CACF,CACF,CAAC,CACH,CAEO,SAASC,EAAAA,CACd5gB,EACAwQ,CAAAA,CAAS,OAAA,CACTwN,CAAAA,CAAuB,EAAA,CACvBC,CAAAA,CAAyB,EAAA,CACzBjyB,EAAQ,EAAA,CACRgf,CAAAA,CAAW,EAAA,CACX6Q,CAAAA,CAAU,IAAA,CACV,CACA,OAAOpN,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,gBAAA,CAAiB1O,GAAY,EAAA,CAAIwQ,CAAAA,CAAQwN,EAAcC,CAAAA,CAAgBjyB,CAAAA,CAAOgf,CAAQ,CAAA,CAChH,OAAA,CAAS,CAAC,CAAChL,CAAAA,EAAY6b,CAAAA,CACvB,QAAS,MAAO,CAAE,MAAA,CAAA/mB,CAAO,CAAA,CAAI,KAAc,CACzC,GAAI,CAACkL,CAAAA,CACH,OAAO,GAGT,IAAMxC,CAAAA,CAAW,MAAM0gB,EAAAA,CACrB1N,CAAAA,CACAxQ,CAAAA,CACAge,EACAC,CAAAA,CACAjyB,CAAAA,CACAgf,CAAAA,CACAlW,CACF,CAAA,CAEA,OAAO+nB,GAAgBrf,CAAAA,EAAY,EAAE,CACvC,CACF,CAAC,CACH,CC7EA,IAAMqjB,EAAAA,CAAiB,IAAI,GAAA,CAK3B,SAASC,GAAclQ,CAAAA,CAAc,CACnC,IAAImQ,CAAAA,CAASF,EAAAA,CAAe,GAAA,CAAIjQ,CAAI,CAAA,CACpC,OAAKmQ,CAAAA,GACHA,CAAAA,CAAUryB,CAAAA,GAAU,CAClB,GAAGA,CAAAA,CACH,KAAA,CAAOA,CAAAA,CAAK,KAAA,CAAM,GAAA,CAAK+jB,CAAAA,EAASuO,GAAgBvO,CAAAA,CAAM7B,CAAI,CAAC,CAC7D,CAAA,CAAA,CACAiQ,GAAe,GAAA,CAAIjQ,CAAAA,CAAMmQ,CAAM,CAAA,CAAA,CAE1BA,CACT,CAeA,SAASC,EAAAA,CAAgBvO,CAAAA,CAAe7B,CAAAA,CAAuB,CAC7D,IAAMoP,CAAAA,CAASvN,EAAK,MAAA,CAAQgI,CAAAA,EAAUA,CAAAA,CAAM,KAAA,EAAO,SAAS,CAAA,CACtDxE,EAAOxD,CAAAA,CAAK,MAAA,CAAQgI,GAAU,CAACA,CAAAA,CAAM,OAAO,SAAS,CAAA,CAE3D,GAAI7J,CAAAA,GAAS,KAAA,CACX,OAAO,CAAC,GAAGoP,CAAAA,CAAQ,GAAG/J,CAAI,CAAA,CAG5B,IAAMgL,EAAY,CAAC,GAAGhL,CAAI,CAAA,CAAE,IAAA,CAC1B,CAAChmB,EAAGhG,CAAAA,GAAM,IAAI,KAAKA,CAAAA,CAAE,OAAO,EAAE,OAAA,EAAQ,CAAI,IAAI,IAAA,CAAKgG,CAAAA,CAAE,OAAO,EAAE,OAAA,EAChE,CAAA,CACA,OAAO,CAAC,GAAG+vB,EAAQ,GAAGiB,CAAS,CACjC,CAEO,SAASC,EAAAA,CACdtQ,EACAtP,CAAAA,CACAtV,CAAAA,CAAQ,GACRgf,CAAAA,CAAW,EAAA,CACX6Q,EAAU,IAAA,CACVsF,CAAAA,CAAkC,EAAC,CACnC,CACA,OAAO/H,gCAML,CACA,QAAA,CAAU1K,CAAAA,CAAU,KAAA,CAAM,WAAA,CAAYkC,CAAAA,CAAMtP,EAAKtV,CAAAA,CAAOgf,CAAQ,CAAA,CAChE,OAAA,CAAS,MAAO,CAAE,UAAAqO,CAAAA,CAAW,MAAA,CAAAvkB,CAAO,CAAA,GAAqD,CACvF,IAAIssB,CAAAA,CAAe9f,CAAAA,CACf+I,CAAAA,CAAO,cAAA,CAAe,IAAA,CAAMwB,CAAAA,EAAUA,EAAM,IAAA,CAAKvK,CAAG,CAAC,CAAA,GACvD8f,CAAAA,CAAe,EAAA,CAAA,CAGjB,IAAM5jB,CAAAA,CAAW,MAAMxB,CAAAA,CAAQ,yBAAA,CAA2B,CACxD,IAAA,CAAA4U,EACA,YAAA,CAAcyI,CAAAA,CAAU,OACxB,cAAA,CAAgBA,CAAAA,CAAU,SAC1B,KAAA,CAAArtB,CAAAA,CACA,GAAA,CAAKo1B,CAAAA,CACL,QAAA,CAAApW,CACF,EAAG,MAAA,CAAW,MAAA,CAAWlW,CAAM,CAAA,CAE/B,GAAI0I,CAAAA,EAAa,KACf,OAAO,EAAC,CAGV,GAAI,CAAC,KAAA,CAAM,QAAQA,CAAQ,CAAA,CACzB,MAAM,IAAI,KAAA,CACR,CAAA,gCAAA,EAAmC,OAAOA,CAAQ,CAAA,UAAA,EAAaoT,CAAI,CAAA,CACrE,CAAA,CAUF,OAAOiM,GAAgBrf,CAAmB,CAC5C,CAAA,CACA,MAAA,CAAQsjB,EAAAA,CAAclQ,CAAI,EAC1B,OAAA,CAAAiL,CAAAA,CACA,gBAAA,CAAkB,CAChB,MAAA,CAAQ,MAAA,CACR,SAAU,MACZ,CAAA,CACA,iBAAmBtC,CAAAA,EAAsB,CAMvC,IAAMqF,CAAAA,CAAOrF,CAAAA,GAAWA,CAAAA,CAAS,MAAA,CAAS,CAAC,CAAA,CAC3C,GAAKqF,CAAAA,CAIL,OAAO,CAAE,MAAA,CAAQA,CAAAA,CAAK,MAAA,CAAQ,SAAUA,CAAAA,CAAK,QAAS,CACxD,CACF,CAAC,CACH,CAEO,SAASyC,EAAAA,CACdzQ,EACAoN,CAAAA,CAAuB,EAAA,CACvBC,EAAyB,EAAA,CACzBjyB,CAAAA,CAAgB,EAAA,CAChBsV,CAAAA,CAAc,EAAA,CACd0J,CAAAA,CAAmB,GACnB6Q,CAAAA,CAAU,IAAA,CACV,CACA,OAAOpN,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,KAAA,CAAM,eAAA,CAAgBkC,CAAAA,CAAMoN,CAAAA,CAAcC,CAAAA,CAAgBjyB,EAAOsV,CAAAA,CAAK0J,CAAQ,EAClG,OAAA,CAAA6Q,CAAAA,CACA,QAAS,MAAO,CAAE,MAAA,CAAA/mB,CAAO,CAAA,CAAI,KAAc,CACzC,IAAIssB,CAAAA,CAAe9f,CAAAA,CACf+I,CAAAA,CAAO,cAAA,CAAe,KAAMwB,CAAAA,EAAUA,CAAAA,CAAM,IAAA,CAAKvK,CAAG,CAAC,CAAA,GACvD8f,EAAe,EAAA,CAAA,CAGjB,IAAM5jB,EAAW,MAAMugB,EAAAA,CACrBnN,EACAoN,CAAAA,CACAC,CAAAA,CACAjyB,CAAAA,CACAo1B,CAAAA,CACApW,CAAAA,CACAlW,CACF,EAEA,OAAO+nB,EAAAA,CAAgBrf,CAAAA,EAAY,EAAE,CACvC,CACF,CAAC,CACH,CCxJO,SAAS8jB,EAAAA,CACdthB,EACA2Q,CAAAA,CACA3kB,CAAAA,CAAQ,IACR,CACA,OAAOyiB,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,MAAM,OAAA,CAAQ1O,CAAAA,EAAY,EAAA,CAAIhU,CAAK,CAAA,CACvD,OAAA,CAAS,UACW,MAAMgQ,CAAAA,CAAQ,gCAAA,CAAkC,CAChEgE,CAAAA,EAAY2Q,CAAAA,CACZ,EACA3kB,CACF,CAAC,GAGE,MAAA,CACEnC,CAAAA,EACCA,EAAE,MAAA,GAAW8mB,CAAAA,EACb,CAAC9mB,CAAAA,CAAE,YAAA,CAAa,UAAA,CAAW,OAAO,CACtC,CAAA,CACC,GAAA,CAAKA,CAAAA,GAAO,CAAE,MAAA,CAAQA,EAAE,MAAA,CAAQ,QAAA,CAAUA,CAAAA,CAAE,QAAS,CAAA,CAAE,CAAA,CAE5D,QAAS,CAAC,CAACmW,CACb,CAAC,CACH,CCnCO,SAASuhB,EAAAA,CAA2BjR,EAAiBC,CAAAA,CAAmB,CAC7E,OAAO9B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,KAAA,CAAM,WAAA,CAAY4B,CAAAA,EAAU,EAAA,CAAIC,CAAAA,EAAY,EAAE,EAClE,OAAA,CAAS,SAAY,CACnB,GAAI,CAACD,CAAAA,EAAU,CAACC,CAAAA,CACd,OAAO,EAAC,CAGV,IAAM/S,CAAAA,CAAY,MAAMxB,CAAAA,CAAQ,gCAAA,CAAkC,CAACsU,CAAAA,CAAQC,CAAQ,CAAC,EAEpF,OAAO,KAAA,CAAM,OAAA,CAAQ/S,CAAQ,CAAA,CAAIA,CAAAA,CAAW,EAC9C,CAAA,CACA,QAAS,CAAC,CAAC8S,GAAU,CAAC,CAACC,CACzB,CAAC,CACH,CCjBO,SAASiR,GAAyB7Q,CAAAA,CAAoCta,CAAAA,CAAe,CAC1F,OAAOoY,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,KAAA,CAAM,UAAUiC,CAAc,CAAA,CAClD,QAAS,SAAY,CACnB,GAAI,CAACA,CAAAA,EAAkB,CAACta,EACtB,OAAO,EAAC,CAIV,IAAMmH,CAAAA,CAAW,MADAwQ,GAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,wBAAA,CAA0B,CAChF,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAAhU,CACF,CAAC,CACH,CAAC,CAAA,CAED,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,2BAAA,EAA8BA,CAAAA,CAAS,MAAM,CAAA,CAAE,EAGjE,OAAOA,CAAAA,CAAS,IAAA,EAClB,CAAA,CACA,OAAA,CAAS,CAAC,CAACmT,CAAAA,EAAkB,CAAC,CAACta,CACjC,CAAC,CACH,CAEO,SAASorB,EAAAA,CACd9Q,CAAAA,CACAta,CAAAA,CACArK,CAAAA,CAAgB,GAChB,CACA,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,MAAM,iBAAA,CAAkBiC,CAAAA,CAAgB3kB,CAAK,CAAA,CACjE,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqtB,CAAAA,CAAY,CAAE,CAAA,GAAM,CACpC,GAAI,CAAC1I,CAAAA,EAAkB,CAACta,CAAAA,CACtB,OAAO,CACL,KAAM,EAAC,CACP,UAAA,CAAY,CACV,KAAA,CAAO,CAAA,CACP,MAAArK,CAAAA,CACA,MAAA,CAAQ,EACR,QAAA,CAAU,KACZ,CACF,CAAA,CAIF,IAAMwR,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B,GAAG3D,CAAAA,CAAO,cAAc,CAAA,6CAAA,EAAgDgP,CAAS,CAAA,OAAA,EAAUrtB,CAAK,GAChG,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CACnB,KAAAqK,CACF,CAAC,CACH,CACF,CAAA,CAEA,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,2BAAA,EAA8BA,EAAS,MAAM,CAAA,CAAE,CAAA,CAGjE,IAAM8b,CAAAA,CAAO,MAAM9b,EAAS,IAAA,EAAK,CACjC,OAAO2Q,EAAAA,CAAqCmL,CAAAA,CAAMttB,CAAK,CACzD,CAAA,CACA,gBAAA,CAAkB,CAAA,CAClB,gBAAA,CAAmButB,CAAAA,EAAa,CAC9B,GAAIA,CAAAA,CAAS,UAAA,CAAW,QAAA,CACtB,OAAOA,CAAAA,CAAS,UAAA,CAAW,OAASA,CAAAA,CAAS,UAAA,CAAW,KAG5D,CAAA,CACA,OAAA,CAAS,CAAC,CAAC5I,CAAAA,EAAkB,CAAC,CAACta,CACjC,CAAC,CACH,CC/EO,SAASqrB,EAAAA,CAAsB/Q,CAAAA,CAAoCta,CAAAA,CAAe,CACvF,OAAOoY,wBAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,MAAA,CAAOiC,CAAc,EAC/C,OAAA,CAAS,SAAY,CACnB,GAAI,CAACA,GAAkB,CAACta,CAAAA,CACtB,OAAO,EAAC,CAIV,IAAMmH,EAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,qBAAA,CAAuB,CAC7E,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,UAAU,CACnB,IAAA,CAAAhU,CACF,CAAC,CACH,CAAC,CAAA,CAED,GAAI,CAACmH,EAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,wBAAA,EAA2BA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAG9D,OAAOA,CAAAA,CAAS,IAAA,EAClB,EACA,OAAA,CAAS,CAAC,CAACmT,CAAAA,EAAkB,CAAC,CAACta,CACjC,CAAC,CACH,CAEO,SAASsrB,EAAAA,CACdhR,EACAta,CAAAA,CACArK,CAAAA,CAAgB,EAAA,CAChB,CACA,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,KAAA,CAAM,cAAA,CAAeiC,CAAAA,CAAgB3kB,CAAK,EAC9D,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqtB,CAAAA,CAAY,CAAE,CAAA,GAAM,CACpC,GAAI,CAAC1I,CAAAA,EAAkB,CAACta,EACtB,OAAO,CACL,IAAA,CAAM,EAAC,CACP,UAAA,CAAY,CACV,KAAA,CAAO,CAAA,CACP,KAAA,CAAArK,CAAAA,CACA,MAAA,CAAQ,CAAA,CACR,SAAU,KACZ,CACF,EAIF,IAAMwR,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B,CAAA,EAAG3D,CAAAA,CAAO,cAAc,CAAA,0CAAA,EAA6CgP,CAAS,CAAA,OAAA,EAAUrtB,CAAK,CAAA,CAAA,CAC7F,CACE,MAAA,CAAQ,MAAA,CACR,QAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,UAAU,CACnB,IAAA,CAAAqK,CACF,CAAC,CACH,CACF,CAAA,CAEA,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,wBAAA,EAA2BA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAG9D,IAAM8b,CAAAA,CAAO,MAAM9b,CAAAA,CAAS,IAAA,EAAK,CAGjC,OAAO2Q,GAAkCmL,CAAAA,CAAMttB,CAAK,CACtD,CAAA,CACA,gBAAA,CAAkB,CAAA,CAClB,iBAAmButB,CAAAA,EAAa,CAC9B,GAAIA,CAAAA,CAAS,UAAA,CAAW,QAAA,CACtB,OAAOA,CAAAA,CAAS,UAAA,CAAW,MAAA,CAASA,CAAAA,CAAS,UAAA,CAAW,KAG5D,EACA,OAAA,CAAS,CAAC,CAAC5I,CAAAA,EAAkB,CAAC,CAACta,CACjC,CAAC,CACH,CCjFA,eAAeurB,EAAAA,CAAgBvrB,CAAAA,CAAgD,CAE7E,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,eAAiB,qBAAA,CAAuB,CAC7E,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAAhU,CACF,CAAC,CACH,CAAC,CAAA,CAED,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,2BAA2BA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAG9D,OAAOA,CAAAA,CAAS,MAClB,CAEO,SAASqkB,EAAAA,CAAsB7hB,CAAAA,CAAmB3J,EAAe,CACtE,OAAOoY,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,MAAM,MAAA,CAAO1O,CAAQ,CAAA,CACzC,OAAA,CAAS,SACH,CAACA,GAAY,CAAC3J,CAAAA,CACT,EAAC,CAEHurB,EAAAA,CAAgBvrB,CAAI,EAE7B,OAAA,CAAS,CAAC,CAAC2J,CAAAA,EAAY,CAAC,CAAC3J,CAC3B,CAAC,CACH,CAEO,SAASyrB,EAAAA,CAA6BnR,EAAoCta,CAAAA,CAAe,CAC9F,OAAOoY,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,KAAA,CAAM,aAAA,CAAciC,CAAc,CAAA,CACtD,OAAA,CAAS,SACH,CAACA,CAAAA,EAAkB,CAACta,EACf,EAAC,CAEHurB,GAAgBvrB,CAAI,CAAA,CAE7B,OAAA,CAAS,CAAC,CAACsa,CAAAA,EAAkB,CAAC,CAACta,CACjC,CAAC,CACH,CAEO,SAAS0rB,GACd/hB,CAAAA,CACA3J,CAAAA,CACArK,CAAAA,CAAgB,EAAA,CAChB,CACA,OAAOotB,gCAAqB,CAC1B,QAAA,CAAU1K,EAAU,KAAA,CAAM,cAAA,CAAe1O,EAAUhU,CAAK,CAAA,CACxD,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqtB,EAAY,CAAE,CAAA,GAAM,CACpC,GAAI,CAACrZ,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,OAAO,CACL,IAAA,CAAM,EAAC,CACP,WAAY,CACV,KAAA,CAAO,EACP,KAAA,CAAArK,CAAAA,CACA,OAAQ,CAAA,CACR,QAAA,CAAU,KACZ,CACF,CAAA,CAIF,IAAMwR,EAAW,MADAwQ,CAAAA,EAAc,CAE7B,CAAA,EAAG3D,CAAAA,CAAO,cAAc,6CAA6CgP,CAAS,CAAA,OAAA,EAAUrtB,CAAK,CAAA,CAAA,CAC7F,CACE,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CACnB,IAAA,CAAAqK,CACF,CAAC,CACH,CACF,CAAA,CAEA,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,wBAAA,EAA2BA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAG9D,IAAM8b,CAAAA,CAAO,MAAM9b,EAAS,IAAA,EAAK,CACjC,OAAO2Q,EAAAA,CAAsCmL,CAAAA,CAAMttB,CAAK,CAC1D,CAAA,CACA,gBAAA,CAAkB,EAClB,gBAAA,CAAmButB,CAAAA,EAAa,CAC9B,GAAIA,CAAAA,CAAS,UAAA,CAAW,SACtB,OAAOA,CAAAA,CAAS,UAAA,CAAW,MAAA,CAASA,CAAAA,CAAS,UAAA,CAAW,KAG5D,CAAA,CACA,OAAA,CAAS,CAAC,CAACvZ,CAAAA,EAAY,CAAC,CAAC3J,CAC3B,CAAC,CACH,CC/FO,SAAS2rB,EAAAA,CAA8B1R,CAAAA,CAAgBC,CAAAA,CAAkBO,EAAW,KAAA,CAAO,CAChG,OAAOrC,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,KAAA,CAAM,cAAA,CAAe4B,EAAQC,CAAAA,CAAUO,CAAQ,EACnE,OAAA,CAAS,MAAO,CAAE,MAAA,CAAAhc,CAAO,CAAA,GAAM,CAC7B,IAAM0I,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,cAAA,CAAiB,+BAAgC,CACnF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CACnB,OAAAiG,CAAAA,CACA,QAAA,CAAAC,CAAAA,CACA,QAAA,CAAUO,CAAAA,CAAW,GAAA,CAAM,EAC7B,CAAC,CAAA,CACD,MAAA,CAAAhc,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,oCAAoCA,CAAAA,CAAS,MAAM,EAAE,CAAA,CAGvE,OAAOA,EAAS,IAAA,EAClB,CAAA,CACA,OAAA,CAAS,CAAC,CAAC8S,GAAU,CAAC,CAACC,CACzB,CAAC,CACH,CCzBA,SAAS0R,EAAAA,CAAc3R,CAAAA,CAAgBC,EAA0B,CAC/D,IAAM2R,EAAc5R,CAAAA,EAAQ,IAAA,GACtB6M,CAAAA,CAAgB5M,CAAAA,EAAU,IAAA,EAAK,CAErC,GAAI,CAAC2R,GAAe,CAAC/E,CAAAA,CACnB,MAAM,IAAI,KAAA,CAAM,sDAAsD,EAIxE,IAAMgF,CAAAA,CAAmBD,CAAAA,CAAY,OAAA,CAAQ,KAAA,CAAO,EAAE,EAChDE,CAAAA,CAAqBjF,CAAAA,CAAc,QAAQ,MAAA,CAAQ,EAAE,EAE3D,GAAI,CAACgF,CAAAA,EAAoB,CAACC,CAAAA,CACxB,MAAM,IAAI,KAAA,CAAM,6EAA6E,CAAA,CAG/F,OAAO,CAAA,CAAA,EAAID,CAAgB,IAAIC,CAAkB,CAAA,CACnD,CAQO,SAASC,EAAAA,CAA4B/R,CAAAA,CAAgBC,EAAkB,CAC5E,IAAM4M,CAAAA,CAAgB5M,CAAAA,EAAU,IAAA,EAAK,CAC/B2R,EAAc5R,CAAAA,EAAQ,IAAA,EAAK,CAC3BgS,CAAAA,CACJ,CAAC,CAACJ,GAAe,CAAC,CAAC/E,CAAAA,EAAiBA,CAAAA,GAAkB,WAAA,CAElD9M,CAAAA,CAAYiS,EAAUL,EAAAA,CAAcC,CAAAA,CAAa/E,CAAa,CAAA,CAAI,EAAA,CAExE,OAAO1O,wBAAa,CAClB,QAAA,CAAUC,EAAU,KAAA,CAAM,YAAA,CAAa2B,CAAS,CAAA,CAChD,OAAA,CAAS,MAAO,CAAE,MAAA,CAAAvb,CAAO,IAAM,CAC7B,IAAM0I,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,eAAiB,8BAAA,CAAgC,CACnF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,MAAA,CAAAiG,CAAAA,CACA,QAAA,CAAU6M,CAAAA,EAAiB,EAC7B,CAAC,EACD,MAAA,CAAAroB,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,EAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,iCAAA,EAAoCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGvE,OAAOA,CAAAA,CAAS,IAAA,EAClB,CAAA,CACA,MAAA,CAAS+kB,CAAAA,EAAiC,CACxC,GAAI,CAACA,GAAS,IAAA,GAAO,CAAC,CAAA,CACpB,OAAO,IAAA,CAET,GAAM,CAAE,IAAA,CAAAhoB,CAAAA,CAAM,KAAA,CAAAioB,CAAAA,CAAO,IAAA,CAAArG,CAAK,EAAIoG,CAAAA,CAAQ,IAAA,CAAK,CAAC,CAAA,CAC5C,OAAO,CACL,IAAA,CAAAhoB,CAAAA,CACA,KAAA,CAAAioB,CAAAA,CACA,IAAA,CAAArG,CACF,CACF,CAAA,CACA,OAAA,CAASmG,CACX,CAAC,CACH,CCpDO,SAASG,EAAAA,CAAwBnS,CAAAA,CAAgBC,EAAkBmS,CAAAA,CAAY,IAAA,CAAM,CAC1F,OAAOjU,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,IAAA,CAAK4B,CAAAA,CAAQC,CAAQ,EAC/C,OAAA,CAAS,SAAY,CACnB,IAAMrT,CAAAA,CAAO,CAAA,uBAAA,EAA0B,mBAAmBoT,CAAM,CAAC,CAAA,CAAA,EAAI,kBAAA,CAAmBC,CAAQ,CAAC,GAC3F/S,CAAAA,CAAW,MAAM,MAAM6M,CAAAA,CAAO,cAAA,CAAiBnN,EAAM,CACzD,MAAA,CAAQ,KAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CAAC,CAAA,CAED,GAAI,CAACM,CAAAA,CAAS,GACZ,MAAM,IAAI,KAAA,CAAM,CAAA,2BAAA,EAA8BA,CAAAA,CAAS,MAAM,EAAE,CAAA,CAGjE,OAAOA,EAAS,IAAA,EAClB,EACA,OAAA,CAAS,CAAC,CAAC8S,CAAAA,EAAU,CAAC,CAACC,GAAYmS,CAAAA,CACnC,SAAA,CAAW,EAAA,CAAK,GAClB,CAAC,CACH,CClCA,SAASC,EAAAA,CAAmBlI,CAAAA,CAAwB9P,CAAAA,CAAyB,CAC3E,OAAO,CACL,GAAG8P,CAAAA,CACH,EAAA,CAAIA,CAAAA,CAAM,EAAA,EAAMA,CAAAA,CAAM,OAAA,CAEtB,QAASA,CAAAA,CAAM,OAAA,EAAYA,CAAAA,CAA4C,SAAA,CACvE,IAAA,CAAA9P,CACF,CACF,CAEA,SAASiY,EAAAA,CAAgBnI,CAAAA,CAA+B,CACtD,OAAO,CACL,GAAGA,CAAAA,CACH,GAAIA,CAAAA,CAAM,EAAA,EAAMA,EAAM,OACxB,CACF,CAEO,SAASoI,EAAAA,CACdpI,CAAAA,CAIA9P,EACkB,CAClB,GAAI,CAAC8P,CAAAA,CACH,OAAO,IAAA,CAGT,IAAMqI,CAAAA,CAAkBrI,CAAAA,CAAM,SAAA,EAAaA,CAAAA,CACrCsI,CAAAA,CAAYJ,EAAAA,CAAmBG,EAAiBnY,CAAI,CAAA,CAEpDqY,EAASvI,CAAAA,CAAM,MAAA,CAASmI,GAAgBnI,CAAAA,CAAM,MAAM,CAAA,CAAI,MAAA,CAE9D,OAAO,CACL,GAAGA,CAAAA,CACH,EAAA,CAAIA,CAAAA,CAAM,EAAA,EAAMA,CAAAA,CAAM,OAAA,CAItB,QAASA,CAAAA,CAAM,OAAA,EAAYA,CAAAA,CAA4C,SAAA,CAIvE,mBAAA,CAAqBA,CAAAA,CAAM,qBAAuB,iBAAA,CAClD,oBAAA,CAAsBA,EAAM,oBAAA,EAAwB,WAAA,CACpD,oBAAqBA,CAAAA,CAAM,mBAAA,EAAuB,WAAA,CAClD,oBAAA,CAAsBA,CAAAA,CAAM,oBAAA,EAAwB,YACpD,IAAA,CAAA9P,CAAAA,CACA,SAAA,CAAAoY,CAAAA,CACA,MAAA,CAAAC,CACF,CACF,CAEO,SAASC,EAAAA,CAAa5L,CAAAA,CAAqB,CAChD,OAAO,MAAM,OAAA,CAAQA,CAAC,EAAKA,CAAAA,CAAgB,EAC7C,CAEA,eAAsB6L,EAAAA,CACpBH,CAAAA,CACkB,CAClB,IAAMtU,EAAewR,EAAAA,CAA2B8C,CAAAA,CAAAA,SAAAA,CAA8B,IAAI,CAAA,CAC5EI,CAAAA,CAAqB,MAAM9Y,EAAO,WAAA,CAAY,UAAA,CAAWoE,CAAY,CAAA,CACrE2U,CAAAA,CAAkBH,EAAAA,CAAaE,CAAkB,CAAA,CAEvD,GAAIC,EAAgB,MAAA,EAAU,CAAA,CAC5B,OAAO,EAAC,CAGV,IAAMC,CAAAA,CAAkBD,CAAAA,CAAgB,MAAA,CACtC,CAAC,CAAE,aAAA,CAAAE,CAAAA,CAAe,eAAA,CAAAC,CAAgB,CAAA,GAChCD,IAAkBP,CAAAA,CAAU,MAAA,EAAUQ,CAAAA,GAAoBR,CAAAA,CAAU,QACxE,CAAA,CAEA,OAAIM,CAAAA,CAAgB,MAAA,GAAW,EACtB,EAAC,CAGWA,EAAgB,MAAA,CAAQ9xB,CAAAA,EAAS,CAACA,CAAAA,CAAK,KAAA,EAAO,IAAI,CAGzE,CAEO,SAASiyB,EAAAA,CACdC,CAAAA,CACAV,CAAAA,CACApY,CAAAA,CACa,CACb,OAAI8Y,CAAAA,CAAM,MAAA,GAAW,CAAA,CACZ,EAAC,CAGHA,EACJ,GAAA,CAAKlyB,CAAAA,EAAS,CACb,IAAMyxB,CAAAA,CAASS,EAAM,IAAA,CAClB,CAAA,EACC,CAAA,CAAE,MAAA,GAAWlyB,CAAAA,CAAK,aAAA,EAClB,EAAE,QAAA,GAAaA,CAAAA,CAAK,eAAA,EACpB,CAAA,CAAE,MAAA,GAAWoZ,CACjB,EAEA,OAAO,CACL,GAAGpZ,CAAAA,CACH,EAAA,CAAIA,CAAAA,CAAK,QACT,IAAA,CAAAoZ,CAAAA,CACA,SAAA,CAAAoY,CAAAA,CACA,MAAA,CAAAC,CACF,CACF,CAAC,CAAA,CACA,MAAA,CAAQvI,CAAAA,EAAUA,CAAAA,CAAM,SAAA,CAAU,UAAYA,CAAAA,CAAM,OAAO,CAAA,CAC3D,IAAA,CACC,CAACxqB,CAAAA,CAAGhG,IAAM,IAAI,IAAA,CAAKA,CAAAA,CAAE,OAAO,CAAA,CAAE,OAAA,GAAY,IAAI,IAAA,CAAKgG,EAAE,OAAO,CAAA,CAAE,SAChE,CACJ,CCjHA,IAAMyzB,EAAAA,CAAqB,EAAA,CA2C3B,SAASC,EAAAA,CAAgBrvB,CAAAA,CAA+C,CACtE,OAAO,CACL,UAAA,CAAYA,EAAO,UAAA,EAAc,EAAC,CAClC,GAAA,CAAKA,CAAAA,CAAO,GAAA,EAAK,MAAK,EAAK,MAAA,CAC3B,UAAWA,CAAAA,CAAO,SAAA,EAAW,MAAK,CAAE,WAAA,EAAY,EAAK,MAAA,CACrD,MAAA,CAAQA,CAAAA,CAAO,QAAQ,IAAA,EAAK,CAAE,WAAA,EAAY,EAAK,MAAA,CAC/C,QAAA,CAAUA,EAAO,QAAA,EAAU,IAAA,EAAK,CAAE,WAAA,EAAY,EAAK,MAAA,CACnD,MAAOA,CAAAA,CAAO,KAAA,EAASovB,EACzB,CACF,CAEA,eAAeE,EAAAA,CACb,CAAE,UAAA,CAAAC,CAAAA,CAAY,GAAA,CAAAviB,CAAAA,CAAK,UAAA2P,CAAAA,CAAW,MAAA,CAAAX,CAAAA,CAAQ,QAAA,CAAAtF,CAAAA,CAAU,KAAA,CAAAhf,CAAM,CAAA,CACtD83B,CAAAA,CACAhvB,CAAAA,CAC2B,CAC3B,IAAMmI,CAAAA,CAAUsN,sBAAc,mBAAA,EAAoB,CAC5Cxd,EAAM,IAAI,GAAA,CAAI,0BAA2BkQ,CAAO,CAAA,CACtDlQ,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,OAAA,CAAS,OAAOf,CAAK,CAAC,CAAA,CACvC83B,CAAAA,EACF/2B,CAAAA,CAAI,YAAA,CAAa,IAAI,QAAA,CAAU+2B,CAAM,CAAA,CAEvCD,CAAAA,CAAW,OAAA,CAASd,CAAAA,EAAch2B,EAAI,YAAA,CAAa,MAAA,CAAO,YAAag2B,CAAS,CAAC,EAC7EzhB,CAAAA,EACFvU,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,KAAA,CAAOuU,CAAG,EAE7B2P,CAAAA,EACFlkB,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,WAAA,CAAakkB,CAAS,EAEzCX,CAAAA,EACFvjB,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,QAAA,CAAUujB,CAAM,EAEnCtF,CAAAA,EACFje,CAAAA,CAAI,aAAa,GAAA,CAAI,UAAA,CAAYie,CAAQ,CAAA,CAG3C,IAAMxN,CAAAA,CAAW,MAAM,KAAA,CAAMzQ,CAAAA,CAAI,UAAS,CAAG,CAC3C,MAAA,CAAQ,KAAA,CACR,MAAA,CAAA+H,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,4BAAA,EAA+BA,EAAS,MAAM,CAAA,CAAE,EAGlE,IAAM9O,CAAAA,CAAQ,MAAM8O,CAAAA,CAAS,IAAA,EAAK,CAElC,OAAI,CAAC,KAAA,CAAM,OAAA,CAAQ9O,CAAI,CAAA,EAAKA,CAAAA,CAAK,SAAW,CAAA,CACnC,EAAC,CAGHA,CAAAA,CACJ,GAAA,CAAKq1B,CAAAA,EAAQ,CACZ,IAAMtJ,CAAAA,CAAQoI,EAAAA,CAA0BkB,CAAAA,CAAKA,CAAAA,CAAI,IAAA,EAAQ,EAAE,CAAA,CAC3D,OAAKtJ,CAAAA,CAGE,CAAE,GAAGA,CAAAA,CAAO,QAASsJ,CAAAA,CAAI,OAAQ,CAAA,CAF/B,IAGX,CAAC,CAAA,CACA,OAAQtJ,CAAAA,EAAmC,CAAA,CAAQA,CAAM,CAC9D,CAWO,SAASuJ,GAAyB1vB,CAAAA,CAA0B,GAAI,CACrE,IAAM4lB,EAAayJ,EAAAA,CAAgBrvB,CAAM,CAAA,CACnC,CAAE,UAAA,CAAAuvB,CAAAA,CAAY,IAAAviB,CAAAA,CAAK,SAAA,CAAA2P,CAAAA,CAAW,MAAA,CAAAX,CAAAA,CAAQ,QAAA,CAAAtF,EAAU,KAAA,CAAAhf,CAAM,CAAA,CAAIkuB,CAAAA,CAEhE,OAAOd,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,MAAM,SAAA,CAAU,CAAE,WAAAmV,CAAAA,CAAY,GAAA,CAAAviB,CAAAA,CAAK,SAAA,CAAA2P,CAAAA,CAAW,MAAA,CAAAX,EAAQ,QAAA,CAAAtF,CAAAA,CAAU,KAAA,CAAAhf,CAAM,CAAC,CAAA,CAC3F,iBAAkB,MAAA,CAElB,OAAA,CAAS,CAAC,CAAE,SAAA,CAAAqtB,CAAAA,CAAW,OAAAvkB,CAAO,CAAA,GAAM8uB,GAAmB1J,CAAAA,CAAYb,CAAAA,CAAWvkB,CAAM,CAAA,CAMpF,gBAAA,CAAmBykB,CAAAA,EAA+B,CAChD,GAAI,EAAAA,EAAS,MAAA,CAASvtB,CAAAA,CAAAA,CAGtB,OAAOutB,CAAAA,CAASA,CAAAA,CAAS,MAAA,CAAS,CAAC,CAAA,EAAG,OACxC,CACF,CAAC,CACH,CAOO,SAAS0K,EAAAA,CAA+B3vB,CAAAA,CAA0B,EAAC,CAAG,CAC3E,IAAM4lB,CAAAA,CAAayJ,EAAAA,CAAgBrvB,CAAM,CAAA,CACnC,CAAE,UAAA,CAAAuvB,EAAY,GAAA,CAAAviB,CAAAA,CAAK,SAAA,CAAA2P,CAAAA,CAAW,MAAA,CAAAX,CAAAA,CAAQ,SAAAtF,CAAAA,CAAU,KAAA,CAAAhf,CAAM,CAAA,CAAIkuB,CAAAA,CAEhE,OAAOzL,wBAAa,CAClB,QAAA,CAAU,CACR,GAAGC,CAAAA,CAAU,MAAM,SAAA,CAAU,CAAE,UAAA,CAAAmV,CAAAA,CAAY,GAAA,CAAAviB,CAAAA,CAAK,UAAA2P,CAAAA,CAAW,MAAA,CAAAX,CAAAA,CAAQ,QAAA,CAAAtF,CAAAA,CAAU,KAAA,CAAAhf,CAAM,CAAC,CAAA,CACpF,QACF,CAAA,CACA,SAAA,CAAW,CAAA,CACX,QAAS,CAAC,CAAE,OAAA8I,CAAO,CAAA,GAAM8uB,GAAmB1J,CAAAA,CAAY,MAAA,CAAWplB,CAAM,CAC3E,CAAC,CACH,CC1JA,IAAM4uB,EAAAA,CAAqB,GAmD3B,SAASC,EAAAA,CAAgBrvB,CAAAA,CAAkD,CACzE,OAAO,CACL,WAAYA,CAAAA,CAAO,UAAA,EAAc,EAAC,CAClC,GAAA,CAAKA,EAAO,GAAA,EAAK,IAAA,EAAK,EAAK,MAAA,CAC3B,MAAA,CAAQA,CAAAA,CAAO,QAAQ,IAAA,EAAK,CAAE,WAAA,EAAY,EAAK,MAAA,CAC/C,QAAA,CAAUA,EAAO,QAAA,EAAU,IAAA,EAAK,CAAE,WAAA,EAAY,EAAK,MAAA,CACnD,MAAOA,CAAAA,CAAO,KAAA,EAASovB,EACzB,CACF,CAEA,eAAeQ,GACb,CAAE,UAAA,CAAAL,CAAAA,CAAY,GAAA,CAAAviB,CAAAA,CAAK,MAAA,CAAAgP,EAAQ,QAAA,CAAAtF,CAAAA,CAAU,KAAA,CAAAhf,CAAM,CAAA,CAC3C83B,CAAAA,CACAhvB,EAC4B,CAC5B,IAAMmI,CAAAA,CAAUsN,qBAAAA,CAAc,mBAAA,EAAoB,CAC5Cxd,EAAM,IAAI,GAAA,CAAI,4BAA6BkQ,CAAO,CAAA,CACxDlQ,EAAI,YAAA,CAAa,GAAA,CAAI,OAAA,CAAS,MAAA,CAAOf,CAAK,CAAC,EACvC83B,CAAAA,EACF/2B,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,QAAA,CAAU+2B,CAAM,EAEvCD,CAAAA,CAAW,OAAA,CAASd,CAAAA,EAAch2B,CAAAA,CAAI,YAAA,CAAa,MAAA,CAAO,YAAag2B,CAAS,CAAC,EAC7EzhB,CAAAA,EACFvU,CAAAA,CAAI,aAAa,GAAA,CAAI,KAAA,CAAOuU,CAAG,CAAA,CAE7BgP,CAAAA,EACFvjB,CAAAA,CAAI,aAAa,GAAA,CAAI,QAAA,CAAUujB,CAAM,CAAA,CAEnCtF,CAAAA,EACFje,CAAAA,CAAI,aAAa,GAAA,CAAI,UAAA,CAAYie,CAAQ,CAAA,CAG3C,IAAMxN,CAAAA,CAAW,MAAM,KAAA,CAAMzQ,CAAAA,CAAI,UAAS,CAAG,CAC3C,OAAQ,KAAA,CACR,MAAA,CAAA+H,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,6BAAA,EAAgCA,EAAS,MAAM,CAAA,CAAE,CAAA,CAGnE,IAAM9O,CAAAA,CAAQ,MAAM8O,EAAS,IAAA,EAAK,CAElC,OAAI,CAAC,KAAA,CAAM,OAAA,CAAQ9O,CAAI,CAAA,EAAKA,CAAAA,CAAK,MAAA,GAAW,CAAA,CACnC,EAAC,CAGHA,EACJ,GAAA,CAAKq1B,CAAAA,EAAQ,CACZ,IAAMtJ,CAAAA,CAAQoI,EAAAA,CAA0BkB,EAAKA,CAAAA,CAAI,IAAA,EAAQ,EAAE,CAAA,CAC3D,OAAKtJ,CAAAA,CAGE,CACL,GAAGA,CAAAA,CAIH,aAAcA,CAAAA,CAAM,YAAA,EAAgB,EAAC,CACrC,KAAA,CAAOsJ,CAAAA,CAAI,KAAA,CACX,OAAA,CAASA,CAAAA,CAAI,OACf,CAAA,CAVS,IAWX,CAAC,CAAA,CACA,MAAA,CAAQtJ,CAAAA,EAAoC,EAAQA,CAAM,CAC/D,CAUO,SAAS0J,EAAAA,CAA0B7vB,CAAAA,CAA2B,EAAC,CAAG,CACvE,IAAM4lB,CAAAA,CAAayJ,EAAAA,CAAgBrvB,CAAM,CAAA,CACnC,CAAE,UAAA,CAAAuvB,CAAAA,CAAY,GAAA,CAAAviB,CAAAA,CAAK,OAAAgP,CAAAA,CAAQ,QAAA,CAAAtF,CAAAA,CAAU,KAAA,CAAAhf,CAAM,CAAA,CAAIkuB,EAErD,OAAOd,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,KAAA,CAAM,WAAW,CAAE,UAAA,CAAAmV,EAAY,GAAA,CAAAviB,CAAAA,CAAK,OAAAgP,CAAAA,CAAQ,QAAA,CAAAtF,CAAAA,CAAU,KAAA,CAAAhf,CAAM,CAAC,EACjF,gBAAA,CAAkB,MAAA,CAElB,OAAA,CAAS,CAAC,CAAE,SAAA,CAAAqtB,EAAW,MAAA,CAAAvkB,CAAO,CAAA,GAAMovB,EAAAA,CAAoBhK,CAAAA,CAAYb,CAAAA,CAAWvkB,CAAM,CAAA,CAIrF,gBAAA,CAAmBykB,CAAAA,EAAgC,CACjD,GAAI,EAAAA,EAAS,MAAA,CAASvtB,CAAAA,CAAAA,CAGtB,OAAOutB,CAAAA,CAASA,CAAAA,CAAS,MAAA,CAAS,CAAC,CAAA,EAAG,OACxC,CACF,CAAC,CACH,CC5IA,IAAM6K,EAAAA,CAA8B,CAAA,CAC9BC,GAAyB,EAAA,CAM/B,eAAeC,GACb3Z,CAAAA,CACA0O,CAAAA,CAC+B,CAC/B,IAAI5I,CAAAA,CAAc4I,CAAAA,EAAW,MAAA,CACzB3I,CAAAA,CAAgB2I,CAAAA,EAAW,SAC3BkL,CAAAA,CAAoB,CAAA,CACpBC,CAAAA,CAAkBnL,CAAAA,EAAW,OAAA,CAEjC,KAAOkL,EAAoBF,EAAAA,EAAwB,CASjD,IAAMI,CAAAA,CAAgC,CACpC,IAAA,CAAM,QACN,OAAA,CAAS9Z,CAAAA,CACT,MAAOyZ,EAAAA,CACP,GAAI3T,EAAc,CAAE,YAAA,CAAcA,CAAY,CAAA,CAAI,EAAC,CACnD,GAAIC,CAAAA,CAAgB,CAAE,cAAA,CAAgBA,CAAc,CAAA,CAAI,EAC1D,CAAA,CAEImT,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAc,MAAM7nB,EAAQ,0BAAA,CAA4ByoB,CAAS,EACnE,CAAA,MAAS7qB,CAAAA,CAAK,CACZ,OAAA,OAAA,CAAQ,KAAA,CAAM,2CAAA,CAA6CA,CAAG,CAAA,CACvD,IACT,CAEA,GAAI,CAACiqB,CAAAA,EAAcA,CAAAA,CAAW,MAAA,GAAW,CAAA,CACvC,OAAO,IAAA,CAGT,IAAMa,CAAAA,CAAuBb,CAAAA,CAAW,GAAA,CAAKd,CAAAA,GAC3CA,EAAU,EAAA,CAAKA,CAAAA,CAAU,QACzBA,CAAAA,CAAU,IAAA,CAAOpY,EACVoY,CAAAA,CACR,CAAA,CAED,IAAA,IAAWA,CAAAA,IAAa2B,CAAAA,CAAsB,CAC5C,GAAIF,CAAAA,EAAmBzB,CAAAA,CAAU,OAAA,GAAYyB,CAAAA,CAAiB,CAC5DA,CAAAA,CAAkB,OAClB,QACF,CAIA,GAFAD,CAAAA,EAAqB,CAAA,CAEjBxB,CAAAA,CAAU,OAAO,IAAA,CAAM,CACzBtS,EAAcsS,CAAAA,CAAU,MAAA,CACxBrS,EAAgBqS,CAAAA,CAAU,QAAA,CAC1B,QACF,CAEA,IAAI4B,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAe,MAAMzB,EAAAA,CAAgCH,CAAS,EAChE,OAASnpB,CAAAA,CAAK,CAMZ,OAAA,CAAQ,KAAA,CAAM,wCAAA,CAA0CA,CAAG,EAC3D6W,CAAAA,CAAcsS,CAAAA,CAAU,OACxBrS,CAAAA,CAAgBqS,CAAAA,CAAU,SAC1B,QACF,CAEA,GAAI4B,CAAAA,CAAa,MAAA,GAAW,CAAA,CAAG,CAC7BlU,CAAAA,CAAcsS,CAAAA,CAAU,MAAA,CACxBrS,CAAAA,CAAgBqS,CAAAA,CAAU,QAAA,CAC1B,QACF,CAEA,OAAO,CACL,OAAA,CAASS,EAAAA,CAA4BmB,CAAAA,CAAc5B,EAAWpY,CAAI,CACpE,CACF,CAEA,IAAMia,EAAgBF,CAAAA,CAAqBA,CAAAA,CAAqB,MAAA,CAAS,CAAC,CAAA,CAE1E,GAAI,CAACE,CAAAA,CACH,OAAO,IAAA,CAGTnU,CAAAA,CAAcmU,CAAAA,CAAc,MAAA,CAC5BlU,EAAgBkU,CAAAA,CAAc,SAChC,CAEA,OAAO,IACT,CAMO,SAASC,EAAAA,CAA2Bla,CAAAA,CAAc,CACvD,OAAOyO,+BAAAA,CAML,CACA,SAAU1K,CAAAA,CAAU,KAAA,CAAM,WAAA,CAAY/D,CAAI,CAAA,CAC1C,gBAAA,CAAkB,OAElB,OAAA,CAAS,MAAO,CAAE,SAAA,CAAA0O,CAAU,CAAA,GAAkC,CAC5D,IAAMlvB,CAAAA,CAAS,MAAMm6B,EAAAA,CAAW3Z,CAAAA,CAAM0O,CAAS,EAC/C,OAAKlvB,CAAAA,CAEEA,EAAO,OAAA,CAFM,EAGtB,CAAA,CAEA,gBAAA,CAAmBovB,CAAAA,EAAqCA,CAAAA,GAAW,CAAC,CAAA,EAAG,SACzE,CAAC,CACH,CC9HA,IAAMuL,EAAAA,CAAyB,EAAA,CAExB,SAASC,EAAAA,CAA0Bpa,CAAAA,CAAcrJ,EAAatV,CAAAA,CAAQ84B,EAAAA,CAAwB,CACnG,OAAO1L,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,KAAA,CAAM,UAAA,CAAW/D,CAAAA,CAAMrJ,CAAG,EAC9C,gBAAA,CAAkB,MAAA,CAElB,OAAA,CAAS,MAAO,CAAE,MAAA,CAAAxM,CAAO,CAAA,GAAM,CAC7B,GAAI,CACF,IAAMmI,CAAAA,CAAUsN,sBAAc,mBAAA,EAAoB,CAC5Cxd,EAAM,IAAI,GAAA,CAAI,0BAA2BkQ,CAAO,CAAA,CACtDlQ,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,WAAA,CAAa4d,CAAI,CAAA,CACtC5d,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,KAAA,CAAOuU,CAAG,EAE/B,IAAM9D,CAAAA,CAAW,MAAM,KAAA,CAAMzQ,CAAAA,CAAI,QAAA,GAAY,CAC3C,MAAA,CAAQ,MACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,MAAA,CAAA+H,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,iCAAiCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAUpE,OAAA,CAPa,MAAMA,EAAS,IAAA,EAAK,EAG9B,MAAM,CAAA,CAAGxR,CAAK,EACd,GAAA,CAAKyuB,CAAAA,EAAUoI,EAAAA,CAA0BpI,CAAAA,CAAO9P,CAAI,CAAC,EACrD,MAAA,CAAQ8P,CAAAA,EAA8B,CAAA,CAAQA,CAAM,CAAA,CAEzC,IAAA,CACZ,CAACxqB,CAAAA,CAAGhG,CAAAA,GAAM,IAAI,IAAA,CAAKA,CAAAA,CAAE,OAAO,EAAE,OAAA,EAAQ,CAAI,IAAI,IAAA,CAAKgG,CAAAA,CAAE,OAAO,CAAA,CAAE,OAAA,EAChE,CACF,CAAA,MAASsC,CAAAA,CAAO,CACd,OAAA,OAAA,CAAQ,KAAA,CAAM,oCAAA,CAAsCA,CAAK,CAAA,CAClD,EACT,CACF,CAAA,CAEA,gBAAA,CAAkB,IAAG,CAAA,CACvB,CAAC,CACH,CC5CO,SAASyyB,EAAAA,CAA8Bra,CAAAA,CAAc3K,CAAAA,CAAmB,CAC7E,IAAMilB,CAAAA,CAAqBjlB,GAAU,IAAA,EAAK,CAAE,WAAA,EAAY,CAExD,OAAOoZ,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,KAAA,CAAM,cAAA,CAAe/D,CAAAA,CAAMsa,CAAAA,EAAsB,EAAE,CAAA,CACvE,OAAA,CAAS,CAAA,CAAQA,CAAAA,CACjB,gBAAA,CAAkB,MAAA,CAElB,QAAS,MAAO,CAAE,MAAA,CAAAnwB,CAAO,CAAA,GAAM,CAC7B,GAAI,CAACmwB,CAAAA,CACH,OAAO,EAAC,CAGV,GAAI,CACF,IAAMhoB,CAAAA,CAAUsN,qBAAAA,CAAc,mBAAA,EAAoB,CAC5Cxd,CAAAA,CAAM,IAAI,GAAA,CAAI,8BAAA,CAAgCkQ,CAAO,CAAA,CAC3DlQ,CAAAA,CAAI,aAAa,GAAA,CAAI,WAAA,CAAa4d,CAAI,CAAA,CACtC5d,CAAAA,CAAI,YAAA,CAAa,IAAI,UAAA,CAAYk4B,CAAkB,CAAA,CAEnD,IAAMznB,CAAAA,CAAW,MAAM,MAAMzQ,CAAAA,CAAI,QAAA,EAAS,CAAG,CAC3C,MAAA,CAAQ,KAAA,CACR,QAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,MAAA,CAAA+H,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,sCAAA,EAAyCA,CAAAA,CAAS,MAAM,CAAA,CAAE,EAG5E,IAAM9O,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,IAAA,EAAK,CAEjC,GAAI,CAAC,KAAA,CAAM,QAAQ9O,CAAI,CAAA,EAAKA,EAAK,MAAA,GAAW,CAAA,CAC1C,OAAO,EAAC,CAGV,IAAMw2B,EAAYx2B,CAAAA,CACf,GAAA,CAAK+rB,CAAAA,EAAUoI,EAAAA,CAA0BpI,CAAAA,CAAO9P,CAAI,CAAC,CAAA,CACrD,MAAA,CAAQ8P,CAAAA,EAA8B,CAAA,CAAQA,CAAM,CAAA,CAEvD,OAAIyK,CAAAA,CAAU,MAAA,GAAW,EAChB,EAAC,CAGHA,EAAU,IAAA,CACf,CAACj1B,CAAAA,CAAGhG,CAAAA,GAAM,IAAI,IAAA,CAAKA,EAAE,OAAO,CAAA,CAAE,OAAA,EAAQ,CAAI,IAAI,IAAA,CAAKgG,EAAE,OAAO,CAAA,CAAE,OAAA,EAChE,CACF,CAAA,MAASsC,EAAO,CACd,OAAA,OAAA,CAAQ,MAAM,4CAAA,CAA8CA,CAAK,EAC1D,EACT,CACF,CAAA,CAEA,gBAAA,CAAkB,IAAG,EACvB,CAAC,CACH,CC1DO,SAAS4yB,EAAAA,CAAiCxa,CAAAA,CAAeoG,CAAAA,CAAQ,EAAA,CAAI,CAE1E,IAAMgS,CAAAA,CAAYpY,CAAAA,EAAM,MAAK,EAAK,MAAA,CAElC,OAAO8D,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,iBAAA,CAAkBqU,GAAa,EAAA,CAAIhS,CAAK,CAAA,CAClE,OAAA,CAAS,MAAO,CAAE,OAAAjc,CAAO,CAAA,GAAkC,CACzD,GAAI,CACF,IAAMmI,EAAUsN,qBAAAA,CAAc,mBAAA,GACxBxd,CAAAA,CAAM,IAAI,IAAI,kCAAA,CAAoCkQ,CAAO,CAAA,CAC3D8lB,CAAAA,EACFh2B,CAAAA,CAAI,YAAA,CAAa,IAAI,WAAA,CAAag2B,CAAS,CAAA,CAE7Ch2B,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,QAASgkB,CAAAA,CAAM,QAAA,EAAU,CAAA,CAE9C,IAAMvT,CAAAA,CAAW,MAAM,KAAA,CAAMzQ,CAAAA,CAAI,QAAA,EAAS,CAAG,CAC3C,MAAA,CAAQ,MACR,MAAA,CAAA+H,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,EAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,qCAAA,EAAwCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAK3E,OAAA,CAFa,MAAMA,CAAAA,CAAS,IAAA,IAEhB,GAAA,CAAI,CAAC,CAAE,GAAA,CAAA8D,CAAAA,CAAK,MAAAsc,CAAM,CAAA,IAAO,CAAE,GAAA,CAAAtc,CAAAA,CAAK,KAAA,CAAAsc,CAAM,CAAA,CAAE,CACtD,CAAA,MAASrrB,CAAAA,CAAO,CACd,OAAA,OAAA,CAAQ,MAAM,2CAAA,CAA6CA,CAAK,CAAA,CACzD,EACT,CACF,CACF,CAAC,CACH,CC/BO,SAAS6yB,EAAAA,CAA8Bza,CAAAA,CAAc3K,CAAAA,CAAmB,CAC7E,IAAMilB,CAAAA,CAAqBjlB,CAAAA,EAAU,IAAA,EAAK,CAAE,WAAA,EAAY,CAExD,OAAOoZ,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,KAAA,CAAM,cAAA,CAAe/D,EAAMsa,CAAAA,EAAsB,EAAE,EACvE,OAAA,CAAS,CAAA,CAAQA,EACjB,gBAAA,CAAkB,MAAA,CAElB,OAAA,CAAS,MAAO,CAAE,MAAA,CAAAnwB,CAAO,CAAA,GAAM,CAC7B,GAAI,CAACmwB,CAAAA,CACH,OAAO,EAAC,CAGV,GAAI,CACF,IAAMhoB,CAAAA,CAAUsN,qBAAAA,CAAc,qBAAoB,CAC5Cxd,CAAAA,CAAM,IAAI,GAAA,CAAI,4BAAA,CAA8BkQ,CAAO,EACzDlQ,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,WAAA,CAAa4d,CAAI,CAAA,CACtC5d,EAAI,YAAA,CAAa,GAAA,CAAI,UAAA,CAAYk4B,CAAkB,CAAA,CAEnD,IAAMznB,EAAW,MAAM,KAAA,CAAMzQ,CAAAA,CAAI,QAAA,EAAS,CAAG,CAC3C,OAAQ,KAAA,CACR,MAAA,CAAA+H,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,sCAAsCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGzE,IAAM9O,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,IAAA,EAAK,CAEjC,GAAI,CAAC,KAAA,CAAM,QAAQ9O,CAAI,CAAA,EAAKA,EAAK,MAAA,GAAW,CAAA,CAC1C,OAAO,EAAC,CAGV,IAAMw2B,CAAAA,CAAYx2B,CAAAA,CACf,GAAA,CAAK+rB,GAAUoI,EAAAA,CAA0BpI,CAAAA,CAAO9P,CAAI,CAAC,CAAA,CACrD,MAAA,CAAQ8P,GAA8B,CAAA,CAAQA,CAAM,CAAA,CAEvD,OAAIyK,CAAAA,CAAU,MAAA,GAAW,EAChB,EAAC,CAGHA,EAAU,IAAA,CACf,CAACj1B,EAAGhG,CAAAA,GAAM,IAAI,IAAA,CAAKA,CAAAA,CAAE,OAAO,CAAA,CAAE,SAAQ,CAAI,IAAI,IAAA,CAAKgG,CAAAA,CAAE,OAAO,CAAA,CAAE,SAChE,CACF,CAAA,MAASsC,CAAAA,CAAO,CACd,MAAA,OAAA,CAAQ,MAAM,yCAAA,CAA2CA,CAAK,CAAA,CACxDA,CACR,CACF,CAAA,CAEA,iBAAkB,IAAG,CAAA,CACvB,CAAC,CACH,CC5DO,SAAS8yB,EAAAA,CAAoC1a,CAAAA,CAAc,CAChE,OAAO8D,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,oBAAA,CAAqB/D,CAAI,CAAA,CACnD,OAAA,CAAS,MAAO,CAAE,MAAA,CAAA7V,CAAO,CAAA,GAAqC,CAC5D,GAAI,CACF,IAAMmI,CAAAA,CAAUsN,sBAAc,mBAAA,EAAoB,CAC5Cxd,CAAAA,CAAM,IAAI,GAAA,CAAI,qCAAA,CAAuCkQ,CAAO,CAAA,CAClElQ,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,WAAA,CAAa4d,CAAI,EAEtC,IAAMnN,CAAAA,CAAW,MAAM,KAAA,CAAMzQ,CAAAA,CAAI,UAAS,CAAG,CAC3C,MAAA,CAAQ,KAAA,CACR,MAAA,CAAA+H,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,wCAAA,EAA2CA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAK9E,QAFa,MAAMA,CAAAA,CAAS,MAAK,EAErB,GAAA,CAAI,CAAC,CAAE,MAAA,CAAA8S,CAAAA,CAAQ,KAAA,CAAAsN,CAAM,CAAA,IAAO,CAAE,MAAA,CAAAtN,CAAAA,CAAQ,KAAA,CAAAsN,CAAM,CAAA,CAAE,CAC5D,OAASrrB,CAAAA,CAAO,CACd,MAAA,OAAA,CAAQ,KAAA,CAAM,8CAAA,CAAgDA,CAAK,EAC7DA,CACR,CACF,CACF,CAAC,CACH,CC1BO,SAAS+yB,EAAAA,CACd9H,EACA3B,CAAAA,CAAU,IAAA,CACV,CACA,OAAOpN,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,KAAA,CAAM,SAAA,CAAU8O,CAAAA,EAAM,MAAA,EAAU,EAAA,CAAIA,GAAM,QAAA,EAAY,EAAE,EAC5E,OAAA,CAAS3B,CAAAA,EAAW,CAAC,CAAC2B,CAAAA,CACtB,OAAA,CAAS,SAAYqB,EAAAA,CAAcrB,CAAI,CACzC,CAAC,CACH,CCsBA,SAAS+H,EAAAA,CAAQlO,CAAAA,CAAwB,CACvC,OACE,CAAC,CAACA,CAAAA,EACF,OAAOA,CAAAA,EAAM,UACb,QAAA,GAAYA,CAAAA,EACZ,aAAcA,CAAAA,EACd,cAAA,GAAkBA,CAEtB,CAKA,SAASmO,EAAAA,CAAQC,CAAAA,CAA6B,CAC5C,IAAMC,EAAO,IAAI,IAAA,CAAKD,CAAW,CAAA,CAGjC,OAAA,CAFY,IAAI,MAAK,CACF,OAAA,EAAQ,CAAIC,CAAAA,CAAK,OAAA,EAAQ,GAC3B,IAAO,EAAA,CAAK,EAAA,CAAK,GACpC,CAUO,SAASC,GACd3lB,CAAAA,CACApB,CAAAA,CAKA,CACA,GAAM,CAAE,KAAA,CAAA5S,EAAQ,EAAA,CAAI,OAAA,CAAA45B,CAAAA,CAAU,EAAC,CAAG,QAAA,CAAAC,EAAW,CAAI,CAAA,CAAIjnB,CAAAA,EAAW,EAAC,CAEjE,OAAOwa,gCAML,CACA,QAAA,CAAU1K,CAAAA,CAAU,QAAA,CAAS,WAAA,CAAY1O,CAAAA,CAAUhU,CAAK,CAAA,CACxD,gBAAA,CAAkB,CAAE,KAAA,CAAO,EAAG,CAAA,CAE9B,QAAS,MAAO,CAAE,SAAA,CAAAqtB,CAAU,CAAA,GAA2C,CACrE,GAAM,CAAE,KAAA,CAAA/sB,CAAM,CAAA,CAAI+sB,CAAAA,CAEZ7b,CAAAA,CAAY,MAAMxB,CAAAA,CAAQ,mCAAA,CAAqC,CAACgE,CAAAA,CAAU1T,CAAAA,CAAON,EAAO,GAAG45B,CAAO,CAAC,CAAA,CAQnGz7B,CAAAA,CANqCqT,CAAAA,CAAS,IAAI,CAAC,CAAC0f,CAAAA,CAAK4I,CAAU,CAAA,IAAO,CAC9E,GAAGA,CAAAA,CAAW,EAAA,CAAG,CAAC,CAAA,CAClB,GAAA,CAAA5I,CAAAA,CACA,UAAW4I,CAAAA,CAAW,SACxB,EAAE,CAAA,CAE2B,MAAA,CAC1BC,GACCA,CAAAA,CAAS,KAAA,GAAU/lB,CAAAA,EACnB+lB,CAAAA,CAAS,MAAA,GAAW,CAAA,EACpBP,GAAQO,CAAAA,CAAS,SAAS,CAAA,EAAKF,CACnC,CAAA,CAEM1K,CAAAA,CAAmB,EAAC,CAC1B,IAAA,IAAWzY,CAAAA,IAAOvY,CAAAA,CAAQ,CACxB,IAAMqzB,EAAO,MAAMnT,CAAAA,CAAO,YAAY,UAAA,CACpC4S,EAAAA,CAAoBva,EAAI,MAAA,CAAQA,CAAAA,CAAI,QAAQ,CAC9C,CAAA,CACI6iB,EAAAA,CAAQ/H,CAAI,CAAA,EAAGrC,CAAAA,CAAQ,IAAA,CAAKqC,CAAI,EACtC,CAEA,GAAM,CAACwI,CAAY,CAAA,CAAIxoB,CAAAA,CAEvB,OAAO,CACL,SAAUwoB,CAAAA,CAAeR,EAAAA,CAAQQ,EAAa,CAAC,CAAA,CAAE,SAAS,CAAA,CAAI,CAAA,CAC9D,eAAA,CAAiBA,CAAAA,CAAeA,CAAAA,CAAa,CAAC,EAAI15B,CAAAA,CAClD,OAAA,CAAA6uB,CACF,CACF,CAAA,CAEA,gBAAA,CAAmB5B,IAAqD,CACtE,KAAA,CAAOA,CAAAA,CAAS,eAClB,CAAA,CACF,CAAC,CACH,CCtHO,SAAS0M,EAAAA,CACdxU,CAAAA,CACAzG,CAAAA,CACA6Q,CAAAA,CAAU,IAAA,CACV,CACA,OAAOpN,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,QAAA,CAAS+C,EAAUzG,CAAAA,EAAY,EAAE,CAAA,CAC9D,OAAA,CAAS6Q,CAAAA,EAAWpK,CAAAA,CAAS,OAAS,CAAA,CACtC,OAAA,CAAS,SAAYyN,EAAAA,CAAYzN,CAAAA,CAAUzG,CAAQ,CACrD,CAAC,CACH,CCkBO,SAASkb,EAAAA,CACdlmB,CAAAA,CACA6S,CAAAA,CAA4B,MAAA,CAC5BH,EAAW,GAAA,CACX,CACA,OAAO0G,+BAAAA,CAML,CACA,QAAA,CAAU1K,EAAU,MAAA,CAAO,cAAA,CACzB1O,GAAY,EAAA,CACZ6S,CAAAA,CACAH,CACF,CAAA,CACA,gBAAA,CAAkB,IAAA,CAElB,OAAA,CAAS,MAAO,CAAE,UAAA2G,CAAAA,CAAW,MAAA,CAAAvkB,CAAO,CAAA,GAAM,CACxC,GAAI,CAACkL,CAAAA,CACH,OAAO,CAAE,OAAA,CAAS,EAAC,CAAG,YAAa,CAAE,CAAA,CAGvC,IAAM1L,CAAAA,CAA0C,CAC9C,cAAA,CAAgB0L,EAChB,WAAA,CAAa6S,CAAAA,CACb,WAAA,CAAaH,CAAAA,CACb,SAAA,CAAW,MACb,EAII2G,CAAAA,GAAc,IAAA,GAChB/kB,CAAAA,CAAO,IAAA,CAAO+kB,CAAAA,CAAAA,CAGhB,IAAM7b,EAAY,MAAMZ,EAAAA,CACtB,SAAA,CACA,0CAAA,CACAtI,CAAAA,CACA,MAAA,CACA,OACAQ,CACF,CAAA,CAEA,OAAO,CACL,OAAA,CAAS0I,EAAS,iBAAA,CAClB,WAAA,CAAa6b,CAAAA,EAAa7b,CAAAA,CAAS,WACrC,CACF,EAEA,gBAAA,CAAmB+b,CAAAA,EAAa,CAE9B,IAAM+B,CAAAA,CAAW/B,CAAAA,CAAS,YAAc,CAAA,CACxC,OAAO+B,CAAAA,EAAY,CAAA,CAAIA,CAAAA,CAAW,MACpC,EAEA,OAAA,CAAS,CAAC,CAACtb,CACb,CAAC,CACH,CC7EO,SAASmmB,GACdnmB,CAAAA,CACA6S,CAAAA,CAA4B,MAAA,CAC5BC,CAAAA,CAA6C,QAAA,CAC7C,CACA,OAAOrE,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,MAAA,CAAO,iBAAA,CACzB1O,GAAY,EAAA,CACZ6S,CAAAA,CACAC,CACF,CAAA,CAEA,OAAA,CAAS,SACF9S,CAAAA,CAIG,MAAMpD,EAAAA,CACZ,SAAA,CACA,6CAAA,CACA,CACE,eAAgBoD,CAAAA,CAChB,WAAA,CAAa6S,CAAAA,CACb,WAAA,CAAAC,CACF,CACF,EAXS,EAAC,CAcZ,OAAA,CAAS,CAAC,CAAC9S,CAAAA,CACX,UAAW,GACb,CAAC,CACH,CC1BO,SAASomB,EAAAA,EAA4B,CAC1C,OAAO3X,wBAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,UAAA,EAAW,CACxC,QAAS,SAAY,CACnB,IAAMlR,CAAAA,CAAW,MAAM,KAAA,CAAM6M,EAAO,cAAA,CAAiB,0BAAA,CAA4B,CAC/E,MAAA,CAAQ,KAAA,CACR,QAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CAAC,CAAA,CAED,GAAI,CAAC7M,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,gCAAgCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGnE,OAAOA,CAAAA,CAAS,MAClB,CAAA,CACA,UAAW,GAAA,CAAS,GACtB,CAAC,CACH,CAGO,SAAS6oB,EAAAA,CAAcC,CAAAA,CAAiC,CAC7D,OAAO,IAAI,GAAA,CAAA,CAAKA,CAAAA,EAAW,EAAC,EAAG,GAAA,CAAKj5B,GAAMA,CAAAA,CAAE,WAAA,EAAa,CAAC,CAC5D,CCmBO,SAASk5B,EAAAA,CACdvmB,CAAAA,CACAwH,EACAI,CAAAA,CACA,CACA,IAAM4e,CAAAA,CAAcC,yBAAAA,EAAe,CAE7B,CAAE,IAAA,CAAA/3B,CAAK,EAAI0e,mBAAAA,CAAS4H,CAAAA,CAA2BhV,CAAQ,CAAC,CAAA,CAE9D,OAAO8I,EACL,CAAC,UAAA,CAAY,QAAQ,CAAA,CACrB9I,CAAAA,CACCkJ,CAAAA,EAA8B,CAQ7B,IAAMlD,CAAAA,CAAUqQ,EAAAA,CACdmQ,CAAAA,CAAY,YAAA,CACVxR,CAAAA,CAA2BhV,CAAQ,CAAA,CAAE,QACvC,CAAA,CACAtR,CACF,CAAA,CAEA,GAAI,CAACsX,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,2DAAsD,CAAA,CAGxE,OAAO,CACL,CACE,iBAAA,CACA,CACE,OAAA,CAAShG,CAAAA,CACT,cAAe,EAAA,CACf,UAAA,CAAY,EAAC,CAIb,qBAAA,CAAuByW,GAAyB,CAC9C,2BAAA,CAA6BzQ,CAAAA,CAAQ,qBAAA,CACrC,OAAA,CAASkD,CAAAA,CAAQ,QACjB,MAAA,CAAQA,CAAAA,CAAQ,MAClB,CAAC,CACH,CACF,CACF,CACF,CAAA,CACA,MAAOwd,CAAAA,CAAgBC,CAAAA,GAAgC,CAErDH,EAAY,YAAA,CACVxR,CAAAA,CAA2BhV,CAAQ,CAAA,CAAE,QAAA,CACpCtR,GAAS,CACR,GAAI,CAACA,CAAAA,CACH,OAAOA,CAAAA,CAGT,IAAMgU,CAAAA,CAAM,IAAA,CAAK,KAAA,CAAM,IAAA,CAAK,SAAA,CAAUhU,CAAI,CAAC,CAAA,CAC3C,OAAAgU,CAAAA,CAAI,OAAA,CAAUoU,EAAAA,CAAqB,CACjC,gBAAiBV,EAAAA,CAAsB1nB,CAAI,EAC3C,OAAA,CAASi4B,CAAAA,CAAU,QACnB,MAAA,CAAQA,CAAAA,CAAU,MACpB,CAAC,CAAA,CAEMjkB,CACT,CACF,CAAA,CAGA,MAAM8G,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAClC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,MAAA,CACA,CACE,aAAA,CAAAI,CAAAA,CAMA,SAAU,SAAY,CACpB,GAAK5H,CAAAA,CAGL,GAAI,CACF,MAAMwmB,CAAAA,CAAY,UAAA,CAAW,CAC3B,GAAGxR,CAAAA,CAA2BhV,CAAQ,EACtC,SAAA,CAAW,CACb,CAAC,EACH,CAAA,KAAQ,CAER,CACF,CACF,CACF,CACF,CC3JO,SAAS4mB,EAAAA,CACdjV,CAAAA,CACApmB,CAAAA,CACAic,EACAwB,CAAAA,CACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,YAAa,CAAC,UAAA,CAAY,UAAA,CAAY,QAAA,CAAU0I,CAAAA,CAAWpmB,CAAM,EACjE,UAAA,CAAY,MAAOu7B,GAAe,CAChC,IAAMC,EAAiB/N,EAAAA,CACrBrH,CAAAA,CACApmB,CACF,CAAA,CACA,MAAMqhB,CAAAA,GAAiB,aAAA,CAAcma,CAAc,CAAA,CACnD,IAAMC,CAAAA,CAAiBpa,CAAAA,GAAiB,YAAA,CACtCma,CAAAA,CAAe,QACjB,CAAA,CAEA,OAAA,MAAM1d,EAAAA,CACJsI,EACA,QAAA,CACA,CACA,SACA,CACE,QAAA,CAAUA,EACV,SAAA,CAAWpmB,CAAAA,CACX,IAAA,CAAM,CACJ,GAAIu7B,CAAAA,GAAS,iBAAmB,CAACE,CAAAA,EAAgB,OAAA,CAC7C,CAAC,QAAQ,CAAA,CACT,EAAC,CACL,GAAIF,CAAAA,GAAS,eAAA,EAAmB,CAACE,CAAAA,EAAgB,QAC7C,CAAC,MAAM,CAAA,CACP,EACN,CACF,CACA,CAAA,CACAxf,CACF,CAAA,CAEO,CACL,GAAGwf,CAAAA,CACH,QACEF,CAAAA,GAAS,eAAA,CACL,CAACE,CAAAA,EAAgB,OAAA,CACjBA,CAAAA,EAAgB,QACtB,OAAA,CACEF,CAAAA,GAAS,eAAA,CACL,CAACE,CAAAA,EAAgB,OAAA,CACjBA,GAAgB,OACxB,CACF,EACA,OAAA,CAAAH,CAAAA,CACA,UAAUn4B,CAAAA,CAAM,CACdsa,CAAAA,CAAUta,CAAI,CAAA,CAEdke,CAAAA,GAAiB,YAAA,CACf8B,CAAAA,CAAU,QAAA,CAAS,SAAA,CAAUiD,CAAAA,CAAYpmB,CAAO,EAChDmD,CACF,CAAA,CAIInD,CAAAA,EACFqhB,CAAAA,EAAe,CAAE,iBAAA,CACfoI,EAA2BzpB,CAAM,CACnC,EAEJ,CACF,CAAC,CACH,CC/DO,SAAS07B,EAAAA,CACdlV,CAAAA,CACAzB,CAAAA,CACAC,CAAAA,CACA2W,EACW,CACX,GAAI,CAACnV,CAAAA,EAAS,CAACzB,CAAAA,EAAU,CAACC,CAAAA,CACxB,MAAM,IAAI,KAAA,CAAM,gDAAgD,CAAA,CAElE,GAAI2W,CAAAA,CAAS,IAAA,EAAUA,EAAS,GAAA,CAC9B,MAAM,IAAI,KAAA,CAAM,4DAA4D,CAAA,CAG9E,OAAO,CACL,MAAA,CACA,CACE,KAAA,CAAAnV,CAAAA,CACA,MAAA,CAAAzB,CAAAA,CACA,QAAA,CAAAC,CAAAA,CACA,OAAA2W,CACF,CACF,CACF,CAaO,SAASC,EAAAA,CACd7W,EACAC,CAAAA,CACA6W,CAAAA,CACAC,EACA7E,CAAAA,CACAjoB,CAAAA,CACA+c,EACW,CAIX,IAAMgQ,CAAAA,CAAoB,EAAC,CAK3B,GAJKhX,GAAQgX,CAAAA,CAAQ,IAAA,CAAK,QAAQ,CAAA,CAC7B/W,CAAAA,EAAU+W,CAAAA,CAAQ,KAAK,UAAU,CAAA,CAClCD,CAAAA,GAAmB,MAAA,EAAWC,CAAAA,CAAQ,IAAA,CAAK,gBAAgB,CAAA,CAC1D/sB,CAAAA,EAAM+sB,EAAQ,IAAA,CAAK,MAAM,EAC1BA,CAAAA,CAAQ,MAAA,CAAS,CAAA,CACnB,MAAM,IAAI,KAAA,CAAM,sDAAsDA,CAAAA,CAAQ,IAAA,CAAK,IAAI,CAAC,CAAA,CAAE,CAAA,CAG5F,OAAO,CACL,SAAA,CACA,CACE,aAAA,CAAeF,CAAAA,CACf,eAAA,CAAiBC,EACjB,MAAA,CAAA/W,CAAAA,CACA,SAAAC,CAAAA,CACA,KAAA,CAAAiS,EACA,IAAA,CAAAjoB,CAAAA,CACA,aAAA,CAAe,IAAA,CAAK,SAAA,CAAU+c,CAAY,CAC5C,CACF,CACF,CAaO,SAASiQ,EAAAA,CACdjX,CAAAA,CACAC,EACAiX,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACW,CACX,GAAI,CAACtX,CAAAA,EAAU,CAACC,CAAAA,CACd,MAAM,IAAI,KAAA,CAAM,0DAA0D,CAAA,CAG5E,OAAO,CACL,iBAAA,CACA,CACE,MAAA,CAAAD,CAAAA,CACA,QAAA,CAAAC,CAAAA,CACA,mBAAA,CAAqBiX,CAAAA,CACrB,YAAaC,CAAAA,CACb,WAAA,CAAaC,CAAAA,CACb,sBAAA,CAAwBC,CAAAA,CACxB,UAAA,CAAAC,CACF,CACF,CACF,CAQO,SAASC,EAAAA,CAAqBvX,CAAAA,CAAgBC,EAA6B,CAChF,GAAI,CAACD,CAAAA,EAAU,CAACC,CAAAA,CACd,MAAM,IAAI,KAAA,CAAM,yDAAyD,CAAA,CAG3E,OAAO,CACL,iBACA,CACE,MAAA,CAAAD,CAAAA,CACA,QAAA,CAAAC,CACF,CACF,CACF,CAUO,SAASuX,GACd9hB,CAAAA,CACAsK,CAAAA,CACAC,EACAwX,CAAAA,CAAwB,KAAA,CACb,CACX,GAAI,CAAC/hB,CAAAA,EAAW,CAACsK,CAAAA,EAAU,CAACC,CAAAA,CAC1B,MAAM,IAAI,KAAA,CAAM,kDAAkD,CAAA,CAGpE,IAAM+I,CAAAA,CAAY,CAChB,OAAA,CAAAtT,CAAAA,CACA,OAAAsK,CAAAA,CACA,QAAA,CAAAC,CACF,CAAA,CAEA,OAAIwX,IACFzO,CAAAA,CAAK,MAAA,CAAS,QAAA,CAAA,CAGT,CACL,aAAA,CACA,CACE,GAAI,QAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAC,QAAA,CAAUA,CAAI,CAAC,CAAA,CACrC,cAAA,CAAgB,EAAC,CACjB,sBAAA,CAAwB,CAACtT,CAAO,CAClC,CACF,CACF,CCrKO,SAASgiB,EAAAA,CACdxkB,CAAAA,CACAC,CAAAA,CACArT,CAAAA,CACA2S,CAAAA,CACW,CACX,GAAI,CAACS,CAAAA,EAAQ,CAACC,CAAAA,EAAM,CAACrT,CAAAA,CACnB,MAAM,IAAI,KAAA,CAAM,oDAAoD,CAAA,CAGtE,OAAO,CACL,WACA,CACE,IAAA,CAAAoT,EACA,EAAA,CAAAC,CAAAA,CACA,OAAArT,CAAAA,CACA,IAAA,CAAM2S,CAAAA,EAAQ,EAChB,CACF,CACF,CAUO,SAASklB,EAAAA,CACdzkB,CAAAA,CACA0kB,CAAAA,CACA93B,CAAAA,CACA2S,CAAAA,CACa,CACb,GAAI,CAACS,CAAAA,EAAQ,CAAC0kB,CAAAA,EAAgB,CAAC93B,EAC7B,MAAM,IAAI,MAAM,0DAA0D,CAAA,CAU5E,OANkB83B,CAAAA,CACf,IAAA,EAAK,CACL,KAAA,CAAM,QAAQ,CAAA,CACd,OAAO,OAAO,CAAA,CAGA,GAAA,CAAKC,CAAAA,EACpBH,EAAAA,CAAgBxkB,CAAAA,CAAM2kB,EAAK,IAAA,EAAK,CAAG/3B,CAAAA,CAAQ2S,CAAI,CACjD,CACF,CAYO,SAASqlB,EAAAA,CACd5kB,EACAC,CAAAA,CACArT,CAAAA,CACA2S,EACAslB,CAAAA,CACAC,CAAAA,CACW,CACX,GAAI,CAAC9kB,CAAAA,EAAQ,CAACC,CAAAA,EAAM,CAACrT,CAAAA,CACnB,MAAM,IAAI,KAAA,CAAM,6DAA6D,CAAA,CAE/E,GAAIi4B,CAAAA,CAAa,EAAA,CACf,MAAM,IAAI,MAAM,sEAAsE,CAAA,CAGxF,OAAO,CACL,oBAAA,CACA,CACE,IAAA,CAAA7kB,CAAAA,CACA,EAAA,CAAAC,CAAAA,CACA,MAAA,CAAArT,CAAAA,CACA,KAAM2S,CAAAA,EAAQ,EAAA,CACd,UAAA,CAAAslB,CAAAA,CACA,UAAA,CAAAC,CAAAA,CACA,WAAY,EACd,CACF,CACF,CAUO,SAASC,GACd/kB,CAAAA,CACAC,CAAAA,CACArT,CAAAA,CACA2S,CAAAA,CACW,CACX,GAAI,CAACS,CAAAA,EAAQ,CAACC,CAAAA,EAAM,CAACrT,CAAAA,CACnB,MAAM,IAAI,KAAA,CAAM,6DAA6D,CAAA,CAG/E,OAAO,CACL,qBAAA,CACA,CACE,IAAA,CAAAoT,CAAAA,CACA,EAAA,CAAAC,CAAAA,CACA,MAAA,CAAArT,CAAAA,CACA,KAAM2S,CAAAA,EAAQ,EAChB,CACF,CACF,CAWO,SAASylB,EAAAA,CACdhlB,CAAAA,CACAC,CAAAA,CACArT,CAAAA,CACA2S,CAAAA,CACA0lB,CAAAA,CACW,CACX,GAAI,CAACjlB,CAAAA,EAAQ,CAACC,CAAAA,EAAM,CAACrT,GAAUq4B,CAAAA,GAAc,MAAA,CAC3C,MAAM,IAAI,KAAA,CAAM,+DAA+D,EAGjF,OAAO,CACL,wBACA,CACE,IAAA,CAAAjlB,EACA,EAAA,CAAAC,CAAAA,CACA,MAAA,CAAArT,CAAAA,CACA,IAAA,CAAM2S,CAAAA,EAAQ,GACd,UAAA,CAAY0lB,CACd,CACF,CACF,CAQO,SAASC,GACdllB,CAAAA,CACAilB,CAAAA,CACW,CACX,GAAI,CAACjlB,CAAAA,EAAQilB,IAAc,MAAA,CACzB,MAAM,IAAI,KAAA,CAAM,qEAAqE,EAGvF,OAAO,CACL,8BAAA,CACA,CACE,IAAA,CAAAjlB,CAAAA,CACA,WAAYilB,CACd,CACF,CACF,CAYO,SAASE,EAAAA,CACdnlB,EACAC,CAAAA,CACArT,CAAAA,CACA2S,CAAAA,CACA0lB,CAAAA,CACa,CACb,GAAI,CAACjlB,CAAAA,EAAQ,CAACC,GAAM,CAACrT,CAAAA,EAAUq4B,IAAc,MAAA,CAC3C,MAAM,IAAI,KAAA,CAAM,0DAA0D,CAAA,CAG5E,OAAO,CACLD,EAAAA,CAA2BhlB,CAAAA,CAAMC,CAAAA,CAAIrT,CAAAA,CAAQ2S,CAAAA,CAAM0lB,CAAS,CAAA,CAC5DC,EAAAA,CAAiCllB,CAAAA,CAAMilB,CAAS,CAClD,CACF,CASO,SAASG,EAAAA,CACdplB,EACAC,CAAAA,CACArT,CAAAA,CACW,CACX,GAAI,CAACoT,CAAAA,EAAQ,CAACC,CAAAA,EAAM,CAACrT,EACnB,MAAM,IAAI,KAAA,CAAM,6DAA6D,CAAA,CAG/E,OAAO,CACL,qBAAA,CACA,CACE,IAAA,CAAAoT,CAAAA,CACA,EAAA,CAAAC,CAAAA,CACA,OAAArT,CACF,CACF,CACF,CAQO,SAASy4B,GACd7iB,CAAAA,CACA8iB,CAAAA,CACW,CACX,GAAI,CAAC9iB,CAAAA,EAAW,CAAC8iB,CAAAA,CACf,MAAM,IAAI,KAAA,CAAM,2DAA2D,CAAA,CAG7E,OAAO,CACL,kBAAA,CACA,CACE,OAAA,CAAA9iB,CAAAA,CACA,cAAA,CAAgB8iB,CAClB,CACF,CACF,CASO,SAASC,EAAAA,CACdC,EACAC,CAAAA,CACAH,CAAAA,CACW,CACX,GAAI,CAACE,CAAAA,EAAa,CAACC,CAAAA,EAAa,CAACH,CAAAA,CAC/B,MAAM,IAAI,KAAA,CAAM,iEAAiE,CAAA,CAGnF,OAAO,CACL,yBAAA,CACA,CACE,SAAA,CAAAE,EACA,SAAA,CAAAC,CAAAA,CACA,cAAA,CAAgBH,CAClB,CACF,CACF,CAUO,SAASI,EAAAA,CACdC,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACW,CACX,GAAI,CAACH,CAAAA,EAAe,CAACC,CAAAA,EAAaC,CAAAA,GAAY,OAC5C,MAAM,IAAI,KAAA,CAAM,mEAAmE,CAAA,CAErF,GAAIA,EAAU,CAAA,EAAKA,CAAAA,CAAU,IAC3B,MAAM,IAAI,MAAM,2EAA2E,CAAA,CAG7F,OAAO,CACL,4BAAA,CACA,CACE,aAAcF,CAAAA,CACd,UAAA,CAAYC,CAAAA,CACZ,OAAA,CAAAC,CAAAA,CACA,SAAA,CAAWC,CACb,CACF,CACF,CASO,SAASC,EAAAA,CACdxkB,CAAAA,CACA3U,EACAq4B,CAAAA,CACW,CACX,GAAI,CAAC1jB,CAAAA,EAAS,CAAC3U,CAAAA,EAAUq4B,CAAAA,GAAc,MAAA,CACrC,MAAM,IAAI,KAAA,CAAM,mDAAmD,CAAA,CAGrE,OAAO,CACL,SAAA,CACA,CACE,KAAA,CAAA1jB,EACA,MAAA,CAAA3U,CAAAA,CACA,SAAA,CAAWq4B,CACb,CACF,CACF,CASO,SAASe,EAAAA,CACdzkB,EACA3U,CAAAA,CACAq4B,CAAAA,CACW,CACX,GAAI,CAAC1jB,CAAAA,EAAS,CAAC3U,CAAAA,EAAUq4B,CAAAA,GAAc,OACrC,MAAM,IAAI,KAAA,CAAM,iEAAiE,CAAA,CAGnF,OAAO,CACL,wBAAA,CACA,CACE,KAAA,CAAA1jB,CAAAA,CACA,MAAA,CAAA3U,CAAAA,CACA,UAAWq4B,CACb,CACF,CACF,CAUO,SAASgB,GACdjmB,CAAAA,CACAkmB,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CAAe,QAAA,CACJ,CACX,OAAO,CAAC,aAAA,CAAe,CACrB,EAAA,CAAI,kBAAA,CACJ,cAAA,CAAgB,CAACpmB,CAAI,CAAA,CACrB,sBAAA,CAAwB,EAAC,CACzB,IAAA,CAAM,KAAK,SAAA,CAAU,CAAE,aAAAomB,CAAAA,CAAc,cAAA,CAAAF,EAAgB,eAAA,CAAAC,CAAgB,CAAC,CACxE,CAAC,CACH,CAQO,SAASE,EAAAA,CACd7jB,CAAAA,CACA/M,CAAAA,CACW,CACX,OAAO,CAAC,aAAA,CAAe,CACrB,EAAA,CAAI,kBAAA,CACJ,cAAA,CAAgB,GAChB,sBAAA,CAAwB,CAAC+M,CAAO,CAAA,CAChC,IAAA,CAAM,KAAK,SAAA,CAAU/M,CAAAA,CAAO,GAAA,CAAK5I,CAAAA,GAAY,CAAE,MAAA,CAAAA,CAAO,CAAA,CAAE,CAAC,CAC3D,CAAC,CACH,CASO,SAASy5B,EAAAA,CACdtmB,CAAAA,CACAumB,CAAAA,CACAC,CAAAA,CACW,CACX,GAAI,CAACxmB,CAAAA,EAAQ,CAACumB,GAAcC,CAAAA,GAAU,MAAA,CACpC,MAAM,IAAI,KAAA,CAAM,sDAAsD,CAAA,CAGxE,IAAMC,CAAAA,CAAiBF,EAAW,QAAA,CAAS,GAAG,CAAA,CAC1CA,CAAAA,CAAW,KAAA,CAAM,GAAG,EAAE,GAAA,CAAKvxB,CAAAA,EAAMA,CAAAA,CAAE,IAAA,EAAM,CAAA,CACzC,CAACuxB,CAAU,CAAA,CAEf,OAAO,CACL,aAAA,CACA,CACE,GAAI,IAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,aAAA,CACA,CACE,IAAA,CAAAvmB,CAAAA,CACA,UAAA,CAAYymB,CAAAA,CACZ,MAAA,CAAQD,CACV,CACF,CAAC,CAAA,CACD,cAAA,CAAgB,EAAC,CACjB,sBAAA,CAAwB,CAACxmB,CAAI,CAC/B,CACF,CACF,CCtbO,SAAS0mB,EAAAA,CAAc7Y,CAAAA,CAAkBJ,CAAAA,CAA8B,CAC5E,GAAI,CAACI,GAAY,CAACJ,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,kDAAkD,EAGpE,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,QAAA,CACJ,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,QAAA,CACA,CACE,SAAAI,CAAAA,CACA,SAAA,CAAAJ,CAAAA,CACA,IAAA,CAAM,CAAC,MAAM,CACf,CACF,CAAC,CAAA,CACD,cAAA,CAAgB,EAAC,CACjB,uBAAwB,CAACI,CAAQ,CACnC,CACF,CACF,CAQO,SAAS8Y,EAAAA,CAAgB9Y,CAAAA,CAAkBJ,EAA8B,CAC9E,GAAI,CAACI,CAAAA,EAAY,CAACJ,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,oDAAoD,CAAA,CAGtE,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,SACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,QAAA,CACA,CACE,SAAAI,CAAAA,CACA,SAAA,CAAAJ,EACA,IAAA,CAAM,EACR,CACF,CAAC,CAAA,CACD,cAAA,CAAgB,EAAC,CACjB,uBAAwB,CAACI,CAAQ,CACnC,CACF,CACF,CAQO,SAAS+Y,EAAAA,CAAc/Y,CAAAA,CAAkBJ,CAAAA,CAA8B,CAC5E,GAAI,CAACI,GAAY,CAACJ,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,kDAAkD,CAAA,CAGpE,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,SACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,QAAA,CACA,CACE,SAAAI,CAAAA,CACA,SAAA,CAAAJ,CAAAA,CACA,IAAA,CAAM,CAAC,QAAQ,CACjB,CACF,CAAC,EACD,cAAA,CAAgB,GAChB,sBAAA,CAAwB,CAACI,CAAQ,CACnC,CACF,CACF,CAQO,SAASgZ,EAAAA,CAAgBhZ,CAAAA,CAAkBJ,CAAAA,CAA8B,CAC9E,GAAI,CAACI,CAAAA,EAAY,CAACJ,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,oDAAoD,CAAA,CAGtE,OAAOkZ,GAAgB9Y,CAAAA,CAAUJ,CAAS,CAC5C,CAQO,SAASqZ,EAAAA,CAAoBtqB,CAAAA,CAAkBuqB,CAAAA,CAA4B,CAChF,GAAI,CAACvqB,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,wDAAwD,EAG1E,IAAMwqB,CAAAA,CAAeD,CAAAA,EAAQ,IAAI,IAAA,EAAK,CAAE,aAAY,CAAE,KAAA,CAAM,GAAG,CAAA,CAAE,CAAC,CAAA,CAE5DE,EAAsB,CAC1B,aAAA,CACA,CACE,EAAA,CAAI,QAAA,CACJ,IAAA,CAAM,KAAK,SAAA,CAAU,CAAC,aAAA,CAAe,CAAE,IAAA,CAAMD,CAAa,CAAC,CAAC,CAAA,CAC5D,cAAA,CAAgB,EAAC,CACjB,sBAAA,CAAwB,CAACxqB,CAAQ,CACnC,CACF,CAAA,CAEM0qB,CAAAA,CAA4B,CAChC,aAAA,CACA,CACE,EAAA,CAAI,eAAA,CACJ,IAAA,CAAM,IAAA,CAAK,UAAU,CAAC,aAAA,CAAe,CAAE,IAAA,CAAMF,CAAa,CAAC,CAAC,CAAA,CAC5D,cAAA,CAAgB,EAAC,CACjB,sBAAA,CAAwB,CAACxqB,CAAQ,CACnC,CACF,EAEA,OAAO,CAACyqB,EAAUC,CAAc,CAClC,CChIO,SAASC,EAAAA,CACd3kB,CAAAA,CACAwM,EACAoY,CAAAA,CACW,CACX,GAAI,CAAC5kB,CAAAA,EAAW,CAACwM,GAAWoY,CAAAA,GAAY,MAAA,CACtC,MAAM,IAAI,KAAA,CAAM,uDAAuD,EAGzE,OAAO,CACL,uBACA,CACE,OAAA,CAAA5kB,EACA,OAAA,CAAAwM,CAAAA,CACA,OAAA,CAAAoY,CACF,CACF,CACF,CAQO,SAASC,EAAAA,CAAoB7kB,CAAAA,CAAiB5R,CAAAA,CAA0B,CAC7E,GAAI,CAAC4R,CAAAA,EAAW5R,CAAAA,GAAU,MAAA,CACxB,MAAM,IAAI,KAAA,CAAM,wDAAwD,CAAA,CAG1E,OAAO,CACL,uBAAA,CACA,CACE,QAAA4R,CAAAA,CACA,KAAA,CAAA5R,CACF,CACF,CACF,CAoBO,SAAS02B,EAAAA,CACdC,CAAAA,CACA7hB,CAAAA,CACW,CAEX,GACE,CAAC6hB,GACD,CAAC7hB,CAAAA,CAAQ,QAAA,EACT,CAACA,CAAAA,CAAQ,OAAA,EACT,CAACA,CAAAA,CAAQ,QAAA,EACT,CAACA,CAAAA,CAAQ,KAAA,EACT,CAACA,CAAAA,CAAQ,GAAA,EACT,CAACA,CAAAA,CAAQ,QAAA,CAET,MAAM,IAAI,KAAA,CAAM,0DAA0D,CAAA,CAI5E,IAAMkK,CAAAA,CAAY,IAAI,KAAKlK,CAAAA,CAAQ,KAAK,CAAA,CAClCmK,CAAAA,CAAU,IAAI,IAAA,CAAKnK,EAAQ,GAAG,CAAA,CACpC,GAAIkK,CAAAA,CAAU,QAAA,KAAe,cAAA,EAAkBC,CAAAA,CAAQ,QAAA,EAAS,GAAM,cAAA,CACpE,MAAM,IAAI,KAAA,CACR,gGACF,CAAA,CAGF,OAAO,CACL,iBAAA,CACA,CACE,OAAA,CAAA0X,CAAAA,CACA,QAAA,CAAU7hB,CAAAA,CAAQ,QAAA,CAClB,UAAA,CAAYA,EAAQ,KAAA,CACpB,QAAA,CAAUA,EAAQ,GAAA,CAClB,SAAA,CAAWA,EAAQ,QAAA,CACnB,OAAA,CAASA,CAAAA,CAAQ,OAAA,CACjB,QAAA,CAAUA,CAAAA,CAAQ,SAClB,UAAA,CAAY,EACd,CACF,CACF,CASO,SAAS8hB,EAAAA,CACdjZ,CAAAA,CACAkZ,CAAAA,CACAL,CAAAA,CACW,CACX,GAAI,CAAC7Y,CAAAA,EAAS,CAACkZ,CAAAA,EAAeA,CAAAA,CAAY,MAAA,GAAW,CAAA,EAAKL,IAAY,MAAA,CACpE,MAAM,IAAI,KAAA,CAAM,wDAAwD,CAAA,CAG1E,OAAO,CACL,uBAAA,CACA,CACE,KAAA,CAAA7Y,CAAAA,CACA,YAAA,CAAckZ,EACd,OAAA,CAAAL,CAAAA,CACA,UAAA,CAAY,EACd,CACF,CACF,CAQO,SAASM,GACdC,CAAAA,CACAF,CAAAA,CACW,CACX,GAAI,CAACE,CAAAA,EAAiB,CAACF,CAAAA,EAAeA,CAAAA,CAAY,SAAW,CAAA,CAC3D,MAAM,IAAI,KAAA,CAAM,0DAA0D,CAAA,CAG5E,OAAO,CACL,iBAAA,CACA,CACE,cAAA,CAAgBE,CAAAA,CAChB,YAAA,CAAcF,EACd,UAAA,CAAY,EACd,CACF,CACF,CAWO,SAASG,EAAAA,CACdtZ,CAAAA,CACAiZ,CAAAA,CACAM,CAAAA,CACAC,CAAAA,CACA/a,EACW,CAGX,GAEEuB,CAAAA,EAAe,IAAA,EACf,OAAOA,CAAAA,EAAe,UACtB,CAACiZ,CAAAA,EACD,CAACM,CAAAA,EACD,CAACC,CAAAA,EACD,CAAC/a,CAAAA,CAED,MAAM,IAAI,KAAA,CAAM,0DAA0D,EAG5E,OAAO,CACL,iBAAA,CACA,CACE,WAAA,CAAauB,CAAAA,CACb,QAAAiZ,CAAAA,CACA,SAAA,CAAWM,CAAAA,CACX,OAAA,CAAAC,CAAAA,CACA,QAAA,CAAA/a,EACA,UAAA,CAAY,EACd,CACF,CACF,CC/LO,SAASgb,EAAAA,CAAiBvrB,CAAAA,CAAkBgf,EAA8B,CAC/E,GAAI,CAAChf,CAAAA,EAAY,CAACgf,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,qDAAqD,CAAA,CAGvE,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,YACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAC,WAAA,CAAa,CAAE,UAAAA,CAAU,CAAC,CAAC,CAAA,CACjD,cAAA,CAAgB,EAAC,CACjB,sBAAA,CAAwB,CAAChf,CAAQ,CACnC,CACF,CACF,CAQO,SAASwrB,EAAAA,CAAmBxrB,CAAAA,CAAkBgf,CAAAA,CAA8B,CACjF,GAAI,CAAChf,CAAAA,EAAY,CAACgf,CAAAA,CAChB,MAAM,IAAI,MAAM,uDAAuD,CAAA,CAGzE,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,WAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAC,cAAe,CAAE,SAAA,CAAAA,CAAU,CAAC,CAAC,CAAA,CACnD,eAAgB,EAAC,CACjB,sBAAA,CAAwB,CAAChf,CAAQ,CACnC,CACF,CACF,CAUO,SAASyrB,EAAAA,CACdzrB,CAAAA,CACAgf,EACAhZ,CAAAA,CACA9F,CAAAA,CACW,CACX,GAAI,CAACF,CAAAA,EAAY,CAACgf,CAAAA,EAAa,CAAChZ,CAAAA,EAAW,CAAC9F,CAAAA,CAC1C,MAAM,IAAI,KAAA,CACR,CAAA,4DAAA,EAA+DF,CAAQ,CAAA,YAAA,EAAegf,CAAS,CAAA,UAAA,EAAahZ,CAAO,CAAA,OAAA,EAAU9F,CAAI,CAAA,CACnI,CAAA,CAGF,OAAO,CACL,cACA,CACE,EAAA,CAAI,WAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAC,SAAA,CAAW,CAAE,SAAA,CAAA8e,CAAAA,CAAW,OAAA,CAAAhZ,CAAAA,CAAS,KAAA9F,CAAK,CAAC,CAAC,CAAA,CAC9D,cAAA,CAAgB,GAChB,sBAAA,CAAwB,CAACF,CAAQ,CACnC,CACF,CACF,CAqBO,SAAS0rB,EAAAA,CACd1rB,CAAAA,CACAgf,CAAAA,CACAxf,CAAAA,CACW,CACX,GAAI,CAACQ,CAAAA,EAAY,CAACgf,CAAAA,EAAa,CAACxf,EAC9B,MAAM,IAAI,KAAA,CAAM,2DAA2D,CAAA,CAG7E,OAAO,CACL,aAAA,CACA,CACE,GAAI,WAAA,CACJ,IAAA,CAAM,KAAK,SAAA,CAAU,CAAC,aAAA,CAAe,CAAE,SAAA,CAAAwf,CAAAA,CAAW,MAAAxf,CAAM,CAAC,CAAC,CAAA,CAC1D,cAAA,CAAgB,GAChB,sBAAA,CAAwB,CAACQ,CAAQ,CACnC,CACF,CACF,CAWO,SAAS2rB,EAAAA,CACd3rB,EACAgf,CAAAA,CACAhZ,CAAAA,CACAuK,EACAqb,CAAAA,CACW,CACX,GAAI,CAAC5rB,CAAAA,EAAY,CAACgf,GAAa,CAAChZ,CAAAA,EAAW,CAACuK,CAAAA,EAAYqb,CAAAA,GAAQ,MAAA,CAC9D,MAAM,IAAI,KAAA,CAAM,mDAAmD,CAAA,CAKrE,OAAO,CACL,cACA,CACE,EAAA,CAAI,WAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CANVA,CAAAA,CAAM,SAAA,CAAY,WAAA,CAMC,CAAE,SAAA,CAAA5M,CAAAA,CAAW,QAAAhZ,CAAAA,CAAS,QAAA,CAAAuK,CAAS,CAAC,CAAC,CAAA,CAC/D,eAAgB,EAAC,CACjB,sBAAA,CAAwB,CAACvQ,CAAQ,CACnC,CACF,CACF,CAYO,SAAS6rB,EAAAA,CACd7rB,CAAAA,CACAgf,EACAhZ,CAAAA,CACAuK,CAAAA,CACAub,CAAAA,CACAC,CAAAA,CACW,CACX,GACE,CAAC/rB,CAAAA,EACD,CAACgf,CAAAA,EACD,CAAChZ,CAAAA,EACD,CAACuK,GACDwb,CAAAA,GAAS,MAAA,CAET,MAAM,IAAI,KAAA,CAAM,oDAAoD,EAKtE,OAAO,CACL,cACA,CACE,EAAA,CAAI,YACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CANVA,CAAAA,CAAO,UAAA,CAAa,aAMD,CAAE,SAAA,CAAA/M,CAAAA,CAAW,OAAA,CAAAhZ,CAAAA,CAAS,QAAA,CAAAuK,EAAU,KAAA,CAAAub,CAAM,CAAC,CAAC,CAAA,CACtE,cAAA,CAAgB,EAAC,CACjB,sBAAA,CAAwB,CAAC9rB,CAAQ,CACnC,CACF,CACF,CAWO,SAASgsB,EAAAA,CACdhsB,CAAAA,CACAgf,CAAAA,CACAhZ,EACA8lB,CAAAA,CACAC,CAAAA,CACW,CACX,GAAI,CAAC/rB,CAAAA,EAAY,CAACgf,CAAAA,EAAa,CAAChZ,CAAAA,EAAW+lB,CAAAA,GAAS,MAAA,CAClD,MAAM,IAAI,KAAA,CAAM,oDAAoD,CAAA,CAKtE,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,WAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CANVA,EAAO,UAAA,CAAa,YAAA,CAMD,CAAE,SAAA,CAAA/M,CAAAA,CAAW,OAAA,CAAAhZ,EAAS,KAAA,CAAA8lB,CAAM,CAAC,CAAC,CAAA,CAC5D,cAAA,CAAgB,EAAC,CACjB,sBAAA,CAAwB,CAAC9rB,CAAQ,CACnC,CACF,CACF,CAWO,SAASisB,EAAAA,CACdjsB,CAAAA,CACAgf,CAAAA,CACAhZ,EACAuK,CAAAA,CACAub,CAAAA,CACW,CACX,GAAI,CAAC9rB,CAAAA,EAAY,CAACgf,CAAAA,EAAa,CAAChZ,CAAAA,EAAW,CAACuK,CAAAA,CAC1C,MAAM,IAAI,KAAA,CAAM,oDAAoD,EAGtE,OAAO,CACL,cACA,CACE,EAAA,CAAI,WAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAC,UAAA,CAAY,CAAE,SAAA,CAAAyO,CAAAA,CAAW,OAAA,CAAAhZ,CAAAA,CAAS,SAAAuK,CAAAA,CAAU,KAAA,CAAAub,CAAM,CAAC,CAAC,CAAA,CAC1E,eAAgB,EAAC,CACjB,uBAAwB,CAAC9rB,CAAQ,CACnC,CACF,CACF,CCvPO,IAAKksB,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,IAAM,KAAA,CACNA,CAAAA,CAAA,IAAA,CAAO,MAAA,CAFGA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,CAAA,CAQAC,QACVA,CAAAA,CAAA,KAAA,CAAQ,EAAA,CACRA,CAAAA,CAAA,IAAA,CAAO,GAAA,CAFGA,QAAA,EAAA,EAeL,SAASC,GACdrnB,CAAAA,CACAsnB,CAAAA,CACAC,EACAC,CAAAA,CACAhtB,CAAAA,CACAitB,CAAAA,CACW,CACX,GAAI,CAACznB,GAAS,CAACsnB,CAAAA,EAAgB,CAACC,CAAAA,EAAgB,CAAC/sB,CAAAA,EAAcitB,IAAY,MAAA,CACzE,MAAM,IAAI,KAAA,CAAM,4DAA4D,CAAA,CAG9E,OAAO,CACL,oBAAA,CACA,CACE,KAAA,CAAAznB,CAAAA,CACA,QAASynB,CAAAA,CACT,cAAA,CAAgBH,CAAAA,CAChB,cAAA,CAAgBC,CAAAA,CAChB,YAAA,CAAcC,EACd,UAAA,CAAAhtB,CACF,CACF,CACF,CAKA,SAASktB,GAAaxhC,CAAAA,CAAeyhC,CAAAA,CAAmB,CAAA,CAAW,CACjE,OAAOzhC,CAAAA,CAAM,QAAQyhC,CAAQ,CAC/B,CAqBO,SAASC,EAAAA,CACd5nB,EACAsnB,CAAAA,CACAC,CAAAA,CACAM,CAAAA,CACAC,CAAAA,CAA0B,EAAA,CACf,CAEX,GACE,CAAC9nB,CAAAA,EACD6nB,CAAAA,GAAc,MAAA,EACd,CAAC,MAAA,CAAO,SAASP,CAAY,CAAA,EAC7BA,CAAAA,EAAgB,CAAA,EAChB,CAAC,MAAA,CAAO,SAASC,CAAY,CAAA,EAC7BA,GAAgB,CAAA,CAEhB,MAAM,IAAI,KAAA,CAAM,sEAAsE,CAAA,CAIxF,IAAM/sB,CAAAA,CAAa,IAAI,KAAK,IAAA,CAAK,GAAA,EAAK,CAAA,CACtCA,CAAAA,CAAW,OAAA,CAAQA,EAAW,OAAA,EAAQ,CAAI,EAAE,CAAA,CAC5C,IAAMutB,CAAAA,CAAgBvtB,EAAW,WAAA,EAAY,CAAE,KAAA,CAAM,GAAG,CAAA,CAAE,CAAC,EAGrDitB,CAAAA,CAAU,CACd,CAAA,EAAGK,CAAQ,CAAA,EAAG,IAAA,CAAK,MAAM,IAAA,CAAK,GAAA,EAAI,CAAI,GAAI,CAAA,CACvC,QAAA,GACA,KAAA,CAAM,CAAC,CAAC,CAAA,CAAA,CAMPE,CAAAA,CACJH,CAAAA,GAAc,MACV,CAAA,EAAGH,EAAAA,CAAaJ,EAAc,CAAC,CAAC,OAChC,CAAA,EAAGI,EAAAA,CAAaJ,CAAAA,CAAc,CAAC,CAAC,CAAA,KAAA,CAAA,CAEhCW,EACJJ,CAAAA,GAAc,KAAA,CACV,CAAA,EAAGH,EAAAA,CAAaH,CAAAA,CAAc,CAAC,CAAC,CAAA,KAAA,CAAA,CAChC,CAAA,EAAGG,EAAAA,CAAaH,CAAAA,CAAc,CAAC,CAAC,OAEtC,OAAOF,EAAAA,CACLrnB,EACAgoB,CAAAA,CACAC,CAAAA,CACA,MACAF,CAAAA,CACAN,CACF,CACF,CAQO,SAASS,EAAAA,CAAwBloB,EAAeynB,CAAAA,CAA4B,CACjF,GAAI,CAACznB,CAAAA,EAASynB,CAAAA,GAAY,OACxB,MAAM,IAAI,KAAA,CAAM,4DAA4D,CAAA,CAG9E,OAAO,CACL,oBAAA,CACA,CACE,MAAAznB,CAAAA,CACA,OAAA,CAASynB,CACX,CACF,CACF,CAUO,SAASU,EAAAA,CACdlnB,CAAAA,CACAmnB,EACAC,CAAAA,CACAC,CAAAA,CACW,CACX,GAAI,CAACrnB,CAAAA,EAAW,CAACmnB,CAAAA,EAAc,CAACC,CAAAA,EAAa,CAACC,CAAAA,CAC5C,MAAM,IAAI,KAAA,CAAM,8DAA8D,EAGhF,OAAO,CACL,uBACA,CACE,OAAA,CAAArnB,CAAAA,CACA,WAAA,CAAamnB,CAAAA,CACb,UAAA,CAAYC,EACZ,YAAA,CAAcC,CAChB,CACF,CACF,CCtKO,SAASC,GACdtnB,CAAAA,CACAjB,CAAAA,CACAwoB,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACAnW,CAAAA,CACW,CACX,GAAI,CAACtR,GAAW,CAACynB,CAAAA,CACf,MAAM,IAAI,KAAA,CAAM,yDAAyD,CAAA,CAG3E,OAAO,CACL,iBACA,CACE,OAAA,CAAAznB,CAAAA,CACA,KAAA,CAAAjB,CAAAA,CACA,MAAA,CAAAwoB,EACA,OAAA,CAAAC,CAAAA,CACA,QAAA,CAAUC,CAAAA,CACV,aAAA,CAAenW,CACjB,CACF,CACF,CAUO,SAASoW,EAAAA,CACd1nB,CAAAA,CACAsR,EACAnB,CAAAA,CACAyR,CAAAA,CACW,CACX,GAAI,CAAC5hB,CAAAA,EAAWmQ,IAAwB,MAAA,CACtC,MAAM,IAAI,KAAA,CAAM,0DAA0D,CAAA,CAG5E,OAAO,CACL,iBAAA,CACA,CACE,OAAA,CAAAnQ,CAAAA,CACA,aAAA,CAAesR,GAAgB,EAAA,CAC/B,qBAAA,CAAuBnB,EACvB,UAAA,CAAayR,CAAAA,EAAc,EAC7B,CACF,CACF,CAoBO,SAAS+F,EAAAA,CACd5C,EACA6C,CAAAA,CACA7uB,CAAAA,CACA8uB,CAAAA,CACW,CACX,GAAI,CAAC9C,GAAW,CAAC6C,CAAAA,EAAkB,CAAC7uB,CAAAA,EAAQ,CAAC8uB,CAAAA,CAC3C,MAAM,IAAI,KAAA,CAAM,yDAAyD,CAAA,CAG3E,IAAM9oB,CAAAA,CAAmB,CACvB,gBAAA,CAAkB,CAAA,CAClB,aAAA,CAAe,EAAC,CAChB,SAAA,CAAW,CAAC,CAAChG,CAAAA,CAAK,cAAA,CAAgB,CAAC,CAAC,CACtC,EAEMwuB,CAAAA,CAAoB,CACxB,gBAAA,CAAkB,CAAA,CAClB,aAAA,CAAe,GACf,SAAA,CAAW,CAAC,CAACxuB,CAAAA,CAAK,eAAA,CAAiB,CAAC,CAAC,CACvC,CAAA,CAEMyuB,CAAAA,CAAqB,CACzB,gBAAA,CAAkB,EAClB,aAAA,CAAe,CAAC,CAAC,YAAA,CAAc,CAAC,CAAC,EACjC,SAAA,CAAW,CAAC,CAACzuB,CAAAA,CAAK,gBAAA,CAAkB,CAAC,CAAC,CACxC,CAAA,CAEA,OAAO,CACL,gBAAA,CACA,CACE,OAAA,CAAAgsB,CAAAA,CACA,gBAAA,CAAkB6C,CAAAA,CAClB,KAAA,CAAA7oB,CAAAA,CACA,OAAAwoB,CAAAA,CACA,OAAA,CAAAC,CAAAA,CACA,QAAA,CAAUzuB,CAAAA,CAAK,aAAA,CACf,cAAe,EAAA,CACf,GAAA,CAAA8uB,CACF,CACF,CACF,CASO,SAASC,EAAAA,CACd/C,CAAAA,CACA6C,EACA7uB,CAAAA,CACW,CACX,GAAI,CAACgsB,CAAAA,EAAW,CAAC6C,CAAAA,EAAkB,CAAC7uB,CAAAA,CAClC,MAAM,IAAI,KAAA,CAAM,gEAAgE,CAAA,CAGlF,IAAMgG,CAAAA,CAAmB,CACvB,gBAAA,CAAkB,CAAA,CAClB,aAAA,CAAe,EAAC,CAChB,SAAA,CAAW,CAAC,CAAChG,CAAAA,CAAK,eAAgB,CAAC,CAAC,CACtC,CAAA,CAEMwuB,CAAAA,CAAoB,CACxB,gBAAA,CAAkB,CAAA,CAClB,aAAA,CAAe,EAAC,CAChB,SAAA,CAAW,CAAC,CAACxuB,CAAAA,CAAK,eAAA,CAAiB,CAAC,CAAC,CACvC,CAAA,CAEMyuB,CAAAA,CAAqB,CACzB,gBAAA,CAAkB,EAClB,aAAA,CAAe,CAAC,CAAC,YAAA,CAAc,CAAC,CAAC,CAAA,CACjC,SAAA,CAAW,CAAC,CAACzuB,CAAAA,CAAK,gBAAA,CAAkB,CAAC,CAAC,CACxC,CAAA,CAEA,OAAO,CACL,wBAAA,CACA,CACE,OAAA,CAAAgsB,CAAAA,CACA,gBAAA,CAAkB6C,CAAAA,CAClB,KAAA,CAAA7oB,CAAAA,CACA,OAAAwoB,CAAAA,CACA,OAAA,CAAAC,EACA,QAAA,CAAUzuB,CAAAA,CAAK,cACf,aAAA,CAAe,EAAA,CACf,UAAA,CAAY,EACd,CACF,CACF,CAQO,SAASgvB,EAAAA,CAAoBhD,CAAAA,CAAiB8C,CAAAA,CAAwB,CAC3E,GAAI,CAAC9C,CAAAA,EAAW,CAAC8C,CAAAA,CACf,MAAM,IAAI,MAAM,wDAAwD,CAAA,CAG1E,OAAO,CACL,eAAA,CACA,CACE,OAAA,CAAA9C,CAAAA,CACA,GAAA,CAAA8C,CAAAA,CACA,UAAA,CAAY,EACd,CACF,CACF,CAaO,SAASG,EAAAA,CACdhoB,CAAAA,CACAioB,EACAC,CAAAA,CACAC,CAAAA,CACAV,CAAAA,CACAnW,CAAAA,CACW,CACX,GAAI,CAACtR,CAAAA,EAAW,CAACioB,CAAAA,EAAkB,CAACC,CAAAA,EAAkB,CAACT,EACrD,MAAM,IAAI,KAAA,CAAM,kEAAkE,CAAA,CAIpF,IAAMW,EAAgBH,CAAAA,CAAe,aAAA,CAAc,SAAA,CACjD,CAAC,CAACI,CAAG,IAAMA,CAAAA,GAAQH,CACrB,CAAA,CAEMI,CAAAA,CAAkB,CAAC,GAAGL,EAAe,aAAa,CAAA,CACpDG,GAAiB,CAAA,CAEnBE,CAAAA,CAAgBF,CAAa,CAAA,CAAI,CAACF,CAAAA,CAAgBC,CAAe,CAAA,CAGjEG,CAAAA,CAAgB,KAAK,CAACJ,CAAAA,CAAgBC,CAAe,CAAC,CAAA,CAGxD,IAAMI,EAAwB,CAC5B,GAAGN,CAAAA,CACH,aAAA,CAAeK,CACjB,CAAA,CAGA,OAAAC,CAAAA,CAAW,aAAA,CAAc,KAAK,CAACt+B,CAAAA,CAAGhG,IAAOgG,CAAAA,CAAE,CAAC,CAAA,CAAIhG,CAAAA,CAAE,CAAC,CAAA,CAAI,EAAI,EAAG,CAAA,CAEvD,CACL,gBAAA,CACA,CACE,OAAA,CAAA+b,EACA,OAAA,CAASuoB,CAAAA,CACT,QAAA,CAAUd,CAAAA,CACV,aAAA,CAAenW,CACjB,CACF,CACF,CAYO,SAASkX,EAAAA,CACdxoB,CAAAA,CACAioB,EACAQ,CAAAA,CACAhB,CAAAA,CACAnW,CAAAA,CACW,CACX,GAAI,CAACtR,GAAW,CAACioB,CAAAA,EAAkB,CAACQ,CAAAA,EAAkB,CAAChB,CAAAA,CACrD,MAAM,IAAI,KAAA,CAAM,mEAAmE,CAAA,CAGrF,IAAMc,CAAAA,CAAwB,CAC5B,GAAGN,CAAAA,CACH,cAAeA,CAAAA,CAAe,aAAA,CAAc,OAC1C,CAAC,CAACI,CAAG,CAAA,GAAMA,CAAAA,GAAQI,CACrB,CACF,CAAA,CAEA,OAAO,CACL,gBAAA,CACA,CACE,OAAA,CAAAzoB,EACA,OAAA,CAASuoB,CAAAA,CACT,QAAA,CAAUd,CAAAA,CACV,aAAA,CAAenW,CACjB,CACF,CACF,CASO,SAASoX,EAAAA,CACdC,CAAAA,CACAC,EACAhH,CAAAA,CAAoB,EAAC,CACV,CACX,GAAI,CAAC+G,GAAoB,CAACC,CAAAA,CACxB,MAAM,IAAI,KAAA,CAAM,iEAAiE,EAGnF,OAAO,CACL,yBAAA,CACA,CACE,kBAAA,CAAoBD,CAAAA,CACpB,qBAAsBC,CAAAA,CACtB,UAAA,CAAYhH,CACd,CACF,CACF,CAUO,SAASiH,EAAAA,CACdC,CAAAA,CACAH,CAAAA,CACAI,CAAAA,CACAnH,CAAAA,CAAoB,EAAC,CACV,CACX,GAAI,CAACkH,CAAAA,EAAmB,CAACH,GAAoB,CAACI,CAAAA,CAC5C,MAAM,IAAI,KAAA,CAAM,kEAAkE,EAGpF,OAAO,CACL,2BACA,CACE,gBAAA,CAAkBD,EAClB,kBAAA,CAAoBH,CAAAA,CACpB,mBAAA,CAAqBI,CAAAA,CACrB,UAAA,CAAYnH,CACd,CACF,CACF,CAUO,SAASoH,EAAAA,CACdL,CAAAA,CACAI,CAAAA,CACAE,EACArH,CAAAA,CAAoB,EAAC,CACV,CACX,GAAI,CAAC+G,GAAoB,CAACI,CAAAA,EAAqB,CAACE,CAAAA,CAC9C,MAAM,IAAI,MAAM,0DAA0D,CAAA,CAG5E,OAAO,CACL,iBAAA,CACA,CACE,mBAAoBN,CAAAA,CACpB,mBAAA,CAAqBI,CAAAA,CACrB,sBAAA,CAAwBE,CAAAA,CACxB,UAAA,CAAYrH,CACd,CACF,CACF,CC/WO,SAASsH,EAAAA,CACdtc,CAAAA,CACA5M,EACAgG,CAAAA,CACW,CAEX,GAAI,CAAC4G,CAAAA,EAAQ,CAAC5M,CAAAA,EAAW,CAAC,MAAA,CAAO,QAAA,CAASgG,CAAQ,CAAA,CAChD,MAAM,IAAI,KAAA,CAAM,qDAAqD,CAAA,CAGvE,OAAO,CACL,cACA,CACE,EAAA,CAAI,mBAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAA4G,CAAAA,CACA,QAAA5M,CAAAA,CACA,QAAA,CAAAgG,CACF,CAAC,CAAA,CACD,cAAA,CAAgB,CAAC4G,CAAI,CAAA,CACrB,uBAAwB,EAC1B,CACF,CACF,CAaO,SAASuc,GAAoBvc,CAAAA,CAAc5G,CAAAA,CAA6B,CAC7E,GAAI,CAAC4G,CAAAA,EAAQ,CAAC,MAAA,CAAO,SAAA,CAAU5G,CAAQ,CAAA,EAAKA,CAAAA,EAAY,EACtD,MAAM,IAAI,KAAA,CAAM,0DAA0D,CAAA,CAG5E,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,sBAAA,CACJ,IAAA,CAAM,IAAA,CAAK,UAAU,CACnB,IAAA,CAAA4G,CAAAA,CACA,QAAA,CAAA5G,CACF,CAAC,EACD,cAAA,CAAgB,CAAC4G,CAAI,CAAA,CACrB,sBAAA,CAAwB,EAC1B,CACF,CACF,CAUO,SAASwc,EAAAA,CACdxc,EACAtC,CAAAA,CACAC,CAAAA,CACAvE,CAAAA,CACW,CAEX,GAAI,CAAC4G,GAAQ,CAACtC,CAAAA,EAAU,CAACC,CAAAA,EAAY,CAAC,MAAA,CAAO,SAASvE,CAAQ,CAAA,CAC5D,MAAM,IAAI,KAAA,CAAM,mDAAmD,CAAA,CAGrE,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,iBACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAA4G,CAAAA,CACA,OAAAtC,CAAAA,CACA,QAAA,CAAAC,CAAAA,CACA,QAAA,CAAAvE,CACF,CAAC,EACD,cAAA,CAAgB,CAAC4G,CAAI,CAAA,CACrB,sBAAA,CAAwB,EAC1B,CACF,CACF,CAEA,IAAMyc,EAAAA,CAAmB,CAAC,SAAA,CAAW,YAAA,CAAc,UAAA,CAAY,OAAO,CAAA,CAY/D,SAASC,GACdC,CAAAA,CACAjf,CAAAA,CACAC,CAAAA,CACAxc,CAAAA,CAAkC,SAAA,CACvB,CACX,GAAI,CAACw7B,CAAAA,EAAe,CAACjf,CAAAA,EAAU,CAACC,EAC9B,MAAM,IAAI,KAAA,CAAM,6DAA6D,CAAA,CAE/E,GAAI,CAAC8e,EAAAA,CAAiB,QAAA,CAASt7B,CAAM,CAAA,CACnC,MAAM,IAAI,MAAM,gDAAgD,CAAA,CAGlE,OAAO,CACL,aAAA,CACA,CACE,GAAI,iBAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,CAAA,CAAG,EACH,EAAA,CAAI,WAAA,CACJ,MAAA,CAAAuc,CAAAA,CACA,QAAA,CAAAC,CAAAA,CACA,OAAAxc,CACF,CAAC,CAAA,CACD,cAAA,CAAgB,EAAC,CACjB,uBAAwB,CAACw7B,CAAW,CACtC,CACF,CACF,CASO,SAASC,EAAAA,CACdD,CAAAA,CACAjf,EACAC,CAAAA,CACW,CACX,GAAI,CAACgf,CAAAA,EAAe,CAACjf,CAAAA,EAAU,CAACC,CAAAA,CAC9B,MAAM,IAAI,KAAA,CAAM,+DAA+D,CAAA,CAGjF,OAAO,CACL,cACA,CACE,EAAA,CAAI,iBAAA,CACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,CAAA,CAAG,CAAA,CACH,GAAI,aAAA,CACJ,MAAA,CAAAD,EACA,QAAA,CAAAC,CACF,CAAC,CAAA,CACD,cAAA,CAAgB,GAChB,sBAAA,CAAwB,CAACgf,CAAW,CACtC,CACF,CACF,CAUO,SAASE,EAAAA,CACdC,CAAAA,CACAC,CAAAA,CACAv/B,CAAAA,CACA2S,CAAAA,CACW,CACX,GAAI,CAAC2sB,GAAU,CAACC,CAAAA,EAAY,CAACv/B,CAAAA,CAC3B,MAAM,IAAI,KAAA,CAAM,yDAAyD,CAAA,CAI3E,IAAMw/B,CAAAA,CAAmBx/B,CAAAA,CAAO,OAAA,CAAQ,UAAA,CAAY,OAAO,CAAA,CAE3D,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,uBAAA,CACJ,IAAA,CAAM,KAAK,SAAA,CAAU,CACnB,OAAAs/B,CAAAA,CACA,QAAA,CAAAC,EACA,MAAA,CAAQC,CAAAA,CACR,IAAA,CAAM7sB,CAAAA,EAAQ,EAChB,CAAC,EACD,cAAA,CAAgB,CAAC2sB,CAAM,CAAA,CACvB,sBAAA,CAAwB,EAC1B,CACF,CACF,CAUO,SAASG,EAAAA,CACdH,CAAAA,CACAxH,EACA93B,CAAAA,CACA2S,CAAAA,CACa,CACb,GAAI,CAAC2sB,GAAU,CAACxH,CAAAA,EAAgB,CAAC93B,CAAAA,CAC/B,MAAM,IAAI,MAAM,+DAA+D,CAAA,CAIjF,IAAM0/B,CAAAA,CAAY5H,CAAAA,CACf,IAAA,GACA,KAAA,CAAM,QAAQ,CAAA,CACd,MAAA,CAAO,OAAO,CAAA,CAGjB,GAAI4H,CAAAA,CAAU,MAAA,GAAW,EACvB,MAAM,IAAI,MAAM,8DAA8D,CAAA,CAIhF,OAAOA,CAAAA,CAAU,GAAA,CAAK3H,CAAAA,EACpBsH,GAAqBC,CAAAA,CAAQvH,CAAAA,CAAK,IAAA,EAAK,CAAG/3B,CAAAA,CAAQ2S,CAAI,CACxD,CACF,CAOO,SAASgtB,EAAAA,CAA6Bne,CAAAA,CAAyB,CACpE,GAAI,CAACA,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,iEAAiE,CAAA,CAGnF,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAI,sBACJ,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAAA,CACF,CAAC,CAAA,CACD,cAAA,CAAgB,CAACA,CAAI,CAAA,CACrB,sBAAA,CAAwB,EAC1B,CACF,CACF,CAUO,SAASoe,EAAAA,CACdhwB,EACAlN,CAAAA,CACAwmB,CAAAA,CACW,CACX,GAAI,CAACtZ,CAAAA,EAAY,CAAClN,CAAAA,EAAe,CAACwmB,CAAAA,CAChC,MAAM,IAAI,KAAA,CAAM,4DAA4D,CAAA,CAG9E,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAIxmB,EACJ,IAAA,CAAM,IAAA,CAAK,UAAUwmB,CAAI,CAAA,CACzB,eAAgB,CAACtZ,CAAQ,CAAA,CACzB,sBAAA,CAAwB,EAC1B,CACF,CACF,CAUO,SAASiwB,EAAAA,CACdjwB,CAAAA,CACAlN,CAAAA,CACAwmB,EACW,CACX,GAAI,CAACtZ,CAAAA,EAAY,CAAClN,CAAAA,EAAe,CAACwmB,CAAAA,CAChC,MAAM,IAAI,KAAA,CAAM,6DAA6D,EAG/E,OAAO,CACL,aAAA,CACA,CACE,EAAA,CAAIxmB,CAAAA,CACJ,KAAM,IAAA,CAAK,SAAA,CAAUwmB,CAAI,CAAA,CACzB,cAAA,CAAgB,GAChB,sBAAA,CAAwB,CAACtZ,CAAQ,CACnC,CACF,CACF,CC5RO,SAASkwB,EAAAA,CACdlwB,EACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,UAAA,CAAY,QAAQ,CAAA,CACrB9I,EACA,CAAC,CAAE,SAAA,CAAAiR,CAAU,CAAA,GAAM,CACjBiZ,GAAclqB,CAAAA,CAAWiR,CAAS,CACpC,CAAA,CACA,MAAOkf,CAAAA,CAAcxJ,IAAc,CAEjC,MAAMnd,EAAyBhC,CAAAA,EAAM,OAAA,CAASI,EAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,SAAA,CAAU1O,CAAAA,CAAW2mB,CAAAA,CAAU,SAAS,CAAA,CAC3DjY,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,SAAS,EAC3CjY,CAAAA,CAAU,QAAA,CAAS,WAAA,CAAYiY,CAAAA,CAAU,SAAS,CAAA,CAClDjY,EAAU,QAAA,CAAS,WAAA,CAAY1O,CAAS,CAC1C,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,SAAA,CACA,CAAE,aAAA,CAAeI,CAAAA,EAAiB,OAAQ,CAC5C,CACF,CCxBO,SAASwoB,EAAAA,CACdpwB,CAAAA,CACAwH,EACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,UAAA,CAAY,UAAU,CAAA,CACvB9I,CAAAA,CACA,CAAC,CAAE,SAAA,CAAAiR,CAAU,CAAA,GAAM,CACjBkZ,EAAAA,CAAgBnqB,CAAAA,CAAWiR,CAAS,CACtC,EACA,MAAOkf,CAAAA,CAAcxJ,CAAAA,GAAc,CAEjC,MAAMnd,CAAAA,CAAyBhC,GAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,SAAA,CAAU1O,EAAW2mB,CAAAA,CAAU,SAAS,EAC3DjY,CAAAA,CAAU,QAAA,CAAS,KAAKiY,CAAAA,CAAU,SAAS,CAAA,CAC3CjY,CAAAA,CAAU,QAAA,CAAS,WAAA,CAAYiY,EAAU,SAAS,CAAA,CAClDjY,CAAAA,CAAU,QAAA,CAAS,WAAA,CAAY1O,CAAS,CAC1C,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,SAAA,CACA,CAAE,cAAeI,CAAAA,EAAiB,OAAQ,CAC5C,CACF,CC3DO,SAASyoB,EAAAA,CACdrwB,CAAAA,CACA3J,CAAAA,CACA2S,EACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,WAAA,CAAa,KAAA,CAAOjJ,CAAQ,CAAA,CACtD,UAAA,CAAY,MAAO,CAAE,MAAA,CAAAsQ,EAAQ,QAAA,CAAAC,CAAS,IAAe,CACnD,GAAI,CAACvQ,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,+CAA0C,CAAA,CAkB5D,OAAA,CAdiB,MADA2X,GAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CACxB,CACE,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,MAAA,CAAAiG,CAAAA,CACA,QAAA,CAAAC,EACA,IAAA,CAAAla,CACF,CAAC,CACH,CACF,CAAA,EACgB,MAClB,CAAA,CACA,SAAA,CAAW,IAAM,CACf2S,CAAAA,GACA4D,CAAAA,EAAe,CAAE,kBAAkB,CACjC,QAAA,CAAU,CAAC,UAAA,CAAY,WAAA,CAAa5M,CAAQ,CAC9C,CAAC,EACH,EACA,OAAA,CAAA6mB,CACF,CAAC,CACH,CC3CO,SAASyJ,EAAAA,CACdtwB,CAAAA,CACA3J,CAAAA,CACA2S,EACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,WAAA,CAAa,QAAA,CAAUjJ,CAAQ,CAAA,CACzD,UAAA,CAAY,MAAOuwB,CAAAA,EAAuB,CACxC,GAAI,CAACvwB,CAAAA,EAAY,CAAC3J,EAChB,MAAM,IAAI,KAAA,CAAM,+CAA0C,CAAA,CAiB5D,OAAA,CAbiB,MADA2X,CAAAA,EAAc,CAE7B3D,EAAO,cAAA,CAAiB,+BAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,EAAA,CAAIkmB,CAAAA,CACJ,KAAAl6B,CACF,CAAC,CACH,CACF,CAAA,EACgB,IAAA,EAClB,CAAA,CACA,SAAA,CAAW,IAAM,CACf2S,CAAAA,GACA4D,CAAAA,EAAe,CAAE,iBAAA,CAAkB,CACjC,QAAA,CAAU,CAAC,WAAY,WAAA,CAAa5M,CAAQ,CAC9C,CAAC,EACH,CAAA,CACA,QAAA6mB,CACF,CAAC,CACH,CCrCO,SAAS2J,GACdxwB,CAAAA,CACA3J,CAAAA,CACA2S,EACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,WAAA,CAAa,KAAA,CAAOjJ,CAAQ,CAAA,CACtD,UAAA,CAAY,MAAOgG,CAAAA,EAAoB,CACrC,GAAI,CAAChG,CAAAA,EAAY,CAAC3J,EAChB,MAAM,IAAI,KAAA,CAAM,+CAA0C,CAAA,CAiB5D,OAAA,CAbiB,MADA2X,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CACxB,CACE,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,OAAA,CAAArE,CAAAA,CACA,IAAA,CAAA3P,CACF,CAAC,CACH,CACF,CAAA,EACgB,IAAA,EAClB,CAAA,CACA,SAAA,CAAW,CAACqwB,CAAAA,CAAO1gB,CAAAA,GAAY,CAC7BgD,GAAU,CACV,IAAMynB,CAAAA,CAAK7jB,CAAAA,EAAe,CAC1B6jB,CAAAA,CAAG,kBAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,QAAA,CAAS,SAAA,CAAU1O,CAAQ,CAAE,CAAC,CAAA,CACzEywB,EAAG,iBAAA,CAAkB,CAAE,SAAU/hB,CAAAA,CAAU,QAAA,CAAS,iBAAA,CAAkB1O,CAAQ,CAAE,CAAC,EACjFywB,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,QAAA,CAAS,cAAc1O,CAAAA,CAAWgG,CAAO,CAAE,CAAC,EACzF,CAAA,CACA,QAAA6gB,CACF,CAAC,CACH,CCpCO,SAAS6J,EAAAA,CACd1wB,CAAAA,CACA3J,CAAAA,CACA2S,EACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,WAAA,CAAa,QAAA,CAAUjJ,CAAQ,CAAA,CACzD,UAAA,CAAY,MAAOgG,CAAAA,EAAoB,CACrC,GAAI,CAAChG,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,+CAA0C,CAAA,CAI5D,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,gCACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CACnB,QAAArE,CAAAA,CACA,IAAA,CAAA3P,CACF,CAAC,CACH,CACF,EACA,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,MAAM,CAAA,2BAAA,EAA8BA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAEjE,OAAOA,EAAS,IAAA,EAClB,EACA,QAAA,CAAU,MAAOwI,GAAoB,CACnC,GAAI,CAAChG,CAAAA,CACH,OAGF,IAAMywB,EAAK7jB,CAAAA,EAAe,CACpB+jB,CAAAA,CAAUjiB,CAAAA,CAAU,QAAA,CAAS,SAAA,CAAU1O,CAAQ,CAAA,CAC/C4wB,CAAAA,CAAiBliB,CAAAA,CAAU,QAAA,CAAS,iBAAA,CAAkB1O,CAAQ,EAC9D6wB,CAAAA,CAAWniB,CAAAA,CAAU,SAAS,aAAA,CAAc1O,CAAAA,CAAUgG,CAAO,CAAA,CAEnE,MAAM,OAAA,CAAQ,GAAA,CAAI,CAChByqB,CAAAA,CAAG,cAAc,CAAE,QAAA,CAAUE,CAAQ,CAAC,CAAA,CACtCF,CAAAA,CAAG,cAAc,CAAE,QAAA,CAAUG,CAAe,CAAC,CAAA,CAC7CH,CAAAA,CAAG,cAAc,CAAE,QAAA,CAAUI,CAAS,CAAC,CACzC,CAAC,EAED,IAAMC,CAAAA,CAAeL,CAAAA,CAAG,YAAA,CAAgCE,CAAO,CAAA,CAC3DG,GACFL,CAAAA,CAAG,YAAA,CACDE,CAAAA,CACAG,CAAAA,CAAa,MAAA,CAAQC,CAAAA,EAAMA,EAAE,OAAA,GAAY/qB,CAAO,CAClD,CAAA,CAGF,IAAMgrB,CAAAA,CAAgBP,EAAG,YAAA,CAAsBI,CAAQ,EACvDJ,CAAAA,CAAG,YAAA,CAAsBI,EAAU,KAAK,CAAA,CAExC,IAAMI,CAAAA,CAAkBR,CAAAA,CAAG,cAAA,CAA+D,CACxF,QAAA,CAAUG,CACZ,CAAC,CAAA,CACKM,CAAAA,CAAmB,IAAI,IAAID,CAAe,CAAA,CAChD,IAAA,GAAW,CAAC3hC,CAAAA,CAAKZ,CAAI,IAAKuiC,CAAAA,CACpBviC,CAAAA,EACF+hC,EAAG,YAAA,CAAanhC,CAAAA,CAAK,CACnB,GAAGZ,CAAAA,CACH,KAAA,CAAOA,CAAAA,CAAK,KAAA,CAAM,GAAA,CAAK+jB,IAAU,CAC/B,GAAGA,CAAAA,CACH,IAAA,CAAMA,CAAAA,CAAK,IAAA,CAAK,OAAQse,CAAAA,EAAMA,CAAAA,CAAE,OAAA,GAAY/qB,CAAO,CACrD,CAAA,CAAE,CACJ,CAAC,CAAA,CAIL,OAAO,CAAE,YAAA,CAAA8qB,EAAc,gBAAA,CAAAI,CAAAA,CAAkB,aAAA,CAAAF,CAAc,CACzD,CAAA,CACA,UAAW,CAACtK,CAAAA,CAAO1gB,CAAAA,GAAY,CAC7BgD,CAAAA,EAAU,CACV,IAAMynB,CAAAA,CAAK7jB,CAAAA,EAAe,CAC1B6jB,CAAAA,CAAG,iBAAA,CAAkB,CAAE,SAAU/hB,CAAAA,CAAU,QAAA,CAAS,UAAU1O,CAAQ,CAAE,CAAC,CAAA,CACzEywB,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,SAAS,iBAAA,CAAkB1O,CAAQ,CAAE,CAAC,CAAA,CACjFywB,CAAAA,CAAG,kBAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,QAAA,CAAS,aAAA,CAAc1O,CAAAA,CAAWgG,CAAO,CAAE,CAAC,EACzF,CAAA,CACA,OAAA,CAAS,CAACpM,CAAAA,CAAKoM,CAAAA,CAASmrB,CAAAA,GAAY,CAClC,IAAMV,CAAAA,CAAK7jB,GAAe,CAI1B,GAHIukB,CAAAA,EAAS,YAAA,EACXV,CAAAA,CAAG,YAAA,CAAa/hB,EAAU,QAAA,CAAS,SAAA,CAAU1O,CAAQ,CAAA,CAAGmxB,CAAAA,CAAQ,YAAY,EAE1EA,CAAAA,EAAS,gBAAA,CACX,OAAW,CAAC7hC,CAAAA,CAAKZ,CAAI,CAAA,GAAKyiC,CAAAA,CAAQ,gBAAA,CAChCV,CAAAA,CAAG,YAAA,CAAanhC,CAAAA,CAAKZ,CAAI,CAAA,CAGzByiC,CAAAA,EAAS,aAAA,GAAkB,MAAA,EAC7BV,CAAAA,CAAG,YAAA,CACD/hB,EAAU,QAAA,CAAS,aAAA,CAAc1O,CAAAA,CAAWgG,CAAO,CAAA,CACnDmrB,CAAAA,CAAQ,aACV,CAAA,CAEFtK,CAAAA,CAAQjtB,CAAG,EACb,CACF,CAAC,CACH,CCxGA,eAAew3B,EAAAA,CACbC,CAAAA,CACArxB,CAAAA,CACA3J,EACAiL,CAAAA,CAC+B,CAC/B,GAAI,CAACtB,CAAAA,EAAY,CAAC3J,EAChB,MAAM,IAAI,KAAA,CAAM,mDAA8C,CAAA,CAIhE,IAAM6jB,EAAaH,EAAAA,CAAazY,CAAG,CAAA,CACnC,GAAI4Y,CAAAA,GAAe,IAAA,CACjB,MAAM,IAAI,KAAA,CAAM,kDAA6C,CAAA,CAI/D,IAAM1c,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,eAAA,CAAkBgnB,CAAAA,CAAO,CAC/E,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,UAAU,CACnB,GAAA,CAAKnX,EACL,IAAA,CAAA7jB,CACF,CAAC,CACH,CAAC,CAAA,CACD,GAAI,CAACmH,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,aAAa6zB,CAAAA,GAAU,mBAAA,CAAsB,KAAA,CAAQ,QAAQ,CAAA,eAAA,EAAkB7zB,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAElH,OAAQ,MAAMA,CAAAA,CAAS,MACzB,CAGO,SAAS8zB,EAAAA,CACdtxB,CAAAA,CACA3J,CAAAA,CACAiL,EAC+B,CAC/B,OAAO8vB,EAAAA,CAAmB,mBAAA,CAAqBpxB,CAAAA,CAAU3J,CAAAA,CAAMiL,CAAG,CACpE,CAGO,SAASiwB,EAAAA,CACdvxB,CAAAA,CACA3J,CAAAA,CACAiL,EAC+B,CAC/B,OAAO8vB,GAAmB,sBAAA,CAAwBpxB,CAAAA,CAAU3J,EAAMiL,CAAG,CACvE,CChDO,SAASkwB,EAAAA,CACdxxB,CAAAA,CACA3J,CAAAA,CACA2S,CAAAA,CACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,gBAAiB,KAAA,CAAOjJ,CAAQ,EAC1D,UAAA,CAAasB,CAAAA,EAAgBgwB,GAAsBtxB,CAAAA,CAAU3J,CAAAA,CAAMiL,CAAG,CAAA,CACtE,SAAA,CAAW,CAAColB,EAAOplB,CAAAA,GAAQ,CACzB0H,CAAAA,EAAU,CACV,IAAMynB,CAAAA,CAAK7jB,GAAe,CAC1B6jB,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,SAAS,YAAA,CAAa1O,CAAQ,CAAE,CAAC,CAAA,CAC5EywB,EAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,QAAA,CAAS,oBAAA,CAAqB1O,CAAQ,CAAE,CAAC,CAAA,CACpFywB,CAAAA,CAAG,iBAAA,CAAkB,CACnB,SAAU/hB,CAAAA,CAAU,QAAA,CAAS,gBAAA,CAAiB1O,CAAAA,CAAW+Z,EAAAA,CAAazY,CAAG,GAAKA,CAAG,CACnF,CAAC,EACH,CAAA,CACA,QAAAulB,CACF,CAAC,CACH,CCEO,SAAS4K,EAAAA,CACdzxB,CAAAA,CACA3J,CAAAA,CACA2S,CAAAA,CACA6d,EACoF,CACpF,IAAM6K,CAAAA,CAAiBxX,CAAAA,EAAmC,CACxD,IAAMuW,EAAK7jB,CAAAA,EAAe,CAC1B6jB,EAAG,iBAAA,CAAkB,CAAE,SAAU/hB,CAAAA,CAAU,QAAA,CAAS,YAAA,CAAa1O,CAAQ,CAAE,CAAC,EAC5EywB,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,QAAA,CAAS,qBAAqB1O,CAAQ,CAAE,CAAC,CAAA,CAChFka,CAAAA,EACFuW,CAAAA,CAAG,kBAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,QAAA,CAAS,gBAAA,CAAiB1O,CAAAA,CAAWka,CAAU,CAAE,CAAC,EAEjG,CAAA,CAEA,OAAO,CACL,YAAa,CAAC,UAAA,CAAY,eAAA,CAAiB,QAAA,CAAUla,CAAQ,CAAA,CAC7D,WAAasB,CAAAA,EAAgBiwB,EAAAA,CAAyBvxB,CAAAA,CAAU3J,CAAAA,CAAMiL,CAAG,CAAA,CACzE,SAAU,MAAOA,CAAAA,EAAgB,CAC/B,IAAM4Y,CAAAA,CAAaH,GAAazY,CAAG,CAAA,CACnC,GAAI,CAACtB,CAAAA,EAAYka,CAAAA,GAAe,KAC9B,OAGF,IAAMuW,CAAAA,CAAK7jB,CAAAA,EAAe,CACpB+jB,CAAAA,CAAUjiB,EAAU,QAAA,CAAS,YAAA,CAAa1O,CAAQ,CAAA,CAClD4wB,CAAAA,CAAiBliB,CAAAA,CAAU,SAAS,oBAAA,CAAqB1O,CAAQ,EACjE6wB,CAAAA,CAAWniB,CAAAA,CAAU,SAAS,gBAAA,CAAiB1O,CAAAA,CAAUka,CAAU,CAAA,CAEzE,MAAM,OAAA,CAAQ,IAAI,CAChBuW,CAAAA,CAAG,aAAA,CAAc,CAAE,QAAA,CAAUE,CAAQ,CAAC,CAAA,CACtCF,CAAAA,CAAG,aAAA,CAAc,CAAE,QAAA,CAAUG,CAAe,CAAC,CAAA,CAC7CH,CAAAA,CAAG,cAAc,CAAE,QAAA,CAAUI,CAAS,CAAC,CACzC,CAAC,CAAA,CAED,IAAMC,CAAAA,CAAeL,EAAG,YAAA,CAAmCE,CAAO,CAAA,CAC9DG,CAAAA,EACFL,CAAAA,CAAG,YAAA,CACDE,EACAG,CAAAA,CAAa,MAAA,CAAQC,CAAAA,EAAMA,CAAAA,CAAE,GAAA,GAAQ7W,CAAU,CACjD,CAAA,CAGF,IAAM8W,EAAgBP,CAAAA,CAAG,YAAA,CAAsBI,CAAQ,CAAA,CACvDJ,CAAAA,CAAG,YAAA,CAAsBI,CAAAA,CAAU,KAAK,CAAA,CAExC,IAAMI,CAAAA,CAAkBR,CAAAA,CAAG,cAAA,CAA8B,CAAE,QAAA,CAAUG,CAAe,CAAC,CAAA,CAC/EM,CAAAA,CAAmB,IAAI,GAAA,CAAID,CAAe,CAAA,CAChD,OAAW,CAAC3hC,CAAAA,CAAKZ,CAAI,CAAA,GAAKuiC,CAAAA,CACpBviC,GACF+hC,CAAAA,CAAG,YAAA,CAAanhC,CAAAA,CAAK,CACnB,GAAGZ,CAAAA,CACH,MAAOA,CAAAA,CAAK,KAAA,CAAM,GAAA,CAAK+jB,CAAAA,GAAU,CAC/B,GAAGA,EACH,IAAA,CAAMA,CAAAA,CAAK,IAAA,CAAK,MAAA,CAAQse,CAAAA,EAAMA,CAAAA,CAAE,MAAQ7W,CAAU,CACpD,EAAE,CACJ,CAAC,EAIL,OAAO,CAAE,UAAA,CAAAA,CAAAA,CAAY,YAAA,CAAA4W,CAAAA,CAAc,iBAAAI,CAAAA,CAAkB,aAAA,CAAAF,CAAc,CACrE,CAAA,CACA,SAAA,CAAW,CAACtK,CAAAA,CAAOplB,CAAAA,GAAQ,CACzB0H,CAAAA,EAAU,CACV0oB,CAAAA,CAAc3X,GAAazY,CAAG,CAAA,EAAK,MAAS,EAC9C,CAAA,CACA,QAAS,CAAC1H,CAAAA,CAAK+3B,CAAAA,CAAMR,CAAAA,GAAY,CAC/B,IAAMV,EAAK7jB,CAAAA,EAAe,CAC1B,GAAIukB,CAAAA,CAAS,CACPA,CAAAA,CAAQ,cACVV,CAAAA,CAAG,YAAA,CAAa/hB,CAAAA,CAAU,QAAA,CAAS,YAAA,CAAa1O,CAAQ,EAAGmxB,CAAAA,CAAQ,YAAY,CAAA,CAEjF,IAAA,GAAW,CAAC7hC,CAAAA,CAAKZ,CAAI,CAAA,GAAKyiC,CAAAA,CAAQ,gBAAA,CAChCV,CAAAA,CAAG,YAAA,CAAanhC,CAAAA,CAAKZ,CAAI,CAAA,CAE3B,IAAMmiC,CAAAA,CAAWniB,CAAAA,CAAU,QAAA,CAAS,gBAAA,CAAiB1O,EAAWmxB,CAAAA,CAAQ,UAAU,CAAA,CAC9EA,CAAAA,CAAQ,aAAA,GAAkB,MAAA,CAC5BV,EAAG,YAAA,CAAaI,CAAAA,CAAUM,EAAQ,aAAa,CAAA,CAI/CV,EAAG,aAAA,CAAc,CAAE,QAAA,CAAUI,CAAAA,CAAU,KAAA,CAAO,IAAK,CAAC,EAExD,CACAa,CAAAA,CAAcP,CAAAA,EAAS,UAAU,CAAA,CACjCtK,EAAQjtB,CAAG,EACb,CACF,CACF,CAEO,SAASg4B,GACd5xB,CAAAA,CACA3J,CAAAA,CACA2S,EACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAYwoB,EAAAA,CAAiCzxB,CAAAA,CAAU3J,CAAAA,CAAM2S,CAAAA,CAAW6d,CAAO,CAAC,CACzF,CCnGO,SAASgL,EAAAA,CACd/5B,CAAAA,CACAg6B,CAAAA,CACwB,CACxB,IAAMn2B,CAAAA,CAAS,IAAI,IAEnB,OAAA7D,CAAAA,CAAS,QAAQ,CAAC,CAACxI,CAAAA,CAAK43B,CAAM,CAAA,GAAM,CAClCvrB,EAAO,GAAA,CAAIrM,CAAAA,CAAI,QAAA,EAAS,CAAG43B,CAAM,EACnC,CAAC,CAAA,CAED4K,CAAAA,CAAU,OAAA,CAAQ,CAAC,CAACxiC,CAAAA,CAAK43B,CAAM,CAAA,GAAM,CACnCvrB,EAAO,GAAA,CAAIrM,CAAAA,CAAI,UAAS,CAAG43B,CAAM,EACnC,CAAC,CAAA,CAEM,KAAA,CAAM,KAAKvrB,CAAAA,CAAO,OAAA,EAAS,CAAA,CAC/B,IAAA,CAAK,CAAC,CAACikB,CAAI,CAAA,CAAG,CAACC,CAAI,CAAA,GAAMD,CAAAA,CAAK,cAAcC,CAAI,CAAC,EACjD,GAAA,CAAI,CAAC,CAACvwB,CAAAA,CAAK43B,CAAM,CAAA,GAAM,CAAC53B,CAAAA,CAAK43B,CAAM,CAAqB,CAC7D,CAOO,SAAS6K,EAAAA,CACd/xB,CAAAA,CACApB,CAAAA,CACA,CACA,GAAM,CAAE,IAAA,CAAMozB,CAAY,CAAA,CAAI5kB,mBAAAA,CAAS4H,EAA2BhV,CAAQ,CAAC,EAE3E,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,aAAA,CAAejJ,CAAQ,CAAA,CACjD,WAAY,MAAO,CACjB,IAAA,CAAAjB,CAAAA,CACA,WAAA,CAAAkzB,CAAAA,CAAc,MACd,UAAA,CAAAC,CAAAA,CACA,YAAA,CAAAC,CAAAA,CAAe,EAAC,CAChB,wBAAAC,CAAAA,CAA0B,EAC5B,CAAA,GAAe,CACb,GAAIrzB,CAAAA,CAAK,MAAA,GAAW,CAAA,CAClB,MAAM,IAAI,KAAA,CACR,oDACF,CAAA,CAGF,GAAI,CAACizB,CAAAA,CACH,MAAM,IAAI,MACR,gEACF,CAAA,CAGF,IAAMK,CAAAA,CAAeC,CAAAA,EAAwB,CAC3C,IAAM9qB,CAAAA,CAAkB,IAAA,CAAK,KAAA,CAAM,IAAA,CAAK,SAAA,CAAUwqB,CAAAA,CAAYM,CAAO,CAAC,CAAC,CAAA,CAKjEC,CAAAA,CAAkB,CACtB,GAH+BH,EAAwBE,CAAO,CAAA,EAAK,EAAC,CAIpE,GAAIF,CAAAA,CAAwBE,CAAO,CAAA,GAAM,MAAA,CAAYH,CAAAA,CAAe,EACtE,CAAA,CAGMK,EAAeP,CAAAA,CACjBzqB,CAAAA,CAAK,UAAU,MAAA,CAAO,CAAC,CAAClY,CAAG,CAAA,GAAM,CAACijC,CAAAA,CAAgB,QAAA,CAASjjC,CAAAA,CAAI,UAAU,CAAC,CAAA,CAC1E,EAAC,CAEL,OAAAkY,EAAK,SAAA,CAAYqqB,EAAAA,CACfW,CAAAA,CACAzzB,CAAAA,CAAK,GAAA,CACH,CAAC0zB,EAAQ5oC,CAAAA,GACP,CAAC4oC,EAAOH,CAAO,CAAA,CAAE,cAAa,CAAE,QAAA,EAAS,CAAGzoC,CAAAA,CAAI,CAAC,CAIrD,CACF,CAAA,CAEO2d,CACT,CAAA,CAEA,OAAOpC,EAAAA,CACL,CAAC,CAAC,gBAAA,CAAkB,CAClB,OAAA,CAASpF,CAAAA,CACT,aAAA,CAAegyB,CAAAA,CAAY,cAC3B,KAAA,CAAOK,CAAAA,CAAY,OAAO,CAAA,CAC1B,MAAA,CAAQA,EAAY,QAAQ,CAAA,CAC5B,OAAA,CAASA,CAAAA,CAAY,SAAS,CAAA,CAE9B,SAAUtzB,CAAAA,CAAK,CAAC,CAAA,CAAE,QAAA,CAAS,YAAA,EAAa,CAAE,UAC5C,CAAC,CAAC,CAAA,CACFmzB,CACF,CACF,EACA,GAAGtzB,CACL,CAAC,CACH,CCjGO,SAAS8zB,GACd1yB,CAAAA,CACApB,CAAAA,CACA,CACA,GAAM,CAAE,IAAA,CAAMozB,CAAY,CAAA,CAAI5kB,mBAAAA,CAAS4H,CAAAA,CAA2BhV,CAAQ,CAAC,CAAA,CAErE,CAAE,WAAA,CAAa2yB,CAAW,EAAIZ,EAAAA,CAAyB/xB,CAAQ,EAErE,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,kBAAmBjJ,CAAQ,CAAA,CACrD,UAAA,CAAY,MAAO,CACjB,WAAA,CAAA4yB,EACA,eAAA,CAAAC,CAAAA,CACA,WAAA,CAAAZ,CACF,CAAA,GAAe,CACb,GAAI,CAACD,CAAAA,CACH,MAAM,IAAI,KAAA,CACR,oEACF,CAAA,CAEF,IAAME,CAAAA,CAAatyB,CAAAA,CAAW,SAAA,CAC5BI,CAAAA,CACA6yB,EACA,OACF,CAAA,CAEA,OAAOF,CAAAA,CAAW,CAChB,UAAA,CAAAT,EACA,WAAA,CAAAD,CAAAA,CACA,IAAA,CAAM,CACJ,CACE,KAAA,CAAOryB,EAAW,SAAA,CAAUI,CAAAA,CAAU4yB,EAAa,OAAO,CAAA,CAC1D,OAAQhzB,CAAAA,CAAW,SAAA,CAAUI,CAAAA,CAAU4yB,CAAAA,CAAa,QAAQ,CAAA,CAC5D,QAAShzB,CAAAA,CAAW,SAAA,CAAUI,CAAAA,CAAU4yB,CAAAA,CAAa,SAAS,CAAA,CAC9D,SAAUhzB,CAAAA,CAAW,SAAA,CAAUI,CAAAA,CAAU4yB,CAAAA,CAAa,MAAM,CAC9D,CACF,CACF,CAAC,CACH,CAAA,CACA,GAAGh0B,CACL,CAAC,CACH,CCrCO,SAASk0B,EAAAA,CACd9yB,CAAAA,CACApB,CAAAA,CACA4I,CAAAA,CACA,CACA,IAAMgf,EAAcC,yBAAAA,EAAe,CAE7B,CAAE,IAAA,CAAA/3B,CAAK,EAAI0e,mBAAAA,CAAS4H,CAAAA,CAA2BhV,CAAQ,CAAC,CAAA,CAE9D,OAAOiJ,uBAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,gBAAA,CAAkBva,CAAAA,EAAM,IAAI,CAAA,CACtD,UAAA,CAAY,MAAO,CAAE,WAAA,CAAAqkC,CAAAA,CAAa,KAAA/tB,CAAAA,CAAM,GAAA,CAAA1V,CAAI,CAAA,GAAqB,CAC/D,GAAI,CAACZ,CAAAA,CACH,MAAM,IAAI,KAAA,CACR,oEACF,EAGF,IAAM8+B,CAAAA,CAAU,IAAA,CAAK,KAAA,CAAM,IAAA,CAAK,SAAA,CAAU9+B,EAAK,OAAO,CAAC,CAAA,CAEvD8+B,CAAAA,CAAQ,aAAA,CAAgBA,CAAAA,CAAQ,cAAc,MAAA,CAC5C,CAAC,CAACxnB,CAAO,CAAA,GAAMA,IAAY+sB,CAC7B,CAAA,CAEA,IAAMj0B,CAAAA,CAAgB,CACpB,OAAA,CAASpQ,EAAK,IAAA,CACd,OAAA,CAAA8+B,CAAAA,CACA,QAAA,CAAU9+B,CAAAA,CAAK,QAAA,CACf,cAAeA,CAAAA,CAAK,aACtB,CAAA,CAEA,GAAIsW,CAAAA,GAAS,KAAA,EAAS1V,EACpB,OAAO8V,EAAAA,CAAoB,CAAC,CAAC,gBAAA,CAAkBtG,CAAa,CAAC,CAAA,CAAGxP,CAAG,CAAA,CAC9D,GAAI0V,CAAAA,GAAS,WAAY,CAC9B,GAAI,CAACwC,CAAAA,EAAM,OAAA,EAAS,qBAAA,CAClB,MAAM,IAAI,KAAA,CAAM,qDAAgD,CAAA,CAElE,OAAOA,CAAAA,CAAK,QAAQ,qBAAA,CAClB9Y,CAAAA,CAAK,KACL,CAAC,CAAC,iBAAkBoQ,CAAa,CAAC,CAAA,CAClC,QACF,CACF,CAAA,YACM,CAACF,CAAAA,CAAQ,aAAA,EAAiB,OAAA,CAAQ,GAAA,CAAI,QAAA,GAAa,eACrD,OAAA,CAAQ,IAAA,CAAK,sHAAsH,CAAA,CAE9HmJ,mBAAAA,CAAG,aAAA,CACR,CAAC,gBAAA,CAAkBjJ,CAAa,EAChCF,CAAAA,CAAQ,aAAA,CAAgB,CAAE,QAAA,CAAUA,CAAAA,CAAQ,aAAc,CAAA,CAAI,EAAC,CAC/D,IAAM,CAAC,CACT,CAEJ,CAAA,CACA,OAAA,CAASA,CAAAA,CAAQ,QACjB,SAAA,CAAW,CAAC6e,CAAAA,CAAMvU,CAAAA,CAAS8pB,CAAAA,GAAQ,CAChCp0B,EAAQ,SAAA,GAEQ6e,CAAAA,CAAMvU,EAAS8pB,CAAG,CAAA,CACnCxM,EAAY,YAAA,CACVxR,CAAAA,CAA2BhV,CAAQ,CAAA,CAAE,QAAA,CACpCtR,CAAAA,GACE,CACC,GAAGA,CAAAA,CACH,OAAA,CAAS,CACP,GAAGA,CAAAA,EAAM,QACT,aAAA,CACEA,CAAAA,EAAM,OAAA,EAAS,aAAA,EAAe,MAAA,CAC5B,CAAC,CAACsX,CAAO,CAAA,GAAMA,CAAAA,GAAYkD,CAAAA,CAAQ,WACrC,CAAA,EAAK,EACT,CACF,CAAA,CACJ,EACF,CACF,CAAC,CACH,CC1EO,SAAS+pB,EAAAA,CACdjzB,CAAAA,CACA3J,EACAuI,CAAAA,CACA4I,CAAAA,CACA,CACA,GAAM,CAAE,KAAA9Y,CAAK,CAAA,CAAI0e,mBAAAA,CAAS4H,CAAAA,CAA2BhV,CAAQ,CAAC,EAE9D,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,WAAYva,CAAAA,EAAM,IAAI,CAAA,CAChD,UAAA,CAAY,MAAO,CAAE,YAAAqkC,CAAAA,CAAa,IAAA,CAAA/tB,EAAM,GAAA,CAAA1V,CAAAA,CAAK,MAAA4jC,CAAM,CAAA,GAAqB,CACtE,GAAI,CAACxkC,CAAAA,CACH,MAAM,IAAI,KAAA,CACR,qEACF,CAAA,CAGF,IAAMoQ,CAAAA,CAAgB,CACpB,kBAAA,CAAoBpQ,CAAAA,CAAK,IAAA,CACzB,oBAAA,CAAsBqkC,CAAAA,CACtB,UAAA,CAAY,EACd,CAAA,CAEA,GAAI/tB,CAAAA,GAAS,QAAA,CAAU,CACrB,GAAI,CAAC3O,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,6CAAwC,CAAA,CAI1D,IAAMmH,CAAAA,CAAW,MAFAwQ,CAAAA,EAAc,CAEC3D,EAAO,cAAA,CAAiB,6BAAA,CAA+B,CACrF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAAhU,CAAAA,CACA,KAAA,CAAA68B,CAAAA,CACA,UAAA,CAAY,CACV,GAAGxkC,CAAAA,CAAK,KAAA,CAAM,SAAA,CACd,GAAGA,CAAAA,CAAK,MAAA,CAAO,UACf,GAAGA,CAAAA,CAAK,OAAA,CAAQ,SAAA,CAChBA,CAAAA,CAAK,QACP,CACF,CAAC,CACH,CAAC,CAAA,CAKD,GAAI,CAAC8O,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,wCAAA,EAA2CA,EAAS,MAAM,CAAA,CAAE,CAAA,CAG9E,OAAOA,CACT,CAAA,KAAO,IAAIwH,CAAAA,GAAS,KAAA,EAAS1V,CAAAA,CAC3B,OAAO8V,EAAAA,CACL,CAAC,CAAC,yBAAA,CAA2BtG,CAAa,CAAC,CAAA,CAC3CxP,CACF,EACK,GAAI0V,CAAAA,GAAS,UAAA,CAAY,CAC9B,GAAI,CAACwC,GAAM,OAAA,EAAS,qBAAA,CAClB,MAAM,IAAI,KAAA,CAAM,qDAAgD,EAElE,OAAOA,CAAAA,CAAK,OAAA,CAAQ,qBAAA,CAAsB9Y,CAAAA,CAAK,IAAA,CAAM,CAAC,CAAC,yBAAA,CAA2BoQ,CAAa,CAAC,CAAA,CAAG,OAAO,CAC5G,CAAA,KACE,OAAI,CAACF,CAAAA,CAAQ,aAAA,EAAiB,QAAQ,GAAA,CAAI,QAAA,GAAa,aAAA,EACrD,OAAA,CAAQ,IAAA,CAAK,uHAAuH,EAE/HmJ,mBAAAA,CAAG,aAAA,CACR,CAAC,yBAAA,CAA2BjJ,CAAa,CAAA,CACzCF,EAAQ,aAAA,CAAgB,CAAE,QAAA,CAAUA,CAAAA,CAAQ,aAAc,CAAA,CAAI,EAAC,CAC/D,IAAM,CAAC,CACT,CAAA,CAEJ,CAAA,CACA,QAASA,CAAAA,CAAQ,OAAA,CACjB,SAAA,CAAWA,CAAAA,CAAQ,SACrB,CAAC,CACH,CCjGO,SAASu0B,EAAAA,CACd3rB,EACA4rB,CAAAA,CACS,CACT,IAAMC,CAAAA,CAAkB7rB,CAAAA,CAAK,SAAA,CAC1B,MAAA,CAAO,CAAC,CAAClY,CAAG,CAAA,GAAM,CAAC8jC,CAAAA,CAAgB,GAAA,CAAI,MAAA,CAAO9jC,CAAG,CAAC,CAAC,CAAA,CACnD,MAAA,CAAO,CAACgkC,CAAAA,CAAK,EAAGpM,CAAM,CAAA,GAAMoM,EAAMpM,CAAAA,CAAQ,CAAC,EAGxCqM,CAAAA,CAAAA,CAAiB/rB,CAAAA,CAAK,aAAA,EAAiB,EAAC,EAAG,MAAA,CAC/C,CAAC8rB,CAAAA,CAAa,EAAGpM,CAAM,CAAA,GAAwBoM,CAAAA,CAAMpM,EACrD,CACF,CAAA,CAEA,OAAQmM,CAAAA,CAAkBE,CAAAA,EAAkB/rB,CAAAA,CAAK,gBACnD,CAYO,SAASgsB,GACdxB,CAAAA,CACAyB,CAAAA,CACA,CACA,IAAML,CAAAA,CAAkB,IAAI,GAAA,CAAIK,CAAAA,CAAa,GAAA,CAAKxmC,GAAMA,CAAAA,CAAE,QAAA,EAAU,CAAC,CAAA,CAE/DymC,CAAAA,CAAmBlsB,GACvBA,CAAAA,CAAK,SAAA,CAAU,IAAA,CACb,CAAC,CAAClY,CAAG,IAAoC8jC,CAAAA,CAAgB,GAAA,CAAI,OAAO9jC,CAAG,CAAC,CAC1E,CAAA,CAEI+iC,CAAAA,CAAe7qB,CAAAA,EAA+B,CAClD,IAAMmsB,CAAAA,CAAmB,KAAK,KAAA,CAAM,IAAA,CAAK,SAAA,CAAUnsB,CAAI,CAAC,CAAA,CACxD,OAAAmsB,CAAAA,CAAM,SAAA,CAAYA,CAAAA,CAAM,SAAA,CAAU,MAAA,CAChC,CAAC,CAACrkC,CAAG,CAAA,GAAM,CAAC8jC,CAAAA,CAAgB,GAAA,CAAI9jC,EAAI,QAAA,EAAU,CAChD,CAAA,CACOqkC,CACT,CAAA,CAEMC,EAAmBF,CAAAA,CAAgB1B,CAAAA,CAAY,KAAK,CAAA,CAE1D,OAAO,CACL,QAASA,CAAAA,CAAY,IAAA,CACrB,aAAA,CAAeA,CAAAA,CAAY,aAAA,CAC3B,KAAA,CAAO4B,EAAmBvB,CAAAA,CAAYL,CAAAA,CAAY,KAAK,CAAA,CAAI,MAAA,CAC3D,OAAQK,CAAAA,CAAYL,CAAAA,CAAY,MAAM,CAAA,CACtC,OAAA,CAASK,CAAAA,CAAYL,EAAY,OAAO,CAAA,CACxC,QAAA,CAAUA,CAAAA,CAAY,QACxB,CACF,CCrCO,SAAS6B,EAAAA,CACd7zB,CAAAA,CACApB,CAAAA,CACA,CACA,GAAM,CAAE,IAAA,CAAMozB,CAAY,EAAI5kB,mBAAAA,CAAS4H,CAAAA,CAA2BhV,CAAQ,CAAC,CAAA,CAE3E,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,UAAA,CAAY,YAAA,CAAc+oB,CAAAA,EAAa,IAAI,CAAA,CACzD,UAAA,CAAY,MAAO,CAAE,UAAA,CAAAE,CAAAA,CAAY,WAAA,CAAA4B,CAAY,CAAA,GAAe,CAC1D,GAAI,CAAC9B,CAAAA,CACH,MAAM,IAAI,KAAA,CACR,2DACF,CAAA,CAGF,IAAMyB,CAAAA,CAAe,KAAA,CAAM,OAAA,CAAQK,CAAW,EAAIA,CAAAA,CAAc,CAACA,CAAW,CAAA,CACtEvuB,CAAAA,CAAKiuB,EAAAA,CAAkBxB,EAAayB,CAAY,CAAA,CAEtD,OAAOruB,EAAAA,CAAoB,CAAC,CAAC,iBAAkBG,CAAE,CAAC,EAAG2sB,CAAU,CACjE,EACA,GAAGtzB,CACL,CAAC,CACH,CCaO,SAASm1B,GACd/zB,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,UAAA,CAAY,cAAc,CAAA,CAC3B9I,CAAAA,CACA,CAAC,CAAE,QAAA+qB,CAAAA,CAAS,GAAA,CAAA8C,EAAM,YAAa,CAAA,GAAM,CACnCE,EAAAA,CAAoBhD,CAAAA,CAAS8C,CAAG,CAClC,CAAA,CACA,MAAOsC,EAAcxJ,CAAAA,GAAc,CACjC,MAAMnd,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,EAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,OAAO,CAC3C,CAAC,EACH,EACAnf,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCtEO,SAASosB,GACdh0B,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,UAAA,CAAY,0BAA0B,CAAA,CACvC9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX8kB,GACEhuB,CAAAA,CACAkJ,CAAAA,CAAQ,eACRA,CAAAA,CAAQ,cAAA,CACRA,EAAQ,eAAA,CACRA,CAAAA,CAAQ,OAAA,CACRA,CAAAA,CAAQ,YACV,CACF,EACA,SAAY,CACV,MAAMM,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,EAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAClC,CAAC,EACH,CAAA,CACAwH,EACA,QAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CC3BO,SAASqsB,EAAAA,CACdj0B,EACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,WAAY,QAAQ,CAAA,CACrB9I,CAAAA,CACCkJ,CAAAA,EAAY,CACXA,CAAAA,CAAQ,WACJ4kB,EAAAA,CAA4B9tB,CAAAA,CAAWkJ,EAAQ,cAAA,CAAgBA,CAAAA,CAAQ,IAAI,CAAA,CAC3EykB,EAAAA,CAAqB3tB,CAAAA,CAAWkJ,CAAAA,CAAQ,cAAA,CAAgBA,CAAAA,CAAQ,KAAMA,CAAAA,CAAQ,GAAG,CACvF,CAAA,CACA,SAAY,CACV,MAAMM,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,SAAS,IAAA,CAAK1O,CAAQ,CAClC,CAAC,EACH,EACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CC7BA,IAAMssB,EAAAA,CAAwC,GAAA,CAAS,EAAA,CAAK,EAAA,CACtDC,GAAmB,GAAA,CACnBC,EAAAA,CAA2B,GAAA,CAEjC,SAASC,EAAAA,CAAkBruB,CAAAA,CAA8B,CACvD,IAAMsuB,CAAAA,CAAU1mB,CAAAA,CAAW5H,CAAAA,CAAQ,cAAc,CAAA,CAAE,OAC7CG,CAAAA,CAAWyH,CAAAA,CAAW5H,CAAAA,CAAQ,uBAAuB,CAAA,CAAE,MAAA,CACvDE,EAAY0H,CAAAA,CAAW5H,CAAAA,CAAQ,wBAAwB,CAAA,CAAE,MAAA,CACzDI,CAAAA,CAAewH,EAAW5H,CAAAA,CAAQ,qBAAqB,CAAA,CAAE,MAAA,CACzDK,CAAAA,CAAAA,CACH,MAAA,CAAOL,EAAQ,WAAW,CAAA,CAAI,OAAOA,CAAAA,CAAQ,SAAS,GAAK,GAAA,CACxDM,CAAAA,CAAgB,IAAA,CAAK,GAAA,CAAIF,CAAAA,CAAcC,CAAgB,EAE7D,OAAOiuB,CAAAA,CAAUnuB,CAAAA,CAAWD,CAAAA,CAAYI,CAC1C,CAEA,SAASiuB,EAAAA,CAAetuB,CAAAA,CAAeuuB,CAAAA,CAA0BC,CAAAA,CAA0B,CACzF,IAAM3L,EAAgB7iB,CAAAA,CAAQ,GAAA,CAE9B,QADeuuB,CAAAA,CAAmBC,CAAAA,CAAY,IAAM,EAAA,CAAK,CAAA,EACzC3L,CAAAA,CAAiB,GACnC,CAEA,SAAS4L,GAAsBC,CAAAA,CAAqC,CAClE,GAAI,MAAA,CAAO,QAAA,CAASA,CAAAA,CAAa,YAAY,CAAA,CAC3C,OAAOA,CAAAA,CAAa,YAAA,EAAgB,EAAA,CAGtC,GAAM,CAACC,CAAAA,CAAQ,GAAA,CAAKC,EAAQ,GAAG,CAAA,CAAA,CAAKF,EAAa,sBAAA,EAA0B,OAAA,EAAS,KAAA,CAAM,GAAG,CAAA,CAC7F,OAAO,OAAOC,CAAK,CAAA,CAAI,CAAA,EAAM,MAAA,CAAOA,CAAK,CAAA,GAAM,GAAK,MAAA,CAAOC,CAAK,CAAA,EAAK,EACvE,CAEA,SAASC,GACP9uB,CAAAA,CACA2uB,CAAAA,CACAzN,EACQ,CACR,IAAM6N,EACJJ,CAAAA,CAAa,oBAAA,EACb,MAAA,CAAOA,CAAAA,CAAa,GAAA,EAAK,aAAA,EAAe,yBAA2B,CAAC,CAAA,CAEtE,GAAI,CAAC,MAAA,CAAO,QAAA,CAASI,CAAW,CAAA,EAAKA,CAAAA,EAAe,CAAA,CAClD,OAAO,CAAA,CAGT,IAAMC,EAAiBX,EAAAA,CAAkBruB,CAAO,EAChD,GAAI,CAAC,OAAO,QAAA,CAASgvB,CAAc,CAAA,EAAKA,CAAAA,EAAkB,CAAA,CACxD,SAGF,IAAMlM,CAAAA,CAAgBkM,CAAAA,CAAiB,GAAA,CACjCC,CAAAA,CACJ,IAAA,CAAK,KACFnM,CAAAA,CAAgB5B,CAAAA,CAAS,EAAA,CAAK,EAAA,CAAK,EAAA,CACpCiN,EAAAA,EACCY,EAAcb,EAAAA,CACjB,CAAA,CAEIgB,EAAO3uB,EAAAA,CAAgBP,CAAO,EAC9BH,CAAAA,CAAc,IAAA,CAAK,GAAA,CAAIqvB,CAAAA,CAAK,YAAA,CAAcA,CAAAA,CAAK,QAAQ,CAAA,CAE7D,OAAI,CAAC,MAAA,CAAO,QAAA,CAASrvB,CAAW,GAAKovB,CAAAA,CAAWpvB,CAAAA,CACvC,CAAA,CAGF,IAAA,CAAK,GAAA,CAAIovB,CAAAA,CAAWb,GAA0B,CAAC,CACxD,CAEO,SAASe,EAAAA,CACdnvB,EACA2uB,CAAAA,CACAH,CAAAA,CACAtN,CAAAA,CAAiB,GAAA,CACT,CACR,GAAI,CAAC,MAAA,CAAO,QAAA,CAASsN,CAAgB,CAAA,EAAK,CAAC,MAAA,CAAO,SAAStN,CAAM,CAAA,CAC/D,OAAO,CAAA,CAGT,GAAIwN,EAAAA,CAAsBC,CAAY,CAAA,CACpC,OAAOG,EAAAA,CAAkB9uB,CAAAA,CAAS2uB,CAAAA,CAAczN,CAAM,EAGxD,IAAIkO,CAAAA,CAAa,CAAA,CACjB,GAAI,CAEF,GADAA,EAAaf,EAAAA,CAAkBruB,CAAO,CAAA,CAClC,CAAC,MAAA,CAAO,QAAA,CAASovB,CAAU,CAAA,CAC7B,OAAO,CAEX,CAAA,KAAQ,CACN,QACF,CAEA,OAAOb,GAAea,CAAAA,CAAYZ,CAAAA,CAAkBtN,CAAM,CAC5D,CAEO,SAASmO,EAAAA,CAAYrvB,CAAAA,CAA8B,CAExD,OADaO,EAAAA,CAAgBP,CAAO,CAAA,CACxB,UAAA,CAAa,GAC3B,CAEO,SAASsvB,EAAAA,CAAkBC,CAAAA,CAAe,CAC/C,GAAI,CAAC,MAAA,CAAO,SAASA,CAAK,CAAA,CACxB,MAAM,IAAI,SAAA,CAAU,sCAAsC,CAAA,CAE5D,GAAIA,CAAAA,CAAQ,CAAA,EAAKA,CAAAA,CAAQ,GAAA,CACvB,MAAM,IAAI,UAAA,CAAW,wCAAwC,CAAA,CAG/D,OAAA,CADqB,GAAA,CAAMA,GAET,GAAA,CAAMrB,EAAAA,CAAyC,GAEnE,CAEO,SAASsB,EAAAA,CAAgBxvB,EAA8B,CAC5D,IAAMyvB,EACJ,UAAA,CAAWzvB,CAAAA,CAAQ,cAAc,CAAA,CACjC,UAAA,CAAWA,CAAAA,CAAQ,uBAAuB,CAAA,CAC1C,UAAA,CAAWA,EAAQ,wBAAwB,CAAA,CACvC0vB,CAAAA,CAAU,IAAA,CAAK,KAAA,CAAM,IAAA,CAAK,KAAI,CAAI,GAAI,CAAA,CAAI1vB,CAAAA,CAAQ,gBAAA,CAAiB,gBAAA,CACnEL,EAAW8vB,CAAAA,CAAc,GAAA,CAAW,CAAA,CAE1C,GAAI9vB,CAAAA,EAAW,CAAA,CACb,OAAO,CAAA,CAGT,IAAIE,CAAAA,CACF,UAAA,CAAWG,CAAAA,CAAQ,gBAAA,CAAiB,aAAa,QAAA,EAAU,CAAA,CAC1D0vB,CAAAA,CAAU/vB,CAAAA,CAAWuuB,EAAAA,CAEpBruB,EAAcF,CAAAA,GAChBE,CAAAA,CAAcF,CAAAA,CAAAA,CAEhB,IAAMgwB,CAAAA,CAAmB9vB,CAAAA,CAAc,IAAOF,CAAAA,CAE9C,OAAI,MAAMgwB,CAAe,CAAA,CAChB,EAGLA,CAAAA,CAAkB,GAAA,CACb,GAAA,CAEFA,CACT,CAgBO,SAASC,GAAoB5vB,CAAAA,CAAqC,CAIvE,GAAM,CAAE,gBAAA,CAAkB6vB,CAAAA,CAAU,gBAAiBrI,CAAQ,CAAA,CAAIxnB,CAAAA,CACjE,GAAI6vB,CAAAA,GAAa,MAAA,EAAarI,IAAY,MAAA,CACxC,OAAO,KAGT,IAAMsI,CAAAA,CAAUD,EAAWrI,CAAAA,CACrBuI,CAAAA,CACJnoB,CAAAA,CAAW5H,CAAAA,CAAQ,cAAc,CAAA,CAAE,OACnC4H,CAAAA,CAAW5H,CAAAA,CAAQ,wBAAwB,CAAA,CAAE,MAAA,CAI/C,OAAI,CAAC,MAAA,CAAO,QAAA,CAAS8vB,CAAO,CAAA,EAAK,CAAC,MAAA,CAAO,SAASC,CAAQ,CAAA,EAAKA,GAAY,CAAA,CAClE,IAAA,CAGFD,EAAUC,CACnB,CAEO,SAASC,EAAAA,CAAQhwB,CAAAA,CAA4B,CAElD,OADaQ,EAAAA,CAAgBR,CAAO,CAAA,CACxB,UAAA,CAAa,GAC3B,CAEO,SAASiwB,EAAAA,CACdjwB,CAAAA,CACA2uB,CAAAA,CACAH,CAAAA,CACAtN,CAAAA,CAAiB,GAAA,CACT,CACR,GAAI,CAAC,MAAA,CAAO,QAAA,CAASsN,CAAgB,CAAA,EAAK,CAAC,MAAA,CAAO,QAAA,CAAStN,CAAM,CAAA,CAC/D,OAAO,CAAA,CAET,GAAM,CAAE,gBAAA,CAAA9X,CAAAA,CAAkB,iBAAA,CAAAC,CAAAA,CAAmB,IAAA,CAAAH,EAAM,KAAA,CAAAC,CAAM,CAAA,CAAIwlB,CAAAA,CAW7D,GARE,CAAC,OAAO,QAAA,CAASvlB,CAAgB,GACjC,CAAC,MAAA,CAAO,SAASC,CAAiB,CAAA,EAClC,CAAC,MAAA,CAAO,QAAA,CAASH,CAAI,GACrB,CAAC,MAAA,CAAO,QAAA,CAASC,CAAK,CAAA,EAKpBC,CAAAA,GAAqB,GAAKD,CAAAA,GAAU,CAAA,CACtC,OAAO,CAAA,CAGT,IAAM+mB,CAAAA,CAAUf,GAAcnvB,CAAAA,CAAS2uB,CAAAA,CAAcH,EAAkBtN,CAAM,CAAA,CAE7E,OAAK,MAAA,CAAO,QAAA,CAASgP,CAAO,CAAA,CAIpBA,CAAAA,CAAU9mB,CAAAA,CAAoBC,GAAqBH,CAAAA,CAAOC,CAAAA,CAAAA,CAHzD,CAIX,CCtMO,IAAMgnB,EAAAA,CAA0D,CAErE,IAAA,CAAM,SAAA,CACN,OAAA,CAAS,SAAA,CACT,cAAA,CAAgB,SAAA,CAChB,gBAAiB,SAAA,CACjB,oBAAA,CAAsB,UAGtB,4BAAA,CAA8B,QAAA,CAC9B,uBAAwB,QAAA,CACxB,OAAA,CAAS,QAAA,CACT,uBAAA,CAAyB,QAAA,CACzB,kBAAA,CAAoB,SACpB,0BAAA,CAA4B,QAAA,CAC5B,QAAA,CAAU,QAAA,CACV,qBAAA,CAAuB,QAAA,CACvB,oBAAqB,QAAA,CACrB,mBAAA,CAAqB,QAAA,CACrB,gBAAA,CAAkB,QAAA,CAGlB,kBAAA,CAAoB,SACpB,kBAAA,CAAoB,QAAA,CAGpB,eAAgB,QAAA,CAChB,eAAA,CAAiB,SACjB,aAAA,CAAe,QAAA,CACf,sBAAA,CAAwB,QAAA,CAGxB,qBAAA,CAAuB,QAAA,CACvB,qBAAsB,QAAA,CACtB,eAAA,CAAiB,QAAA,CACjB,qBAAA,CAAuB,QAAA,CAGvB,uBAAA,CAAyB,QACzB,wBAAA,CAA0B,OAAA,CAC1B,eAAA,CAAiB,OAAA,CACjB,aAAA,CAAe,OAAA,CACf,kBAAmB,OAKrB,EAkCO,SAASC,EAAAA,CAAuBC,CAAAA,CAAyC,CAC9E,IAAMC,CAAAA,CAASD,CAAAA,CAAa,CAAC,CAAA,CACvBntB,CAAAA,CAAUmtB,EAAa,CAAC,CAAA,CAE9B,GAAIC,CAAAA,GAAW,aAAA,CACb,MAAM,IAAI,KAAA,CAAM,0CAA0C,CAAA,CAI5D,IAAMC,CAAAA,CAAartB,CAAAA,CAQnB,OAAIqtB,CAAAA,CAAW,cAAA,EAAkBA,EAAW,cAAA,CAAe,MAAA,CAAS,EAC3D,QAAA,EAILA,CAAAA,CAAW,sBAAA,EAA0BA,CAAAA,CAAW,sBAAA,CAAuB,MAAA,CAAS,EAC3E,SAAA,CAKX,CA+BO,SAASC,EAAAA,CAAqBC,CAAAA,CAAuC,CAC1E,IAAMH,CAAAA,CAASG,CAAAA,CAAW,CAAC,CAAA,CAE3B,GAAIH,CAAAA,GAAW,mBAAqBA,CAAAA,GAAW,iBAAA,CAC7C,MAAM,IAAI,KAAA,CAAM,uCAAuC,CAAA,CAIzD,OAAO,QACT,CAoBO,SAASI,EAAAA,CAAsBnxB,EAA+B,CACnE,IAAM+wB,CAAAA,CAAS/wB,CAAAA,CAAG,CAAC,CAAA,CAGnB,OAAI+wB,CAAAA,GAAW,aAAA,CACNF,EAAAA,CAAuB7wB,CAAE,CAAA,CAI9B+wB,CAAAA,GAAW,mBAAqBA,CAAAA,GAAW,iBAAA,CACtCE,EAAAA,CAAqBjxB,CAAE,CAAA,CAIzB4wB,EAAAA,CAAwBG,CAAM,CAAA,EAAK,SAC5C,CAkCO,SAASK,EAAAA,CAAqBtxB,CAAAA,CAAkC,CACrE,IAAIuxB,CAAAA,CAAmC,SAAA,CAEvC,IAAA,IAAWrxB,CAAAA,IAAMF,CAAAA,CAAK,CACpB,IAAMoC,CAAAA,CAAYivB,EAAAA,CAAsBnxB,CAAE,CAAA,CAG1C,GAAIkC,IAAc,OAAA,CAChB,OAAO,QAILA,CAAAA,GAAc,QAAA,EAAYmvB,IAAqB,SAAA,GACjDA,CAAAA,CAAmB,QAAA,EAKvB,CAEA,OAAOA,CACT,CClQO,SAASC,EAAAA,CAAsB72B,EAA8B,CAClE,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,aAAc,MAAA,CAAQjJ,CAAQ,EAC5C,UAAA,CAAY,CAAC,CACX,SAAA,CAAA5M,CAAAA,CACA,SAAA,CAAA0jC,CACF,CAAA,GAGM,CACJ,GAAI,CAAC92B,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,yDAAoD,EAGtE,IAAIY,CAAAA,CACJ,OAAIk2B,CAAAA,CAAU,KAAA,CAAM,GAAG,EAAE,MAAA,GAAW,EAAA,CAClCl2B,EAAahB,CAAAA,CAAW,SAAA,CAAUI,EAAU82B,CAAAA,CAAW,QAAQ,CAAA,CACtD3xB,EAAAA,CAAM2xB,CAAS,CAAA,CACxBl2B,EAAahB,CAAAA,CAAW,UAAA,CAAWk3B,CAAS,CAAA,CAE5Cl2B,CAAAA,CAAahB,CAAAA,CAAW,KAAKk3B,CAAS,CAAA,CAGjC1xB,EAAAA,CACL,CAAChS,CAAS,CAAA,CACVwN,CACF,CACF,CACF,CAAC,CACH,CC9BO,SAASm2B,EAAAA,CACd/2B,CAAAA,CACAwH,EACAwvB,CAAAA,CAAmD,QAAA,CACnD,CACA,OAAO/tB,sBAAAA,CAAY,CACjB,YAAa,CAAC,YAAA,CAAc,eAAA,CAAiBjJ,CAAQ,CAAA,CACrD,UAAA,CAAY,CAAC,CAAE,SAAA,CAAA5M,CAAU,CAAA,GAAgC,CACvD,GAAI,CAAC4M,CAAAA,CACH,MAAM,IAAI,KAAA,CACR,gEACF,EAEF,GAAI,CAACwH,CAAAA,EAAM,OAAA,EAAS,qBAAA,CAClB,MAAM,IAAI,KAAA,CAAM,qDAAgD,CAAA,CAGlE,OAAOA,CAAAA,CAAK,OAAA,CAAQ,sBAAsBxH,CAAAA,CAAU,CAAC5M,CAAS,CAAA,CAAG4jC,CAAO,CAC1E,CACF,CAAC,CACH,CCpBO,SAASC,EAAAA,CAA6BC,EAAc,GAAA,CAAK,CAC9D,OAAOjuB,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,YAAA,CAAc,iBAAA,CAAmBiuB,CAAW,CAAA,CAC1D,UAAA,CAAY,MAAO,CAAE,SAAA,CAAA9jC,CAAU,CAAA,GACtB2U,mBAAAA,CAAG,aAAA,CAAc3U,EAAW,CAAE,QAAA,CAAU8jC,CAAY,CAAA,CAAG,IAAM,CAAC,CAAC,CAE1E,CAAC,CACH,CCRO,SAASC,EAAAA,EAAiC,CAC/C,OAAO1oB,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,YAAA,CAAc,kBAAkB,CAAA,CAC3C,OAAA,CAAS,SACA,MAAMzS,CAAAA,CAAQ,oCAAA,CAAsC,EAAE,CAEjE,CAAC,CACH,CCEO,SAASo7B,EAAAA,CACdt/B,CAAAA,CACA0F,EACA65B,CAAAA,CACU,CACV,OAAO,CACL,GAAGv/B,CAAAA,CACH,GAAI0F,CAAAA,EAAY,GAChB,KAAA,CAAO65B,CAAAA,CAAK,KAAA,CACZ,IAAA,CAAMA,CAAAA,CAAK,IACb,CACF,CAQO,SAASC,EAAAA,CACd95B,CAAAA,CACA65B,CAAAA,CACU,CACV,OAAO,CACL,GAAI75B,GAAY,EAAC,CACjB,MAAO65B,CAAAA,CAAK,KAAA,CACZ,IAAA,CAAMA,CAAAA,CAAK,IACb,CACF,CCjCO,SAASE,EAAAA,CAAev3B,CAAAA,CAAkB3J,CAAAA,CAA0B,CACzE,OAAO4S,uBAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,cAAA,CAAgBjJ,CAAQ,EAC/C,UAAA,CAAY,MAAO,CAAE,KAAA,CAAAwiB,CAAAA,CAAO,KAAAjoB,CAAK,CAAA,GAAuC,CACtE,GAAI,CAAClE,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,mCAAmC,CAAA,CAGrD,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CACxB,CACE,OAAQ,MAAA,CACR,IAAA,CAAM,KAAK,SAAA,CAAU,CACnB,KAAAhU,CAAAA,CACA,KAAA,CAAAmsB,CAAAA,CACA,IAAA,CAAAjoB,CACF,CAAC,EACD,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,EAGA,GAAI,CAACiD,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,MAAM,CAAA,qCAAA,EAAwCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAE3E,OAAOA,CAAAA,CAAS,IAAA,EAClB,CAAA,CACA,SAAA,CAAUA,CAAAA,CAAUmpB,EAAW,CAC7B,IAAMH,CAAAA,CAAc5Z,CAAAA,EAAe,CAK7B4qB,CAAAA,CAAcF,GAAmB95B,CAAAA,CAAUmpB,CAAS,CAAA,CAG1DH,CAAAA,CAAY,YAAA,CACVnK,EAAAA,CAAyBrc,EAAU3J,CAAI,CAAA,CAAE,SACxC3H,CAAAA,EAAS,CAAC8oC,EAAa,GAAI9oC,CAAAA,EAAQ,EAAG,CACzC,CAAA,CAGA83B,EAAY,cAAA,CACV,CAAE,QAAA,CAAU,CAAC,OAAA,CAAS,WAAA,CAAa,WAAYxmB,CAAQ,CAAE,CAAA,CACxDmgB,CAAAA,EACMA,CAAAA,EAEE,CACL,GAAGA,CAAAA,CACH,KAAA,CAAOA,EAAQ,KAAA,CAAM,GAAA,CAAI,CAAC1N,CAAAA,CAAMglB,CAAAA,GAC9BA,CAAAA,GAAU,CAAA,CACN,CAAE,GAAGhlB,EAAM,IAAA,CAAM,CAAC+kB,CAAAA,CAAa,GAAG/kB,CAAAA,CAAK,IAAI,CAAE,CAAA,CAC7CA,CACN,CACF,CAEJ,EACF,CACF,CAAC,CACH,CC7DO,SAASilB,EAAAA,CACd13B,CAAAA,CACA3J,CAAAA,CACA,CACA,OAAO4S,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,eAAA,CAAiBjJ,CAAQ,CAAA,CAChD,WAAY,MAAO,CACjB,UAAA,CAAA23B,CAAAA,CACA,KAAA,CAAAnV,CAAAA,CACA,KAAAjoB,CACF,CAAA,GAIM,CACJ,GAAI,CAAClE,EACH,MAAM,IAAI,KAAA,CAAM,mCAAmC,CAAA,CAGrD,IAAMmH,EAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,+BAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,KAAAhU,CAAAA,CACA,EAAA,CAAIshC,EACJ,KAAA,CAAAnV,CAAAA,CACA,KAAAjoB,CACF,CAAC,CAAA,CACD,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,CAAA,CAGA,GAAI,CAACiD,CAAAA,CAAS,GACZ,MAAM,IAAI,KAAA,CAAM,CAAA,wCAAA,EAA2CA,CAAAA,CAAS,MAAM,EAAE,CAAA,CAE9E,OAAOA,EAAS,IAAA,EAClB,EACA,SAAA,CAAUA,CAAAA,CAAUmpB,CAAAA,CAAW,CAC7B,IAAMH,CAAAA,CAAc5Z,GAAe,CAK7BgrB,CAAAA,CAAeC,CAAAA,EACnBT,EAAAA,CAAoBS,CAAAA,CAAUr6B,CAAAA,CAAUmpB,CAAS,CAAA,CAGnDH,CAAAA,CAAY,YAAA,CACVnK,EAAAA,CAAyBrc,CAAAA,CAAU3J,CAAI,EAAE,QAAA,CACxC3H,CAAAA,EACCA,CAAAA,EAAM,GAAA,CAAKmpC,CAAAA,EACTA,CAAAA,CAAS,KAAOlR,CAAAA,CAAU,UAAA,CAAaiR,CAAAA,CAAYC,CAAQ,CAAA,CAAIA,CACjE,GAAK,EACT,CAAA,CAGArR,CAAAA,CAAY,cAAA,CACV,CAAE,SAAU,CAAC,OAAA,CAAS,WAAA,CAAa,UAAA,CAAYxmB,CAAQ,CAAE,EACxDmgB,CAAAA,EACMA,CAAAA,EAEE,CACL,GAAGA,CAAAA,CACH,MAAOA,CAAAA,CAAQ,KAAA,CAAM,GAAA,CAAK1N,CAAAA,GAAU,CAClC,GAAGA,EACH,IAAA,CAAMA,CAAAA,CAAK,IAAA,CAAK,GAAA,CAAKolB,CAAAA,EACnBA,CAAAA,CAAS,KAAOlR,CAAAA,CAAU,UAAA,CAAaiR,CAAAA,CAAYC,CAAQ,CAAA,CAAIA,CACjE,CACF,CAAA,CAAE,CACJ,CAEJ,EACF,CACF,CAAC,CACH,CC/EO,SAASC,EAAAA,CACd93B,CAAAA,CACA3J,CAAAA,CACA,CACA,OAAO4S,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,iBAAA,CAAmBjJ,CAAQ,CAAA,CAClD,WAAY,MAAO,CAAE,WAAA23B,CAAW,CAAA,GAA8B,CAC5D,GAAI,CAACthC,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,mCAAmC,CAAA,CAIrD,IAAMmH,CAAAA,CAAW,MAFAwQ,CAAAA,EAAc,CAEC3D,EAAO,cAAA,CAAiB,+BAAA,CAAiC,CACvF,MAAA,CAAQ,MAAA,CACR,IAAA,CAAM,KAAK,SAAA,CAAU,CACnB,IAAA,CAAAhU,CAAAA,CACA,EAAA,CAAIshC,CACN,CAAC,CAAA,CACD,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CAAC,CAAA,CAKD,GAAI,CAACn6B,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,wCAAA,EAA2CA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAG9E,OAAOA,CACT,CAAA,CACA,UAAUkpB,CAAAA,CAAOC,CAAAA,CAAW,CAC1B,IAAMH,CAAAA,CAAc5Z,CAAAA,EAAe,CAGnC4Z,CAAAA,CAAY,YAAA,CACVnK,GAAyBrc,CAAAA,CAAU3J,CAAI,CAAA,CAAE,QAAA,CACxC3H,CAAAA,EAAS,CAAC,GAAIA,CAAAA,EAAQ,EAAG,CAAA,CAAE,MAAA,CAAO,CAAC,CAAE,EAAA,CAAA4C,CAAG,IAAMA,CAAAA,GAAOq1B,CAAAA,CAAU,UAAU,CAC5E,CAAA,CAGAH,CAAAA,CAAY,cAAA,CACV,CAAE,QAAA,CAAU,CAAC,OAAA,CAAS,WAAA,CAAa,UAAA,CAAYxmB,CAAQ,CAAE,CAAA,CACxDmgB,GACMA,CAAAA,EAEE,CACL,GAAGA,CAAAA,CACH,KAAA,CAAOA,CAAAA,CAAQ,MAAM,GAAA,CAAK1N,CAAAA,GAAU,CAClC,GAAGA,CAAAA,CACH,KAAMA,CAAAA,CAAK,IAAA,CAAK,MAAA,CAAQolB,CAAAA,EAAaA,CAAAA,CAAS,EAAA,GAAOlR,EAAU,UAAU,CAC3E,CAAA,CAAE,CACJ,CAEJ,EACF,CACF,CAAC,CACH,CCxDA,eAAeoR,CAAAA,CAAqBv6B,EAAgC,CAClE,GAAI,CAACA,CAAAA,CAAS,EAAA,CAAI,CAChB,IAAIw6B,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAY,MAAMx6B,CAAAA,CAAS,IAAA,GAC7B,CAAA,KAAQ,CACNw6B,CAAAA,CAAY,OACd,CACA,IAAMzlC,CAAAA,CAAQ,IAAI,MAAM,CAAA,2BAAA,EAA8BiL,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CACvE,MAAAjL,CAAAA,CAAM,MAAA,CAASiL,CAAAA,CAAS,MAAA,CACxBjL,CAAAA,CAAM,IAAA,CAAOylC,EACPzlC,CACR,CAGA,IAAM6D,CAAAA,CAAO,MAAMoH,CAAAA,CAAS,MAAK,CACjC,GAAI,CAACpH,CAAAA,EAAQA,CAAAA,CAAK,IAAA,KAAW,EAAA,CAC3B,OAAO,GAGT,GAAI,CACF,OAAO,IAAA,CAAK,KAAA,CAAMA,CAAI,CACxB,CAAA,MAASlB,CAAAA,CAAG,CAEV,OAAA,OAAA,CAAQ,IAAA,CAAK,sCAAA,CAAwCA,CAAAA,CAAG,WAAA,CAAakB,CAAI,EAClE,EACT,CACF,CAEA,eAAsB6hC,EAAAA,CACpBj4B,CAAAA,CACAkzB,EACAgF,CAAAA,CACAC,CAAAA,CAC+C,CAE/C,IAAM36B,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,6BAAA,CAA+B,CACrF,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CAAE,QAAA,CAAArK,CAAAA,CAAU,KAAA,CAAAkzB,EAAO,QAAA,CAAAgF,CAAAA,CAAU,aAAA,CAAeC,CAAa,CAAC,CACjF,CAAC,CAAA,CAEKzpC,CAAAA,CAAO,MAAMqpC,CAAAA,CAA2Cv6B,CAAQ,CAAA,CACtE,OAAO,CAAE,MAAA,CAAQA,CAAAA,CAAS,MAAA,CAAQ,IAAA,CAAA9O,CAAK,CACzC,CAEA,eAAsB0pC,EAAAA,CACpBlF,CAAAA,CAC+C,CAE/C,IAAM11B,EAAW,MADAwQ,CAAAA,GACe3D,CAAAA,CAAO,cAAA,CAAiB,yBAA0B,CAChF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,KAAA,CAAA6oB,CAAM,CAAC,CAChC,CAAC,CAAA,CAEKxkC,CAAAA,CAAO,MAAMqpC,EAA2Cv6B,CAAQ,CAAA,CACtE,OAAO,CAAE,MAAA,CAAQA,EAAS,MAAA,CAAQ,IAAA,CAAA9O,CAAK,CACzC,CAEA,eAAsB2pC,GACpBhiC,CAAAA,CACAiiC,CAAAA,CACAC,CAAAA,CAAsB,EAAA,CACtBjzB,CAAAA,CAAsB,EAAA,CACP,CACf,IAAMhR,CAAAA,CAKF,CAAE,IAAA,CAAA+B,CAAAA,CAAM,EAAA,CAAAiiC,CAAG,CAAA,CAEXC,CAAAA,GACFjkC,EAAO,EAAA,CAAKikC,CAAAA,CAAAA,CAEVjzB,IACFhR,CAAAA,CAAO,EAAA,CAAKgR,CAAAA,CAAAA,CAId,IAAM9H,CAAAA,CAAW,MADAwQ,GAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,2BAAA,CAA6B,CACnF,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU/V,CAAM,CAC7B,CAAC,CAAA,CAED,MAAMyjC,CAAAA,CAAkBv6B,CAAQ,EAClC,CAEA,eAAsBg7B,EAAAA,CACpBniC,EACAma,CAAAA,CACA0B,CAAAA,CAAuB,IAAA,CACvBU,CAAAA,CAAsB,IAAA,CACM,CAC5B,IAAMlkB,CAAAA,CAAqF,CACzF,IAAA,CAAA2H,CACF,CAAA,CAEIma,CAAAA,GACF9hB,EAAK,MAAA,CAAS8hB,CAAAA,CAAAA,CAGZ0B,IACFxjB,CAAAA,CAAK,KAAA,CAAQwjB,GAGXU,CAAAA,GACFlkB,CAAAA,CAAK,IAAA,CAAOkkB,CAAAA,CAAAA,CAId,IAAMpV,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CAA8B,CACpF,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,EAED,OAAOqpC,CAAAA,CAAqCv6B,CAAQ,CACtD,CAEA,eAAsBi7B,GACpBpiC,CAAAA,CACA2J,CAAAA,CACA04B,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACA9wB,CAAAA,CACiC,CACjC,IAAMpZ,CAAAA,CAAO,CACX,IAAA,CAAA2H,CAAAA,CACA,QAAA,CAAA2J,EACA,KAAA,CAAA8H,CAAAA,CACA,OAAA4wB,CAAAA,CACA,aAAA,CAAAC,EACA,YAAA,CAAAC,CACF,CAAA,CAGMp7B,CAAAA,CAAW,MADAwQ,CAAAA,GACe3D,CAAAA,CAAO,cAAA,CAAiB,8BAAA,CAAgC,CACtF,MAAA,CAAQ,MAAA,CACR,QAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,UAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAA0Cv6B,CAAQ,CAC3D,CAEA,eAAsBq7B,EAAAA,CACpBxiC,CAAAA,CACA2J,CAAAA,CACA8H,EACiC,CACjC,IAAMpZ,CAAAA,CAAO,CAAE,IAAA,CAAA2H,CAAAA,CAAM,SAAA2J,CAAAA,CAAU,KAAA,CAAA8H,CAAM,CAAA,CAE/BtK,CAAAA,CAAW,MADAwQ,GAAc,CACC3D,CAAAA,CAAO,eAAiB,4BAAA,CAA8B,CACpF,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAA0Cv6B,CAAQ,CAC3D,CAEA,eAAsBs7B,EAAAA,CACpBziC,EACA/E,CAAAA,CACkC,CAClC,IAAM5C,CAAAA,CAAkD,CACtD,KAAA2H,CACF,CAAA,CACI/E,CAAAA,GACF5C,CAAAA,CAAK,EAAA,CAAK4C,CAAAA,CAAAA,CAIZ,IAAMkM,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,kCAAmC,CACzF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAA2Cv6B,CAAQ,CAC5D,CAEA,eAAsBu7B,EAAAA,CAAS1iC,CAAAA,CAA0BtJ,CAAAA,CAA+C,CACtG,IAAM2B,EAAO,CAAE,IAAA,CAAA2H,CAAAA,CAAM,GAAA,CAAAtJ,CAAI,CAAA,CAEnByQ,EAAW,MADAwQ,CAAAA,GACe3D,CAAAA,CAAO,cAAA,CAAiB,0BAA2B,CACjF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAA2Cv6B,CAAQ,CAC5D,CAOA,IAAMw7B,EAAAA,CAAc,sBAAA,CAEpB,eAAsBC,EAAAA,CACpBC,CAAAA,CACApxB,EACAhT,CAAAA,CAC0B,CAC1B,IAAMqkC,CAAAA,CAAWnrB,CAAAA,EAAc,CACzBorB,EAAW,IAAI,QAAA,CACrBA,CAAAA,CAAS,MAAA,CAAO,MAAA,CAAQF,CAAI,EAE5B,IAAM17B,CAAAA,CAAW,MAAM27B,CAAAA,CAAS,CAAA,EAAGH,EAAW,OAAOlxB,CAAK,CAAA,CAAA,CAAI,CAC5D,MAAA,CAAQ,MAAA,CACR,KAAMsxB,CAAAA,CACN,MAAA,CAAAtkC,CACF,CAAC,CAAA,CAED,OAAOijC,EAAmCv6B,CAAQ,CACpD,CAOA,eAAsB67B,EAAAA,CACpBH,CAAAA,CACAl5B,EACAjQ,CAAAA,CACA+E,CAAAA,CAC0B,CAC1B,IAAMqkC,CAAAA,CAAWnrB,CAAAA,GACXorB,CAAAA,CAAW,IAAI,SACrBA,CAAAA,CAAS,MAAA,CAAO,OAAQF,CAAI,CAAA,CAE5B,IAAM17B,CAAAA,CAAW,MAAM27B,CAAAA,CAAS,GAAG9uB,CAAAA,CAAO,SAAS,CAAA,CAAA,EAAIrK,CAAQ,CAAA,CAAA,EAAIjQ,CAAS,GAAI,CAC9E,MAAA,CAAQ,MAAA,CACR,IAAA,CAAMqpC,CAAAA,CACN,MAAA,CAAAtkC,CACF,CAAC,CAAA,CAED,OAAOijC,CAAAA,CAAmCv6B,CAAQ,CACpD,CAEA,eAAsB87B,EAAAA,CACpBjjC,CAAAA,CACAkjC,CAAAA,CACkC,CAClC,IAAM7qC,EAAO,CAAE,IAAA,CAAA2H,CAAAA,CAAM,EAAA,CAAIkjC,CAAQ,CAAA,CAE3B/7B,EAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CAA8B,CACpF,MAAA,CAAQ,MAAA,CACR,QAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAA2Cv6B,CAAQ,CAC5D,CAEA,eAAsBg8B,EAAAA,CACpBnjC,CAAAA,CACAmsB,CAAAA,CACAjoB,CAAAA,CACA4hB,CAAAA,CACAnG,CAAAA,CAC8B,CAC9B,IAAMtnB,CAAAA,CAAO,CAAE,IAAA,CAAA2H,CAAAA,CAAM,MAAAmsB,CAAAA,CAAO,IAAA,CAAAjoB,CAAAA,CAAM,IAAA,CAAA4hB,CAAAA,CAAM,IAAA,CAAAnG,CAAK,CAAA,CAEvCxY,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,eAAiB,yBAAA,CAA2B,CACjF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAAuCv6B,CAAQ,CACxD,CAEA,eAAsBi8B,EAAAA,CACpBpjC,CAAAA,CACAqjC,CAAAA,CACAlX,CAAAA,CACAjoB,EACA4hB,CAAAA,CACAnG,CAAAA,CAC8B,CAC9B,IAAMtnB,CAAAA,CAAO,CAAE,KAAA2H,CAAAA,CAAM,EAAA,CAAIqjC,EAAS,KAAA,CAAAlX,CAAAA,CAAO,KAAAjoB,CAAAA,CAAM,IAAA,CAAA4hB,CAAAA,CAAM,IAAA,CAAAnG,CAAK,CAAA,CAEpDxY,EAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CAA8B,CACpF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,UAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAAuCv6B,CAAQ,CACxD,CAEA,eAAsBm8B,EAAAA,CACpBtjC,CAAAA,CACAqjC,CAAAA,CACkC,CAClC,IAAMhrC,CAAAA,CAAO,CAAE,IAAA,CAAA2H,CAAAA,CAAM,EAAA,CAAIqjC,CAAQ,CAAA,CAE3Bl8B,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,EAAO,cAAA,CAAiB,4BAAA,CAA8B,CACpF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,EAED,OAAOqpC,CAAAA,CAA2Cv6B,CAAQ,CAC5D,CAEA,eAAsBo8B,GACpBvjC,CAAAA,CACAka,CAAAA,CACAiS,EACAjoB,CAAAA,CACAyb,CAAAA,CACApX,EACAi7B,CAAAA,CACAC,CAAAA,CACkC,CAClC,IAAMprC,CAAAA,CAAgC,CACpC,KAAA2H,CAAAA,CACA,QAAA,CAAAka,CAAAA,CACA,KAAA,CAAAiS,CAAAA,CACA,IAAA,CAAAjoB,EACA,IAAA,CAAAyb,CAAAA,CACA,QAAA,CAAA6jB,CAAAA,CACA,MAAA,CAAAC,CACF,EAEIl7B,CAAAA,GACFlQ,CAAAA,CAAK,OAAA,CAAUkQ,CAAAA,CAAAA,CAIjB,IAAMpB,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CAA8B,CACpF,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAA2Cv6B,CAAQ,CAC5D,CAEA,eAAsBu8B,GACpB1jC,CAAAA,CACA/E,CAAAA,CACkC,CAClC,IAAM5C,CAAAA,CAAO,CAAE,KAAA2H,CAAAA,CAAM,EAAA,CAAA/E,CAAG,CAAA,CAElBkM,CAAAA,CAAW,MADAwQ,GAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,+BAAA,CAAiC,CACvF,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAA2Cv6B,CAAQ,CAC5D,CAEA,eAAsBw8B,EAAAA,CAAa3jC,EAA0B/E,CAAAA,CAAiC,CAC5F,IAAM5C,CAAAA,CAAO,CAAE,IAAA,CAAA2H,EAAM,EAAA,CAAA/E,CAAG,EAElBkM,CAAAA,CAAW,MADAwQ,GAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,6BAAA,CAA+B,CACrF,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,EAA8Bv6B,CAAQ,CAC/C,CAEA,eAAsBy8B,EAAAA,CACpB5jC,EACAia,CAAAA,CACAC,CAAAA,CACoD,CACpD,IAAM7hB,CAAAA,CAAO,CAAE,KAAA2H,CAAAA,CAAM,MAAA,CAAAia,CAAAA,CAAQ,QAAA,CAAAC,CAAS,CAAA,CAEhC/S,EAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CAA8B,CACpF,MAAA,CAAQ,MAAA,CACR,QAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CAAC,CAAA,CAED,OAAOqpC,CAAAA,CAA6Dv6B,CAAQ,CAC9E,CAEA,eAAsB08B,EAAAA,CACpBl6B,CAAAA,CACAkzB,CAAAA,CACAiH,CAAAA,CACkC,CAClC,IAAMC,EAAW,CACf,QAAA,CAAAp6B,EACA,KAAA,CAAAkzB,CAAAA,CACA,OAAAiH,CACF,CAAA,CAEM38B,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,EAAO,cAAA,CAAiB,oCAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU+vB,CAAQ,CAC/B,CACF,EAEA,OAAOrC,CAAAA,CAA2Cv6B,CAAQ,CAC5D,CCjcO,SAAS68B,EAAAA,CACdr6B,CAAAA,CACA3J,CAAAA,CACA2S,EACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,QAAA,CAAU,KAAA,CAAOjJ,CAAQ,CAAA,CAChD,UAAA,CAAY,MAAO,CACjB,KAAA,CAAAwiB,CAAAA,CACA,IAAA,CAAAjoB,CAAAA,CACA,IAAA,CAAA4hB,EACA,IAAA,CAAAnG,CACF,CAAA,GAKM,CACJ,GAAI,CAAChW,GAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,+CAA0C,EAE5D,OAAOmjC,EAAAA,CAASnjC,CAAAA,CAAMmsB,CAAAA,CAAOjoB,CAAAA,CAAM4hB,CAAAA,CAAMnG,CAAI,CAC/C,CAAA,CACA,UAAYtnB,CAAAA,EAAS,CACnBsa,KAAY,CACZ,IAAMynB,CAAAA,CAAK7jB,CAAAA,EAAe,CAEtBle,CAAAA,EAAM,OACR+hC,CAAAA,CAAG,YAAA,CAAa/hB,CAAAA,CAAU,KAAA,CAAM,MAAA,CAAO1O,CAAQ,EAAGtR,CAAAA,CAAK,MAAM,CAAA,CAE7D+hC,CAAAA,CAAG,iBAAA,CAAkB,CAAE,SAAU/hB,CAAAA,CAAU,KAAA,CAAM,OAAO1O,CAAQ,CAAE,CAAC,CAAA,CAGrEywB,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,MAAM,cAAA,CAAe1O,CAAQ,CAAE,CAAC,EAC7E,CAAA,CACA,QAAA6mB,CACF,CAAC,CACH,CCtCO,SAASyT,GACdt6B,CAAAA,CACA3J,CAAAA,CACA2S,EACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,QAAA,CAAU,QAAA,CAAUjJ,CAAQ,CAAA,CACnD,UAAA,CAAY,MAAO,CACjB,OAAA,CAAA05B,CAAAA,CACA,KAAA,CAAAlX,CAAAA,CACA,IAAA,CAAAjoB,EACA,IAAA,CAAA4hB,CAAAA,CACA,KAAAnG,CACF,CAAA,GAMM,CACJ,GAAI,CAAChW,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,kDAA6C,CAAA,CAE/D,OAAOojC,EAAAA,CAAYpjC,CAAAA,CAAMqjC,EAASlX,CAAAA,CAAOjoB,CAAAA,CAAM4hB,CAAAA,CAAMnG,CAAI,CAC3D,CAAA,CACA,UAAW,IAAM,CACfhN,KAAY,CACZ,IAAMynB,EAAK7jB,CAAAA,EAAe,CAC1B6jB,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,EAAU,KAAA,CAAM,MAAA,CAAO1O,CAAQ,CAAE,CAAC,CAAA,CACnEywB,EAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,KAAA,CAAM,cAAA,CAAe1O,CAAQ,CAAE,CAAC,EAC7E,CAAA,CACA,OAAA,CAAA6mB,CACF,CAAC,CACH,CCjCO,SAAS0T,EAAAA,CACdv6B,CAAAA,CACA3J,CAAAA,CACA2S,CAAAA,CACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,SAAU,QAAA,CAAUjJ,CAAQ,EACnD,UAAA,CAAY,MAAO,CAAE,OAAA,CAAA05B,CAAQ,CAAA,GAA2B,CACtD,GAAI,CAAC15B,GAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,kDAA6C,EAE/D,OAAOsjC,EAAAA,CAAYtjC,CAAAA,CAAMqjC,CAAO,CAClC,CAAA,CACA,SAAU,MAAO,CAAE,OAAA,CAAAA,CAAQ,CAAA,GAAM,CAC/B,GAAI,CAAC15B,CAAAA,CACH,OAGF,IAAMywB,CAAAA,CAAK7jB,CAAAA,GACL+jB,CAAAA,CAAUjiB,CAAAA,CAAU,KAAA,CAAM,MAAA,CAAO1O,CAAQ,CAAA,CACzC4wB,EAAiBliB,CAAAA,CAAU,KAAA,CAAM,cAAA,CAAe1O,CAAQ,CAAA,CAE9D,MAAM,QAAQ,GAAA,CAAI,CAChBywB,EAAG,aAAA,CAAc,CAAE,SAAUE,CAAQ,CAAC,CAAA,CACtCF,CAAAA,CAAG,aAAA,CAAc,CAAE,SAAUG,CAAe,CAAC,CAC/C,CAAC,CAAA,CAED,IAAME,EAAeL,CAAAA,CAAG,YAAA,CAAsBE,CAAO,CAAA,CACjDG,CAAAA,EACFL,CAAAA,CAAG,aACDE,CAAAA,CACAG,CAAAA,CAAa,OAAQt4B,CAAAA,EAAMA,CAAAA,CAAE,MAAQkhC,CAAO,CAC9C,CAAA,CAGF,IAAMzI,CAAAA,CAAkBR,CAAAA,CAAG,eAAqD,CAC9E,QAAA,CAAUG,CACZ,CAAC,CAAA,CACKM,CAAAA,CAAmB,IAAI,GAAA,CAAID,CAAe,CAAA,CAChD,IAAA,GAAW,CAAC3hC,CAAAA,CAAKZ,CAAI,CAAA,GAAKuiC,CAAAA,CACpBviC,GACF+hC,CAAAA,CAAG,YAAA,CAAanhC,EAAK,CACnB,GAAGZ,CAAAA,CACH,KAAA,CAAOA,CAAAA,CAAK,KAAA,CAAM,IAAK+jB,CAAAA,GAAU,CAC/B,GAAGA,CAAAA,CACH,IAAA,CAAMA,CAAAA,CAAK,KAAK,MAAA,CAAQja,CAAAA,EAAMA,CAAAA,CAAE,GAAA,GAAQkhC,CAAO,CACjD,EAAE,CACJ,CAAC,EAIL,OAAO,CAAE,aAAA5I,CAAAA,CAAc,gBAAA,CAAAI,CAAiB,CAC1C,CAAA,CACA,SAAA,CAAW,IAAM,CACfloB,CAAAA,IAAY,CACZ,IAAMynB,CAAAA,CAAK7jB,CAAAA,GACX6jB,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,KAAA,CAAM,OAAO1O,CAAQ,CAAE,CAAC,CAAA,CACnEywB,CAAAA,CAAG,kBAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,KAAA,CAAM,cAAA,CAAe1O,CAAQ,CAAE,CAAC,EAC7E,CAAA,CACA,OAAA,CAAS,CAACpG,CAAAA,CAAK4gC,EAAYrJ,CAAAA,GAAY,CACrC,IAAMV,CAAAA,CAAK7jB,CAAAA,EAAe,CAI1B,GAHIukB,CAAAA,EAAS,YAAA,EACXV,EAAG,YAAA,CAAa/hB,CAAAA,CAAU,MAAM,MAAA,CAAO1O,CAAQ,CAAA,CAAGmxB,CAAAA,CAAQ,YAAY,CAAA,CAEpEA,GAAS,gBAAA,CACX,IAAA,GAAW,CAAC7hC,CAAAA,CAAKZ,CAAI,CAAA,GAAKyiC,EAAQ,gBAAA,CAChCV,CAAAA,CAAG,YAAA,CAAanhC,CAAAA,CAAKZ,CAAI,CAAA,CAG7Bm4B,IAAUjtB,CAAG,EACf,CACF,CAAC,CACH,CC3EO,SAAS6gC,EAAAA,CACdz6B,EACA3J,CAAAA,CACA2S,CAAAA,CACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,WAAA,CAAa,KAAA,CAAOjJ,CAAQ,EACnD,UAAA,CAAY,MAAO,CACjB,QAAA,CAAAuQ,CAAAA,CACA,KAAA,CAAAiS,EACA,IAAA,CAAAjoB,CAAAA,CACA,IAAA,CAAAyb,CAAAA,CACA,OAAA,CAAApX,CAAAA,CACA,SAAAi7B,CAAAA,CACA,MAAA,CAAAC,CACF,CAAA,GAQM,CACJ,GAAI,CAAC95B,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,kDAA6C,CAAA,CAE/D,OAAOujC,GAAYvjC,CAAAA,CAAMka,CAAAA,CAAUiS,EAAOjoB,CAAAA,CAAMyb,CAAAA,CAAMpX,CAAAA,CAASi7B,CAAAA,CAAUC,CAAM,CACjF,EACA,SAAA,CAAW,IAAM,CACf9wB,CAAAA,IAAY,CACZ4D,CAAAA,GAAiB,iBAAA,CAAkB,CACjC,QAAA,CAAU8B,CAAAA,CAAU,KAAA,CAAM,SAAA,CAAU1O,CAAQ,CAC9C,CAAC,EACH,CAAA,CACA,OAAA,CAAA6mB,CACF,CAAC,CACH,CCtCO,SAAS6T,EAAAA,CACd16B,CAAAA,CACA3J,CAAAA,CACA2S,CAAAA,CACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,YAAa,QAAA,CAAUjJ,CAAQ,EACtD,UAAA,CAAY,MAAO,CAAE,EAAA,CAAA1O,CAAG,CAAA,GAAsB,CAC5C,GAAI,CAAC0O,GAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,qDAAgD,EAElE,OAAO0jC,EAAAA,CAAe1jC,CAAAA,CAAM/E,CAAE,CAChC,CAAA,CACA,UAAY5C,CAAAA,EAAS,CACnBsa,CAAAA,IAAY,CACZ,IAAMynB,CAAAA,CAAK7jB,GAAe,CAEtBle,CAAAA,CACF+hC,CAAAA,CAAG,YAAA,CAAa/hB,CAAAA,CAAU,KAAA,CAAM,UAAU1O,CAAQ,CAAA,CAAGtR,CAAI,CAAA,CAEzD+hC,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,KAAA,CAAM,SAAA,CAAU1O,CAAQ,CAAE,CAAC,EAE1E,CAAA,CACA,QAAA6mB,CACF,CAAC,CACH,CC1BO,SAAS8T,GACd36B,CAAAA,CACA3J,CAAAA,CACA2S,CAAAA,CACA6d,CAAAA,CACA,CACA,OAAO5d,uBAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,WAAA,CAAa,MAAA,CAAQjJ,CAAQ,CAAA,CACpD,UAAA,CAAY,MAAO,CAAE,EAAA,CAAA1O,CAAG,CAAA,GAAsB,CAC5C,GAAI,CAAC0O,CAAAA,EAAY,CAAC3J,EAChB,MAAM,IAAI,KAAA,CAAM,mDAA8C,CAAA,CAEhE,OAAO2jC,GAAa3jC,CAAAA,CAAM/E,CAAE,CAC9B,CAAA,CACA,SAAA,CAAY5C,CAAAA,EAAS,CACnBsa,CAAAA,IAAY,CACZ,IAAMynB,CAAAA,CAAK7jB,CAAAA,GAEPle,CAAAA,CACF+hC,CAAAA,CAAG,YAAA,CAAa/hB,CAAAA,CAAU,KAAA,CAAM,SAAA,CAAU1O,CAAQ,CAAA,CAAGtR,CAAI,CAAA,CAEzD+hC,CAAAA,CAAG,iBAAA,CAAkB,CAAE,SAAU/hB,CAAAA,CAAU,KAAA,CAAM,SAAA,CAAU1O,CAAQ,CAAE,CAAC,EAGxEywB,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAU/hB,CAAAA,CAAU,KAAA,CAAM,OAAO1O,CAAQ,CAAE,CAAC,EACrE,CAAA,CACA,OAAA,CAAA6mB,CACF,CAAC,CACH,CChBO,SAAS+T,EAAAA,CACd56B,CAAAA,CACA3J,CAAAA,CACA2S,CAAAA,CACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,QAAS,QAAA,CAAU,KAAA,CAAOjJ,CAAQ,CAAA,CAChD,UAAA,CAAY,MAAO,CAAE,GAAA,CAAAjT,CAAAA,CAAK,IAAA,CAAM8tC,CAAS,CAAA,GAAsC,CAC7E,IAAMC,CAAAA,CAAgBD,CAAAA,EAAYxkC,CAAAA,CAElC,GAAI,CAAC2J,CAAAA,EAAY,CAAC86B,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,+CAA0C,EAE5D,OAAO/B,EAAAA,CAAS+B,CAAAA,CAAe/tC,CAAG,CACpC,CAAA,CACA,UAAW,IAAM,CACfic,CAAAA,IAAY,CACZ4D,CAAAA,EAAe,CAAE,kBAAkB,CACjC,QAAA,CAAU8B,CAAAA,CAAU,KAAA,CAAM,MAAA,CAAO1O,CAAQ,CAC3C,CAAC,EACH,EACA,OAAA,CAAA6mB,CACF,CAAC,CACH,CCtBO,SAASkU,EAAAA,CACd/6B,CAAAA,CACA3J,CAAAA,CACA2S,CAAAA,CACA6d,CAAAA,CACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,QAAA,CAAU,SAAUjJ,CAAQ,CAAA,CACnD,WAAY,MAAO,CAAE,QAAAu5B,CAAQ,CAAA,GAA2B,CACtD,GAAI,CAACv5B,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,kDAA6C,CAAA,CAE/D,OAAOijC,EAAAA,CAAYjjC,CAAAA,CAAMkjC,CAAO,CAClC,CAAA,CACA,SAAA,CAAW,CAAC7S,CAAAA,CAAOC,CAAAA,GAAc,CAC/B3d,CAAAA,IAAY,CACZ,IAAMynB,CAAAA,CAAK7jB,CAAAA,EAAe,CACpB,CAAE,OAAA,CAAA2sB,CAAQ,EAAI5S,CAAAA,CAGpB8J,CAAAA,CAAG,YAAA,CACD,CAAC,OAAA,CAAS,QAAA,CAAUzwB,CAAQ,CAAA,CAC3Bg7B,CAAAA,EAASA,CAAAA,EAAM,MAAA,CAAQC,CAAAA,EAAQA,CAAAA,CAAI,MAAQ1B,CAAO,CACrD,EAGA9I,CAAAA,CAAG,cAAA,CACD,CAAE,QAAA,CAAU,CAAC,OAAA,CAAS,QAAA,CAAU,UAAA,CAAYzwB,CAAQ,CAAE,CAAA,CACrDmgB,CAAAA,EACMA,CAAAA,EACE,CACL,GAAGA,CAAAA,CACH,MAAOA,CAAAA,CAAQ,KAAA,CAAM,GAAA,CAAK1N,CAAAA,GAAU,CAClC,GAAGA,EACH,IAAA,CAAMA,CAAAA,CAAK,KAAK,MAAA,CAAQwoB,CAAAA,EAAQA,EAAI,GAAA,GAAQ1B,CAAO,CACrD,CAAA,CAAE,CACJ,CAEJ,EACF,CAAA,CACA,OAAA,CAAA1S,CACF,CAAC,CACH,CC1CO,SAASqU,EAAAA,CACdlyB,CAAAA,CACA6d,EACA,CACA,OAAO5d,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,QAAS,QAAA,CAAU,QAAQ,CAAA,CACzC,UAAA,CAAY,MAAO,CACjB,KAAAiwB,CAAAA,CACA,KAAA,CAAApxB,CAAAA,CACA,MAAA,CAAAhT,CACF,CAAA,GAKSmkC,GAAYC,CAAAA,CAAMpxB,CAAAA,CAAOhT,CAAM,CAAA,CAExC,SAAA,CAAAkU,CAAAA,CACA,QAAA6d,CACF,CAAC,CACH,CClCA,SAAS5E,GAAc3R,CAAAA,CAAgBC,CAAAA,CAAkB,CACvD,OAAO,CAAA,EAAA,EAAKD,CAAM,IAAIC,CAAQ,CAAA,CAChC,CAEA,SAAS4qB,EAAAA,CACP7qB,CAAAA,CACAC,EACAkgB,CAAAA,CACmB,CAEnB,OAAA,CADoBA,CAAAA,EAAM7jB,CAAAA,EAAe,EACtB,aACjB8B,CAAAA,CAAU,KAAA,CAAM,MAAMuT,EAAAA,CAAc3R,CAAAA,CAAQC,CAAQ,CAAC,CACvD,CACF,CAEA,SAAS6qB,EAAAA,CAAgB3gB,EAAcgW,CAAAA,CAAkB,CAAA,CACnCA,CAAAA,EAAM7jB,CAAAA,EAAe,EAC7B,YAAA,CACV8B,EAAU,KAAA,CAAM,KAAA,CAAMuT,EAAAA,CAAcxH,CAAAA,CAAM,MAAA,CAAQA,CAAAA,CAAM,QAAQ,CAAC,CAAA,CACjEA,CACF,EACF,CAEA,SAAS4gB,EAAAA,CACP/qB,CAAAA,CACAC,CAAAA,CACA+qB,CAAAA,CACA7K,CAAAA,CACmB,CACnB,IAAMjK,CAAAA,CAAciK,CAAAA,EAAM7jB,CAAAA,EAAe,CACnC1P,CAAAA,CAAO+kB,EAAAA,CAAc3R,EAAQC,CAAQ,CAAA,CACrCzY,CAAAA,CAAW0uB,CAAAA,CAAY,YAAA,CAAoB9X,CAAAA,CAAU,MAAM,KAAA,CAAMxR,CAAI,CAAC,CAAA,CAC5E,GAAI,CAACpF,CAAAA,CAAU,OAEf,IAAMyjC,CAAAA,CAAUD,CAAAA,CAAQxjC,CAAQ,EAChC,OAAA0uB,CAAAA,CAAY,YAAA,CAAoB9X,CAAAA,CAAU,KAAA,CAAM,KAAA,CAAMxR,CAAI,CAAA,CAAGq+B,CAAO,CAAA,CAC7DzjC,CACT,CASiB0jC,0CAAV,CACE,SAASC,EACdnrB,CAAAA,CACAC,CAAAA,CACA6B,EACAspB,CAAAA,CACAjL,CAAAA,CACA,CACA4K,EAAAA,CACE/qB,CAAAA,CACAC,CAAAA,CACCkK,IAAW,CACV,GAAGA,CAAAA,CACH,YAAA,CAAcrI,CAAAA,CACd,KAAA,CAAO,CACL,GAAIqI,CAAAA,CAAM,KAAA,EAAS,CACjB,IAAA,CAAM,KAAA,CACN,KAAM,KAAA,CACN,WAAA,CAAa,EACb,WAAA,CAAa,CACf,EACA,WAAA,CAAarI,CAAAA,CAAM,MAAA,CACnB,WAAA,CAAaqI,CAAAA,CAAM,KAAA,EAAO,aAAe,CAC3C,CAAA,CACA,WAAA,CAAarI,CAAAA,CAAM,MAAA,CACnB,MAAA,CAAAspB,EACA,oBAAA,CAAsB,MAAA,CAAOA,CAAM,CACrC,CAAA,CAAA,CACAjL,CACF,EACF,CA7BO+K,CAAAA,CAAS,YAAAC,CAAAA,CA+BT,SAASE,EACdrrB,CAAAA,CACAC,CAAAA,CACAyD,CAAAA,CACAyc,CAAAA,CACA,CACA4K,EAAAA,CACE/qB,EACAC,CAAAA,CACCkK,CAAAA,GAAW,CACV,GAAGA,CAAAA,CACH,OAAA,CAASzG,CACX,CAAA,CAAA,CACAyc,CACF,EACF,CAfO+K,CAAAA,CAAS,kBAAA,CAAAG,EAiBT,SAASC,CAAAA,CACdtrB,CAAAA,CACAC,CAAAA,CACAyD,CAAAA,CACAyc,CAAAA,CACA,CACA4K,EAAAA,CACE/qB,CAAAA,CACAC,CAAAA,CACCkK,CAAAA,GAAW,CACV,GAAGA,EACH,QAAA,CAAUzG,CACZ,CAAA,CAAA,CACAyc,CACF,EACF,CAfO+K,EAAS,kBAAA,CAAAI,CAAAA,CAiBT,SAASC,CAAAA,CACdC,CAAAA,CACA1U,CAAAA,CACAC,EACAoJ,CAAAA,CACA,CACA4K,GACEjU,CAAAA,CACAC,CAAAA,CACC5M,IAAW,CACV,GAAGA,CAAAA,CACH,QAAA,CAAUA,CAAAA,CAAM,QAAA,CAAW,EAC3B,OAAA,CAAS,CAACqhB,CAAAA,CAAO,GAAGrhB,CAAAA,CAAM,OAAO,CACnC,CAAA,CAAA,CACAgW,CACF,EACF,CAhBO+K,CAAAA,CAAS,QAAA,CAAAK,EAkBT,SAASE,CAAAA,CAAc5gB,EAAkBsV,CAAAA,CAAkB,CAChEtV,EAAQ,OAAA,CAASV,CAAAA,EAAU2gB,EAAAA,CAAgB3gB,CAAAA,CAAOgW,CAAE,CAAC,EACvD,CAFO+K,CAAAA,CAAS,aAAA,CAAAO,CAAAA,CAIT,SAASC,CAAAA,CACd1rB,EACAC,CAAAA,CACAkgB,CAAAA,CACA,CAAA,CACoBA,CAAAA,EAAM7jB,CAAAA,EAAe,EAC7B,kBAAkB,CAC5B,QAAA,CAAU8B,EAAU,KAAA,CAAM,KAAA,CAAMuT,GAAc3R,CAAAA,CAAQC,CAAQ,CAAC,CACjE,CAAC,EACH,CATOirB,CAAAA,CAAS,eAAA,CAAAQ,CAAAA,CAWT,SAASC,CAAAA,CACd3rB,CAAAA,CACAC,EACAkgB,CAAAA,CACmB,CACnB,OAAO0K,EAAAA,CAAkB7qB,CAAAA,CAAQC,CAAAA,CAAUkgB,CAAE,CAC/C,CANO+K,EAAS,QAAA,CAAAS,EAAAA,CAAAA,EAnGDT,iCAAA,EAAA,CAAA,CCrCV,SAASU,EAAAA,CACdC,CAAAA,CACApqB,CAAAA,CACAmV,CAAAA,CACS,CACT,IAAMkV,CAAAA,CAAiBD,CAAAA,CAAY,IAAA,CAAMjvC,CAAAA,EAAMA,CAAAA,CAAE,QAAU6kB,CAAK,CAAA,CAChE,OAAOmV,CAAAA,GAAW,CAAA,CAAIkV,CAAAA,CAAiB,CAACA,CAC1C,CAyBO,SAASC,EAAAA,CACdr8B,CAAAA,CACA2mB,EACA8J,CAAAA,CACM,CACN,IAAMhW,CAAAA,CAAQ+gB,8BAAAA,CAAuB,QAAA,CAAS7U,EAAU,MAAA,CAAQA,CAAAA,CAAU,QAAA,CAAU8J,CAAE,CAAA,CACtF,GACE,CAAChW,CAAAA,EAAO,YAAA,EACRyhB,EAAAA,CAAuBzhB,CAAAA,CAAM,YAAA,CAAcza,CAAAA,CAAU2mB,EAAU,MAAM,CAAA,CAErE,OAEF,IAAM2V,CAAAA,CAAW,CACf,GAAG7hB,CAAAA,CAAM,YAAA,CAAa,MAAA,CAAQvtB,CAAAA,EAAMA,CAAAA,CAAE,QAAU8S,CAAQ,CAAA,CACxD,GAAI2mB,CAAAA,CAAU,MAAA,GAAW,CAAA,CAAI,CAAC,CAAE,OAAA,CAASA,CAAAA,CAAU,MAAA,CAAQ,KAAA,CAAO3mB,CAAU,CAAC,CAAA,CAAI,EACnF,CAAA,CACMu8B,CAAAA,CAAY9hB,EAAM,MAAA,EAAUkM,CAAAA,CAAU,SAAA,EAAa,CAAA,CAAA,CACzD6U,8BAAAA,CAAuB,WAAA,CACrB7U,EAAU,MAAA,CACVA,CAAAA,CAAU,QAAA,CACV2V,CAAAA,CACAC,CAAAA,CACA9L,CACF,EACF,CA0DO,SAAS+L,EAAAA,CACdx8B,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,OAAA,CAAS,MAAM,CAAA,CAChB9I,EACA,CAAC,CAAE,MAAA,CAAAsQ,CAAAA,CAAQ,QAAA,CAAAC,CAAAA,CAAU,OAAA2W,CAAO,CAAA,GAAM,CAChCD,EAAAA,CAAYjnB,CAAAA,CAAWsQ,CAAAA,CAAQC,EAAU2W,CAAM,CACjD,CAAA,CACA,MAAO/8B,CAAAA,CAAaw8B,CAAAA,GAAc,CAGhC0V,EAAAA,CAAqBr8B,CAAAA,CAAU2mB,CAAS,CAAA,CAKxC,IAAM1nB,EAAO9U,CAAAA,EAAQ,EAAA,EAAMA,CAAAA,EAAQ,KAAA,CAOnC,GANIqd,CAAAA,EAAM,SAAS,cAAA,EAAkBvI,CAAAA,EACnCuI,CAAAA,CAAK,OAAA,CAAQ,cAAA,CAAe,GAAA,CAAKvI,EAAM9U,CAAAA,EAAQ,SAAS,CAAA,CAAE,KAAA,CAAM,IAAM,CAAC,CAAC,CAAA,CAKtEqd,CAAAA,EAAM,SAAS,iBAAA,CAAmB,CACpC,IAAMi1B,CAAAA,CAAe,IAAM,CACzBj1B,CAAAA,CAAK,OAAA,CAAS,iBAAA,CAAmB,CAC/BkH,CAAAA,CAAU,KAAA,CAAM,KAAA,CAAM,CAAA,EAAA,EAAKiY,CAAAA,CAAU,MAAM,IAAIA,CAAAA,CAAU,QAAQ,CAAA,CAAE,CAAA,CACnEjY,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAClC,CAAC,EACH,CAAA,CAAA,CACa4H,GAAiB,OAAA,IACjB,OAAA,CACX,UAAA,CAAW60B,CAAAA,CAAc,GAAI,CAAA,CAE7BA,IAEJ,CACF,CAAA,CACAj1B,CAAAA,CACA,SAAA,CACA,CAAE,cAAeI,CAAAA,EAAiB,OAAQ,CAC5C,CACF,CC/GO,SAAS80B,GACd18B,CAAAA,CACAwH,CAAAA,CACAI,EACA,CACA,OAAOkB,EACL,CAAC,OAAA,CAAS,QAAQ,CAAA,CAClB9I,CAAAA,CACA,CAAC,CAAE,MAAA,CAAAsQ,CAAAA,CAAQ,QAAA,CAAAC,CAAAA,CAAU,YAAA,CAAAwX,CAAa,IAAM,CACtCD,EAAAA,CAAc9nB,CAAAA,CAAWsQ,CAAAA,CAAQC,CAAAA,CAAUwX,CAAAA,EAAgB,KAAK,CAClE,CAAA,CACA,MAAO59B,CAAAA,CAAaw8B,CAAAA,GAAc,CAEhC,IAAMlM,CAAAA,CAAQ+gB,8BAAAA,CAAuB,QAAA,CAAS7U,CAAAA,CAAU,MAAA,CAAQA,EAAU,QAAQ,CAAA,CAClF,GAAIlM,CAAAA,CAAO,CACT,IAAMkiB,EAAW,IAAA,CAAK,GAAA,CAAI,CAAA,CAAA,CAAIliB,CAAAA,CAAM,OAAA,EAAW,CAAA,GAAMkM,EAAU,YAAA,CAAe,EAAA,CAAK,EAAE,CAAA,CACrF6U,8BAAAA,CAAuB,mBAAmB7U,CAAAA,CAAU,MAAA,CAAQA,CAAAA,CAAU,QAAA,CAAUgW,CAAQ,EAC1F,CAKA,IAAM19B,CAAAA,CAAO9U,CAAAA,EAAQ,EAAA,EAAMA,CAAAA,EAAQ,KAAA,CAC/Bqd,GAAM,OAAA,EAAS,cAAA,EAAkBvI,CAAAA,EACnCuI,CAAAA,CAAK,OAAA,CAAQ,cAAA,CAAe,IAAKvI,CAAAA,CAAM9U,CAAAA,EAAQ,SAAS,CAAA,CAAE,KAAA,CAAM,IAAM,CAAC,CAAC,CAAA,CAK1E,IAAMyyC,CAAAA,CAAa,IAAM,CACZhwB,CAAAA,EAAe,CACvB,iBAAA,CAAkB,CACnB,QAAA,CAAU8B,CAAAA,CAAU,MAAM,sBAAA,CAAuB1O,CAAS,CAC5D,CAAC,CAAA,CACGwH,CAAAA,EAAM,SAAS,iBAAA,EACjBA,CAAAA,CAAK,OAAA,CAAQ,iBAAA,CAAkB,CAC7BkH,CAAAA,CAAU,MAAM,KAAA,CAAM,CAAA,EAAA,EAAKiY,CAAAA,CAAU,MAAM,CAAA,CAAA,EAAIA,CAAAA,CAAU,QAAQ,CAAA,CAAE,CAAA,CACnEjY,CAAAA,CAAU,KAAA,CAAM,WAAA,CAAYiY,CAAAA,CAAU,OAAQA,CAAAA,CAAU,QAAQ,CAClE,CAAC,EAEL,CAAA,CAAA,CACa/e,GAAiB,OAAA,IACjB,OAAA,CACX,WAAWg1B,CAAAA,CAAY,GAAI,EAE3BA,CAAAA,GAEJ,CAAA,CACAp1B,CAAAA,CACA,SAAA,CACA,CAAE,cAAeI,CAAAA,EAAiB,OAAQ,CAC5C,CACF,CCsBO,SAASi1B,GACd3zB,CAAAA,CACkB,CAClB,OAAIA,CAAAA,CAAQ,QAAA,CACH,IAAA,CAGFA,EAAQ,YAAA,CAAe,GAAA,CAAM,GACtC,CAEO,SAAS4zB,GACd98B,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,OAAA,CAAS,SAAS,CAAA,CACnB9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX,IAAM7E,CAAAA,CAA0B,EAAC,CAgBjC,GAbAA,CAAAA,CAAW,IAAA,CACT8iB,GACEje,CAAAA,CAAQ,MAAA,CACRA,EAAQ,QAAA,CACRA,CAAAA,CAAQ,aACRA,CAAAA,CAAQ,cAAA,CACRA,CAAAA,CAAQ,KAAA,CACRA,CAAAA,CAAQ,IAAA,CACRA,EAAQ,YACV,CACF,CAAA,CAGIA,CAAAA,CAAQ,OAAA,CAAS,CACnB,GAAM,CACJ,iBAAA,CAAAse,CAAAA,CAAoB,iBAAA,CACpB,UAAA,CAAAC,CAAAA,CAAa,IACb,UAAA,CAAAC,CAAAA,CAAa,KACb,oBAAA,CAAAC,CAAAA,CAAuB,KACvB,aAAA,CAAAoV,CAAAA,CAAgB,EAClB,CAAA,CAAI7zB,CAAAA,CAAQ,QAEN0e,CAAAA,CAAoB,EAAC,CAG3B,GAAImV,CAAAA,CAAc,MAAA,CAAS,EAAG,CAE5B,IAAMC,CAAAA,CAAsB,CAAC,GAAGD,CAAa,EAAE,IAAA,CAAK,CAAC9sC,EAAGhG,CAAAA,GACtDgG,CAAAA,CAAE,QAAQ,aAAA,CAAchG,CAAAA,CAAE,OAAO,CACnC,CAAA,CAEA29B,CAAAA,CAAW,KAAK,CACd,CAAA,CACA,CACE,aAAA,CAAeoV,CAAAA,CAAoB,GAAA,CAAI/yC,IAAM,CAC3C,OAAA,CAASA,CAAAA,CAAE,OAAA,CACX,MAAA,CAAQA,CAAAA,CAAE,MACZ,CAAA,CAAE,CACJ,CACF,CAAC,EACH,CAEAoa,CAAAA,CAAW,IAAA,CACTkjB,EAAAA,CACEre,CAAAA,CAAQ,MAAA,CACRA,CAAAA,CAAQ,SACRse,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACAC,CACF,CACF,EACF,CAEA,OAAOvjB,CACT,CAAA,CACA,MAAOla,CAAAA,CAAaw8B,IAAc,CAEhC,IAAMsW,EAAS,CAACtW,CAAAA,CAAU,aACpBuW,CAAAA,CAAeL,EAAAA,CAA2BlW,CAAS,CAAA,CAKnD1nB,CAAAA,CAAO9U,CAAAA,EAAQ,IAAMA,CAAAA,EAAQ,KAAA,CAMnC,GALI+yC,CAAAA,GAAiB,IAAA,EAAQ11B,CAAAA,EAAM,SAAS,cAAA,EAAkBvI,CAAAA,EAC5DuI,CAAAA,CAAK,OAAA,CAAQ,cAAA,CAAe01B,CAAAA,CAAcj+B,EAAM9U,CAAAA,EAAQ,SAAS,CAAA,CAAE,KAAA,CAAM,IAAM,CAAC,CAAC,CAAA,CAI/Eqd,CAAAA,EAAM,OAAA,EAAS,iBAAA,CAAmB,CACpC,IAAM21B,EAA6B,CACjCzuB,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,EAAU,eAAA,CAAgB,OAAA,CAAQ1O,CAAS,CAC7C,CAAA,CAGA,GAAI,CAACi9B,CAAAA,CAAQ,CAEXE,EAAoB,IAAA,CAClBzuB,CAAAA,CAAU,MAAM,KAAA,CAAM,CAAA,EAAA,EAAKiY,CAAAA,CAAU,YAAY,CAAA,CAAA,EAAIA,CAAAA,CAAU,cAAc,CAAA,CAAE,CACjF,CAAA,CAMA,IAAMyW,CAAAA,CAAoBzW,CAAAA,CAAU,YAAcA,CAAAA,CAAU,YAAA,CACtD0W,CAAAA,CAAsB1W,CAAAA,CAAU,YAAA,EAAgBA,CAAAA,CAAU,eAEhEwW,CAAAA,CAAoB,IAAA,CAAK,CACvB,SAAA,CAAY/rB,CAAAA,EAAe,CACzB,IAAM9hB,CAAAA,CAAM8hB,CAAAA,CAAM,QAAA,CAClB,OACE,KAAA,CAAM,QAAQ9hB,CAAG,CAAA,EACjBA,CAAAA,CAAI,CAAC,CAAA,GAAM,OAAA,EACXA,EAAI,CAAC,CAAA,GAAM,aAAA,EACXA,CAAAA,CAAI,CAAC,CAAA,GAAM8tC,GACX9tC,CAAAA,CAAI,CAAC,IAAM+tC,CAEf,CACF,CAAC,EACH,CAEA,MAAM71B,CAAAA,CAAK,OAAA,CAAQ,iBAAA,CAAkB21B,CAAmB,EAC1D,CACF,CAAA,CACA31B,CAAAA,CACA,SAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CCrQO,SAAS01B,EAAAA,CACd7iB,EACA8iB,CAAAA,CACAC,CAAAA,CACA/M,EACA,CACA,IAAMjK,EAAciK,CAAAA,EAAM7jB,CAAAA,EAAe,CACnC6wB,CAAAA,CAAUjX,CAAAA,CAAY,cAAA,CAAwB,CAClD,SAAA,CAAYpV,CAAAA,EAAU,CACpB,IAAM9hB,CAAAA,CAAM8hB,CAAAA,CAAM,SAClB,OACE,KAAA,CAAM,OAAA,CAAQ9hB,CAAG,CAAA,EACjBA,CAAAA,CAAI,CAAC,CAAA,GAAM,OAAA,EACXA,EAAI,CAAC,CAAA,GAAM,eACXA,CAAAA,CAAI,CAAC,CAAA,GAAMiuC,CAAAA,EACXjuC,CAAAA,CAAI,CAAC,IAAMkuC,CAEf,CACF,CAAC,CAAA,CAED,IAAA,GAAW,CAACzwB,EAAUre,CAAI,CAAA,GAAK+uC,CAAAA,CACzB/uC,CAAAA,EACF83B,CAAAA,CAAY,YAAA,CAAsBzZ,EAAU,CAAC0N,CAAAA,CAAO,GAAG/rB,CAAI,CAAC,EAGlE,CAMO,SAASgvC,EAAAA,CACdptB,CAAAA,CACAC,CAAAA,CACAgtB,CAAAA,CACAC,EACA/M,CAAAA,CACkC,CAClC,IAAMjK,CAAAA,CAAciK,CAAAA,EAAM7jB,CAAAA,GACpB+wB,CAAAA,CAAY,IAAI,GAAA,CAEhBF,CAAAA,CAAUjX,CAAAA,CAAY,cAAA,CAAwB,CAClD,SAAA,CAAYpV,CAAAA,EAAU,CACpB,IAAM9hB,CAAAA,CAAM8hB,EAAM,QAAA,CAClB,OACE,KAAA,CAAM,OAAA,CAAQ9hB,CAAG,CAAA,EACjBA,EAAI,CAAC,CAAA,GAAM,OAAA,EACXA,CAAAA,CAAI,CAAC,CAAA,GAAM,eACXA,CAAAA,CAAI,CAAC,CAAA,GAAMiuC,CAAAA,EACXjuC,CAAAA,CAAI,CAAC,IAAMkuC,CAEf,CACF,CAAC,CAAA,CAED,IAAA,GAAW,CAACzwB,EAAUre,CAAI,CAAA,GAAK+uC,CAAAA,CACzB/uC,CAAAA,GACFivC,CAAAA,CAAU,GAAA,CAAI5wB,EAAUre,CAAI,CAAA,CAC5B83B,CAAAA,CAAY,YAAA,CACVzZ,CAAAA,CACAre,CAAAA,CAAK,OACFwG,CAAAA,EAAMA,CAAAA,CAAE,MAAA,GAAWob,CAAAA,EAAUpb,CAAAA,CAAE,QAAA,GAAaqb,CAC/C,CACF,CAAA,CAAA,CAIJ,OAAOotB,CACT,CAKO,SAASC,EAAAA,CACdD,CAAAA,CACAlN,CAAAA,CACA,CACA,IAAMjK,CAAAA,CAAciK,GAAM7jB,CAAAA,EAAe,CACzC,IAAA,GAAW,CAACG,CAAAA,CAAUre,CAAI,IAAKivC,CAAAA,CAC7BnX,CAAAA,CAAY,YAAA,CAAsBzZ,CAAAA,CAAUre,CAAI,EAEpD,CAMO,SAASmvC,EAAAA,CACdvtB,EACAC,CAAAA,CACAutB,CAAAA,CACArN,EACmB,CACnB,IAAMjK,CAAAA,CAAciK,CAAAA,EAAM7jB,CAAAA,EAAe,CACnC1P,EAAO,CAAA,EAAA,EAAKoT,CAAM,CAAA,CAAA,EAAIC,CAAQ,CAAA,CAAA,CAC9BwtB,CAAAA,CAAWvX,EAAY,YAAA,CAAoB9X,CAAAA,CAAU,KAAA,CAAM,KAAA,CAAMxR,CAAI,CAAC,EAE5E,OAAI6gC,CAAAA,EACFvX,EAAY,YAAA,CAAoB9X,CAAAA,CAAU,MAAM,KAAA,CAAMxR,CAAI,CAAA,CAAG,CAC3D,GAAG6gC,CAAAA,CACH,GAAGD,CACL,CAAC,CAAA,CAGIC,CACT,CAKO,SAASC,GACd1tB,CAAAA,CACAC,CAAAA,CACAkK,CAAAA,CACAgW,CAAAA,CACA,CACA,IAAMjK,EAAciK,CAAAA,EAAM7jB,CAAAA,GACpB1P,CAAAA,CAAO,CAAA,EAAA,EAAKoT,CAAM,CAAA,CAAA,EAAIC,CAAQ,CAAA,CAAA,CACpCiW,CAAAA,CAAY,YAAA,CAAoB9X,CAAAA,CAAU,MAAM,KAAA,CAAMxR,CAAI,CAAA,CAAGud,CAAK,EACpE,CCvFO,SAASwjB,EAAAA,CACdj+B,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,EACL,CAAC,OAAA,CAAS,eAAe,CAAA,CACzB9I,CAAAA,CACA,CAAC,CAAE,MAAA,CAAAsQ,CAAAA,CAAQ,QAAA,CAAAC,CAAS,CAAA,GAAM,CACxBsX,EAAAA,CAAqBvX,CAAAA,CAAQC,CAAQ,CACvC,CAAA,CACA,MAAO4f,EAAcxJ,CAAAA,GAAc,CAEjC,GAAInf,CAAAA,EAAM,OAAA,EAAS,iBAAA,CAAmB,CACpC,IAAM21B,CAAAA,CAA6B,CACjCzuB,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAClC,CAAA,CAGA,GAAI2mB,CAAAA,CAAU,YAAA,EAAgBA,EAAU,cAAA,CAAgB,CACtDwW,CAAAA,CAAoB,IAAA,CAClBzuB,CAAAA,CAAU,KAAA,CAAM,MAAM,CAAA,EAAA,EAAKiY,CAAAA,CAAU,YAAY,CAAA,CAAA,EAAIA,CAAAA,CAAU,cAAc,EAAE,CACjF,CAAA,CAEA,IAAMyW,CAAAA,CAAoBzW,CAAAA,CAAU,YAAcA,CAAAA,CAAU,YAAA,CACtD0W,CAAAA,CAAsB1W,CAAAA,CAAU,YAAA,EAAgBA,CAAAA,CAAU,eAEhEwW,CAAAA,CAAoB,IAAA,CAAK,CACvB,SAAA,CAAY/rB,CAAAA,EAAe,CACzB,IAAM9hB,CAAAA,CAAM8hB,CAAAA,CAAM,QAAA,CAClB,OACE,KAAA,CAAM,OAAA,CAAQ9hB,CAAG,CAAA,EACjBA,CAAAA,CAAI,CAAC,CAAA,GAAM,OAAA,EACXA,CAAAA,CAAI,CAAC,CAAA,GAAM,aAAA,EACXA,CAAAA,CAAI,CAAC,CAAA,GAAM8tC,CAAAA,EACX9tC,EAAI,CAAC,CAAA,GAAM+tC,CAEf,CACF,CAAC,EACH,CAEA,MAAM71B,CAAAA,CAAK,OAAA,CAAQ,iBAAA,CAAkB21B,CAAmB,EAC1D,CACF,CAAA,CACA31B,CAAAA,CACA,UACA,CACE,aAAA,CAAAI,EAEA,QAAA,CAAU,MAAO+e,CAAAA,EAAc,CAC7B,IAAM4W,CAAAA,CAAa5W,EAAU,UAAA,EAAcA,CAAAA,CAAU,YAAA,CAC/C6W,CAAAA,CAAe7W,CAAAA,CAAU,YAAA,EAAgBA,EAAU,cAAA,CAEzD,OAAI4W,CAAAA,EAAcC,CAAAA,CAOT,CAAE,SAAA,CANSE,GAChB/W,CAAAA,CAAU,MAAA,CACVA,EAAU,QAAA,CACV4W,CAAAA,CACAC,CACF,CACmB,CAAA,CAEd,EACT,CAAA,CAEA,OAAA,CAAS,CAACU,CAAAA,CAAQ1D,CAAAA,CAAYrJ,CAAAA,GAAY,CACxC,GAAM,CAAE,UAAAwM,CAAU,CAAA,CAAKxM,CAAAA,EAAgE,EAAC,CACpFwM,CAAAA,EACFC,GAA2BD,CAAS,EAExC,CACF,CACF,CACF,CCvBO,SAASQ,EAAAA,CACdn+B,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,OAAA,CAAS,YAAY,CAAA,CACtB9I,CAAAA,CACCkJ,GAAY,CACX,IAAM7E,CAAAA,CAA0B,EAAC,CAgBjC,GAbAA,EAAW,IAAA,CACT8iB,EAAAA,CACEje,CAAAA,CAAQ,MAAA,CACRA,CAAAA,CAAQ,QAAA,CACR,GACAA,CAAAA,CAAQ,cAAA,CACRA,CAAAA,CAAQ,KAAA,CACRA,CAAAA,CAAQ,IAAA,CACRA,EAAQ,YACV,CACF,CAAA,CAGIA,CAAAA,CAAQ,OAAA,CAAS,CACnB,GAAM,CACJ,iBAAA,CAAAse,CAAAA,CAAoB,iBAAA,CACpB,UAAA,CAAAC,CAAAA,CAAa,IACb,UAAA,CAAAC,CAAAA,CAAa,KACb,oBAAA,CAAAC,CAAAA,CAAuB,IACzB,CAAA,CAAIze,CAAAA,CAAQ,OAAA,CAEZ7E,CAAAA,CAAW,IAAA,CACTkjB,EAAAA,CACEre,EAAQ,MAAA,CACRA,CAAAA,CAAQ,QAAA,CACRse,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACAC,EACA,EACF,CACF,EACF,CAEA,OAAOtjB,CACT,CAAA,CACA,MAAO8rB,EAAcxJ,CAAAA,GAAc,CAEjC,GAAInf,CAAAA,EAAM,OAAA,EAAS,iBAAA,CAAmB,CACpC,IAAM21B,CAAAA,CAA6B,CACjCzuB,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAEhC,CACE,UAAYoR,CAAAA,EAAe,CACzB,IAAM9hB,CAAAA,CAAM8hB,CAAAA,CAAM,QAAA,CAClB,OACE,KAAA,CAAM,OAAA,CAAQ9hB,CAAG,CAAA,EACjBA,CAAAA,CAAI,CAAC,CAAA,GAAM,OAAA,EACXA,CAAAA,CAAI,CAAC,CAAA,GAAM,cAAA,EACXA,EAAI,CAAC,CAAA,GAAMq3B,CAAAA,CAAU,cAEzB,CACF,CACF,EACA,MAAMnf,CAAAA,CAAK,OAAA,CAAQ,iBAAA,CAAkB21B,CAAmB,EAC1D,CACF,CAAA,CACA31B,CAAAA,CACA,SAAA,CACA,CAAE,aAAA,CAAeI,CAAAA,EAAiB,OAAQ,CAC5C,CACF,CClEO,SAASw2B,EAAAA,CACdp+B,CAAAA,CACAwH,EACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,OAAA,CAAS,cAAc,CAAA,CACxB9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX,IAAM7E,CAAAA,CAA0B,EAAC,CAgBjC,GAbAA,EAAW,IAAA,CACT8iB,EAAAA,CACEje,EAAQ,MAAA,CACRA,CAAAA,CAAQ,QAAA,CACRA,CAAAA,CAAQ,YAAA,CACRA,CAAAA,CAAQ,eACRA,CAAAA,CAAQ,KAAA,CACRA,CAAAA,CAAQ,IAAA,CACRA,CAAAA,CAAQ,YACV,CACF,CAAA,CAGIA,CAAAA,CAAQ,OAAA,CAAS,CACnB,GAAM,CACJ,kBAAAse,CAAAA,CAAoB,iBAAA,CACpB,WAAAC,CAAAA,CAAa,GAAA,CACb,WAAAC,CAAAA,CAAa,IAAA,CACb,oBAAA,CAAAC,CAAAA,CAAuB,IAAA,CACvB,aAAA,CAAAoV,EAAgB,EAClB,CAAA,CAAI7zB,CAAAA,CAAQ,OAAA,CAEN0e,CAAAA,CAAoB,EAAC,CAG3B,GAAImV,CAAAA,CAAc,MAAA,CAAS,CAAA,CAAG,CAE5B,IAAMC,CAAAA,CAAsB,CAAC,GAAGD,CAAa,CAAA,CAAE,KAAK,CAAC9sC,CAAAA,CAAGhG,CAAAA,GACtDgG,CAAAA,CAAE,OAAA,CAAQ,aAAA,CAAchG,EAAE,OAAO,CACnC,CAAA,CAEA29B,CAAAA,CAAW,IAAA,CAAK,CACd,EACA,CACE,aAAA,CAAeoV,CAAAA,CAAoB,GAAA,CAAI/yC,CAAAA,GAAM,CAC3C,QAASA,CAAAA,CAAE,OAAA,CACX,OAAQA,CAAAA,CAAE,MACZ,EAAE,CACJ,CACF,CAAC,EACH,CAEAoa,CAAAA,CAAW,KACTkjB,EAAAA,CACEre,CAAAA,CAAQ,MAAA,CACRA,CAAAA,CAAQ,QAAA,CACRse,CAAAA,CACAC,EACAC,CAAAA,CACAC,CAAAA,CACAC,CACF,CACF,EACF,CAEA,OAAOvjB,CACT,CAAA,CACA,MAAO8rB,CAAAA,CAAcxJ,CAAAA,GAAc,CAKjC,GAAInf,CAAAA,EAAM,OAAA,EAAS,iBAAA,CAAmB,CACpC,IAAM21B,EAA6B,CACjCzuB,CAAAA,CAAU,eAAA,CAAgB,OAAA,CAAQ1O,CAAS,CAC7C,EAGAm9B,CAAAA,CAAoB,IAAA,CAClBzuB,CAAAA,CAAU,KAAA,CAAM,KAAA,CAAM,CAAA,EAAA,EAAKiY,EAAU,YAAY,CAAA,CAAA,EAAIA,EAAU,cAAc,CAAA,CAAE,CACjF,CAAA,CAMA,IAAMyW,CAAAA,CAAoBzW,CAAAA,CAAU,UAAA,EAAcA,CAAAA,CAAU,aACtD0W,CAAAA,CAAsB1W,CAAAA,CAAU,YAAA,EAAgBA,CAAAA,CAAU,cAAA,CAEhEwW,CAAAA,CAAoB,KAAK,CACvB,SAAA,CAAY/rB,CAAAA,EAAe,CACzB,IAAM9hB,CAAAA,CAAM8hB,EAAM,QAAA,CAClB,OACE,MAAM,OAAA,CAAQ9hB,CAAG,GACjBA,CAAAA,CAAI,CAAC,CAAA,GAAM,OAAA,EACXA,CAAAA,CAAI,CAAC,IAAM,aAAA,EACXA,CAAAA,CAAI,CAAC,CAAA,GAAM8tC,CAAAA,EACX9tC,CAAAA,CAAI,CAAC,CAAA,GAAM+tC,CAEf,CACF,CAAC,CAAA,CAED,MAAM71B,EAAK,OAAA,CAAQ,iBAAA,CAAkB21B,CAAmB,EAC1D,CACF,CAAA,CACA31B,EACA,SAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCnJO,SAASy2B,EAAAA,CACdr+B,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,SAAS,CAAA,CACpB9I,CAAAA,CACA,CAAC,CAAE,MAAA,CAAAsQ,EAAQ,QAAA,CAAAC,CAAAA,CAAU,SAAAvE,CAAS,CAAA,GAAM,CAClCojB,EAAAA,CAAepvB,CAAAA,CAAWsQ,CAAAA,CAAQC,EAAUvE,CAAQ,CACtD,CAAA,CACA,MAAOmkB,CAAAA,CAAcxJ,CAAAA,GAAc,CAE7Bnf,CAAAA,EAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,kBAAkB,CAEnC,CAAC,GAAGkH,CAAAA,CAAU,KAAA,CAAM,eAAe,CAAA,CAEnC,CAAC,GAAGA,CAAAA,CAAU,MAAA,CAAO,OAAA,CAAQ1O,CAAS,CAAC,CAAA,CAEvC0O,CAAAA,CAAU,KAAA,CAAM,KAAA,CAAM,CAAA,EAAA,EAAKiY,EAAU,MAAM,CAAA,CAAA,EAAIA,CAAAA,CAAU,QAAQ,CAAA,CAAE,CACrE,CAAC,EAEL,CAAA,CACAnf,EACA,QAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CCjFA,IAAM02B,EAAAA,CAA+B,CAAC,GAAA,CAAM,GAAA,CAAM,GAAI,CAAA,CAEhDxiC,EAAAA,CAASrI,CAAAA,EAAe,IAAI,OAAA,CAASC,CAAAA,EAAY,UAAA,CAAWA,CAAAA,CAASD,CAAE,CAAC,EAE9E,eAAe8qC,EAAAA,CAAWjuB,EAAgBC,CAAAA,CAAkC,CAC1E,OAAOvU,CAAAA,CAAQ,2BAAA,CAA6B,CAC1CsU,CAAAA,CACAC,CACF,CAAC,CACH,CAEA,eAAsBiuB,EAAAA,CACpBluB,CAAAA,CACAC,CAAAA,CACAkuB,CAAAA,CAAW,EACX7/B,CAAAA,CACA,CACA,IAAM8/B,CAAAA,CAAS9/B,CAAAA,EAAS,MAAA,EAAU0/B,GAE9B9gC,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAW,MAAM+gC,GAAWjuB,CAAAA,CAAQC,CAAQ,EAC9C,CAAA,KAAY,CACV/S,CAAAA,CAAW,OACb,CAEA,GAAIA,CAAAA,EAAYihC,CAAAA,EAAYC,CAAAA,CAAO,MAAA,CACjC,OAGF,IAAMC,CAAAA,CAASD,CAAAA,CAAOD,CAAQ,CAAA,CAC9B,OAAIE,EAAS,CAAA,EACX,MAAM7iC,GAAM6iC,CAAM,CAAA,CAGbH,GAAqBluB,CAAAA,CAAQC,CAAAA,CAAUkuB,CAAAA,CAAW,CAAA,CAAG7/B,CAAO,CACrE,CC3CA,IAAAggC,EAAAA,CAAA,GAAA16B,EAAAA,CAAA06B,EAAAA,CAAA,CAAA,iBAAA,CAAA,IAAAC,KCuCA,SAASC,EAAAA,EAAmD,CAC1D,OAAI,OAAO,OAAW,GAAA,EAAe,MAAA,CAAO,SACnC,CACL,GAAA,CAAK,MAAA,CAAO,QAAA,CAAS,IAAA,CACrB,MAAA,CAAQ,OAAO,QAAA,CAAS,IAC1B,CAAA,CAEK,CAAE,GAAA,CAAK,EAAA,CAAI,OAAQ,EAAG,CAC/B,CAEO,SAASD,EAAAA,CACd7+B,CAAAA,CACAk9B,EACAt+B,CAAAA,CACA,CACA,OAAOqK,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,WAAA,CAAai0B,CAAY,CAAA,CACvC,UAAA,CAAY,SAAY,CACtB,GAAI,CAACA,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,mDAA8C,EAEhE,IAAM/D,CAAAA,CAAWnrB,CAAAA,EAAc,CAIzB+wB,CAAAA,CAAeD,EAAAA,GACf/xC,CAAAA,CAAM6R,CAAAA,EAAS,KAAOmgC,CAAAA,CAAa,GAAA,CACnCC,EAASpgC,CAAAA,EAAS,MAAA,EAAUmgC,CAAAA,CAAa,MAAA,CAE/C,GAAI,CACF,MAAM5F,CAAAA,CAAS9uB,CAAAA,CAAO,aAAA,CAAgB,YAAA,CAAc,CAClD,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CACnB,KAAM6yB,CAAAA,CACN,GAAA,CAAAnwC,EACA,MAAA,CAAAiyC,CAAAA,CACA,KAAA,CAAO,CACL,QAAA,CAAAh/B,CACF,CACF,CAAC,CACH,CAAC,EACH,CAAA,KAAQ,CAGR,CACF,CACF,CAAC,CACH,CCrFO,SAASi/B,GAAmCjzB,CAAAA,CAA+B,CAChF,OAAOyC,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,WAAA,CAAa,sBAAA,CAAwBzC,CAAQ,CAAA,CACxD,OAAA,CAAS,MAAO,CAAE,MAAA,CAAAlX,CAAO,IAAM,CAC7B,IAAM0I,CAAAA,CAAW,MAAM,KAAA,CACrB6M,CAAAA,CAAO,eAAiB,CAAA,yBAAA,EAA4B2B,CAAQ,GAC5D,CAAE,MAAA,CAAAlX,CAAO,CACX,CAAA,CAEA,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,6BAAA,EAAgCA,CAAAA,CAAS,MAAM,CAAA,CAAE,EAGnE,OAAOA,CAAAA,CAAS,IAAA,EAClB,CACF,CAAC,CACH,CCfO,SAAS0hC,EAAAA,CAAgClzB,CAAAA,CAA4B,CAC1E,OAAOyC,uBAAAA,CAAa,CAClB,SAAU,CAAC,WAAA,CAAa,mBAAA,CAAqBzC,CAAQ,CAAA,CACrD,OAAA,CAAS,MAAO,CAAE,MAAA,CAAAlX,CAAO,CAAA,GAAM,CAC7B,IAAM0I,EAAW,MAAM,KAAA,CACrB6M,EAAO,cAAA,CAAiB,CAAA,sBAAA,EAAyB2B,CAAQ,CAAA,CAAA,CACzD,CAAE,MAAA,CAAAlX,CAAO,CACX,CAAA,CAEA,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,kCAAkCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGrE,IAAM9O,CAAAA,CAAQ,MAAM8O,CAAAA,CAAS,IAAA,GAGvBiU,CAAAA,CAAW/iB,CAAAA,CAAK,IAAK6C,CAAAA,EAASA,CAAAA,CAAK,OAAO,CAAA,CAC1C4tC,CAAAA,CAAmB,MAAMnjC,EAAQ,4BAAA,CAA8B,CAACyV,CAAQ,CAAC,CAAA,CAG/E,IAAA,IAASgmB,EAAQ,CAAA,CAAGA,CAAAA,CAAQ0H,CAAAA,CAAiB,MAAA,CAAQ1H,CAAAA,EAAAA,CAAS,CAC5D,IAAM2H,CAAAA,CAAUD,CAAAA,CAAiB1H,CAAK,CAAA,CAChC4H,CAAAA,CAAU3wC,CAAAA,CAAK+oC,CAAK,CAAA,CAGpB3O,CAAAA,CAAgB,OAAOsW,CAAAA,CAAQ,cAAA,EAAmB,QAAA,CACpDA,EAAQ,cAAA,CACRA,CAAAA,CAAQ,cAAA,CAAe,QAAA,EAAS,CAC9BE,CAAAA,CAAwB,OAAOF,CAAAA,CAAQ,uBAAA,EAA4B,QAAA,CACrEA,CAAAA,CAAQ,uBAAA,CACRA,CAAAA,CAAQ,wBAAwB,QAAA,EAAS,CACvCG,EAAyB,OAAOH,CAAAA,CAAQ,0BAA6B,QAAA,CACvEA,CAAAA,CAAQ,wBAAA,CACRA,CAAAA,CAAQ,wBAAA,CAAyB,QAAA,GAC/BI,CAAAA,CAAsB,OAAOJ,CAAAA,CAAQ,qBAAA,EAA0B,QAAA,CACjEA,CAAAA,CAAQ,sBACRA,CAAAA,CAAQ,qBAAA,CAAsB,QAAA,EAAS,CAErCK,CAAAA,CACJ,UAAA,CAAW3W,CAAa,CAAA,CACxB,UAAA,CAAWwW,CAAqB,CAAA,CAChC,UAAA,CAAWC,CAAsB,CAAA,CACjC,UAAA,CAAWC,CAAmB,CAAA,CAIhCH,CAAAA,CAAQ,UAAA,CAAaA,EAAQ,EAAA,CAAKI,EACpC,CAGA,OAAA/wC,CAAAA,CAAK,IAAA,CAAK,CAACuB,CAAAA,CAAiBhG,CAAAA,GAAoBA,CAAAA,CAAE,UAAA,CAAagG,CAAAA,CAAE,UAAU,EAEpEvB,CACT,CACF,CAAC,CACH,CChDO,SAASgxC,EAAAA,CACd3yC,CAAAA,CACA2mB,EAAuB,EAAC,CACxBC,CAAAA,CAAoB,CAAC,UAAA,CAAY,WAAA,CAAa,gBAAgB,CAAA,CAC9DC,CAAAA,CACA,CAEA,IAAM+rB,CAAAA,CAAmB,CAAC,GAAGjsB,CAAU,CAAA,CAAE,MAAK,CACxCksB,CAAAA,CAAgB,CAAC,GAAGjsB,CAAO,CAAA,CAAE,IAAA,EAAK,CAExC,OAAOlF,wBAAa,CAClB,QAAA,CAAU,CAAC,WAAA,CAAa,YAAA,CAAc1hB,CAAAA,CAAK4yC,EAAkBC,CAAAA,CAAehsB,CAAS,CAAA,CACrF,OAAA,CAAS,MAAO,CAAE,OAAA9e,CAAO,CAAA,GAAM,CAC7B,IAAM0I,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,cAAA,CAAiB,YAAA,CAAc,CACjE,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CACnB,OAAA,CAAAsJ,CAAAA,CACA,GAAA,CAAK,kBAAA,CAAmB5mB,CAAG,CAAA,CAC3B,UAAA,CAAA2mB,EACA,UAAA,CAAYE,CACd,CAAC,CAAA,CACD,MAAA,CAAA9e,CACF,CAAC,CAAA,CAED,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,4BAAA,EAA+BA,EAAS,MAAM,CAAA,CAAE,CAAA,CAGlE,OAAOA,CAAAA,CAAS,IAAA,EAClB,CAAA,CACA,OAAA,CAAS,CAAC,CAACzQ,CAAAA,CAEX,UAAW,CACb,CAAC,CACH,CCjCO,IAAM8yC,EAAAA,CAAiC,iBAGjCC,EAAAA,CAAgC,KAmBtC,SAASC,EAAAA,CAAmBxlC,CAAAA,CAAuB,CACxD,OAAO,kDAAA,CAAmD,IAAA,CAAKA,CAAI,CACrE,CAQO,SAASylC,GACdjD,CAAAA,CACAxiC,CAAAA,CACoC,CACpC,GAAI,CAACwlC,EAAAA,CAAmBxlC,CAAI,CAAA,CAC1B,OAAOwiC,CAAAA,CAGT,IAAMjlC,CAAAA,CAAWilC,CAAAA,CAAc,KAAM9yC,CAAAA,EAAMA,CAAAA,CAAE,OAAA,GAAY41C,EAA8B,CAAA,CAEvF,OAAI/nC,GAAYA,CAAAA,CAAS,MAAA,GAAW,IAAA,CAC3BilC,CAAAA,CAGLjlC,CAAAA,CACKilC,CAAAA,CAAc,IAAK9yC,CAAAA,EACxBA,CAAAA,CAAE,UAAY41C,EAAAA,CACV,CAAE,GAAG51C,CAAAA,CAAG,MAAA,CAAQ,IAA8B,CAAA,CAC9CA,CACN,CAAA,CAGK,CACL,GAAG8yC,CAAAA,CACH,CAAE,OAAA,CAAS8C,EAAAA,CAAgC,MAAA,CAAQ,IAA8B,CACnF,CACF,CAGO,SAASI,EAAAA,CAAwBj6B,CAAAA,CAA0B,CAChE,OAAOA,CAAAA,GAAY65B,EACrB,CC/EA,IAAAK,GAAA,EAAA,CAAAh8B,EAAAA,CAAAg8B,EAAAA,CAAA,CAAA,2BAAA,CAAA,IAAAC,EAAAA,CAAA,4BAAA,CAAA,IAAAC,KCAA,IAAAF,EAAAA,CAAA,GAAAh8B,EAAAA,CAAAg8B,EAAAA,CAAA,CAAA,yBAAA,CAAA,IAAAG,EAAAA,CAAAA,CAAAA,CCGO,SAASA,GACdrgC,CAAAA,CACA+C,CAAAA,CACAqG,CAAAA,CACA,CACA,OAAOqF,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,cAAA,CAAgB,YAAA,CAAc,aAAA,CAAezO,CAAQ,EAChE,OAAA,CAAS,SAAY,CACnB,GAAIoJ,CAAAA,CAIF,OAHiB,IAAIrB,mBAAAA,CAAG,MAAA,CAAO,CAC7B,WAAA,CAAAqB,CACF,CAAC,CAAA,CACe,MAAA,CAAOrG,CAAI,CAE/B,CACF,CAAC,CACH,CCjBA,IAAMu9B,EAAAA,CAAwB,CAC5B,OAAA,CAAAJ,EACF,ECAO,SAASC,EAAAA,CACdngC,CAAAA,CACAoJ,CAAAA,CACA,CACA,OAAOqF,wBAAa,CAClB,QAAA,CAAU,CAAC,cAAA,CAAgB,QAAA,CAAU,eAAgBzO,CAAQ,CAAA,CAC7D,OAAA,CAAS,CAAC,CAACA,CAAAA,EAAY,CAAC,CAACoJ,CAAAA,CACzB,OAAA,CAAS,SAAY,CACnB,GAAI,CAACpJ,CAAAA,EAAY,CAACoJ,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,iDAAyC,CAAA,CAI3D,IAAM5L,EAAW,MADAwQ,CAAAA,GAEf,CAAA,+CAAA,EAAkDhO,CAAQ,CAAA,gBAAA,CAAA,CAC1D,CACE,OAAA,CAAS,CACP,eAAgB,kBAClB,CACF,CACF,CAAA,CAEMugC,CAAAA,CACJD,EAAAA,CAAsB,QAAQ,yBAAA,CAC5BtgC,CAAAA,CAAAA,CACC,MAAMxC,CAAAA,CAAS,IAAA,EAAK,EAAG,KACxB4L,CACF,CAAA,CACF,MAAMwD,CAAAA,EAAe,CAAE,cAAc2zB,CAAgB,CAAA,CACrD,GAAM,CAAE,WAAA,CAAAC,CAAY,EAAI5zB,CAAAA,EAAe,CAAE,YAAA,CACvC2zB,CAAAA,CAAiB,QACnB,CAAA,CAEA,OAAOC,CAAAA,CAAY,OAAA,CAAQ,GAAA,CAAK,EAAE,CACpC,CACF,CAAC,CACH,CCnCO,SAASJ,EAAAA,CACdpgC,CAAAA,CACAoJ,CAAAA,CACA,CACA,OAAOqF,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,cAAA,CAAgB,QAAA,CAAU,QAAA,CAAUzO,CAAQ,EACvD,OAAA,CAAS,CAAC,CAACA,CAAAA,EAAY,CAAC,CAACoJ,EACzB,OAAA,CAAS,SAAY,CACnB,GAAI,CAACpJ,GAAY,CAACoJ,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,iDAAyC,EAG3D,IAAMq3B,CAAAA,CAAoBN,EAAAA,CACxBngC,CAAAA,CACAoJ,CACF,CAAA,CAEA,MAAMwD,CAAAA,EAAe,CAAE,aAAA,CAAc6zB,CAAiB,CAAA,CACtD,IAAM34B,EAAQ8E,CAAAA,EAAe,CAAE,aAAa6zB,CAAAA,CAAkB,QAAQ,EACtE,GAAI,CAAC34B,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,0DAAqD,CAAA,CAavE,OAAQ,KAAA,CATS,MADAkG,CAAAA,EAAc,CAE7B,gDACA,CACE,OAAA,CAAS,CACP,cAAA,CAAgB,kBAAA,CAChB,aAAA,CAAe,UAAUlG,CAAK,CAAA,CAChC,CACF,CACF,CAAA,EACuB,MACzB,CACF,CAAC,CACH,CCrCA,IAAM44B,GAAwB,CAC5B,OAAA,CAAAR,EACF,ECHO,SAASS,EAAAA,CAA6B3gC,CAAAA,CAA8B,CACzE,OAAOyO,wBAAa,CAClB,QAAA,CAAU,CAAC,cAAA,CAAgB,UAAA,CAAY,QAASzO,CAAQ,CAAA,CACxD,KAAA,CAAO,KAAA,CACP,OAAA,CAAS,SAAY,CACnB,GAAI,CAEF,IAAMxC,CAAAA,CAAW,MADAwQ,CAAAA,GAEf,CAAA,4CAAA,EAA+ChO,CAAQ,CAAA,CAAA,CACvD,CACE,OAAA,CAAS,CACP,eAAgB,kBAClB,CACF,CACF,CAAA,CAWA,GARIxC,EAAS,MAAA,GAAW,GAAA,EAAA,CACJ,MAAMA,CAAAA,CAAS,IAAA,EAAK,CAAE,MAAM,KAAO,EAAC,CAAE,CAAA,GAEzC,OAAA,GAAY,oBAAA,EAKzB,CAACA,CAAAA,CAAS,EAAA,CACZ,OAAO,IAAA,CAGT,IAAM9O,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,IAAA,GAE5B,OAAO,CACL,QAAS,CACP,QAAA,CAAU9O,CAAAA,CAAK,gBAAA,CACf,OAAA,CAASA,CAAAA,CAAK,eAChB,CAAA,CACA,MAAA,CAAQ,CACN,QAAA,CAAUA,CAAAA,CAAK,eAAA,CACf,QAASA,CAAAA,CAAK,cAChB,CACF,CAIF,CAAA,KAAc,CAEZ,OAAO,IACT,CACF,CACF,CAAC,CACH,CCbO,SAASkyC,EAAAA,CAAqB,CACnC,GAAA,CAAA7zC,CAAAA,CACA,UAAA,CAAA2mB,CAAAA,CAAa,EAAC,CACd,QAAAC,CAAAA,CAAU,CAAC,UAAA,CAAY,WAAA,CAAa,gBAAgB,CAAA,CACpD,SAAAktB,CAAAA,CAAW,YAAA,CACX,SAAA,CAAAjtB,CAAAA,CACA,OAAA,CAAAiI,CAAAA,CAAU,IACZ,CAAA,CAAyB,CACvB,OAAOpN,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,cAAA,CAAgB,WAAA,CAAa1hB,CAAAA,CAAK2mB,CAAAA,CAAYC,CAAAA,CAASktB,CAAAA,CAAUjtB,CAAS,CAAA,CACrF,OAAA,CAAS,SAAY,CAEnB,IAAMpW,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC,GAAG3D,CAAAA,CAAO,cAAc,aAAc,CACpE,MAAA,CAAQ,MAAA,CACR,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,OAAA,CAAAsJ,CAAAA,CACA,GAAA,CAAK,kBAAA,CAAmB5mB,CAAG,CAAA,CAC3B,WAAA2mB,CAAAA,CACA,QAAA,CAAAmtB,CAAAA,CAEA,GAAIjtB,CAAAA,CAAY,CAAE,WAAYA,CAAU,CAAA,CAAI,EAC9C,CAAC,EACD,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CAAC,EAOD,GAAI,CAACpW,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,MAAM,CAAA,iCAAA,EAAoCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGvE,OAAQ,MAAMA,CAAAA,CAAS,IAAA,EACzB,CAAA,CACA,OAAA,CAAS,CAAC,CAACzQ,CAAAA,EAAO8uB,CAAAA,CAGlB,KAAA,CAAO,CACT,CAAC,CACH,CChFO,SAASilB,IAAyB,CACvC,OAAOryB,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,mBAAoB,OAAO,CAAA,CACtC,QAAS,SAAA,CACU,MAAMzS,EAAQ,qBAAA,CAAuB,EAAE,CAAA,EACxC,QAEpB,CAAC,CACH,CCPO,SAAS+kC,GAAyB/gC,CAAAA,CAAkB,CACzD,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,kBAAA,CAAoB,SAAA,CAAWzO,CAAQ,CAAA,CAClD,OAAA,CAAS,UACQ,MAAMhE,CAAAA,CAAQ,yBAAA,CAA2B,CACtD,QAAA,CAAU,CAACgE,CAAQ,CACrB,CAAC,CAAA,EACa,WAAA,CAEhB,OAAA,CAAS,CAAC,CAACA,CACb,CAAC,CACH,CCIO,SAASghC,IAAkC,CAChD,OAAOvyB,wBAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,eAAA,CAAgB,cAAA,EAAe,CACnD,UAAW,IAAA,CAAU,EAAA,CAAK,GAAA,CAC1B,MAAA,CAAQ,CAAA,CAAA,CAAA,CACR,OAAA,CAAS,SAAa,MAAM1S,CAAAA,CAAQ,4BAAA,CAA8B,EAAE,CACtE,CAAC,CACH,KC0BailC,EAAAA,CAAoB,CAC/B,yBACA,uBAAA,CACA,uBAAA,CACA,sBAAA,CACA,yBACF,EC1BA,IAAMC,GAA2B,EAAA,CAE3BC,EAAAA,CAAkB,EAAA,CAElBC,EAAAA,CAAc,EAAA,CAEdC,EAAAA,CAAOn0C,GAA+B,MAAA,CAAO,OAAOA,CAAAA,EAAM,QAAA,CAAWA,CAAAA,CAAI,IAAA,CAAK,MAAMA,CAAC,CAAC,CAAA,CASrF,SAASo0C,EAAAA,CACdC,CAAAA,CACAC,EACAC,CAAAA,CACAC,CAAAA,CACQ,CACR,GAAID,CAAAA,EAAiB,CAAA,EAAKC,GAAc,CAAA,CACtC,OAAO,CAAA,CAGT,IAAMC,CAAAA,CAASN,EAAAA,CAAIE,EAAM,OAAO,CAAA,CAC1BK,CAAAA,CAASP,EAAAA,CAAIE,CAAAA,CAAM,OAAO,EAC1BM,CAAAA,CAAQR,EAAAA,CAAIE,EAAM,KAAK,CAAA,CAIzBrkB,EAAOmkB,EAAAA,CAAIK,CAAU,CAAA,CAAIC,CAAAA,EAAWE,CAAAA,CACxC3kB,CAAAA,EAAO,GACPA,CAAAA,EAAOmkB,EAAAA,CAAII,CAAa,CAAA,CAExB,IAAMK,CAAAA,CAAQF,GAAUJ,CAAAA,CAAO,CAAA,CAAIH,EAAAA,CAAIG,CAAI,CAAA,CAAI,EAAA,CAAA,CAC/C,OAAIM,CAAAA,GAAU,EAAA,CACL,EAGF,MAAA,CAAO5kB,CAAAA,CAAM4kB,EAAQ,EAAE,CAChC,CAsBO,SAASC,EAAAA,CACd,CACE,iBAAAC,CAAAA,CACA,cAAA,CAAAC,CAAAA,CACA,UAAA,CAAAC,CAAAA,CAAa,CAAA,CACb,cAAAnF,CAAAA,CAAgB,CAAA,CAChB,iBAAA,CAAAoF,CAAAA,CAAoB,KACtB,CAAA,CACAC,EACgC,CAChC,IAAMC,EAAQD,CAAAA,CAAS,oBAAA,CACjBE,EAAOF,CAAAA,CAAS,uBAAA,CAEtB,OAAO,CACL,sBAAA,CAAwBJ,CAAAA,CACxB,sBAAuB,CAAA,CACvB,qBAAA,CAAuB,CAAA,CACvB,oBAAA,CACEK,CAAAA,CAAM,iBAAA,CACNA,EAAM,0BAAA,CAA6BJ,CAAAA,CACnCI,CAAAA,CAAM,qBAAA,CAENA,CAAAA,CAAM,iCAAA,CAAoCtF,EAC5C,uBAAA,CACEuF,CAAAA,CAAK,YAAA,CACLA,CAAAA,CAAK,gBAAA,CACLA,CAAAA,CAAK,sBAAwBJ,CAAAA,EAC5BC,CAAAA,CAAoBG,CAAAA,CAAK,oBAAA,CAAuB,CAAA,CACrD,CACF,CA4BA,IAAMC,EAAAA,CAAoBt3C,CAAAA,EAA0B,CAClD,IAAMa,CAAAA,CAASgoB,GAAe7oB,CAAK,CAAA,CACnC,OAAO8oB,EAAAA,CAAiBjoB,CAAM,CAAA,CAAIA,CACpC,CAAA,CAEM02C,EAAAA,CAAyBj9B,GAC7B,CAAA,CACAg9B,EAAAA,CAAiBh9B,EAAG,aAAa,CAAA,CACjCg9B,EAAAA,CAAiBh9B,CAAAA,CAAG,eAAe,CAAA,CACnCg9B,GAAiBh9B,CAAAA,CAAG,MAAM,CAAA,CAC1Bg9B,EAAAA,CAAiBh9B,CAAAA,CAAG,QAAQ,EAC5Bg9B,EAAAA,CAAiBh9B,CAAAA,CAAG,KAAK,CAAA,CACzBg9B,EAAAA,CAAiBh9B,CAAAA,CAAG,IAAI,CAAA,CACxBg9B,EAAAA,CAAiBh9B,EAAG,aAAa,CAAA,CAE7Bk9B,GAAsB,CAACl9B,CAAAA,CAAiB3G,CAAAA,GAAwC,CACpF,IAAMm+B,CAAAA,CAAgBn+B,EAAQ,aAAA,EAAiB,EAAC,CAC5C1U,CAAAA,CACF,CAAA,CACAq4C,EAAAA,CAAiBh9B,EAAG,MAAM,CAAA,CAC1Bg9B,EAAAA,CAAiBh9B,CAAAA,CAAG,QAAQ,CAAA,CAC5B67B,GACA,CAAA,CACA,CAAA,CAEF,OAAAl3C,CAAAA,EAAS6pB,EAAAA,CAAiBgpB,EAAc,MAAA,CAAS,CAAA,CAAI,CAAA,CAAI,CAAC,CAAA,CACtDA,CAAAA,CAAc,OAAS,CAAA,GACzB7yC,CAAAA,EAAS,CAAA,CAAI6pB,EAAAA,CAAiBgpB,CAAAA,CAAc,MAAM,EAClDA,CAAAA,CAAc,OAAA,CAAS1L,CAAAA,EAAU,CAC/BnnC,CAAAA,EAASq4C,EAAAA,CAAiBlR,EAAM,OAAO,CAAA,CAAI,EAC7C,CAAC,CAAA,CAAA,CAEInnC,CACT,EAiBO,SAASw4C,EAAAA,CAAgC,CAC9C,EAAA,CAAAn9B,CAAAA,CACA,OAAA,CAAA3G,EACA,UAAA,CAAAsjC,CAAAA,CAAa,CACf,CAAA,CAAoC,CAClC,IAAM79B,EAAa,CAACm+B,EAAAA,CAAsBj9B,CAAE,CAAC,CAAA,CAC7C,OAAI3G,GACFyF,CAAAA,CAAW,IAAA,CAAKo+B,GAAoBl9B,CAAAA,CAAI3G,CAAO,CAAC,CAAA,CAIhDsiC,EAAAA,CACAntB,EAAAA,CAAiB1P,CAAAA,CAAW,MAAM,CAAA,CAClCA,EAAW,MAAA,CAAO,CAACivB,CAAAA,CAAKppC,CAAAA,GAAUopC,CAAAA,CAAMppC,CAAAA,CAAO,CAAC,CAAA,CAChD6pB,EAAAA,CAAiBmuB,CAAU,CAAA,CAC3Bf,EAAAA,CAAkBe,CAEtB,CAmBA,IAAMS,EAAAA,CAA+B,CACnC,KAAA,CAAO,KAAA,CACP,KAAM,CAAA,CACN,gBAAA,CAAkB,CAAA,CAClB,SAAA,CAAW,EACb,EAGO,SAASC,EAAAA,CAAsB,CACpC,EAAA,CAAAr9B,CAAAA,CACA,OAAA,CAAA3G,EACA,QAAA,CAAAikC,CAAAA,CACA,OAAA,CAAAC,CAAAA,CACA,UAAA,CAAAZ,CAAAA,CAAa,CACf,CAAA,CAAsD,CACpD,GAAI,CAACW,CAAAA,EAAU,iBAAmB,CAACA,CAAAA,CAAS,SAAA,EAAa,CAACC,CAAAA,EAAS,IAAA,EAAQ,CAACA,CAAAA,CAAQ,KAAA,CAClF,OAAOH,EAAAA,CAGT,IAAMX,CAAAA,CAAmBU,GAAgC,CAAE,EAAA,CAAAn9B,CAAAA,CAAI,OAAA,CAAA3G,CAAAA,CAAS,UAAA,CAAAsjC,CAAW,CAAC,CAAA,CAC9Ea,EAAQhB,EAAAA,CACZ,CACE,iBAAAC,CAAAA,CACA,cAAA,CAAgBluB,EAAAA,CAAevO,CAAAA,CAAG,QAAQ,CAAA,CAC1C,WAAA28B,CAAAA,CACA,aAAA,CAAetjC,CAAAA,EAAS,aAAA,EAAe,MAAA,EAAU,CAAA,CACjD,kBAAmB,CAAC,CAACA,CACvB,CAAA,CACAikC,CAAAA,CAAS,SACX,EAEMG,CAAAA,CAAQ,MAAA,CAAOF,EAAQ,KAAK,CAAA,CAC9BG,EAAO,CAAA,CACLC,CAAAA,CAA+B,EAAC,CAEtC,OAAAjC,EAAAA,CAAkB,QAAQ,CAACrvB,CAAAA,CAAM6lB,CAAAA,GAAU,CACzC,IAAMhd,CAAAA,CAAQooB,EAAS,eAAA,CAAgBjxB,CAAI,CAAA,CACrC4vB,CAAAA,CAAO,MAAA,CAAOsB,CAAAA,CAAQ,KAAKrL,CAAK,CAAA,EAAK,CAAC,CAAA,CACtC0L,CAAAA,CAAQ,OAAOL,CAAAA,CAAQ,KAAA,CAAMrL,CAAK,CAAA,EAAK,CAAC,CAAA,CAC9C,GAAI,CAAChd,CAAAA,EAAS0oB,CAAAA,EAAS,CAAA,CACrB,OAKF,IAAMC,EAASL,CAAAA,CAAMnxB,CAAI,CAAA,CAAI,MAAA,CAAO6I,CAAAA,CAAM,wBAAA,CAAyB,eAAiB,CAAC,CAAA,CAI/EinB,EAAa,MAAA,CAAQ,MAAA,CAAOsB,CAAK,CAAA,CAAI,MAAA,CAAOG,CAAK,CAAA,CAAK,MAAM,CAAA,CAC5DE,EAAe/B,EAAAA,CAAoB7mB,CAAAA,CAAM,kBAAA,CAAoB+mB,CAAAA,CAAM4B,CAAAA,CAAQ1B,CAAU,EAE3FuB,CAAAA,EAAQI,CAAAA,CACRH,CAAAA,CAAU,IAAA,CAAK,CAAE,QAAA,CAAUtxB,EAAM,KAAA,CAAOwxB,CAAAA,CAAQ,IAAA,CAAMC,CAAa,CAAC,EACtE,CAAC,CAAA,CAEM,CAAE,KAAA,CAAO,IAAA,CAAM,IAAA,CAAAJ,CAAAA,CAAM,iBAAAjB,CAAAA,CAAkB,SAAA,CAAAkB,CAAU,CAC1D,CChRO,SAASI,GACdP,CAAAA,CACAF,CAAAA,CACAC,CAAAA,CACe,CACf,IAAME,CAAAA,CAAQ,OAAOF,CAAAA,CAAQ,KAAK,EAC9BG,CAAAA,CAAO,CAAA,CACLC,EAA+B,EAAC,CAEtC,OAAAjC,EAAAA,CAAkB,OAAA,CAAQ,CAACrvB,EAAM6lB,CAAAA,GAAU,CACzC,IAAMhd,CAAAA,CAAQooB,CAAAA,CAAS,eAAA,CAAgBjxB,CAAI,CAAA,CACrC4vB,CAAAA,CAAO,MAAA,CAAOsB,CAAAA,CAAQ,IAAA,CAAKrL,CAAK,GAAK,CAAC,CAAA,CACtC0L,EAAQ,MAAA,CAAOL,CAAAA,CAAQ,MAAMrL,CAAK,CAAA,EAAK,CAAC,CAAA,CAC9C,GAAI,CAAChd,GAAS0oB,CAAAA,EAAS,CAAA,CACrB,OAGF,IAAMC,CAAAA,CAASL,CAAAA,CAAMnxB,CAAI,CAAA,CAAI,MAAA,CAAO6I,CAAAA,CAAM,wBAAA,CAAyB,aAAA,EAAiB,CAAC,EAG/EinB,CAAAA,CAAa,MAAA,CAAQ,OAAOsB,CAAK,CAAA,CAAI,OAAOG,CAAK,CAAA,CAAK,MAAM,CAAA,CAC5DE,CAAAA,CAAe/B,EAAAA,CAAoB7mB,EAAM,kBAAA,CAAoB+mB,CAAAA,CAAM4B,CAAAA,CAAQ1B,CAAU,CAAA,CAE3FuB,CAAAA,EAAQI,EACRH,CAAAA,CAAU,IAAA,CAAK,CAAE,QAAA,CAAUtxB,CAAAA,CAAM,KAAA,CAAOwxB,EAAQ,IAAA,CAAMC,CAAa,CAAC,EACtE,CAAC,EAEM,CAAE,IAAA,CAAAJ,CAAAA,CAAM,SAAA,CAAAC,CAAU,CAC3B,CCrCO,IAAMhC,EAAAA,CAA2B,EAAA,CAC3BC,EAAAA,CAAkB,EAAA,CAElBoB,EAAAA,CAAoBt3C,GAA0B,CACzD,IAAMa,CAAAA,CAASgoB,EAAAA,CAAe7oB,CAAK,CAAA,CACnC,OAAO8oB,EAAAA,CAAiBjoB,CAAM,EAAIA,CACpC,CAAA,CAEMy3C,GAAa,KAAwB,CACzC,sBAAA,CAAwB,CAAA,CACxB,qBAAA,CAAuB,CAAA,CACvB,sBAAuB,CAAA,CACvB,oBAAA,CAAsB,CAAA,CACtB,uBAAA,CAAyB,CAC3B,CAAA,EASO,SAASC,EAAAA,CAA6Bj+B,CAAAA,CAAc28B,CAAAA,CAAa,CAAA,CAAW,CACjF,IAAMuB,EACJ,CAAA,CACAlB,EAAAA,CAAiBh9B,EAAG,KAAK,CAAA,CACzBg9B,GAAiBh9B,CAAAA,CAAG,MAAM,CAAA,CAC1Bg9B,EAAAA,CAAiBh9B,CAAAA,CAAG,QAAQ,EAC5B,CAAA,CAEF,OACE27B,EAAAA,CACAntB,EAAAA,CAAiB,CAAC,CAAA,CAClB0vB,EACA1vB,EAAAA,CAAiBmuB,CAAU,CAAA,CAC3Bf,EAAAA,CAAkBe,CAEtB,CAMO,SAASwB,EAAAA,CACd,CAAE,iBAAA1B,CAAAA,CAAkB,UAAA,CAAAE,EAAa,CAAE,CAAA,CACnCE,CAAAA,CACiB,CACjB,IAAMC,CAAAA,CAAQD,EAAS,oBAAA,CACjBE,CAAAA,CAAOF,CAAAA,CAAS,uBAAA,CAEtB,OAAO,CACL,GAAGmB,EAAAA,EAAW,CACd,sBAAA,CAAwBvB,CAAAA,CACxB,oBAAA,CAAsBK,CAAAA,CAAM,UAAYA,CAAAA,CAAM,qBAAA,CAC9C,uBAAA,CACEC,CAAAA,CAAK,SAAA,CAAYA,CAAAA,CAAK,iBAAmBA,CAAAA,CAAK,qBAAA,CAAwBJ,CAC1E,CACF,CCuBA,IAAMS,GAA0B,CAC9B,KAAA,CAAO,KAAA,CACP,WAAA,CAAa,CAAA,CACb,OAAA,CAAS,EACT,OAAA,CAAS,CAAA,CACT,IAAA,CAAM,CAAA,CACN,gBAAA,CAAkB,CAAA,CAClB,cAAe,CAAA,CACf,cAAA,CAAgB,MAChB,OAAA,CAAS,CAAA,CACT,UAAW,CACb,CAAA,CAiBO,SAASgB,EAAAA,CAAmB,CACjC,SAAA,CAAAl9B,EACA,OAAA,CAAAq8B,CAAAA,CACA,QAAA,CAAAD,CAAAA,CACA,SAAA,CAAAzvC,CAAAA,CACA,QAAA8V,CAAAA,CACA,QAAA,CAAA3b,CAAAA,CAAW,SAAA,CACX,MAAA,CAAAxC,CAAAA,CAAS,GACX,CAAA,CAAsC,CACpC,GAAI,CAAC0b,CAAAA,EAAa,CAACq8B,CAAAA,EAAS,GAAA,CAC1B,OAAOH,EAAAA,CAGT,GAAM,CAAE,aAAc98B,CAAAA,CAAa,QAAA,CAAUF,CAAQ,CAAA,CAAIa,EAAAA,CAAgBC,CAAS,EAE5Em9B,CAAAA,CAASC,EAAAA,CAAezwC,CAAAA,CAAW8V,CAAAA,CAAS3b,CAAAA,CAAUs1C,CAAAA,CAAUC,CAAO,CAAA,CAC7E,GAAI,CAACc,CAAAA,CAGH,OAAO,CAAE,GAAGjB,EAAAA,CAAO,WAAA,CAAA98B,CAAAA,CAAa,OAAA,CAAAF,CAAQ,EAG1C,GAAM,CAAE,IAAA,CAAAs9B,CAAAA,CAAM,gBAAA,CAAAjB,CAAiB,EAAI4B,CAAAA,CAC7BE,CAAAA,CAAa,MAAA,CAAO,QAAA,CAAS/4C,CAAM,CAAA,EAAKA,EAAS,CAAA,CAAIA,CAAAA,CAAS,IAC9Dg5C,CAAAA,CAAgBd,CAAAA,CAAOa,EACvBE,CAAAA,CAAiBn+B,CAAAA,CAAck+B,CAAAA,CAErC,OAAO,CACL,KAAA,CAAO,KACP,WAAA,CAAAl+B,CAAAA,CACA,OAAA,CAAAF,CAAAA,CACA,OAAA,CAASs9B,CAAAA,CACT,KAAAA,CAAAA,CACA,gBAAA,CAAAjB,CAAAA,CACA,aAAA,CAAA+B,CAAAA,CACA,cAAA,CAAAC,EACA,OAAA,CAASA,CAAAA,CAAiB,KAAK,IAAA,CAAKD,CAAAA,CAAgBl+B,CAAW,CAAA,CAAI,CAAA,CACnE,SAAA,CAAW,IAAA,CAAK,KAAA,CAAMA,CAAAA,CAAco9B,CAAI,CAC1C,CACF,CAkBA,SAASY,EAAAA,CACPzwC,CAAAA,CACA8V,EACA3b,CAAAA,CACAs1C,CAAAA,CACAC,CAAAA,CACmD,CACnD,IAAMmB,CAAAA,CAAUC,GAAYpB,CAAAA,CAAS1vC,CAAS,EAO9C,GAAI,EALFA,IAAc,mBAAA,EAAuBA,CAAAA,GAAc,gBAAA,CAAA,EAK1B,CAAC8V,CAAAA,EAAW3b,CAAAA,GAAa,UAClD,OAAO02C,CAAAA,CAMT,GAAI,CAACpB,CAAAA,EAAU,eAAA,EAAmB,CAACA,CAAAA,CAAS,SAAA,EAAa,CAACC,CAAAA,CAAQ,IAAA,EAAQ,CAACA,EAAQ,KAAA,CACjF,OAAO,KAGT,IAAMxtB,CAAAA,CAAQ,CAAE,IAAA,CAAMwtB,CAAAA,CAAQ,IAAA,CAAM,KAAA,CAAOA,CAAAA,CAAQ,KAAA,CAAO,MAAOA,CAAAA,CAAQ,KAAM,CAAA,CAE/E,GAAI1vC,CAAAA,GAAc,gBAAA,CAAkB,CAClC,IAAMmS,CAAAA,CAAe2D,CAAAA,EAAS,IAAA,GAAS,MAAA,CAASA,CAAAA,CAAQ,GAAKi7B,EAAAA,CACvDnC,CAAAA,CAAmBwB,EAAAA,CAA6Bj+B,CAAE,CAAA,CAClDw9B,CAAAA,CAAQW,GAAuB,CAAE,gBAAA,CAAA1B,CAAiB,CAAA,CAAGa,CAAAA,CAAS,SAAS,EAC7E,OAAO,CAAE,IAAA,CAAMS,EAAAA,CAAaP,CAAAA,CAAOF,CAAAA,CAAUvtB,CAAK,CAAA,CAAE,IAAA,CAAM,gBAAA,CAAA0sB,CAAiB,CAC7E,CAEA,IAAMz8B,CAAAA,CAAkB2D,CAAAA,EAAS,OAAS,SAAA,CAAYA,CAAAA,CAAQ,GAAKk7B,EAAAA,CAC7DxlC,CAAAA,CAAUsK,CAAAA,EAAS,IAAA,GAAS,SAAA,CAAYA,CAAAA,CAAQ,QAAU,MAAA,CAC1D84B,CAAAA,CAAmBU,EAAAA,CAAgC,CAAE,EAAA,CAAAn9B,CAAAA,CAAI,QAAA3G,CAAQ,CAAC,CAAA,CAClEmkC,CAAAA,CAAQhB,EAAAA,CACZ,CACE,iBAAAC,CAAAA,CACA,cAAA,CAAgBz8B,EAAG,QAAA,CAAS,MAAA,CAC5B,cAAe3G,CAAAA,EAAS,aAAA,EAAe,MAAA,EAAU,CAAA,CACjD,iBAAA,CAAmB,CAAC,CAACA,CACvB,CAAA,CACAikC,CAAAA,CAAS,SACX,CAAA,CACA,OAAO,CAAE,IAAA,CAAMS,EAAAA,CAAaP,CAAAA,CAAOF,CAAAA,CAAUvtB,CAAK,CAAA,CAAE,KAAM,gBAAA,CAAA0sB,CAAiB,CAC7E,CAGA,SAASkC,GACPpB,CAAAA,CACA1vC,CAAAA,CACmD,CACnD,IAAM6vC,CAAAA,CAAOH,CAAAA,CAAQ,IAAI1vC,CAAS,CAAA,EAAG,QAAA,CACrC,OAAO,OAAO6vC,CAAAA,EAAS,UAAYA,CAAAA,CAAO,CAAA,CAAI,CAAE,IAAA,CAAAA,CAAAA,CAAM,gBAAA,CAAkB,CAAE,CAAA,CAAI,IAChF,CAGA,IAAMmB,EAAAA,CAA+B,CACnC,OAAQ,YAAA,CACR,QAAA,CAAU,sBAAA,CACV,aAAA,CAAe,EAAA,CACf,eAAA,CAAiB,cACjB,KAAA,CAAO,EAAA,CACP,IAAA,CAAM,EAAA,CACN,aAAA,CAAe,IACjB,EAEMD,EAAAA,CAAyB,CAC7B,KAAA,CAAO,YAAA,CACP,MAAA,CAAQ,YAAA,CACR,SAAU,sBACZ,CAAA,CCzPO,SAASE,EAAAA,CACdrkC,CAAAA,CACA3J,CAAAA,CACAwd,CAAAA,CACA,CACA,OAAOpF,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,OAAA,CAAS,cAAA,CAAgBoF,EAAU7T,CAAQ,CAAA,CACtD,OAAA,CAAS,CAAC,CAACA,CAAAA,EAAY,CAAC,CAAC3J,CAAAA,CACzB,QAAS,SAAY,CACnB,GAAI,CAAC2J,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,MAAM,kCAA6B,CAAA,CAgB/C,OAAQ,KAAA,CAbS,MADA2X,CAAAA,GAEf3D,CAAAA,CAAO,cAAA,CAAiB,uBAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,SAAA,CAAWwJ,CAAAA,CACX,KAAAxd,CACF,CAAC,CAAA,CACD,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,CAAA,EACuB,IAAA,EACzB,CACF,CAAC,CACH,CChBA,eAAsBiuC,EAAAA,CACpBjuC,CAAAA,CACAwd,CAAAA,CACAvkB,CAAAA,CACoB,CAEpB,IAAMkO,EAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,wBAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,UAAWwJ,CAAAA,CACX,IAAA,CAAAxd,CAAAA,CACA,GAAA,CAAA/G,CACF,CAAC,EACD,OAAA,CAAS,CACP,eAAgB,kBAClB,CACF,CACF,CAAA,CAGMi1C,CAAAA,CAAAA,CAAe/mC,CAAAA,CAAS,OAAA,CAAQ,GAAA,CAAI,cAAc,GAAK,EAAA,EAC1D,KAAA,CAAM,GAAG,CAAA,CAAE,CAAC,CAAA,CACZ,MAAK,CACL,WAAA,EAAY,CACTjD,CAAAA,CAAO,MAAMiD,CAAAA,CAAS,MAAK,CAEjC,GAAI,CAACA,CAAAA,CAAS,EAAA,CAAI,CAGhB,IAAMgnC,CAAAA,CACJjqC,CAAAA,EAAQgqC,CAAAA,CAAY,QAAA,CAAS,MAAM,EAAI,CAAA,EAAA,EAAKhqC,CAAAA,CAAK,KAAA,CAAM,CAAA,CAAG,GAAG,CAAC,GAAK,EAAA,CACrE,MAAM,IAAI,KAAA,CACR,CAAA,uCAAA,EAAqCiD,CAAAA,CAAS,MAAM,CAAA,EAAGgnC,CAAM,EAC/D,CACF,CAEA,GAAI,CAACD,CAAAA,CAAY,QAAA,CAAS,MAAM,CAAA,CAC9B,MAAM,IAAI,KAAA,CACR,CAAA,gDAAA,EAA8CA,CAAAA,EAAe,OAAO,CAAA,mBAAA,EAAsB/mC,CAAAA,CAAS,MAAM,CAAA,CAAA,CAC3G,CAAA,CAGF,GAAI,CACF,OAAO,IAAA,CAAK,MAAMjD,CAAI,CACxB,MAAQ,CACN,MAAM,IAAI,KAAA,CACR,CAAA,oDAAA,EAAkDiD,CAAAA,CAAS,MAAM,CAAA,CAAA,CACnE,CACF,CACF,CAEO,SAASinC,EAAAA,CACdzkC,CAAAA,CACA3J,CAAAA,CACAwd,CAAAA,CACAvkB,EACA,CACA,GAAM,CAAE,WAAA,CAAao1C,CAAe,CAAA,CAAI7F,GACtC7+B,CAAAA,CACA,aACF,EAEA,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,OAAA,CAAS,MAAA,CAAQ4K,CAAAA,CAAU7T,CAAQ,EACjD,UAAA,CAAY,SAAY,CACtB,GAAI,CAACA,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,MAAM,IAAI,KAAA,CAAM,kCAA6B,CAAA,CAG/C,OAAOiuC,EAAAA,CAAiBjuC,CAAAA,CAAMwd,EAAUvkB,CAAG,CAC7C,EACA,SAAA,EAAY,CACVo1C,CAAAA,GACF,CACF,CAAC,CACH,CCtFO,SAASC,GAAsB3kC,CAAAA,CAA8B,CAClE,IAAM4R,CAAAA,CAAO5R,CAAAA,EAAU,OAAA,CAAQ,IAAK,EAAE,CAAA,CACtC,OAAOyO,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,MAAA,CAAO,MAAA,CAAOkD,CAAI,CAAA,CACtC,OAAA,CAAS,CAAC,CAACA,CAAAA,CACX,OAAA,CAAS,SAAY,CACnB,GAAI,CAACA,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,+CAA0C,CAAA,CAI5D,IAAMpU,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,sBACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CAAE,cAAA,CAAgB,kBAAmB,CAAA,CAC9C,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,QAAA,CAAUuH,CAAK,CAAC,CACzC,CACF,CAAA,CAEA,GAAI,CAACpU,EAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,wBAAA,EAA2BA,EAAS,MAAM,CAAA,CAAE,CAAA,CAG9D,OAAQ,MAAMA,CAAAA,CAAS,MACzB,CAAA,CACA,SAAA,CAAW,GAAA,CACX,cAAA,CAAgB,IAClB,CAAC,CACH,CCbO,IAAMonC,EAAAA,CAAqC,CAEhD,CAAE,GAAI,SAAA,CAAW,IAAA,CAAM,QAAS,IAAA,CAAM,CAAA,CAAG,QAAS,SAAA,CAAW,IAAA,CAAM,cAAe,CAAA,CAClF,CAAE,EAAA,CAAI,OAAQ,IAAA,CAAM,OAAA,CAAS,IAAA,CAAM,CAAA,CAAG,OAAA,CAAS,MAAA,CAAQ,KAAM,QAAS,CAAA,CACtE,CAAE,EAAA,CAAI,SAAA,CAAW,IAAA,CAAM,QAAS,IAAA,CAAM,CAAA,CAAG,QAAS,SAAA,CAAW,IAAA,CAAM,SAAU,CAAA,CAC7E,CAAE,EAAA,CAAI,MAAA,CAAQ,IAAA,CAAM,OAAA,CAAS,KAAM,EAAA,CAAI,OAAA,CAAS,MAAA,CAAQ,IAAA,CAAM,mBAAoB,CAAA,CAClF,CAAE,EAAA,CAAI,QAAA,CAAU,IAAA,CAAM,OAAA,CAAS,IAAA,CAAM,CAAA,CAAG,QAAS,QAAA,CAAU,IAAA,CAAM,QAAS,CAAA,CAC1E,CAAE,GAAI,MAAA,CAAQ,IAAA,CAAM,OAAA,CAAS,IAAA,CAAM,CAAA,CAAG,OAAA,CAAS,OAAQ,IAAA,CAAM,MAAO,CAAA,CAEpE,CAAE,EAAA,CAAI,MAAA,CAAQ,KAAM,QAAA,CAAU,IAAA,CAAM,CAAA,CAAG,OAAA,CAAS,MAAA,CAAQ,IAAA,CAAM,QAAS,CAAA,CACvE,CAAE,GAAI,SAAA,CAAW,IAAA,CAAM,SAAU,IAAA,CAAM,EAAA,CAAI,OAAA,CAAS,SAAA,CAAW,IAAA,CAAM,SAAU,EAC/E,CAAE,EAAA,CAAI,MAAA,CAAQ,IAAA,CAAM,QAAA,CAAU,IAAA,CAAM,GAAI,OAAA,CAAS,MAAA,CAAQ,IAAA,CAAM,mBAAoB,CAAA,CACnF,CAAE,GAAI,QAAA,CAAU,IAAA,CAAM,SAAU,IAAA,CAAM,CAAA,CAAG,QAAS,QAAA,CAAU,IAAA,CAAM,QAAS,CAAA,CAE3E,CAAE,EAAA,CAAI,OAAQ,IAAA,CAAM,SAAA,CAAW,IAAA,CAAM,EAAA,CAAI,OAAA,CAAS,MAAA,CAAQ,KAAM,QAAS,CAC3E,EAEO,SAASC,EAAAA,CAAqBC,CAAAA,CAAiBxzC,EAAY,CAChE,OAAOszC,GAAc,IAAA,CAAM5yB,CAAAA,EAAMA,EAAE,IAAA,GAAS8yB,CAAAA,EAAQ9yB,CAAAA,CAAE,EAAA,GAAO1gB,CAAE,CACjE,CASO,IAAMyzC,EAAAA,CAA2B,GAYjC,SAASC,EAAAA,CAA0BzqC,CAAAA,CAAyC,CACjF,OAAO,KAAA,CAAM,IAAA,CAAA,CAAMA,CAAAA,EAAQ,EAAA,EAAI,OAAA,CAAQ,kBAAmB,EAAE,CAAC,CAAA,CAAE,MACjE,CAMO,SAAS0qC,GAAwB1qC,CAAAA,CAA0C,CAChF,OAAOyqC,EAAAA,CAA0BzqC,CAAI,CAAA,CAAIwqC,EAC3C,CAMO,IAAMG,EAAAA,CAAsB,GAAA,CACtBC,EAAAA,CAA0B,EC5EvC,SAASC,IAA4B,CACnC,OAAI,OAAO,MAAA,CAAW,GAAA,EAAe,OAAO,MAAA,CAAO,UAAA,EAAe,UAAA,CACzD,MAAA,CAAO,UAAA,EAAW,CAEpB,GAAG,IAAA,CAAK,GAAA,EAAK,CAAA,CAAA,EAAI,IAAA,CAAK,MAAA,GAAS,QAAA,CAAS,EAAE,CAAA,CAAE,KAAA,CAAM,CAAC,CAAC,EAC7D,CAOA,eAAsBC,GACpBhvC,CAAAA,CACgC,CAEhC,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,iCACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CAAE,cAAA,CAAgB,kBAAmB,CAAA,CAC9C,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAAhU,EAAM,eAAA,CAAiB+uC,EAAAA,EAAoB,CAAC,CACrE,CACF,CAAA,CAEA,GAAI,CAAC5nC,CAAAA,CAAS,EAAA,CAAI,CAChB,IAAI9O,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,OACxB,CAAA,KAAQ,CAER,CACA,IAAMvO,CAAAA,CACHP,GAA+B,OAAA,EAChC,CAAA,6BAAA,EAAgC8O,EAAS,MAAM,CAAA,CAAA,CAC3C5D,EAAM,IAAI,KAAA,CAAM3K,CAAO,CAAA,CAC7B,MAAA2K,CAAAA,CAAI,OAAS4D,CAAAA,CAAS,MAAA,CACtB5D,CAAAA,CAAI,IAAA,CAAOlL,CAAAA,CACLkL,CACR,CAEA,OAAQ,MAAM4D,CAAAA,CAAS,IAAA,EACzB,CAQO,SAAS8nC,EAAAA,CACdtlC,CAAAA,CACA3J,EACA,CACA,IAAMmwB,EAAcC,yBAAAA,EAAe,CAC7B7U,CAAAA,CAAO5R,CAAAA,EAAU,OAAA,CAAQ,GAAA,CAAK,EAAE,CAAA,CAEtC,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,gBAAiB,KAAA,CAAO2I,CAAI,CAAA,CAC1C,UAAA,CAAY,SAAY,CACtB,GAAI,CAACA,CAAAA,EAAQ,CAACvb,CAAAA,CACZ,MAAM,IAAI,KAAA,CAAM,yCAAoC,CAAA,CAEtD,OAAOgvC,EAAAA,CAAuBhvC,CAAI,CACpC,CAAA,CACA,SAAA,EAAY,CAENub,CAAAA,EACF4U,CAAAA,CAAY,iBAAA,CAAkB,CAAE,QAAA,CAAU9X,CAAAA,CAAU,MAAA,CAAO,OAAA,CAAQkD,CAAI,CAAE,CAAC,EAE9E,CAAA,CACA,WAAY,CAINA,CAAAA,EACF4U,EAAY,iBAAA,CAAkB,CAAE,QAAA,CAAU9X,CAAAA,CAAU,MAAA,CAAO,MAAA,CAAOkD,CAAI,CAAE,CAAC,EAE7E,CACF,CAAC,CACH,CCrCO,SAAS2zB,EAAAA,CACdvlC,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,aAAA,CAAe,WAAW,CAAA,CAC3B9I,CAAAA,CACA,CAAC,CAAE,SAAA,CAAAgf,CAAU,CAAA,GAAM,CACjBuM,EAAAA,CAAiBvrB,EAAWgf,CAAS,CACvC,CAAA,CACA,MAAOmR,CAAAA,CAAcxJ,CAAAA,GAAc,CAE7Bnf,CAAAA,EAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,kBAAkB,CACnCkH,CAAAA,CAAU,SAAS,aAAA,CAAc1O,CAAS,EAC1C,CAAC,GAAG0O,CAAAA,CAAU,WAAA,CAAY,YAAA,CAAaiY,CAAAA,CAAU,SAAS,CAAC,CAAA,CAC3DjY,CAAAA,CAAU,WAAA,CAAY,OAAA,CAAQ1O,CAAAA,CAAW2mB,EAAU,SAAS,CAC9D,CAAC,EAEL,CAAA,CACAnf,CAAAA,CACA,UACA,CAAE,aAAA,CAAeI,GAAiB,OAAQ,CAC5C,CACF,CCzBO,SAAS49B,EAAAA,CACdxlC,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,aAAA,CAAe,aAAa,CAAA,CAC7B9I,EACA,CAAC,CAAE,SAAA,CAAAgf,CAAU,CAAA,GAAM,CACjBwM,GAAmBxrB,CAAAA,CAAWgf,CAAS,CACzC,CAAA,CACA,MAAOmR,EAAcxJ,CAAAA,GAAc,CAE7Bnf,CAAAA,EAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,EAAK,OAAA,CAAQ,iBAAA,CAAkB,CACnCkH,CAAAA,CAAU,QAAA,CAAS,aAAA,CAAc1O,CAAS,CAAA,CAC1C,CAAC,GAAG0O,CAAAA,CAAU,WAAA,CAAY,YAAA,CAAaiY,EAAU,SAAS,CAAC,CAAA,CAC3DjY,CAAAA,CAAU,WAAA,CAAY,OAAA,CAAQ1O,EAAW2mB,CAAAA,CAAU,SAAS,CAC9D,CAAC,EAEL,CAAA,CACAnf,EACA,SAAA,CACA,CAAE,aAAA,CAAeI,CAAAA,EAAiB,MAAO,CAC3C,CACF,CCMO,SAAS69B,EAAAA,CACdzlC,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,aAAA,CAAe,UAAU,EAC1B9I,CAAAA,CACA,CAAC,CAAE,SAAA,CAAAgf,CAAAA,CAAW,MAAA,CAAA1O,EAAQ,QAAA,CAAAC,CAAAA,CAAU,KAAA,CAAAub,CAAAA,CAAO,IAAA,CAAAC,CAAK,IAAM,CAChDF,EAAAA,CAAgB7rB,CAAAA,CAAWgf,CAAAA,CAAW1O,CAAAA,CAAQC,CAAAA,CAAUub,EAAOC,CAAI,CACrE,EACA,MAAOoE,CAAAA,CAAcxJ,IAAc,CAEjC,GAAInf,CAAAA,EAAM,OAAA,EAAS,iBAAA,CAAmB,CACpC,IAAM21B,CAAAA,CAA6B,CAEjCzuB,CAAAA,CAAU,KAAA,CAAM,KAAA,CAAM,CAAA,EAAA,EAAKiY,EAAU,MAAM,CAAA,CAAA,EAAIA,CAAAA,CAAU,QAAQ,CAAA,CAAE,CAAA,CAEnE,CAAC,WAAA,CAAa,QAAA,CAAUA,EAAU,SAAS,CAAA,CAE3C,CACE,SAAA,CAAYvV,CAAAA,EAAe,CACzB,IAAM9hB,CAAAA,CAAM8hB,CAAAA,CAAM,SAClB,OACE,KAAA,CAAM,OAAA,CAAQ9hB,CAAG,CAAA,EACjBA,CAAAA,CAAI,CAAC,CAAA,GAAM,OAAA,EACXA,CAAAA,CAAI,CAAC,CAAA,GAAM,cAAA,EACXA,EAAI,CAAC,CAAA,GAAMq3B,CAAAA,CAAU,SAEzB,CACF,CACF,EACA,MAAMnf,CAAAA,CAAK,OAAA,CAAQ,iBAAA,CAAkB21B,CAAmB,EAC1D,CACF,CAAA,CACA31B,CAAAA,CACA,SAAA,CACA,CAAE,aAAA,CAAeI,CAAAA,EAAiB,MAAO,CAC3C,CACF,CCpDO,SAAS89B,EAAAA,CACd1mB,CAAAA,CACAhf,EACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,aAAA,CAAe,UAAA,CAAYkW,CAAS,CAAA,CACrChf,CAAAA,CACA,CAAC,CAAE,OAAA,CAAAgG,CAAAA,CAAS,IAAA,CAAA9F,CAAK,CAAA,GAAM,CACrBurB,GAAezrB,CAAAA,CAAWgf,CAAAA,CAAWhZ,CAAAA,CAAS9F,CAAI,CACpD,CAAA,CACA,MAAOiwB,CAAAA,CAAcxJ,CAAAA,GAAc,CAGtB/Z,CAAAA,EAAe,CACvB,eACD,CAAE,QAAA,CAAU8B,CAAAA,CAAU,WAAA,CAAY,YAAA,CAAasQ,CAAS,CAAE,CAAA,CACzDgc,CAAAA,EAAS,CACR,GAAI,CAACA,CAAAA,CAAM,OAAOA,CAAAA,CAClB,IAAM2K,CAAAA,CAAsB,CAAC,GAAI3K,CAAAA,CAAK,MAAQ,EAAG,EAC3C4K,CAAAA,CAAMD,CAAAA,CAAK,UAAU,CAAC,CAAC/zB,CAAI,CAAA,GAAMA,CAAAA,GAAS+U,CAAAA,CAAU,OAAO,CAAA,CACjE,OAAIif,CAAAA,EAAO,CAAA,CACTD,CAAAA,CAAKC,CAAG,EAAI,CAACD,CAAAA,CAAKC,CAAG,CAAA,CAAE,CAAC,CAAA,CAAGjf,EAAU,IAAA,CAAMgf,CAAAA,CAAKC,CAAG,CAAA,CAAE,CAAC,GAAK,EAAE,CAAA,CAE7DD,CAAAA,CAAK,IAAA,CAAK,CAAChf,CAAAA,CAAU,QAASA,CAAAA,CAAU,IAAA,CAAM,EAAE,CAAC,CAAA,CAE5C,CAAE,GAAGqU,CAAAA,CAAM,IAAA,CAAA2K,CAAK,CACzB,CACF,CAAA,CAGIn+B,GAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,kBAAkB,CACnC,CAAC,GAAGkH,CAAAA,CAAU,WAAA,CAAY,YAAA,CAAasQ,CAAS,CAAC,CAAA,CACjDtQ,CAAAA,CAAU,WAAA,CAAY,OAAA,CAAQiY,CAAAA,CAAU,QAAS3H,CAAS,CAC5D,CAAC,EAEL,CAAA,CACAxX,CAAAA,CACA,UACA,CAAE,aAAA,CAAeI,GAAiB,OAAQ,CAC5C,CACF,CChDO,SAASi+B,EAAAA,CACd7mB,CAAAA,CACAhf,CAAAA,CACAwH,CAAAA,CACAI,EACA,CACA,OAAOkB,CAAAA,CACL,CAAC,aAAA,CAAe,QAAA,CAAUkW,CAAS,CAAA,CACnChf,CAAAA,CACCR,CAAAA,EAAU,CACTksB,EAAAA,CAAuB1rB,CAAAA,CAAWgf,EAAWxf,CAAK,CACpD,EACA,MAAO2wB,CAAAA,CAAcxJ,IAAc,CAGtB/Z,CAAAA,EAAe,CACvB,cAAA,CACD,CAAE,QAAA,CAAU8B,EAAU,WAAA,CAAY,YAAA,CAAasQ,CAAS,CAAE,CAAA,CACzDgc,CAAAA,EACMA,GACE,CAAE,GAAGA,CAAAA,CAAM,GAAIrU,CAA4C,CAEtE,EAGInf,CAAAA,EAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,kBAAkB,CACnC,CAAC,GAAGkH,CAAAA,CAAU,WAAA,CAAY,YAAA,CAAasQ,CAAS,CAAC,CACnD,CAAC,EAEL,CAAA,CACAxX,CAAAA,CACA,UACA,CAAE,aAAA,CAAeI,CAAAA,EAAiB,OAAQ,CAC5C,CACF,CC3CO,SAASk+B,EAAAA,CACd9lC,EACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,aAAA,CAAe,iBAAiB,CAAA,CACjC9I,EACA,CAAC,CAAE,IAAA,CAAA4R,CAAK,CAAA,GAAM,CACZme,GAA6Bne,CAAI,CACnC,CAAA,CACA,MAAOue,CAAAA,CAAcxJ,CAAAA,GAAc,CAE7Bnf,CAAAA,EAAM,OAAA,EAAS,mBACjB,MAAMA,CAAAA,CAAK,QAAQ,iBAAA,CAAkB,CAEnC,CAAC,GAAGkH,CAAAA,CAAU,WAAA,CAAY,aAAaiY,CAAAA,CAAU,IAAI,CAAC,CAAA,CAEtD,CAAC,GAAGjY,EAAU,MAAA,CAAO,OAAA,CAAQ1O,CAAS,CAAC,CACzC,CAAC,EAEL,CAAA,CACAwH,CAAAA,CACA,SACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCnEO,SAASm+B,EAAAA,CACd/lC,CAAAA,CACAwH,EACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,aAAA,CAAe,UAAU,CAAA,CAC1B9I,CAAAA,CACA,CAAC,CAAE,SAAA,CAAAgf,CAAAA,CAAW,QAAAhZ,CAAAA,CAAS,QAAA,CAAAuK,EAAU,GAAA,CAAAqb,CAAI,IAAM,CACzCD,EAAAA,CAAe3rB,CAAAA,CAAWgf,CAAAA,CAAWhZ,CAAAA,CAASuK,CAAAA,CAAUqb,CAAG,CAC7D,CAAA,CACA,MAAOuE,CAAAA,CAASxJ,CAAAA,GAAc,CACxBnf,GAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,iBAAA,CAAkB,CACnCkH,CAAAA,CAAU,KAAA,CAAM,MAAM,CAAA,EAAA,EAAKiY,CAAAA,CAAU,OAAO,CAAA,CAAA,EAAIA,CAAAA,CAAU,QAAQ,CAAA,CAAE,CAAA,CACpE,CAAC,GAAGjY,CAAAA,CAAU,WAAA,CAAY,YAAA,CAAaiY,CAAAA,CAAU,SAAS,CAAC,CAC7D,CAAC,EAEL,CAAA,CACAnf,CAAAA,CACA,SAAA,CACA,CAAE,cAAeI,CAAAA,EAAiB,OAAQ,CAC5C,CACF,CC9BO,SAASo+B,EAAAA,CACdp1B,CAAAA,CACAQ,EACAplB,CAAAA,CAAQ,GAAA,CACRgf,CAAAA,CAA+B,MAAA,CAC/B6Q,CAAAA,CAAU,IAAA,CACV,CACA,OAAOpN,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,WAAA,CAAY,KAAKkC,CAAAA,CAAMQ,CAAAA,EAAS,GAAIplB,CAAK,CAAA,CAC7D,QAAA6vB,CAAAA,CACA,OAAA,CAAS,SAAY,CACnB,IAAMre,CAAAA,CAAW,MAAMxB,CAAAA,CAAQ,yBAAA,CAA2B,CACtD,IAAA,CAAM,EAAA,CACN,KAAA,CAAAhQ,EACA,IAAA,CAAM4kB,CAAAA,GAAS,KAAA,CAAQ,MAAA,CAASA,CAAAA,CAChC,KAAA,CAAOQ,GAAgB,IAAA,CACvB,QAAA,CAAApG,CACF,CAAC,CAAA,CACH,OACExN,EACIoT,CAAAA,GAAS,KAAA,CACPpT,CAAAA,CAAS,IAAA,CAAK,IAAM,IAAA,CAAK,QAAO,CAAI,EAAG,CAAA,CACvCA,CAAAA,CACF,EAER,CACF,CAAC,CACH,CC3BO,SAASyoC,EAAAA,CACdjmC,EACA6R,CAAAA,CACA,CACA,OAAOpD,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,WAAA,CAAY,OAAA,CAAQ1O,EAAW6R,CAAc,CAAA,CACjE,OAAA,CAAS,CAAC,CAAC7R,CAAAA,EAAY,CAAC,CAAC6R,CAAAA,CACzB,OAAA,CAAS,SAAY,CACnB,IAAMrU,EAAW,MAAMxB,CAAAA,CAAQ,+BAAgC,CAC3D,OAAA,CAASgE,EACT,IAAA,CAAM6R,CACR,CAAC,CAAA,CAEH,OAAO,CACL,KAAMrU,CAAAA,EAAU,IAAA,EAAQ,OAAA,CACxB,UAAA,CAAYA,CAAAA,EAAU,UAAA,EAAc,KACtC,CAIF,CACF,CAAC,CACH,CCtBO,SAAS0oC,EAAAA,CACdt0B,CAAAA,CACA5G,EAA+B,EAAA,CAC/B6Q,CAAAA,CAAU,IAAA,CACV,CACA,OAAOpN,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,WAAA,CAAY,MAAA,CAAOkD,CAAAA,CAAM5G,CAAQ,EACrD,OAAA,CAAS6Q,CAAAA,EAAW,CAAC,CAACjK,CAAAA,CACtB,OAAA,CAAS,SAAY8M,EAAAA,CAAa9M,CAAAA,EAAQ,GAAI5G,CAAQ,CACxD,CAAC,CACH,CCFO,IAAMm7B,EAAAA,CAAwB,IAYrC,eAAeC,EAAAA,CACbv0B,EACA+M,CAAAA,CAC0B,CAM1B,OALiB,MAAM5iB,CAAAA,CAAQ,yBAAA,CAA2B,CACxD,SAAA,CAAW6V,CAAAA,CACX,MAAOs0B,EAAAA,CACP,GAAIvnB,EAAO,CAAE,IAAA,CAAAA,CAAK,CAAA,CAAI,EACxB,CAAC,CAAA,EAC6C,EAChD,CAYO,SAASynB,EAAAA,CAAoCx0B,EAAuB,CACzE,OAAOpD,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,YAAY,WAAA,CAAYmD,CAAa,EACzD,OAAA,CAAS,SAAYu0B,GAAqBv0B,CAAAA,CAAe,IAAI,CAAA,CAC7D,SAAA,CAAW,GACb,CAAC,CACH,CAOO,SAASy0B,EAAAA,CACdz0B,CAAAA,CACA,CACA,OAAOuH,gCAML,CACA,QAAA,CAAU1K,CAAAA,CAAU,WAAA,CAAY,mBAAA,CAAoBmD,CAAa,EACjE,gBAAA,CAAkB,IAAA,CAClB,QAAS,MAAO,CAAE,UAAAwH,CAAU,CAAA,GAC1B+sB,EAAAA,CAAqBv0B,CAAAA,CAAewH,CAAS,CAAA,CAG/C,iBAAmBE,CAAAA,EACjBA,CAAAA,EAAU,MAAA,EAAU4sB,EAAAA,CAChB5sB,CAAAA,CAASA,CAAAA,CAAS,OAAS,CAAC,CAAA,GAAI,CAAC,CAAA,EAAK,IAAA,CACtC,IAAA,CACN,UAAW,GACb,CAAC,CACH,CCpEO,SAASgtB,EAAAA,CACdvgC,CAAAA,CACAha,CAAAA,CACA,CACA,OAAOotB,+BAAAA,CAML,CACA,QAAA,CAAU1K,CAAAA,CAAU,WAAA,CAAY,oBAAA,CAAqB1I,EAASha,CAAK,CAAA,CACnE,gBAAA,CAAkB,IAAA,CAOlB,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqtB,CAAU,IACT,MAAMrd,CAAAA,CAAQ,+BAAgC,CAC7D,OAAA,CAAAgK,CAAAA,CACA,KAAA,CAAAha,CAAAA,CACA,OAAA,CAASqtB,GAAa,MACxB,CAAC,CAAA,EACoD,EAAC,CAKxD,gBAAA,CAAmBE,GACjBA,CAAAA,EAAU,MAAA,EAAUvtB,CAAAA,CAAQutB,CAAAA,CAASA,CAAAA,CAAS,MAAA,CAAS,CAAC,CAAA,CAAE,EAAA,CAAK,IACnE,CAAC,CACH,CC3CO,SAASitB,EAAAA,EAAqC,CACnD,OAAO/3B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,WAAA,CAAY,UAAS,CACzC,OAAA,CAAS,SAAY,CACnB,IAAMlR,CAAAA,CAAW,MAAM,KAAA,CACrB6M,CAAAA,CAAO,eAAiB,mCAAA,CACxB,CACE,OAAQ,KAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,CAAA,CAEA,GAAI,CAAC7M,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,sCAAA,EAAyCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAG5E,OAAOA,CAAAA,CAAS,IAAA,EAClB,CACF,CAAC,CACH,CCzBO,IAAKipC,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,KAAA,CAAQ,OAAA,CACRA,EAAA,KAAA,CAAQ,OAAA,CACRA,CAAAA,CAAA,GAAA,CAAM,KAAA,CACNA,CAAAA,CAAA,OAAS,QAAA,CACTA,CAAAA,CAAA,KAAA,CAAQ,OAAA,CACRA,CAAAA,CAAA,KAAA,CAAQ,QANEA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,CAAA,CASCC,GAAoC,CAC9C,KAAA,CAAc,CACb,OAAA,CACA,KAAA,CACA,QAAA,CACA,OAAA,CACA,OACF,CAAA,CACC,MAAc,CAAC,KAAA,CAAW,QAAA,CAAc,OAAA,CAAa,OAAW,CAAA,CAChE,IAAY,CAAC,QAAA,CAAc,OAAA,CAAa,OAAW,CACtD,ECjBO,SAASC,EAAAA,CAAiB/0B,CAAAA,CAAcg1B,EAAgC,CAC7E,OAAIh1B,EAAK,UAAA,CAAW,QAAQ,CAAA,EAAKg1B,CAAAA,GAAY,CAAA,CAAU,SAAA,CACnDh1B,EAAK,UAAA,CAAW,QAAQ,CAAA,EAAKg1B,CAAAA,GAAY,CAAA,CAAU,SAAA,CAChD,OACT,CAEO,SAASC,EAAAA,CAAwB,CACtC,aAAA,CAAAC,CAAAA,CACA,SAAAC,CAAAA,CACA,UAAA,CAAAC,CACF,CAAA,CAIG,CACD,IAAMC,CAAAA,CACAF,CAAAA,GAAa,OAAA,CAAoB,KAAA,CAEjCD,CAAAA,GAAkB,OAAA,CAAgB,KAG/B,CAAA,OAAA,CAAA,OAAA,CAAA,KAAA,CAAA,QAAkD,CAAA,CAAE,QAAA,CACzDC,CACF,CAAA,CAGIG,CAAAA,CAAAA,CAAc,IAAM,CACxB,GAAIH,CAAAA,GAAa,OAAA,CAAa,OAAO,MAAA,CAErC,OAAQD,CAAAA,EACN,KAAK,OAAA,CACH,OAAO,KAAA,CACT,KAAK,SAAA,CACH,OAAOC,CAAAA,GAAa,OAAA,EAAeC,CAAAA,CACrC,KAAK,UACH,OAAOC,CACX,CACF,CAAA,GAAG,CAEGE,CAAAA,CAAc,sBAAoC,CAAA,CAAE,QAAA,CAASJ,CAAQ,CAAA,CAE3E,OAAO,CACL,QAAAE,CAAAA,CACA,UAAA,CAAAC,EACA,WAAA,CAAAC,CACF,CACF,CC7CO,SAASC,GACdz2B,CAAAA,CACAta,CAAAA,CACA,CACA,OAAOoY,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,aAAA,CAAc,WAAA,CAAYiC,CAAc,CAAA,CAC5D,OAAA,CAAS,SAAY,CAGnB,GAAI,CAACta,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,sBAAsB,CAAA,CAaxC,OAAA,CADc,KAAA,CAVG,MAAM,MACrB,CAAA,EAAGgU,CAAAA,CAAO,cAAc,CAAA,iCAAA,CAAA,CACxB,CACE,MAAA,CAAQ,OACR,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAAhU,CAAK,CAAC,CAAA,CAC7B,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,CAAA,EAC6B,IAAA,EAAK,EACtB,KACd,CAAA,CACA,QAAS,CAAC,CAACsa,CAAAA,EAAkB,CAAC,CAACta,CAAAA,CAK/B,gBAAiB,CAAA,CACjB,eAAA,CAAiB,GACnB,CAAC,CACH,CC/BO,SAASgxC,EAAAA,CACd12B,EACAta,CAAAA,CACAma,CAAAA,CAAyC,MAAA,CACzC,CACA,OAAO4I,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,aAAA,CAAc,IAAA,CAAKiC,CAAAA,CAAgBH,CAAM,EAC7D,OAAA,CAAS,MAAO,CAAE,SAAA,CAAA6I,CAAU,CAAA,GAAM,CAChC,GAAI,CAAChjB,EACH,OAAO,GAET,IAAM3H,CAAAA,CAAO,CACX,IAAA,CAAA2H,CAAAA,CACA,MAAA,CAAAma,EACA,KAAA,CAAO6I,CAAAA,CACP,IAAA,CAAM,MACR,CAAA,CAEM7b,CAAAA,CAAW,MAAM,KAAA,CACrB6M,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CACxB,CACE,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAC3B,CACF,CAAA,CAEA,GAAI,CAAC8O,CAAAA,CAAS,EAAA,CACZ,OAAO,EAAC,CAGV,GAAI,CACF,OAAQ,MAAMA,CAAAA,CAAS,IAAA,EACzB,MAAQ,CACN,OAAO,EACT,CACF,EACA,OAAA,CAAS,CAAC,CAACmT,CAAAA,EAAkB,CAAC,CAACta,EAG/B,gBAAA,CAAkB,EAAA,CAClB,gBAAA,CAAmBkjB,CAAAA,EAAaA,CAAAA,GAAWA,CAAAA,CAAS,OAAS,CAAC,CAAA,EAAG,EAAA,EAAM,EAAA,CACvE,cAAA,CAAgB,IAClB,CAAC,CACH,KCnDY+tB,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,KAAA,CAAQ,QAAA,CACRA,CAAAA,CAAA,QAAA,CAAW,WACXA,CAAAA,CAAA,SAAA,CAAY,YAAA,CACZA,CAAAA,CAAA,SAAA,CAAY,YAAA,CACZA,EAAA,OAAA,CAAU,SAAA,CACVA,CAAAA,CAAA,OAAA,CAAU,SAAA,CACVA,CAAAA,CAAA,QAAU,SAAA,CACVA,CAAAA,CAAA,UAAY,WAAA,CACZA,CAAAA,CAAA,YAAc,aAAA,CACdA,CAAAA,CAAA,OAAA,CAAU,SAAA,CACVA,CAAAA,CAAA,mBAAA,CAAsB,sBAGtBA,CAAAA,CAAA,eAAA,CAAkB,iBAAA,CAClBA,CAAAA,CAAA,eAAA,CAAkB,iBAAA,CAClBA,EAAA,IAAA,CAAO,MAAA,CAhBGA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,ECGL,IAAKC,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,IAAA,IAAA,CAAO,CAAA,CAAA,CAAP,OACAA,CAAAA,CAAAA,CAAAA,CAAA,OAAA,CAAU,GAAV,SAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,MAAA,CAAS,CAAA,CAAA,CAAT,QAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,QAAU,CAAA,CAAA,CAAV,SAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,OAAA,CAAU,CAAA,CAAA,CAAV,SAAA,CACAA,IAAA,SAAA,CAAY,CAAA,CAAA,CAAZ,WAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,WAAA,CAAc,EAAA,CAAA,CAAd,cACAA,CAAAA,CAAAA,CAAAA,CAAA,SAAA,CAAY,IAAZ,WAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,UAAY,EAAA,CAAA,CAAZ,WAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,OAAA,CAAU,EAAA,CAAA,CAAV,SAAA,CACAA,IAAA,cAAA,CAAiB,EAAA,CAAA,CAAjB,gBAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,eAAA,CAAkB,EAAA,CAAA,CAAlB,kBACAA,CAAAA,CAAAA,CAAAA,CAAA,mBAAA,CAAsB,EAAA,CAAA,CAAtB,qBAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,IAAA,CAAO,IAAP,MAAA,CACAA,CAAAA,CAAA,aAAe,cAAA,CAfLA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,IAkBCC,EAAAA,CAAmB,CAC9B,CAAA,CACA,CAAA,CACA,CAAA,CACA,CAAA,CACA,EACA,CAAA,CACA,EAAA,CACA,EAAA,CACA,EAAA,CACA,EAAA,CACA,EAAA,CACA,GACA,EAAA,CACA,EACF,CAAA,CAEYC,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,GAAA,CAAM,MACNA,CAAAA,CAAA,MAAA,CAAS,SACTA,CAAAA,CAAA,IAAA,CAAO,OAHGA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,ECjCL,SAASC,EAAAA,CACd/2B,CAAAA,CACAta,CAAAA,CACAsxC,EACA,CACA,OAAOl5B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,cAAc,QAAA,CAASiC,CAAc,CAAA,CACzD,OAAA,CAAS,SAAY,CACnB,IAAI7I,CAAAA,CAAQ6I,CAAAA,CAAiB,OAC7B,GAAI,CAACta,EACH,MAAM,IAAI,KAAA,CAAM,sBAAsB,CAAA,CAExC,IAAMmH,EAAW,MAAM,KAAA,CACrB6M,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CACxB,CACE,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAAhU,CAAAA,CACA,QAAA,CAAUsa,EACV,KAAA,CAAA7I,CACF,CAAC,CAAA,CACD,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CACF,EACA,GAAI,CAACtK,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,MAAM,CAAA,uCAAA,EAA0CA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAE7E,OAAOA,EAAS,IAAA,EAClB,CAAA,CACA,OAAA,CAAS,CAAC,CAACmT,GAAkB,CAAC,CAACta,CAAAA,CAC/B,cAAA,CAAgB,KAAA,CAChB,WAAA,CAAa,KACJ,CACL,MAAA,CAAQ,CAAA,CACR,MAAA,CAAQ,KAAA,CACR,aAAA,CAAe,EACf,YAAA,CAAcsxC,CAAAA,CAAe,EAAC,CAAK,CAAC,GAAGH,EAAgB,CACzD,CAAA,CAEJ,CAAC,CACH,CC3CO,SAASI,EAAAA,EAA+B,CAC7C,OAAOn5B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,aAAA,CAAc,aAAA,GAClC,OAAA,CAAS,SAAY,CACnB,IAAMlR,CAAAA,CAAW,MAAM,MAAM6M,CAAAA,CAAO,cAAA,CAAiB,6BAA8B,CACjF,MAAA,CAAQ,MACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CAAC,EAED,GAAI,CAAC7M,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,MAAM,CAAA,+BAAA,EAAkCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAIrE,OADa,MAAMA,CAAAA,CAAS,IAAA,IACb,EACjB,EACA,SAAA,CAAW,IACb,CAAC,CACH,CClBO,SAASqqC,EAAAA,CAA0BC,CAAAA,CAAuB,CAC/D,OAAOr5B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,aAAA,CAAc,UAAA,GAClC,OAAA,CAAS,SAAY,CACnB,IAAMlR,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,cAAA,CAAiB,yBAAA,CAA2B,CAC9E,MAAA,CAAQ,MACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CACF,CAAC,EAED,GAAI,CAAC7M,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,MAAM,CAAA,4BAAA,EAA+BA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAIlE,OADc,MAAMA,CAAAA,CAAS,IAAA,EAAK,EACnB,EACjB,EACA,SAAA,CAAW,IACb,CAAC,CACH,CClBA,SAASuqC,EAAAA,CAAqBx2C,CAAAA,CAAuBD,CAAAA,CAA8B,CACjF,OAAO,CACL,GAAGC,CAAAA,CACH,IAAA,CAAO,CAACD,CAAAA,EAAMA,CAAAA,GAAOC,CAAAA,CAAK,EAAA,CAAK,CAAA,CAAIA,CAAAA,CAAK,IAC1C,CACF,CAEA,SAASy2C,EAAAA,CAAet5C,CAAAA,CAAiD,CACvE,OACE,OAAOA,CAAAA,EAAS,QAAA,EAChBA,CAAAA,GAAS,IAAA,EACT,OAAA,GAAWA,GACX,YAAA,GAAgBA,CAAAA,EAChB,MAAM,OAAA,CAASA,CAAAA,CAAkC,KAAK,CAE1D,CAuBO,SAASu5C,EAAAA,CACdjoC,CAAAA,CACA3J,CAAAA,CACA2S,EACA6d,CAAAA,CACA,CACA,IAAML,CAAAA,CAAc5Z,CAAAA,EAAe,CAEnC,OAAO3D,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,eAAA,CAAiB,WAAA,CAAajJ,CAAQ,CAAA,CAEpD,UAAA,CAAY,MAAO,CAAE,EAAA,CAAA1O,CAAG,IAAuB,CAC7C,GAAI,CAAC0O,CAAAA,EAAY,CAAC3J,CAAAA,CAAM,CAClB,OAAA,CAAQ,GAAA,CAAI,QAAA,GAAa,YAAA,EAC3B,OAAA,CAAQ,IAAA,CAAK,gEAA2D,CAAA,CAE1E,MACF,CACA,OAAOyiC,EAAAA,CAAkBziC,CAAAA,CAAM/E,CAAE,CACnC,CAAA,CAGA,SAAU,MAAO,CAAE,GAAAA,CAAG,CAAA,GAAuB,CAE3C,GAAI,CAAC0O,CAAAA,EAAY,CAAC3J,CAAAA,CAChB,OAAO,CAAE,YAAA,CAAc,EAAG,EAI5B,MAAMmwB,CAAAA,CAAY,aAAA,CAAc,CAAE,QAAA,CAAU9X,CAAAA,CAAU,cAAc,OAAQ,CAAC,EAG7E,IAAMw5B,CAAAA,CAA2C,EAAC,CAG5CjX,CAAAA,CAAkBzK,CAAAA,CAAY,cAAA,CAAyC,CAC3E,QAAA,CAAU9X,EAAU,aAAA,CAAc,OAAA,CAClC,SAAA,CAAY0C,CAAAA,EAAU,CACpB,IAAM1iB,EAAO0iB,CAAAA,CAAM,KAAA,CAAM,IAAA,CACzB,OAAO42B,EAAAA,CAAet5C,CAAI,CAC5B,CACF,CAAC,EAEDuiC,CAAAA,CAAgB,OAAA,CAAQ,CAAC,CAAClkB,CAAAA,CAAUre,CAAI,CAAA,GAAM,CAC5C,GAAIA,GAAQs5C,EAAAA,CAAet5C,CAAI,CAAA,CAAG,CAChCw5C,CAAAA,CAAa,IAAA,CAAK,CAACn7B,CAAAA,CAAUre,CAAI,CAAC,CAAA,CAElC,IAAMy5C,CAAAA,CAAwC,CAC5C,GAAGz5C,CAAAA,CACH,KAAA,CAAOA,CAAAA,CAAK,KAAA,CAAM,GAAA,CAAK+jB,GACrBA,CAAAA,CAAK,GAAA,CAAKlhB,CAAAA,EAASw2C,EAAAA,CAAqBx2C,CAAAA,CAAMD,CAAE,CAAC,CACnD,CACF,CAAA,CAEAk1B,CAAAA,CAAY,YAAA,CAAazZ,CAAAA,CAAUo7B,CAAW,EAChD,CACF,CAAC,CAAA,CAGD,IAAMC,CAAAA,CAAY15B,EAAU,aAAA,CAAc,WAAA,CAAY1O,CAAQ,CAAA,CACxDqoC,CAAAA,CAAgB7hB,EAAY,YAAA,CAAqB4hB,CAAS,CAAA,CAChE,OAAI,OAAOC,CAAAA,EAAkB,UAAYA,CAAAA,CAAgB,CAAA,GACvDH,CAAAA,CAAa,IAAA,CAAK,CAACE,CAAAA,CAAWC,CAAa,CAAC,CAAA,CAEvC/2C,CAAAA,CAKc2/B,CAAAA,CAAgB,IAAA,CAAK,CAAC,EAAGz4B,CAAC,IACzCA,CAAAA,EAAG,KAAA,CAAM,KAAMia,CAAAA,EACbA,CAAAA,CAAK,IAAA,CAAMlhB,CAAAA,EAASA,CAAAA,CAAK,EAAA,GAAOD,GAAMC,CAAAA,CAAK,IAAA,GAAS,CAAC,CACvD,CACF,CAAA,EAEEi1B,EAAY,YAAA,CAAa4hB,CAAAA,CAAWC,CAAAA,CAAgB,CAAC,CAAA,CATvD7hB,CAAAA,CAAY,aAAa4hB,CAAAA,CAAW,CAAC,GAelC,CAAE,YAAA,CAAAF,CAAa,CACxB,CAAA,CAEA,SAAA,CAAY1qC,CAAAA,EAAa,CAEvB,IAAM8qC,EAAc,OAAO9qC,CAAAA,EAAa,QAAA,EAAYA,CAAAA,GAAa,IAAA,CAC5DA,CAAAA,CAAiC,OAClC,MAAA,CAGA,OAAO8qC,CAAAA,EAAgB,QAAA,EACzB9hB,CAAAA,CAAY,YAAA,CACV9X,EAAU,aAAA,CAAc,WAAA,CAAY1O,CAAQ,CAAA,CAC5CsoC,CACF,CAAA,CAGFt/B,IAAYs/B,CAAW,EACzB,CAAA,CAGA,OAAA,CAAS,CAAC/1C,CAAAA,CAAOioC,EAAYrJ,CAAAA,GAAY,CAEnCA,CAAAA,EAAS,YAAA,EACXA,CAAAA,CAAQ,YAAA,CAAa,QAAQ,CAAC,CAACpkB,CAAAA,CAAUre,CAAI,CAAA,GAAM,CACjD83B,EAAY,YAAA,CAAazZ,CAAAA,CAAUre,CAAI,EACzC,CAAC,EAGHm4B,CAAAA,GAAUt0B,CAAc,EAC1B,CAAA,CAGA,SAAA,CAAW,IAAM,CACfi0B,CAAAA,CAAY,iBAAA,CAAkB,CAC5B,QAAA,CAAU9X,CAAAA,CAAU,aAAA,CAAc,OACpC,CAAC,EACH,CACF,CAAC,CACH,CC7JO,SAAS65B,EAAAA,CACdvoC,CAAAA,CACAwH,EACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,eAAA,CAAiB,eAAe,CAAA,CACjC9I,CAAAA,CACA,CAAC,CAAE,IAAA,CAAAuqB,CAAK,CAAA,GAAMD,EAAAA,CAAoBtqB,CAAAA,CAAWuqB,CAAI,CAAA,CACjD,SAAY,CACN/iB,CAAAA,EAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,kBAAkB,CACnCkH,CAAAA,CAAU,cAAc,WAAA,CAAY1O,CAAQ,CAC9C,CAAC,EAEL,CAAA,CACAwH,EACA,SAAA,CACA,CAAE,aAAA,CAAeI,CAAAA,EAAiB,OAAQ,CAC5C,CACF,CCtBO,SAAS4gC,GAAwBl3C,CAAAA,CAAY,CAClD,OAAOmd,uBAAAA,CAAa,CAClB,SAAU,CAAC,WAAA,CAAa,UAAA,CAAYnd,CAAE,CAAA,CACtC,OAAA,CAAS,SAAY,CAEnB,IAAMm3C,CAAAA,CAAAA,CADI,MAAMzsC,CAAAA,CAAQ,8BAAA,CAAgC,CAAC,CAAC1K,CAAE,CAAC,CAAC,CAAA,EAC3C,CAAC,EAGpB,OAAI,IAAI,KAAKm3C,CAAAA,CAAS,UAAU,EAAI,IAAI,IAAA,EAAU,IAAI,IAAA,CAAKA,CAAAA,CAAS,QAAQ,GAAK,IAAI,IAAA,CACnFA,CAAAA,CAAS,MAAA,CAAS,QAAA,CACT,IAAI,KAAKA,CAAAA,CAAS,QAAQ,CAAA,CAAI,IAAI,IAAA,CAC3CA,CAAAA,CAAS,OAAS,SAAA,CAElBA,CAAAA,CAAS,OAAS,UAAA,CAGbA,CACT,CACF,CAAC,CACH,CCnBO,SAASC,EAAAA,EAA2B,CACzC,OAAOj6B,uBAAAA,CAAa,CAClB,SAAU,CAAC,WAAA,CAAa,MAAM,CAAA,CAC9B,OAAA,CAAS,SAAY,CASnB,IAAMk6B,CAAAA,CAAAA,CARY,MAAM3sC,CAAAA,CAAQ,6BAAA,CAA+B,CAC7D,KAAA,CAAO,CAAC,EAAE,CAAA,CACV,KAAA,CAAO,GAAA,CACP,MAAO,gBAAA,CACP,eAAA,CAAiB,YAAA,CACjB,MAAA,CAAQ,KACV,CAAC,GAE0B,SAAA,CACrB4sC,CAAAA,CAAUD,CAAAA,CAAU,MAAA,CAAQtxB,CAAAA,EAAMA,CAAAA,CAAE,SAAW,SAAS,CAAA,CAG9D,OAAO,CAAC,GAFOsxB,CAAAA,CAAU,OAAQtxB,CAAAA,EAAMA,CAAAA,CAAE,MAAA,GAAW,SAAS,CAAA,CAE1C,GAAGuxB,CAAO,CAC/B,CACF,CAAC,CACH,CCJO,SAASC,EAAAA,CACd/2B,CAAAA,CACAC,CAAAA,CACA/lB,EACA,CACA,OAAOotB,gCAML,CACA,QAAA,CAAU,CAAC,WAAA,CAAa,OAAA,CAAStH,CAAAA,CAAYC,CAAAA,CAAO/lB,CAAK,CAAA,CACzD,iBAAkB+lB,CAAAA,CAClB,cAAA,CAAgB,IAAA,CAChB,SAAA,CAAW,CAAA,CAEX,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAsH,CAAU,CAAA,GAA6B,CASvD,IAAMnrB,GANY,MAAM8N,CAAAA,CAAQ,oCAAqC,CACnE,CAAC8V,EAHgBuH,CAAAA,EAAatH,CAGP,CAAA,CACvB/lB,CAAAA,CACA,mBACF,CAAC,GAGE,MAAA,CAAQqrB,CAAAA,EAAMA,CAAAA,CAAE,QAAA,EAAU,WAAA,GAAgBvF,CAAU,EACpD,GAAA,CAAKuF,CAAAA,GAAO,CAAE,EAAA,CAAIA,CAAAA,CAAE,EAAA,CAAI,MAAOA,CAAAA,CAAE,KAAM,EAAE,CAAA,CAEtCD,CAAAA,CAAc,MAAMpb,CAAAA,CAAQ,4BAAA,CAA8B,CAAC9N,CAAAA,CAAK,GAAA,CAAK,CAAA,EAAM,EAAE,KAAK,CAAC,CAAC,CAAA,CACpFujB,CAAAA,CAAW0F,EAAAA,CAAcC,CAAW,CAAA,CAO1C,OALgClpB,CAAAA,CAAK,GAAA,CAAKrE,CAAAA,GAAO,CAC/C,GAAGA,CAAAA,CACH,YAAA,CAAc4nB,EAAS,IAAA,CAAMxhB,CAAAA,EAAMpG,EAAE,KAAA,GAAUoG,CAAAA,CAAE,IAAI,CACvD,CAAA,CAAE,CAGJ,EAEA,gBAAA,CAAmBspB,CAAAA,EACJA,CAAAA,GAAWA,CAAAA,CAAS,MAAA,CAAS,CAAC,GAC9B,KAAA,EAAS,MAE1B,CAAC,CACH,CC3DO,SAASuvB,EAAAA,CAAiC/2B,CAAAA,CAAe,CAC9D,OAAOtD,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,WAAA,CAAa,QAAS,SAAA,CAAWsD,CAAK,CAAA,CACjD,OAAA,CAAS,CAAC,CAACA,GAASA,CAAAA,GAAU,EAAA,CAC9B,SAAA,CAAW,EAAA,CAAK,GAAA,CAChB,OAAA,CAAS,SACH,CAACA,CAAAA,EAASA,IAAU,EAAA,CACf,KAGS,MAAM/V,CAAAA,CAAQ,kCAAA,CAAoC,CAClE,KAAA,CAAO,CAAC+V,CAAK,CAAA,CACb,KAAA,CAAO,GAAA,CACP,KAAA,CAAO,mBAAA,CACP,eAAA,CAAiB,YACjB,MAAA,CAAQ,SACV,CAAC,CAAA,EAG2B,cAAA,EAAkB,IAAI,MAAA,CAAQg3B,CAAAA,EAASA,EAAK,KAAA,GAAUh3B,CAAK,CAI3F,CAAC,CACH,CCmCO,SAASi3B,EAAAA,CACdhpC,CAAAA,CACAwH,EACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,WAAA,CAAa,MAAM,CAAA,CACpB9I,CAAAA,CACA,CAAC,CAAE,WAAA,CAAAirB,CAAAA,CAAa,QAAAL,CAAQ,CAAA,GAAM,CAC5BI,EAAAA,CAAoBhrB,CAAAA,CAAWirB,CAAAA,CAAaL,CAAO,CACrD,CAAA,CACA,MAAOzgC,CAAAA,EAAgB,CAErB,GAAI,CAIF,IAAM8U,CAAAA,CAAO9U,CAAAA,EAAQ,EAAA,EAAMA,CAAAA,EAAQ,KAAA,CAC/Bqd,GAAM,OAAA,EAAS,cAAA,EAAkBvI,CAAAA,EACnCuI,CAAAA,CAAK,OAAA,CAAQ,cAAA,CAAe,IAAKvI,CAAAA,CAAM9U,CAAAA,EAAQ,SAAS,CAAA,CAAE,KAAA,CAAOoI,GAAU,CACzE,OAAA,CAAQ,KAAA,CAAM,yDAAA,CAA2D,CACvE,YAAA,CAAc,IACd,QAAA,CAAUpI,CAAAA,EAAQ,SAAA,CAClB,aAAA,CAAe8U,CAAAA,CACf,KAAA,CAAA1M,CACF,CAAC,EACH,CAAC,CAAA,CAICiV,CAAAA,EAAM,OAAA,EAAS,mBACjB,MAAMA,CAAAA,CAAK,QAAQ,iBAAA,CAAkB,CACnCkH,EAAU,SAAA,CAAU,IAAA,EAAK,CACzBA,CAAAA,CAAU,SAAA,CAAU,WAAA,CAAY1O,CAAS,CAC3C,CAAC,EAEL,CAAA,MAASzN,CAAAA,CAAO,CAEd,QAAQ,IAAA,CAAK,sDAAA,CAAwDA,CAAK,EAC5E,CACF,CAAA,CACAiV,EACA,QAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CC1GO,SAASqhC,EAAAA,CACdjpC,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,WAAA,CAAa,QAAQ,CAAA,CACtB9I,EACCkJ,CAAAA,EAAY,CACX4hB,EAAAA,CAAsB9qB,CAAAA,CAAWkJ,CAAO,CAC1C,EACA,SAAY,CACN1B,GAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,iBAAA,CAAkB,CACnCkH,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,SAAA,CAAU,IAAA,EACtB,CAAC,EAEL,CAAA,CACAlH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCpBO,SAASshC,EAAAA,CACdlpC,CAAAA,CACAhU,CAAAA,CAAQ,EAAA,CACR,CACA,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU,CAAC,QAAA,CAAU,sBAAuBpZ,CAAAA,CAAUhU,CAAK,CAAA,CAC3D,gBAAA,CAAkB,EAAA,CAClB,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqtB,CAAU,CAAA,GAA6B,CAEvD,IAAM8vB,CAAAA,CAAa9vB,CAAAA,CAAYrtB,CAAAA,CAAQ,CAAA,CAAIA,CAAAA,CAErC7B,CAAAA,CAAS,MAAM6R,CAAAA,CAAQ,uCAAA,CAAyC,CACpEgE,CAAAA,CACAqZ,CAAAA,EAAa,EAAA,CACb8vB,CACF,CAAC,CAAA,CAID,OAAI9vB,CAAAA,EAAalvB,CAAAA,CAAO,MAAA,CAAS,GAAKA,CAAAA,CAAO,CAAC,GAAG,SAAA,GAAckvB,CAAAA,CAEtDlvB,EAAO,KAAA,CAAM,CAAA,CAAG6B,CAAAA,CAAQ,CAAC,CAAA,CAG3B7B,CACT,EACA,gBAAA,CAAmBovB,CAAAA,EAEb,CAACA,CAAAA,EAAYA,CAAAA,CAAS,MAAA,CAASvtB,EACjC,MAAA,CAIqButB,CAAAA,CAASA,CAAAA,CAAS,MAAA,CAAS,CAAC,CAAA,EAC5B,UAEzB,OAAA,CAAS,CAAC,CAACvZ,CACb,CAAC,CACH,CCnCO,SAASopC,EAAAA,CAAkCppC,EAA8B,CAC9E,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,SAAU,qBAAA,CAAuBzO,CAAQ,CAAA,CACpD,OAAA,CAAS,CAAC,CAACA,EACX,OAAA,CAAS,CAAC,CAAE,MAAA,CAAAlL,CAAO,IACjB8H,EAAAA,CACE,SAAA,CACA,sCAAA,CACA,CAAE,cAAA,CAAgBoD,CAAS,EAC3B,MAAA,CACA,MAAA,CACAlL,CACF,CACJ,CAAC,CACH,CCXO,SAASu0C,EAAAA,CAA4CrpC,EAAmB,CAC7E,OAAOyO,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,gCAAA,CAAkCzO,CAAQ,CAAA,CAC/D,OAAA,CAAS,SACFA,GACU,MAAMhE,CAAAA,CAAQ,kDAAA,CAAoD,CAAE,OAAA,CAASgE,CAAS,CAAC,CAAA,EACxF,WAAA,CAFQ,EAAC,CAIzB,OAAA,CAAS,CAAC,CAACA,CACb,CAAC,CACH,CCjBO,SAASspC,EAAAA,CAAkCtjC,CAAAA,CAAiB,CACjE,OAAOyI,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,qBAAA,CAAuBzI,CAAO,CAAA,CACnD,OAAA,CAAS,IACPhK,CAAAA,CAAQ,uCAAA,CAAyC,CAC/CgK,CACF,CAAC,CAAA,CACH,OAAStX,CAAAA,EAASA,CAAAA,CAAK,KAAK,CAACuB,CAAAA,CAAGhG,CAAAA,GAAMgG,CAAAA,CAAE,SAAA,CAAYhG,CAAAA,CAAE,SAAS,CACjE,CAAC,CACH,CCTO,SAASs/C,EAAAA,CAAgDvjC,CAAAA,CAAiB,CAC/E,OAAOyI,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,oCAAA,CAAsCzI,CAAO,CAAA,CAClE,OAAA,CAAS,IACPhK,CAAAA,CAAQ,sDAAA,CAAwD,CAC9DgK,CACF,CAAC,CAAA,CACH,MAAA,CAAStX,CAAAA,EAASA,CAAAA,CAAK,IAAA,CAAK,CAACuB,CAAAA,CAAGhG,CAAAA,GAAMgG,CAAAA,CAAE,SAAA,CAAYhG,CAAAA,CAAE,SAAS,CACjE,CAAC,CACH,CCTO,SAASu/C,EAAAA,CAAmCxjC,CAAAA,CAAiB,CAClE,OAAOyI,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,kBAAA,CAAoBzI,CAAO,EAChD,OAAA,CAAS,IACPhK,CAAAA,CAAQ,yCAAA,CAA2C,CACjDgK,CACF,CAAC,CAAA,CACH,MAAA,CAAStX,GAASA,CAAAA,CAAK,IAAA,CAAK,CAACuB,CAAAA,CAAGhG,CAAAA,GAAMgG,CAAAA,CAAE,UAAA,CAAahG,CAAAA,CAAE,UAAU,CACnE,CAAC,CACH,CCTO,SAASw/C,EAAAA,CAA8BzjC,CAAAA,CAAiB,CAC7D,OAAOyI,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,iBAAA,CAAmBzI,CAAO,CAAA,CAC/C,QAAS,IACPhK,CAAAA,CAAQ,mCAAA,CAAqC,CAC3CgK,CAAAA,CACA,UACF,CAAC,CACL,CAAC,CACH,CCTO,SAAS0jC,EAAAA,CAA0B92B,CAAAA,CAAc,CACtD,OAAOnE,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,aAAA,CAAemE,CAAI,CAAA,CACxC,OAAA,CAAS,IACP5W,CAAAA,CAAQ,+BAAA,CAAiC,CACvC4W,CACF,CAAC,CAAA,CACH,MAAA,CAASlkB,CAAAA,EAASA,CAAAA,CAAK,IAAA,CAAK,CAACuB,CAAAA,CAAGhG,CAAAA,GAAMgG,CAAAA,CAAE,OAAA,CAAUhG,CAAAA,CAAE,OAAO,EAC3D,OAAA,CAAS,CAAC,CAAC2oB,CACb,CAAC,CACH,CCNO,SAAS+2B,GAA6C3pC,CAAAA,CAAkBhU,CAAAA,CAAQ,GAAA,CAAK,CAC1F,OAAOotB,+BAAAA,CAML,CACA,QAAA,CAAU,CAAC,QAAA,CAAU,yBAAA,CAA2BpZ,CAAAA,CAAUhU,CAAK,EAC/D,gBAAA,CAAkB,IAAA,CAElB,QAAS,MAAO,CAAE,UAAAqtB,CAAU,CAAA,GAA+B,CAOzD,IAAIuwB,CAAAA,CAAAA,CANa,MAAM5tC,EAAQ,mCAAA,CAAqC,CAChE,KAAA,CAAO,CAACgE,CAAAA,CAAUqZ,CAAAA,EAAa,EAAE,CAAA,CACjC,KAAA,CAAArtB,CACF,CAAC,CAAA,CACA,IAAA,CAAMsC,GAAWA,CAAgC,CAAA,EAEH,uBAAyB,EAAC,CAG3E,OAAI+qB,CAAAA,GACFuwB,CAAAA,CAAcA,CAAAA,CAAY,MAAA,CAAQC,CAAAA,EAAeA,CAAAA,CAAW,KAAOxwB,CAAS,CAAA,CAAA,CAGvEuwB,CACT,CAAA,CAEA,gBAAA,CAAmBrwB,CAAAA,EACjBA,EAAS,MAAA,GAAWvtB,CAAAA,CAAQutB,CAAAA,CAASA,CAAAA,CAAS,MAAA,CAAS,CAAC,EAAE,EAAA,CAAK,IACnE,CAAC,CACH,CCxCO,SAASuwB,EAAAA,CAA0B9pC,CAAAA,CAA8B,CACtE,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,cAAezO,CAAQ,CAAA,CAC5C,OAAA,CAAS,CAAC,CAACA,CAAAA,CACX,QAAS,SAAyC,CAChD,GAAI,CAACA,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,kDAAkD,CAAA,CAIpE,IAAMxC,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B,CAAA,EAAG3D,CAAAA,CAAO,cAAc,CAAA,yBAAA,EAA4BrK,CAAQ,CAAA,CAC9D,CAAA,CAEA,GAAI,CAACxC,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,gCAAgCA,CAAAA,CAAS,MAAM,EAAE,CAAA,CAGnE,OAAOA,CAAAA,CAAS,IAAA,EAClB,CACF,CAAC,CACH,CChBO,SAASusC,EAAAA,CAAgB35C,CAAAA,CAAiC,CAE/D,IAAM45C,CAAAA,CAAAA,CADS,MAAA,CAAO55C,CAAM,CAAA,CAAE,OAAA,CAAQ,KAAA,CAAO,EAAE,CAAA,EAAK,GAAA,EAC9B,SAAS,CAAA,CAAG,GAAG,CAAA,CAErC,OAAO,CAAA,EADO45C,CAAAA,CAAO,MAAM,CAAA,CAAG,EAAE,CAAA,CAAE,OAAA,CAAQ,WAAA,CAAa,EAAE,CAC1C,CAAA,CAAA,EAAIA,CAAAA,CAAO,KAAA,CAAM,EAAE,CAAC,CAAA,MAAA,CACrC,CAMO,SAASC,EAAAA,CACdhhB,EACA2gB,CAAAA,CACwB,CACxB,QAAQA,CAAAA,EAAa,oBAAA,EAAwB,EAAC,EAC3C,GAAA,CAAKpxC,CAAAA,GAAO,CACX,SAAA,CAAWA,CAAAA,CAAE,SAAA,CACb,GAAA,CAAK,MAAA,CAAO,MAAA,CAAOA,EAAE,MAAM,CAAA,CAAE,OAAA,CAAQ,KAAA,CAAO,EAAE,CAAA,EAAK,GAAG,CACxD,CAAA,CAAE,EACD,IAAA,CAAK,CAACvI,EAAGhG,CAAAA,GAAOgG,CAAAA,CAAE,GAAA,GAAQhG,CAAAA,CAAE,GAAA,CAAM,CAAA,CAAIgG,EAAE,GAAA,CAAMhG,CAAAA,CAAE,GAAA,CAAM,EAAA,CAAK,CAAE,CAAA,CAC7D,IAAI,CAAC,CAAE,SAAA,CAAA++B,CAAAA,CAAW,GAAA,CAAAhP,CAAI,KAAO,CAC5B,SAAA,CAAAiP,EACA,SAAA,CAAAD,CAAAA,CACA,eAAgB+gB,EAAAA,CAAgB/vB,CAAG,CACrC,CAAA,CAAE,CACN,CCrBO,SAASkwB,EAAAA,CAAqClqC,CAAAA,CAAkB,CACrE,OAAOyO,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,MAAA,CAAO,qBAAA,CAAsB1O,CAAQ,CAAA,CACzD,OAAA,CAAS,CAAC,CAACA,CAAAA,CACX,QAAS,SACPiqC,EAAAA,CACEjqC,EAGA,MAAM4M,CAAAA,EAAe,CAAE,UAAA,CAAW,CAChC,GAAGw8B,GAAkCppC,CAAQ,CAAA,CAC7C,SAAA,CAAW,GACb,CAAC,CACH,CACJ,CAAC,CACH,CCpBO,SAASmqC,EAAAA,CAAkCnqC,EAAkB,CAClE,OAAOyO,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,qBAAA,CAAuBzO,CAAQ,EACpD,OAAA,CAAS,IACPhE,CAAAA,CAAQ,wCAAA,CAA0C,CAChDgE,CACF,CAAC,CAAA,CACH,OAAA,CAAS,CAAC,CAACA,CACb,CAAC,CACH,CCsBA,SAASoqC,EAAAA,CAAgBn/C,CAAAA,CAAoC,CAC3D,GAAI,OAAOA,CAAAA,EAAU,SAAU,CAC7B,IAAMo/C,CAAAA,CAAUp/C,CAAAA,CAAM,IAAA,EAAK,CAC3B,OAAOo/C,CAAAA,CAAQ,MAAA,CAAS,CAAA,CAAIA,CAAAA,CAAU,MACxC,CAGF,CAEA,SAASC,EAAAA,CAAgBr/C,EAAoC,CAC3D,GAAI,OAAOA,CAAAA,EAAU,QAAA,EAAY,MAAA,CAAO,QAAA,CAASA,CAAK,CAAA,CACpD,OAAOA,CAAAA,CAGT,GAAI,OAAOA,CAAAA,EAAU,QAAA,CAAU,CAC7B,IAAMo/C,CAAAA,CAAUp/C,CAAAA,CAAM,IAAA,EAAK,CAC3B,GAAI,CAACo/C,EACH,OAGF,IAAME,CAAAA,CAAS,MAAA,CAAO,UAAA,CAAWF,CAAO,EACxC,GAAI,MAAA,CAAO,QAAA,CAASE,CAAM,CAAA,CACxB,OAAOA,EAIT,IAAM9+B,CAAAA,CADY4+B,CAAAA,CAAQ,OAAA,CAAQ,IAAA,CAAM,EAAE,EAClB,KAAA,CAAM,oBAAoB,CAAA,CAClD,GAAI5+B,CAAAA,CAAO,CACT,IAAMvE,CAAAA,CAAS,MAAA,CAAO,WAAWuE,CAAAA,CAAM,CAAC,CAAC,CAAA,CACzC,GAAI,MAAA,CAAO,QAAA,CAASvE,CAAM,CAAA,CACxB,OAAOA,CAEX,CACF,CAGF,CAEA,SAASsjC,EAAAA,CAAWC,EAAoD,CACtE,GAAI,CAACA,CAAAA,EAAY,OAAOA,CAAAA,EAAa,SACnC,OAGF,IAAM3iC,EAAQ2iC,CAAAA,CAGd,OAAO,CACL,IAAA,CAAML,EAAAA,CAAgBtiC,CAAAA,CAAM,IAAI,CAAA,EAAK,EAAA,CACrC,OAAQsiC,EAAAA,CAAgBtiC,CAAAA,CAAM,MAAM,CAAA,EAAK,EAAA,CACzC,KAAA,CAAQsiC,GAAgBtiC,CAAAA,CAAM,KAAK,CAAA,EAAK,MAAA,CACxC,OAAA,CAASwiC,EAAAA,CAAgBxiC,EAAM,OAAO,CAAA,EAAK,EAC3C,QAAA,CAAUwiC,EAAAA,CAAgBxiC,EAAM,QAAQ,CAAA,EAAK,CAAA,CAC7C,QAAA,CAAUsiC,EAAAA,CAAgBtiC,CAAAA,CAAM,QAAQ,CAAA,EAAK,KAAA,CAC7C,SAAA,CAAWwiC,EAAAA,CAAgBxiC,CAAAA,CAAM,SAAS,GAAK,CAAA,CAC/C,OAAA,CAASsiC,EAAAA,CAAgBtiC,CAAAA,CAAM,OAAO,CAAA,CACtC,MAAOsiC,EAAAA,CAAgBtiC,CAAAA,CAAM,KAAK,CAAA,CAClC,cAAA,CAAgBwiC,GAAgBxiC,CAAAA,CAAM,cAAc,CAAA,CACpD,kBAAA,CAAoBwiC,EAAAA,CAAgBxiC,CAAAA,CAAM,kBAAkB,CAAA,CAC5D,MAAA,CAAQwiC,EAAAA,CAAgBxiC,CAAAA,CAAM,MAAM,CAAA,CACpC,WAAYwiC,EAAAA,CAAgBxiC,CAAAA,CAAM,UAAU,CAAA,CAC5C,OAAA,CAASwiC,EAAAA,CAAgBxiC,EAAM,OAAO,CAAA,CACtC,YAAawiC,EAAAA,CAAgBxiC,CAAAA,CAAM,WAAW,CAAA,CAC9C,MAAA,CAAQwiC,EAAAA,CAAgBxiC,CAAAA,CAAM,MAAM,CAAA,CACpC,WAAYwiC,EAAAA,CAAgBxiC,CAAAA,CAAM,UAAU,CAAA,CAC5C,OAAA,CAASsiC,EAAAA,CAAgBtiC,EAAM,OAAO,CAAA,CACtC,OAAA,CAAUA,CAAAA,CAAM,OAAA,EAAW,GAC3B,SAAA,CAAYA,CAAAA,CAAM,WAAa,EAAC,CAChC,IAAKwiC,EAAAA,CAAgBxiC,CAAAA,CAAM,GAAG,CAChC,CACF,CAEA,SAAS4iC,EAAAA,CAAcxhC,CAAAA,CAA6B,CAClD,GAAI,CAACA,CAAAA,EAAW,OAAOA,CAAAA,EAAY,QAAA,CACjC,OAAO,EAAC,CAGV,IAAM2a,EAAa,CAAC3a,CAAO,EACrByhC,CAAAA,CAASzhC,CAAAA,CACXyhC,EAAO,IAAA,EAAQ,OAAOA,CAAAA,CAAO,IAAA,EAAS,QAAA,EACxC9mB,CAAAA,CAAW,KAAK8mB,CAAAA,CAAO,IAA+B,CAAA,CAEpDA,CAAAA,CAAO,MAAA,EAAU,OAAOA,EAAO,MAAA,EAAW,QAAA,EAC5C9mB,CAAAA,CAAW,IAAA,CAAK8mB,CAAAA,CAAO,MAAiC,EAEtDA,CAAAA,CAAO,SAAA,EAAa,OAAOA,CAAAA,CAAO,SAAA,EAAc,QAAA,EAClD9mB,EAAW,IAAA,CAAK8mB,CAAAA,CAAO,SAAoC,CAAA,CAG7D,IAAA,IAAW5nB,CAAAA,IAAac,EAAY,CAClC,GAAI,KAAA,CAAM,OAAA,CAAQd,CAAS,CAAA,CACzB,OAAOA,CAAAA,CAGT,GAAIA,CAAAA,EAAa,OAAOA,CAAAA,EAAc,QAAA,CACpC,QAAWzzB,CAAAA,IAAO,CAChB,UACA,QAAA,CACA,QAAA,CACA,QACA,WAAA,CACA,UACF,CAAA,CAAG,CACD,IAAMrE,CAAAA,CAAS83B,EAAsCzzB,CAAG,CAAA,CACxD,GAAI,KAAA,CAAM,OAAA,CAAQrE,CAAK,EACrB,OAAOA,CAEX,CAEJ,CAEA,OAAO,EACT,CAEA,SAAS2/C,GAAgB1hC,CAAAA,CAAsC,CAC7D,GAAI,CAACA,CAAAA,EAAW,OAAOA,CAAAA,EAAY,QAAA,CACjC,OAGF,IAAMyhC,CAAAA,CAASzhC,CAAAA,CACf,OACEkhC,EAAAA,CAAgBO,CAAAA,CAAO,QAAQ,GAC/BP,EAAAA,CAAgBO,CAAAA,CAAO,IAAI,CAAA,EAC3BP,EAAAA,CAAgBO,CAAAA,CAAO,OAAO,CAElC,CASO,SAASE,EAAAA,CACd7qC,CAAAA,CACAgT,EAAmB,KAAA,CACnBD,CAAAA,CAAuB,IAAA,CACvB,CACA,OAAOtE,uBAAAA,CAAa,CAClB,QAAA,CAAU,CACR,QAAA,CACA,WAAA,CACA,IAAA,CACAzO,CAAAA,CACA+S,EAAc,cAAA,CAAiB,KAAA,CAC/BC,CACF,CAAA,CACA,OAAA,CAAS,CAAA,CAAQhT,EACjB,SAAA,CAAW,GAAA,CACX,eAAA,CAAiB,IAAA,CACjB,OAAA,CAAS,SAAwC,CAC/C,GAAI,CAACA,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,2CAAsC,CAAA,CAGxD,IAAMnD,CAAAA,CAAW,CAAA,EAAG0N,qBAAAA,CAAc,mBAAA,EAAqB,CAAA,wBAAA,CAAA,CACjD/M,CAAAA,CAAW,MAAM,KAAA,CAAMX,CAAAA,CAAU,CACrC,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,MAAA,CAAQ,kBAAA,CACR,eAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,SAAAmD,CAAAA,CAAU,WAAA,CAAA+S,CAAAA,CAAa,QAAA,CAAAC,CAAS,CAAC,CAC1D,CAAC,CAAA,CAED,GAAI,CAACxV,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CACR,kDAA6CA,CAAAA,CAAS,MAAM,GAC9D,CAAA,CAGF,IAAM0L,CAAAA,CAAW,MAAM1L,CAAAA,CAAS,IAAA,GAC1BvE,CAAAA,CAASyxC,EAAAA,CAAcxhC,CAAO,CAAA,CACjC,GAAA,CAAK3X,CAAAA,EAASi5C,GAAWj5C,CAAI,CAAC,CAAA,CAC9B,MAAA,CAAQA,CAAAA,EAAsC,CAAA,CAAQA,CAAK,CAAA,CAE3D,MAAA,CAAQA,GAAUA,CAAAA,CAAK,KAAA,GAAqB,KAAK,CAAA,CAEpD,GAAI,CAAC0H,CAAAA,CAAO,MAAA,CACV,MAAM,IAAI,KAAA,CACR,4DACF,CAAA,CAGF,OAAO,CACL,QAAA,CAAU2xC,GAAgB1hC,CAAO,CAAA,EAAKlJ,CAAAA,CACtC,QAAA,CAAUoqC,EAAAA,CACPlhC,CAAAA,EAAiD,cACjDA,CAAAA,EAAiD,QACpD,CAAA,EAAG,WAAA,EAAY,CACf,OAAA,CAASjQ,CACX,CACF,CACF,CAAC,CACH,CCjOO,SAAS6xC,EAAAA,CAAoC9qC,CAAAA,CAAkB,CACpE,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,MAAA,CAAQ,eAAgBzO,CAAQ,CAAA,CACrD,UAAW,GAAA,CACX,eAAA,CAAiB,IACjB,OAAA,CAAS,SAAY,CACnB,MAAM4M,CAAAA,EAAe,CAAE,cAAc4B,EAAAA,EAA6B,CAAA,CAClE,MAAM5B,CAAAA,EAAe,CAAE,cACrBoI,CAAAA,CAA2BhV,CAAQ,CACrC,CAAA,CAEA,IAAM20B,CAAAA,CAAe/nB,GAAe,CAAE,YAAA,CACpC4B,IAA4B,CAAE,QAChC,EACMwjB,CAAAA,CAAcplB,CAAAA,EAAe,CAAE,YAAA,CACnCoI,CAAAA,CAA2BhV,CAAQ,EAAE,QACvC,CAAA,CAEM+qC,CAAAA,CAAgB,MAAM/uC,CAAAA,CAAQ,0BAAA,CAA4B,EAAE,CAAA,CAC/D,KAAA,CAAM,IAAG,CAAA,CAAY,CAAA,CAElBgvC,EAAc,MAAA,CAAO,UAAA,CAAWD,GAAc,MAAA,EAAU,EAAE,EAEhE,GAAI,CAAC/Y,CAAAA,CACH,OAAO,CACL,IAAA,CAAM,OACN,KAAA,CAAO,MAAA,CACP,KAAA,CAAO,MAAA,CAAO,QAAA,CAASgZ,CAAW,EAC9BA,CAAAA,CACArW,CAAAA,CACEA,CAAAA,CAAa,IAAA,CAAOA,CAAAA,CAAa,KAAA,CACjC,EACN,cAAA,CAAgB,CAClB,EAGF,IAAMsW,CAAAA,CAAgBr9B,EAAWokB,CAAAA,CAAY,OAAO,CAAA,CAAE,MAAA,CAChDkZ,CAAAA,CAAiBt9B,CAAAA,CAAWokB,EAAY,eAAe,CAAA,CAAE,MAAA,CAE/D,OAAO,CACL,IAAA,CAAM,OACN,KAAA,CAAO,MAAA,CACP,KAAA,CAAO,MAAA,CAAO,QAAA,CAASgZ,CAAW,EAC9BA,CAAAA,CACArW,CAAAA,CACEA,EAAa,IAAA,CAAOA,CAAAA,CAAa,MACjC,CAAA,CACN,cAAA,CAAgBsW,CAAAA,CAAgBC,CAAAA,CAChC,KAAA,CAAO,CACL,CACE,IAAA,CAAM,SAAA,CACN,OAAA,CAASD,CACX,CAAA,CACA,CACE,KAAM,SAAA,CACN,OAAA,CAASC,CACX,CACF,CACF,CACF,CACF,CAAC,CACH,CC9DO,SAASC,EAAAA,CAAmCnrC,CAAAA,CAAkB,CACnE,OAAOyO,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,KAAA,CAAO,cAAA,CAAgBzO,CAAQ,CAAA,CACpD,SAAA,CAAW,GAAA,CACX,eAAA,CAAiB,GAAA,CACjB,OAAA,CAAS,SAAY,CACnB,MAAM4M,GAAe,CAAE,aAAA,CAAc4B,IAA6B,CAAA,CAClE,MAAM5B,CAAAA,EAAe,CAAE,aAAA,CACrBoI,EAA2BhV,CAAQ,CACrC,CAAA,CAEA,IAAMgyB,CAAAA,CAAcplB,CAAAA,GAAiB,YAAA,CACnCoI,CAAAA,CAA2BhV,CAAQ,CAAA,CAAE,QACvC,CAAA,CACM20B,EAAe/nB,CAAAA,EAAe,CAAE,YAAA,CACpC4B,EAAAA,EAA4B,CAAE,QAChC,EAEM48B,CAAAA,CAAQ,CAAA,CAEd,OAAKpZ,CAAAA,CASE,CACL,IAAA,CAAM,MACN,KAAA,CAAO,aAAA,CACP,KAAA,CAAAoZ,CAAAA,CACA,cAAA,CACEx9B,CAAAA,CAAWokB,EAAY,WAAW,CAAA,CAAE,MAAA,CACpCpkB,CAAAA,CAAWokB,CAAAA,EAAa,mBAAmB,EAAE,MAAA,CAC/C,GAAA,CAAA,CAAA,CAAO2C,GAAc,eAAA,EAAmB,CAAA,EAAK,KAAK,OAAA,CAAQ,CAAC,CAAA,CAC3D,KAAA,CAAO,CACL,CACE,KAAM,SAAA,CACN,OAAA,CAAS/mB,CAAAA,CAAWokB,CAAAA,CAAY,WAAW,CAAA,CAAE,MAC/C,CAAA,CACA,CACE,IAAA,CAAM,SAAA,CACN,OAAA,CAASpkB,CAAAA,CAAWokB,EAAY,mBAAmB,CAAA,CAAE,MACvD,CACF,CACF,EA1BS,CACL,IAAA,CAAM,KAAA,CACN,KAAA,CAAO,aAAA,CACP,KAAA,CAAAoZ,EACA,cAAA,CAAgB,CAClB,CAsBJ,CACF,CAAC,CACH,CCjDA,SAASC,EAAAA,CAAO1W,EAA4B,CAU1C,IAAI2W,EACF,GAAA,CAAA,CALgB3W,CAAAA,CAAa,UACC,GAAA,EACS,IAAA,CAGK,GAAA,CAE1C2W,CAAAA,CAAuB,GAAA,GACzBA,CAAAA,CAAuB,KAGzB,IAAMr7B,CAAAA,CAAuB0kB,CAAAA,CAAa,oBAAA,CAAuB,GAAA,CAC3D3kB,CAAAA,CAAgB2kB,EAAa,aAAA,CAC7B4W,CAAAA,CAAoB5W,CAAAA,CAAa,gBAAA,CAEvC,OAAA,CACG3kB,CAAAA,CAAgBs7B,EAAuBr7B,CAAAA,CACxCs7B,CAAAA,EACA,QAAQ,CAAC,CACb,CAEO,SAASC,EAAAA,CAAyCxrC,CAAAA,CAAkB,CACzE,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,YAAA,CAAc,cAAA,CAAgBzO,CAAQ,EAC3D,SAAA,CAAW,GAAA,CACX,eAAA,CAAiB,GAAA,CACjB,OAAA,CAAS,SAAY,CACnB,MAAM4M,CAAAA,GAAiB,aAAA,CAAc4B,EAAAA,EAA6B,CAAA,CAClE,MAAM5B,CAAAA,EAAe,CAAE,aAAA,CACrBoI,CAAAA,CAA2BhV,CAAQ,CACrC,CAAA,CAEA,IAAM20B,CAAAA,CAAe/nB,CAAAA,EAAe,CAAE,aACpC4B,EAAAA,EAA4B,CAAE,QAChC,CAAA,CACMwjB,CAAAA,CAAcplB,CAAAA,GAAiB,YAAA,CACnCoI,CAAAA,CAA2BhV,CAAQ,CAAA,CAAE,QACvC,EAEA,GAAI,CAAC20B,CAAAA,EAAgB,CAAC3C,CAAAA,CACpB,OAAO,CACL,IAAA,CAAM,IAAA,CACN,KAAA,CAAO,YAAA,CACP,KAAA,CAAO,CAAA,CACP,eAAgB,CAClB,CAAA,CAGF,IAAM+Y,CAAAA,CAAgB,MAAM/uC,CAAAA,CAAQ,2BAA4B,EAAE,EAC/D,KAAA,CAAM,IAAG,EAAY,CAAA,CAElBgvC,CAAAA,CAAc,MAAA,CAAO,UAAA,CAAWD,CAAAA,EAAc,MAAA,EAAU,EAAE,CAAA,CAC1DK,CAAAA,CAAQ,MAAA,CAAO,QAAA,CAASJ,CAAW,CAAA,CACrCA,EACArW,CAAAA,CAAa,IAAA,CAAOA,CAAAA,CAAa,KAAA,CAE/B7L,CAAAA,CAAgBlb,CAAAA,CAAWokB,EAAY,cAAc,CAAA,CAAE,MAAA,CACvDyZ,CAAAA,CAAiB79B,CAAAA,CACrBokB,CAAAA,CAAY,wBACd,CAAA,CAAE,MAAA,CACI0Z,CAAAA,CAAgB99B,CAAAA,CACpBokB,CAAAA,CAAY,uBACd,EAAE,MAAA,CACI2Z,CAAAA,CAAoB/9B,CAAAA,CACxBokB,CAAAA,CAAY,qBACd,CAAA,CAAE,OACI4Z,CAAAA,CAA2B,IAAA,CAAK,GAAA,CAAA,CACnC,MAAA,CAAO5Z,CAAAA,CAAY,WAAW,EAAI,MAAA,CAAOA,CAAAA,CAAY,SAAS,CAAA,EAC7D,GAAA,CACF,CACF,CAAA,CACM6Z,CAAAA,CAAuBv9B,EAAAA,CAC3B0jB,CAAAA,CAAY,uBACd,CAAA,CAEI,EADA,IAAA,CAAK,GAAA,CAAI2Z,CAAAA,CAAmBC,CAAwB,CAAA,CAGlDE,CAAAA,CAAY,CAAC19B,EAAAA,CACjB0a,CAAAA,CACA6L,CAAAA,CAAa,aACf,CAAA,CAAE,OAAA,CAAQ,CAAC,CAAA,CACLoX,CAAAA,CAAwB,CAAC39B,EAAAA,CAC7Bq9B,CAAAA,CACA9W,EAAa,aACf,CAAA,CAAE,OAAA,CAAQ,CAAC,CAAA,CACLqX,CAAAA,CAAwB,CAAC59B,EAAAA,CAC7Bs9B,CAAAA,CACA/W,CAAAA,CAAa,aACf,CAAA,CAAE,OAAA,CAAQ,CAAC,CAAA,CACLsX,CAAAA,CAAqB,CAAC79B,EAAAA,CAC1Bw9B,CAAAA,CACAjX,CAAAA,CAAa,aACf,CAAA,CAAE,OAAA,CAAQ,CAAC,CAAA,CACLuX,CAAAA,CAAkB,CAAC99B,EAAAA,CACvBy9B,CAAAA,CACAlX,CAAAA,CAAa,aACf,CAAA,CAAE,OAAA,CAAQ,CAAC,CAAA,CACLwX,CAAAA,CAAe,IAAA,CAAK,GAAA,CAAIL,CAAAA,CAAYG,CAAAA,CAAoB,CAAC,CAAA,CACzDG,CAAAA,CAAc,IAAA,CAAK,GAAA,CAAIN,CAAAA,CAAYC,CAAAA,CAAuB,CAAC,CAAA,CAEjE,OAAO,CACL,IAAA,CAAM,IAAA,CACN,MAAO,YAAA,CACP,KAAA,CAAAX,CAAAA,CACA,cAAA,CAAgB,CAACe,CAAAA,CAAa,QAAQ,CAAC,CAAA,CACvC,GAAA,CAAKd,EAAAA,CAAO1W,CAAY,CAAA,CACxB,MAAO,CACL,CACE,IAAA,CAAM,YAAA,CACN,OAAA,CAASmX,CACX,EACA,CACE,IAAA,CAAM,YACN,OAAA,CAAS,CAACM,EAAY,OAAA,CAAQ,CAAC,CACjC,CAAA,CACA,CACE,IAAA,CAAM,uBACN,OAAA,CAASL,CACX,CAAA,CACA,CACE,IAAA,CAAM,sBAAA,CACN,QAASC,CACX,CAAA,CACA,GAAIC,CAAAA,CAAqB,CAAA,CACrB,CACE,CACE,IAAA,CAAM,oBAAA,CACN,QAAS,CAACA,CAAAA,CAAmB,QAAQ,CAAC,CACxC,CACF,CAAA,CACA,EAAC,CACL,GAAIC,CAAAA,CAAkB,CAAA,EAAKA,CAAAA,GAAoBD,CAAAA,CAC3C,CACE,CACE,KAAM,iBAAA,CACN,OAAA,CAAS,CAACC,CAAAA,CAAgB,OAAA,CAAQ,CAAC,CACrC,CACF,CAAA,CACA,EACN,CACF,CACF,CACF,CAAC,CACH,CC5JA,IAAM7mC,CAAAA,CAAMpB,EAAAA,CAAM,UAAA,CAELooC,EAAAA,CAGT,CACF,SAAA,CAAW,CACThnC,CAAAA,CAAI,QAAA,CACJA,CAAAA,CAAI,mBAAA,CACJA,EAAI,qBAAA,CACJA,CAAAA,CAAI,4BAAA,CACJA,CAAAA,CAAI,kBAAA,CACJA,CAAAA,CAAI,wBACJA,CAAAA,CAAI,eAAA,CACJA,CAAAA,CAAI,uBACN,CAAA,CACA,eAAA,CAAiB,CACfA,CAAAA,CAAI,oBAAA,CACJA,CAAAA,CAAI,UAAA,CACJA,CAAAA,CAAI,mCAAA,CACJA,EAAI,mBAAA,CACJA,CAAAA,CAAI,kBAAA,CACJA,CAAAA,CAAI,kBACN,CAAA,CACA,UAAW,CAACA,CAAAA,CAAI,QAAQ,CAAA,CACxB,kBAAA,CAAoB,CAClBA,CAAAA,CAAI,yBAAA,CACJA,CAAAA,CAAI,gBAAA,CACJA,CAAAA,CAAI,mBAAA,CACJA,EAAI,0BAAA,CACJA,CAAAA,CAAI,qBAAA,CACJA,CAAAA,CAAI,qBAAA,CACJA,CAAAA,CAAI,sBACJA,CAAAA,CAAI,uBACN,CAAA,CACA,OAAA,CAAS,CACPA,CAAAA,CAAI,cACJA,CAAAA,CAAI,eAAA,CACJA,EAAI,eAAA,CACJA,CAAAA,CAAI,qBACJA,CAAAA,CAAI,yBAAA,CACJA,CAAAA,CAAI,gBAAA,CACJA,CAAAA,CAAI,YACN,EACA,EAAA,CAAI,EACN,EC5CO,IAAMinC,EAAAA,CAAsB,OAAO,IAAA,CACxCroC,EAAAA,CAAM,UACR,ECFA,IAAMsoC,EAAAA,CAAkBtoC,GAAM,UAAA,CAKjBuoC,EAAAA,CAAwBD,GAExBE,EAAAA,CACX,MAAA,CAAO,QAAQF,EAAe,CAAA,CAAE,MAAA,CAAO,CAACle,CAAAA,CAAK,CAACzc,EAAMtgB,CAAE,CAAA,IACpD+8B,CAAAA,CAAI/8B,CAAE,CAAA,CAAIsgB,CAAAA,CACHyc,GACN,EAAuC,ECE5C,IAAMke,EAAAA,CAAkBtoC,EAAAA,CAAM,WAE9B,SAASyoC,EAAAA,CAAoBzhD,EAA2C,CACtE,OAAO,OAAO,SAAA,CAAU,cAAA,CAAe,IAAA,CAAKshD,EAAAA,CAAiBthD,CAAK,CACpE,CAEO,SAAS0hD,EAAAA,CAA4B/mB,CAAAA,CAG1C,CACA,IAAMgnB,CAAAA,CAAwC,MAAM,OAAA,CAAQhnB,CAAO,CAAA,CAC/DA,CAAAA,CACA,CAACA,CAAO,EAENinB,CAAAA,CAASD,CAAAA,CAAU,SAAS,EAAwB,CAAA,CAEpDE,EAAe,KAAA,CAAM,IAAA,CACzB,IAAI,GAAA,CACFF,CAAAA,CAAU,MAAA,CACP3hD,GAECA,CAAAA,EAAU,IAAA,EACVA,CAAAA,GAAW,EACf,CACF,CACF,EAEMgoB,CAAAA,CACJ45B,CAAAA,EAAUC,CAAAA,CAAa,MAAA,GAAW,CAAA,CAC9B,KAAA,CACAA,EACG,GAAA,CAAK7hD,CAAAA,EAAUA,EAAM,QAAA,EAAU,EAC/B,IAAA,EAAK,CACL,IAAA,CAAK,GAAG,CAAA,CAEX8hD,CAAAA,CAAe,IAAI,GAAA,CAEpBF,CAAAA,EACHC,CAAAA,CAAa,OAAA,CAAS7hD,CAAAA,EAAU,CAC9B,GAAIA,CAAAA,IAASohD,EAAAA,CAA+B,CAC1CA,EAAAA,CAA8BphD,CAA2B,CAAA,CAAE,QACxDqG,CAAAA,EAAOy7C,CAAAA,CAAa,IAAIz7C,CAAE,CAC7B,EACA,MACF,CAEIo7C,EAAAA,CAAoBzhD,CAAK,CAAA,EAC3B8hD,CAAAA,CAAa,IAAIR,EAAAA,CAAgBthD,CAAK,CAAC,EAE3C,CAAC,CAAA,CAGH,IAAM+hD,CAAAA,CAAa5oC,EAAAA,CAAkB,KAAA,CAAM,IAAA,CAAK2oC,CAAY,CAAC,EAE7D,OAAO,CACL,SAAA,CAAA95B,CAAAA,CACA,UAAA,CAAA+5B,CACF,CACF,CAWO,SAASC,EAAAA,CACdrnB,CAAAA,CACa,CACb,IAAMgnB,EAAY,KAAA,CAAM,OAAA,CAAQhnB,CAAO,CAAA,CAAIA,CAAAA,CAAU,CAACA,CAAO,CAAA,CAC7D,OAAO,IAAI,GAAA,CACTgnB,CAAAA,CAAU,MAAA,CACP3hD,GACwBA,CAAAA,EAAU,IAAA,EAAQA,IAAW,EACxD,CACF,CACF,CAYO,SAASiiD,EAAAA,CACd3zB,CAAAA,CACoB,CACpB,GAAI,CAACA,CAAAA,EAAU,MAAA,CACb,OAGF,IAAM4zB,CAAAA,CAAS,MAAA,CAAO5zB,EAAS,CAAC,CAAA,EAAG,GAAA,EAAO,CAAC,CAAA,CAC3C,OAAO,OAAO,QAAA,CAAS4zB,CAAM,GAAKA,CAAAA,CAAS,CAAA,CAAIA,EAAS,CAAA,CAAI,MAC9D,CAcO,SAASC,EAAAA,CACd/zB,CAAAA,CACArtB,EACQ,CACR,OAAI,CAAC,MAAA,CAAO,QAAA,CAASqtB,CAAS,GAAKA,CAAAA,CAAY,CAAA,CACtCrtB,CAAAA,CAGF,IAAA,CAAK,GAAA,CAAIA,CAAAA,CAAOqtB,EAAY,CAAC,CACtC,CAEA,SAASjV,EAAAA,CAAkBM,EAA6B,CACtD,IAAIE,CAAAA,CAAM,EAAA,CACNC,CAAAA,CAAO,EAAA,CAEX,OAAAH,CAAAA,CAAkB,OAAA,CAAStR,CAAAA,EAAc,CACnCA,CAAAA,CAAY,EAAA,CACdwR,GAAO,EAAA,EAAM,MAAA,CAAOxR,CAAS,CAAA,CAE7ByR,CAAAA,EAAQ,EAAA,EAAM,OAAOzR,CAAAA,CAAY,EAAE,EAEvC,CAAC,CAAA,CAEM,CACLwR,CAAAA,GAAQ,EAAA,CAAKA,CAAAA,CAAI,QAAA,EAAS,CAAI,IAAA,CAC9BC,IAAS,EAAA,CAAKA,CAAAA,CAAK,QAAA,EAAS,CAAI,IAClC,CACF,CAEO,SAASwoC,EAAAA,CACdrtC,CAAAA,CACAhU,CAAAA,CAAQ,EAAA,CACR45B,CAAAA,CAA+B,EAAC,CAChC,CACA,GAAM,CAAE,UAAA,CAAAonB,EAAY,SAAA,CAAA/5B,CAAU,CAAA,CAAI05B,EAAAA,CAA4B/mB,CAAO,CAAA,CAC/D0nB,EAAsBL,EAAAA,CAA2BrnB,CAAO,CAAA,CAE9D,OAAOxM,+BAAAA,CAAwC,CAC7C,SAAU,CAAC,QAAA,CAAU,MAAA,CAAQ,cAAA,CAAgBpZ,CAAAA,CAAUhU,CAAAA,CAAOinB,CAAS,CAAA,CACvE,gBAAA,CAAkB,GAClB,gBAAA,CAAkBi6B,EAAAA,CAElB,QAAS,MAAO,CAAE,SAAA,CAAA7zB,CAAU,CAAA,GAAA,CACT,MAAMrd,EACrB,mCAAA,CACA,CACEgE,CAAAA,CACAqZ,CAAAA,CACA+zB,EAAAA,CAA2B,MAAA,CAAO/zB,CAAS,CAAA,CAAGrtB,CAAK,CAAA,CACnD,GAAGghD,CACL,CACF,GAEgB,GAAA,CACb31B,CAAAA,GACE,CACC,GAAA,CAAKA,CAAAA,CAAE,CAAC,CAAA,CACR,IAAA,CAAMA,CAAAA,CAAE,CAAC,CAAA,CAAE,EAAA,CAAG,CAAC,CAAA,CACf,SAAA,CAAWA,CAAAA,CAAE,CAAC,CAAA,CAAE,SAAA,CAChB,OAAQA,CAAAA,CAAE,CAAC,CAAA,CAAE,MAAA,CACb,GAAGA,CAAAA,CAAE,CAAC,CAAA,CAAE,EAAA,CAAG,CAAC,CACd,CAAA,CACJ,CAAA,CAEF,OAAQ,CAAC,CAAE,KAAA,CAAAk2B,CAAAA,CAAO,UAAA,CAAAC,CAAW,KAAO,CAClC,UAAA,CAAAA,CAAAA,CACA,KAAA,CAAOD,CAAAA,CAAM,GAAA,CAAK96B,GAChBA,CAAAA,CAAK,MAAA,CAAQlhB,CAAAA,EAAS,CACpB,OAAQA,CAAAA,CAAK,MACX,KAAK,gBACL,KAAK,2BAAA,CAIH,OAHmBqc,CAAAA,CAChBrc,CAAAA,CAAsB,WACzB,CAAA,CACkB,MAAA,CAAS,CAAA,CAC7B,KAAK,UAAA,CACL,KAAK,qBAAA,CACL,KAAK,qBAAA,CACL,KAAK,qBACH,OAAOqc,CAAAA,CAAWrc,CAAAA,CAAK,MAAM,CAAA,CAAE,MAAA,GAAW,OAE5C,KAAK,uBAAA,CAIL,KAAK,4BAAA,CACH,OAAOqc,EAAYrc,CAAAA,CAAa,MAAM,CAAA,CAAE,MAAA,GAAW,MAAA,CAErD,KAAK,0BACH,IAAME,CAAAA,CAAQmc,CAAAA,CAAWrc,CAAAA,CAAK,MAAM,CAAA,CACpC,OAAO,CAAC,MAAM,CAAA,CAAE,QAAA,CAASE,CAAAA,CAAM,MAAM,EAEvC,KAAK,sBAAA,CAIH,OAHmBmc,CAAAA,CAChBrc,CAAAA,CAA4B,WAC/B,CAAA,CACkB,MAAA,CAAS,CAAA,CAE7B,KAAK,iBAAA,CACL,KAAK,+BACL,KAAK,YAAA,CACL,KAAK,oBAAA,CACL,KAAK,oBAAA,CACL,KAAK,sBAAA,CACL,KAAK,qCAAA,CACH,OAAO,KAAA,CAET,KAAK,sBACH,OAAO,KAAA,CACT,QAOE,OAAO+7C,CAAAA,CAAoB,IAAI/7C,CAAAA,CAAK,IAAI,CAC5C,CACF,CAAC,CACH,CACF,CAAA,CACF,CAAC,CACH,CC7OO,SAASk8C,EAAAA,CACdztC,CAAAA,CACAhU,CAAAA,CAAQ,EAAA,CACR45B,EAA+B,EAAC,CAChC,CACA,GAAM,CAAE,UAAA3S,CAAU,CAAA,CAAI05B,EAAAA,CAA4B/mB,CAAO,CAAA,CACnD0nB,CAAAA,CAAsBL,GAA2BrnB,CAAO,CAAA,CAE9D,OAAOxM,+BAAAA,CAAwC,CAC7C,GAAGi0B,GAAqCrtC,CAAAA,CAAUhU,CAAAA,CAAO45B,CAAO,CAAA,CAChE,QAAA,CAAU,CAAC,SAAU,KAAA,CAAO,cAAA,CAAgB5lB,EAAUhU,CAAAA,CAAOinB,CAAS,EACtE,MAAA,CAAQ,CAAC,CAAE,KAAA,CAAAs6B,CAAAA,CAAO,UAAA,CAAAC,CAAW,CAAA,IAAO,CAClC,UAAA,CAAAA,CAAAA,CACA,KAAA,CAAOD,CAAAA,CAAM,IAAK96B,CAAAA,EAChBA,CAAAA,CAAK,MAAA,CAAQlhB,CAAAA,EAAS,CACpB,OAAQA,EAAK,IAAA,EACX,KAAK,eAAA,CACL,KAAK,4BAIH,OAHkBqc,CAAAA,CACfrc,CAAAA,CAAsB,UACzB,CAAA,CACiB,MAAA,CAAS,EAE5B,KAAK,sBAAA,CAIH,OAHkBqc,CAAAA,CACfrc,CAAAA,CAA4B,UAC/B,EACiB,MAAA,CAAS,CAAA,CAE5B,KAAK,UAAA,CACL,KAAK,qBAAA,CACL,KAAK,qBAAA,CACL,KAAK,oBAAA,CACH,OAAOqc,CAAAA,CAAWrc,CAAAA,CAAK,MAAM,CAAA,CAAE,MAAA,GAAW,KAAA,CAE5C,KAAK,uBAAA,CAIL,KAAK,6BACH,OAAOqc,CAAAA,CAAYrc,CAAAA,CAAa,MAAM,CAAA,CAAE,MAAA,GAAW,MAErD,KAAK,yBAAA,CACH,IAAME,CAAAA,CAAQmc,CAAAA,CAAWrc,CAAAA,CAAK,MAAM,CAAA,CACpC,OAAO,CAAC,KAAK,CAAA,CAAE,SAASE,CAAAA,CAAM,MAAM,CAAA,CAEtC,KAAK,8BAAA,CACL,KAAK,aACL,KAAK,oBAAA,CACL,KAAK,oBAAA,CACL,KAAK,sBAAA,CACL,KAAK,qCAAA,CACL,KAAK,cAAA,CACL,KAAK,UAAA,CACH,OAAO,MAET,KAAK,qBAAA,CACH,OAAO,KAAA,CACT,QAIE,OAAO67C,CAAAA,CAAoB,GAAA,CAAI/7C,CAAAA,CAAK,IAAI,CAC5C,CACF,CAAC,CACH,CACF,CAAA,CACF,CAAC,CACH,CCtEO,SAASm8C,EAAAA,CACd1tC,CAAAA,CACAhU,EAAQ,EAAA,CACR45B,CAAAA,CAA+B,EAAC,CAChC,CACA,GAAM,CAAE,SAAA,CAAA3S,CAAU,CAAA,CAAI05B,EAAAA,CAA4B/mB,CAAO,EAEnD+nB,CAAAA,CAAyB,IAAI,GAAA,CACjC,KAAA,CAAM,OAAA,CAAQ/nB,CAAO,EAAIA,CAAAA,CAAU,CAACA,CAAO,CAC7C,CAAA,CACMgoB,CAAAA,CACJD,EAAuB,GAAA,CAAI,EAAS,GAAKA,CAAAA,CAAuB,IAAA,GAAS,EAE3E,OAAOv0B,+BAAAA,CAAwC,CAC7C,GAAGi0B,EAAAA,CAAqCrtC,CAAAA,CAAUhU,EAAO45B,CAAO,CAAA,CAChE,QAAA,CAAU,CACR,QAAA,CACA,YAAA,CACA,eACA5lB,CAAAA,CACAhU,CAAAA,CACAinB,CACF,CAAA,CACA,MAAA,CAAQ,CAAC,CAAE,KAAA,CAAAs6B,CAAAA,CAAO,WAAAC,CAAW,CAAA,IAAO,CAClC,UAAA,CAAAA,CAAAA,CACA,KAAA,CAAOD,CAAAA,CAAM,GAAA,CAAK96B,CAAAA,EAChBA,EAAK,MAAA,CAAQlhB,CAAAA,EAAS,CACpB,OAAQA,CAAAA,CAAK,IAAA,EACX,KAAK,eAAA,CACL,KAAK,2BAAA,CAIH,OAHsBqc,CAAAA,CACnBrc,EAAsB,cACzB,CAAA,CACqB,OAAS,CAAA,CAEhC,KAAK,uBAIH,OAHoBqc,CAAAA,CACjBrc,CAAAA,CAA4B,YAC/B,CAAA,CACmB,MAAA,CAAS,EAE9B,KAAK,qBAAA,CACH,OAAO,KAAA,CACT,KAAK,UAAA,CACL,KAAK,qBAAA,CACL,KAAK,oBAAA,CACH,OAAO,CAAC,OAAA,CAAS,IAAI,CAAA,CAAE,QAAA,CAASqc,EAAWrc,CAAAA,CAAK,MAAM,EAAE,MAAM,CAAA,CAEhE,KAAK,yBAAA,CACH,IAAME,CAAAA,CAAQmc,EAAWrc,CAAAA,CAAK,MAAM,CAAA,CACpC,OAAO,CAAC,OAAA,CAAS,IAAI,CAAA,CAAE,QAAA,CAASE,CAAAA,CAAM,MAAM,CAAA,CAE9C,KAAK,kBACL,KAAK,kBAAA,CACL,KAAK,yBAAA,CACL,KAAK,uBAAA,CACL,KAAK,2BAAA,CACL,KAAK,iBAAA,CACL,KAAK,4BAAA,CACH,OAAO,MACT,QACE,OAAOm8C,CAAAA,EAAgBD,CAAAA,CAAuB,GAAA,CAAIp8C,CAAAA,CAAK,IAAI,CAC/D,CACF,CAAC,CACH,CACF,CAAA,CACF,CAAC,CACH,CC5EA,SAASs8C,EAAAA,CAAWtjB,CAAAA,CAAoB,CACtC,IAAMujB,CAAAA,CAAOpgD,GAAcA,CAAAA,CAAE,QAAA,EAAS,CAAE,QAAA,CAAS,CAAA,CAAG,GAAG,EACvD,OAAO,CAAA,EAAG68B,CAAAA,CAAK,WAAA,EAAa,CAAA,CAAA,EAAIujB,EAAIvjB,CAAAA,CAAK,QAAA,GAAa,CAAC,CAAC,IAAIujB,CAAAA,CAAIvjB,CAAAA,CAAK,OAAA,EAAS,CAAC,CAAA,CAAA,EAAIujB,EAAIvjB,CAAAA,CAAK,QAAA,EAAU,CAAC,CAAA,CAAA,EAAIujB,CAAAA,CAAIvjB,EAAK,UAAA,EAAY,CAAC,CAAA,CAAA,EAAIujB,CAAAA,CAAIvjB,CAAAA,CAAK,YAAY,CAAC,EAC7J,CAEA,SAASwjB,GAAgBxjB,CAAAA,CAAYpX,CAAAA,CAAuB,CAC1D,OAAO,IAAI,IAAA,CAAKoX,EAAK,OAAA,EAAQ,CAAIpX,CAAAA,CAAU,GAAI,CACjD,CAEO,SAAS66B,EAAAA,CAA+B96B,CAAAA,CAAgB,KAAA,CAAQ,CACrE,OAAOkG,+BAAAA,CAAqB,CAC1B,QAAA,CAAU,CAAC,QAAA,CAAU,MAAA,CAAQ,SAAA,CAAWlG,CAAa,EACrD,OAAA,CAAS,MAAO,CAAE,SAAA,CAAW,CAACE,CAAAA,CAAWC,CAAO,CAAE,CAAA,GAAA,CACZ,MAAMrX,CAAAA,CAAQ,kCAAA,CAAoC,CAACkX,EAAe26B,EAAAA,CAAWz6B,CAAS,CAAA,CAAGy6B,EAAAA,CAAWx6B,CAAO,CAAC,CAChJ,CAAA,EAEe,GAAA,CAAI,CAAC,CAAE,IAAA,CAAA46B,EAAM,QAAA,CAAAC,CAAAA,CAAU,IAAA,CAAAC,CAAK,CAAA,IAAO,CAChD,MAAOD,CAAAA,CAAS,KAAA,CAAQD,CAAAA,CAAK,KAAA,CAC7B,IAAA,CAAMC,CAAAA,CAAS,KAAOD,CAAAA,CAAK,IAAA,CAC3B,GAAA,CAAKC,CAAAA,CAAS,GAAA,CAAMD,CAAAA,CAAK,IACzB,IAAA,CAAMC,CAAAA,CAAS,KAAOD,CAAAA,CAAK,IAAA,CAC3B,OAAQA,CAAAA,CAAK,MAAA,CACb,IAAA,CAAM,IAAI,IAAA,CAAKE,CAAI,CACrB,CAAA,CAAE,CAAA,CAEJ,gBAAA,CAAkB,CAChBJ,EAAAA,CAAgB,IAAI,KAAQ,IAAA,CAAK,GAAA,CAAI,GAAA,CAAM76B,CAAAA,CAAe,KAAM,CAAC,EACjE,IAAI,IACN,EACA,gBAAA,CAAkB,CAACk7B,EAAGC,CAAAA,CAAI,CAACC,CAAa,CAAA,GAAM,CAC5CP,EAAAA,CAAgBO,EAAe,IAAA,CAAK,GAAA,CAAI,GAAA,CAAMp7B,CAAAA,CAAe,KAAM,CAAC,EACpE66B,EAAAA,CAAgBO,CAAAA,CAAep7B,CAAa,CAC9C,CACF,CAAC,CACH,CClCO,SAASq7B,GACdvuC,CAAAA,CACA,CACA,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,MAAA,CAAQ,mBAAA,CAAqBzO,CAAQ,CAAA,CAC1D,OAAA,CAAS,IACPhE,CAAAA,CAAQ,mCAAA,CAAqC,CAC3CgE,CAAAA,CACA,UACF,CAAC,EACH,OAAA,CAAS,CAAC,CAACA,CACb,CAAC,CACH,CCZO,SAASwuC,GACdxuC,CAAAA,CACAhU,CAAAA,CAAQ,EAAA,CACR,CACA,OAAOyiB,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,YAAA,CAAc,WAAA,CAAazO,CAAQ,EACxD,OAAA,CAAS,CAAC,CAACA,CAAAA,CACX,OAAA,CAAS,IACPhE,CAAAA,CAAQ,uCAAA,CAAyC,CAC/CgE,CAAAA,CACA,EAAA,CACAhU,CACF,CAAC,CACL,CAAC,CACH,CCPO,SAASyiD,EAAAA,CAAoCzuC,CAAAA,CAAkB,CACpE,OAAOyO,wBAAa,CAClB,QAAA,CAAUC,EAAU,MAAA,CAAO,oBAAA,CAAqB1O,CAAQ,CAAA,CACxD,OAAA,CAAS,CAAC,CAACA,CAAAA,CACX,OAAA,CAAS,SACPiqC,EAAAA,CACEjqC,CAAAA,CAGA,MAAM4M,CAAAA,EAAe,CAAE,UAAA,CAAW,CAChC,GAAGw8B,EAAAA,CAAkCppC,CAAQ,CAAA,CAC7C,SAAA,CAAW,GACb,CAAC,CACH,CACJ,CAAC,CACH,CCjBO,SAAS0uC,EAAAA,CAAyB1iD,CAAAA,CAAQ,IAAK,CACpD,OAAOyiB,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,SAAU,YAAA,CAAcziB,CAAK,CAAA,CACxC,OAAA,CAAS,IACPgQ,CAAAA,CAAQ,+BAAgC,CACtChQ,CACF,CAAC,CACL,CAAC,CACH,CCVO,SAAS2iD,IAAkC,CAChD,OAAOlgC,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,SAAU,YAAY,CAAA,CACjC,OAAA,CAAS,IACPzS,CAAAA,CAAQ,0BAAA,CAA4B,EAAE,CAC1C,CAAC,CACH,CCFO,SAAS4yC,EAAAA,CACdz7B,CAAAA,CACAC,EACAC,CAAAA,CACA,CACA,IAAMw6B,CAAAA,CAActjB,CAAAA,EACXA,CAAAA,CAAK,aAAY,CAAE,OAAA,CAAQ,WAAA,CAAa,EAAE,CAAA,CAGnD,OAAO9b,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,SAAA,CAAW0E,EAASC,CAAAA,CAAU,OAAA,EAAQ,CAAGC,CAAAA,CAAQ,OAAA,EAAS,EAC/E,OAAA,CAAS,IACPrX,CAAAA,CAAQ,kCAAA,CAAoC,CAC1CmX,CAAAA,CACA06B,EAAWz6B,CAAS,CAAA,CACpBy6B,CAAAA,CAAWx6B,CAAO,CACpB,CAAC,CACL,CAAC,CACH,CCtBO,SAASw7B,EAAAA,EAA8B,CAC5C,OAAOpgC,uBAAAA,CAAa,CAClB,SAAU,CAAC,QAAA,CAAU,gBAAgB,CAAA,CACrC,OAAA,CAAS,SAAY,CAEnB,IAAM6G,CAAAA,CAAS,MAAMtZ,CAAAA,CAAQ,0BAAA,CAA4B,EAAE,CAAA,CAGrDrE,CAAAA,CAAM,IAAI,IAAA,CACVm3C,CAAAA,CAAY,IAAI,IAAA,CAAKn3C,CAAAA,CAAI,OAAA,EAAQ,CAAI,KAAQ,CAAA,CAE7Ck2C,EAActjB,CAAAA,EACXA,CAAAA,CAAK,WAAA,EAAY,CAAE,OAAA,CAAQ,WAAA,CAAa,EAAE,CAAA,CAG7CwkB,CAAAA,CAAa,MAAM/yC,CAAAA,CAAQ,kCAAA,CAAoC,CAAC,MAAO6xC,CAAAA,CAAWiB,CAAS,EAAGjB,CAAAA,CAAWl2C,CAAG,CAAC,CACnH,CAAA,CAeA,OAZ6B,CAC3B,KAAA,CAAO,CAAC2d,EAAM,MAAA,CACd,KAAA,CAAOy5B,CAAAA,CAAU,CAAC,CAAA,CAAIA,CAAAA,CAAU,CAAC,CAAA,CAAE,QAAA,CAAS,IAAA,CAAOA,CAAAA,CAAU,CAAC,CAAA,CAAE,KAAK,IAAA,CAAO,CAAA,CAC5E,KAAMA,CAAAA,CAAU,CAAC,EAAIA,CAAAA,CAAU,CAAC,CAAA,CAAE,QAAA,CAAS,IAAA,CAAOA,CAAAA,CAAU,CAAC,CAAA,CAAE,IAAA,CAAK,IAAA,CAAO,CAAA,CAC3E,GAAA,CAAKA,CAAAA,CAAU,CAAC,CAAA,CAAIA,CAAAA,CAAU,CAAC,CAAA,CAAE,QAAA,CAAS,GAAA,CAAMA,EAAU,CAAC,CAAA,CAAE,KAAK,GAAA,CAAM,CAAA,CACxE,QAASA,CAAAA,CAAU,CAAC,CAAA,CAChB,GAAA,CAAQA,CAAAA,CAAU,CAAC,EAAE,QAAA,CAAS,IAAA,CAAOA,CAAAA,CAAU,CAAC,CAAA,CAAE,IAAA,CAAK,KAAQ,GAAA,CAAO,CAACz5B,CAAAA,CAAM,MAAA,CAC7E,CAAA,CACJ,cAAA,CAAgBA,EAAM,WAAA,CAAY,KAAA,CAAM,GAAG,CAAA,CAAE,CAAC,EAC9C,YAAA,CAAcA,CAAAA,CAAM,UAAA,CAAW,KAAA,CAAM,GAAG,CAAA,CAAE,CAAC,CAC7C,CAGF,CACF,CAAC,CACH,CC7BO,SAAS05B,EAAAA,CACd17B,CAAAA,CACAC,EACAC,CAAAA,CACAC,CAAAA,CACA,CACA,OAAOhF,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,MAAA,CAAQ6E,CAAAA,CAAMC,CAAAA,CAAYC,EAAQC,CAAI,CAAA,CAC3D,OAAA,CAAS,MAAO,CAAE,MAAA,CAAA3e,CAAO,CAAA,GAAM,CAC7B,IAAMqkC,CAAAA,CAAWnrB,CAAAA,EAAc,CACzBjhB,EAAM,CAAA,uCAAA,EAA0CumB,CAAI,mCAAmCC,CAAU,CAAA,MAAA,EAASC,CAAM,CAAA,IAAA,EAAOC,CAAI,CAAA,CAAA,CAE3HjW,CAAAA,CAAW,MAAM27B,CAAAA,CAASpsC,EAAK,CAAE,MAAA,CAAA+H,CAAO,CAAC,CAAA,CAE/C,GAAI,CAAC0I,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,6BAAA,EAAgCA,EAAS,MAAM,CAAA,CAAE,CAAA,CAGnE,OAAOA,CAAAA,CAAS,IAAA,EAClB,CACF,CAAC,CACH,CC7BA,SAASqwC,EAAAA,CAAWtjB,CAAAA,CAAY,CAC9B,OAAOA,EAAK,WAAA,EAAY,CAAE,OAAA,CAAQ,WAAA,CAAa,EAAE,CACnD,CAEO,SAAS0kB,EAAAA,CACdjjD,EAAQ,GAAA,CACRonB,CAAAA,CACAC,EACA,CACA,IAAM/nB,CAAAA,CAAM+nB,CAAAA,EAAW,IAAI,IAAA,CACrB/mB,EACJ8mB,CAAAA,EAAa,IAAI,IAAA,CAAK9nB,CAAAA,CAAI,OAAA,EAAQ,CAAI,IAAU,EAAA,CAAK,GAAI,CAAA,CAE3D,OAAOmjB,uBAAAA,CAAa,CAClB,SAAU,CAAC,QAAA,CAAU,gBAAiBziB,CAAAA,CAAOM,CAAAA,CAAM,SAAQ,CAAGhB,CAAAA,CAAI,OAAA,EAAS,CAAA,CAC3E,OAAA,CAAS,IACP0Q,CAAAA,CAAQ,iCAAA,CAAmC,CACzC6xC,EAAAA,CAAWvhD,CAAK,CAAA,CAChBuhD,GAAWviD,CAAG,CAAA,CACdU,CACF,CAAC,CACL,CAAC,CACH,CCKO,SAASkjD,EAAAA,EAA6B,CAC3C,OAAOzgC,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,cAAc,CAAA,CACnC,OAAA,CAAS,SAAY,CACnB,GAAI,CAEF,OADoB,MAAMzS,CAAAA,CAAQ,gCAAA,CAAkC,EAAE,CAExE,CAAA,MAASzJ,EAAO,CACd,MAAMA,CACR,CACF,CACF,CAAC,CACH,CC/BO,SAAS48C,EAAAA,EAA2C,CACzD,OAAO1gC,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,8BAA8B,CAAA,CACnD,QAAS,SAAY,CACnB,GAAI,CAEF,OADc,MAAMzS,CAAAA,CAAQ,gDAAA,CAAkD,EAAE,CAElF,CAAA,MAASzJ,EAAO,CACd,MAAMA,CACR,CACF,CACF,CAAC,CACH,CCXO,SAAS68C,EAAAA,CACdpvC,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,oBAAoB,EAC/B9I,CAAAA,CACCkJ,CAAAA,EAAY,CACXkjB,EAAAA,CACEpsB,CAAAA,CACAkJ,CAAAA,CAAQ,aACRA,CAAAA,CAAQ,YAAA,CACRA,CAAAA,CAAQ,UAAA,CACRA,CAAAA,CAAQ,UAAA,CACRA,EAAQ,OACV,CACF,CAAA,CACA,SAAY,CACN1B,CAAAA,EAAM,SAAS,iBAAA,EACjB,MAAMA,EAAK,OAAA,CAAQ,iBAAA,CAAkB,CACnCkH,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,OAAO,UAAA,CAAW1O,CAAS,CAAA,CACrC,CAAC,gBAAA,CAAkB,YAAA,CAAcA,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EAEL,CAAA,CACAwH,CAAAA,CACA,QAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CCpCO,SAASynC,EAAAA,CACdrvC,EACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,SAAU,oBAAoB,CAAA,CAC/B9I,CAAAA,CACA,CAAC,CAAE,OAAA,CAAAwsB,CAAQ,CAAA,GAAM,CACfS,GAAwBjtB,CAAAA,CAAWwsB,CAAO,CAC5C,CAAA,CACA,SAAY,CACNhlB,CAAAA,EAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,iBAAA,CAAkB,CACnCkH,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,MAAA,CAAO,UAAA,CAAW1O,CAAS,EACrC,CAAC,gBAAA,CAAkB,aAAcA,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EAEL,CAAA,CACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CC5BA,eAAemwB,EAAAA,CAAqBv6B,CAAAA,CAAgC,CAClE,IAAM9O,CAAAA,CAAQ,MAAM8O,EAAS,IAAA,EAAK,CAClC,GAAI,CAACA,CAAAA,CAAS,EAAA,CAAI,CAChB,IAAMjL,CAAAA,CAAQ,IAAI,KAAA,CAAM,CAAA,2BAAA,EAA8BiL,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CACvE,MAAAjL,CAAAA,CAAM,MAAA,CAASiL,CAAAA,CAAS,MAAA,CACxBjL,CAAAA,CAAM,IAAA,CAAO7D,EACP6D,CACR,CAEA,OAAO7D,CACT,CAEA,eAAsB4gD,GACpBh8B,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACAC,CAAAA,CACqB,CACrB,IAAM0lB,EAAWnrB,CAAAA,EAAc,CACzBjhB,CAAAA,CAAM,CAAA,uCAAA,EAA0CumB,CAAI,CAAA,gCAAA,EAAmCC,CAAU,CAAA,MAAA,EAASC,CAAM,CAAA,IAAA,EAAOC,CAAI,CAAA,CAAA,CAC3HjW,CAAAA,CAAW,MAAM27B,CAAAA,CAASpsC,CAAG,EACnC,OAAOgrC,EAAAA,CAA8Bv6B,CAAQ,CAC/C,CAEA,eAAsB+xC,EAAAA,CAAgBC,CAAAA,CAA8B,CAClE,GAAIA,CAAAA,GAAQ,KAAA,CACV,OAAO,CAAA,CAGT,IAAMrW,CAAAA,CAAWnrB,GAAc,CACzBjhB,CAAAA,CAAM,CAAA,4EAAA,EAA+EyiD,CAAG,CAAA,CAAA,CACxFhyC,CAAAA,CAAW,MAAM27B,CAAAA,CAASpsC,CAAG,EAEnC,OAAA,CADa,MAAMgrC,GAA2Dv6B,CAAQ,CAAA,EAC1E,WAAA,CAAYgyC,CAAG,CAC7B,CAEA,eAAsBC,EAAAA,CAAqBz8B,CAAAA,CAAkBlL,CAAAA,CAAgC,CAE3F,IAAMtK,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CACL,CAAA,yBAAA,EAA4B2I,CAAAA,GAAa,MAAQ,KAAA,CAAQA,CAAQ,IAAIlL,CAAK,CAAA,CAC9E,EAEA,OAAOiwB,EAAAA,CAA0Bv6B,CAAQ,CAC3C,CAEA,eAAsBkyC,IAA2C,CAE/D,IAAMlyC,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,EAAO,cAAA,CAAiB,iCAAiC,CAAA,CACzF,OAAO0tB,EAAAA,CAAiCv6B,CAAQ,CAClD,CAEA,eAAsBmyC,EAAAA,EAAmD,CAEvE,IAAMnyC,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B,0EACF,CAAA,CACA,OAAO+pB,EAAAA,CAA6Cv6B,CAAQ,CAC9D,CCnDA,IAAMoyC,EAAAA,CAAqB,CAAE,cAAA,CAAgB,kBAAmB,CAAA,CAEhE,eAAeC,GAAa3mC,CAAAA,CAA8C,CACxE,IAAMiwB,CAAAA,CAAWnrB,CAAAA,GACX/Q,CAAAA,CAAUsN,qBAAAA,CAAc,mBAAA,EAAoB,CAC5C/M,CAAAA,CAAW,MAAM27B,EAAS,CAAA,EAAGl8B,CAAO,CAAA,uBAAA,CAAA,CAA2B,CACnE,MAAA,CAAQ,MAAA,CACR,KAAM,IAAA,CAAK,SAAA,CAAUiM,CAAO,CAAA,CAC5B,OAAA,CAAS0mC,EACX,CAAC,CAAA,CAED,GAAI,CAACpyC,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CACR,CAAA,6CAAA,EAA2CA,CAAAA,CAAS,MAAM,CAAA,CAC5D,EAIF,OAAA,CADc,MAAMA,CAAAA,CAAS,IAAA,EAAK,EACtB,MACd,CAEA,eAAesyC,EAAAA,CACb5mC,CAAAA,CACA3b,CAAAA,CACY,CACZ,GAAI,CACF,OAAO,MAAMsiD,GAAa3mC,CAAO,CACnC,MAAY,CACV,OAAO3b,CACT,CACF,CAEA,eAAsBwiD,GACpB1/C,CAAAA,CACArE,CAAAA,CAAgB,EAAA,CACkB,CAClC,IAAMgkD,CAAAA,CAAa,CACjB,OAAA,CAAS,KAAA,CACT,MAAA,CAAQ,MAAA,CACR,MAAA,CAAQ,CACN,SAAU,QAAA,CACV,KAAA,CAAO,CAAE,MAAA,CAAA3/C,CAAO,EAChB,KAAA,CAAArE,CAAAA,CACA,MAAA,CAAQ,CACV,CAAA,CACA,EAAA,CAAI,CACN,CAAA,CAEM,CAACikD,CAAAA,CAAKC,CAAI,CAAA,CAAI,MAAM,QAAQ,GAAA,CAAI,CACpCJ,EAAAA,CACE,CACE,GAAGE,CAAAA,CACH,OAAQ,CACN,GAAGA,EAAW,MAAA,CACd,KAAA,CAAO,UACP,OAAA,CAAS,CAAC,CAAE,KAAA,CAAO,OAAA,CAAS,UAAA,CAAY,IAAK,CAAC,CAChD,CACF,CAAA,CACA,EACF,EACAF,EAAAA,CACE,CACE,GAAGE,CAAAA,CACH,MAAA,CAAQ,CACN,GAAGA,CAAAA,CAAW,MAAA,CACd,MAAO,UAAA,CACP,OAAA,CAAS,CAAC,CAAE,KAAA,CAAO,OAAA,CAAS,UAAA,CAAY,KAAM,CAAC,CACjD,CACF,CAAA,CACA,EACF,CACF,CAAC,EAEKG,CAAAA,CAAmB1sB,CAAAA,EACvBA,CAAAA,CAAM,IAAA,CAAK,CAACxzB,CAAAA,CAAGhG,IAAM,CACnB,IAAMmmD,EAAO,MAAA,CAAQngD,CAAAA,CAA2B,OAAS,CAAC,CAAA,CAE1D,OADc,MAAA,CAAQhG,CAAAA,CAA2B,KAAA,EAAS,CAAC,CAAA,CAC5CmmD,CACjB,CAAC,CAAA,CACGC,CAAAA,CAAkB5sB,CAAAA,EACtBA,EAAM,IAAA,CAAK,CAACxzB,CAAAA,CAAGhG,CAAAA,GAAM,CACnB,IAAMmmD,EAAO,MAAA,CAAQngD,CAAAA,CAA2B,KAAA,EAAS,CAAC,CAAA,CACpDqgD,CAAAA,CAAQ,OAAQrmD,CAAAA,CAA2B,KAAA,EAAS,CAAC,CAAA,CAC3D,OAAOmmD,CAAAA,CAAOE,CAChB,CAAC,CAAA,CAEH,OAAO,CACL,GAAA,CAAKH,CAAAA,CAAgBF,CAAG,CAAA,CACxB,IAAA,CAAMI,CAAAA,CAAeH,CAAI,CAC3B,CACF,CAEA,eAAsBK,EAAAA,CACpBlgD,EACArE,CAAAA,CAAgB,EAAA,CACF,CACd,OAAO8jD,EAAAA,CACL,CACE,OAAA,CAAS,KAAA,CACT,MAAA,CAAQ,OACR,MAAA,CAAQ,CACN,QAAA,CAAU,QAAA,CACV,KAAA,CAAO,eAAA,CACP,MAAO,CAAE,MAAA,CAAAz/C,CAAO,CAAA,CAChB,KAAA,CAAArE,CAAAA,CACA,OAAQ,CAAA,CACR,OAAA,CAAS,CAAC,CAAE,KAAA,CAAO,YAAa,UAAA,CAAY,IAAK,CAAC,CACpD,CAAA,CACA,EAAA,CAAI,CACN,CAAA,CACA,EACF,CACF,CAEA,eAAsBwkD,GACpBxqC,CAAAA,CACA3V,CAAAA,CACArE,CAAAA,CAAgB,GAAA,CACF,CACd,IAAMgkD,EAAa,CACjB,OAAA,CAAS,MACT,MAAA,CAAQ,MAAA,CACR,OAAQ,CACN,QAAA,CAAU,QAAA,CACV,KAAA,CAAO,CAAE,MAAA,CAAA3/C,EAAQ,OAAA,CAAA2V,CAAQ,CAAA,CACzB,KAAA,CAAAha,CAAAA,CACA,MAAA,CAAQ,CACV,CAAA,CACA,EAAA,CAAI,CACN,CAAA,CAEM,CAACykD,CAAAA,CAAQC,CAAO,CAAA,CAAI,MAAM,QAAQ,GAAA,CAAI,CAC1CZ,GACE,CACE,GAAGE,CAAAA,CACH,MAAA,CAAQ,CACN,GAAGA,EAAW,MAAA,CACd,KAAA,CAAO,SAAA,CACP,OAAA,CAAS,CAAC,CAAE,MAAO,WAAA,CAAa,UAAA,CAAY,IAAK,CAAC,CACpD,CACF,EACA,EACF,EACAF,EAAAA,CACE,CACE,GAAGE,CAAAA,CACH,MAAA,CAAQ,CACN,GAAGA,CAAAA,CAAW,MAAA,CACd,MAAO,UAAA,CACP,OAAA,CAAS,CAAC,CAAE,KAAA,CAAO,WAAA,CAAa,WAAY,IAAK,CAAC,CACpD,CACF,CAAA,CACA,EACF,CACF,CAAC,EAEKW,CAAAA,CAAc,CAACC,EAAkBxF,CAAAA,GAAAA,CACpC,MAAA,CAAOwF,CAAAA,EAAY,CAAC,CAAA,CAAI,MAAA,CAAOxF,GAAS,CAAC,CAAA,EAAG,OAAA,CAAQ,CAAC,CAAA,CAElD6E,CAAAA,CAA6BQ,EAAO,GAAA,CAAK5/B,CAAAA,GAAW,CACxD,EAAA,CAAIA,CAAAA,CAAM,IAAA,CACV,KAAM,KAAA,CACN,OAAA,CAASA,EAAM,OAAA,CACf,MAAA,CAAQA,EAAM,MAAA,CACd,QAAA,CAAUA,CAAAA,CAAM,QAAA,CAChB,KAAA,CAAOA,CAAAA,CAAM,MACb,KAAA,CAAOA,CAAAA,CAAM,YAAA,EAAgB8/B,CAAAA,CAAY9/B,CAAAA,CAAM,QAAA,CAAUA,EAAM,KAAK,CAAA,CACpE,SAAA,CAAW,MAAA,CAAOA,CAAAA,CAAM,SAAA,EAAa,CAAC,CACxC,CAAA,CAAE,CAAA,CAEIq/B,CAAAA,CAA8BQ,CAAAA,CAAQ,GAAA,CAAK7/B,IAAW,CAC1D,EAAA,CAAIA,CAAAA,CAAM,IAAA,CACV,IAAA,CAAM,MAAA,CACN,QAASA,CAAAA,CAAM,OAAA,CACf,MAAA,CAAQA,CAAAA,CAAM,MAAA,CACd,QAAA,CAAUA,EAAM,QAAA,CAChB,KAAA,CAAOA,CAAAA,CAAM,KAAA,CACb,KAAA,CAAO8/B,CAAAA,CAAY9/B,EAAM,QAAA,CAAUA,CAAAA,CAAM,KAAK,CAAA,CAC9C,SAAA,CAAW,OAAOA,CAAAA,CAAM,SAAA,EAAa,CAAC,CACxC,CAAA,CAAE,CAAA,CAEF,OAAO,CAAC,GAAGo/B,CAAAA,CAAK,GAAGC,CAAI,CAAA,CAAE,KAAK,CAACjgD,CAAAA,CAAGhG,CAAAA,GAAMA,CAAAA,CAAE,SAAA,CAAYgG,CAAAA,CAAE,SAAS,CACnE,CAUA,eAAsB4gD,EAAAA,CACpBxgD,CAAAA,CACA2V,EACc,CACd,GAAI,KAAA,CAAM,OAAA,CAAQ3V,CAAM,CAAA,EAAKA,EAAO,MAAA,GAAW,CAAA,CAC7C,OAAO,EAAC,CAGV,IAAMygD,EAAc,KAAA,CAAM,OAAA,CAAQzgD,CAAM,CAAA,CACpC,CAAE,MAAA,CAAQ,CAAE,GAAA,CAAKA,CAAO,CAAE,CAAA,CAC1BA,CAAAA,CACE,CAAE,MAAA,CAAAA,CAAO,CAAA,CACT,EAAC,CAEP,OAAOy/C,GACL,CACE,OAAA,CAAS,KAAA,CACT,MAAA,CAAQ,MAAA,CACR,MAAA,CAAQ,CACN,QAAA,CAAU,QAAA,CACV,KAAA,CAAO,SAAA,CACP,KAAA,CAAO,CACL,GAAGgB,CAAAA,CACH,GAAI9qC,EAAU,CAAE,OAAA,CAAAA,CAAQ,CAAA,CAAI,EAC9B,CACF,CAAA,CACA,EAAA,CAAI,CACN,CAAA,CACA,EACF,CACF,CAEA,eAAsB+qC,GACpB/qC,CAAAA,CACA3V,CAAAA,CACc,CACd,OAAOwgD,EAAAA,CAAwBxgD,CAAAA,CAAQ2V,CAAO,CAChD,CAEA,eAAsBgrC,EAAAA,CACpBhxC,CAAAA,CACc,CACd,OAAO8vC,EAAAA,CACL,CACE,OAAA,CAAS,KAAA,CACT,MAAA,CAAQ,OACR,MAAA,CAAQ,CACN,QAAA,CAAU,QAAA,CACV,KAAA,CAAO,UAAA,CACP,MAAO,CACL,OAAA,CAAS9vC,CACX,CACF,CAAA,CACA,EAAA,CAAI,CACN,CAAA,CACA,EACF,CACF,CAEA,eAAsBixC,EAAAA,CACpBh4C,CAAAA,CACc,CACd,OAAO62C,EAAAA,CACL,CACE,QAAS,KAAA,CACT,MAAA,CAAQ,MAAA,CACR,MAAA,CAAQ,CACN,QAAA,CAAU,SACV,KAAA,CAAO,QAAA,CACP,KAAA,CAAO,CACL,MAAA,CAAQ,CAAE,IAAK72C,CAAO,CACxB,CACF,CAAA,CACA,EAAA,CAAI,CACN,CAAA,CACA,EACF,CACF,CAEA,eAAsBi4C,GACpBlxC,CAAAA,CACA3P,CAAAA,CACArE,CAAAA,CACAlB,CAAAA,CACc,CACd,IAAMquC,EAAWnrB,CAAAA,EAAc,CACzB/Q,CAAAA,CAAUsN,qBAAAA,CAAc,mBAAA,EAAoB,CAC5Cxd,EAAM,IAAI,GAAA,CAAI,qCAAA,CAAuCkQ,CAAO,CAAA,CAClElQ,CAAAA,CAAI,aAAa,GAAA,CAAI,SAAA,CAAWiT,CAAQ,CAAA,CACxCjT,CAAAA,CAAI,YAAA,CAAa,IAAI,QAAA,CAAUsD,CAAM,CAAA,CACrCtD,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,QAASf,CAAAA,CAAM,QAAA,EAAU,CAAA,CAC9Ce,CAAAA,CAAI,YAAA,CAAa,IAAI,QAAA,CAAUjC,CAAAA,CAAO,UAAU,CAAA,CAEhD,IAAM0S,CAAAA,CAAW,MAAM27B,CAAAA,CAASpsC,CAAAA,CAAI,QAAA,EAAS,CAAG,CAC9C,MAAA,CAAQ,KAAA,CACR,OAAA,CAAS,CAAE,cAAA,CAAgB,kBAAmB,CAChD,CAAC,CAAA,CAED,GAAI,CAACyQ,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CACR,wDAAmDA,CAAAA,CAAS,MAAM,EACpE,CAAA,CAGF,OAAQ,MAAMA,CAAAA,CAAS,IAAA,EACzB,CAEA,eAAsB2zC,EAAAA,CACpB9gD,CAAAA,CACA+gD,CAAAA,CAAW,OAAA,CACG,CACd,IAAMjY,CAAAA,CAAWnrB,CAAAA,EAAc,CACzB/Q,CAAAA,CAAUsN,qBAAAA,CAAc,mBAAA,GACxBxd,CAAAA,CAAM,IAAI,IAAI,+BAAA,CAAiCkQ,CAAO,EAC5DlQ,CAAAA,CAAI,YAAA,CAAa,GAAA,CAAI,QAAA,CAAUsD,CAAM,CAAA,CACrCtD,EAAI,YAAA,CAAa,GAAA,CAAI,UAAA,CAAYqkD,CAAQ,CAAA,CAEzC,IAAM5zC,EAAW,MAAM27B,CAAAA,CAASpsC,CAAAA,CAAI,QAAA,EAAS,CAAG,CAC9C,QAAS,CAAE,cAAA,CAAgB,kBAAmB,CAChD,CAAC,CAAA,CAED,GAAI,CAACyQ,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CACR,8CAAyCA,CAAAA,CAAS,MAAM,CAAA,CAC1D,CAAA,CAGF,OAAQ,MAAMA,EAAS,IAAA,EACzB,CAEA,eAAsB6zC,EAAAA,CACpBrxC,CAAAA,CAC4B,CAC5B,IAAMm5B,CAAAA,CAAWnrB,GAAc,CACzB/Q,CAAAA,CAAUsN,sBAAc,mBAAA,EAAoB,CAC5C/M,CAAAA,CAAW,MAAM27B,CAAAA,CACrB,CAAA,EAAGl8B,CAAO,CAAA,+BAAA,EAAkC+C,CAAQ,CAAA,OAAA,CACtD,CAAA,CAEA,GAAI,CAACxC,EAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CACR,CAAA,6CAAA,EAA2CA,CAAAA,CAAS,MAAM,CAAA,CAC5D,CAAA,CAGF,OAAQ,MAAMA,CAAAA,CAAS,MACzB,CC3VO,SAAS8zC,EAAAA,CAAwCtxC,CAAAA,CAAkB,CACxE,OAAOyO,uBAAAA,CAAa,CAClB,SAAU,CAAC,QAAA,CAAU,aAAA,CAAe,UAAA,CAAYzO,CAAQ,CAAA,CACxD,UAAW,GAAA,CACX,eAAA,CAAiB,IACjB,OAAA,CAAS,SACAgxC,GAAoDhxC,CAAQ,CAEvE,CAAC,CACH,CCTO,SAASuxC,EAAAA,EAAwC,CACtD,OAAO9iC,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,aAAA,CAAe,SAAS,EAC7C,SAAA,CAAW,GAAA,CACX,eAAA,CAAiB,GAAA,CACjB,OAAA,CAAS,SACAsiC,IAEX,CAAC,CACH,CCTO,SAASS,EAAAA,CAAwCv4C,CAAAA,CAAkB,CACxE,OAAOwV,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,aAAA,CAAe,eAAA,CAAiBxV,CAAM,CAAA,CAC3D,SAAA,CAAW,IACX,eAAA,CAAiB,GAAA,CACjB,QAAS,SACAg4C,EAAAA,CAA6Dh4C,CAAM,CAE9E,CAAC,CACH,CCTO,SAASw4C,EAAAA,CACdzxC,EACA3P,CAAAA,CACArE,CAAAA,CAAQ,EAAA,CACR,CACA,OAAOotB,+BAAAA,CAA8C,CACnD,QAAA,CAAU,CAAC,SAAU,aAAA,CAAe/oB,CAAAA,CAAQ,eAAgB2P,CAAQ,CAAA,CACpE,OAAA,CAAS,CAAC,CAAC3P,CAAAA,EAAU,CAAC,CAAC2P,CAAAA,CACvB,gBAAA,CAAkB,CAAA,CAClB,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqZ,CAAU,CAAA,GAAM,CAChC,GAAI,CAAChpB,GAAU,CAAC2P,CAAAA,CACd,MAAM,IAAI,KAAA,CACR,mDACF,CAAA,CAEF,OAAOkxC,EAAAA,CACLlxC,CAAAA,CACA3P,CAAAA,CACArE,CAAAA,CACAqtB,CACF,CACF,CAAA,CACA,gBAAA,CAAkB,CAACE,CAAAA,CAAUm4B,CAAAA,CAAWC,KACrCp4B,CAAAA,EAAU,MAAA,EAAU,CAAA,IAAOvtB,CAAAA,CAAS2lD,CAAAA,CAA2B3lD,CAAAA,CAAQ,OAC1E,oBAAA,CAAsB,CAAC4lD,EAAYF,CAAAA,CAAWG,CAAAA,GAC3CA,EAA4B,CAAA,CAAKA,CAAAA,CAA4B7lD,CAAAA,CAAQ,MAC1E,CAAC,CACH,CC3BO,SAAS8lD,EAAAA,CACdzhD,EACA+gD,CAAAA,CAAW,OAAA,CACX,CACA,OAAO3iC,uBAAAA,CAAa,CAClB,SAAU,CAAC,QAAA,CAAU,cAAepe,CAAM,CAAA,CAC1C,UAAW,GAAA,CACX,eAAA,CAAiB,GAAA,CACjB,OAAA,CAAS,SACA8gD,EAAAA,CAA4C9gD,EAAQ+gD,CAAQ,CAEvE,CAAC,CACH,CCZO,SAASW,EAAAA,CACd/xC,CAAAA,CACA,CACA,OAAOyO,uBAAAA,CAAa,CAClB,SAAU,CAAC,QAAA,CAAU,cAAe,WAAA,CAAazO,CAAQ,CAAA,CACzD,SAAA,CAAW,GAAA,CACX,eAAA,CAAiB,IACjB,OAAA,CAAS,CAAC,CAACA,CAAAA,CACX,OAAA,CAAS,SAAY,CACnB,GAAI,CACF,IAAMtR,CAAAA,CAAO,MAAM2iD,EAAAA,CACjBrxC,CACF,CAAA,CACA,OAAO,OAAO,MAAA,CAAOtR,CAAI,EAAE,MAAA,CACzB,CAAC,CAAE,aAAA,CAAAsjD,CAAc,CAAA,GAAMA,EAAgB,CACzC,CACF,CAAA,KAAY,CACV,OAAO,EACT,CACF,CACF,CAAC,CACH,CCrBO,SAASC,EAAAA,CACdjsC,CAAAA,CACA3V,CAAAA,CACA,CACA,OAAOoe,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,cAAe,YAAA,CAAczI,CAAAA,CAAS3V,CAAM,CAAA,CACjE,OAAA,CAAS,SACA0gD,GAA+C/qC,CAAAA,CAAS3V,CAAM,CAEzE,CAAC,CACH,CCRO,SAAS6hD,EAAAA,CACdjnD,EACA2T,CAAAA,CAA+B,MAAA,CAC/B,CACA,IAAI9R,CAAAA,CAAgB,CAClB,eAAgB,CAAA,CAChB,MAAA,CAAQ,EAAA,CACR,MAAA,CAAQ,EACV,CAAA,CAEI8R,IACF9R,CAAAA,CAAO,CAAE,GAAGA,CAAAA,CAAM,GAAG8R,CAAQ,GAG/B,GAAM,CAAE,eAAAuzC,CAAAA,CAAgB,MAAA,CAAA5iD,EAAQ,MAAA,CAAAgV,CAAO,CAAA,CAAIzX,CAAAA,CAEvCslD,CAAAA,CAAM,EAAA,CAEN7iD,IAAQ6iD,CAAAA,EAAO7iD,CAAAA,CAAS,GAAA,CAAA,CAE5B,IAAM8iD,CAAAA,CAAK,IAAA,CAAK,IAAI,UAAA,CAAWpnD,CAAAA,CAAM,QAAA,EAAU,CAAC,CAAA,CAAI,KAAS,CAAA,CAAIA,CAAAA,CAC3DiyB,EAAM,OAAOm1B,CAAAA,EAAO,SAAW,UAAA,CAAWA,CAAE,CAAA,CAAIA,CAAAA,CACtD,OAAAD,CAAAA,EAAOl1B,EAAI,cAAA,CAAe,OAAA,CAAS,CACjC,qBAAA,CAAuBi1B,CAAAA,CACvB,qBAAA,CAAuBA,EACvB,WAAA,CAAa,IACf,CAAC,CAAA,CACG5tC,CAAAA,GAAQ6tC,CAAAA,EAAO,IAAM7tC,CAAAA,CAAAA,CAElB6tC,CACT,CCpBO,IAAME,EAAAA,CAAN,KAAsB,CAC3B,MAAA,CACA,IAAA,CACA,IAAA,CAEA,SAAA,CACA,cAAA,CACA,kBACA,OAAA,CACA,KAAA,CACA,aAAA,CACA,aAAA,CACA,cAAA,CACA,QAAA,CAEA,YAAY9yC,CAAAA,CAA6B,CACvC,IAAA,CAAK,MAAA,CAASA,CAAAA,CAAM,MAAA,CACpB,KAAK,IAAA,CAAOA,CAAAA,CAAM,MAAQ,EAAA,CAC1B,IAAA,CAAK,KAAOA,CAAAA,CAAM,IAAA,EAAQ,EAAA,CAE1B,IAAA,CAAK,SAAA,CAAYA,CAAAA,CAAM,WAAa,CAAA,CACpC,IAAA,CAAK,cAAA,CAAiBA,CAAAA,CAAM,cAAA,EAAkB,KAAA,CAC9C,KAAK,iBAAA,CAAoBA,CAAAA,CAAM,iBAAA,EAAqB,KAAA,CACpD,IAAA,CAAK,OAAA,CAAU,WAAWA,CAAAA,CAAM,OAAO,GAAK,CAAA,CAC5C,IAAA,CAAK,MAAQ,UAAA,CAAWA,CAAAA,CAAM,KAAK,CAAA,EAAK,CAAA,CACxC,IAAA,CAAK,cAAgB,UAAA,CAAWA,CAAAA,CAAM,aAAa,CAAA,EAAK,CAAA,CACxD,IAAA,CAAK,eAAiB,UAAA,CAAWA,CAAAA,CAAM,cAAc,CAAA,EAAK,CAAA,CAC1D,IAAA,CAAK,cACH,IAAA,CAAK,KAAA,CAAQ,KAAK,aAAA,CAAgB,IAAA,CAAK,eACzC,IAAA,CAAK,QAAA,CAAWA,CAAAA,CAAM,SACxB,CAEA,cAAA,CAAiB,IACV,IAAA,CAAK,iBAAA,CAIH,IAAA,CAAK,aAAA,CAAgB,CAAA,EAAK,IAAA,CAAK,eAAiB,CAAA,CAH9C,KAAA,CAMX,WAAA,CAAc,IACP,IAAA,CAAK,cAAA,GAIH,CAAA,CAAA,EAAI0yC,EAAAA,CAAgB,IAAA,CAAK,KAAA,CAAO,CACrC,cAAA,CAAgB,KAAK,SACvB,CAAC,CAAC,CAAA,GAAA,EAAMA,EAAAA,CAAgB,IAAA,CAAK,cAAe,CAC1C,cAAA,CAAgB,IAAA,CAAK,SACvB,CAAC,CAAC,MAAMA,EAAAA,CAAgB,IAAA,CAAK,cAAA,CAAgB,CAC3C,cAAA,CAAgB,IAAA,CAAK,SACvB,CAAC,CAAC,IATO,EAAA,CAYX,MAAA,CAAS,IACF,IAAA,CAAK,cAAA,CAIN,IAAA,CAAK,aAAA,CAAgB,IAAA,CAChB,IAAA,CAAK,cAAc,QAAA,EAAS,CAG9BA,EAAAA,CAAgB,IAAA,CAAK,aAAA,CAAe,CACzC,eAAgB,IAAA,CAAK,SACvB,CAAC,CAAA,CATQ,GAAA,CAYX,QAAA,CAAW,IACL,IAAA,CAAK,OAAA,CAAU,KACV,IAAA,CAAK,OAAA,CAAQ,UAAS,CAGxBA,EAAAA,CAAgB,IAAA,CAAK,OAAA,CAAS,CAAE,cAAA,CAAgB,KAAK,SAAU,CAAC,CAE3E,ECxEO,SAASK,EAAAA,CACdvsC,EACA2uB,CAAAA,CACA6d,CAAAA,CACA,CACA,OAAO/jC,uBAAAA,CAAa,CAClB,SAAU,CACR,QAAA,CACA,cACA,mBAAA,CACAzI,CAAAA,CACA2uB,EACA6d,CACF,CAAA,CACA,OAAA,CAAS,SAAY,CACnB,GAAI,CAACxsC,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,6CAA6C,CAAA,CAG/D,IAAMysC,CAAAA,CAAW,MAAMzB,EAAAA,CAAoDhrC,CAAO,CAAA,CAE5E/M,CAAAA,CAAS,MAAMg4C,EAAAA,CACnBwB,CAAAA,CAAS,IAAKC,CAAAA,EAAMA,CAAAA,CAAE,MAAM,CAC9B,CAAA,CAEMC,CAAAA,CAAehe,CAAAA,CACjBA,CAAAA,CAAa,IAAA,CAAOA,EAAa,KAAA,CACjC,CAAA,CACEie,CAAAA,CAAsD,KAAA,CAAM,OAAA,CAChEJ,CACF,EACIA,CAAAA,CACA,EAAC,CAKCK,CAAAA,CAAkBJ,CAAAA,CACrB,GAAA,CAAKK,GAAYA,CAAAA,CAAQ,MAAM,EAC/B,MAAA,CACEziD,CAAAA,EACCA,IAAW,WAAA,EACX,CAACuiD,CAAAA,CAAgB,IAAA,CAAMG,CAAAA,EAAWA,CAAAA,CAAO,SAAW1iD,CAAM,CAC9D,CAAA,CAEIsjB,CAAAA,CAA8C,CAClD,GAAGi/B,EACH,GAAIC,CAAAA,CAAgB,MAAA,CAChB,MAAM9B,EAAAA,CACJ,MAAA,CACA8B,CACF,CAAA,CACA,EACN,CAAA,CAEA,OAAOJ,EAAS,GAAA,CAAKK,CAAAA,EAAY,CAC/B,IAAMhrC,CAAAA,CAAQ7O,CAAAA,CAAO,KAAMy5C,CAAAA,EAAMA,CAAAA,CAAE,MAAA,GAAWI,CAAAA,CAAQ,MAAM,CAAA,CACxDE,EAEJ,GAAIlrC,CAAAA,EAAO,QAAA,CACT,GAAI,CACFkrC,CAAAA,CAAgB,KAAK,KAAA,CAAMlrC,CAAAA,CAAM,QAAQ,EAC3C,CAAA,KAAQ,CACNkrC,CAAAA,CAAgB,OAClB,CAGF,IAAMD,CAAAA,CAASp/B,CAAAA,CAAQ,KAAMtmB,CAAAA,EAAMA,CAAAA,CAAE,MAAA,GAAWylD,CAAAA,CAAQ,MAAM,CAAA,CACxDG,EAAY,MAAA,CAAOF,CAAAA,EAAQ,SAAA,EAAa,GAAG,CAAA,CAC3CG,CAAAA,CAAgB,OAAOJ,CAAAA,CAAQ,OAAO,CAAA,CAEtCK,CAAAA,CACJL,CAAAA,CAAQ,MAAA,GAAW,YACfH,CAAAA,CAAeO,CAAAA,CACfD,CAAAA,GAAc,CAAA,CACZ,CAAA,CACA,MAAA,CAAA,CACGA,EAAYN,CAAAA,CAAeO,CAAAA,EAAe,OAAA,CAAQ,EAAE,CACvD,CAAA,CAER,OAAO,IAAIZ,EAAAA,CAAgB,CACzB,MAAA,CAAQQ,CAAAA,CAAQ,MAAA,CAChB,KAAMhrC,CAAAA,EAAO,IAAA,EAAQgrC,EAAQ,MAAA,CAC7B,IAAA,CAAME,GAAe,IAAA,EAAQ,EAAA,CAC7B,SAAA,CAAWlrC,CAAAA,EAAO,SAAA,EAAa,CAAA,CAC/B,eAAgBA,CAAAA,EAAO,cAAA,EAAkB,KAAA,CACzC,iBAAA,CAAmBA,CAAAA,EAAO,iBAAA,EAAqB,MAC/C,OAAA,CAASgrC,CAAAA,CAAQ,OAAA,CACjB,KAAA,CAAOA,CAAAA,CAAQ,KAAA,CACf,cAAeA,CAAAA,CAAQ,aAAA,CACvB,eAAgBA,CAAAA,CAAQ,cAAA,CACxB,SAAAK,CACF,CAAC,CACH,CAAC,CACH,CAAA,CACA,QAAS,CAAC,CAACntC,CACb,CAAC,CACH,CC5GO,SAASotC,EAAAA,CACdpzC,CAAAA,CACA3P,EACA,CACA,OAAOoe,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,aAAA,CAAepe,CAAAA,CAAQ,cAAA,CAAgB2P,CAAQ,CAAA,CACpE,QAAS,CAAC,CAAC3P,CAAAA,EAAU,CAAC,CAAC2P,CAAAA,CACvB,UAAW,GAAA,CACX,eAAA,CAAiB,GAAA,CACjB,OAAA,CAAS,SAAY,CACnB,GAAI,CAAC3P,CAAAA,EAAU,CAAC2P,CAAAA,CACd,MAAM,IAAI,KAAA,CACR,mDACF,CAAA,CAEF,IAAMwmB,CAAAA,CAAc5Z,CAAAA,GACdymC,CAAAA,CAAYvI,EAAAA,CAAoC9qC,CAAQ,CAAA,CAC9D,MAAMwmB,CAAAA,CAAY,cAAc6sB,CAAS,CAAA,CACzC,IAAMC,CAAAA,CAAW9sB,CAAAA,CAAY,YAAA,CAC3B6sB,EAAU,QACZ,CAAA,CAEME,EAAe,MAAM/sB,CAAAA,CAAY,gBACrCgrB,EAAAA,CAAwC,CAACnhD,CAAM,CAAC,CAClD,CAAA,CAEMmjD,EAAc,MAAMhtB,CAAAA,CAAY,eAAA,CACpC8qB,EAAAA,CAAwCtxC,CAAQ,CAClD,EAIMyzC,CAAAA,CAAa,MAAMjtB,CAAAA,CAAY,eAAA,CACnCyrB,EAAAA,CAAmC,MAAA,CAAW5hD,CAAM,CACtD,CAAA,CAEM6mB,EAAWq8B,CAAAA,EAAc,IAAA,CAAM1pD,GAAMA,CAAAA,CAAE,MAAA,GAAWwG,CAAM,CAAA,CACxDyiD,CAAAA,CAAUU,CAAAA,EAAa,KAAM3pD,CAAAA,EAAMA,CAAAA,CAAE,MAAA,GAAWwG,CAAM,CAAA,CAGtD4iD,CAAAA,CAAY,EAFHQ,CAAAA,EAAY,IAAA,CAAM5pD,CAAAA,EAAMA,CAAAA,CAAE,MAAA,GAAWwG,CAAM,GAE9B,SAAA,EAAa,GAAA,CAAA,CAEnC46C,EAAgB,UAAA,CAAW6H,CAAAA,EAAS,SAAW,GAAG,CAAA,CAClDY,CAAAA,CAAgB,UAAA,CAAWZ,CAAAA,EAAS,KAAA,EAAS,GAAG,CAAA,CAChDa,CAAAA,CAAmB,UAAA,CAAWb,CAAAA,EAAS,cAAA,EAAkB,GAAG,EAE5D98C,CAAAA,CAAmC,CACvC,CAAE,IAAA,CAAM,QAAA,CAAU,OAAA,CAASi1C,CAAc,CAAA,CACzC,CAAE,IAAA,CAAM,QAAA,CAAU,OAAA,CAASyI,CAAc,CAC3C,CAAA,CAEA,OAAIC,CAAAA,CAAmB,CAAA,EACrB39C,CAAAA,CAAM,IAAA,CAAK,CAAE,IAAA,CAAM,WAAA,CAAa,OAAA,CAAS29C,CAAiB,CAAC,CAAA,CAGtD,CACL,IAAA,CAAMtjD,CAAAA,CACN,KAAA,CAAO6mB,CAAAA,EAAU,IAAA,EAAQ,EAAA,CACzB,MAAO+7B,CAAAA,GAAc,CAAA,CAAI,EAAI,MAAA,CAAOA,CAAAA,EAAaK,GAAU,KAAA,EAAS,CAAA,CAAE,CAAA,CACtE,cAAA,CAAgBrI,CAAAA,CAAgByI,CAAAA,CAChC,MAAO,QAAA,CACP,KAAA,CAAA19C,CACF,CACF,CACF,CAAC,CACH,CChEO,SAAS49C,GAAsB5zC,CAAAA,CAAmBwQ,CAAAA,CAAS,EAAG,CACnE,OAAO/B,wBAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAUzO,CAAAA,CAAUwQ,CAAM,EACrC,OAAA,CAAS,SAAY,CACnB,GAAI,CAACxQ,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,kDAA6C,CAAA,CAG/D,IAAM4R,CAAAA,CAAO5R,EAAS,OAAA,CAAQ,GAAA,CAAK,EAAE,CAAA,CAG/B6zC,CAAAA,CAAiB,MAAM,KAAA,CAAMxpC,CAAAA,CAAO,cAAA,CAAiB,qBAAA,CAAuB,CAChF,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CAAE,QAAA,CAAUuH,CAAK,CAAC,CACzC,CAAC,CAAA,CAED,GAAI,CAACiiC,CAAAA,CAAe,EAAA,CAClB,MAAM,IAAI,KAAA,CAAM,CAAA,wBAAA,EAA2BA,CAAAA,CAAe,MAAM,CAAA,CAAE,EAGpE,IAAMC,CAAAA,CAAU,MAAMD,CAAAA,CAAe,IAAA,EAAK,CAGpCE,EAAuB,MAAM,KAAA,CACjC1pC,CAAAA,CAAO,cAAA,CAAiB,yBAAA,CACxB,CACE,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,QAAA,CAAUuH,CAAAA,CAAM,KAAMpB,CAAO,CAAC,CACvD,CACF,CAAA,CAEA,GAAI,CAACujC,CAAAA,CAAqB,EAAA,CACxB,MAAM,IAAI,KAAA,CAAM,CAAA,oCAAA,EAAuCA,EAAqB,MAAM,CAAA,CAAE,EAGtF,IAAMC,CAAAA,CAAgB,MAAMD,CAAAA,CAAqB,IAAA,EAAK,CAEtD,OAAO,CACL,MAAA,CAAQD,EAAO,MAAA,CACf,OAAA,CAASA,CAAAA,CAAO,gBAAA,CAChB,YAAA,CAAAE,CACF,CACF,CAAA,CACA,SAAA,CAAW,GAAA,CACX,cAAA,CAAgB,IAAA,CAChB,OAAA,CAAS,CAAC,CAACh0C,CACb,CAAC,CACH,CCzDO,SAASi0C,EAAAA,CAAsCj0C,CAAAA,CAAkB,CACtE,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,QAAA,CAAU,SAAU,cAAA,CAAgBzO,CAAQ,CAAA,CACvD,SAAA,CAAW,GAAA,CACX,eAAA,CAAiB,IACjB,OAAA,CAAS,UACP,MAAM4M,CAAAA,EAAe,CAAE,aAAA,CAAcgnC,GAAsB5zC,CAAQ,CAAC,CAAA,CAI7D,CACL,IAAA,CAAM,QAAA,CACN,MAAO,eAAA,CACP,KAAA,CAAO,IAAA,CACP,cAAA,CAAgB,EAPL4M,CAAAA,GAAiB,YAAA,CAC5BgnC,EAAAA,CAAsB5zC,CAAQ,CAAA,CAAE,QAClC,CAAA,EAK0B,QAAU,CAAA,CACpC,CAAA,CAEJ,CAAC,CACH,CCjBO,SAASk0C,EAAAA,CACdl0C,CAAAA,CACAgF,EACA,CACA,OAAOyJ,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,SAAU,QAAA,CAAU,cAAA,CAAgBzO,CAAAA,CAAUgF,CAAI,CAAA,CAC7D,OAAA,CAAS,UAcO,KAAA,CAbG,MAAM,MACrB,CAAA,EAAGqF,CAAAA,CAAO,cAAc,CAAA,uBAAA,CAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,SAAArK,CAAAA,CACA,IAAA,CAAMgF,CAAAA,EAAQ,CAChB,CAAC,CACH,CACF,CAAA,EAC6B,IAAA,IACjB,GAAA,CAAI,CAAC,CAAE,OAAA,CAAAmvC,CAAAA,CAAS,IAAA,CAAAnvC,CAAAA,CAAM,MAAA,CAAA5U,CAAAA,CAAQ,GAAAkB,CAAAA,CAAI,MAAA,CAAAo+B,CAAAA,CAAQ,QAAA,CAAAC,CAAAA,CAAU,IAAA,CAAA5sB,CAAK,CAAA,IAAO,CAC1E,OAAA,CAAS,IAAI,IAAA,CAAKoxC,CAAO,EACzB,IAAA,CAAAnvC,CAAAA,CACA,QAAS,CACP,CACE,OAAQ,UAAA,CAAW5U,CAAM,CAAA,CACzB,KAAA,CAAO,QACT,CACF,EACA,EAAA,CAAAkB,CAAAA,CACA,IAAA,CAAMo+B,CAAAA,EAAU,MAAA,CAChB,EAAA,CAAIC,GAAY,MAAA,CAChB,IAAA,CAAM5sB,CAAAA,EAAQ,MAChB,CAAA,CAAE,CAEN,CAAC,CACH,CCtBO,SAASqxC,EAAAA,CACdp0C,CAAAA,CACAvO,EACAmN,CAAAA,CAAmB,CAAE,OAAA,CAAS,KAAM,CAAA,CACpC,CACA,IAAM4nB,CAAAA,CAAc5Z,CAAAA,EAAe,CAC7BoG,CAAAA,CAAWpU,CAAAA,CAAQ,QAAA,EAAY,MAE/By1C,CAAAA,CAAa,MAAOC,CAAAA,GACpB11C,CAAAA,CAAQ,OAAA,CACV,MAAM4nB,EAAY,UAAA,CAAW8tB,CAAE,EAE/B,MAAM9tB,CAAAA,CAAY,cAAc8tB,CAAE,CAAA,CAE7B9tB,CAAAA,CAAY,YAAA,CAA+B8tB,CAAAA,CAAG,QAAQ,GAGzDC,CAAAA,CAA6B,MACjCC,CAAAA,EAC0C,CAC1C,GAAI,CAACA,GAAaxhC,CAAAA,GAAa,KAAA,CAC7B,OAAOwhC,CAAAA,CAGT,GAAI,CACF,IAAMC,CAAAA,CAAiB,MAAMlF,GAAgBv8B,CAAQ,CAAA,CACrD,OAAO,CACL,GAAGwhC,CAAAA,CACH,KAAA,CAAOA,CAAAA,CAAU,KAAA,CAAQC,CAC3B,CACF,CAAA,MAASliD,CAAAA,CAAO,CACd,OAAA,OAAA,CAAQ,IAAA,CAAK,uCAAuCygB,CAAQ,CAAA,CAAA,CAAA,CAAKzgB,CAAK,CAAA,CAC/DiiD,CACT,CACF,EAEME,CAAAA,CAAiB7J,EAAAA,CAAyB7qC,CAAAA,CAAUgT,CAAAA,CAAU,IAAI,CAAA,CAElE2hC,EAAwB,SAAY,CACxC,GAAI,CAEF,IAAMC,CAAAA,CAAAA,CAD+B,MAAMpuB,CAAAA,CAAY,UAAA,CAAWkuB,CAAc,CAAA,EACpD,OAAA,CAAQ,IAAA,CACjCnjD,GACCA,CAAAA,CAAK,MAAA,CAAO,WAAA,EAAY,GAAME,CAAAA,CAAM,WAAA,EACxC,CAAA,CAEA,GAAI,CAACmjD,CAAAA,CAAW,OAEhB,IAAM5+C,CAAAA,CAAkD,EAAC,CAczD,GAZI4+C,CAAAA,CAAU,MAAA,GAAW,QAAaA,CAAAA,CAAU,MAAA,GAAW,IAAA,EACzD5+C,CAAAA,CAAM,IAAA,CAAK,CAAE,KAAM,QAAA,CAAU,OAAA,CAAS4+C,CAAAA,CAAU,MAAO,CAAC,CAAA,CAGtDA,EAAU,MAAA,GAAW,KAAA,CAAA,EAAaA,EAAU,MAAA,GAAW,IAAA,EAAQA,EAAU,MAAA,CAAS,CAAA,EACpF5+C,CAAAA,CAAM,IAAA,CAAK,CAAE,IAAA,CAAM,SAAU,OAAA,CAAS4+C,CAAAA,CAAU,MAAO,CAAC,CAAA,CAGtDA,CAAAA,CAAU,UAAY,KAAA,CAAA,EAAaA,CAAAA,CAAU,OAAA,GAAY,IAAA,EAAQA,CAAAA,CAAU,OAAA,CAAU,GACvF5+C,CAAAA,CAAM,IAAA,CAAK,CAAE,IAAA,CAAM,SAAA,CAAW,QAAS4+C,CAAAA,CAAU,OAAQ,CAAC,CAAA,CAGxDA,CAAAA,CAAU,SAAA,EAAa,MAAM,OAAA,CAAQA,CAAAA,CAAU,SAAS,CAAA,CAC1D,IAAA,IAAWC,CAAAA,IAAaD,EAAU,SAAA,CAAW,CAC3C,GAAI,CAACC,CAAAA,EAAa,OAAOA,GAAc,QAAA,CAAU,SAEjD,IAAMC,CAAAA,CAAUD,CAAAA,CAAU,QACpB5pD,CAAAA,CAAQ4pD,CAAAA,CAAU,KAAA,CAExB,GAAI,OAAO5pD,CAAAA,EAAU,SAAU,CAE7B,IAAMwgB,CAAAA,CADaxgB,CAAAA,CAAM,OAAA,CAAQ,IAAA,CAAM,EAAE,CAAA,CAChB,KAAA,CAAM,yBAAyB,CAAA,CACxD,GAAIwgB,CAAAA,CAAO,CACT,IAAMspC,CAAAA,CAAW,KAAK,GAAA,CAAI,MAAA,CAAO,WAAWtpC,CAAAA,CAAM,CAAC,CAAC,CAAC,CAAA,CAEjDqpC,CAAAA,GAAY,uBACd9+C,CAAAA,CAAM,IAAA,CAAK,CAAE,IAAA,CAAM,sBAAA,CAAwB,OAAA,CAAS++C,CAAS,CAAC,CAAA,CACrDD,CAAAA,GAAY,qBAAA,CACrB9+C,CAAAA,CAAM,IAAA,CAAK,CAAE,IAAA,CAAM,sBAAA,CAAwB,QAAS++C,CAAS,CAAC,EACrDD,CAAAA,GAAY,0BAAA,EACrB9+C,CAAAA,CAAM,IAAA,CAAK,CAAE,IAAA,CAAM,qBAAsB,OAAA,CAAS++C,CAAS,CAAC,EAEhE,CACF,CACF,CAGF,OAAO,CACL,IAAA,CAAMH,CAAAA,CAAU,MAAA,CAChB,KAAA,CAAOA,EAAU,IAAA,CACjB,KAAA,CAAOA,EAAU,QAAA,CACjB,cAAA,CAAgBA,EAAU,OAAA,CAC1B,GAAA,CAAKA,CAAAA,CAAU,GAAA,EAAK,QAAA,EAAS,CAC7B,MAAOA,CAAAA,CAAU,KAAA,CACjB,cAAA,CAAgBA,CAAAA,CAAU,cAAA,CAC1B,KAAA,CAAA5+C,CACF,CACF,CAAA,KAAQ,CACN,MACF,CACF,CAAA,CAEA,OAAOyY,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,gBAAA,CAAkB,YAAA,CAAczO,EAAUvO,CAAAA,CAAOuhB,CAAQ,CAAA,CACpE,OAAA,CAAS,SAAY,CACnB,IAAMgiC,CAAAA,CAAqB,MAAML,CAAAA,EAAsB,CAEvD,GAAIK,CAAAA,EAAsBA,EAAmB,KAAA,CAAQ,CAAA,CACnD,OAAOA,CAAAA,CAGT,IAAIR,CAAAA,CAEJ,GAAI/iD,CAAAA,GAAU,MAAA,CACZ+iD,EAAY,MAAMH,CAAAA,CAAWvJ,GAAoC9qC,CAAQ,CAAC,CAAA,CAAA,KAAA,GACjEvO,CAAAA,GAAU,IAAA,CACnB+iD,CAAAA,CAAY,MAAMH,CAAAA,CAAW7I,EAAAA,CAAyCxrC,CAAQ,CAAC,CAAA,CAAA,KAAA,GACtEvO,CAAAA,GAAU,MACnB+iD,CAAAA,CAAY,MAAMH,CAAAA,CAAWlJ,EAAAA,CAAmCnrC,CAAQ,CAAC,UAChEvO,CAAAA,GAAU,QAAA,CACnB+iD,EAAY,MAAMH,CAAAA,CAAWJ,GAAsCj0C,CAAQ,CAAC,CAAA,CAAA,KAAA,GAAA,CAG3D,MAAMwmB,CAAAA,CAAY,eAAA,CACjC8qB,GAAwCtxC,CAAQ,CAClD,CAAA,EAEa,IAAA,CAAM8yC,CAAAA,EAAYA,CAAAA,CAAQ,SAAWrhD,CAAK,CAAA,CACrD+iD,CAAAA,CAAY,MAAMH,CAAAA,CAChBjB,EAAAA,CAA0CpzC,EAAUvO,CAAK,CAC3D,OACK,CAAA,GAAIujD,CAAAA,CAET,OAAOA,CAAAA,CAEP,MAAM,IAAI,KAAA,CACR,CAAA,yCAAA,EAAuCvjD,CAAK,GAC9C,CAAA,CAMJ,GAAIujD,CAAAA,EAAsBR,CAAAA,EAAaA,CAAAA,CAAU,KAAA,CAAQ,EAAG,CAC1D,IAAMS,CAAAA,CAAY,MAAMV,CAAAA,CAA2BC,CAAS,EAC5D,OAAO,CACL,GAAGQ,CAAAA,CACH,KAAA,CAAOC,CAAAA,CAAW,KACpB,CACF,CAEA,OAAO,MAAMV,CAAAA,CAA2BC,CAAS,CACnD,CACF,CAAC,CACH,CC/KO,IAAKU,EAAAA,CAAAA,CAAAA,CAAAA,GAEVA,EAAA,QAAA,CAAW,UAAA,CAGXA,CAAAA,CAAA,iBAAA,CAAoB,iBAAA,CACpBA,CAAAA,CAAA,oBAAsB,iBAAA,CACtBA,CAAAA,CAAA,SAAW,UAAA,CACXA,CAAAA,CAAA,QAAU,UAAA,CACVA,CAAAA,CAAA,SAAA,CAAY,YAAA,CACZA,CAAAA,CAAA,cAAA,CAAiB,kBACjBA,CAAAA,CAAA,aAAA,CAAgB,gBAAA,CAChBA,CAAAA,CAAA,IAAA,CAAO,MAAA,CACPA,EAAA,OAAA,CAAU,SAAA,CAGVA,CAAAA,CAAA,IAAA,CAAO,MAAA,CACPA,CAAAA,CAAA,QAAU,SAAA,CACVA,CAAAA,CAAA,MAAQ,OAAA,CACRA,CAAAA,CAAA,IAAM,KAAA,CAGNA,CAAAA,CAAA,KAAA,CAAQ,OAAA,CACRA,CAAAA,CAAA,OAAA,CAAU,UACVA,CAAAA,CAAA,UAAA,CAAa,YAAA,CAxBHA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,ECkCL,SAASC,GACdn1C,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,UAAU,EACrB9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX8e,EAAAA,CAAgBhoB,CAAAA,CAAWkJ,CAAAA,CAAQ,EAAA,CAAIA,CAAAA,CAAQ,MAAA,CAAQA,EAAQ,IAAI,CACrE,CAAA,CACA,MAAOinB,CAAAA,CAASxJ,CAAAA,GAAc,CAC5B,MAAMnd,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,EAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,QAAA,CAAS,KAAKiY,CAAAA,CAAU,EAAE,CAAA,CACpC,CAAC,gBAAA,CAAkB,YAAA,CAAc3mB,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,QAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CCxCO,SAASwtC,GACdp1C,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,gBAAgB,CAAA,CAC3B9I,CAAAA,CACCkJ,CAAAA,EAAY,CACXumB,GAAqBzvB,CAAAA,CAAWkJ,CAAAA,CAAQ,EAAA,CAAIA,CAAAA,CAAQ,MAAA,CAAQA,CAAAA,CAAQ,IAAI,CAC1E,CAAA,CACA,MAAOinB,CAAAA,CAASxJ,CAAAA,GAAc,CAC5B,MAAMnd,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,EAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,QAAA,CAAS,KAAKiY,CAAAA,CAAU,EAAE,CAAA,CACpC,CAAC,gBAAA,CAAkB,YAAA,CAAc3mB,CAAQ,CAAA,CACzC,CAAC,SAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CC2BO,SAASytC,GACdr1C,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,yBAAyB,EACpC9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX6f,EAAAA,CACE/oB,CAAAA,CACAkJ,CAAAA,CAAQ,SAAA,CACRA,CAAAA,CAAQ,aACV,CACF,CAAA,CACA,MAAOinB,CAAAA,CAASxJ,CAAAA,GAAc,CAE5B,MAAMnd,EAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAAA,CAChC0O,EAAU,QAAA,CAAS,IAAA,CAAKiY,EAAU,SAAS,CAAA,CAC3C,CAAC,gBAAA,CAAkB,YAAA,CAAc3mB,CAAQ,EACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCvBO,SAAS0tC,EAAAA,CACdt1C,EACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,SAAU,4BAA4B,CAAA,CACvC9I,CAAAA,CACCkJ,CAAAA,EAAY,CACXggB,EAAAA,CACElpB,EACAkJ,CAAAA,CAAQ,SAAA,CACRA,CAAAA,CAAQ,OAAA,CACRA,CAAAA,CAAQ,QACV,CACF,CAAA,CACA,MAAOinB,EAASxJ,CAAAA,GAAc,CAE5B,MAAMnd,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,OAAO,cAAA,CAAe1O,CAAS,CAAA,CACzC0O,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,SAAS,CAC7C,CAAC,EACH,CAAA,CACAnf,CAAAA,CACA,QAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CCvFO,SAAS2tC,EAAAA,CAAuBv1C,EAA8BwH,CAAAA,CACnEI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,SAAU,uBAAuB,CAAA,CAClC9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX,IAAMoQ,EAAO,IAAA,CAAK,SAAA,CAAU,CAC1B,YAAA,CAAc,QAAA,CACd,eAAgB,UAAA,CAChB,eAAA,CAAiB,CACf,MAAA,CAAQpQ,CAAAA,CAAQ,MAAA,CAChB,GAAIA,CAAAA,CAAQ,EAAA,CACZ,QAAA,CAAUA,CAAAA,CAAQ,QAAA,CAClB,IAAA,CAAMA,EAAQ,IAChB,CACF,CAAC,CAAA,CACD,OAAO,CAAC,CAAC,aAAA,CAAe,CACtB,eAAgB,CAAClJ,CAAS,EAC1B,sBAAA,CAAwB,EAAC,CACzB,EAAA,CAAI,kBAAA,CACJ,IAAA,CAAAsZ,CACF,CAAC,CAAc,CACjB,CAAA,CACA,MAAO6W,CAAAA,CAASxJ,IAAc,CAC5B,MAAMnd,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAAA,CAChC0O,EAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,EAAE,CAAA,CACpC,CAAC,iBAAkB,YAAA,CAAc3mB,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,KAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,SACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCrCO,SAAS4tC,EAAAA,CACdx1C,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,qBAAqB,CAAA,CAChC9I,CAAAA,CACCkJ,GAAY,CACXqf,EAAAA,CAAyBvoB,CAAAA,CAAWkJ,CAAAA,CAAQ,EAAA,CAAIA,CAAAA,CAAQ,OAAQA,CAAAA,CAAQ,IAAI,CAC9E,CAAA,CACA,MAAOinB,EAASxJ,CAAAA,GAAc,CAC5B,MAAMnd,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,EAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,EAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,EAAE,CAAA,CACpC,CAAC,iBAAkB,YAAA,CAAc3mB,CAAQ,EACzC,CAAC,QAAA,CAAU,YAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,EACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCtBO,SAAS6tC,EAAAA,CACdz1C,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,SAAU,uBAAuB,CAAA,CAClC9I,EACCkJ,CAAAA,EAAY,CACXsf,EAAAA,CAA2BxoB,CAAAA,CAAWkJ,CAAAA,CAAQ,EAAA,CAAIA,EAAQ,MAAA,CAAQA,CAAAA,CAAQ,IAAA,CAAMA,CAAAA,CAAQ,SAAS,CACnG,EACA,MAAOinB,CAAAA,CAASxJ,CAAAA,GAAc,CAC5B,MAAMnd,CAAAA,CAAyBhC,GAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,EAAE,EACpC,CAAC,gBAAA,CAAkB,YAAA,CAAc3mB,CAAQ,CAAA,CACzC,CAAC,SAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,EACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCzBO,SAAS8tC,EAAAA,CACd11C,CAAAA,CACAwH,CAAAA,CACAI,EACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,qBAAqB,EAChC9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX0f,EAAAA,CAAyB5oB,CAAAA,CAAWkJ,CAAAA,CAAQ,GAAIA,CAAAA,CAAQ,MAAM,CAChE,CAAA,CACA,MAAOinB,EAASxJ,CAAAA,GAAc,CAC5B,MAAMnd,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,EAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,EAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,EAAE,CAAA,CACpC,CAAC,iBAAkB,YAAA,CAAc3mB,CAAQ,EACzC,CAAC,QAAA,CAAU,YAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,EACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCxBO,SAAS+tC,EAAAA,CACd31C,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,SAAU,kBAAkB,CAAA,CAC7B9I,EACCkJ,CAAAA,EAAY,CACX2f,EAAAA,CAAuB7oB,CAAAA,CAAWkJ,CAAAA,CAAQ,aAAa,CACzD,CAAA,CACA,SAAY,CACV,MAAMM,CAAAA,CAAyBhC,CAAAA,EAAM,QAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,EAChC,CAAC,gBAAA,CAAkB,aAAcA,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCpBO,SAASguC,EAAAA,CAAW51C,CAAAA,CAA8BwH,CAAAA,CACvDI,EACA,CACA,OAAOkB,EACL,CAAC,QAAA,CAAU,SAAS,CAAA,CACpB9I,CAAAA,CACCkJ,CAAAA,EAAY,CACXA,CAAAA,CAAQ,cAAA,CACJsgB,GAA6BxpB,CAAAA,CAAWkJ,CAAAA,CAAQ,MAAA,CAAQA,CAAAA,CAAQ,SAAS,CAAA,CACzEqgB,GAAevpB,CAAAA,CAAWkJ,CAAAA,CAAQ,MAAA,CAAQA,CAAAA,CAAQ,SAAS,CACjE,EACA,SAAY,CACV,MAAMM,CAAAA,CAAyBhC,CAAAA,EAAM,QAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,EAChC,CAAC,gBAAA,CAAkB,YAAA,CAAcA,CAAQ,CAAA,CACzC,CAAC,SAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,EACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCrBO,SAASiuC,EAAAA,CAAiB71C,CAAAA,CAA8BwH,CAAAA,CAC7DI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,gBAAgB,CAAA,CAC3B9I,EACCkJ,CAAAA,EAAYyf,EAAAA,CAAsB3oB,CAAAA,CAAWkJ,CAAAA,CAAQ,EAAA,CAAIA,CAAAA,CAAQ,OAAQA,CAAAA,CAAQ,IAAA,CAAMA,EAAQ,SAAS,CAAA,CACzG,SAAY,CACV,MAAMM,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC,CAAC,iBAAkB,YAAA,CAAcA,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,KAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,EACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCnBA,IAAMkuC,EAAAA,CAAsC,GAAA,CACtCC,EAAAA,CAA4B,IAAI,GAAA,CAE/B,SAASC,EAAAA,CAAgBh2C,CAAAA,CAA8BwH,CAAAA,CAC5DI,CAAAA,CACA,CACA,OAAOkB,EACL,CAAC,QAAA,CAAU,eAAe,CAAA,CAC1B9I,CAAAA,CACCkJ,GAAY,CACXgkB,EAAAA,CAA0BltB,CAAAA,CAAWkJ,CAAAA,CAAQ,UAAA,CAAYA,CAAAA,CAAQ,UAAWA,CAAAA,CAAQ,WAAW,CACjG,CAAA,CACA,IAAM,CACJ,IAAM+sC,CAAAA,CAAWj2C,CAAAA,EAAY,eAAA,CACvBk2C,CAAAA,CAAmB,CACvBxnC,CAAAA,CAAU,SAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC,CAAC,gBAAA,CAAkB,YAAA,CAAcA,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,EACtC0O,CAAAA,CAAU,MAAA,CAAO,eAAA,CAAgB1O,CAAS,CAAA,CAC1C0O,CAAAA,CAAU,OAAO,cAAA,CAAe1O,CAAS,CAAA,CACzC0O,CAAAA,CAAU,MAAA,CAAO,oBAAA,CAAqB1O,CAAS,CACjD,CAAA,CAIMm2C,EAAgBJ,EAAAA,CAA0B,GAAA,CAAIE,CAAQ,CAAA,CACxDE,CAAAA,GACF,YAAA,CAAaA,CAAa,CAAA,CAC1BJ,EAAAA,CAA0B,OAAOE,CAAQ,CAAA,CAAA,CAG3C,IAAMn8C,CAAAA,CAAQ,UAAA,CAAW,SAAY,CACnC,GAAI,CACF,IAAM22B,CAAAA,CAAK7jB,CAAAA,EAAe,CAIpBwpC,GAHU,MAAM,OAAA,CAAQ,WAC5BF,CAAAA,CAAiB,GAAA,CAAK5mD,GAAQmhC,CAAAA,CAAG,iBAAA,CAAkB,CAAE,QAAA,CAAUnhC,CAAI,CAAC,CAAC,CACvE,CAAA,EACyB,MAAA,CAAQnF,CAAAA,EAAWA,CAAAA,CAAO,MAAA,GAAW,UAAU,CAAA,CACpEisD,CAAAA,CAAS,MAAA,CAAS,CAAA,EACpB,OAAA,CAAQ,KAAA,CAAM,+DAAgE,CAC5E,QAAA,CAAAp2C,EACA,aAAA,CAAeo2C,CAAAA,CAAS,OACxB,QAAA,CAAAA,CACF,CAAC,EAEL,CAAA,MAAS7jD,CAAAA,CAAO,CACd,OAAA,CAAQ,KAAA,CAAM,4DAAA,CAA8D,CAC1E,QAAA,CAAAyN,CAAAA,CACA,MAAAzN,CACF,CAAC,EACH,CAAA,OAAE,CACAwjD,EAAAA,CAA0B,OAAOE,CAAQ,EAC3C,CACF,CAAA,CAAGH,EAAmC,CAAA,CAEtCC,GAA0B,GAAA,CAAIE,CAAAA,CAAUn8C,CAAK,EAC/C,CAAA,CACA0N,CAAAA,CACA,UACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CC7DO,SAASyuC,EAAAA,CAAuBr2C,CAAAA,CAA8BwH,CAAAA,CACnEI,CAAAA,CACA,CACA,OAAOkB,EACL,CAAC,QAAA,CAAU,uBAAuB,CAAA,CAClC9I,CAAAA,CACCkJ,GAAY,CACX,IAAMoQ,CAAAA,CAAO,IAAA,CAAK,SAAA,CAAU,CAC1B,aAAc,QAAA,CACd,cAAA,CAAgB,UAAA,CAChB,eAAA,CAAiB,CACf,MAAA,CAAQpQ,EAAQ,MAAA,CAChB,EAAA,CAAIA,CAAAA,CAAQ,EAAA,CACZ,QAAA,CAAUA,CAAAA,CAAQ,QACpB,CACF,CAAC,EACD,OAAO,CAAC,CAAC,aAAA,CAAe,CACtB,EAAA,CAAI,kBAAA,CACJ,cAAA,CAAgB,CAAClJ,CAAS,CAAA,CAC1B,sBAAA,CAAwB,EAAC,CACzB,IAAA,CAAAsZ,CACF,CAAC,CAAc,CACjB,CAAA,CACA,MAAO6W,CAAAA,CAASxJ,CAAAA,GAAc,CAC5B,MAAMnd,CAAAA,CAAyBhC,GAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,SAAS,IAAA,CAAKiY,CAAAA,CAAU,EAAE,CAAA,CACpC,CAAC,gBAAA,CAAkB,aAAc3mB,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,SACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCnCO,SAAS0uC,EAAAA,CAAyBt2C,CAAAA,CAA8BwH,CAAAA,CACrEI,CAAAA,CACA,CACA,OAAOkB,EACL,CAAC,QAAA,CAAU,yBAAyB,CAAA,CACpC9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX,IAAMoQ,CAAAA,CAAO,KAAK,SAAA,CAAU,CAC1B,aAAc,QAAA,CACd,cAAA,CAAgB,YAAA,CAChB,eAAA,CAAiB,CACf,MAAA,CAAQpQ,EAAQ,MAAA,CAChB,IAAA,CAAMA,CAAAA,CAAQ,IAAA,CACd,QAAA,CAAUA,CAAAA,CAAQ,QACpB,CACF,CAAC,CAAA,CACD,OAAO,CAAC,CAAC,cAAe,CACtB,EAAA,CAAI,mBACJ,cAAA,CAAgB,CAAClJ,CAAS,CAAA,CAC1B,sBAAA,CAAwB,EAAC,CACzB,IAAA,CAAAsZ,CACF,CAAC,CAAc,CACjB,CAAA,CACA,SAAY,CACV,MAAM9P,EAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAAA,CAChC,CAAC,gBAAA,CAAkB,YAAA,CAAcA,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,QAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CClCO,SAAS2uC,EAAAA,CAAoBv2C,EAA8BwH,CAAAA,CAChEI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,SAAU,oBAAoB,CAAA,CAC/B9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX,IAAMoQ,EAAO,IAAA,CAAK,SAAA,CAAU,CAC1B,YAAA,CAAc,QAAA,CACd,cAAA,CAAgB,QAChB,eAAA,CAAiB,CACf,MAAA,CAAQpQ,CAAAA,CAAQ,MAAA,CAChB,EAAA,CAAIA,EAAQ,EAAA,CACZ,QAAA,CAAUA,EAAQ,QACpB,CACF,CAAC,CAAA,CACD,OAAO,CAAC,CAAC,aAAA,CAAe,CACtB,GAAI,kBAAA,CACJ,cAAA,CAAgB,CAAClJ,CAAS,CAAA,CAC1B,sBAAA,CAAwB,EAAC,CACzB,IAAA,CAAAsZ,CACF,CAAC,CAAc,CACjB,EACA,MAAO6W,CAAAA,CAASxJ,IAAc,CAC5B,MAAMnd,EAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,EAAE,CAAA,CACpC,CAAC,gBAAA,CAAkB,YAAA,CAAc3mB,CAAQ,CAAA,CACzC,CAAC,QAAA,CAAU,WAAA,CAAa,KAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCnCO,SAAS4uC,EAAAA,CAAsBx2C,CAAAA,CAA8BwH,EAClEI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,sBAAsB,CAAA,CACjC9I,CAAAA,CACCkJ,GAAY,CACX,IAAMoQ,EAAO,IAAA,CAAK,SAAA,CAAU,CAC1B,YAAA,CAAc,QAAA,CACd,cAAA,CAAgB,UAChB,eAAA,CAAiB,CACf,MAAA,CAAQpQ,CAAAA,CAAQ,MAAA,CAChB,EAAA,CAAIA,EAAQ,EAAA,CACZ,QAAA,CAAUA,CAAAA,CAAQ,QACpB,CACF,CAAC,EACD,OAAO,CAAC,CAAC,aAAA,CAAe,CACtB,GAAI,kBAAA,CACJ,cAAA,CAAgB,CAAClJ,CAAS,CAAA,CAC1B,sBAAA,CAAwB,EAAC,CACzB,IAAA,CAAAsZ,CACF,CAAC,CAAc,CACjB,EACA,SAAY,CACV,MAAM9P,CAAAA,CAAyBhC,CAAAA,EAAM,OAAA,CAASI,EAAe,CAC3D8G,CAAAA,CAAU,SAAS,IAAA,CAAK1O,CAAQ,EAChC,CAAC,gBAAA,CAAkB,YAAA,CAAcA,CAAQ,CAAA,CACzC,CAAC,SAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,EACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCpCO,SAAS6uC,GAAsBz2C,CAAAA,CAA8BwH,CAAAA,CAClEI,EACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,sBAAsB,EACjC9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX,IAAMoQ,CAAAA,CAAO,IAAA,CAAK,UAAUpQ,CAAAA,CAAQ,MAAA,CAAO,GAAA,CAAK7Y,CAAAA,GAAY,CAAE,MAAA,CAAAA,CAAO,CAAA,CAAE,CAAC,CAAA,CACxE,OAAO,CAAC,CAAC,cAAe,CACtB,EAAA,CAAI,kBAAA,CACJ,cAAA,CAAgB,EAAC,CACjB,uBAAwB,CAAC2P,CAAS,CAAA,CAClC,IAAA,CAAAsZ,CACF,CAAC,CAAc,CACjB,CAAA,CACA,SAAY,CACV,MAAM9P,CAAAA,CAAyBhC,GAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAAA,CAChC,CAAC,gBAAA,CAAkB,YAAA,CAAcA,CAAQ,EACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,CAAAA,CACA,SAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCrBO,SAAS8uC,EAAAA,CAAqB12C,EAA8BwH,CAAAA,CACjEI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,SAAU,qBAAqB,CAAA,CAChC9I,CAAAA,CACCkJ,CAAAA,EAAY,CACX,IAAIygB,EACAD,CAAAA,CAEAxgB,CAAAA,CAAQ,MAAA,GAAW,QAAA,EACrBwgB,CAAAA,CAAiB,QAAA,CACjBC,EAAkB,CAChB,IAAA,CAAMzgB,EAAQ,SAAA,CACd,EAAA,CAAIA,EAAQ,OACd,CAAA,GAEAwgB,CAAAA,CAAiBxgB,CAAAA,CAAQ,MAAA,CACzBygB,CAAAA,CAAkB,CAChB,MAAA,CAAQzgB,CAAAA,CAAQ,MAAA,CAChB,QAAA,CAAUA,CAAAA,CAAQ,QAAA,CAClB,MAAOA,CAAAA,CAAQ,KACjB,CAAA,CAAA,CAGF,IAAMoQ,CAAAA,CAAO,IAAA,CAAK,UAAU,CAC1B,YAAA,CAAc,SACd,cAAA,CAAAoQ,CAAAA,CACA,gBAAAC,CACF,CAAC,CAAA,CACD,OAAO,CAAC,CAAC,cAAe,CACtB,EAAA,CAAI,kBAAA,CACJ,cAAA,CAAgB,CAAC3pB,CAAS,EAC1B,sBAAA,CAAwB,EAAC,CACzB,IAAA,CAAAsZ,CACF,CAAC,CAAc,CACjB,CAAA,CACA,SAAY,CACV,MAAM9P,EAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAAA,CAChC,CAAC,gBAAA,CAAkB,YAAA,CAAcA,CAAQ,EACzC,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMA,CAAQ,CACxC,CAAC,EACH,CAAA,CACAwH,EACA,QAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CC1BA,SAAS+uC,EAAAA,CACPllD,EACA2B,CAAAA,CACA8V,CAAAA,CACoB,CACpB,GAAM,CAAE,IAAA,CAAA1F,EAAM,EAAA,CAAAC,CAAAA,CAAK,EAAA,CAAI,MAAA,CAAArT,CAAAA,CAAS,EAAA,CAAI,KAAA2S,CAAAA,CAAO,EAAG,EAAImG,CAAAA,CAC5Cuf,CAAAA,CAAYvf,EAAQ,UAAA,EAAe,IAAA,CAAK,GAAA,EAAI,GAAM,CAAA,CAExD,OAAQzX,GACN,KAAK,MAAA,CACH,OAAQ2B,CAAAA,EACN,gBACE,OAAO,CAAC40B,EAAAA,CAAgBxkB,CAAAA,CAAMC,CAAAA,CAAIrT,CAAAA,CAAQ2S,CAAI,CAAC,CAAA,CACjD,KAAA,iBAAA,CACE,OAAO,CAACwlB,EAAAA,CAAyB/kB,EAAMC,CAAAA,CAAIrT,CAAAA,CAAQ2S,CAAI,CAAC,CAAA,CAC1D,KAAA,iBAAA,CACE,OAAO,CAACylB,EAAAA,CAA2BhlB,CAAAA,CAAMC,CAAAA,CAAIrT,CAAAA,CAAQ2S,CAAAA,CAAM0lB,CAAS,CAAC,CAAA,CACvE,KAAA,UAAA,CACE,OAAO,CAACG,EAAAA,CAAyBplB,EAAMC,CAAAA,CAAIrT,CAAM,CAAC,CACtD,CACA,MAEF,KAAK,KAAA,CACH,OAAQgD,CAAAA,EACN,KAAA,UAAA,CACE,OAAO,CAAC40B,EAAAA,CAAgBxkB,CAAAA,CAAMC,CAAAA,CAAIrT,CAAAA,CAAQ2S,CAAI,CAAC,CAAA,CACjD,KAAA,iBAAA,CACE,OAAO,CAACwlB,EAAAA,CAAyB/kB,CAAAA,CAAMC,EAAIrT,CAAAA,CAAQ2S,CAAI,CAAC,CAAA,CAC1D,KAAA,iBAAA,CACE,OAAO,CAACylB,EAAAA,CAA2BhlB,CAAAA,CAAMC,CAAAA,CAAIrT,CAAAA,CAAQ2S,CAAAA,CAAM0lB,CAAS,CAAC,CAAA,CACvE,KAAA,gBAAA,CACE,OAAOE,EAAAA,CAAsBnlB,CAAAA,CAAMC,EAAIrT,CAAAA,CAAQ2S,CAAAA,CAAM0lB,CAAS,CAAA,CAChE,KAAA,SAAA,CACE,OAAO,CAACc,EAAAA,CAAe/lB,CAAAA,CAAMpT,EAAQ,IAAA,CAAK,KAAA,CAAM,KAAK,GAAA,EAAI,CAAI,GAAI,CAAC,CAAC,CACvE,CACA,MAEF,KAAK,IAAA,CACH,OAAQgD,CAAAA,EACN,kBACE,OAAO,CAACy1B,EAAAA,CAAuBrlB,CAAAA,CAAMpT,CAAM,CAAC,EAC9C,KAAA,UAAA,CACE,OAAO,CAAC24B,EAAAA,CAA6BvlB,CAAAA,CAAMC,CAAAA,CAAIrT,CAAM,CAAC,CAAA,CACxD,KAAA,iBAAA,CACE,OAAO,CAAC84B,EAAAA,CACNhgB,EAAQ,YAAA,EAAgB1F,CAAAA,CACxB0F,CAAAA,CAAQ,UAAA,EAAczF,CAAAA,CACtByF,CAAAA,CAAQ,SAAW,CAAA,CACnBA,CAAAA,CAAQ,SAAA,EAAa,KACvB,CAAC,CACL,CACA,MAEF,KAAK,SACH,GAAI9V,CAAAA,GAAc,YAA2BA,CAAAA,GAAc,MAAA,CACzD,OAAO,CAACq8B,EAAAA,CAAqBjsB,CAAAA,CAAMC,EAAIrT,CAAAA,CAAQ2S,CAAI,CAAC,CAAA,CAEtD,KACJ,CAEA,OAAO,IACT,CAEA,SAAS6zC,EAAAA,CACPnlD,CAAAA,CACA2B,CAAAA,CACA8V,EACoB,CACpB,GAAM,CAAE,IAAA,CAAA1F,CAAAA,CAAM,GAAAC,CAAAA,CAAK,EAAA,CAAI,MAAA,CAAArT,CAAAA,CAAS,EAAG,CAAA,CAAI8Y,EACjC0nC,CAAAA,CAAW,OAAOxgD,CAAAA,EAAW,QAAA,EAAYA,CAAAA,CAAO,QAAA,CAAS,GAAG,CAAA,CAC9DA,CAAAA,CAAO,KAAA,CAAM,GAAG,CAAA,CAAE,CAAC,EACnB,MAAA,CAAOA,CAAM,EAEjB,OAAQgD,CAAAA,EACN,KAAA,UAAA,CACE,OAAO,CAACq2B,EAAAA,CAAcjmB,CAAAA,CAAM,UAAA,CAAY,CACtC,MAAA,CAAQ/R,CAAAA,CAAO,EAAA,CAAAgS,CAAAA,CAAI,QAAA,CAAAmtC,CAAAA,CAAU,KAAM1nC,CAAAA,CAAQ,IAAA,EAAQ,EACrD,CAAC,CAAC,CAAA,CACJ,aACE,OAAO,CAACugB,EAAAA,CAAcjmB,CAAAA,CAAM,OAAA,CAAS,CAAE,OAAQ/R,CAAAA,CAAO,EAAA,CAAAgS,CAAAA,CAAI,QAAA,CAAAmtC,CAAS,CAAC,CAAC,CAAA,CACvE,KAAA,SAAA,CACE,OAAO,CAACnnB,EAAAA,CAAcjmB,CAAAA,CAAM,UAAW,CAAE,MAAA,CAAQ/R,CAAAA,CAAO,EAAA,CAAAgS,CAAAA,CAAI,QAAA,CAAAmtC,CAAS,CAAC,CAAC,EACzE,KAAA,UAAA,CACE,OAAO,CAACnnB,EAAAA,CAAcjmB,CAAAA,CAAM,UAAA,CAAY,CAAE,MAAA,CAAQ/R,CAAAA,CAAO,GAAAgS,CAAAA,CAAI,QAAA,CAAAmtC,CAAS,CAAC,CAAC,CAAA,CAC1E,kBACE,OAAO,CAACnnB,EAAAA,CAAcjmB,CAAAA,CAAM,YAAA,CAAc,CAAE,OAAQ/R,CAAAA,CAAO,IAAA,CAAMgS,EAAI,QAAA,CAAAmtC,CAAS,CAAC,CAAC,CAAA,CAClF,KAAA,OAAA,CACE,OAAO,CAAC/mB,EAAAA,CAAmBrmB,EAAM,CAAC/R,CAAK,CAAC,CAAC,CAC7C,CAEA,OAAO,IACT,CAMA,SAASolD,EAAAA,CAA4BzjD,CAAAA,CAA2C,CAC9E,OAAIA,CAAAA,GAAc,OAAA,CACT,UAEF,QACT,CAaO,SAAS0jD,EAAAA,CACd92C,CAAAA,CACAvO,CAAAA,CACA2B,CAAAA,CACAoU,CAAAA,CACAI,CAAAA,CACA,CACA,GAAM,CAAE,WAAA,CAAa88B,CAAe,CAAA,CAAI9F,EAAAA,CAAgB,kBACtD5+B,CAAAA,CACA5M,CACF,CAAA,CAEA,OAAO0V,CAAAA,CACL,CAAC,iBAAkBrX,CAAAA,CAAO2B,CAAS,EACnC4M,CAAAA,CACCkJ,CAAAA,EAAY,CAEX,IAAM6tC,CAAAA,CAAUJ,EAAAA,CAAoBllD,CAAAA,CAAO2B,CAAAA,CAAW8V,CAAO,EAC7D,GAAI6tC,CAAAA,CAAS,OAAOA,CAAAA,CAGpB,IAAMC,CAAAA,CAAYJ,GAAsBnlD,CAAAA,CAAO2B,CAAAA,CAAW8V,CAAO,CAAA,CACjE,GAAI8tC,CAAAA,CAAW,OAAOA,CAAAA,CAEtB,MAAM,IAAI,KAAA,CAAM,CAAA,qDAAA,EAAmDvlD,CAAK,CAAA,aAAA,EAAgB2B,CAAS,CAAA,CAAA,CAAG,CACtG,CAAA,CACA,IAAM,CACJsxC,CAAAA,EAAe,CAEf,IAAMwR,CAAAA,CAA6C,EAAC,CAGpDA,EAAiB,IAAA,CAAK,CAAC,gBAAA,CAAkB,YAAA,CAAcl2C,CAAAA,CAAUvO,CAAK,CAAC,CAAA,CAEnEA,CAAAA,GAAU,QACZykD,CAAAA,CAAiB,IAAA,CAAK,CAAC,gBAAA,CAAkB,YAAA,CAAcl2C,CAAAA,CAAU,IAAI,CAAC,CAAA,CAIxEk2C,EAAiB,IAAA,CAAK,CAAC,QAAA,CAAU,WAAA,CAAa,IAAA,CAAMl2C,CAAQ,CAAC,CAAA,CAG7D,UAAA,CAAW,IAAM,CACfk2C,CAAAA,CAAiB,OAAA,CAAS5mD,GAAQ,CAChCsd,CAAAA,GAAiB,iBAAA,CAAkB,CAAE,SAAUtd,CAAI,CAAC,EACtD,CAAC,EACH,CAAA,CAAG,GAAI,EACT,CAAA,CACAkY,CAAAA,CACAqvC,EAAAA,CAA4BzjD,CAAS,CAAA,CACrC,CAAE,aAAA,CAAAwU,CAAc,CAClB,CACF,CClMO,SAASqvC,GACdj3C,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,QAAA,CAAU,aAAa,CAAA,CACxB9I,CAAAA,CACA,CAAC,CAAE,GAAAyD,CAAAA,CAAI,KAAA,CAAAumB,CAAM,CAAA,GAAM,CACjBF,EAAAA,CAAkB9pB,EAAWyD,CAAAA,CAAIumB,CAAK,CACxC,CAAA,CACA,MAAOmG,CAAAA,CAASxJ,IAAc,CAC5B,MAAMnd,EAAyBhC,CAAAA,EAAM,OAAA,CAASI,EAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,EAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,EAAE,CAAA,CACpCjY,CAAAA,CAAU,gBAAgB,OAAA,CAAQ1O,CAAS,CAAA,CAC3C0O,CAAAA,CAAU,eAAA,CAAgB,OAAA,CAAQiY,EAAU,EAAE,CAChD,CAAC,EACH,CAAA,CACAnf,EACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CC0BO,SAASsvC,EAAAA,CACdl3C,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,WAAA,CAAa,MAAM,CAAA,CACpB9I,CAAAA,CACA,CAAC,CAAE,OAAA,CAAAwS,EAAS,OAAA,CAAAoY,CAAQ,IAAM,CACxBD,EAAAA,CAAmB3qB,CAAAA,CAAWwS,CAAAA,CAASoY,CAAO,CAChD,EACA,SAAY,CAEV,GAAI,CAEEpjB,CAAAA,EAAM,OAAA,EAAS,mBACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,iBAAA,CAAkB,CACnCkH,CAAAA,CAAU,SAAS,IAAA,CAAK1O,CAAQ,EAChC0O,CAAAA,CAAU,SAAA,CAAU,MAAM1O,CAAQ,CACpC,CAAC,EAEL,CAAA,MAASzN,CAAAA,CAAO,CAEd,OAAA,CAAQ,IAAA,CAAK,qDAAA,CAAuDA,CAAK,EAC3E,CACF,EACAiV,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CChFO,SAASuvC,GACdn3C,CAAAA,CACAwH,CAAAA,CACAI,EACA,CACA,OAAOkB,CAAAA,CACL,CAAC,WAAA,CAAa,OAAO,EACrB9I,CAAAA,CACA,CAAC,CAAE,KAAA,CAAA5L,CAAM,CAAA,GAAM,CACby2B,EAAAA,CAAoB7qB,CAAAA,CAAW5L,CAAK,CACtC,CAAA,CACA,SAAY,CACNoT,CAAAA,EAAM,OAAA,EAAS,mBACjB,MAAMA,CAAAA,CAAK,QAAQ,iBAAA,CAAkB,CACnCkH,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK1O,CAAQ,EAChC0O,CAAAA,CAAU,SAAA,CAAU,KAAA,EACtB,CAAC,EAEL,EACAlH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CCMA,SAASwvC,EAAAA,CAAeC,CAAAA,CAA0B,CAChD,OAAO,CACL,KAAA,CAAOA,CAAAA,CAAE,YAAA,CACT,YAAA,CAAcA,CAAAA,CAAE,aAAA,CAChB,IAAKA,CAAAA,CAAE,GAAA,CACP,KAAA,CAAO,CACL,oBAAA,CAAsB,CAAA,EAAA,CAAIA,EAAE,oBAAA,CAAuB,GAAA,EAAM,OAAA,CAAQ,CAAC,CAAC,CAAA,KAAA,CAAA,CACnE,uBAAwB,CAAA,CACxB,kBAAA,CAAoBA,CAAAA,CAAE,UACxB,CAAA,CACA,iBAAA,CAAmB,CACjB,IAAA,CAAM,CAAA,EAAGA,CAAAA,CAAE,UAAA,CAAW,OAAA,CAAQ,CAAC,CAAC,CAAA,IAAA,CAClC,CAAA,CACA,mCAAA,CAAqC,CAAA,CACrC,eAAA,CAAiBA,CAAAA,CAAE,QACnB,WAAA,CAAaA,CAAAA,CAAE,YACf,wBAAA,CAA0BA,CAAAA,CAAE,gBAC5B,IAAA,CAAMA,CAAAA,CAAE,IAAA,CACR,KAAA,CAAOA,CAAAA,CAAE,KAAA,CACT,WAAYA,CAAAA,CAAE,UAAA,CACd,uBAAA,CAAyBA,CAAAA,CAAE,uBAAA,CAC3B,UAAA,CAAYA,EAAE,UAAA,CACd,iBAAA,CAAmBA,CAAAA,CAAE,iBAAA,CACrB,wBAAA,CAA0BA,CAAAA,CAAE,wBAC9B,CACF,CAUO,SAASC,EAAAA,CAAiCtrD,CAAAA,CAAe,CAC9D,OAAOotB,+BAAAA,CAML,CACA,QAAA,CAAU1K,CAAAA,CAAU,SAAA,CAAU,KAAK1iB,CAAK,CAAA,CACxC,gBAAA,CAAkB,CAAA,CAElB,OAAA,CAAS,MAAO,CAAE,SAAA,CAAAqtB,CAAU,CAAA,GAAA,CACR,MAAMzc,EAAAA,CACtB,OAAA,CACA,aACA,CACE,WAAA,CAAa5Q,EACb,IAAA,CAAMqtB,CACR,CACF,CAAA,EAEgB,SAAA,CAAU,GAAA,CAAI+9B,EAAc,CAAA,CAG9C,gBAAA,CAAkB,CAAC79B,CAAAA,CAAUm4B,CAAAA,CAAWC,CAAAA,GACtCp4B,CAAAA,CAAS,MAAA,GAAWvtB,CAAAA,CAAQ2lD,EAAgB,CAAA,CAAI,MACpD,CAAC,CACH,CAuBO,SAAS4F,GACd/kC,CAAAA,CACAC,CAAAA,CACAC,EACA9B,CAAAA,CAA8B,OAAA,CAC9B+B,EAAuC,MAAA,CACvC,CACA,OAAOlE,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,SAAA,CAAU,MAAA,CAAO8D,CAAAA,CAASC,CAAAA,CAAMC,CAAAA,CAAU9B,CAAAA,CAAM+B,CAAS,CAAA,CAC7E,OAAA,CAAS,MAAO,CAAE,MAAA,CAAA7d,CAAO,IACf,MAAM8H,EAAAA,CACZ,QACA,kCAAA,CACA,CACE,eAAgB4V,CAAAA,CAChB,WAAA,CAAaE,CAAAA,CACb,IAAA,CAAAD,CAAAA,CACA,IAAA,CAAA7B,EACA,SAAA,CAAA+B,CACF,CAAA,CACA,MAAA,CACA,MAAA,CACA7d,CACF,EAEF,OAAA,CAAS,CAAC,CAAC0d,CAAAA,CACX,SAAA,CAAW,GACb,CAAC,CACH,CAOO,SAASglC,EAAAA,CAAiChlC,CAAAA,CAAiB,CAChE,OAAO/D,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,SAAA,CAAU,WAAW8D,CAAO,CAAA,CAChD,OAAA,CAAS,SACC,MAAM5V,EAAAA,CACZ,QACA,wCAAA,CACA,CAAE,cAAA,CAAgB4V,CAAQ,CAC5B,CAAA,CAEF,QAAS,CAAC,CAACA,EACX,SAAA,CAAW,GACb,CAAC,CACH,CC3KO,IAAKilC,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAAA,CAAAA,CAAA,OAAA,CAAU,IAAV,SAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,KAAA,CAAQ,EAAA,CAAA,CAAR,OAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,cAAgB,EAAA,CAAA,CAAhB,eAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,IAAA,CAAO,GAAA,CAAA,CAAP,MAAA,CACAA,IAAA,OAAA,CAAU,GAAA,CAAA,CAAV,SAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,IAAA,CAAO,GAAA,CAAA,CAAP,OACAA,CAAAA,CAAAA,CAAAA,CAAA,MAAA,CAAS,GAAA,CAAA,CAAT,QAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,UAAA,CAAa,KAAb,YAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,QAAA,CAAW,GAAA,CAAA,CAAX,UAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,UAAY,GAAA,CAAA,CAAZ,WAAA,CACAA,CAAAA,CAAAA,CAAAA,CAAA,aAAA,CAAgB,GAAA,CAAA,CAAhB,eAAA,CACAA,IAAA,iBAAA,CAAoB,GAAA,CAAA,CAApB,oBACAA,CAAAA,CAAAA,CAAAA,CAAA,MAAA,CAAS,KAAT,QAAA,CAWAA,CAAAA,CAAAA,CAAAA,CAAA,MAAA,CAAS,GAAA,CAAA,CAAT,QAAA,CAxBUA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,ICiBZ,eAAsBC,EAAAA,CACpB13C,EACAoJ,CAAAA,CACA,CACA,GAAI,CAACpJ,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,sDAAiD,EAGnE,GAAI,CAACoJ,EACH,MAAM,IAAI,KAAA,CAAM,uDAAkD,CAAA,CAIpE,IAAM5L,EAAW,MADAwQ,CAAAA,EAAc,CAE7B3D,CAAAA,CAAO,cAAA,CAAiB,2BAAA,CACxB,CACE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,EACA,IAAA,CAAM,IAAA,CAAK,UAAU,CAAE,IAAA,CAAMjB,CAAY,CAAC,CAC5C,CACF,CAAA,CAGMm7B,CAAAA,CAAAA,CAAe/mC,CAAAA,CAAS,QAAQ,GAAA,CAAI,cAAc,CAAA,EAAK,EAAA,EAC1D,KAAA,CAAM,GAAG,EAAE,CAAC,CAAA,CACZ,IAAA,EAAK,CACL,WAAA,EAAY,CACTjD,EAAO,MAAMiD,CAAAA,CAAS,MAAK,CAEjC,GAAI,CAACA,CAAAA,CAAS,EAAA,CAAI,CAChB,GAAIA,CAAAA,CAAS,MAAA,GAAW,IACtB,GAAI,CACF,OAAO,IAAA,CAAK,KAAA,CAAMjD,CAAI,CACxB,CAAA,KAAQ,CACN,OAAO,CAAE,OAAA,CAASA,CAAAA,CAAM,KAAMiD,CAAAA,CAAS,MAAO,CAChD,CAKF,IAAMgnC,EACJjqC,CAAAA,EAAQgqC,CAAAA,CAAY,QAAA,CAAS,MAAM,CAAA,CAAI,CAAA,EAAA,EAAKhqC,EAAK,KAAA,CAAM,CAAA,CAAG,GAAG,CAAC,CAAA,CAAA,CAAK,EAAA,CACrE,MAAM,IAAI,KAAA,CACR,CAAA,+CAAA,EAA6CiD,CAAAA,CAAS,MAAM,CAAA,EAAGgnC,CAAM,CAAA,CACvE,CACF,CAEA,GAAI,CAACD,EAAY,QAAA,CAAS,MAAM,CAAA,CAC9B,MAAM,IAAI,KAAA,CACR,2DAAsDA,CAAAA,EAAe,OAAO,CAAA,mBAAA,EAAsB/mC,CAAAA,CAAS,MAAM,CAAA,CAAA,CACnH,EAGF,GAAI,CACF,OAAO,IAAA,CAAK,KAAA,CAAMjD,CAAI,CACxB,CAAA,KAAQ,CACN,MAAM,IAAI,KAAA,CACR,+DAA0DiD,CAAAA,CAAS,MAAM,CAAA,CAAA,CAC3E,CACF,CACF,CAEO,SAASm6C,EAAAA,CACd33C,CAAAA,CACAoJ,CAAAA,CACAJ,CAAAA,CACA6d,CAAAA,CACA,CACA,GAAM,CAAE,WAAA,CAAa6d,CAAe,CAAA,CAAI9F,EAAAA,CAAgB,iBAAA,CACtD5+B,EACA,gBACF,CAAA,CAEA,OAAOiJ,sBAAAA,CAAY,CACjB,UAAA,CAAY,IAAMyuC,EAAAA,CAAmB13C,CAAAA,CAAUoJ,CAAW,CAAA,CAC1D,OAAA,CAAAyd,CAAAA,CACA,UAAW,IAAM,CACf6d,CAAAA,EAAe,CAEf93B,CAAAA,EAAe,CAAE,aACfgnC,EAAAA,CAAsB5zC,CAAQ,CAAA,CAAE,QAAA,CAC/BtR,CAAAA,EACMA,CAAAA,EAIE,CACL,GAAGA,CAAAA,CACH,QACE,UAAA,CAAWA,CAAAA,CAAK,MAAM,CAAA,CAAI,UAAA,CAAWA,CAAAA,CAAK,OAAO,CAAA,EACjD,OAAA,CAAQ,CAAC,CAAA,CACX,OAAA,CAAS,GACX,CAEJ,CAAA,CAEAsa,CAAAA,KACF,CACF,CAAC,CACH,CC/GA,IAAM4uC,EAAAA,CAAY,yBACZC,EAAAA,CAAU,sBAAA,CACVC,GAAc,0BAAA,CACdC,EAAAA,CAAS,sBAKR,IAAKC,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,GAAA,CAAM,EAAA,CACNA,CAAAA,CAAA,KAAO,MAAA,CACPA,CAAAA,CAAA,OAAA,CAAU,SAAA,CAHAA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,CAAA,CAMCC,GAAkB,CAAA,CAIlBC,EAAAA,CAA0B,IAQvC,SAASC,EAAAA,CAAWltD,CAAAA,CAAuB,CACzC,OAAOA,CAAAA,CAAM,MAAK,CAAE,KAAA,CAAM,KAAK,CAAA,CAAE,CAAC,CAAA,EAAK,EACzC,CAMO,SAASmtD,GAAsBntD,CAAAA,CAAuB,CAC3D,OAAOktD,EAAAA,CAAWltD,CAAK,CAAA,CAAE,QAAQ,KAAA,CAAO,EAAE,CAAA,CAAE,WAAA,EAC9C,CAEO,SAASotD,EAAAA,CAAwBptD,CAAAA,CAAuB,CAG7D,OAAOktD,EAAAA,CAAWltD,CAAK,CAAA,CAAE,OAAA,CAAQ,KAAA,CAAO,EAAE,CAAA,CAAE,WAAA,EAC9C,CAMO,SAASqtD,EAAAA,CAAoBrtD,CAAAA,CAAyB,CAC3D,IAAMstD,EAAO,IAAI,GAAA,CAEjB,OAAOttD,CAAAA,CACJ,KAAA,CAAM,QAAQ,EACd,GAAA,CAAKqW,CAAAA,EAAQA,EAAI,OAAA,CAAQ,KAAA,CAAO,EAAE,CAAA,CAAE,WAAA,EAAa,CAAA,CACjD,MAAA,CAAQA,CAAAA,EACHA,IAAQ,EAAA,EAAMi3C,CAAAA,CAAK,GAAA,CAAIj3C,CAAG,CAAA,CACrB,KAAA,EAGTi3C,EAAK,GAAA,CAAIj3C,CAAG,CAAA,CACL,IAAA,CACR,CACL,CA0BO,SAASk3C,EAAAA,CAAiB,CAC/B,OAAAC,CAAAA,CAAS,EAAA,CACT,OAAAnoC,CAAAA,CAAS,EAAA,CACT,IAAA,CAAAtL,CAAAA,CAAO,EAAA,CACP,QAAA,CAAA0zC,EAAW,EAAA,CACX,IAAA,CAAAv8B,CAAAA,CAAO,EACT,CAAA,CAAuC,CACrC,IAAMw8B,CAAAA,CAAmBF,CAAAA,CAAO,IAAA,EAAK,CAAE,OAAA,CAAQ,OAAQ,GAAG,CAAA,CACpDt2B,EAAmBi2B,EAAAA,CAAsB9nC,CAAM,EAC/CsoC,CAAAA,CAAqBP,EAAAA,CAAwBK,CAAQ,CAAA,CACrDG,CAAAA,CAAiBP,EAAAA,CAAoB,MAAM,OAAA,CAAQn8B,CAAI,CAAA,CAAIA,CAAAA,CAAK,IAAA,CAAK,GAAG,EAAIA,CAAI,CAAA,CAEhFnmB,CAAAA,CAAQ,CAAC2iD,CAAgB,CAAA,CAE/B,OAAIx2B,CAAAA,EACFnsB,CAAAA,CAAM,IAAA,CAAK,CAAA,OAAA,EAAUmsB,CAAgB,CAAA,CAAE,EAGrCnd,CAAAA,EACFhP,CAAAA,CAAM,IAAA,CAAK,CAAA,KAAA,EAAQgP,CAAI,CAAA,CAAE,EAGvB4zC,CAAAA,EACF5iD,CAAAA,CAAM,IAAA,CAAK,CAAA,SAAA,EAAY4iD,CAAkB,CAAA,CAAE,EAGzCC,CAAAA,CAAe,MAAA,CAAS,CAAA,EAG1B7iD,CAAAA,CAAM,IAAA,CAAK,CAAA,IAAA,EAAO6iD,EAAe,IAAA,CAAK,GAAG,CAAC,CAAA,CAAE,CAAA,CAGvC,CAGL,CAAA,CAAG7iD,CAAAA,CAAM,MAAA,CAAQ8iD,CAAAA,EAASA,CAAAA,GAAS,EAAE,EAAE,IAAA,CAAK,GAAG,CAAA,CAC/C,MAAA,CAAQH,CAAAA,CACR,MAAA,CAAQx2B,EACR,IAAA,CAAAnd,CAAAA,CACA,QAAA,CAAU4zC,CAAAA,CACV,IAAA,CAAMC,CACR,CACF,CAEO,IAAME,GAAN,KAAkB,CAChB,MAAgB,EAAA,CAChB,MAAA,CAAiB,EAAA,CACjB,MAAA,CAAiB,EAAA,CACjB,IAAA,CAAmB,GACnB,QAAA,CAAmB,EAAA,CACnB,IAAA,CAAiB,EAAC,CAEzB,WAAA,CAAYC,EAAgB,CAC1B,IAAA,CAAK,KAAA,CAAQA,CAAAA,CACb,IAAA,CAAK,MAAA,CAASA,EAEd,IAAA,CAAK,UAAA,GACL,IAAA,CAAK,QAAA,GACL,IAAA,CAAK,YAAA,EAAa,CAClB,IAAA,CAAK,QAAA,EAAS,CACd,KAAK,UAAA,GACP,CAEQ,IAAA,CAAQC,CAAAA,EAAuB,CAErC,IAAMC,CAAAA,CAAU,CAAC,GAAG,IAAA,CAAK,KAAA,CAAM,QAAA,CAASD,CAAE,CAAC,CAAA,CAC3C,OAAIC,CAAAA,CAAQ,MAAA,CAAS,EACZA,CAAAA,CAAQ,CAAC,CAAA,CAAE,CAAK,CAAA,CAAE,IAAA,GAGpB,EACT,CAAA,CAEQ,UAAA,CAAa,IAAM,CACzB,IAAA,CAAK,OAAS,IAAA,CAAK,IAAA,CAAKtB,EAAS,EACnC,CAAA,CAEQ,QAAA,CAAW,IAAM,CACvB,IAAM5yC,EAAO,IAAA,CAAK,IAAA,CAAK6yC,EAAO,CAAA,CAC1B,MAAA,CAAO,MAAA,CAAOG,EAAU,CAAA,CAAE,QAAA,CAAShzC,CAAI,CAAA,GACzC,IAAA,CAAK,IAAA,CAAOA,CAAAA,EAEhB,CAAA,CAEQ,YAAA,CAAe,IAAM,CAC3B,IAAA,CAAK,QAAA,CAAW,IAAA,CAAK,IAAA,CAAK8yC,EAAW,EACvC,CAAA,CAEQ,QAAA,CAAW,IAAM,CAOvB,IAAMS,EAAO,IAAI,GAAA,CAEjB,IAAA,CAAK,IAAA,CAAO,CAAC,GAAG,KAAK,KAAA,CAAM,QAAA,CAASR,EAAM,CAAC,CAAA,CACxC,OAAA,CAAStsC,GAAUA,CAAAA,CAAM,CAAK,CAAA,CAAE,KAAA,CAAM,GAAG,CAAC,EAC1C,GAAA,CAAKnK,CAAAA,EAAQA,EAAI,IAAA,EAAM,EACvB,MAAA,CAAQA,CAAAA,EACHA,CAAAA,GAAQ,EAAA,EAAMi3C,CAAAA,CAAK,GAAA,CAAIj3C,CAAG,CAAA,CACrB,KAAA,EAGTi3C,CAAAA,CAAK,GAAA,CAAIj3C,CAAG,CAAA,CACL,KACR,EACL,CAAA,CAEQ,UAAA,CAAa,IAAM,CAOzB,IANA,CAACs2C,EAAAA,CAAWC,EAAAA,CAASC,EAAAA,CAAaC,EAAM,CAAA,CAAE,OAAA,CAASzpD,GAAM,CAGvD,IAAA,CAAK,MAAA,CAAS,IAAA,CAAK,MAAA,CAAO,OAAA,CAAQA,EAAG,IAAI,EAC3C,CAAC,CAAA,CAEM,IAAA,CAAK,MAAA,CAAO,QAAQ,IAAI,CAAA,GAAM,EAAA,EACnC,IAAA,CAAK,MAAA,CAAS,IAAA,CAAK,OAAO,OAAA,CAAQ,IAAA,CAAM,GAAG,CAAA,CAG7C,IAAA,CAAK,OAAS,IAAA,CAAK,MAAA,CAAO,IAAA,GAC5B,CACF,EC5MA,eAAsBypC,GACpBv6B,CAAAA,CAQA8kB,CAAAA,CACY,CA+BZ,IAAM5zB,CAAAA,CAAO,KAAA,CA9BK,SAA8B,CAK9C,IAAIsrB,EACJ,GAAI,CACFA,EAAM,MAAMxc,CAAAA,CAAS,IAAA,GACvB,CAAA,KAAQ,CACN,MACF,CAEA,GAAIwc,CAAAA,GAAQ,EAAA,CAIZ,GAAI,CACF,OAAO,IAAA,CAAK,KAAA,CAAMA,CAAG,CACvB,CAAA,KAAQ,CAQN,OAAOxc,CAAAA,CAAS,EAAA,CAAK,OAAYwc,CACnC,CACF,IAE6B,CAC7B,GAAI,CAACxc,CAAAA,CAAS,EAAA,CAAI,CAChB,IAAMjL,CAAAA,CAAQ,IAAI,KAAA,CAAM,CAAA,2BAAA,EAA8BiL,CAAAA,CAAS,MAAM,EAAE,CAAA,CACvE,MAAAjL,CAAAA,CAAM,MAAA,CAASiL,CAAAA,CAAS,MAAA,CACxBjL,EAAM,IAAA,CAAO7D,CAAAA,CACP6D,CACR,CAEA,GAAI7D,IAAS,MAAA,EAAc4zB,CAAAA,GAAY,MAAA,EAAa,CAACA,CAAAA,CAAQ5zB,CAAI,EAC/D,MAAM,IAAI,KAAA,CAAM,kEAAkE,CAAA,CAGpF,OAAOA,CACT,CAMO,SAASyqD,EAAAA,CAAiBzqD,CAAAA,CAAwB,CACvD,OACE,OAAOA,CAAAA,EAAS,QAAA,EAChBA,IAAS,IAAA,EACT,KAAA,CAAM,QAASA,CAAAA,CAA+B,OAAO,CAEzD,CCrEA,IAAM0qD,EAAAA,CAAcC,mBAAAA,CAAW,CAAA,CAAI,CAAA,CAe5B,SAASC,EAAAA,CAAkBC,CAAAA,CAAsBhnD,CAAAA,CAAuB,CAC7E,GAAM,CAAE,OAAA6M,CAAO,CAAA,CAAI7M,EACbinD,CAAAA,CAAcp6C,CAAAA,GAAW,KAAOA,CAAAA,GAAW,GAAA,CAEjD,OAAIA,CAAAA,GAAW,MAAA,EAAaA,CAAAA,EAAU,KAAOA,CAAAA,CAAS,GAAA,EAAO,CAACo6C,CAAAA,CACrD,KAAA,CAGFD,CAAAA,CAAeH,EACxB,CC7BO,SAASK,EAAAA,CACdznC,CAAAA,CACApB,CAAAA,CACAqB,CAAAA,CACAC,EACAwnC,CAAAA,CACAtnC,CAAAA,CACA,CACA,OAAO3D,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,MAAA,CAAO,OAAA,CAAQsD,CAAAA,CAAGpB,CAAAA,CAAMqB,EAASC,CAAAA,CAAOwnC,CAAAA,CAAWtnC,CAAK,CAAA,CAC5E,OAAA,CAAS,MAAO,CAAE,MAAA,CAAAtd,CAAO,CAAA,GAAM,CAC7B,IAAMpG,CAAAA,CAOF,CAAE,CAAA,CAAAsjB,CAAAA,CAAG,IAAA,CAAApB,CAAAA,CAAM,QAAA,CAAUqB,CAAQ,EAE7BC,CAAAA,GAAOxjB,CAAAA,CAAK,KAAA,CAAQwjB,CAAAA,CAAAA,CACpBwnC,CAAAA,GAAWhrD,CAAAA,CAAK,UAAYgrD,CAAAA,CAAAA,CAC5BtnC,CAAAA,GAAO1jB,CAAAA,CAAK,KAAA,CAAQ0jB,CAAAA,CAAAA,CAExB,IAAM5U,EAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,cAAA,CAAiB,oBAAA,CAAsB,CACzE,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAAA,CAChB,kBAAmBA,CAAAA,CAAO,QAC5B,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAAA,CACzB,MAAA,CAAQ+a,EAAAA,CAAkBM,EAAAA,CAAyBjV,CAAM,CAC3D,CAAC,CAAA,CAID,OAAOijC,EAAAA,CAAkCv6B,CAAAA,CAAU27C,EAAgB,CACrE,EACA,KAAA,CAAOG,EACT,CAAC,CACH,CAOO,SAASK,EAAAA,CACdtnC,CAAAA,CACA/Q,CAAAA,CACAua,CAAAA,CAAU,IAAA,CACV,CACA,OAAOzC,+BAAAA,CAML,CACA,QAAA,CAAU1K,CAAAA,CAAU,MAAA,CAAO,mBAAA,CAAoB2D,EAAM/Q,CAAG,CAAA,CACxD,gBAAA,CAAkB,CAAE,GAAA,CAAK,MAAA,CAAW,YAAa,IAAK,CAAA,CAEtD,QAAS,MAAO,CAAE,UAAA+X,CAAAA,CAAW,MAAA,CAAAvkB,CAAO,CAAA,GAAqD,CACvF,GAAI,CAACukB,CAAAA,CAAU,WAAA,CACb,OAAO,CACL,IAAA,CAAM,CAAA,CACN,KAAM,CAAA,CACN,OAAA,CAAS,EACX,CAAA,CAGF,IAAIugC,EACEjiD,CAAAA,CAAM,IAAI,IAAA,CAEhB,OAAQ2J,CAAAA,EACN,KAAK,OAAA,CACHs4C,CAAAA,CAAY,IAAI,IAAA,CAAKjiD,CAAAA,CAAI,OAAA,GAAY,IAAA,CAAU,EAAA,CAAK,GAAI,CAAA,CACxD,MACF,KAAK,OACHiiD,CAAAA,CAAY,IAAI,IAAA,CAAKjiD,CAAAA,CAAI,OAAA,EAAQ,CAAI,MAAc,EAAA,CAAK,GAAI,EAC5D,MACF,KAAK,QACHiiD,CAAAA,CAAY,IAAI,IAAA,CAAKjiD,CAAAA,CAAI,OAAA,EAAQ,CAAI,IAAU,EAAA,CAAK,EAAA,CAAK,GAAI,CAAA,CAC7D,MACF,KAAK,OACHiiD,CAAAA,CAAY,IAAI,IAAA,CAAKjiD,CAAAA,CAAI,OAAA,EAAQ,CAAI,IAAM,EAAA,CAAK,EAAA,CAAK,GAAK,GAAI,CAAA,CAC9D,MACF,QACEiiD,CAAAA,CAAY,OAChB,CAEA,IAAM5nC,CAAAA,CAAI,cACJpB,CAAAA,CAAOyB,CAAAA,GAAS,QAAA,CAAW,UAAA,CAAaA,CAAAA,CACxCH,CAAAA,CAAQ0nC,EAAYA,CAAAA,CAAU,WAAA,EAAY,CAAE,KAAA,CAAM,GAAG,CAAA,CAAE,CAAC,CAAA,CAAI,MAAA,CAC5D3nC,EAAU,GAAA,CACVG,CAAAA,CAAQ9Q,IAAQ,OAAA,CAAU,EAAA,CAAK,GAAA,CAE/B5S,CAAAA,CAOF,CAAE,CAAA,CAAAsjB,EAAG,IAAA,CAAApB,CAAAA,CAAM,QAAA,CAAUqB,CAAQ,CAAA,CAE7BC,CAAAA,GAAOxjB,EAAK,KAAA,CAAQwjB,CAAAA,CAAAA,CACpBmH,CAAAA,CAAU,GAAA,GAAK3qB,CAAAA,CAAK,SAAA,CAAY2qB,EAAU,GAAA,CAAA,CAC1CjH,CAAO1jB,CAAAA,CAAK,KAAA,CAAQ0jB,CAAAA,CAAAA,CAExB,IAAM5U,EAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,cAAA,CAAiB,oBAAA,CAAsB,CACzE,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAAA,CAChB,iBAAA,CAAmBA,EAAO,QAC5B,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,EACzB,MAAA,CAAQ+a,EAAAA,CAAkBM,GAAyBjV,CAAM,CAC3D,CAAC,CAAA,CAID,OAAOijC,EAAAA,CAAkCv6B,CAAAA,CAAU27C,EAAgB,CACrE,EAEA,gBAAA,CAAmB17B,CAAAA,GACV,CACL,GAAA,CAAKA,CAAAA,EAAM,SAAA,CACX,YAAaA,CAAAA,CAAK,OAAA,CAAQ,MAAA,CAAS,CACrC,CAAA,CAAA,CAGF,OAAA,CAAA5B,EACA,KAAA,CAAOy9B,EACT,CAAC,CACH,CCzIA,eAAsBb,EAAAA,CACpBzmC,CAAAA,CACApB,EACAqB,CAAAA,CACAC,CAAAA,CACAwnC,CAAAA,CACAtnC,CAAAA,CACAtd,CAAAA,CACyB,CACzB,IAAMpG,CAAAA,CAOF,CAAE,CAAA,CAAAsjB,CAAAA,CAAG,IAAA,CAAApB,CAAAA,CAAM,SAAUqB,CAAQ,CAAA,CAE7BC,IACFxjB,CAAAA,CAAK,KAAA,CAAQwjB,GAEXwnC,CAAAA,GACFhrD,CAAAA,CAAK,SAAA,CAAYgrD,CAAAA,CAAAA,CAEftnC,CAAAA,GACF1jB,CAAAA,CAAK,MAAQ0jB,CAAAA,CAAAA,CAIf,IAAM5U,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,EAAO,cAAA,CAAiB,oBAAA,CAAsB,CAC5E,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAAA,CAChB,kBAAmBA,CAAAA,CAAO,QAC5B,EACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU3b,CAAI,CAAA,CACzB,MAAA,CAAQ+a,GAAkBM,EAAAA,CAAyBjV,CAAM,CAC3D,CAAC,CAAA,CAED,OAAOijC,GAAkCv6B,CAAAA,CAAU27C,EAAgB,CACrE,CAEA,eAAsBU,EAAAA,CACpBvlD,EAQAQ,CAAAA,CACA3H,CAAAA,CAAoB4c,GACK,CAEzB,IAAMvM,EAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,qBAAA,CAAuB,CAC7E,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAAA,CAChB,kBAAmBA,CAAAA,CAAO,QAC5B,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU/V,CAAM,CAAA,CAC3B,MAAA,CAAQmV,GAAkBtc,CAAAA,CAAW2H,CAAM,CAC7C,CAAC,CAAA,CAED,OAAOijC,EAAAA,CAAkCv6B,CAAAA,CAAU27C,EAAgB,CACrE,CAEA,eAAsBW,EAAAA,CAAW9nC,CAAAA,CAAWld,CAAAA,CAAyC,CAEnF,IAAM0I,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,0BAA2B,CACjF,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,eAAgB,kBAAA,CAChB,iBAAA,CAAmBA,CAAAA,CAAO,QAC5B,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CAAE,CAAA,CAAA2H,CAAE,CAAC,CAAA,CAC1B,OAAQvI,EAAAA,CAAkBM,EAAAA,CAAyBjV,CAAM,CAC3D,CAAC,CAAA,CAEKpG,EAAO,MAAMqpC,EAAAA,CAA4Bv6B,CAAAA,CAAU,KAAA,CAAM,OAAO,CAAA,CACtE,OAAO9O,CAAAA,EAAM,MAAA,CAAS,CAAA,CAAIA,CAAAA,CAAO,CAACsjB,CAAC,CACrC,CC7EA,IAAM+nC,EAAAA,CAA2B,IAAA,CAAW,EAAA,CAAK,EAAA,CAAK,IAGhDC,EAAAA,CAAyB,CAAA,CAIzBC,EAAAA,CAA6B,GAAA,CAO7BC,EAAAA,CAAiC,GAAA,CASjCC,GAAoC,GAAA,CAI7BC,EAAAA,CAA6B,EAK1C,SAASC,EAAAA,CAAa9/C,EAAcvO,CAAAA,CAAuB,CACzD,OAAOuO,CAAAA,CACJ,OAAA,CAAQ,uBAAA,CAAyB,GAAG,CAAA,CACpC,OAAA,CAAQ,wBAAA,CAA0B,IAAI,CAAA,CACtC,OAAA,CAAQ,WAAY,GAAG,CAAA,CACvB,OAAA,CAAQ,iBAAA,CAAmB,GAAG,CAAA,CAC9B,QAAQ,MAAA,CAAQ,GAAG,EACnB,IAAA,EAAK,CACL,MAAM,CAAA,CAAGvO,CAAK,CACnB,CAMA,SAASsuD,EAAAA,CAAY3wD,EAAmB,CACtC,IAAI4N,CAAAA,CAAI,IAAA,CACR,IAAA,IAAS1N,CAAAA,CAAI,EAAGA,CAAAA,CAAIF,CAAAA,CAAE,MAAA,CAAQE,CAAAA,EAAAA,CAC5B0N,CAAAA,CAAAA,CAAMA,CAAAA,EAAK,GAAKA,CAAAA,CAAI5N,CAAAA,CAAE,WAAWE,CAAC,CAAA,CAAK,EAEzC,OAAA,CAAQ0N,CAAAA,GAAM,CAAA,EAAG,QAAA,CAAS,EAAE,CAC9B,CAgBO,SAASgjD,EAAAA,CAA8B9/B,CAAAA,CAAc,CAC1D,IAAM+H,CAAAA,CAAQ/H,EAAM,KAAA,EAAS,EAAA,CAKvB+/B,CAAAA,CAAU//B,CAAAA,CAAM,aAAA,EAAe,IAAA,CAC/B0B,GAAQ,KAAA,CAAM,OAAA,CAAQq+B,CAAO,CAAA,CAAIA,CAAAA,CAAU,EAAC,EAAG,MAAA,CAClDl5C,CAAAA,EAAuB,OAAOA,CAAAA,EAAQ,QAAA,EAAYA,IAAQ,EAC7D,CAAA,CACM/G,CAAAA,CAAO8/C,EAAAA,CAAa5/B,CAAAA,CAAM,IAAA,EAAQ,GAAIw/B,EAA0B,CAAA,CAChEQ,CAAAA,CAAaH,EAAAA,CAAY,CAAA,EAAG93B,CAAK,IAAIrG,CAAAA,CAAK,IAAA,CAAK,GAAG,CAAC,CAAA,CAAA,EAAI5hB,CAAI,CAAA,CAAE,CAAA,CAEnE,OAAOkU,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,MAAA,CAAO,cAAA,CAAe+L,CAAAA,CAAM,MAAA,CAAQA,CAAAA,CAAM,QAAA,CAAUggC,CAAU,CAAA,CAClF,OAAA,CAAS,MAAO,CAAE,MAAA,CAAA3lD,CAAO,IAAM,CAG7B,IAAMod,EAAQ,IAAI,IAAA,CAAK,KAAK,GAAA,EAAI,CAAI6nC,EAAwB,CAAA,CAAE,WAAA,EAAY,CAAE,MAAM,CAAA,CAAG,EAAE,CAAA,CAMjFv8C,CAAAA,CAAW,MAAMq8C,EAAAA,CACrB,CACE,MAAA,CAAQp/B,CAAAA,CAAM,MAAA,CACd,QAAA,CAAUA,CAAAA,CAAM,QAAA,CAChB,MAAA+H,CAAAA,CACA,IAAA,CAAAjoB,EACA,IAAA,CAAA4hB,CAAAA,CACA,MAAAjK,CACF,CAAA,CACApd,CAAAA,CAIA,OAAO,MAAA,CAAW,GAAA,CACdolD,GACAC,EACN,CAAA,CAIMO,CAAAA,CAA4B,EAAC,CAC7BC,CAAAA,CAAc,IAAI,GAAA,CACxB,IAAA,IAAWrsD,CAAAA,IAAKkP,CAAAA,CAAS,OAAA,CAAS,CAChC,GAAIk9C,CAAAA,CAAU,MAAA,EAAUV,EAAAA,CAAwB,MAC5C1rD,CAAAA,CAAE,QAAA,GAAamsB,EAAM,QAAA,EAAA,CACpBnsB,CAAAA,CAAE,IAAA,EAAQ,EAAC,EAAG,OAAA,CAAQ,MAAM,CAAA,GAAM,EAAA,GACnCqsD,CAAAA,CAAY,GAAA,CAAIrsD,CAAAA,CAAE,MAAM,IAC5BqsD,CAAAA,CAAY,GAAA,CAAIrsD,CAAAA,CAAE,MAAM,CAAA,CACxBosD,CAAAA,CAAU,KAAKpsD,CAAC,CAAA,CAAA,EAClB,CAEA,OAAOosD,CACT,EAWA,SAAA,CAAW,GAAA,CAAS,GAAA,CAKpB,KAAA,CAAO,KACT,CAAC,CACH,CClJO,SAASE,GAA6B5oC,CAAAA,CAAWhmB,CAAAA,CAAQ,CAAA,CAAG,CACjE,IAAMkuB,CAAAA,CAAalI,EAAE,IAAA,EAAK,CAE1B,OAAOvD,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,MAAA,CAAO,OAAA,CAAQwL,CAAAA,CAAYluB,CAAK,CAAA,CACpD,QAAS,SAAgC,CACvC,IAAMglB,CAAAA,CAAa,MAAMhV,CAAAA,CAAQ,gCAAiC,CAChEke,CAAAA,CACAluB,CACF,CAAC,CAAA,CAED,OAAIglB,EAAU,MAAA,GAAW,CAAA,CAChB,EAAC,CAGHkO,EAAAA,CAAYlO,CAAS,CAC9B,CAAA,CACA,OAAA,CAAS,CAAC,CAACkJ,CACb,CAAC,CACH,CCpBO,SAAS2gC,EAAAA,CAA4B7oC,CAAAA,CAAWhmB,CAAAA,CAAQ,EAAA,CAAI,CACjE,IAAMkuB,EAAalI,CAAAA,CAAE,IAAA,GAErB,OAAOvD,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,MAAA,CAAO,MAAA,CAAOwL,CAAAA,CAAYluB,CAAK,EACnD,OAAA,CAAS,SAAA,CACO,MAAMgQ,CAAAA,CAAQ,iCAAA,CAAmC,CAC7Dke,EACAluB,CAAAA,CAAQ,CACV,CAAC,CAAA,EAGE,GAAA,CAAK0mD,CAAAA,EAAMA,EAAE,IAAI,CAAA,CACjB,OAAQ9gC,CAAAA,EAASA,CAAAA,GAAS,IAAM,CAACA,CAAAA,CAAK,UAAA,CAAW,OAAO,CAAC,CAAA,CACzD,MAAM,CAAA,CAAG5lB,CAAK,CAAA,CAEnB,OAAA,CAAS,CAAC,CAACkuB,CACb,CAAC,CACH,CCjBO,SAAS4gC,EAAAA,CACd9oC,EACApB,CAAAA,CACAqB,CAAAA,CACAC,EACAE,CAAAA,CACAG,CAAAA,CACA,CACA,OAAO6G,+BAAAA,CAAqB,CAC1B,SAAU1K,CAAAA,CAAU,MAAA,CAAO,GAAA,CAAIsD,CAAAA,CAAGpB,CAAAA,CAAMqB,CAAAA,CAASC,EAAOE,CAAAA,CAAOG,CAAW,CAAA,CAC1E,OAAA,CAAS,MAAO,CAAE,UAAA8G,CAAAA,CAAW,MAAA,CAAAvkB,CAAO,CAAA,GAA8D,CAWhG,IAAMoU,CAAAA,CAA4B,CAAE,CAAA,CAAA8I,CAAAA,CAAG,IAAA,CAAApB,CAAAA,CAAM,SAAUqB,CAAQ,CAAA,CAE3DC,CAAAA,GACFhJ,CAAAA,CAAQ,KAAA,CAAQgJ,CAAAA,CAAAA,CAEdmH,IACFnQ,CAAAA,CAAQ,SAAA,CAAYmQ,CAAAA,CAAAA,CAElBjH,CAAAA,GAAU,MAAA,GACZlJ,CAAAA,CAAQ,MAAQkJ,CAAAA,CAAAA,CAEdG,CAAAA,GACFrJ,CAAAA,CAAQ,YAAA,CAAe,CAAA,CAAA,CAGzB,IAAM1L,EAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,cAAA,CAAiB,oBAAA,CAAsB,CACzE,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAAA,CAChB,iBAAA,CAAmBA,EAAO,QAC5B,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAUnB,CAAO,EAC5B,MAAA,CAAQO,EAAAA,CAAkBM,GAAyBjV,CAAM,CAC3D,CAAC,CAAA,CAID,OAAOijC,EAAAA,CAAkCv6B,CAAAA,CAAU27C,EAAgB,CACrE,EACA,gBAAA,CAAkB,MAAA,CAClB,gBAAA,CAAmB5/B,CAAAA,EAA6BA,CAAAA,EAAU,SAAA,CAC1D,QAAS,CAAC,CAACvH,CAAAA,CACX,KAAA,CAAOsnC,EACT,CAAC,CACH,CC1DO,SAASyB,EAAAA,CAA0B/oC,CAAAA,CAAW,CACnD,OAAOvD,uBAAAA,CAAa,CAClB,SAAU,CAAC,QAAA,CAAU,MAAA,CAAQuD,CAAC,CAAA,CAC9B,OAAA,CAAS,SAAY,CACnB,IAAMxU,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,eAAiB,yBAAA,CAA2B,CAC9E,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAAA,CAChB,iBAAA,CAAmBA,CAAAA,CAAO,QAC5B,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CAAE,CAAA,CAAA2H,CAAE,CAAC,CAC5B,CAAC,CAAA,CAED,GAAI,CAACxU,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,oBAAA,EAAuBA,CAAAA,CAAS,MAAM,CAAA,CAAE,EAG1D,IAAM9O,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,IAAA,EAAK,CAEjC,OAAI9O,CAAAA,EAAM,MAAA,CAAS,CAAA,CACVA,CAAAA,CAGF,CAACsjB,CAAC,CACX,CACF,CAAC,CACH,CCnBA,eAAsBgpC,GAA0B3kD,CAAAA,CAAwC,CAEtF,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,cAAA,CAAiB,gCAAiC,CACvF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CAAE,cAAA,CAAgB,kBAAmB,CAAA,CAC9C,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAAhU,CAAK,CAAC,CAC/B,CAAC,CAAA,CAED,GAAI,CAACmH,CAAAA,CAAS,EAAA,CAAI,CAChB,IAAI9O,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,IAAA,GACxB,CAAA,KAAQ,CAER,CACA,IAAMvO,CAAAA,CACHP,CAAAA,EAA+B,OAAA,EAChC,CAAA,kCAAA,EAAqC8O,EAAS,MAAM,CAAA,CAAA,CAChD5D,EAAM,IAAI,KAAA,CAAM3K,CAAO,CAAA,CAC7B,MAAA2K,CAAAA,CAAI,MAAA,CAAS4D,CAAAA,CAAS,MAAA,CACtB5D,EAAI,IAAA,CAAOlL,CAAAA,CACLkL,CACR,CAEA,OAAQ,MAAM4D,EAAS,IAAA,EACzB,CAOO,SAASy9C,EAAAA,CACdj7C,CAAAA,CACA3J,EACA,CACA,IAAMub,CAAAA,CAAO5R,CAAAA,EAAU,OAAA,CAAQ,GAAA,CAAK,EAAE,CAAA,CAEtC,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAQ,QAAA,CAASkD,CAAI,CAAA,CACzC,OAAA,CAAS,IAAM,CACb,GAAI,CAACvb,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,6BAA6B,EAE/C,OAAO2kD,EAAAA,CAA0B3kD,CAAI,CACvC,CAAA,CACA,QAAS,CAAC,CAACub,CAAAA,EAAQ,CAAC,CAACvb,CACvB,CAAC,CACH,CC/CA,eAAsB6kD,EAAAA,CACpB7kD,CAAAA,CACA6S,CAAAA,CAC0B,CAE1B,IAAM1L,CAAAA,CAAW,MADAwQ,GAAc,CACC3D,CAAAA,CAAO,eAAiB,sCAAA,CAAwC,CAC9F,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CAAE,eAAgB,kBAAmB,CAAA,CAC9C,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CACnB,KAAAhU,CAAAA,CACA,mBAAA,CAAqB6S,CAAAA,CAAQ,mBAAA,CAC7B,gBAAA,CAAkBA,CAAAA,CAAQ,gBAC5B,CAAC,CACH,CAAC,CAAA,CAED,GAAI,CAAC1L,CAAAA,CAAS,EAAA,CAAI,CAChB,IAAI9O,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,IAAA,GACxB,CAAA,KAAQ,CAER,CACA,IAAMvO,CAAAA,CACHP,CAAAA,EAA+B,OAAA,EAChC,CAAA,mCAAA,EAAsC8O,EAAS,MAAM,CAAA,CAAA,CACjD5D,EAAM,IAAI,KAAA,CAAM3K,CAAO,CAAA,CAC7B,MAAA2K,CAAAA,CAAI,MAAA,CAAS4D,CAAAA,CAAS,MAAA,CACtB5D,EAAI,IAAA,CAAOlL,CAAAA,CACLkL,CACR,CAEA,OAAQ,MAAM4D,EAAS,IAAA,EACzB,CAOO,SAAS29C,EAAAA,CACd30B,CAAAA,CACAxmB,EACAtR,CAAAA,CACA,CACA,OAAA83B,CAAAA,CAAY,YAAA,CAAa9X,EAAU,OAAA,CAAQ,QAAA,CAAS1O,CAAQ,CAAA,CAAGtR,CAAI,CAAA,CAC5D83B,EAAY,iBAAA,CAAkB,CAAE,QAAA,CAAU9X,CAAAA,CAAU,OAAA,CAAQ,QAAA,CAAS1O,CAAQ,CAAE,CAAC,CACzF,CAQO,SAASo7C,EAAAA,CACdp7C,EACA3J,CAAAA,CACA,CACA,IAAMmwB,CAAAA,CAAcC,yBAAAA,GACd7U,CAAAA,CAAO5R,CAAAA,EAAU,OAAA,CAAQ,GAAA,CAAK,EAAE,CAAA,CAEtC,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,SAAA,CAAW,iBAAA,CAAmB2I,CAAI,CAAA,CAChD,UAAA,CAAY,MAAO1I,CAAAA,EAA0C,CAC3D,GAAI,CAAC0I,CAAAA,EAAQ,CAACvb,EACZ,MAAM,IAAI,MAAM,6BAA6B,CAAA,CAE/C,OAAO6kD,EAAAA,CAA6B7kD,CAAAA,CAAM6S,CAAO,CACnD,CAAA,CACA,SAAA,CAAUxa,CAAAA,CAAM,CACVkjB,CAAAA,EACFupC,EAAAA,CAA2B30B,EAAa5U,CAAAA,CAAMljB,CAAI,EAEtD,CACF,CAAC,CACH,CClFO,SAAS2sD,EAAAA,CAA+BjyC,EAAqB,CAClE,OAAOqF,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,aAAc,mBAAmB,CAAA,CAC5C,OAAA,CAAS,SAAY,CACnB,GAAI,CAACrF,CAAAA,CACH,OAAO,EAAC,CAGV,IAAM5L,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,eAAiB,+BAAA,CAAiC,CACpF,OAAQ,MAAA,CACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,KAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAMjB,CAAY,CAAC,CAC5C,CAAC,CAAA,CAED,GAAI,CAAC5L,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,sCAAsCA,CAAAA,CAAS,MAAM,EAAE,CAAA,CAGzE,OAAO,MAAMA,CAAAA,CAAS,IAAA,EACxB,EACA,SAAA,CAAW,CAAA,CAAA,CAAA,CACX,OAAA,CAAS,CAAC,CAAC4L,CACb,CAAC,CACH,CCpBO,SAASkyC,EAAAA,CAAkClyC,CAAAA,CAAqB,CACrE,OAAOqF,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,YAAA,CAAc,sBAAsB,CAAA,CAC/C,OAAA,CAAS,SAAY,CACnB,GAAI,CAACrF,CAAAA,CACH,OAAO,GAGT,IAAM5L,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,cAAA,CAAiB,mCAAoC,CACvF,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,KAAMjB,CAAY,CAAC,CAC5C,CAAC,CAAA,CAED,GAAI,CAAC5L,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,sCAAA,EAAyCA,EAAS,MAAM,CAAA,CAAE,EAG5E,OAAQ,MAAMA,EAAS,IAAA,EACzB,CAAA,CACA,SAAA,CAAW,CAAA,CAAA,CAAA,CACX,OAAA,CAAS,CAAC,CAAC4L,CACb,CAAC,CACH,CCrBO,SAASmyC,EAAAA,CAAkCv7C,CAAAA,CAAkBoJ,CAAAA,CAAqB,CACvF,OAAOqF,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,aAAc,sBAAA,CAAwBzO,CAAQ,CAAA,CACzD,OAAA,CAAS,SAAgD,CACvD,GAAI,CAACoJ,CAAAA,EAAe,CAACpJ,CAAAA,CACnB,OAAO,IAAA,CAGT,IAAMxC,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,cAAA,CAAiB,mCAAA,CAAqC,CACxF,MAAA,CAAQ,MAAA,CACR,QAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,IAAA,CAAMjB,EAAa,QAAA,CAAApJ,CAAS,CAAC,CACtD,CAAC,CAAA,CAED,GAAI,CAACxC,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,yCAAyCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAG5E,IAAMg+C,CAAAA,CAAgB,MAAMh+C,CAAAA,CAAS,IAAA,EAAK,CAE1C,OAAOg+C,CAAAA,EAAgBA,CAAAA,CAAa,SAAWA,CAAAA,CAAa,IAAA,CACxD,CAAE,IAAA,CAAMA,CAAAA,CAAa,IAAA,CAAM,QAAS,IAAI,IAAA,CAAKA,CAAAA,CAAa,OAAO,CAAE,CAAA,CACnE,IACN,CAAA,CACA,OAAA,CAAS,CAAC,CAACx7C,CAAAA,EAAY,CAAC,CAACoJ,CAC3B,CAAC,CACH,CCrCO,SAASqyC,EAAAA,CAA4BryC,CAAAA,CAAqB,CAC/D,OAAOqF,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,YAAA,CAAc,eAAe,EACxC,OAAA,CAAS,SAAY,CACnB,IAAMjR,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,cAAA,CAAiB,4BAAA,CAA8B,CACjF,MAAA,CAAQ,OACR,OAAA,CAAS,CACP,cAAA,CAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,KAAK,SAAA,CAAU,CAAE,IAAA,CAAMjB,CAAY,CAAC,CAC5C,CAAC,CAAA,CAED,GAAI,CAAC5L,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,gCAAA,EAAmCA,CAAAA,CAAS,MAAM,CAAA,CAAE,EAGtE,OAAO,MAAMA,CAAAA,CAAS,IAAA,EACxB,CAAA,CACA,QAAS,CAAC,CAAC4L,CACb,CAAC,CACH,CChBO,SAASsyC,EAAAA,CAAsC11C,EAAiBoD,CAAAA,CAAqB,CAC1F,OAAOqF,uBAAAA,CAAa,CAClB,QAAA,CAAU,CAAC,YAAA,CAAc,qBAAA,CAAuBzI,CAAO,CAAA,CACvD,OAAA,CAAS,SAAmD,CAC1D,GAAI,CAACoD,CAAAA,EAAe,CAACpD,CAAAA,CACnB,OAAO,KAGT,IAAMxI,CAAAA,CAAW,MAAM,KAAA,CAAM6M,CAAAA,CAAO,eAAiB,mCAAA,CAAqC,CACxF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,KAAMjB,CAAAA,CAAa,OAAA,CAAApD,CAAQ,CAAC,CACrD,CAAC,EAED,GAAI,CAACxI,EAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,2CAAA,EAA8CA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGjF,IAAMg+C,CAAAA,CAAe,MAAMh+C,CAAAA,CAAS,IAAA,EAAK,CAKzC,OAAOg+C,EACH,CACE,OAAA,CAASA,CAAAA,CAAa,OAAA,CACtB,OAAA,CAAS,IAAI,KAAKA,CAAAA,CAAa,OAAO,CACxC,CAAA,CACA,IACN,EACA,OAAA,CAAS,CAAC,CAACx1C,CAAAA,EAAW,CAAC,CAACoD,CAC1B,CAAC,CACH,CChCO,SAASuyC,EAAAA,CACd37C,CAAAA,CACAwH,EACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,YAAA,CAAc,YAAY,CAAA,CAC3B9I,CAAAA,CACA,CAAC,CAAE,OAAA,CAAAgG,CAAAA,CAAS,SAAAgG,CAAS,CAAA,GAAM,CACzBkjB,EAAAA,CAAiBlvB,CAAAA,CAAWgG,CAAAA,CAASgG,CAAQ,CAC/C,CAAA,CACA,MAAO0a,CAAAA,CAAO,CAAE,OAAA,CAAA1gB,CAAQ,CAAA,GAAM,CACxBwB,CAAAA,EAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,EAAK,OAAA,CAAQ,iBAAA,CAAkB,CACnCkH,CAAAA,CAAU,QAAA,CAAS,KAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,UAAA,CAAW,iBAAA,CAAkB1I,CAAO,CAChD,CAAC,EAEL,CAAA,CACAwB,CAAAA,CACA,QAAA,CACA,CAAE,cAAAI,CAAc,CAClB,CACF,CClBO,SAASg0C,EAAAA,CACd57C,EACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL,CAAC,YAAA,CAAc,eAAe,CAAA,CAC9B9I,CAAAA,CACA,CAAC,CAAE,SAAAgM,CAAS,CAAA,GAAM,CAACmjB,EAAAA,CAAoBnvB,CAAAA,CAAWgM,CAAQ,CAAC,CAAA,CAC3D,SAAY,CACNxE,CAAAA,EAAM,OAAA,EAAS,iBAAA,EACjB,MAAMA,CAAAA,CAAK,OAAA,CAAQ,kBAAkB,CACnCkH,CAAAA,CAAU,SAAS,IAAA,CAAK1O,CAAQ,CAAA,CAChC0O,CAAAA,CAAU,eAAA,CAAgB,OAAA,CAAQ1O,CAAS,CAAA,CAC3C,CAAC,YAAA,CAAc,sBAAA,CAAwBA,CAAQ,CACjD,CAAC,EAEL,CAAA,CACAwH,CAAAA,CACA,QAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF,CChCA,eAAsBi0C,EAAAA,CAAaxlD,CAAAA,CAA6C,CAE9E,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC3D,CAAAA,CAAO,eAAiB,4BAAA,CAA8B,CACpF,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CACP,eAAgB,kBAClB,CAAA,CACA,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,KAAAhU,CAAK,CAAC,CAC/B,CAAC,CAAA,CAED,GAAI,CAACmH,CAAAA,CAAS,EAAA,CAAI,CAChB,IAAI9O,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,IAAA,GACxB,MAAQ,CACN9O,CAAAA,CAAO,OACT,CACA,IAAM6D,CAAAA,CAAQ,IAAI,KAAA,CAAM,CAAA,yBAAA,EAA4BiL,EAAS,MAAM,CAAA,CAAE,EACrE,MAAAjL,CAAAA,CAAM,MAAA,CAASiL,CAAAA,CAAS,MAAA,CACxBjL,CAAAA,CAAM,KAAO7D,CAAAA,CACP6D,CACR,CAGA,OADc,MAAMiL,CAAAA,CAAS,MAE/B,CC3BA,IAAMs+C,EAAAA,CACJ,4FAAA,CAEK,SAASC,EAAAA,EAA2B,CACzC,OAAOttC,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,SAAA,CAAU,IAAA,GAC9B,OAAA,CAAS,MAAO,CAAE,MAAA,CAAA5Z,CAAO,CAAA,GAAM,CAC7B,IAAM0I,CAAAA,CAAW,MAAM,KAAA,CAAMs+C,EAAAA,CAAgB,CAAE,OAAAhnD,CAAO,CAAC,CAAA,CAEvD,GAAI,CAAC0I,CAAAA,CAAS,GACZ,MAAM,IAAI,KAAA,CAAM,CAAA,iCAAA,EAAoCA,CAAAA,CAAS,MAAM,EAAE,CAAA,CAGvE,IAAMpH,CAAAA,CAAO,MAAMoH,CAAAA,CAAS,IAAA,GAC5B,OAAO,IAAI,GAAA,CAAIpH,CAAAA,CAAK,KAAA,CAAM;AAAA,CAAI,CAAA,CAAE,MAAA,CAAO,OAAO,CAAC,CACjD,EACA,SAAA,CAAW,IAAA,CAAU,EAAA,CAAK,GAAA,CAY1B,MAAA,CAAQ,CAAA,CAAA,CACV,CAAC,CACH,CCjCO,IAAM4lD,EAAAA,CAAyB,GAAA,CAE1BC,EAAAA,CAAAA,CAAAA,CAAAA,GACVA,CAAAA,CAAA,eAAA,CAAkB,iBAAA,CAClBA,CAAAA,CAAA,MAAA,CAAS,QAAA,CAFCA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,EA4DL,SAASC,EAAAA,CAA4BC,CAAAA,CAAqC,CAC/E,OAAKA,CAAAA,CAIEA,CAAAA,CAAY,GAAA,CAAI,CAACC,CAAAA,CAAQ3kB,CAAAA,IAAW,CACzC,UAAA,CAAYA,CAAAA,CAAQ,CAAA,CACpB,YAAa2kB,CAAAA,CACb,KAAA,CAAO,CACL,WAAA,CAAa,CAAA,CACb,OAAA,CAAS,CAAA,CACT,eAAA,CAAiB,CAAA,CACjB,oBAAA,CAAsB,CACxB,CACF,CAAA,CAAE,CAAA,CAZO,EAaX,CCxEA,SAASC,EAAAA,CAAcriC,CAAAA,CAAoC,CACzD,IAAMsiC,EAAetiC,CAAAA,CAAI,YAAA,EAA0D,EAAC,CAC9EuiC,CAAAA,CAAcviC,CAAAA,CAAI,WAAA,EAAyD,EAAC,CAC5EwiC,CAAAA,CAAWxiC,CAAAA,CAAI,UAAA,CAEfyiC,CAAAA,CAAwBH,CAAAA,CAAY,IAAKxyD,CAAAA,EAAM,CACnD,IAAMsoB,CAAAA,CAAQtoB,CAAAA,CAAE,KAAA,CAChB,OAAO,CACL,UAAA,CAAaA,CAAAA,CAAE,UAAA,EAAyB,CAAA,CACxC,WAAA,CAAcA,CAAAA,CAAE,aAA0B,EAAA,CAC1C,KAAA,CAAOsoB,CAAAA,CACH,CACE,WAAA,CAAcA,CAAAA,CAAM,WAAA,EAA0B,CAAA,CAC9C,OAAA,CAASA,CAAAA,CAAM,OAAA,CACf,eAAA,CAAiBA,CAAAA,CAAM,eAAA,CACvB,qBAAuBA,CAAAA,CAAM,oBAAA,EAA0C,IACzE,CAAA,CACA,MACN,CACF,CAAC,CAAA,CAEKsqC,CAAAA,CAAsBH,CAAAA,CAAW,GAAA,CAAKrvD,CAAAA,GAAO,CACjD,KAAOA,CAAAA,CAAE,IAAA,EAAmB,EAAA,CAC5B,OAAA,CAAUA,CAAAA,CAAE,OAAA,EAAwB,EAAC,CACrC,OAAA,CAASA,CAAAA,CAAE,OAAA,CACX,eAAA,CAAiBA,CAAAA,CAAE,eAAA,CACnB,qBAAsBA,CAAAA,CAAE,oBAC1B,CAAA,CAAE,CAAA,CAEIooB,CAAAA,CAA+BknC,CAAAA,CACjC,CACE,yBAAA,CAA4BA,CAAAA,CAAS,yBAAA,EAAwC,CAAA,CAC7E,aAAA,CAAeA,CAAAA,CAAS,aAAA,CACxB,sBAAuBA,CAAAA,CAAS,qBAAA,CAChC,0BAAA,CAA6BA,CAAAA,CAAS,0BAAA,EAAgD,IACxF,CAAA,CACA,MAAA,CAEJ,OAAO,CACL,MAAA,CAASxiC,CAAAA,CAAI,MAAA,EAAqB,EAAA,CAClC,SAAWA,CAAAA,CAAI,QAAA,EAAuB,EAAA,CACtC,QAAA,CAAWA,CAAAA,CAAI,QAAA,EAAuB,EAAA,CACtC,YAAA,CAAcyiC,CAAAA,CACd,WAAA,CAAaC,CAAAA,CACb,UAAA,CAAYpnC,CAAAA,CACZ,WAAA,CAAc0E,EAAI,WAAA,EAA0B,EAAA,CAC5C,MAAA,CAASA,CAAAA,CAAI,MAAA,EAAqB,EAAA,CAClC,QAAA,CAAWA,CAAAA,CAAI,QAAA,EAAuB,EAAA,CACtC,wBAAA,CAA2BA,CAAAA,CAAI,wBAAA,EAAuC,iBAAA,CACtE,kBAAoBA,CAAAA,CAAI,iBAAA,EAAgC,CAAA,CACxD,uBAAA,CAA0BA,CAAAA,CAAI,uBAAA,EAAsC,CAAA,CACpE,gBAAA,CAAmBA,CAAAA,CAAI,gBAAA,EAA+B,CAAA,CACtD,OAAA,CAAUA,CAAAA,CAAI,OAAA,EAAsB,GACpC,UAAA,CAAaA,CAAAA,CAAI,UAAA,EAAyB,EAAA,CAC1C,SAAA,CAAYA,CAAAA,CAAI,SAAA,EAAwB,EAAA,CACxC,eAAA,CAAkBA,CAAAA,CAAI,eAAA,EAA8B,EAAA,CACpD,IAAA,CAAOA,CAAAA,CAAI,MAAqB,EAAC,CACjC,KAAA,CAAQA,CAAAA,CAAI,KAAA,EAAuB,GACnC,KAAA,CAAOA,CAAAA,CAAI,KAAA,CACX,oBAAA,CAAsBA,CAAAA,CAAI,oBAAA,CAC1B,mBAAoBA,CAAAA,CAAI,kBAAA,CACxB,uBAAA,CAA0BA,CAAAA,CAAI,uBAAA,EAAmD,KAAA,CACjF,QAAA,CAAUA,CAAAA,CAAI,QAChB,CACF,CAEO,SAAS2iC,EAAAA,CACdrsC,CAAAA,CACAC,EACA,CACA,OAAO9B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,KAAA,CAAM,OAAA,CAAQ4B,CAAAA,EAAU,EAAA,CAAIC,CAAAA,EAAY,EAAE,CAAA,CAC9D,OAAA,CAAS,CAAC,CAACD,CAAAA,EAAU,CAAC,CAACC,CAAAA,CAIvB,MAAA,CAAQ8oC,mBAAAA,CAAWrvC,EAAAA,CAAoB,IAAA,CAAU,GAAA,CACjD,OAAA,CAAS,SAA2B,CAClC,GAAI,CAACsG,CAAAA,EAAU,CAACC,CAAAA,CACd,MAAM,IAAI,KAAA,CAAM,gDAA2C,CAAA,CAG7D,IAAM4oB,CAAAA,CAAWnrB,CAAAA,EAAc,CACzBjhB,CAAAA,CAAM,GAAGsd,CAAAA,CAAO,YAAY,CAAA,oBAAA,EAAuB,kBAAA,CAAmBiG,CAAM,CAAC,CAAA,aAAA,EAAgB,kBAAA,CAAmBC,CAAQ,CAAC,CAAA,CAAA,CACzH/S,CAAAA,CAAW,MAAM27B,CAAAA,CAASpsC,CAAG,CAAA,CAEnC,GAAI,CAACyQ,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAI,KAAA,CAAM,CAAA,kCAAA,EAAgCA,CAAAA,CAAS,MAAM,CAAA,CAAE,CAAA,CAGnE,IAAM9O,EAAO,MAAM8O,CAAAA,CAAS,IAAA,EAAK,CAEjC,GAAI,CAAC,KAAA,CAAM,OAAA,CAAQ9O,CAAI,CAAA,EAAK,CAACA,CAAAA,CAAK,CAAC,CAAA,CACjC,MAAM,IAAI,KAAA,CAAM,wCAAmC,CAAA,CAGrD,OAAO2tD,EAAAA,CAAc3tD,EAAK,CAAC,CAAC,CAC9B,CACF,CAAC,CACH,CChGO,SAASkuD,EAAAA,CACd58C,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL4F,CAAAA,CAAU,KAAA,CAAM,IAAA,EAAK,CACrB1O,CAAAA,EAAY,EAAA,CACZ,CAAC,CAAE,SAAA,CAAA68C,CAAAA,CAAW,OAAA,CAAAJ,CAAQ,CAAA,GAAM,CAC1B,GAAI,CAACz8C,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,4DAA4D,EAE9E,OAAO,CACL,CACE,aAAA,CACA,CACE,EAAA,CAAI,OAAA,CACJ,cAAA,CAAgB,EAAC,CACjB,sBAAA,CAAwB,CAACA,CAAQ,CAAA,CACjC,KAAM,IAAA,CAAK,SAAA,CAAU,CACnB,IAAA,CAAM68C,CAAAA,CACN,MAAA,CAAQ,MAAA,CACR,OAAA,CAAAJ,CACF,CAAC,CACH,CACF,CACF,CACF,EACA,MAAA,CACAj1C,CAAAA,CACA,SAAA,CACA,CAAE,aAAA,CAAeI,CAAAA,EAAiB,OAAQ,CAC5C,CACF,CCjCO,IAAMk1C,EAAAA,CAAgC,KAAA,CAGhCC,EAAAA,CAAwB,EAUxBC,EAAAA,CAAiC,GChB9C,IAAMC,EAAAA,CAAmBz8C,CAAAA,EACvB,IAAA,CAAK,GAAA,CAAIA,CAAK,CAAA,CAAI,CAAA,EAAK,IAAA,CAAK,GAAA,CAAIA,CAAK,CAAA,EAAK,IAErC,SAAS08C,EAAAA,CAAkB18C,CAAAA,CAAgC,CAKhE,GAJI,OAAOA,CAAAA,EAAU,QAAA,EAAYy8C,EAAAA,CAAgBz8C,CAAK,CAAA,EAIlD,OAAOA,CAAAA,EAAU,QAAA,GACnBA,EAAQ,MAAA,CAAOA,CAAK,CAAA,CAEhBy8C,EAAAA,CAAgBz8C,CAAK,CAAA,CAAA,CACvB,OAAO,IAAA,CAAK,KAAA,CAAMA,CAAK,CAAA,CAI3B,GAAIA,CAAAA,GAAU,EACZ,OAAO,EAAA,CAGT,IAAI28C,CAAAA,CAAM,KAAA,CAEN38C,CAAAA,CAAQ,CAAA,GACV28C,CAAAA,CAAM,IAAA,CAAA,CAGR,IAAIC,CAAAA,CAAkB,IAAA,CAAK,KAAA,CAAM,IAAA,CAAK,IAAI58C,CAAe,CAAC,CAAA,CAC1D,OAAA48C,CAAAA,CAAkB,IAAA,CAAK,GAAA,CAAIA,CAAAA,CAAkB,CAAA,CAAG,CAAC,CAAA,CAE7CA,CAAAA,CAAkB,CAAA,GACpBA,CAAAA,CAAkB,GAGhBD,CAAAA,GACFC,CAAAA,EAAmB,EAAA,CAAA,CAGrBA,CAAAA,CAAkBA,CAAAA,CAAkB,CAAA,CAAI,EAAA,CAEjC,IAAA,CAAK,KAAA,CAAMA,CAAe,CACnC,CCpCA,IAAMC,EAAAA,CAAiB,CACrB,YAAA,CACA,YAAA,CACA,WAAA,CACA,SAAA,CACA,gBAAA,CACA,WAAA,CACA,YACA,eAAA,CACA,eAAA,CACA,UAAA,CACA,WAAA,CACA,QAAA,CACA,YACF,EAGMC,EAAAA,CAAc,CAClB,WAAA,CACA,kBAAA,CACA,iBAAA,CACA,cAAA,CACA,mBAAA,CACA,mBAAA,CACA,uBAAA,CACA,iBACF,CAAA,CAEMC,EAAAA,CAAe,8CAAA,CAGfC,EAAAA,CAAS,kCAGTC,EAAAA,CAAoB,cAAA,CAE1B,SAASC,EAAAA,CAAO3wD,CAAAA,CAAqB,CACnC,IAAMM,CAAAA,CAAI,6BAAA,CAA8B,IAAA,CAAKN,CAAG,CAAA,CAChD,OAAOM,CAAAA,CAAIA,EAAE,CAAC,CAAA,CAAE,WAAA,EAAY,CAAE,OAAA,CAAQ,QAAA,CAAU,EAAE,CAAA,CAAI,EACxD,CAEA,SAASswD,EAAAA,CAAoBC,CAAAA,CAAyB,CACpD,IAAM7wD,CAAAA,CAAM6wD,CAAAA,CAAO,OAAA,CAAQH,EAAAA,CAAmB,EAAE,CAAA,CAChD,GAAIF,EAAAA,CAAa,IAAA,CAAKxwD,CAAG,CAAA,CACvB,OAAO,MAAA,CAET,IAAM4d,CAAAA,CAAO+yC,EAAAA,CAAO3wD,CAAG,CAAA,CACvB,GAAI,CAAC4d,CAAAA,CAAK,QAAA,CAAS,GAAG,CAAA,CACpB,OAAO,MAAA,CAET,IAAMuuC,CAAAA,CAAW3hD,GAAcoT,CAAAA,GAASpT,CAAAA,EAAKoT,CAAAA,CAAK,QAAA,CAAS,GAAA,CAAMpT,CAAC,CAAA,CAClE,OAAI,EAAA8lD,EAAAA,CAAe,IAAA,CAAKnE,CAAO,CAAA,EAAKoE,EAAAA,CAAY,KAAKpE,CAAO,CAAA,CAI9D,CAGO,SAAS2E,EAAAA,CAAgBtjD,CAAAA,CAA0C,CACxE,GAAI,CAACA,CAAAA,CACH,OAAO,MAAA,CAET,IAAM2+C,CAAAA,CAAU3+C,EAAK,KAAA,CAAMijD,EAAM,CAAA,CACjC,OAAKtE,CAAAA,CAGEA,CAAAA,CAAQ,IAAA,CAAKyE,EAAmB,CAAA,CAF9B,KAGX,CC/DO,IAAKG,EAAAA,CAAAA,CAAAA,CAAAA,GAKVA,CAAAA,CAAA,UAAY,WAAA,CAEZA,CAAAA,CAAA,SAAA,CAAY,WAAA,CAEZA,CAAAA,CAAA,SAAA,CAAY,WAAA,CATFA,CAAAA,CAAAA,EAAAA,EAAAA,EAAA,EAAA,EAiCZ,SAASC,EAAAA,CAAWzrC,CAAAA,CAAsC,CACxD,OAAOA,GAAS,KAAA,EAAO,WAAA,EAAeA,CAAAA,EAAS,YAAA,EAAc,MAAA,EAAU,CACzE,CAGO,SAAS0rC,EAAAA,CACdC,CAAAA,CACAC,CAAAA,CACS,CACT,OAAA,CACGD,CAAAA,EAAc,GAAK,KAAA,EACpBC,CAAAA,EAAqB,CAEzB,CAWO,SAASC,EAAAA,CACd7rC,CAAAA,CACS,CACT,IAAM8rC,CAAAA,CAAa9rC,CAAAA,EAAS,iBAAA,CAI5B,OAAgC8rC,CAAAA,EAAe,KACtC,KAAA,CAGPlB,EAAAA,CAAkBkB,CAAU,CAAA,CAAI,EAAA,EAChCP,EAAAA,CAAgBvrC,GAAS,IAAI,CAEjC,CAGO,SAAS+rC,EAAAA,CACd/tC,CAAAA,CACAguC,EACS,CACT,OAAO,CAAC,CAAChuC,CAAAA,EAAU,CAAC,CAACguC,CAAAA,EAAc,QAAA,CAAShuC,CAAM,CACpD,CAcO,SAASiuC,EAAAA,CACdjsC,EACgC,CAChC,OAAKA,CAAAA,CAGDA,CAAAA,CAAQ,KAAA,EAAO,IAAA,EAAQA,CAAAA,CAAQ,KAAA,EAAO,IAAA,CACjC,WAAA,CAEL0rC,EAAAA,CAAa1rC,CAAAA,CAAQ,WAAA,CAAayrC,EAAAA,CAAWzrC,CAAO,CAAC,CAAA,CAChD,WAAA,CAEL6rC,EAAAA,CAAkB7rC,CAAO,CAAA,CACpB,WAAA,CAEF,IAAA,CAXE,IAYX,CCrHO,IAAMksC,EAAAA,CAAN,cAAiC,KAAM,CAC5C,WAAA,CACEvvD,CAAAA,CACgBmQ,CAAAA,CACA1Q,CAAAA,CAChB,CACA,KAAA,CAAMO,CAAO,CAAA,CAHG,IAAA,CAAA,MAAA,CAAAmQ,CAAAA,CACA,IAAA,CAAA,IAAA,CAAA1Q,EAGlB,CAJkB,OACA,IAIpB,CAAA,CAGa+vD,EAAAA,CAAN,cAAyCD,EAAmB,CACjE,WAAA,CACEvvD,CAAAA,CACAmQ,CAAAA,CACgB/I,CAAAA,CACAqoD,CAAAA,CAChBhwD,CAAAA,CACA,CACA,KAAA,CAAMO,EAASmQ,CAAAA,CAAQ1Q,CAAI,CAAA,CAJX,IAAA,CAAA,IAAA,CAAA2H,CAAAA,CACA,IAAA,CAAA,KAAA,CAAAqoD,EAIlB,CALkB,IAAA,CACA,KAKpB,ECMA,SAASC,EAAAA,CAAczhD,CAAAA,CAAsB,CAI3C,OAAO,CAAA,EAAGmN,CAAAA,CAAO,cAAA,EAAkBA,CAAAA,CAAO,cAAc,CAAA,eAAA,EAAkBnN,CAAI,CAAA,CAChF,CAEA,eAAe0hD,EAAAA,CAASphD,CAAAA,CAAgC,CACtD,IAAM9O,CAAAA,CAAQ,MAAM8O,CAAAA,CAAS,IAAA,EAAK,CAAE,KAAA,CAAM,IAAG,CAAA,CAAY,CAAA,CAGzD,GAAI,CAACA,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAIghD,EAAAA,CACR9vD,CAAAA,EAAM,KAAA,EAAS,CAAA,gBAAA,EAAmB8O,CAAAA,CAAS,MAAM,CAAA,CAAA,CAAA,CACjDA,CAAAA,CAAS,MAAA,CACT9O,CACF,CAAA,CAGF,GAAI,CAACA,GAAQ,OAAOA,CAAAA,EAAS,QAAA,CAC3B,MAAM,IAAI8vD,EAAAA,CACR,CAAA,qBAAA,EAAwBhhD,CAAAA,CAAS,MAAM,CAAA,CAAA,CAAA,CACvCA,CAAAA,CAAS,MACX,CAAA,CAEF,OAAO9O,CACT,CAOA,eAAsBmwD,EAAAA,CACpBr+C,CAAAA,CACAnK,CAAAA,CACgC,CAEhC,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC2wC,EAAAA,CAAc,YAAY,CAAA,CAAG,CAC3D,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CAAE,cAAA,CAAgB,kBAAmB,CAAA,CAC9C,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,GAAGn+C,CAAAA,CAAO,GAAInK,EAAO,CAAE,IAAA,CAAAA,CAAK,CAAA,CAAI,EAAI,CAAC,CAC9D,CAAC,CAAA,CACD,OAAOuoD,EAAAA,CAA6BphD,CAAQ,CAC9C,CAGA,eAAsBshD,EAAAA,CACpBzoD,CAAAA,CAC+B,CAE/B,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC2wC,EAAAA,CAAc,gBAAgB,CAAA,CAAG,CAC/D,OAAA,CAAS,CAAE,YAAA,CAActoD,CAAK,CAChC,CAAC,CAAA,CAED,OAAA,CADa,MAAMuoD,EAAAA,CAAgDphD,CAAQ,CAAA,EAC/D,aAAA,EAAiB,EAC/B,CAGA,eAAsBuhD,EAAAA,CACpBztD,CAAAA,CACA+E,CAAAA,CACe,CAEf,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B2wC,EAAAA,CAAc,CAAA,eAAA,EAAkB,kBAAA,CAAmBrtD,CAAE,CAAC,CAAA,CAAE,CAAA,CACxD,CAAE,MAAA,CAAQ,QAAA,CAAU,OAAA,CAAS,CAAE,YAAA,CAAc+E,CAAK,CAAE,CACtD,CAAA,CACA,MAAMuoD,EAAAA,CAAyBphD,CAAQ,EACzC,CAMA,eAAsBwhD,EAAAA,CACpB9rB,CAAAA,CACA78B,CAAAA,CACe,CAEf,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC2wC,EAAAA,CAAc,kBAAkB,EAAG,CACjE,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CAAE,cAAA,CAAgB,kBAAmB,CAAA,CAC9C,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,KAAA,CAAAzrB,CAAAA,CAAO,KAAA78B,CAAK,CAAC,CACtC,CAAC,CAAA,CACD,MAAMuoD,GAA+BphD,CAAQ,EAC/C,CAGA,eAAsByhD,EAAAA,CACpBj6C,CAAAA,CACAzZ,EACA8K,CAAAA,CACmC,CAEnC,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B2wC,EAAAA,CAAc,CAAA,aAAA,EAAgB35C,CAAI,CAAA,QAAA,EAAW,kBAAA,CAAmBzZ,CAAM,CAAC,EAAE,CAAA,CACzE,CAAE,OAAA,CAAS,CAAE,YAAA,CAAc8K,CAAK,CAAE,CACpC,CAAA,CACA,OAAOuoD,EAAAA,CAAgCphD,CAAQ,CACjD,CAGA,eAAsB0hD,EAAAA,CACpBl6C,CAAAA,CACAzZ,CAAAA,CACA8K,CAAAA,CACgC,CAEhC,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B2wC,EAAAA,CAAc,CAAA,aAAA,EAAgB35C,CAAI,CAAA,QAAA,EAAW,mBAAmBzZ,CAAM,CAAC,CAAA,CAAE,CAAA,CACzE,CAAE,OAAA,CAAS,CAAE,YAAA,CAAc8K,CAAK,CAAE,CACpC,CAAA,CAEA,OAAA,CADa,MAAMuoD,EAAAA,CAA0CphD,CAAQ,CAAA,EACzD,MAAA,EAAU,EACxB,CAGA,eAAsB2hD,EAAAA,CACpBn6C,CAAAA,CACAzZ,CAAAA,CACA8K,CAAAA,CACArK,CAAAA,CAAQ,EAAA,CAC4B,CAEpC,IAAMwR,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CAE7B2wC,EAAAA,CACE,CAAA,YAAA,EAAe35C,CAAI,CAAA,QAAA,EAAW,kBAAA,CAAmBzZ,CAAM,CAAC,CAAA,OAAA,EAAUS,CAAK,EACzE,CAAA,CACA,CAAE,OAAA,CAAS,CAAE,YAAA,CAAcqK,CAAK,CAAE,CACpC,CAAA,CAEA,OAAA,CADa,MAAMuoD,EAAAA,CAA6CphD,CAAQ,CAAA,EAC5D,OAAS,EACvB,CAEA,eAAe4hD,EAAAA,CACbliD,CAAAA,CACAmiD,CAAAA,CACAhpD,CAAAA,CACY,CAEZ,IAAMmH,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACC2wC,GAAczhD,CAAI,CAAA,CAAG,CACnD,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CAAE,cAAA,CAAgB,kBAAA,CAAoB,YAAA,CAAc7G,CAAK,CAAA,CAClE,IAAA,CAAM,IAAA,CAAK,UAAUgpD,CAAO,CAC9B,CAAC,CAAA,CACK3wD,CAAAA,CAAQ,MAAM8O,CAAAA,CAAS,IAAA,EAAK,CAAE,KAAA,CAAM,IAAG,CAAA,CAAY,CAAA,CAOzD,GAAI,CAACA,CAAAA,CAAS,EAAA,CACZ,MAAM,IAAIihD,EAAAA,CACR/vD,CAAAA,EAAM,KAAA,EAAS,CAAA,gBAAA,EAAmB8O,CAAAA,CAAS,MAAM,CAAA,CAAA,CAAA,CACjDA,CAAAA,CAAS,MAAA,CACT9O,CAAAA,EAAM,KACNA,CAAAA,EAAM,KAAA,CACNA,CACF,CAAA,CAEF,GAAI,CAACA,GAAQ,OAAOA,CAAAA,EAAS,QAAA,CAC3B,MAAM,IAAI+vD,EAAAA,CACR,wBAAwBjhD,CAAAA,CAAS,MAAM,CAAA,CAAA,CAAA,CACvCA,CAAAA,CAAS,MACX,CAAA,CAEF,OAAO9O,CACT,CAGO,SAAS4wD,EAAAA,CACdD,CAAAA,CACAhpD,CAAAA,CACgC,CAChC,OAAO+oD,EAAAA,CAAgC,eAAA,CAAiBC,CAAAA,CAAShpD,CAAI,CACvE,CAGO,SAASkpD,EAAAA,CACdF,CAAAA,CACAhpD,CAAAA,CAC+B,CAC/B,OAAO+oD,EAAAA,CAA+B,OAAA,CAASC,EAAShpD,CAAI,CAC9D,CC/MO,SAASmpD,EAAAA,CACdx/C,CAAAA,CACA3J,CAAAA,CACA,CACA,IAAMub,CAAAA,CAAO5R,GAAU,OAAA,CAAQ,GAAA,CAAK,EAAE,CAAA,CACtC,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,UAAA,CAAW,aAAA,CAAckD,CAAI,CAAA,CACjD,QAAS,CAAC,CAACA,CAAAA,EAAQ,CAAC,CAACvb,CAAAA,CACrB,OAAA,CAAS,SAAY,CACnB,GAAI,CAACA,CAAAA,CACH,MAAM,IAAI,MAAM,uCAAkC,CAAA,CAEpD,OAAOyoD,EAAAA,CAA8BzoD,CAAI,CAC3C,CAAA,CACA,SAAA,CAAW,GAAA,CACX,KAAA,CAAO,KACT,CAAC,CACH,CCjBO,SAASopD,EAAAA,CACdz6C,CAAAA,CACAzZ,CAAAA,CACAyU,CAAAA,CACA3J,CAAAA,CACA,CACA,IAAMub,CAAAA,CAAO5R,CAAAA,EAAU,OAAA,CAAQ,IAAK,EAAE,CAAA,CACtC,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAUC,EAAU,UAAA,CAAW,MAAA,CAAO1J,CAAAA,CAAMzZ,CAAAA,CAAQqmB,CAAI,CAAA,CACxD,QAAS,CAAC,CAACA,CAAAA,EAAQ,CAAC,CAACvb,CAAAA,EAAQ,CAAC,CAAC9K,CAAAA,CAC/B,OAAA,CAAS,SAAY,CACnB,GAAI,CAAC8K,EACH,MAAM,IAAI,KAAA,CAAM,uCAAkC,CAAA,CAEpD,OAAO4oD,EAAAA,CAA2Bj6C,CAAAA,CAAMzZ,CAAAA,CAAQ8K,CAAI,CACtD,CAAA,CACA,SAAA,CAAW,CAAA,CAAI,GACjB,CAAC,CACH,CCtBO,SAASqpD,EAAAA,CACd16C,CAAAA,CACAzZ,CAAAA,CACAyU,CAAAA,CACA3J,CAAAA,CACA,CACA,IAAMub,CAAAA,CAAO5R,CAAAA,EAAU,OAAA,CAAQ,GAAA,CAAK,EAAE,CAAA,CACtC,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,UAAA,CAAW,MAAA,CAAO1J,CAAAA,CAAMzZ,EAAQqmB,CAAI,CAAA,CACxD,OAAA,CAAS,CAAC,CAACA,CAAAA,EAAQ,CAAC,CAACvb,CAAAA,EAAQ,CAAC,CAAC9K,CAAAA,CAC/B,OAAA,CAAS,SAAY,CACnB,GAAI,CAAC8K,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,uCAAkC,CAAA,CAEpD,OAAO6oD,EAAAA,CAA2Bl6C,CAAAA,CAAMzZ,CAAAA,CAAQ8K,CAAI,CACtD,EACA,SAAA,CAAW,GACb,CAAC,CACH,CClBO,SAASspD,EAAAA,CACd36C,CAAAA,CACAzZ,CAAAA,CACAyU,CAAAA,CACA3J,EACArK,CAAAA,CAAQ,EAAA,CACR,CACA,IAAM4lB,CAAAA,CAAO5R,CAAAA,EAAU,QAAQ,GAAA,CAAK,EAAE,CAAA,CACtC,OAAOyO,uBAAAA,CAAa,CAClB,SAAUC,CAAAA,CAAU,UAAA,CAAW,KAAA,CAAM1J,CAAAA,CAAMzZ,CAAAA,CAAQqmB,CAAAA,CAAM5lB,CAAK,CAAA,CAC9D,OAAA,CAAS,CAAC,CAAC4lB,CAAAA,EAAQ,CAAC,CAACvb,GAAQ,CAAC,CAAC9K,CAAAA,CAC/B,OAAA,CAAS,SAAY,CACnB,GAAI,CAAC8K,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,uCAAkC,CAAA,CAEpD,OAAO8oD,EAAAA,CAA0Bn6C,CAAAA,CAAMzZ,CAAAA,CAAQ8K,CAAAA,CAAMrK,CAAK,CAC5D,CAAA,CACA,SAAA,CAAW,GACb,CAAC,CACH,CCdO,SAAS4zD,EAAAA,CACd5/C,CAAAA,CACA3J,EACA,CACA,IAAMmwB,CAAAA,CAAcC,yBAAAA,EAAe,CAC7B7U,CAAAA,CAAO5R,GAAU,OAAA,CAAQ,GAAA,CAAK,EAAE,CAAA,CAEtC,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,YAAA,CAAc,WAAA,CAAa2I,CAAI,CAAA,CAC7C,UAAA,CAAapR,GACXq+C,EAAAA,CAAuBr+C,CAAAA,CAAOnK,CAAI,CAAA,CACpC,SAAA,EAAY,CACNub,CAAAA,EACF4U,CAAAA,CAAY,iBAAA,CAAkB,CAC5B,QAAA,CAAU9X,CAAAA,CAAU,UAAA,CAAW,aAAA,CAAckD,CAAI,CACnD,CAAC,EAEL,CACF,CAAC,CACH,CCxBO,SAASiuC,GACd7/C,CAAAA,CACA3J,CAAAA,CACA,CACA,IAAMmwB,CAAAA,CAAcC,yBAAAA,GACd7U,CAAAA,CAAO5R,CAAAA,EAAU,OAAA,CAAQ,GAAA,CAAK,EAAE,CAAA,CAEtC,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,YAAA,CAAc,OAAA,CAAS2I,CAAI,CAAA,CACzC,UAAA,CAAY,MAAOtgB,CAAAA,EAAe,CAChC,GAAI,CAACsgB,GAAQ,CAACvb,CAAAA,CACZ,MAAM,IAAI,KAAA,CAAM,uCAAkC,CAAA,CAEpD,OAAO0oD,EAAAA,CAAmBztD,CAAAA,CAAI+E,CAAI,CACpC,CAAA,CACA,SAAA,CAAU85B,EAAS7+B,CAAAA,CAAI,CACrBk1B,CAAAA,CAAY,YAAA,CACV9X,CAAAA,CAAU,UAAA,CAAW,aAAA,CAAckD,CAAI,CAAA,CACtCopB,CAAAA,EAAAA,CAAUA,CAAAA,EAAQ,EAAC,EAAG,MAAA,CAAQrxC,GAAMA,CAAAA,CAAE,EAAA,GAAO2H,CAAE,CAClD,EACF,CACF,CAAC,CACH,CClBO,SAASwuD,EAAAA,CACd9/C,CAAAA,CACA3J,CAAAA,CACA,CACA,IAAMmwB,CAAAA,CAAcC,yBAAAA,EAAe,CAC7B7U,CAAAA,CAAO5R,CAAAA,EAAU,OAAA,CAAQ,GAAA,CAAK,EAAE,EAEtC,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,YAAA,CAAc,iBAAA,CAAmB2I,CAAI,CAAA,CACnD,UAAA,CAAY,MAAOshB,CAAAA,EAAkB,CACnC,GAAI,CAACthB,CAAAA,EAAQ,CAACvb,CAAAA,CACZ,MAAM,IAAI,KAAA,CAAM,uCAAkC,CAAA,CAEpD,OAAO2oD,EAAAA,CAA6B9rB,CAAAA,CAAO78B,CAAI,CACjD,CAAA,CACA,UAAU85B,CAAAA,CAAS+C,CAAAA,CAAO,CACxB1M,CAAAA,CAAY,YAAA,CACV9X,CAAAA,CAAU,WAAW,aAAA,CAAckD,CAAI,CAAA,CACtCopB,CAAAA,EAAAA,CACEA,CAAAA,EAAQ,IAAI,MAAA,CACVrxC,CAAAA,EAAMA,CAAAA,CAAE,KAAA,CAAM,WAAA,EAAY,GAAMupC,CAAAA,CAAM,WAAA,EACzC,CACJ,EACF,CACF,CAAC,CACH,CCvBO,SAAS6sB,EAAAA,CACd//C,CAAAA,CACA3J,CAAAA,CACA,CACA,IAAMub,CAAAA,CAAO5R,CAAAA,EAAU,QAAQ,GAAA,CAAK,EAAE,CAAA,CACtC,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,YAAA,CAAc,cAAA,CAAgB2I,CAAI,CAAA,CAChD,UAAA,CAAY,MAAOytC,GAAmC,CACpD,GAAI,CAACztC,CAAAA,EAAQ,CAACvb,CAAAA,CACZ,MAAM,IAAI,KAAA,CAAM,uCAAkC,CAAA,CAEpD,OAAOipD,EAAAA,CAA6BD,EAAShpD,CAAI,CACnD,CACF,CAAC,CACH,CAQO,SAAS2pD,EAAAA,CACdhgD,CAAAA,CACA3J,CAAAA,CACA,CACA,IAAMmwB,CAAAA,CAAcC,yBAAAA,GACd7U,CAAAA,CAAO5R,CAAAA,EAAU,OAAA,CAAQ,GAAA,CAAK,EAAE,CAAA,CAEtC,OAAOiJ,sBAAAA,CAAY,CACjB,WAAA,CAAa,CAAC,YAAA,CAAc,MAAA,CAAQ2I,CAAI,EACxC,UAAA,CAAY,MAAOytC,CAAAA,EAAmC,CACpD,GAAI,CAACztC,CAAAA,EAAQ,CAACvb,CAAAA,CACZ,MAAM,IAAI,KAAA,CAAM,uCAAkC,CAAA,CAEpD,OAAOkpD,EAAAA,CAA2BF,CAAAA,CAAShpD,CAAI,CACjD,CAAA,CACA,SAAA,CAAU85B,EAASkvB,CAAAA,CAAS,CAC1B74B,CAAAA,CAAY,iBAAA,CAAkB,CAC5B,QAAA,CAAU9X,EAAU,UAAA,CAAW,MAAA,CAAO2wC,CAAAA,CAAQ,IAAA,CAAMA,CAAAA,CAAQ,MAAA,CAAQztC,CAAI,CAC1E,CAAC,CAAA,CACD4U,CAAAA,CAAY,iBAAA,CAAkB,CAC5B,QAAA,CAAU9X,EAAU,UAAA,CAAW,MAAA,CAAO2wC,CAAAA,CAAQ,IAAA,CAAMA,CAAAA,CAAQ,MAAA,CAAQztC,CAAI,CAC1E,CAAC,EACH,CACF,CAAC,CACH,KCjDayd,EAAAA,CAAmB,CAAC,SAAA,CAAW,YAAA,CAAc,UAAA,CAAY,OAAO,CAAA,CAGhE4wB,EAAAA,CAAiB,CAAC,OAAA,CAAS,QAAA,CAAU,QAAA,CAAU,QAAQ,CAAA,CAGvDC,GAAiB,CAC5B,OAAA,CACA,QAAA,CACA,aAAA,CACA,aAAA,CACA,SAAA,CACA,KAAA,CACA,UACF,CAAA,CAGaC,EAAAA,CAAgB,CAAC,KAAA,CAAO,QAAA,CAAU,OAAA,CAAS,OAAO,CAAA,CAGlDC,EAAAA,CAAmB,CAAC,KAAA,CAAO,MAAA,CAAQ,MAAA,CAAQ,QAAA,CAAU,QAAA,CAAU,KAAK,CAAA,CAGpEC,EAAAA,CAAuB,CAAC,UAAA,CAAY,SAAA,CAAW,UAAW,OAAO,CAAA,CAGjEC,EAAAA,CAAwB,CACnC,YAAA,CACA,SAAA,CACA,UAAA,CACA,YAAA,CACA,WAAA,CACA,SAAA,CACA,eAAA,CACA,OACF,ECpCO,SAASC,GAAcC,CAAAA,CAAkD,CAC9E,OAAO,CAAC,CAACA,CAAAA,EAAO,UAAA,EAAc,CAAC,CAACA,CAAAA,EAAO,MACzC,CASO,SAASC,EAAAA,CAAkBD,EAAkD,CAClF,OACE,CAAC,CAACA,CAAAA,EAAO,UAAA,EACT,CAAC,CAACA,CAAAA,EAAO,MAAA,EACT,CAAC,CAACA,CAAAA,EAAO,aACT,CAAC,CAACA,CAAAA,EAAO,IAAA,EACT,CAAC,CAACA,CAAAA,EAAO,UAAA,EACT,CAAC,CAACA,CAAAA,EAAO,YAAA,EACT,CAAC,CAACA,GAAO,OAEb,CCTO,SAASE,EAAAA,CAAmBpwC,CAAAA,CAAgBC,CAAAA,CAA2B,CAC5E,IAAMrT,CAAAA,CAAO,CAAA,CAAA,EAAIoT,CAAM,CAAA,CAAA,EAAIC,CAAQ,CAAA,CAAA,CACnC,OACElG,CAAAA,CAAO,YAAA,CAAa,QAAA,CAASnN,CAAI,CAAA,EAAKmN,CAAAA,CAAO,kBAAA,CAAmB,IAAA,CAAMwB,CAAAA,EAAUA,CAAAA,CAAM,IAAA,CAAK3O,CAAI,CAAC,CAEpG,CAGO,SAASyjD,EAAAA,CAAmD58B,CAAAA,CAAW,CAC5E,GAAI,CAACA,GAAO,CAAC28B,EAAAA,CAAmB38B,CAAAA,CAAI,MAAA,CAAQA,CAAAA,CAAI,QAAQ,EACtD,OAAOA,CAAAA,CAET,IAAM68B,CAAAA,CAAS,CAAE,GAAG78B,CAAAA,CAAK,KAAA,CAAO,EAAG,CAAA,CACnC,OAAI,SAAA,GAAa68B,CAAAA,GAAQA,CAAAA,CAAO,QAAU,IAAA,CAAA,CACtC,aAAA,GAAiBA,CAAAA,GAAQA,CAAAA,CAAO,WAAA,CAAc,IAAA,CAAA,CAC3CA,CACT,CAGO,SAASC,EAAAA,CACdnyD,CAAAA,CAC8B,CAC9B,IAAIoyD,CAAAA,CAAU,MACRvT,CAAAA,CAAQ7+C,CAAAA,CAAK,KAAA,CAAM,GAAA,CAAK+jB,CAAAA,EAAS,CACrC,IAAIsuC,CAAAA,CAAc,KAAA,CACZt9B,CAAAA,CAAQhR,CAAAA,CAAK,KAAA,CAAM,GAAA,CAAKlhB,CAAAA,EAAS,CACrC,IAAMqvD,CAAAA,CAASD,EAAAA,CAAoBpvD,CAAI,CAAA,CACvC,OAAIqvD,IAAWrvD,CAAAA,GAAMwvD,CAAAA,CAAc,IAAA,CAAA,CAC5BH,CACT,CAAC,CAAA,CACD,OAAKG,CAAAA,EACLD,CAAAA,CAAU,IAAA,CACH,CAAE,GAAGruC,CAAAA,CAAM,KAAA,CAAAgR,CAAM,CAAA,EAFChR,CAG3B,CAAC,CAAA,CACD,OAAOquC,CAAAA,CAAU,CAAE,GAAGpyD,CAAAA,CAAM,KAAA,CAAA6+C,CAAM,CAAA,CAAI7+C,CACxC,CCnBA,IAAMsyD,EAAAA,CAAQ,4BAAA,CAEDC,EAAAA,CAAN,cAA+B,KAAM,CACjC,OACA,IAAA,CAET,WAAA,CAAYhyD,CAAAA,CAAiBmQ,CAAAA,CAAgB1Q,CAAAA,CAAgB,CAC3D,KAAA,CAAMO,CAAO,CAAA,CACb,IAAA,CAAK,IAAA,CAAO,kBAAA,CACZ,IAAA,CAAK,MAAA,CAASmQ,EACd,IAAA,CAAK,IAAA,CAAO1Q,EACd,CACF,EAUA,SAASwyD,EAAAA,CAASxyD,CAAAA,CAAgD,CAChE,OAAO,OAAOA,CAAAA,EAAS,QAAA,EAAYA,CAAAA,GAAS,MAAQ,CAAC,KAAA,CAAM,OAAA,CAAQA,CAAI,CACzE,CAGA,IAAMyyD,EAAAA,CAAwBzyD,CAAAA,EAASwyD,EAAAA,CAASxyD,CAAI,CAAA,EAAK,KAAA,CAAM,OAAA,CAAQA,EAAK,KAAK,CAAA,CAC3E0yD,EAAAA,CAA2B1yD,CAAAA,EAASwyD,EAAAA,CAASxyD,CAAI,CAAA,EAAK,KAAA,CAAM,OAAA,CAAQA,CAAAA,CAAK,QAAQ,CAAA,CAEjF2yD,EAAAA,CAA+B3yD,CAAAA,EAASwyD,GAASxyD,CAAI,CAAA,EAAK,KAAA,CAAM,OAAA,CAAQA,CAAAA,CAAK,YAAY,CAAA,CAEzF4yD,EAAAA,CAAwB5yD,CAAAA,EAASwyD,EAAAA,CAASxyD,CAAI,CAAA,EAAK,IAAA,GAAQA,CAAAA,CAO3D6yD,GAAmB,CAAC,aAAA,CAAe,aAAA,CAAe,SAAA,CAAW,WAAA,CAAa,WAAA,CAAa,WAAW,CAAA,CAClGC,EAAAA,CAAkC9yD,CAAAA,EACtCwyD,EAAAA,CAASxyD,CAAI,CAAA,EACb6yD,GAAiB,KAAA,CAAOjyD,CAAAA,EAAQ,OAAOZ,CAAAA,CAAKY,CAAG,CAAA,EAAM,QAAQ,CAAA,EAC7D,OAAOZ,CAAAA,CAAK,OAAA,EAAY,SAAA,CAE1B,eAAekwD,EAAAA,CAASphD,EAAoB6U,CAAAA,CAAc9Q,CAAAA,CAAgC,CACxF,GAAI,CAAC/D,CAAAA,CAAS,EAAA,CAAI,CAChB,IAAI9O,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAO,MAAM8O,EAAS,IAAA,GACxB,CAAA,KAAQ,CACN9O,CAAAA,CAAO,OACT,CACA,MAAM,IAAIuyD,EAAAA,CAAiB,CAAA,UAAA,EAAa5uC,CAAI,CAAA,EAAA,EAAK7U,CAAAA,CAAS,MAAM,CAAA,CAAA,CAAIA,CAAAA,CAAS,MAAA,CAAQ9O,CAAI,CAC3F,CAKA,IAAM61C,CAAAA,CAAc/mC,CAAAA,CAAS,OAAA,EAAS,GAAA,GAAM,cAAc,CAAA,EAAK,GAC/D,GAAI+mC,CAAAA,EAAe,CAACA,CAAAA,CAAY,QAAA,CAAS,MAAM,CAAA,CAC7C,MAAM,IAAI0c,EAAAA,CAAiB,CAAA,wBAAA,EAA2B5uC,CAAI,CAAA,CAAA,CAAI7U,CAAAA,CAAS,MAAM,CAAA,CAE/E,IAAI9O,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAAO,MAAM8O,CAAAA,CAAS,IAAA,GACxB,CAAA,KAAQ,CACN,MAAM,IAAIyjD,GAAiB,CAAA,wBAAA,EAA2B5uC,CAAI,CAAA,CAAA,CAAI7U,CAAAA,CAAS,MAAM,CAC/E,CACA,GAAI+D,CAAAA,EAAS,CAACA,CAAAA,CAAM7S,CAAI,CAAA,CACtB,MAAM,IAAIuyD,EAAAA,CAAiB,CAAA,wBAAA,EAA2B5uC,CAAI,CAAA,CAAA,CAAI7U,CAAAA,CAAS,MAAM,EAE/E,OAAO9O,CACT,CAEA,IAAM+yD,EAAAA,CAAe,gBAAA,CACfC,GAAU,kBAAA,CAOVC,EAAAA,CAAe,IAAI,GAAA,CAAI,CAAC,cAAA,CAAgB,eAAA,CAAiB,cAAc,CAAC,CAAA,CAGxEC,EAAAA,CAAc,CAClB,MAAA,CACA,MAAA,CACA,OACA,KAAA,CACA,WAAA,CACA,QAAA,CACA,SAAA,CACA,SAAA,CACA,WAAA,CACA,WAAA,CACA,YAAA,CACA,aAAA,CACA,aAAA,CACA,SAAA,CACA,cAAA,CACA,eAAA,CACA,cAAA,CACA,OACF,CAAA,CAQO,SAASC,EAAAA,CACdvtD,CAAAA,CAAwD,EAAC,CAC/B,CAC1B,IAAMtJ,CAAAA,CAASsJ,CAAAA,CACT89C,CAAAA,CAAgC,EAAC,CACvC,IAAA,IAAWxgC,KAAQgwC,EAAAA,CAAa,CAC9B,IAAM32D,CAAAA,CAAQD,CAAAA,CAAO4mB,CAAI,CAAA,CACzB,GAA2B3mB,CAAAA,EAAU,IAAA,EAAQA,CAAAA,GAAU,EAAA,CAAI,SAC3D,GAAI,OAAOA,CAAAA,EAAU,SAAA,CAAW,CAC1B02D,EAAAA,CAAa,GAAA,CAAI/vC,CAAI,CAAA,CAClB3mB,CAAAA,GAAOmnD,CAAAA,CAAIxgC,CAAI,CAAA,CAAI,GAAA,CAAA,CACf3mB,CAAAA,GACTmnD,CAAAA,CAAIxgC,CAAI,CAAA,CAAI,GAAA,CAAA,CAEd,QACF,CACA,GAAI,OAAO3mB,CAAAA,EAAU,QAAA,CAAU,CAC7B,GAAI,CAAC,MAAA,CAAO,QAAA,CAASA,CAAK,EAAG,SAC7BmnD,CAAAA,CAAIxgC,CAAI,CAAA,CAAI,MAAA,CAAO,IAAA,CAAK,KAAA,CAAM3mB,CAAK,CAAC,CAAA,CACpC,QACF,CACA,IAAMmL,CAAAA,CAAO,OAAOnL,CAAK,CAAA,CAAA,CACpB2mB,CAAAA,GAAS,KAAA,EAASA,CAAAA,GAAS,QAAA,GAAaxb,IAAS,KAAA,EAClDwb,CAAAA,GAAS,WAAA,EAAe,CAAC6vC,EAAAA,CAAa,IAAA,CAAKrrD,CAAI,CAAA,EAC/Cwb,CAAAA,GAAS,MAAA,EAAU,CAAC8vC,EAAAA,CAAQ,IAAA,CAAKtrD,CAAI,CAAA,GACzCg8C,CAAAA,CAAIxgC,CAAI,CAAA,CAAIxb,CAAAA,EACd,CAEA,OAAIg8C,EAAI,IAAA,GAAS,QAAA,EAAU,OAAOA,CAAAA,CAAI,IAAA,CAC/BA,CACT,CAEA,SAAS0P,EAAAA,CAAQ5nC,CAAAA,CAAsC4J,CAAAA,CAAyB,CAC9E,IAAM20B,CAAAA,CAAS,IAAI,eAAA,CACnB,IAAA,IAAW7mC,CAAAA,IAAQgwC,EAAAA,CACb1nC,CAAAA,CAAWtI,CAAI,CAAA,GAAM,MAAA,EAAW6mC,CAAAA,CAAO,GAAA,CAAI7mC,CAAAA,CAAMsI,CAAAA,CAAWtI,CAAI,CAAC,EAEnEkS,CAAAA,EAAQ20B,CAAAA,CAAO,GAAA,CAAI,QAAA,CAAU30B,CAAM,CAAA,CACvC,IAAM1tB,CAAAA,CAAOqiD,CAAAA,CAAO,QAAA,EAAS,CAC7B,OAAOriD,CAAAA,CAAO,IAAIA,CAAI,CAAA,CAAA,CAAK,EAC7B,CAEA,SAASrJ,EAAAA,CAAImQ,CAAAA,CAAsB,CACjC,OAAO,CAAA,EAAGmN,CAAAA,CAAO,cAAc,CAAA,EAAG22C,EAAK,GAAG9jD,CAAI,CAAA,CAChD,CAGA,IAAM6kD,EAAAA,CAAiB,IAAI,GAAA,CAAI,CAAC,WAAA,CAAa,WAAA,CAAa,KAAA,CAAO,OAAO,CAAC,CAAA,CAQzE,SAASC,EAAAA,CAA0B3vC,CAAAA,CAAc,CAC/C,IAAM1H,CAAAA,CAAON,CAAAA,CAAO,cAAA,EAAkB,EAAA,CAChCoI,CAAAA,CAAO,OAAO,MAAA,CAAW,GAAA,CAAc,MAAA,CAAO,QAAA,EAAU,KAAO,MAAA,CACjEvL,CAAAA,CACJ,GAAI,CACFA,CAAAA,CAASuL,CAAAA,CAAO,IAAI,GAAA,CAAI9H,CAAAA,CAAM8H,CAAI,CAAA,CAAI,IAAI,GAAA,CAAI9H,CAAI,EACpD,CAAA,KAAQ,CAGN,MACF,CACA,GAAIzD,CAAAA,CAAO,QAAA,GAAa,QAAA,EACpB,EAAAA,CAAAA,CAAO,QAAA,GAAa,OAAA,EAAW66C,EAAAA,CAAe,IAAI76C,CAAAA,CAAO,QAAQ,CAAA,CAAA,CACrE,MAAM,IAAI+5C,EAAAA,CAAiB,CAAA,YAAA,EAAe5uC,CAAI,CAAA,4BAAA,CAAA,CAAgC,CAAC,CACjF,CAEA,eAAe4vC,EAAAA,CACb/kD,EACAmV,CAAAA,CACAvd,CAAAA,CACAyM,CAAAA,CACY,CAEZ,IAAM/D,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACCjhB,EAAAA,CAAImQ,CAAI,CAAA,CAAG,CAAE,MAAA,CAAQ,MAAO,MAAA,CAAApI,CAAO,CAAC,CAAA,CACpE,OAAO8pD,EAAAA,CAASphD,CAAAA,CAAU6U,CAAAA,CAAM9Q,CAAK,CACvC,CAEA,eAAe2gD,EAAAA,CACbhlD,CAAAA,CACA7G,EACAkE,CAAAA,CACA8X,CAAAA,CACAvd,CAAAA,CACAyM,CAAAA,CACY,CACZ,GAAI,CAAClL,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,8BAA8B,CAAA,CAEhD2rD,EAAAA,CAA0B3vC,CAAI,CAAA,CAE9B,IAAM7U,CAAAA,CAAW,MADAwQ,CAAAA,EAAc,CACCjhB,EAAAA,CAAImQ,CAAI,CAAA,CAAG,CACzC,MAAA,CAAQ,MAAA,CACR,OAAA,CAAS,CAAE,eAAgB,kBAAmB,CAAA,CAC9C,IAAA,CAAM,IAAA,CAAK,SAAA,CAAU,CAAE,GAAG3C,CAAAA,CAAM,IAAA,CAAAlE,CAAK,CAAC,CAAA,CAGtC,QAAA,CAAU,OAAA,CACV,OAAAvB,CACF,CAAC,CAAA,CACD,OAAO8pD,EAAAA,CAASphD,CAAAA,CAAU6U,EAAM9Q,CAAK,CACvC,CAMO,SAAS4gD,EAAAA,CACd7tD,CAAAA,CACAwvB,EACAhvB,CAAAA,CAC2B,CAC3B,OAAOmtD,EAAAA,CACL,CAAA,KAAA,EAAQH,EAAAA,CAAQD,EAAAA,CAAwBvtD,CAAM,CAAA,CAAGwvB,CAAM,CAAC,CAAA,CAAA,CACxD,qBAAA,CACAhvB,CAAAA,CACAqsD,EACF,CACF,CAEO,SAASiB,EAAAA,CAAoBttD,CAAAA,CAA+C,CACjF,OAAOmtD,EAAAA,CAAwB,SAAA,CAAW,uBAAA,CAAyBntD,CAAAA,CAAQwsD,EAAQ,CACrF,CAEO,SAASe,EAAAA,CAAoBvtD,CAAAA,CAA+C,CACjF,OAAOmtD,EAAAA,CAAwB,SAAA,CAAW,uBAAA,CAAyBntD,CAAAA,CAAQssD,EAAW,CACxF,CAEO,SAASkB,EAAAA,CACdhuD,CAAAA,CACAwvB,EACAhvB,CAAAA,CACsC,CACtC,IAAM2jD,CAAAA,CAAS,IAAI,eAAA,CACfnkD,EAAO,IAAA,EAAMmkD,CAAAA,CAAO,GAAA,CAAI,MAAA,CAAQnkD,CAAAA,CAAO,IAAI,EAC3CA,CAAAA,CAAO,KAAA,EAAOmkD,CAAAA,CAAO,GAAA,CAAI,OAAA,CAAS,MAAA,CAAOnkD,CAAAA,CAAO,KAAK,CAAC,CAAA,CACtDwvB,CAAAA,EAAQ20B,CAAAA,CAAO,GAAA,CAAI,QAAA,CAAU30B,CAAM,CAAA,CACvC,IAAM1tB,CAAAA,CAAOqiD,CAAAA,CAAO,QAAA,EAAS,CAC7B,OAAOwJ,EAAAA,CACL,CAAA,gBAAA,EAAmB7rD,CAAAA,CAAO,CAAA,CAAA,EAAIA,CAAI,CAAA,CAAA,CAAK,EAAE,GACzC,gCAAA,CACAtB,CAAAA,CACAqsD,EACF,CACF,CAEO,SAASoB,EAAAA,CACdviD,CAAAA,CACAlL,CAAAA,CACmC,CACnC,OAAOmtD,EAAAA,CACL,CAAA,aAAA,EAAgB,kBAAA,CAAmBjiD,CAAQ,CAAC,CAAA,CAAA,CAC5C,yBAAA,CACAlL,CAAAA,CACA0sD,EACF,CACF,CAEO,SAASgB,EAAAA,CACdlyC,CAAAA,CACAC,CAAAA,CACAzb,CAAAA,CACuB,CACvB,OAAOmtD,EAAAA,CACL,CAAA,MAAA,EAAS,kBAAA,CAAmB3xC,CAAM,CAAC,CAAA,CAAA,EAAI,kBAAA,CAAmBC,CAAQ,CAAC,CAAA,CAAA,CACnE,qBAAA,CACAzb,CAAAA,CACAusD,EACF,CACF,CAMO,SAASoB,EAAAA,CACdpsD,CAAAA,CACA/B,CAAAA,CACAwvB,CAAAA,CACAhvB,CAAAA,CACiC,CACjC,IAAMyF,CAAAA,CAAgC,CAAE,GAAGsnD,EAAAA,CAAwBvtD,CAAM,CAAE,EAC3E,OAAIwvB,CAAAA,GAAQvpB,CAAAA,CAAK,MAAA,CAASupB,CAAAA,CAAAA,CACnBo+B,EAAAA,CACL,cAAA,CACA7rD,CAAAA,CACAkE,CAAAA,CACA,mBAAA,CACAzF,CAAAA,CACAqsD,EACF,CACF,CAEO,SAASuB,EAAAA,CACdrsD,CAAAA,CACAkE,CAAAA,CACAzF,CAAAA,CAC+B,CAC/B,OAAOotD,EAAAA,CACL,OAAA,CACA7rD,CAAAA,CACA,CACE,KAAA,CAAOkE,CAAAA,CAAK,KAAA,CACZ,IAAA,CAAMA,EAAK,IAAA,CAAK,KAAA,CAAM,CAAA,CAAG,GAAG,CAAA,CAC5B,OAAA,CAASA,CAAAA,CAAK,OAAA,CAAQ,KAAA,CAAM,CAAA,CAAG,GAAG,CACpC,CAAA,CACA,MAAA,CACAzF,CACF,CACF,CAOO,SAAS6tD,EAAAA,CACdtsD,CAAAA,CACAvB,CAAAA,CACkC,CAIlC,OAAOotD,EAAAA,CAAkC,cAAA,CAAgB7rD,CAAAA,CAAM,EAAC,CAAG,aAAA,CAAevB,EAAQssD,EAAW,CACvG,CAEO,SAASwB,EAAAA,CACdvsD,CAAAA,CACAmK,CAAAA,CACgD,CAChD,GAAM,CAAE,OAAA,CAAA6+B,CAAAA,CAAS,IAAA,CAAAn/B,CAAAA,CAAM,MAAA2iD,CAAAA,CAAO,IAAA,CAAAC,CAAK,CAAA,CAAItiD,CAAAA,CACvC,GAAI,CAAC6+B,CAAAA,EAAW,CAACn/B,CAAAA,CACf,MAAM,IAAI,KAAA,CAAM,uDAAuD,CAAA,CAEzE,IAAM3F,CAAAA,CAAgC,CAAE,OAAA,CAAA8kC,CAAAA,CAAS,IAAA,CAAAn/B,CAAK,CAAA,CAGtD,OAAI2iD,CAAAA,GAAOtoD,CAAAA,CAAK,KAAA,CAAQsoD,CAAAA,CAAAA,CACpBC,IAAS,MAAA,GAAWvoD,CAAAA,CAAK,IAAA,CAAOuoD,CAAAA,CAAAA,CAC7BZ,EAAAA,CAAgD,aAAA,CAAe7rD,CAAAA,CAAMkE,CAAAA,CAAM,aAAa,CACjG,CAEO,SAASwoD,EAAAA,CACd1sD,CAAAA,CACAgpC,EAC2C,CAC3C,GAAI,CAACA,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,+CAA+C,CAAA,CAEjE,OAAO6iB,EAAAA,CACL,gBAAA,CACA7rD,CAAAA,CACA,CAAE,QAAAgpC,CAAQ,CAAA,CACV,gBACF,CACF,CAEO,SAAS2jB,GACd3sD,CAAAA,CACAmK,CAAAA,CAC+B,CAC/B,GAAM,CAAE,MAAA,CAAA8P,EAAQ,QAAA,CAAAC,CAAAA,CAAU,KAAA,CAAA8xB,CAAAA,CAAO,MAAA,CAAAtuC,CAAAA,CAAQ,IAAA,CAAA+uD,CAAAA,CAAM,YAAA,CAAAG,CAAAA,CAAc,IAAA,CAAAC,CAAK,CAAA,CAAI1iD,CAAAA,CACtE,GAAI,CAAC8P,CAAAA,EAAU,CAACC,CAAAA,EAAY,CAAC8xB,CAAAA,CAC3B,MAAM,IAAI,KAAA,CAAM,uDAAuD,CAAA,CAEzE,IAAM9nC,CAAAA,CAAgC,CAAE,OAAA+V,CAAAA,CAAQ,QAAA,CAAAC,CAAAA,CAAU,KAAA,CAAA8xB,CAAM,CAAA,CAChE,OAAItuC,CAAAA,GAAQwG,CAAAA,CAAK,MAAA,CAASxG,CAAAA,CAAAA,CACtB+uD,CAAAA,GAAMvoD,CAAAA,CAAK,IAAA,CAAOuoD,GAClBG,CAAAA,GAAc1oD,CAAAA,CAAK,YAAA,CAAe0oD,CAAAA,CAAAA,CAClCC,CAAAA,GAAM3oD,CAAAA,CAAK,KAAO2oD,CAAAA,CAAAA,CACfhB,EAAAA,CAA+B,OAAA,CAAS7rD,CAAAA,CAAMkE,CAAAA,CAAM,UAAU,CACvE,CAEO,SAAS4oD,EAAAA,CACd9sD,CAAAA,CACAmK,CAAAA,CACoC,CACpC,GAAI,CAACA,CAAAA,CAAM,MAAA,EAAU,CAACA,CAAAA,CAAM,QAAA,CAC1B,MAAM,IAAI,KAAA,CAAM,sDAAsD,CAAA,CAExE,OAAO0hD,EAAAA,CACL,aAAA,CACA7rD,CAAAA,CACA,CAAE,MAAA,CAAQmK,CAAAA,CAAM,MAAA,CAAQ,QAAA,CAAUA,CAAAA,CAAM,QAAS,EACjD,YACF,CACF,CAEO,SAAS4iD,EAAAA,CACd/sD,CAAAA,CACA/B,CAAAA,CAAgC,EAAC,CACjCQ,CAAAA,CACkC,CAClC,IAAMyF,CAAAA,CAAgC,GACtC,OAAIjG,CAAAA,CAAO,KAAA,GAAOiG,CAAAA,CAAK,KAAA,CAAQjG,CAAAA,CAAO,KAAA,CAAA,CAClCA,CAAAA,CAAO,MAAA,GAAQiG,CAAAA,CAAK,MAAA,CAASjG,CAAAA,CAAO,MAAA,CAAA,CACpCA,CAAAA,CAAO,QAAOiG,CAAAA,CAAK,KAAA,CAAQjG,CAAAA,CAAO,KAAA,CAAA,CAC/B4tD,EAAAA,CAAkC,QAAA,CAAU7rD,CAAAA,CAAMkE,CAAAA,CAAM,gBAAA,CAAkBzF,CAAAA,CAAQqsD,EAAQ,CACnG,CAEO,SAASkC,GACdhtD,CAAAA,CACAmK,CAAAA,CACiC,CACjC,GAAI,CAAC,MAAA,CAAO,QAAA,CAASA,CAAAA,CAAM,OAAO,CAAA,EAAK,CAACA,CAAAA,CAAM,MAAA,CAC5C,MAAM,IAAI,KAAA,CAAM,iDAAiD,CAAA,CAEnE,IAAMjG,CAAAA,CAAgC,CAAE,OAAA,CAASiG,CAAAA,CAAM,OAAA,CAAS,MAAA,CAAQA,CAAAA,CAAM,MAAO,CAAA,CACrF,OAAIA,EAAM,MAAA,GAAQjG,CAAAA,CAAK,MAAA,CAASiG,CAAAA,CAAM,MAAA,CAAA,CAC/B0hD,EAAAA,CAAiC,UAAW7rD,CAAAA,CAAMkE,CAAAA,CAAM,aAAa,CAC9E,CAEA,IAAM+oD,GAAY,gBAAA,CAEX,SAASC,EAAAA,CACdltD,CAAAA,CACAmK,CAAAA,CAC0B,CAC1B,GAAM,CAAE,MAAA,CAAA8P,CAAAA,CAAQ,QAAA,CAAAC,CAAAA,CAAU,MAAA,CAAAizC,CAAAA,CAAQ,SAAAC,CAAS,CAAA,CAAIjjD,CAAAA,CAC/C,GAAI,CAAC8P,CAAAA,EAAU,CAACC,CAAAA,EAAY,CAACkzC,CAAAA,CAC3B,MAAM,IAAI,KAAA,CAAM,oEAAoE,EAEtF,IAAMlpD,CAAAA,CAAgC,CAAE,MAAA,CAAA+V,CAAAA,CAAQ,QAAA,CAAAC,CAAAA,CAAU,QAAA,CAAAkzC,CAAS,CAAA,CAGnE,OAAI,OAAOD,CAAAA,EAAW,QAAA,EAAYF,GAAU,IAAA,CAAKE,CAAM,CAAA,GAAGjpD,CAAAA,CAAK,MAAA,CAASipD,CAAAA,CAAAA,CACjEtB,GAA0B,iBAAA,CAAmB7rD,CAAAA,CAAMkE,CAAAA,CAAM,0BAA0B,CAC5F,CAEO,SAASmpD,EAAAA,CACdrtD,CAAAA,CACAmK,CAAAA,CACsC,CACtC,GAAI,CAACA,CAAAA,CAAM,MAAA,EAAU,CAACA,CAAAA,CAAM,QAAA,EAAY,CAACA,CAAAA,CAAM,MAAA,CAC7C,MAAM,IAAI,KAAA,CAAM,0EAA0E,CAAA,CAE5F,OAAO0hD,EAAAA,CACL,yBAAA,CACA7rD,CAAAA,CACA,CAAE,MAAA,CAAQmK,CAAAA,CAAM,MAAA,CAAQ,QAAA,CAAUA,CAAAA,CAAM,SAAU,MAAA,CAAQA,CAAAA,CAAM,MAAO,CAAA,CACvE,wBACF,CACF,CCzeO,IAAMmjD,EAAAA,CAA0B,EAAA,CAC1BC,GAAyB,IAQ/B,SAASC,EAAAA,CACdn1D,CAAAA,CACAo1D,CAAAA,CAC8B,CAC9B,IAAMvL,CAAAA,CAAO,IAAI,GAAA,CACbuI,CAAAA,CAAU,KAAA,CACRvT,CAAAA,CAAQ7+C,EAAK,KAAA,CAAM,GAAA,CAAK+jB,CAAAA,EAAS,CACrC,IAAMgR,CAAAA,CAAQhR,CAAAA,CAAK,KAAA,CAAM,MAAA,CAAQsR,CAAAA,EAAQ,CACvC,IAAMz0B,CAAAA,CAAMw0D,CAAAA,CAAM//B,CAAG,CAAA,CACrB,OAAIw0B,CAAAA,CAAK,GAAA,CAAIjpD,CAAG,CAAA,EACdwxD,CAAAA,CAAU,IAAA,CACH,KAAA,GAETvI,CAAAA,CAAK,GAAA,CAAIjpD,CAAG,CAAA,CACL,IAAA,CACT,CAAC,CAAA,CACD,OAAOm0B,CAAAA,CAAM,MAAA,GAAWhR,CAAAA,CAAK,KAAA,CAAM,MAAA,CAASA,CAAAA,CAAO,CAAE,GAAGA,CAAAA,CAAM,KAAA,CAAAgR,CAAM,CACtE,CAAC,CAAA,CACD,OAAOq9B,CAAAA,CAAU,CAAE,GAAGpyD,CAAAA,CAAM,KAAA,CAAA6+C,CAAM,CAAA,CAAI7+C,CACxC,CAGO,SAASq1D,EAAAA,CACdr1D,CAAAA,CAC8B,CAC9B,OAAOm1D,EAAAA,CAAcn1D,CAAAA,CAAOq1B,CAAAA,EAAQA,CAAAA,CAAI,OAAO,CACjD,CAgBO,SAASigC,EAAAA,CACdt1D,CAAAA,CAC8B,CAC9B,OAAOmyD,EAAAA,CAAsBkD,GAAoBr1D,CAAI,CAAC,CACxD,CAYO,SAASu1D,EAAAA,CAAoC3vD,CAAAA,CAA6B,EAAC,CAAG,CACnF,IAAMtI,CAAAA,CAAQsI,CAAAA,CAAO,KAAA,EAASqvD,GACxBzpC,CAAAA,CAAa2nC,EAAAA,CAAwB,CAAE,GAAGvtD,CAAAA,CAAQ,KAAA,CAAAtI,CAAM,CAAC,CAAA,CAE/D,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,SAAS,IAAA,CAAKwL,CAAU,CAAA,CAC5C,gBAAA,CAAkB,MAAA,CAClB,OAAA,CAAS,CAAC,CAAE,SAAA,CAAAb,CAAAA,CAAW,MAAA,CAAAvkB,CAAO,CAAA,GAAMqtD,GAAsB,CAAE,GAAG7tD,CAAAA,CAAQ,KAAA,CAAAtI,CAAM,CAAA,CAAGqtB,CAAAA,CAAWvkB,CAAM,CAAA,CACjG,gBAAA,CAAmBykB,CAAAA,EACb,CAACA,CAAAA,EAAYA,CAAAA,CAAS,MAAM,MAAA,CAASvtB,CAAAA,CACvC,MAAA,CAEoCutB,CAAAA,CAAS,KAAA,CAAMA,CAAAA,CAAS,KAAA,CAAM,MAAA,CAAS,CAAC,CAAA,EACjE,OAAA,EAAWA,CAAAA,CAAS,WAAA,EAAe,MAAA,CAElD,OAAQyqC,EAAAA,CACR,SAAA,CAAWJ,EACb,CAAC,CACH,CClFO,SAASM,EAAAA,EAAgC,CAC9C,OAAOz1C,wBAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,MAAA,EAAO,CACpC,QAAS,CAAC,CAAE,MAAA,CAAA5Z,CAAO,CAAA,GAAMstD,EAAAA,CAAoBttD,CAAM,CAAA,CACnD,SAAA,CAAW,IACb,CAAC,CACH,CCVO,SAASqvD,EAAAA,EAAgC,CAC9C,OAAO11C,wBAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,MAAA,EAAO,CACpC,OAAA,CAAS,CAAC,CAAE,MAAA,CAAA5Z,CAAO,CAAA,GAAMutD,EAAAA,CAAoBvtD,CAAM,EACnD,SAAA,CAAW,GACb,CAAC,CACH,CCFO,SAASsvD,EAAAA,CACdpkD,CAAAA,CACA3J,CAAAA,CACA,CACA,OAAOoY,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,WAAA,CAAY1O,CAAQ,CAAA,CACjD,OAAA,CAAS,CAAC,CAAE,MAAA,CAAAlL,CAAO,IAAM6tD,EAAAA,CAA0BtsD,CAAAA,CAAMvB,CAAM,CAAA,CAC/D,OAAA,CAAS,CAAC,CAACkL,CAAAA,EAAY,CAAC,CAAC3J,CAAAA,CACzB,SAAA,CAAW,GACb,CAAC,CACH,CCZO,IAAMguD,EAAAA,CAAqC,GAM3C,SAASC,EAAAA,CACdhwD,CAAAA,CAAwC,EAAC,CACzC,CACA,IAAMsc,CAAAA,CAAOtc,CAAAA,CAAO,IAAA,EAAQ,QAAA,CACtBtI,CAAAA,CAAQsI,CAAAA,CAAO,KAAA,EAAS+vD,EAAAA,CACxBnqC,CAAAA,CAAqC,CAAE,IAAA,CAAAtJ,CAAAA,CAAM,KAAA,CAAO,MAAA,CAAO5kB,CAAK,CAAE,CAAA,CAExE,OAAOotB,+BAAAA,CAAqB,CAC1B,QAAA,CAAU1K,CAAAA,CAAU,QAAA,CAAS,eAAA,CAAgBwL,CAAU,CAAA,CACvD,gBAAA,CAAkB,MAAA,CAClB,OAAA,CAAS,CAAC,CAAE,SAAA,CAAAb,CAAAA,CAAW,MAAA,CAAAvkB,CAAO,CAAA,GAC5BwtD,EAAAA,CAAiC,CAAE,IAAA,CAAA1xC,CAAAA,CAAM,KAAA,CAAA5kB,CAAM,CAAA,CAAGqtB,CAAAA,CAAWvkB,CAAM,CAAA,CACrE,gBAAA,CAAmBykB,CAAAA,EACb,CAACA,CAAAA,EAAYA,CAAAA,CAAS,KAAA,CAAM,MAAA,CAASvtB,CAAAA,CACvC,MAAA,CAEWutB,CAAAA,CAAS,KAAA,CAAMA,CAAAA,CAAS,KAAA,CAAM,OAAS,CAAC,CAAA,EACxC,OAAA,EAAWA,CAAAA,CAAS,WAAA,EAAe,MAAA,CAGlD,MAAA,CAAS7qB,CAAAA,EACPmyD,EAAAA,CAAsBgD,EAAAA,CAAcn1D,CAAAA,CAAO6C,CAAAA,EAAS,CAAA,EAAGA,CAAAA,CAAK,MAAM,CAAA,CAAA,EAAIA,CAAAA,CAAK,QAAQ,CAAA,CAAE,CAAC,CAAA,CACxF,UAAW,GACb,CAAC,CACH,CCjCA,IAAMgzD,EAAAA,CAAa,oBAAA,CACbC,EAAAA,CAAc,oBAAA,CAQb,SAASC,EAAAA,CAA4Bn0C,CAAAA,CAAgBC,CAAAA,CAAkB,CAC5E,IAAMziB,CAAAA,CAAQy2D,EAAAA,CAAW,KAAKj0C,CAAM,CAAA,EAAKk0C,EAAAA,CAAY,IAAA,CAAKj0C,CAAQ,CAAA,CAElE,OAAO9B,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAK4B,CAAAA,CAAQC,CAAQ,CAAA,CAClD,OAAA,CAAS,CAAC,CAAE,MAAA,CAAAzb,CAAO,CAAA,GAAM,CAGvB,GAAI,CAAChH,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,4CAA4C,CAAA,CAE9D,OAAO00D,EAAAA,CAAkBlyC,CAAAA,CAAQC,CAAAA,CAAUzb,CAAM,CACnD,CAAA,CACA,OAAA,CAAShH,CAAAA,CACT,SAAA,CAAW,IACb,CAAC,CACH,CCzBA,IAAMy2D,EAAAA,CAAa,oBAAA,CAWZ,SAASG,EAAAA,CAAmC1kD,CAAAA,CAAkB,CACnE,IAAMlS,CAAAA,CAAQy2D,GAAW,IAAA,CAAKvkD,CAAAA,EAAY,EAAE,CAAA,CAE5C,OAAOyO,uBAAAA,CAAa,CAClB,QAAA,CAAUC,CAAAA,CAAU,QAAA,CAAS,WAAA,CAAY1O,CAAQ,CAAA,CACjD,OAAA,CAAS,CAAC,CAAE,MAAA,CAAAlL,CAAO,CAAA,GAAM,CAGvB,GAAI,CAAChH,CAAAA,CACH,MAAM,IAAI,KAAA,CAAM,8CAA8C,CAAA,CAEhE,OAAOy0D,GAA8BviD,CAAAA,CAAUlL,CAAM,CACvD,CAAA,CACA,OAAA,CAAShH,CAAAA,CACT,UAAW,GACb,CAAC,CACH,CCNO,SAAS62D,EAAAA,CAAwBx6D,EAAgC,CACtE,GAAI,CAACA,CAAAA,EAAU,OAAOA,CAAAA,EAAW,QAAA,CAAU,OAAO,IAAA,CAClD,IAAMmE,CAAAA,CAAInE,CAAAA,CACJmH,CAAAA,CAAK,OAAOhD,EAAE,KAAA,EAAU,QAAA,CAAWA,CAAAA,CAAE,KAAA,CAAQ,OAAOA,CAAAA,CAAE,EAAA,EAAO,QAAA,CAAWA,CAAAA,CAAE,EAAA,CAAK,IAAA,CACrF,OAAOgD,CAAAA,EAAM,gBAAA,CAAiB,KAAKA,CAAE,CAAA,CAAIA,CAAAA,CAAK,IAChD,CAQO,SAASszD,EAAAA,CACd5kD,CAAAA,CACAwH,CAAAA,CACAI,CAAAA,CACA,CACA,OAAOkB,CAAAA,CACL4F,CAAAA,CAAU,SAAS,SAAA,EAAU,CAC7B1O,CAAAA,CACCkJ,CAAAA,EAAY,CACXA,CAAAA,CAAQ,QAAA,CACJsmB,EAAAA,CAA2BxvB,CAAAA,CAAWkJ,CAAAA,CAAQ,MAAA,CAAQA,CAAAA,CAAQ,QAAQ,CAAA,CACtEomB,GAAyBtvB,CAAAA,CAAWkJ,CAAAA,CAAQ,MAAA,CAAQA,CAAAA,CAAQ,QAAA,CAAUA,CAAAA,CAAQ,MAAM,CAC1F,CAAA,CACA,MAAOinB,CAAAA,CAASxJ,CAAAA,GAAc,CAC5B,MAAMnd,EAAyBhC,CAAAA,EAAM,OAAA,CAASI,CAAAA,CAAe,CAC3D8G,CAAAA,CAAU,QAAA,CAAS,IAAA,CAAKiY,CAAAA,CAAU,MAAA,CAAQA,CAAAA,CAAU,QAAQ,CAAA,CAC5D,CAAC,GAAGjY,EAAU,QAAA,CAAS,sBAAsB,CAC/C,CAAC,EACH,CAAA,CACAlH,CAAAA,CACA,SAAA,CACA,CAAE,aAAA,CAAAI,CAAc,CAClB,CACF","file":"index.cjs","sourcesContent":["/**\n * @license bytebuffer.ts (c) 2015 Daniel Wirtz \n * Backing buffer: ArrayBuffer, Accessor: DataView\n * Released under the Apache License, Version 2.0\n * see: https://github.com/dcodeIO/bytebuffer.ts for details\n * modified by @xmcl/bytebuffer\n * And customized for hive-tx\n */\n\nconst EMPTY_BUFFER = new ArrayBuffer(0)\n\n// Lazy-init to avoid crashing on runtimes that lack TextEncoder/TextDecoder\n// (notably React Native with Hermes). Falls back to manual UTF-8 encode/decode.\nlet _encoder: { encode(s: string): Uint8Array } | null = null\nlet _decoder: { decode(b: BufferSource): string } | null = null\n\nfunction getEncoder(): { encode(s: string): Uint8Array } {\n if (!_encoder) {\n if (typeof TextEncoder !== 'undefined') {\n _encoder = new TextEncoder()\n } else {\n _encoder = {\n encode(s: string): Uint8Array {\n // Manual UTF-8 encode fallback\n const utf8: number[] = []\n for (let i = 0; i < s.length; i++) {\n let c = s.charCodeAt(i)\n if (c < 0x80) {\n utf8.push(c)\n } else if (c < 0x800) {\n utf8.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f))\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < s.length) {\n const next = s.charCodeAt(++i)\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff)\n utf8.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n } else {\n utf8.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n }\n }\n return new Uint8Array(utf8)\n },\n }\n }\n }\n return _encoder\n}\n\nfunction getDecoder(): { decode(b: BufferSource): string } {\n if (!_decoder) {\n if (typeof TextDecoder !== 'undefined') {\n _decoder = new TextDecoder()\n } else {\n _decoder = {\n decode(b: BufferSource): string {\n const bytes = b instanceof ArrayBuffer ? new Uint8Array(b) : new Uint8Array((b as ArrayBufferView).buffer, (b as ArrayBufferView).byteOffset, (b as ArrayBufferView).byteLength)\n let result = ''\n for (let i = 0; i < bytes.length; ) {\n const byte = bytes[i]\n let codePoint: number\n if (byte < 0x80) { codePoint = byte; i += 1 }\n else if ((byte & 0xe0) === 0xc0) { codePoint = ((byte & 0x1f) << 6) | (bytes[i + 1] & 0x3f); i += 2 }\n else if ((byte & 0xf0) === 0xe0) { codePoint = ((byte & 0x0f) << 12) | ((bytes[i + 1] & 0x3f) << 6) | (bytes[i + 2] & 0x3f); i += 3 }\n else { codePoint = ((byte & 0x07) << 18) | ((bytes[i + 1] & 0x3f) << 12) | ((bytes[i + 2] & 0x3f) << 6) | (bytes[i + 3] & 0x3f); i += 4 }\n if (codePoint <= 0xffff) { result += String.fromCharCode(codePoint) }\n else { codePoint -= 0x10000; result += String.fromCharCode(0xd800 + (codePoint >> 10), 0xdc00 + (codePoint & 0x3ff)) }\n }\n return result\n },\n }\n }\n }\n return _decoder\n}\n\nexport class ByteBuffer {\n static LITTLE_ENDIAN = true\n static BIG_ENDIAN = false\n static DEFAULT_CAPACITY = 16\n static DEFAULT_ENDIAN = ByteBuffer.BIG_ENDIAN\n\n buffer: ArrayBufferLike\n view: DataView\n offset: number\n markedOffset: number\n limit: number\n littleEndian: boolean\n\n constructor(\n capacity: number = ByteBuffer.DEFAULT_CAPACITY,\n littleEndian: boolean = ByteBuffer.DEFAULT_ENDIAN\n ) {\n this.buffer = capacity === 0 ? EMPTY_BUFFER : new ArrayBuffer(capacity)\n this.view = capacity === 0 ? new DataView(EMPTY_BUFFER) : new DataView(this.buffer)\n this.offset = 0\n this.markedOffset = -1\n this.limit = capacity\n this.littleEndian = littleEndian\n }\n\n static allocate(capacity?: number, littleEndian?: boolean): ByteBuffer {\n return new ByteBuffer(capacity, littleEndian)\n }\n\n static concat(\n buffers: Array,\n littleEndian?: boolean\n ): ByteBuffer {\n let capacity = 0\n for (let i = 0; i < buffers.length; ++i) {\n const buf = buffers[i]\n if (buf instanceof ByteBuffer) {\n capacity += buf.limit - buf.offset\n } else if (buf instanceof Uint8Array) {\n capacity += buf.length\n } else if (buf instanceof ArrayBuffer) {\n capacity += buf.byteLength\n } else if (Array.isArray(buf)) {\n capacity += buf.length\n } else {\n throw TypeError('Illegal buffer')\n }\n }\n\n if (capacity === 0) {\n return new ByteBuffer(0, littleEndian)\n }\n\n const bb = new ByteBuffer(capacity, littleEndian)\n const view = new Uint8Array(bb.buffer)\n let offset = 0\n\n for (let i = 0; i < buffers.length; ++i) {\n let buf = buffers[i]\n if (buf instanceof ByteBuffer) {\n view.set(new Uint8Array(buf.buffer, buf.offset, buf.limit - buf.offset), offset)\n offset += buf.limit - buf.offset\n } else if (buf instanceof Uint8Array) {\n view.set(buf, offset)\n offset += buf.length\n } else if (buf instanceof ArrayBuffer) {\n view.set(new Uint8Array(buf), offset)\n offset += buf.byteLength\n } else {\n // Array\n view.set(buf as number[], offset)\n offset += (buf as number[]).length\n }\n }\n\n bb.limit = bb.offset = offset\n bb.offset = 0\n return bb\n }\n\n static wrap(\n buffer: ByteBuffer | ArrayBuffer | Uint8Array | number[],\n littleEndian?: boolean\n ): ByteBuffer {\n if (buffer instanceof ByteBuffer) {\n const bb = buffer.clone()\n bb.markedOffset = -1\n return bb\n }\n\n let bb: ByteBuffer\n if (buffer instanceof Uint8Array) {\n bb = new ByteBuffer(0, littleEndian)\n if (buffer.length > 0) {\n bb.buffer = buffer.buffer\n bb.offset = buffer.byteOffset\n bb.limit = buffer.byteOffset + buffer.byteLength\n bb.view = new DataView(buffer.buffer)\n }\n } else if (buffer instanceof ArrayBuffer) {\n bb = new ByteBuffer(0, littleEndian)\n if (buffer.byteLength > 0) {\n bb.buffer = buffer\n bb.offset = 0\n bb.limit = buffer.byteLength\n bb.view = buffer.byteLength > 0 ? new DataView(buffer) : new DataView(EMPTY_BUFFER)\n }\n } else if (Array.isArray(buffer)) {\n bb = new ByteBuffer(buffer.length, littleEndian)\n bb.limit = buffer.length\n new Uint8Array(bb.buffer).set(buffer)\n } else {\n throw TypeError('Illegal buffer')\n }\n\n return bb\n }\n\n writeBytes(\n source: ByteBuffer | ArrayBuffer | Uint8Array | number[],\n offset?: number\n ): ByteBuffer {\n return this.append(source, offset)\n }\n\n writeInt8(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 1 > this.buffer.byteLength) {\n this.resize(offset + 1)\n }\n\n this.view.setInt8(offset, value)\n\n if (relative) this.offset += 1\n return this\n }\n\n writeByte(value: number, offset?: number): ByteBuffer {\n return this.writeInt8(value, offset)\n }\n\n writeUint8(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 1 > this.buffer.byteLength) {\n this.resize(offset + 1)\n }\n\n this.view.setUint8(offset, value)\n\n if (relative) this.offset += 1\n return this\n }\n\n writeUInt8(value: number, offset?: number): ByteBuffer {\n return this.writeUint8(value, offset)\n }\n\n readUint8(offset?: number): number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getUint8(offset)\n if (relative) this.offset += 1\n return value\n }\n\n readUInt8(offset?: number): number {\n return this.readUint8(offset)\n }\n\n writeInt16(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 2 > this.buffer.byteLength) {\n this.resize(offset + 2)\n }\n\n this.view.setInt16(offset, value, this.littleEndian)\n\n if (relative) this.offset += 2\n return this\n }\n\n writeShort(value: number, offset?: number): ByteBuffer {\n return this.writeInt16(value, offset)\n }\n\n writeUint16(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 2 > this.buffer.byteLength) {\n this.resize(offset + 2)\n }\n\n this.view.setUint16(offset, value, this.littleEndian)\n\n if (relative) this.offset += 2\n return this\n }\n\n writeUInt16(value: number, offset?: number): ByteBuffer {\n return this.writeUint16(value, offset)\n }\n\n writeInt32(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 4 > this.buffer.byteLength) {\n this.resize(offset + 4)\n }\n\n this.view.setInt32(offset, value, this.littleEndian)\n\n if (relative) this.offset += 4\n return this\n }\n\n writeInt(value: number, offset?: number): ByteBuffer {\n return this.writeInt32(value, offset)\n }\n\n writeUint32(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 4 > this.buffer.byteLength) {\n this.resize(offset + 4)\n }\n\n this.view.setUint32(offset, value, this.littleEndian)\n\n if (relative) this.offset += 4\n return this\n }\n\n writeUInt32(value: number, offset?: number): ByteBuffer {\n return this.writeUint32(value, offset)\n }\n\n readUint32(offset?: number): number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getUint32(offset, this.littleEndian)\n if (relative) {\n this.offset += 4\n }\n return value\n }\n\n readUInt32 = this.readUint32\n\n append(source: ByteBuffer | ArrayBuffer | Uint8Array | number[], offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n let src: Uint8Array\n if (source instanceof ByteBuffer) {\n src = new Uint8Array(source.buffer, source.offset, source.limit - source.offset)\n source.offset += src.length\n } else if (source instanceof Uint8Array) {\n src = source\n } else if (source instanceof ArrayBuffer) {\n src = new Uint8Array(source)\n } else {\n src = new Uint8Array(source)\n }\n\n if (src.length <= 0) return this\n\n if (offset + src.length > this.buffer.byteLength) {\n this.resize(offset + src.length)\n }\n\n new Uint8Array(this.buffer).set(src, offset)\n\n if (relative) this.offset += src.length\n return this\n }\n\n clone(copy?: boolean): ByteBuffer {\n const bb = new ByteBuffer(0, this.littleEndian)\n if (copy) {\n bb.buffer = new ArrayBuffer(this.buffer.byteLength)\n new Uint8Array(bb.buffer).set(new Uint8Array(this.buffer))\n bb.view = new DataView(bb.buffer)\n } else {\n bb.buffer = this.buffer\n bb.view = this.view\n }\n bb.offset = this.offset\n bb.markedOffset = this.markedOffset\n bb.limit = this.limit\n return bb\n }\n\n copy(begin?: number, end?: number): ByteBuffer {\n if (begin === undefined) begin = this.offset\n if (end === undefined) end = this.limit\n\n if (begin === end) {\n return new ByteBuffer(0, this.littleEndian)\n }\n\n const capacity = end - begin\n const bb = new ByteBuffer(capacity, this.littleEndian)\n bb.offset = 0\n bb.limit = capacity\n\n new Uint8Array(bb.buffer).set(new Uint8Array(this.buffer).subarray(begin, end), 0)\n return bb\n }\n\n copyTo(\n target: ByteBuffer,\n targetOffset?: number,\n sourceOffset?: number,\n sourceLimit?: number\n ): ByteBuffer {\n const targetRelative = typeof targetOffset === 'undefined'\n const relative = typeof sourceOffset === 'undefined'\n targetOffset = targetRelative ? target.offset : targetOffset!\n sourceOffset = relative ? this.offset : sourceOffset!\n sourceLimit = sourceLimit === undefined ? this.limit : sourceLimit\n\n const len = sourceLimit - sourceOffset\n if (len === 0) return target\n\n target.ensureCapacity(targetOffset + len)\n new Uint8Array(target.buffer).set(\n new Uint8Array(this.buffer).subarray(sourceOffset, sourceLimit),\n targetOffset\n )\n\n if (relative) this.offset += len\n if (targetRelative) target.offset += len\n return this\n }\n\n ensureCapacity(capacity: number): ByteBuffer {\n let current = this.buffer.byteLength\n if (current < capacity) {\n return this.resize((current *= 2) > capacity ? current : capacity)\n }\n return this\n }\n\n flip(): ByteBuffer {\n this.limit = this.offset\n this.offset = 0\n return this\n }\n\n resize(capacity: number): ByteBuffer {\n if (this.buffer.byteLength < capacity) {\n const buffer = new ArrayBuffer(capacity)\n new Uint8Array(buffer).set(new Uint8Array(this.buffer))\n this.buffer = buffer\n this.view = new DataView(buffer)\n }\n return this\n }\n\n skip(length: number): ByteBuffer {\n this.offset += length\n return this\n }\n\n writeInt64(value: number | bigint, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (typeof value === 'number') value = BigInt(value)\n\n if (offset + 8 > this.buffer.byteLength) {\n this.resize(offset + 8)\n }\n\n this.view.setBigInt64(offset, value, this.littleEndian)\n\n if (relative) this.offset += 8\n return this\n }\n\n writeLong(value: number | bigint, offset?: number): ByteBuffer {\n return this.writeInt64(value, offset)\n }\n\n readInt64(offset?: number): bigint {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getBigInt64(offset, this.littleEndian)\n if (relative) this.offset += 8\n return value\n }\n\n readLong(offset?: number): bigint {\n return this.readInt64(offset)\n }\n\n writeUint64(value: number | bigint, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (typeof value === 'number') value = BigInt(value)\n\n if (offset + 8 > this.buffer.byteLength) {\n this.resize(offset + 8)\n }\n\n this.view.setBigUint64(offset, value, this.littleEndian)\n\n if (relative) this.offset += 8\n return this\n }\n\n writeUInt64(value: number | bigint, offset?: number): ByteBuffer {\n return this.writeUint64(value, offset)\n }\n\n readUint64(offset?: number): bigint {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getBigUint64(offset, this.littleEndian)\n if (relative) this.offset += 8\n return value\n }\n\n readUInt64(offset?: number): bigint {\n return this.readUint64(offset)\n }\n\n toBuffer(forceCopy?: boolean): ArrayBufferLike {\n const offset = this.offset\n const limit = this.limit\n if (!forceCopy && offset === 0 && limit === this.buffer.byteLength) {\n return this.buffer\n }\n if (offset === limit) return EMPTY_BUFFER\n return this.buffer.slice(offset, limit)\n }\n\n toArrayBuffer(forceCopy?: boolean): ArrayBufferLike {\n return this.toBuffer(forceCopy)\n }\n\n writeVarint32(value: number, offset?: number): ByteBuffer | number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const size = this.calculateVarint32(value)\n if (offset + size > this.buffer.byteLength) {\n this.resize(offset + size)\n }\n\n value >>>= 0\n while (value >= 0x80) {\n this.view.setUint8(offset++, (value & 0x7f) | 0x80)\n value >>>= 7\n }\n this.view.setUint8(offset++, value)\n\n if (relative) {\n this.offset = offset\n return this\n }\n return size\n }\n\n readVarint32(offset?: number): number | { value: number; length: number } {\n const relative = typeof offset === 'undefined'\n if (typeof offset === 'undefined') {\n offset = this.offset\n }\n let c = 0\n let value = 0 >>> 0\n let b: number\n do {\n b = this.view.getUint8(offset++)\n if (c < 5) {\n value |= (b & 0x7f) << (7 * c)\n }\n ++c\n } while ((b & 0x80) !== 0)\n value |= 0\n\n if (relative) {\n this.offset = offset\n return value\n }\n return { value, length: c }\n }\n\n calculateVarint32(value: number): number {\n value = value >>> 0\n if (value < 1 << 7) return 1\n else if (value < 1 << 14) return 2\n else if (value < 1 << 21) return 3\n else if (value < 1 << 28) return 4\n else return 5\n }\n\n writeVString(str: string, offset?: number): ByteBuffer | number {\n const relative = typeof offset === 'undefined'\n let currentOffset = relative ? this.offset : offset!\n\n const encoded = getEncoder().encode(str)\n const len = encoded.length\n const lenVarintSize = this.calculateVarint32(len)\n\n if (currentOffset + lenVarintSize + len > this.buffer.byteLength) {\n this.resize(currentOffset + lenVarintSize + len)\n }\n\n this.writeVarint32(len, currentOffset)\n currentOffset += lenVarintSize\n\n new Uint8Array(this.buffer).set(encoded, currentOffset)\n currentOffset += len\n\n if (relative) {\n this.offset = currentOffset\n return this\n }\n return currentOffset - (offset || 0)\n }\n\n readVString(offset?: number): string | { string: string; length: number } {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const start = offset\n const lenResult = this.readVarint32(offset) as { value: number; length: number }\n const lenValue = lenResult.value\n const lenLength = lenResult.length\n\n offset += lenLength\n\n // TextDecoder can take Uint8Array view directly\n const str = getDecoder().decode(new Uint8Array(this.buffer as ArrayBuffer, offset, lenValue))\n offset += lenValue\n\n if (relative) {\n this.offset = offset\n return str\n } else {\n return {\n string: str,\n length: offset - start\n }\n }\n }\n\n readUTF8String(length: number, offset?: number): string | { string: string; length: number } {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n // const strBuffer = this.buffer.slice(offset, end)\n // Faster to view if Shared? No, Decoder takes buffer or view.\n // Making a view is cheap.\n // But DataView vs Uint8Array. TextDecoder takes BufferSource (ArrayBuffer or ArrayBufferView).\n const str = getDecoder().decode(new Uint8Array(this.buffer as ArrayBuffer, offset, length))\n\n if (relative) {\n this.offset += length\n return str\n } else {\n return {\n string: str,\n length\n }\n }\n }\n}\n","import type { APIMethods } from './api-types'\n\n/**\n * Unified configuration for Hive blockchain connectivity.\n * This is the single source of truth for node endpoints, timeouts, and chain settings.\n * Mutate this object directly or use ConfigManager.setHiveNodes() for validated updates.\n */\nexport const config = {\n /**\n * Array of Hive API node endpoints for load balancing and failover.\n */\n /*\n * techcoderx.com is deliberately absent: its condenser_api.get_accounts serves\n * account rows with posting_json_metadata stripped to \"\" while balances and\n * reputation are correct. That is a well-formed result, so it passes shape\n * validation and the health tracker keeps it ranked by latency alone.\n *\n * Wallet token visibility is read entirely from profile.tokens[].meta.show in\n * that metadata, so a stripped row reads as \"this user enabled nothing\" and the\n * wallet silently falls back to HIVE/HP/HBD/Points. getAccountFullQueryOptions\n * cross-checks against the hivemind profile and re-reads, but that guard only\n * fires when hivemind reports profile *values* — an account whose metadata is\n * just `tokens` (no name/about/image) has none, so it would slip through.\n * Keeping the node out of the pool removes the dependency on that guard.\n *\n * Note this is RPC-only: the same host serves full metadata over its REST\n * (hafbe) endpoint, so it remains valid in `restNodes`.\n */\n nodes: [\n 'https://api.hive.blog',\n 'https://api.deathwing.me',\n 'https://api.openhive.network',\n 'https://api.syncad.com',\n 'https://rpc.mahdiyari.info',\n ],\n\n /**\n * Array of Hive API node endpoints that support REST APIs.\n * Note: Without the trailing /\n */\n restNodes: [\n 'https://api.hive.blog',\n 'https://rpc.mahdiyari.info',\n 'https://api.syncad.com',\n 'https://hiveapi.actifit.io',\n 'https://api.c0ff33a.uk'\n ],\n\n /**\n * Per-API REST node override. Some APIs are served by only a subset of\n * nodes; list just those capable hosts here so callREST never burns its\n * (small) retry budget on nodes that 404/503 the API, and a cold start\n * hits a capable node immediately. Any API not listed falls back to\n * `restNodes`. The health tracker still orders *within* this list.\n *\n * hivesense: empirically only ~2 public nodes serve /hivesense-api (the\n * other configured nodes 404/503 it; Ecency's own was decommissioned), so\n * pin them — otherwise the health tracker keeps rediscovering incapable\n * nodes each cooldown and cold starts waste attempts.\n */\n restNodesByApi: {\n hivesense: ['https://api.hive.blog', 'https://api.syncad.com']\n } as Partial>,\n\n /**\n * User-Agent sent on server-side (Node) HTTP requests to Hive nodes.\n *\n * Node's built-in fetch (undici) sends a bare `User-Agent: node` when none is\n * set, which is indistinguishable from any random Node script in node/CDN\n * analytics. A descriptive value lets operators tell their own SSR/server\n * traffic apart from anonymous scrapers. Only applied in Node — browsers\n * forbid overriding User-Agent (it is silently dropped) and React Native sets\n * its own native UA, so client and mobile traffic are untouched. Override via\n * `ConfigManager.setUserAgent()` (or `setUserAgent()` from `@ecency/sdk/hive`).\n */\n userAgent: 'ecency-sdk',\n\n /**\n * The Hive blockchain chain ID for transaction signing and verification.\n */\n chain_id: 'beeab0de00000000000000000000000000000000000000000000000000000000',\n\n /**\n * Address prefix used for public key formatting (STM for mainnet).\n */\n address_prefix: 'STM',\n\n /**\n * Timeout in milliseconds for read API calls (get_content, get_accounts, etc.).\n * Kept short so the health tracker can fail over to another node quickly.\n */\n timeout: 5_000,\n\n /**\n * Timeout in milliseconds for broadcast API calls.\n * Longer than read timeout because broadcast_transaction_synchronous waits\n * for block inclusion, which depends on the 3-second block interval and\n * network conditions.\n */\n broadcastTimeout: 15_000,\n\n /**\n * Number of retry attempts for failed API calls before throwing an error.\n * Total attempts = retry + 1. With ~7 nodes in the list, a budget of 5\n * means callRPC iterates through 6 distinct nodes before giving up, so a\n * single sick node (or two) can't surface as an unhandled error to the\n * caller while the rest of the list is healthy.\n */\n retry: 5,\n\n /**\n * Tail-latency resilience for READ calls. Motivation: on a shared public-node\n * pool a node can slow down or throttle *mid-request*; a fixed `timeout` means\n * the caller only notices after the full window, and under SSR concurrency\n * those stalled renders pile up. Two mechanisms, both scoped to reads only\n * (broadcasts never hedge and keep their fixed `broadcastTimeout`):\n *\n * - Adaptive per-attempt timeout (`adaptiveTimeout`, default ON): when a\n * node has a usable latency profile (EWMA), the per-attempt timeout becomes\n * `min(callerTimeout, max(floorMs, factor × EWMA))` — a node running far\n * above its own baseline is abandoned early and failover starts sooner.\n * Never *raises* the caller's timeout; unprofiled nodes keep it unchanged.\n *\n * - Hedged requests (`hedge`, default OFF — opt in via `setResilience`): if\n * the primary attempt is still pending after `max(hedgeDelayFloorMs,\n * hedgeDelayFactor × EWMA)`, a duplicate request is fired at the next\n * healthy untried node and the first success wins (the loser is aborted).\n * A token bucket (`hedgeBucketCapacity` burst, refilled by\n * `hedgeRefillPerSuccess` per un-hedged success) caps hedges to roughly\n * `hedgeRefillPerSuccess` of traffic, so only the slow tail hedges — and\n * under pool-wide slowness the bucket drains and hedging auto-disables\n * instead of amplifying load into public-node rate limits.\n */\n resilience: {\n adaptiveTimeout: true,\n adaptiveTimeoutFloorMs: 2_000,\n adaptiveTimeoutFactor: 4,\n hedge: false,\n hedgeDelayFloorMs: 750,\n hedgeDelayFactor: 2,\n hedgeBucketCapacity: 10,\n hedgeRefillPerSuccess: 0.1,\n /**\n * Wall-clock budget for one read call across ALL failover attempts, as a\n * multiple of the per-attempt timeout: no NEW attempt starts past\n * `totalBudgetFactor × timeout` (an in-flight attempt still finishes its\n * own window). Bounds the pathological pool-wide-slowness walk — without\n * it a read could hold its caller for (retry+1) × timeout ≈ 30s, which\n * under SSR concurrency is a memory pile-up, the exact incident this\n * feature exists for. Applies to reads only (callRPC / callREST);\n * broadcasts keep their try-each-node-once semantics.\n */\n totalBudgetFactor: 2\n }\n}\n\n/** Shape of the `config.resilience` bag (see its doc comment). */\nexport type ResilienceOptions = typeof config.resilience\n\n/**\n * Server-side read-through proxy for RPC reads (see `setServerRpcProxy`).\n * `methods` is the allowlist the proxy serves; a read outside it goes straight\n * to the node pool as before.\n */\nexport interface ServerRpcProxyOptions {\n /** Absolute URL of the proxy endpoint (POST `{api, method, params}`). */\n url: string\n /** Headers sent with every proxy call (the shared internal secret). */\n headers: Record\n /** Per-call timeout in ms; on expiry the read falls back to the node pool. */\n timeoutMs: number\n /** Fully qualified method names (`bridge.get_post`) the proxy may answer;\n * omitted = DEFAULT_SERVER_RPC_PROXY_METHODS. An empty list is ignored. */\n methods?: string[]\n /**\n * After this many consecutive proxy misses the proxy is skipped for\n * `cooldownMs`, so a proxy that is down costs one failed call per cooldown\n * window rather than one per read. Default 3 / 10s. A served call resets it.\n */\n failureThreshold?: number\n cooldownMs?: number\n}\n\n/** Default allowlist: the reads a server render makes and the proxy caches. */\nexport const DEFAULT_SERVER_RPC_PROXY_METHODS: readonly string[] = [\n 'bridge.get_ranked_posts',\n 'bridge.get_account_posts',\n 'bridge.get_post',\n 'bridge.get_discussion',\n 'bridge.get_profile',\n 'bridge.get_profiles',\n 'bridge.get_community',\n 'bridge.list_communities',\n 'condenser_api.get_accounts',\n 'condenser_api.get_content',\n 'condenser_api.get_dynamic_global_properties',\n 'condenser_api.get_trending_tags'\n]\n\n/**\n * Active proxy configuration, or null (the default: every read goes to the node\n * pool). Lives outside `config` so the browser bundle never carries it; it is\n * only ever consulted under Node.\n */\nexport interface ServerRpcProxyState extends Required {\n methodSet: Set\n}\n\nexport let serverRpcProxy: ServerRpcProxyState | null = null\n\n/**\n * Route allowlisted server-side reads through a read-through cache in front\n * of the node pool. One cache per host answers the reads every renderer\n * process used to make on its own; a miss there is one upstream call shared by\n * every concurrent reader. The proxy is an optimization, never a dependency:\n * any failure (non-200, timeout, transport error, a response the caller's\n * validator rejects) falls straight through to the existing node loop, so the\n * worst case is the latency of a failed proxy call on top of what happens\n * today. Has no effect outside Node. Pass null to switch it off.\n */\nexport const setServerRpcProxy = (opts: ServerRpcProxyOptions | null): void => {\n if (opts === null) {\n serverRpcProxy = null\n return\n }\n if (!opts || typeof opts !== 'object') return\n const url = typeof opts.url === 'string' ? opts.url.trim() : ''\n if (!/^https?:\\/\\//i.test(url)) return\n const headers: Record = {}\n if (opts.headers && typeof opts.headers === 'object') {\n for (const [k, v] of Object.entries(opts.headers)) {\n if (typeof v === 'string' && v && !/[\\u0000-\\u001f\\u007f]/.test(v) && !/[\\u0000-\\u001f\\u007f]/.test(k)) {\n headers[k] = v\n }\n }\n }\n const timeoutMs =\n typeof opts.timeoutMs === 'number' && Number.isFinite(opts.timeoutMs) && opts.timeoutMs > 0\n ? opts.timeoutMs\n : 2_000\n const methods =\n opts.methods === undefined\n ? [...DEFAULT_SERVER_RPC_PROXY_METHODS]\n : Array.isArray(opts.methods)\n ? opts.methods.filter((m): m is string => typeof m === 'string' && m.includes('.'))\n : []\n // Nothing to route through the proxy: keep whatever was configured before.\n if (methods.length === 0) return\n const pos = (v: unknown, fallback: number): number =>\n typeof v === 'number' && Number.isFinite(v) && v > 0 ? v : fallback\n serverRpcProxy = {\n url,\n headers,\n timeoutMs,\n methods,\n failureThreshold: Math.floor(pos(opts.failureThreshold, 3)),\n cooldownMs: pos(opts.cooldownMs, 10_000),\n methodSet: new Set(methods)\n }\n}\n\n/**\n * Validated setter for the Hive RPC node list — replaces `config.nodes`.\n * Trims, drops non-http(s) entries, and de-dupes (order-preserving). A no-op\n * if nothing valid remains, so a bad input can't empty the list.\n *\n * Lives here, in the React-free `hive-tx` core, on purpose: it must be\n * reachable from BOTH the full `@ecency/sdk` entry (via\n * `ConfigManager.setHiveNodes`, which delegates here) and the lean\n * `@ecency/sdk/hive` server/CLI entry — without dragging react-query or the\n * DMCA/ReDoS surface of `ConfigManager` into the lean entry. Within a single\n * bundle this mutates the one `config` instance `callRPC` reads; the\n * cross-bundle single-instance guarantee is a separate (build-level) concern.\n */\n/**\n * Trim, drop non-string / non-http(s), and de-dupe (order-preserving) a node\n * list. Shared by `setNodes` and the REST-node setters below so all three\n * normalize identically.\n */\nconst sanitizeNodeList = (nodes: unknown): string[] =>\n Array.isArray(nodes)\n ? [\n ...new Set(\n nodes\n .filter((n): n is string => typeof n === 'string')\n // Trim, then strip trailing slashes so REST paths concatenate cleanly:\n // `callREST` builds `node + '/status-api'`, and a `https://host/` node would\n // otherwise yield `https://host//status-api`, which several HAF nodes 404.\n // De-dupe AFTER normalizing so `host` and `host/` collapse to one entry.\n .map((n) => n.trim().replace(/\\/+$/, ''))\n .filter((n) => n.length > 0 && /^https?:\\/\\/.+/.test(n))\n )\n ]\n : []\n\nexport const setNodes = (nodes: string[]): void => {\n const validNodes = sanitizeNodeList(nodes)\n if (!validNodes.length) return\n config.nodes = validNodes\n}\n\n/**\n * Validated setter for the REST-API node list — replaces `config.restNodes`.\n * Same shape/guarantees as `setNodes` (trim, drop non-http(s), de-dupe, no-op on\n * empty). Exists because `restNodes` is otherwise baked into the SDK: an app that\n * wants to add/remove a REST host (e.g. drop an own node it is decommissioning, or\n * widen the public pool) previously had to fork + republish the SDK. With this, the\n * REST pool is app-configurable at runtime exactly like the read pool. Lives in the\n * React-free `hive-tx` core so both the full `@ecency/sdk` entry and the lean\n * `@ecency/sdk/hive` entry can reach it.\n */\nexport const setRestNodes = (nodes: string[]): void => {\n const valid = sanitizeNodeList(nodes)\n if (!valid.length) return\n config.restNodes = valid\n}\n\n/**\n * Merge validated per-API REST node overrides into `config.restNodesByApi`.\n * For each entry: a non-empty, valid list pins that API to those hosts; an empty or\n * all-invalid list REMOVES the pin so the API falls back to `restNodes`. Other APIs'\n * existing pins (e.g. the built-in `hivesense`) are preserved. Lets an app pin the\n * APIs it actually uses to known-capable hosts (so `callREST` never burns its small\n * retry budget on a node that 404/503s the API) without an SDK republish.\n */\nexport const setRestNodesByApi = (\n map: Partial>\n): void => {\n if (!map || typeof map !== 'object') return\n const next: Partial> = { ...config.restNodesByApi }\n for (const [api, list] of Object.entries(map)) {\n const valid = sanitizeNodeList(list)\n if (valid.length) {\n next[api as APIMethods] = valid\n } else {\n delete next[api as APIMethods]\n }\n }\n config.restNodesByApi = next\n}\n\n/**\n * Validated setter for the User-Agent sent on server-side (Node) requests.\n * Trims the input and ignores an empty value so a bad input can't blank out the\n * header. Like `setNodes`, it lives in the React-free `hive-tx` core so it is\n * reachable from both the full `@ecency/sdk` entry (via\n * `ConfigManager.setUserAgent`) and the lean `@ecency/sdk/hive` server/CLI entry.\n */\nexport const setUserAgent = (ua: string): void => {\n // Defensive against plain-JS / React Native callers that may pass a non-string\n // despite the `string` type (avoids throwing on `.trim()`).\n if (typeof ua !== 'string') return\n const value = ua.trim()\n // Ignore blank values, and reject control characters (CR, LF, and other\n // C0/DEL controls). An invalid header value would otherwise be stored and make\n // every subsequent fetch throw, and rejecting CR/LF closes a header-injection\n // vector for any caller that builds the UA from untrusted input.\n if (!value || /[\\u0000-\\u001f\\u007f]/.test(value)) return\n config.userAgent = value\n}\n\n/**\n * Validated partial setter for `config.resilience` (adaptive read timeouts +\n * hedged requests — see the field's doc comment). Booleans must be booleans;\n * numeric fields must be finite and positive, with the refill rate additionally\n * capped at 1 so a typo can't turn the tail-hedge into a traffic doubler\n * (refill ≤ 1 ⇒ hedges can never exceed un-hedged successes). Invalid values\n * are ignored field-by-field, so one bad entry can't block the rest. Lives in\n * the React-free `hive-tx` core (like the other setters) so both `@ecency/sdk`\n * (via `ConfigManager.setResilience`) and the lean `@ecency/sdk/hive` entry\n * can reach it.\n */\nexport const setResilience = (opts: Partial): void => {\n if (!opts || typeof opts !== 'object') return\n const r = config.resilience\n const bool = (v: unknown): v is boolean => typeof v === 'boolean'\n const pos = (v: unknown): v is number =>\n typeof v === 'number' && Number.isFinite(v) && v > 0\n if (bool(opts.adaptiveTimeout)) r.adaptiveTimeout = opts.adaptiveTimeout\n // Floor must stay ≥ the tracker's slow-failure recording floor (2s): the\n // safety argument for adaptive timeouts is that an abort at the window IS\n // recorded as a slow sample, growing the EWMA so the window self-corrects\n // upward. A floor below 2s would abort without recording — the window could\n // never converge and a too-tight profile would starve that call forever.\n if (pos(opts.adaptiveTimeoutFloorMs)) {\n r.adaptiveTimeoutFloorMs = Math.max(opts.adaptiveTimeoutFloorMs, 2_000)\n }\n if (pos(opts.adaptiveTimeoutFactor)) r.adaptiveTimeoutFactor = opts.adaptiveTimeoutFactor\n if (bool(opts.hedge)) r.hedge = opts.hedge\n if (pos(opts.hedgeDelayFloorMs)) r.hedgeDelayFloorMs = opts.hedgeDelayFloorMs\n if (pos(opts.hedgeDelayFactor)) r.hedgeDelayFactor = opts.hedgeDelayFactor\n if (pos(opts.hedgeBucketCapacity)) r.hedgeBucketCapacity = opts.hedgeBucketCapacity\n // Refill must stay ≤ 1: at 1 token per success the hedge rate could reach\n // 100% of traffic, defeating the \"tail only\" contract. Cap rather than reject\n // so a caller asking for \"more hedging\" gets the safe maximum.\n if (pos(opts.hedgeRefillPerSuccess)) {\n r.hedgeRefillPerSuccess = Math.min(opts.hedgeRefillPerSuccess, 1)\n }\n // Below 1 the budget could not even cover the configured per-attempt window.\n if (pos(opts.totalBudgetFactor)) {\n r.totalBudgetFactor = Math.max(opts.totalBudgetFactor, 1)\n }\n}\n","import { PublicKey } from './PublicKey'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\nexport class Signature {\n data: Uint8Array\n recovery: number\n private compressed: boolean\n\n /**\n * Creates a new Signature instance.\n * @param data Raw signature data (64 bytes)\n * @param recovery Recovery byte (0-3)\n * @param compressed Whether signature is compressed (default: true)\n */\n constructor(data: Uint8Array, recovery: number, compressed?: boolean) {\n this.data = data\n this.recovery = recovery\n this.compressed = compressed ?? true\n }\n\n /**\n * Creates a Signature from a hex string.\n * @param string 130-character hex string containing signature and recovery data\n * @returns New Signature instance\n * @throws Error if input is not a string\n */\n static from(string: string) {\n if (typeof string === 'string') {\n const temp = hexToBytes(string)\n let recovery = parseInt(bytesToHex(temp.subarray(0, 1)), 16) - 31\n let compressed = true\n // non-compressed signatures have -4\n // https://github.com/bitcoin/bitcoin/blob/95ea54ba089610019a74c1176a2c7c0dba144b1c/src/key.cpp#L257\n if (recovery < 0) {\n compressed = false\n recovery = recovery + 4\n }\n const data = temp.subarray(1)\n return new Signature(data, recovery, compressed)\n } else {\n throw new Error('Expected string for data')\n }\n }\n\n /**\n * Converts signature to 65-byte buffer format.\n * @returns 65-byte buffer containing recovery byte + signature data\n */\n toBuffer() {\n const buffer = new Uint8Array(65).fill(0)\n if (this.compressed) {\n buffer[0] = (this.recovery + 31) & 0xff\n } else {\n buffer[0] = (this.recovery + 27) & 0xff\n }\n buffer.set(this.data, 1)\n return buffer\n }\n\n /**\n * Returns signature as 130-character hex string.\n * @returns Hex string representation of signature\n */\n customToString() {\n return bytesToHex(this.toBuffer())\n }\n\n /**\n * Returns signature as 130-character hex string.\n * Overrides Object.prototype.toString() so that String(sig) and\n * template literals produce the hex representation instead of \"[object Object]\".\n * @returns Hex string representation of signature\n */\n toString() {\n return this.customToString()\n }\n\n /**\n * Recovers the public key from this signature and message.\n * @param message 32-byte message hash (Uint8Array) or 64-character hex string\n * @returns PublicKey that created this signature\n * @throws Error if message is not a valid 32-byte SHA256 hash\n */\n getPublicKey(message: Uint8Array | string): PublicKey {\n if (\n (message instanceof Uint8Array && message.length !== 32) ||\n (typeof message === 'string' && message.length !== 64)\n ) {\n throw new Error('Expected a valid sha256 hash as message')\n }\n if (typeof message === 'string') {\n message = hexToBytes(message)\n }\n const sig = secp256k1.Signature.fromBytes(this.data, 'compact')\n const temp = new secp256k1.Signature(sig.r, sig.s, this.recovery)\n return new PublicKey(temp.recoverPublicKey(message).toBytes())\n }\n}\n","import { ripemd160 } from '@noble/hashes/legacy.js'\nimport bs58 from 'bs58'\nimport { config } from '../config'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { Signature } from './Signature'\n\nexport class PublicKey {\n key: Uint8Array\n prefix: string\n\n /**\n * Creates a new PublicKey instance from raw bytes.\n * @param key Raw public key bytes (33 bytes, compressed format)\n * @param prefix Optional address prefix (defaults to the current config.address_prefix)\n */\n constructor(key: Uint8Array, prefix?: string) {\n this.key = key\n // Read config at call time so runtime mutations to config.address_prefix\n // (e.g. switching to a non-mainnet network) take effect for new instances.\n this.prefix = prefix ?? config.address_prefix\n }\n\n /**\n * Creates a PublicKey from a string representation.\n * The expected prefix is read from config.address_prefix at call time, so\n * consumers can switch networks at runtime.\n * @param wif Public key string (e.g., \"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA\")\n * @returns New PublicKey instance\n * @throws Error if the prefix, length, checksum, or curve point is invalid\n */\n static fromString(wif: string): PublicKey {\n const expectedPrefix = config.address_prefix\n if (typeof wif !== 'string' || wif.length <= expectedPrefix.length) {\n throw new Error('Invalid public key')\n }\n const prefix = wif.slice(0, expectedPrefix.length)\n if (prefix !== expectedPrefix) {\n throw new Error(`Public key must start with ${expectedPrefix}`)\n }\n let buffer: Uint8Array\n try {\n buffer = bs58.decode(wif.slice(expectedPrefix.length))\n } catch {\n throw new Error('Invalid public key encoding')\n }\n // 33-byte compressed secp256k1 point + 4-byte RIPEMD160 checksum\n if (buffer.length !== 37) {\n throw new Error('Invalid public key length')\n }\n const key = buffer.subarray(0, 33)\n const checksum = buffer.subarray(33, 37)\n const expectedChecksum = ripemd160(key).subarray(0, 4)\n if (!isUint8ArrayEqual(checksum, expectedChecksum)) {\n throw new Error('Public key checksum mismatch')\n }\n try {\n secp256k1.Point.fromBytes(key)\n } catch {\n throw new Error('Invalid public key')\n }\n return new PublicKey(key, prefix)\n }\n\n /**\n * Creates a PublicKey from a string or returns the instance if already a PublicKey.\n * @param value Public key string or PublicKey instance\n * @returns New or existing PublicKey instance\n */\n static from(value: string | PublicKey): PublicKey {\n if (value instanceof PublicKey) {\n return value\n } else {\n return PublicKey.fromString(value as string)\n }\n }\n\n /**\n * Verifies a signature against a message hash.\n * @param message 32-byte message hash to verify\n * @param signature Signature to verify\n * @returns True if signature is valid, false otherwise\n */\n verify(message: Uint8Array, signature: Signature | string): boolean {\n if (typeof signature === 'string') {\n signature = Signature.from(signature)\n }\n return secp256k1.verify(signature.data, message, this.key, {\n prehash: false,\n format: 'compact'\n })\n }\n\n /**\n * Returns the public key as a string for storage or transmission.\n * @returns Public key string with prefix (e.g., \"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA\")\n */\n toString(): string {\n return encodePublic(this.key, this.prefix)\n }\n\n /**\n * Returns JSON representation (same as toString()).\n * @returns Public key string\n */\n toJSON(): string {\n return this.toString()\n }\n\n /**\n * Returns a string representation for debugging.\n * @returns Formatted public key string\n */\n inspect(): string {\n return `PublicKey: ${this.toString()}`\n }\n}\n\nconst encodePublic = (key: Uint8Array, prefix: string): string => {\n const checksum = ripemd160(key)\n return prefix + bs58.encode(new Uint8Array([...key, ...checksum.subarray(0, 4)]))\n}\n\nconst isUint8ArrayEqual = (a: Uint8Array, b: Uint8Array): boolean => {\n if (a.byteLength !== b.byteLength) return false\n for (let i = 0; i < a.byteLength; i++) {\n if (a[i] !== b[i]) return false\n }\n return true\n}\n","/** Class representing a hive asset,\n * e.g. `1.000 HIVE` or `12.112233 VESTS`. */\nexport class Asset {\n amount: number\n symbol: string\n\n constructor(amount: number, symbol: string) {\n this.amount = amount\n this.symbol = symbol === 'HIVE' ? 'STEEM' : symbol === 'HBD' ? 'SBD' : symbol\n }\n\n /** Create a new Asset instance from a string, e.g. `42.000 HIVE`. */\n static fromString(string: string, expectedSymbol: string | null = null): Asset {\n const [amountString, symbol] = string.split(' ')\n if (['STEEM', 'VESTS', 'SBD', 'TESTS', 'TBD', 'HIVE', 'HBD'].indexOf(symbol) === -1) {\n throw new Error(`Invalid asset symbol: ${symbol}`)\n }\n if (expectedSymbol && symbol !== expectedSymbol) {\n throw new Error(`Invalid asset, expected symbol: ${expectedSymbol} got: ${symbol}`)\n }\n const amount = Number.parseFloat(amountString)\n if (!Number.isFinite(amount)) {\n throw new Error(`Invalid asset amount: ${amountString}`)\n }\n return new Asset(amount, symbol)\n }\n\n /**\n * Convenience to create new Asset.\n * @param symbol Symbol to use when created from number. Will also be used to validate\n * the asset, throws if the passed value has a different symbol than this.\n */\n static from(value: number | string | Asset, symbol?: string | null): Asset {\n if (value instanceof Asset) {\n if (symbol && value.symbol !== symbol) {\n throw new Error(`Invalid asset, expected symbol: ${symbol} got: ${value.symbol}`)\n }\n return value\n } else if (typeof value === 'number' && Number.isFinite(value)) {\n return new Asset(value, symbol || 'STEEM')\n } else if (typeof value === 'string') {\n return Asset.fromString(value, symbol)\n } else {\n throw new Error(`Invalid asset '${String(value)}'`)\n }\n }\n\n // We convert HIVE & HBD strings to STEEM & SBD because the serialization should be based on STEEM & SBD\n\n /** Return asset precision. */\n getPrecision() {\n switch (this.symbol) {\n case 'TESTS':\n case 'TBD':\n case 'STEEM':\n case 'SBD':\n case 'HBD':\n case 'HIVE':\n return 3\n case 'VESTS':\n return 6\n default:\n return 3\n }\n }\n\n /** Return a string representation of this asset, e.g. `42.000 HIVE`. */\n toString() {\n return `${this.amount.toFixed(this.getPrecision())} ${this.symbol}`\n }\n\n toJSON() {\n return this.toString()\n }\n}\n","import { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\n/** Buffer wrapper that serializes to a hex-encoded string. */\nexport class HexBuffer {\n buffer: Uint8Array\n /** Convenience to create a new HexBuffer, does not copy data if value passed is already a buffer. */\n static from(value: string | Uint8Array | HexBuffer) {\n if (value instanceof HexBuffer) {\n return value\n } else if (value instanceof Uint8Array) {\n return new HexBuffer(value)\n } else if (typeof value === 'string') {\n return new HexBuffer(hexToBytes(value))\n } else {\n return new HexBuffer(new Uint8Array(value))\n }\n }\n\n constructor(buffer: Uint8Array) {\n this.buffer = buffer\n }\n\n toString() {\n return bytesToHex(this.buffer)\n }\n\n toJSON() {\n return this.toString()\n }\n}\n","import { PublicKey } from './PublicKey'\nimport { Asset } from './Asset'\nimport { HexBuffer } from './HexBuffer'\nimport { ByteBuffer } from './ByteBuffer'\nimport { Operation } from '../types'\n\n// Operation ID constants for better maintainability\nconst OPERATION_IDS = {\n vote: 0,\n comment: 1,\n transfer: 2,\n transfer_to_vesting: 3,\n withdraw_vesting: 4,\n limit_order_create: 5,\n limit_order_cancel: 6,\n feed_publish: 7,\n convert: 8,\n account_create: 9,\n account_update: 10,\n witness_update: 11,\n account_witness_vote: 12,\n account_witness_proxy: 13,\n // pow: 14,\n custom: 15,\n // report_over_production: 16,\n delete_comment: 17,\n custom_json: 18,\n comment_options: 19,\n set_withdraw_vesting_route: 20,\n limit_order_create2: 21,\n claim_account: 22,\n create_claimed_account: 23,\n request_account_recovery: 24,\n recover_account: 25,\n change_recovery_account: 26,\n escrow_transfer: 27,\n escrow_dispute: 28,\n escrow_release: 29,\n // pow2: 30,\n escrow_approve: 31,\n transfer_to_savings: 32,\n transfer_from_savings: 33,\n cancel_transfer_from_savings: 34,\n // custom_binary: 35,\n decline_voting_rights: 36,\n reset_account: 37,\n set_reset_account: 38,\n claim_reward_balance: 39,\n delegate_vesting_shares: 40,\n account_create_with_delegation: 41,\n witness_set_properties: 42,\n account_update2: 43,\n create_proposal: 44,\n update_proposal_votes: 45,\n remove_proposal: 46,\n update_proposal: 47,\n collateralized_convert: 48,\n recurrent_transfer: 49\n} as const\n\ntype OperationId = (typeof OPERATION_IDS)[keyof typeof OPERATION_IDS]\n\nconst VoidSerializer = () => {\n throw new Error('Void can not be serialized')\n}\nconst StringSerializer = (buffer: ByteBuffer, data: string) => {\n buffer.writeVString(data)\n}\n\nconst Int16Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeInt16(data)\n}\n\nconst Int64Serializer = (buffer: ByteBuffer, data: number | bigint) => {\n buffer.writeInt64(data)\n}\n\nconst UInt8Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint8(data)\n}\n\nconst UInt16Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint16(data)\n}\n\nconst UInt32Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint32(data)\n}\n\nconst UInt64Serializer = (buffer: ByteBuffer, data: number | bigint) => {\n buffer.writeUint64(data)\n}\n\nconst BooleanSerializer = (buffer: ByteBuffer, data: number | boolean) => {\n buffer.writeByte(data ? 1 : 0)\n}\n\nconst StaticVariantSerializer = (itemSerializers: any) => {\n // return (buffer: ByteBuffer, data: any[]) => {\n // let id = data[0]\n // const item = data[1]\n // // id was/is supposed to be 0 or integer here but seems to have been changed in e.g. comment_options\n // // extensions: [\n // // [\n // // \"comment_payout_beneficiaries\",\n // // {\n // // \"beneficiaries\": [\n // // {\n // // \"account\": \"vimm\",\n // // \"weight\": 1000\n // // }\n // // ]\n // // }\n // // ]\n // // ]\n // // Keep it here just in case\n // // https://gitlab.syncad.com/hive/hive/-/issues/722\n // // \"comment_payout_beneficiaries\" was 0 and at some point it got changed\n // // It should still be serialized as a 0 or an integer\n // // Now the question is, always 0? will need an example transaction to prove otherwise\n // if (typeof id === 'string') {\n // if (id === 'update_proposal_end_date') {\n // id = 1\n // } else {\n // id = 0\n // }\n // }\n // buffer.writeVarint32(id)\n // itemSerializers[id](buffer, item)\n return (buffer: ByteBuffer, data: any) => {\n const [id, item] = data\n buffer.writeVarint32(id)\n itemSerializers[id](buffer, item)\n }\n}\n\n/**\n * Serialize asset.\n * @note This looses precision for amounts larger than 2^53-1/10^precision.\n * Should not be a problem in real-word usage.\n */\nconst AssetSerializer = (buffer: ByteBuffer, data: string | Asset) => {\n const asset = Asset.from(data)\n const precision = asset.getPrecision()\n buffer.writeInt64(Math.round(asset.amount * Math.pow(10, precision)))\n buffer.writeUint8(precision)\n for (let i = 0; i < 7; i++) {\n buffer.writeUint8(asset.symbol.charCodeAt(i) || 0)\n }\n}\n\nconst DateSerializer = (buffer: ByteBuffer, data: string) => {\n buffer.writeUint32(Math.floor(new Date(data + 'Z').getTime() / 1000))\n}\n\nconst PublicKeySerializer = (buffer: ByteBuffer, data: string | PublicKey) => {\n if (\n data === null ||\n (typeof data === 'string' && data.slice(-39) === '1111111111111111111111111111111114T1Anm')\n ) {\n buffer.append(new Uint8Array(33).fill(0))\n } else {\n buffer.append(PublicKey.from(data).key)\n }\n}\n\nconst BinarySerializer = (size: null | number = null) => {\n return (buffer: ByteBuffer, data: string | Uint8Array | HexBuffer) => {\n data = HexBuffer.from(data)\n const len = data.buffer.length\n if (size) {\n if (len !== size) {\n throw new Error(`Unable to serialize binary. Expected ${size} bytes, got ${len}`)\n }\n } else {\n buffer.writeVarint32(len)\n }\n buffer.append(data.buffer)\n }\n}\n\nconst VariableBinarySerializer = BinarySerializer()\n\nconst FlatMapSerializer = (keySerializer: any, valueSerializer: any) => {\n return (buffer: ByteBuffer, data: any) => {\n buffer.writeVarint32(data.length)\n for (const [key, value] of data) {\n keySerializer(buffer, key)\n valueSerializer(buffer, value)\n }\n }\n}\n\nconst ArraySerializer = (itemSerializer: any) => {\n return (buffer: ByteBuffer, data: any[]) => {\n buffer.writeVarint32(data.length)\n for (const item of data) {\n itemSerializer(buffer, item)\n }\n }\n}\n\nconst ObjectSerializer = (keySerializers: any) => {\n return (buffer: ByteBuffer, data: any) => {\n for (const [key, serializer] of keySerializers) {\n try {\n serializer(buffer, data[key])\n } catch (error: any) {\n error.message = `${key}: ${error.message}`\n throw error\n }\n }\n }\n}\n\nconst OptionalSerializer = (valueSerializer: any) => {\n return (buffer: ByteBuffer, data: any | undefined) => {\n if (data !== undefined) {\n buffer.writeByte(1)\n valueSerializer(buffer, data)\n } else {\n buffer.writeByte(0)\n }\n }\n}\n\nconst AuthoritySerializer = ObjectSerializer([\n ['weight_threshold', UInt32Serializer],\n ['account_auths', FlatMapSerializer(StringSerializer, UInt16Serializer)],\n ['key_auths', FlatMapSerializer(PublicKeySerializer, UInt16Serializer)]\n])\n\nconst BeneficiarySerializer = ObjectSerializer([\n ['account', StringSerializer],\n ['weight', UInt16Serializer]\n])\n\nconst PriceSerializer = ObjectSerializer([\n ['base', AssetSerializer],\n ['quote', AssetSerializer]\n])\n\n// const SignedBlockHeaderSerializer = ObjectSerializer([\n// ['previous', BinarySerializer(20)],\n// ['timestamp', DateSerializer],\n// ['witness', StringSerializer],\n// ['transaction_merkle_root', BinarySerializer(20)],\n// ['extensions', ArraySerializer(VoidSerializer)],\n// ['witness_signature', BinarySerializer(65)]\n// ])\n\nconst ChainPropertiesSerializer = ObjectSerializer([\n ['account_creation_fee', AssetSerializer],\n ['maximum_block_size', UInt32Serializer],\n ['hbd_interest_rate', UInt16Serializer]\n])\n\nconst OperationDataSerializer = (operationId: OperationId, definitions: any) => {\n const objectSerializer = ObjectSerializer(definitions)\n return (buffer: ByteBuffer, data: any) => {\n buffer.writeVarint32(operationId)\n objectSerializer(buffer, data)\n }\n}\n\nconst OperationSerializers: Record> = {}\n\nOperationSerializers.account_create = OperationDataSerializer(OPERATION_IDS.account_create, [\n ['fee', AssetSerializer],\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.account_create_with_delegation = OperationDataSerializer(\n OPERATION_IDS.account_create_with_delegation,\n [\n ['fee', AssetSerializer],\n ['delegation', AssetSerializer],\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.account_update = OperationDataSerializer(OPERATION_IDS.account_update, [\n ['account', StringSerializer],\n ['owner', OptionalSerializer(AuthoritySerializer)],\n ['active', OptionalSerializer(AuthoritySerializer)],\n ['posting', OptionalSerializer(AuthoritySerializer)],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.account_witness_proxy = OperationDataSerializer(\n OPERATION_IDS.account_witness_proxy,\n [\n ['account', StringSerializer],\n ['proxy', StringSerializer]\n ]\n)\n\nOperationSerializers.account_witness_vote = OperationDataSerializer(\n OPERATION_IDS.account_witness_vote,\n [\n ['account', StringSerializer],\n ['witness', StringSerializer],\n ['approve', BooleanSerializer]\n ]\n)\n\nOperationSerializers.cancel_transfer_from_savings = OperationDataSerializer(\n OPERATION_IDS.cancel_transfer_from_savings,\n [\n ['from', StringSerializer],\n ['request_id', UInt32Serializer]\n ]\n)\n\nOperationSerializers.change_recovery_account = OperationDataSerializer(\n OPERATION_IDS.change_recovery_account,\n [\n ['account_to_recover', StringSerializer],\n ['new_recovery_account', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.claim_account = OperationDataSerializer(OPERATION_IDS.claim_account, [\n ['creator', StringSerializer],\n ['fee', AssetSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.claim_reward_balance = OperationDataSerializer(\n OPERATION_IDS.claim_reward_balance,\n [\n ['account', StringSerializer],\n ['reward_hive', AssetSerializer],\n ['reward_hbd', AssetSerializer],\n ['reward_vests', AssetSerializer]\n ]\n)\n\nOperationSerializers.comment = OperationDataSerializer(OPERATION_IDS.comment, [\n ['parent_author', StringSerializer],\n ['parent_permlink', StringSerializer],\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['title', StringSerializer],\n ['body', StringSerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.comment_options = OperationDataSerializer(OPERATION_IDS.comment_options, [\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['max_accepted_payout', AssetSerializer],\n ['percent_hbd', UInt16Serializer],\n ['allow_votes', BooleanSerializer],\n ['allow_curation_rewards', BooleanSerializer],\n [\n 'extensions',\n ArraySerializer(\n StaticVariantSerializer([\n ObjectSerializer([['beneficiaries', ArraySerializer(BeneficiarySerializer)]])\n ])\n )\n ]\n])\n\nOperationSerializers.convert = OperationDataSerializer(OPERATION_IDS.convert, [\n ['owner', StringSerializer],\n ['requestid', UInt32Serializer],\n ['amount', AssetSerializer]\n])\n\nOperationSerializers.create_claimed_account = OperationDataSerializer(\n OPERATION_IDS.create_claimed_account,\n [\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.custom = OperationDataSerializer(OPERATION_IDS.custom, [\n ['required_auths', ArraySerializer(StringSerializer)],\n ['id', UInt16Serializer],\n ['data', VariableBinarySerializer]\n])\n\n// Not used on chain\n// OperationSerializers.custom_binary = OperationDataSerializer(OPERATION_IDS.custom_binary, [\n// ['required_owner_auths', ArraySerializer(StringSerializer)],\n// ['required_active_auths', ArraySerializer(StringSerializer)],\n// ['required_posting_auths', ArraySerializer(StringSerializer)],\n// ['required_auths', ArraySerializer(AuthoritySerializer)],\n// ['id', StringSerializer],\n// ['data', VariableBinarySerializer]\n// ])\n\nOperationSerializers.custom_json = OperationDataSerializer(OPERATION_IDS.custom_json, [\n ['required_auths', ArraySerializer(StringSerializer)],\n ['required_posting_auths', ArraySerializer(StringSerializer)],\n ['id', StringSerializer],\n ['json', StringSerializer]\n])\n\nOperationSerializers.decline_voting_rights = OperationDataSerializer(\n OPERATION_IDS.decline_voting_rights,\n [\n ['account', StringSerializer],\n ['decline', BooleanSerializer]\n ]\n)\n\nOperationSerializers.delegate_vesting_shares = OperationDataSerializer(\n OPERATION_IDS.delegate_vesting_shares,\n [\n ['delegator', StringSerializer],\n ['delegatee', StringSerializer],\n ['vesting_shares', AssetSerializer]\n ]\n)\n\nOperationSerializers.delete_comment = OperationDataSerializer(OPERATION_IDS.delete_comment, [\n ['author', StringSerializer],\n ['permlink', StringSerializer]\n])\n\nOperationSerializers.escrow_approve = OperationDataSerializer(OPERATION_IDS.escrow_approve, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['escrow_id', UInt32Serializer],\n ['approve', BooleanSerializer]\n])\n\nOperationSerializers.escrow_dispute = OperationDataSerializer(OPERATION_IDS.escrow_dispute, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['escrow_id', UInt32Serializer]\n])\n\nOperationSerializers.escrow_release = OperationDataSerializer(OPERATION_IDS.escrow_release, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['receiver', StringSerializer],\n ['escrow_id', UInt32Serializer],\n ['hbd_amount', AssetSerializer],\n ['hive_amount', AssetSerializer]\n])\n\nOperationSerializers.escrow_transfer = OperationDataSerializer(OPERATION_IDS.escrow_transfer, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['hbd_amount', AssetSerializer],\n ['hive_amount', AssetSerializer],\n ['escrow_id', UInt32Serializer],\n ['agent', StringSerializer],\n ['fee', AssetSerializer],\n ['json_meta', StringSerializer],\n ['ratification_deadline', DateSerializer],\n ['escrow_expiration', DateSerializer]\n])\n\nOperationSerializers.feed_publish = OperationDataSerializer(OPERATION_IDS.feed_publish, [\n ['publisher', StringSerializer],\n ['exchange_rate', PriceSerializer]\n])\n\nOperationSerializers.limit_order_cancel = OperationDataSerializer(\n OPERATION_IDS.limit_order_cancel,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer]\n ]\n)\n\nOperationSerializers.limit_order_create = OperationDataSerializer(\n OPERATION_IDS.limit_order_create,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer],\n ['amount_to_sell', AssetSerializer],\n ['min_to_receive', AssetSerializer],\n ['fill_or_kill', BooleanSerializer],\n ['expiration', DateSerializer]\n ]\n)\n\nOperationSerializers.limit_order_create2 = OperationDataSerializer(\n OPERATION_IDS.limit_order_create2,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer],\n ['amount_to_sell', AssetSerializer],\n ['exchange_rate', PriceSerializer],\n ['fill_or_kill', BooleanSerializer],\n ['expiration', DateSerializer]\n ]\n)\n\nOperationSerializers.recover_account = OperationDataSerializer(OPERATION_IDS.recover_account, [\n ['account_to_recover', StringSerializer],\n ['new_owner_authority', AuthoritySerializer],\n ['recent_owner_authority', AuthoritySerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\n// Not used on chain\n// OperationSerializers.report_over_production = OperationDataSerializer(\n// OPERATION_IDS.report_over_production,\n// [\n// ['reporter', StringSerializer],\n// ['first_block', SignedBlockHeaderSerializer],\n// ['second_block', SignedBlockHeaderSerializer]\n// ]\n// )\n\nOperationSerializers.request_account_recovery = OperationDataSerializer(\n OPERATION_IDS.request_account_recovery,\n [\n ['recovery_account', StringSerializer],\n ['account_to_recover', StringSerializer],\n ['new_owner_authority', AuthoritySerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.reset_account = OperationDataSerializer(OPERATION_IDS.reset_account, [\n ['reset_account', StringSerializer],\n ['account_to_reset', StringSerializer],\n ['new_owner_authority', AuthoritySerializer]\n])\n\nOperationSerializers.set_reset_account = OperationDataSerializer(OPERATION_IDS.set_reset_account, [\n ['account', StringSerializer],\n ['current_reset_account', StringSerializer],\n ['reset_account', StringSerializer]\n])\n\nOperationSerializers.set_withdraw_vesting_route = OperationDataSerializer(\n OPERATION_IDS.set_withdraw_vesting_route,\n [\n ['from_account', StringSerializer],\n ['to_account', StringSerializer],\n ['percent', UInt16Serializer],\n ['auto_vest', BooleanSerializer]\n ]\n)\n\nOperationSerializers.transfer = OperationDataSerializer(OPERATION_IDS.transfer, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n])\n\nOperationSerializers.transfer_from_savings = OperationDataSerializer(\n OPERATION_IDS.transfer_from_savings,\n [\n ['from', StringSerializer],\n ['request_id', UInt32Serializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n ]\n)\n\nOperationSerializers.transfer_to_savings = OperationDataSerializer(\n OPERATION_IDS.transfer_to_savings,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n ]\n)\n\nOperationSerializers.transfer_to_vesting = OperationDataSerializer(\n OPERATION_IDS.transfer_to_vesting,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer]\n ]\n)\n\nOperationSerializers.vote = OperationDataSerializer(OPERATION_IDS.vote, [\n ['voter', StringSerializer],\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['weight', Int16Serializer]\n])\n\nOperationSerializers.withdraw_vesting = OperationDataSerializer(OPERATION_IDS.withdraw_vesting, [\n ['account', StringSerializer],\n ['vesting_shares', AssetSerializer]\n])\n\nOperationSerializers.witness_update = OperationDataSerializer(OPERATION_IDS.witness_update, [\n ['owner', StringSerializer],\n ['url', StringSerializer],\n ['block_signing_key', PublicKeySerializer],\n ['props', ChainPropertiesSerializer],\n ['fee', AssetSerializer]\n])\n\nOperationSerializers.witness_set_properties = OperationDataSerializer(\n OPERATION_IDS.witness_set_properties,\n [\n ['owner', StringSerializer],\n ['props', FlatMapSerializer(StringSerializer, VariableBinarySerializer)],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.account_update2 = OperationDataSerializer(OPERATION_IDS.account_update2, [\n ['account', StringSerializer],\n ['owner', OptionalSerializer(AuthoritySerializer)],\n ['active', OptionalSerializer(AuthoritySerializer)],\n ['posting', OptionalSerializer(AuthoritySerializer)],\n ['memo_key', OptionalSerializer(PublicKeySerializer)],\n ['json_metadata', StringSerializer],\n ['posting_json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.create_proposal = OperationDataSerializer(OPERATION_IDS.create_proposal, [\n ['creator', StringSerializer],\n ['receiver', StringSerializer],\n ['start_date', DateSerializer],\n ['end_date', DateSerializer],\n ['daily_pay', AssetSerializer],\n ['subject', StringSerializer],\n ['permlink', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.update_proposal_votes = OperationDataSerializer(\n OPERATION_IDS.update_proposal_votes,\n [\n ['voter', StringSerializer],\n ['proposal_ids', ArraySerializer(Int64Serializer)],\n ['approve', BooleanSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.remove_proposal = OperationDataSerializer(OPERATION_IDS.remove_proposal, [\n ['proposal_owner', StringSerializer],\n ['proposal_ids', ArraySerializer(Int64Serializer)],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nconst ProposalUpdateSerializer = ObjectSerializer([['end_date', DateSerializer]])\n\nOperationSerializers.update_proposal = OperationDataSerializer(OPERATION_IDS.update_proposal, [\n ['proposal_id', UInt64Serializer],\n ['creator', StringSerializer],\n ['daily_pay', AssetSerializer],\n ['subject', StringSerializer],\n ['permlink', StringSerializer],\n [\n 'extensions',\n ArraySerializer(StaticVariantSerializer([VoidSerializer, ProposalUpdateSerializer]))\n ]\n])\n\nOperationSerializers.collateralized_convert = OperationDataSerializer(\n OPERATION_IDS.collateralized_convert,\n [\n ['owner', StringSerializer],\n ['requestid', UInt32Serializer],\n ['amount', AssetSerializer]\n ]\n)\n\nOperationSerializers.recurrent_transfer = OperationDataSerializer(\n OPERATION_IDS.recurrent_transfer,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer],\n ['recurrence', UInt16Serializer],\n ['executions', UInt16Serializer],\n [\n 'extensions',\n ArraySerializer(\n ObjectSerializer([\n ['type', UInt8Serializer],\n ['value', ObjectSerializer([['pair_id', UInt8Serializer]])]\n ])\n )\n ]\n ]\n)\n\nconst OperationSerializer = (buffer: ByteBuffer, operation: Operation) => {\n const serializer = OperationSerializers[operation[0]]\n if (!serializer) {\n throw new Error(`No serializer for operation: ${operation[0]}`)\n }\n try {\n serializer(buffer, operation[1])\n } catch (error: any) {\n error.message = `${operation[0]}: ${error.message}`\n throw error\n }\n}\n\nconst TransactionSerializer = ObjectSerializer([\n ['ref_block_num', UInt16Serializer],\n ['ref_block_prefix', UInt32Serializer],\n ['expiration', DateSerializer],\n ['operations', ArraySerializer(OperationSerializer)],\n ['extensions', ArraySerializer(StringSerializer)]\n])\n\nconst EncryptedMemoSerializer = ObjectSerializer([\n ['from', PublicKeySerializer],\n ['to', PublicKeySerializer],\n ['nonce', UInt64Serializer],\n ['check', UInt32Serializer],\n ['encrypted', BinarySerializer()]\n])\n\nexport const Serializer = {\n // Array: ArraySerializer,\n Asset: AssetSerializer,\n // Authority: AuthoritySerializer,\n // Binary: BinarySerializer,\n // Boolean: BooleanSerializer,\n // Date: DateSerializer,\n // FlatMap: FlatMapSerializer,\n // Int16: Int16Serializer,\n // Int32: Int32Serializer,\n // Int64: Int64Serializer,\n // Int8: Int8Serializer,\n Memo: EncryptedMemoSerializer,\n // Object: ObjectSerializer,\n // Operation: OperationSerializer,\n // Optional: OptionalSerializer,\n Price: PriceSerializer,\n PublicKey: PublicKeySerializer,\n // StaticVariant: StaticVariantSerializer,\n String: StringSerializer,\n Transaction: TransactionSerializer,\n UInt16: UInt16Serializer,\n UInt32: UInt32Serializer\n // UInt64: UInt64Serializer,\n // UInt8: UInt8Serializer,\n // Void: VoidSerializer\n}\n","export const sleep = (ms: number): Promise => {\n return new Promise((resolve) => setTimeout(resolve, ms))\n}\n","import { config, serverRpcProxy, type ServerRpcProxyState } from '../config'\nimport { CallResponse } from '../types'\nimport type { APIMethods } from '../api-types'\nimport { sleep } from './sleep'\n\n// ── Server identity (User-Agent) ────────────────────────────────────────────\n\n/**\n * True only when running under Node.js (SSR / server / CLI). Computed once.\n *\n * We attach a descriptive `User-Agent` exclusively here because that is the only\n * place it (a) takes effect and (b) is wanted:\n * - Node's undici fetch otherwise sends a bare `User-Agent: node`, which is\n * indistinguishable from any anonymous script in node/CDN analytics.\n * - Browsers treat `User-Agent` as a forbidden header and silently drop any\n * override, so setting it there is pointless (and we avoid the churn).\n * - React Native sets its own native UA (e.g. the mobile app's own string);\n * overriding it would relabel real mobile traffic, so we explicitly exclude\n * it via `navigator.product === 'ReactNative'`.\n */\nconst isNodeRuntime: boolean = (() => {\n try {\n const isReactNative =\n typeof navigator !== 'undefined' && (navigator as any).product === 'ReactNative'\n return (\n !isReactNative &&\n typeof process !== 'undefined' &&\n process.versions != null &&\n process.versions.node != null\n )\n } catch {\n return false\n }\n})()\n\n/**\n * Headers that identify the caller on server-side requests. Returns the\n * configured `User-Agent` only under Node; an empty object everywhere else so\n * browser and React Native requests are left exactly as they were.\n */\nfunction serverIdentityHeaders(): Record {\n return isNodeRuntime ? { 'User-Agent': config.userAgent } : {}\n}\n\n// ── Server-side read-through proxy ──────────────────────────────────────────\n\n/**\n * Counters for the proxy path, readable by a host's diagnostics (the web\n * tier's event-loop monitor prints them). `served` = answered by the proxy,\n * `fallback` = proxy configured and eligible but the read went to the node\n * pool, with the reason.\n */\nexport const rpcProxyStats = {\n served: 0,\n fallback: 0,\n /** Reads that went straight to the nodes because the breaker was open. */\n skipped: 0,\n fallbackByReason: { status: 0, rpcerror: 0, timeout: 0, transport: 0, validate: 0, parse: 0 } as Record\n}\n\n/**\n * `rpcerror` is a 502 tagged `X-Ssr-Cache: RPCERROR`: the proxy reached a node\n * and relayed the node's own error (a tag or post that does not exist, a bad\n * argument). The read still falls back so the caller sees the node's answer\n * unchanged, but the proxy was healthy, so it does not count toward the\n * breaker; the other reasons do.\n */\ntype ProxyMissReason = 'status' | 'rpcerror' | 'timeout' | 'transport' | 'validate' | 'parse'\n\nclass ProxyMiss extends Error {\n constructor(\n public reason: ProxyMissReason,\n message: string\n ) {\n super(message)\n }\n}\n\nconst errorMessage = (e: unknown): string =>\n e instanceof Error ? e.message : typeof e === 'string' ? e : String(e)\n\n// Breaker: consecutive misses open it for the configured cooldown, a served\n// call closes it. Module state, like the health tracker: one per process.\nlet proxyConsecutiveMisses = 0\nlet proxyOpenUntil = 0\n\n/** Test seam: forget breaker state. */\nexport function resetRpcProxyBreaker(): void {\n proxyConsecutiveMisses = 0\n proxyOpenUntil = 0\n}\n\n/**\n * One proxy call for an eligible read. Resolves with the upstream `result` the\n * proxy served, or throws ProxyMiss; the caller then continues with the node\n * loop exactly as if the proxy did not exist. Never throws anything else,\n * except the caller's own abort.\n */\nasync function proxyRpcCall(\n proxy: ServerRpcProxyState,\n method: string,\n params: unknown,\n callerTimeoutMs: number,\n externalSignal: AbortSignal | undefined,\n validate?: (result: unknown) => boolean\n): Promise {\n const dot = method.indexOf('.')\n if (dot <= 0 || dot === method.length - 1) {\n // Unreachable through setServerRpcProxy (it keeps only dotted names), kept\n // so a future allowlist change fails as a miss rather than a malformed call.\n throw new ProxyMiss('transport', `method without an api prefix: ${method}`)\n }\n // Never wait longer for the proxy than the caller would for one node.\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(\n Math.min(proxy.timeoutMs, callerTimeoutMs)\n )\n const { signal, cleanup: cleanupMerge } = mergeSignals(tSignal, externalSignal)\n try {\n let res: Response\n try {\n res = await fetch(proxy.url, {\n method: 'POST',\n body: JSON.stringify({ api: method.slice(0, dot), method: method.slice(dot + 1), params }),\n headers: { 'Content-Type': 'application/json', ...serverIdentityHeaders(), ...proxy.headers },\n signal\n })\n } catch (e: unknown) {\n if (externalSignal?.aborted) throw e\n throw new ProxyMiss(tSignal.aborted ? 'timeout' : 'transport', errorMessage(e))\n }\n if (res.status !== 200) {\n // Release the connection: an unconsumed body pins a pooled socket.\n try {\n await res.body?.cancel()\n } catch {\n // nothing to release\n }\n const relayed = res.status === 502 && (res.headers.get('x-ssr-cache') ?? '').toUpperCase() === 'RPCERROR'\n throw new ProxyMiss(relayed ? 'rpcerror' : 'status', relayed ? 'proxy relayed a node error' : `proxy answered ${res.status}`)\n }\n let result: unknown\n try {\n result = await res.json()\n } catch (e: unknown) {\n if (externalSignal?.aborted) throw e\n throw new ProxyMiss(tSignal.aborted ? 'timeout' : 'parse', errorMessage(e))\n }\n if (validate && !validate(result)) {\n throw new ProxyMiss('validate', 'proxy result rejected by validator')\n }\n return result as T\n } finally {\n cleanupTimeout()\n cleanupMerge()\n }\n}\n\n// ── Error Types ─────────────────────────────────────────────────────────────\n\nexport class RPCError extends Error {\n name = 'RPCError'\n data?: any\n code: number\n stack: undefined = undefined\n constructor(rpcError: { message: string; code: number; data?: any }) {\n super(rpcError.message)\n this.code = rpcError.code\n if ('data' in rpcError) {\n this.data = rpcError.data\n }\n }\n}\n\n/**\n * Transport-level error thrown by jsonRPCCall for HTTP status errors (429, 503).\n * Carries node identity and rate-limit info so callers can record health\n * exactly once without double-counting.\n */\nclass NodeError extends Error {\n node: string\n /** Explicit server `Retry-After` in ms, or 0 when the 429 carried no usable header. */\n rateLimitMs: number\n /** True for an HTTP 429 regardless of whether a `Retry-After` header was present, so\n * a header-less rate limit is still cooled down (with escalating backoff) rather than\n * mis-recorded as a plain transport failure. */\n isRateLimit: boolean\n constructor(\n node: string,\n message: string,\n opts: { rateLimitMs?: number; isRateLimit?: boolean } = {}\n ) {\n super(message)\n this.node = node\n this.rateLimitMs = opts.rateLimitMs ?? 0\n this.isRateLimit = opts.isRateLimit ?? false\n }\n}\n\n/**\n * Parse an HTTP `Retry-After` header to milliseconds. Supports both forms in the\n * spec: `` (e.g. \"120\") and ``. Returns 0 when the header\n * is absent or unparseable (including a non-numeric junk value or a past date) so the\n * caller falls back to escalating backoff instead of a NaN/negative cooldown.\n */\nfunction parseRetryAfterMs(header: string | null): number {\n if (!header) return 0\n const secs = Number(header)\n if (Number.isFinite(secs)) return secs > 0 ? secs * 1000 : 0\n const dateMs = Date.parse(header)\n if (Number.isFinite(dateMs)) {\n const delta = dateMs - Date.now()\n return delta > 0 ? delta : 0\n }\n return 0\n}\n\n/** Errors that indicate the request definitely never reached the server. */\nconst PRE_CONNECTION_ERRORS = ['ECONNREFUSED', 'ENOTFOUND', 'EHOSTUNREACH', 'EAI_AGAIN']\n\n/** Browser fetch network-failure messages — emitted by Chromium/Firefox/Safari\n * when CORS preflight fails, DNS fails, TLS fails, or the response is blocked.\n * These map to scenarios where retrying the same signed broadcast is safe: the\n * request either never reached the node, or its response was blocked but a\n * re-broadcast of the *same* signed tx will be deduped by Hive (same trx_id). */\nconst BROWSER_NETWORK_ERRORS = [\n 'Failed to fetch', // Chromium\n 'NetworkError when attempting to fetch', // Firefox\n 'Load failed', // Safari\n 'fetch failed' // Node 18+ undici / Bun — also covered via cause chain\n]\n\n/**\n * Concatenate the error's surface text + the messages/codes from up to 5\n * levels of nested `cause`. Node.js fetch wraps connection failures as\n * `TypeError('fetch failed')` with the real `code` (ECONNREFUSED, etc.)\n * nested in the cause chain. Browser fetch failures have no cause but\n * carry their identifier in `message`.\n */\nfunction flattenErrorText(e: any): string {\n if (!e) return ''\n const parts: string[] = [String(e.name || ''), String(e.message || ''), String(e.code || '')]\n let cause = e.cause\n for (let depth = 0; cause && depth < 5; depth++) {\n parts.push(String(cause.code || ''), String(cause.message || ''))\n cause = cause.cause\n }\n return parts.join(' ')\n}\n\n/**\n * Decide whether a broadcast attempt can safely be retried on another node.\n *\n * Safe to retry (same signed tx → Hive dedupes by trx_id at the mempool layer):\n * - Pre-connection failures (ECONNREFUSED, ENOTFOUND, etc.) — request never sent.\n * - Browser fetch network failures (CORS block, TLS error, DNS) — TypeError with\n * a well-known message string.\n * - JSON parse failures — node returned an HTML error page (typical for\n * Cloudflare 1033 tunnel-down / 5xx interstitials), so the request never\n * reached the Hive RPC layer.\n * - NodeError (HTTP 429/5xx surfaced from jsonRPCCall) — already known transient.\n *\n * NOT safe to retry:\n * - RPCError — the node accepted the request and the blockchain rejected it.\n * Retrying on another node would either get the same rejection or accept\n * a different one; surface the original error instead.\n */\nfunction isBroadcastSafeToRetry(e: any): boolean {\n if (!e) return false\n if (e instanceof NodeError) return true\n if (e instanceof RPCError) return false\n\n const text = flattenErrorText(e)\n if (PRE_CONNECTION_ERRORS.some((code) => text.includes(code))) return true\n if (BROWSER_NETWORK_ERRORS.some((msg) => text.includes(msg))) return true\n\n // res.json() against an HTML body (Cloudflare/proxy interstitials) throws\n // SyntaxError. The Hive RPC layer never saw the tx, so failover is safe.\n if (e instanceof SyntaxError) return true\n // Some runtimes surface JSON parse errors as plain Error with this text.\n if (/Unexpected token|JSON\\.parse|Unexpected end of JSON/i.test(text)) return true\n\n return false\n}\n\n// ── Node Health Tracker ─────────────────────────────────────────────────────\n\n/** Node-level health state tracked by NodeHealthTracker. */\ninterface NodeHealth {\n /** Global consecutive-failure counter. Resets on success. */\n consecutiveFailures: number\n /** Timestamp of the most recent failure. Used with the 30s cooldown window. */\n lastFailureTime: number\n /** Epoch ms after which the node is no longer rate-limited. */\n rateLimitedUntil: number\n /** Count of consecutive 429s (no intervening success) with no usable Retry-After.\n * Drives escalating backoff; reset by a success or by RATE_LIMIT_STREAK_RESET_MS. */\n rateLimitStreak: number\n /** Epoch ms of the most recent 429. Used to expire the escalation streak. */\n lastRateLimitAt: number\n /** Per-API failure counters. Some nodes disable specific API plugins; tracking\n * per-API lets us deprioritize a node only for the APIs that fail, not globally.\n * `defective` marks a cooldown set by recordDefectiveResponse (payload\n * validation failure) — unlike ordinary strike cooldowns it survives\n * recordSuccess and only expires on its own. */\n apiFailures: Map<\n string,\n { count: number; cooldownUntil: number; lastFailureTime: number; defective?: boolean }\n >\n /** Most recent head_block_number observed for this node. */\n headBlock: number\n /** Epoch ms when the head_block was recorded. Used to expire stale observations. */\n headBlockUpdatedAt: number\n\n // ── Latency tracking (adaptive ordering) ────────────────────────────────\n /** EWMA of observed round-trip ms. Fed by successful calls AND by slow/timeout\n * failures (so a node that returns 200 in 15s, or aborts at the timeout, is\n * ranked on its real slowness — not treated as merely \"healthy\"). `undefined`\n * until the first sample. */\n ewmaLatencyMs?: number\n /** Number of latency samples folded into the EWMA. Gates \"warmup\": below\n * LATENCY_MIN_SAMPLES the node is unproven and keeps its config-order prior. */\n latencySampleCount: number\n /** Epoch ms of the most recent latency sample. Used for usability expiry and to\n * decide when a node is overdue for an exploratory re-probe. */\n latencyUpdatedAt: number\n /** Epoch ms of the most recent exploratory promotion. Single-flight guard so a\n * burst of concurrent orderings doesn't all re-probe the same stale node. */\n lastProbeAt: number\n\n /**\n * Per-profile-key latency (same EWMA/warmup/expiry rules as the global one).\n * The global EWMA mixes cheap calls (get_accounts ~300ms) with heavy ones\n * (get_account_history, bridge.get_discussion — legitimately seconds), so it\n * ranks nodes fine but is the WRONG baseline for per-attempt deadlines: a\n * profile dominated by cheap calls would abort every legitimately-heavy call.\n * Deadlines/hedge delays therefore key on the FULL method for RPC\n * (\"condenser_api.get_account_history\") and api+endpoint template for REST —\n * an API prefix alone still mixes cheap and heavy methods. Ranking keeps the\n * global profile. Bounded: #nodes × #distinct methods called (code-defined,\n * not user input); fully cleared whenever the node's global profile expires\n * (the global clock advances on every sample, so global-stale ⇒ all stale).\n */\n apiLatency: Map\n}\n\n/**\n * JSON-RPC error codes that indicate the node itself is unhealthy, not that the\n * client sent a bad request. These should trigger failover to another node.\n *\n * Background: Hive nodes fronted by HAF/jussi/drone return HTTP 200 with a\n * JSON-RPC error body when a backing service (hivemind, postgrest, etc.) is down.\n * The HTTP layer looks healthy, so failover never triggers — the caller just gets\n * an error and gives up. This function identifies those node-level errors.\n */\nfunction isNodeLevelRPCError(code: number, message: string): boolean {\n // -32603: Internal error — node is having problems\n if (code === -32603) return true\n // -32000 to -32099: Server error range (implementation-defined server errors)\n if (code <= -32000 && code >= -32099) return true\n // -32601: Method not found — node may be missing this API plugin\n if (code === -32601) return true\n // -32602 with node-sick indicators (vs normal \"invalid params\" from bad client input)\n // e.g. \"Unable to parse endpoint data\" from HAF when a backing service is down\n if (code === -32602 && /unable to parse|endpoint data|internal/i.test(message)) return true\n return false\n}\n\n/** Extract the API prefix from a method name like \"rc_api.find_rc_accounts\" -> \"rc_api\". */\nfunction apiOf(method: string): string {\n const dot = method.indexOf('.')\n return dot > 0 ? method.slice(0, dot) : method\n}\n\n// ── Rate-limit (429) backoff constants ───────────────────────────────────────\n/** Base cooldown applied to a 429 with no usable `Retry-After` header. Matches the\n * previous flat default so first-offence behaviour is unchanged. */\nconst RATE_LIMIT_BASE_MS = 10_000\n/** Ceiling for the escalating header-less cooldown. Prevents a node from being\n * parked far longer than a real public node's throttle window. */\nconst RATE_LIMIT_MAX_MS = 60_000\n/** No 429 from a node for this long ⇒ its escalation streak resets to 0, so an\n * occasional throttle hours apart doesn't compound into a long park. */\nconst RATE_LIMIT_STREAK_RESET_MS = 120_000\n\n/** Per-API failure threshold before the node is deprioritized for that API only. */\nconst MAX_API_FAILURES_BEFORE_COOLDOWN = 2\n/** How long a node stays deprioritized for a specific API after repeated failures. */\nconst API_COOLDOWN_MS = 60_000\n/** How long head_block observations remain valid before being treated as unknown. */\nconst HEAD_BLOCK_MAX_AGE_MS = 120_000\n/** Maximum lag (in blocks) before a node is considered stale relative to the best-known head. */\nconst STALE_BLOCK_THRESHOLD = 30\n\n// ── Adaptive latency-ordering constants ──────────────────────────────────────\n/** EWMA smoothing weight for a new latency sample. 0.3 ⇒ ~5–6 samples to converge;\n * absorbs one-off GC/TLS spikes while still reacting to a real regional shift fast. */\nconst LATENCY_EWMA_ALPHA = 0.3\n/** Samples required before a node's latency is trusted for ranking. Below this the\n * node is \"warming\" and ranks at a neutral prior (config order via tiebreak), so a\n * single fluke never reorders the list and cold start == today's behavior. */\nconst LATENCY_MIN_SAMPLES = 3\n/** How long a latency sample stays usable for ranking. Past this a node reverts to\n * warming. Must be > LATENCY_REPROBE_MS so re-probes keep a busy node's profile fresh. */\nconst LATENCY_MAX_AGE_MS = 5 * 60_000\n/** A healthy node not sampled within this window is overdue for an exploratory\n * re-probe (promoted to front of ONE ordering). This is what lets a demoted node\n * climb back when it recovers — and what profiles a node that organic traffic never\n * reaches. 60s ⇒ ~1 probe/node/min worst case = negligible cost. */\nconst LATENCY_REPROBE_MS = 60_000\n/** Neutral score (ms) for an unproven/warming node: optimistic enough to sit ahead\n * of a proven-slow node (so we explore an unknown before hammering a known-slow one)\n * but behind a proven-fast node. Fixed, so a node makes at most ONE rank transition\n * when it crosses LATENCY_MIN_SAMPLES — no churn. */\nconst LATENCY_UNPROVEN_PRIOR_MS = 1_000\n/** A failed call only feeds a latency penalty if it was actually slow (≥ this). Keeps\n * a genuine timeout / slow-5xx (a far-region node case) visible to the ranker while an\n * instant ECONNREFUSED (a *down* node, handled by consecutiveFailures) is NOT mis-read\n * as \"slow\". The penalty value is the *measured* elapsed, never a static constant. */\nconst LATENCY_SLOW_FAILURE_MS = 2_000\n\n/**\n * Latency-ranking tuning, re-exported as a frozen bag so tests assert behaviour\n * against the real numbers instead of mirroring literals that can silently drift.\n * @internal — not part of the package's public API; for the co-located spec only.\n */\nexport const __LATENCY_TUNING__ = Object.freeze({\n EWMA_ALPHA: LATENCY_EWMA_ALPHA,\n MIN_SAMPLES: LATENCY_MIN_SAMPLES,\n MAX_AGE_MS: LATENCY_MAX_AGE_MS,\n REPROBE_MS: LATENCY_REPROBE_MS,\n UNPROVEN_PRIOR_MS: LATENCY_UNPROVEN_PRIOR_MS,\n SLOW_FAILURE_MS: LATENCY_SLOW_FAILURE_MS\n})\n\n/** @internal Exported for testing only. */\nexport class NodeHealthTracker {\n private health = new Map()\n\n private getOrCreate(node: string): NodeHealth {\n let h = this.health.get(node)\n if (!h) {\n h = {\n consecutiveFailures: 0,\n lastFailureTime: 0,\n rateLimitedUntil: 0,\n rateLimitStreak: 0,\n lastRateLimitAt: 0,\n apiFailures: new Map(),\n headBlock: 0,\n headBlockUpdatedAt: 0,\n ewmaLatencyMs: undefined,\n latencySampleCount: 0,\n latencyUpdatedAt: 0,\n // Stamp the probe clock at creation so a brand-new (never-sampled) node is\n // NOT treated as \"overdue for re-probe\" on its very first ordering pass.\n // With lastProbeAt=0 the re-probe gate (touch <= now - LATENCY_REPROBE_MS)\n // fired immediately, so the 2nd+ ordering on a cold worker promoted unproven\n // nodes ahead of the configured order for no measured reason. Seeding it to\n // \"now\" preserves configured order during warmup; a genuinely slow preferred\n // node is still demoted by its EWMA score (not by epoch-zero exploration),\n // and idle nodes are still re-probed once LATENCY_REPROBE_MS has truly elapsed.\n lastProbeAt: Date.now(),\n apiLatency: new Map()\n }\n this.health.set(node, h)\n }\n return h\n }\n\n recordSuccess(node: string, api?: string, durationMs?: number, profileKey?: string): void {\n const h = this.getOrCreate(node)\n h.consecutiveFailures = 0\n // A success means the node recovered — clear the escalation streak so the next\n // throttle starts from the base cooldown. We deliberately do NOT clear an active\n // rateLimitedUntil window here: under concurrency a success from a request that was\n // already in flight can resolve *after* another request recorded a fresh 429\n // Retry-After, and erasing the window would put a just-throttled node back into\n // rotation early. The window expires on its own (short for header-less; the server's\n // value for an explicit Retry-After).\n h.rateLimitStreak = 0\n if (api) {\n // A successful API call clears that API's failure counter — but never an\n // ACTIVE defective-response cooldown: the \"success\" may itself be an\n // unvalidated read from the same lying node (validated calls are the\n // minority of traffic), and re-admitting it early defeats the decisive\n // penalty. That window expires on its own, like rateLimitedUntil above.\n const apiFail = h.apiFailures.get(api)\n if (!apiFail || !(apiFail.defective && apiFail.cooldownUntil > Date.now())) {\n h.apiFailures.delete(api)\n }\n }\n if (typeof durationMs === 'number' && Number.isFinite(durationMs) && durationMs >= 0) {\n // Latency profiles use the finest key available (full method / endpoint\n // template); the API prefix is only a fallback so bare callers still\n // profile SOMETHING. Failure state above stays per-API on purpose.\n this.recordLatency(h, durationMs, profileKey ?? api)\n }\n }\n\n /**\n * Record a *slow* failed call as a latency signal. The failure counters are\n * updated separately (recordFailure/recordError); this only feeds the EWMA so a\n * node that returns 200-but-too-slow, times out, or returns a slow 5xx is ranked\n * on its real slowness. Callers pass the MEASURED elapsed ms and only call this\n * when the call was genuinely slow (≥ LATENCY_SLOW_FAILURE_MS) — an instant\n * connection failure (a *down* node) must NOT look \"slow\".\n */\n recordSlowFailure(node: string, durationMs: number, profileKey?: string): void {\n if (!Number.isFinite(durationMs) || durationMs < LATENCY_SLOW_FAILURE_MS) return\n this.recordLatency(this.getOrCreate(node), durationMs, profileKey)\n }\n\n /**\n * Usable latency profile (EWMA ms), or `undefined` while unproven or stale.\n * With a `profileKey` (full RPC method / REST api+endpoint template),\n * returns that (node, key) profile ONLY — deliberately no fallback to the\n * mixed global profile, because an average dominated by cheap calls is the\n * wrong deadline baseline for a heavy method (that fallback is exactly the\n * \"2s window starves get_account_history\" failure mode). Without a key,\n * returns the global ranking profile. Both follow the same \"profiled and\n * fresh\" gate as the ranker.\n * @internal\n */\n getUsableLatencyMs(node: string, profileKey?: string): number | undefined {\n const h = this.health.get(node)\n if (!h) return undefined\n const now = Date.now()\n if (profileKey !== undefined) {\n const p = h.apiLatency.get(profileKey)\n return p &&\n p.sampleCount >= LATENCY_MIN_SAMPLES &&\n now - p.updatedAt <= LATENCY_MAX_AGE_MS\n ? p.ewmaMs\n : undefined\n }\n return this.isLatencyUsable(h, now) ? h.ewmaLatencyMs : undefined\n }\n\n /**\n * Censored latency sample for a request that was ABORTED because a hedge\n * completed first while it was still in flight. The elapsed-at-abort is a\n * *lower bound* on the true latency, so folding it in can only move the\n * node's EWMA toward the truth, never below it — which is what lets repeated\n * hedge-wins reorder the pool. Deliberately does NOT touch the failure\n * counters or rate-limit state: the node returned no error, it was merely\n * slow, and treating cancellation as failure would flap `isNodeHealthy`.\n * Callers must NOT record this for a primary that already settled on its own\n * (its outcome was recorded normally; a second sample would be fabricated).\n * Bypasses the `recordSlowFailure` 2s floor (a hedge can win well below it).\n * By construction the elapsed is ≥ the hedge delay, so only a degenerate\n * near-zero epsilon needs rejecting — anything under one LAN round trip is\n * noise, not a latency measurement.\n * @internal\n */\n recordCensoredLatency(node: string, elapsedMs: number, profileKey?: string): void {\n if (!Number.isFinite(elapsedMs) || elapsedMs < 50) return\n this.recordLatency(this.getOrCreate(node), elapsedMs, profileKey)\n }\n\n /**\n * Fold a latency sample into the node's global EWMA (warmup + usability\n * bookkeeping) and, when a profile key is given, into that (node, key)\n * profile — the global one ranks nodes, the keyed one calibrates deadlines.\n */\n private recordLatency(h: NodeHealth, durationMs: number, profileKey?: string): void {\n const now = Date.now()\n // A profile older than the usable window starts fresh, so an idled process\n // re-learns from scratch rather than ranking on hour-old data. Every keyed\n // profile shares this clock (each sample updates both), so global-stale\n // implies every keyed profile is stale too — clear the map rather than\n // leave never-again-read tombstone entries for the life of the process.\n if (h.latencyUpdatedAt > 0 && now - h.latencyUpdatedAt > LATENCY_MAX_AGE_MS) {\n h.ewmaLatencyMs = undefined\n h.latencySampleCount = 0\n h.apiLatency.clear()\n }\n h.ewmaLatencyMs =\n h.ewmaLatencyMs === undefined\n ? durationMs\n : LATENCY_EWMA_ALPHA * durationMs + (1 - LATENCY_EWMA_ALPHA) * h.ewmaLatencyMs\n h.latencySampleCount++\n h.latencyUpdatedAt = now\n\n if (profileKey !== undefined) {\n const p = h.apiLatency.get(profileKey)\n if (!p || now - p.updatedAt > LATENCY_MAX_AGE_MS) {\n h.apiLatency.set(profileKey, { ewmaMs: durationMs, sampleCount: 1, updatedAt: now })\n } else {\n p.ewmaMs = LATENCY_EWMA_ALPHA * durationMs + (1 - LATENCY_EWMA_ALPHA) * p.ewmaMs\n p.sampleCount++\n p.updatedAt = now\n }\n }\n }\n\n recordFailure(node: string, api?: string): void {\n const h = this.getOrCreate(node)\n if (api) {\n // API-specific failure: only update the per-API tracker.\n // This prevents e.g. 3 rc_api failures from marking the node\n // globally unhealthy for condenser_api too.\n const now = Date.now()\n const existing: {\n count: number\n cooldownUntil: number\n lastFailureTime: number\n defective?: boolean\n } = h.apiFailures.get(api) ?? { count: 0, cooldownUntil: 0, lastFailureTime: 0 }\n // Reset counter if previous cooldown expired OR last failure was >30s ago\n // (avoids sticky penalties from sparse failures hours apart)\n if (\n (existing.cooldownUntil > 0 && existing.cooldownUntil <= now) ||\n (existing.lastFailureTime > 0 && now - existing.lastFailureTime > 30_000)\n ) {\n existing.count = 0\n existing.cooldownUntil = 0\n }\n existing.count++\n existing.lastFailureTime = now\n if (existing.count >= MAX_API_FAILURES_BEFORE_COOLDOWN) {\n existing.cooldownUntil = now + API_COOLDOWN_MS\n }\n h.apiFailures.set(api, existing)\n } else {\n // Transport-level failure (no specific API): update global counter\n h.consecutiveFailures++\n h.lastFailureTime = Date.now()\n }\n }\n\n /**\n * A response that failed the caller's payload validation is a decisive,\n * reproducible node fault — the node answered 200 with data the caller KNOWS\n * to be impossible — so it trips the per-API cooldown immediately instead of\n * accruing ordinary strikes. Deliberately its own method rather than\n * recordFailure × N: ordinary strikes are cleared by any success, and a\n * top-ranked lying node keeps recording successes on the unvalidated calls\n * between probes, which would reset its strikes forever and keep it in\n * rotation (observed live). Scope stays per-API: the node may be perfectly\n * healthy for its other API families.\n */\n recordDefectiveResponse(node: string, api: string): void {\n const h = this.getOrCreate(node)\n const now = Date.now()\n const existing: {\n count: number\n cooldownUntil: number\n lastFailureTime: number\n defective?: boolean\n } = h.apiFailures.get(api) ?? { count: 0, cooldownUntil: 0, lastFailureTime: 0 }\n existing.count = Math.max(existing.count + 1, MAX_API_FAILURES_BEFORE_COOLDOWN)\n existing.lastFailureTime = now\n existing.cooldownUntil = now + API_COOLDOWN_MS\n existing.defective = true\n h.apiFailures.set(api, existing)\n }\n\n /**\n * Cool down a rate-limited node. Honors an explicit server `Retry-After`\n * (`retryAfterMs`) exactly — the server told us when to return. With no usable\n * header, applies escalating backoff: BASE, 2×BASE, 4×BASE … capped at\n * RATE_LIMIT_MAX_MS, indexed by the node's consecutive-429 streak (reset by a\n * success or after RATE_LIMIT_STREAK_RESET_MS of quiet). This stops a throttled\n * public node from being re-admitted every 10s and re-hammered under sustained\n * load, which matters most when the fleet's own unlimited node is removed.\n */\n recordRateLimit(node: string, retryAfterMs?: number): void {\n const h = this.getOrCreate(node)\n const now = Date.now()\n // Expire a stale streak so an occasional throttle hours apart doesn't compound.\n if (h.rateLimitStreak > 0 && now - h.lastRateLimitAt > RATE_LIMIT_STREAK_RESET_MS) {\n h.rateLimitStreak = 0\n }\n const hasHeader = typeof retryAfterMs === 'number' && Number.isFinite(retryAfterMs) && retryAfterMs > 0\n const cooldown = hasHeader\n ? retryAfterMs!\n : Math.min(RATE_LIMIT_BASE_MS * 2 ** h.rateLimitStreak, RATE_LIMIT_MAX_MS)\n // Only a header-less 429 advances the escalation streak — an explicit Retry-After is\n // honored exactly and must not compound the header-less backoff (else several\n // Retry-After 429s would push a later header-less 429 straight to the 60s cap).\n if (!hasHeader) h.rateLimitStreak++\n h.lastRateLimitAt = now\n // Explicit Retry-After is honored exactly (the server's current instruction). A\n // header-less cooldown may only move the window FORWARD — it must never truncate a\n // longer window already set, e.g. a node parked for an hour by an explicit\n // Retry-After that is later retried as a last resort and returns a header-less 429\n // must not have its 1h window cut down to the 10s base.\n h.rateLimitedUntil = hasHeader\n ? now + cooldown\n : Math.max(h.rateLimitedUntil, now + cooldown)\n h.consecutiveFailures++\n h.lastFailureTime = now\n }\n\n /** Record an observed head_block_number for this node. */\n recordHeadBlock(node: string, blockNum: number): void {\n if (!blockNum || !Number.isFinite(blockNum)) return\n const h = this.getOrCreate(node)\n h.headBlock = blockNum\n h.headBlockUpdatedAt = Date.now()\n }\n\n /**\n * Consensus head block from recent observations. Uses the median rather than the\n * max to prevent a single bad/misconfigured node from poisoning the reference.\n * A node reporting an inflated head_block won't affect the median unless the\n * majority of nodes agree on that range.\n */\n private consensusHeadBlock(): number {\n const now = Date.now()\n const recent: number[] = []\n for (const h of this.health.values()) {\n if (h.headBlock > 0 && now - h.headBlockUpdatedAt <= HEAD_BLOCK_MAX_AGE_MS) {\n recent.push(h.headBlock)\n }\n }\n if (recent.length < 2) return 0 // Need at least 2 observations to compare\n recent.sort((a, b) => a - b)\n // Median: for even length, use the lower-middle value (conservative)\n return recent[Math.floor((recent.length - 1) / 2)]\n }\n\n /** True if this node is healthy (globally and for the given API if provided). */\n isNodeHealthy(node: string, api?: string): boolean {\n const h = this.health.get(node)\n if (!h) return true // unknown nodes assumed healthy\n const now = Date.now()\n\n // Rate-limited and cooldown hasn't expired\n if (h.rateLimitedUntil > now) return false\n\n // Too many consecutive failures within the last 30 seconds\n if (h.consecutiveFailures >= 3 && now - h.lastFailureTime < 30_000) return false\n\n // Per-API cooldown: node may be healthy overall but missing this API plugin\n if (api) {\n const apiFail = h.apiFailures.get(api)\n if (apiFail && apiFail.cooldownUntil > now) return false\n }\n\n // Head-block staleness: deprioritize nodes lagging behind the consensus head\n const best = this.consensusHeadBlock()\n if (\n best > 0 &&\n h.headBlock > 0 &&\n now - h.headBlockUpdatedAt <= HEAD_BLOCK_MAX_AGE_MS &&\n best - h.headBlock > STALE_BLOCK_THRESHOLD\n ) {\n return false\n }\n\n return true\n }\n\n /**\n * Order nodes best-first: healthy nodes sorted by adaptive latency score, then\n * unhealthy nodes appended. Capability / staleness / rate-limit filtering stays in\n * `isNodeHealthy` and is unchanged — latency only reorders WITHIN the healthy set,\n * and only WITHIN the array it is handed (so it never leaves the configured list).\n *\n * One ordering per pass MAY promote a healthy node overdue for a re-probe (never\n * sampled, or not sampled within LATENCY_REPROBE_MS) to the front — single-flight\n * via `lastProbeAt`. This is what lets a demoted node climb back when it recovers,\n * and profiles a node that organic traffic (always served by a faster peer) never\n * reaches. Cold start: with no profiles, every node scores the neutral prior and the\n * stable config-index tiebreak yields the original order — i.e. today's behavior.\n */\n getOrderedNodes(nodes: string[], api?: string): string[] {\n const healthy: string[] = []\n const unhealthy: string[] = []\n for (const node of nodes) {\n if (this.isNodeHealthy(node, api)) {\n healthy.push(node)\n } else {\n unhealthy.push(node)\n }\n }\n if (healthy.length <= 1) {\n return [...healthy, ...unhealthy]\n }\n const now = Date.now()\n // Every score in THIS pass falls back to config index on ties → a total,\n // transitive order with no memo (so no stale-denominator inversions).\n const ordered = healthy\n .map((node, i) => ({ node, i, score: this.scoreNode(node, now) }))\n .sort((a, b) => a.score - b.score || a.i - b.i)\n .map((d) => d.node)\n const probe = this.pickReprobeCandidate(healthy, now)\n if (probe && ordered[0] !== probe) {\n return [probe, ...ordered.filter((n) => n !== probe), ...unhealthy]\n }\n return [...ordered, ...unhealthy]\n }\n\n /** A node's latency is usable for ranking only if profiled (≥ MIN_SAMPLES) and fresh. */\n private isLatencyUsable(h: NodeHealth | undefined, now: number): boolean {\n return (\n !!h &&\n h.ewmaLatencyMs !== undefined &&\n h.latencySampleCount >= LATENCY_MIN_SAMPLES &&\n now - h.latencyUpdatedAt <= LATENCY_MAX_AGE_MS\n )\n }\n\n /**\n * Ranking score (lower = better). Unproven/warming nodes get a fixed neutral prior\n * so they sit ahead of a proven-slow node but behind a proven-fast one, and make at\n * most one rank transition when they cross MIN_SAMPLES (no churn).\n */\n private scoreNode(node: string, now: number): number {\n const h = this.health.get(node)\n if (!this.isLatencyUsable(h, now)) return LATENCY_UNPROVEN_PRIOR_MS\n return h!.ewmaLatencyMs!\n }\n\n /**\n * At most one healthy node overdue for an exploratory re-probe: never sampled, or\n * neither sampled nor re-probed within LATENCY_REPROBE_MS. Returns the stalest such\n * node and stamps `lastProbeAt` to single-flight it against concurrent orderings.\n *\n * Note: `getOrCreate` here materializes a health entry per node in the passed list.\n * The node list (`config.nodes`/`restNodes`) is treated as effectively static — set\n * once via `setNodes` — so the map is bounded. If a host is ever removed from the\n * list at runtime its stale entry is simply ignored (never re-surfaced) and is a\n * negligible, bounded amount of memory.\n */\n private pickReprobeCandidate(healthy: string[], now: number): string | undefined {\n const threshold = now - LATENCY_REPROBE_MS\n let cand: string | undefined\n let candTouch = Infinity\n for (const n of healthy) {\n const h = this.getOrCreate(n)\n const touch = Math.max(h.latencyUpdatedAt, h.lastProbeAt)\n if (touch <= threshold && touch < candTouch) {\n cand = n\n candTouch = touch\n }\n }\n if (cand) this.getOrCreate(cand).lastProbeAt = now\n return cand\n }\n}\n\n// Exported for the co-located specs only (asserting the call sites' effect on\n// health). Not re-exported by hive-tx/index.ts, so NOT part of the public API.\n// @internal\nexport const rpcHealthTracker = new NodeHealthTracker()\n// @internal\nexport const restHealthTracker = new NodeHealthTracker()\n\n// ── Hedged-request budget ────────────────────────────────────────────────────\n\n/**\n * Token bucket bounding hedged (duplicated) read requests to a fraction of\n * overall traffic. A hedge spends 1 token; every un-hedged success refills\n * `config.resilience.hedgeRefillPerSuccess` (default 0.1 ⇒ steady-state hedge\n * rate ≤ ~9% of successful traffic, with bursts up to `hedgeBucketCapacity`).\n * The self-limiting property this buys: under pool-wide slowness nearly every\n * request wants to hedge while successes (the refills) stagnate, so the bucket\n * drains and hedging auto-disables instead of doubling load into public-node\n * rate limits — the standard hedged-request guard (cf. gRPC's hedging throttle;\n * Dean & Barroso, \"The Tail at Scale\"). One instance per process shared across\n * concurrent calls; plain synchronous mutation is race-free on the JS event\n * loop. Reads config live so runtime tuning via `setResilience` applies.\n * @internal Exported for testing only.\n */\nexport class HedgeBudget {\n private tokens = config.resilience.hedgeBucketCapacity\n\n trySpend(): boolean {\n this.clamp()\n // Epsilon guards fractional-refill float accumulation (10 × 0.1 < 1 in FP64).\n if (this.tokens >= 1 - 1e-9) {\n this.tokens -= 1\n return true\n }\n return false\n }\n\n refill(): void {\n this.clamp()\n this.tokens = Math.min(\n config.resilience.hedgeBucketCapacity,\n this.tokens + config.resilience.hedgeRefillPerSuccess\n )\n }\n\n /** Capacity may be lowered at runtime; never let stored tokens exceed it. */\n private clamp(): void {\n if (this.tokens > config.resilience.hedgeBucketCapacity) {\n this.tokens = config.resilience.hedgeBucketCapacity\n }\n }\n\n /** @internal test hook */\n get available(): number {\n return this.tokens\n }\n\n /** @internal test hook */\n reset(tokens = config.resilience.hedgeBucketCapacity): void {\n this.tokens = tokens\n }\n}\n\n// @internal — exported for the co-located spec only, like the trackers above.\nexport const rpcHedgeBudget = new HedgeBudget()\n\n/**\n * Per-attempt timeout for a read call. A node profiled for THIS profile key\n * (full RPC method / REST api+endpoint template) is given `factor × EWMA` —\n * floored (≥2s) so a moderate spike on a fast call is not cut off, and capped\n * at the caller's ceiling so this can only ever *shorten* the wait. The\n * effect: a node running far above its own baseline for this exact kind of\n * call is abandoned early and failover starts in seconds instead of the full\n * fixed window.\n *\n * Two deliberate exclusions:\n * - `explicit` callers (who passed a timeout argument) keep exactly what they\n * asked for — the documented meaning of the parameter is preserved, and a\n * consumer who knows their call is heavy is never second-guessed.\n * - The profile is per (node, full method) with NO fallback to the node's\n * mixed global EWMA or even the API-prefix average: a baseline dominated by\n * cheap `condenser_api.get_accounts` calls must not set the deadline for a\n * heavy `condenser_api.get_account_history`. An unprofiled (node, method)\n * pair keeps the caller's timeout unchanged (cold start == old behavior).\n */\nfunction adaptiveAttemptTimeout(\n tracker: NodeHealthTracker,\n node: string,\n profileKey: string,\n callerTimeout: number,\n explicit: boolean\n): number {\n const r = config.resilience\n if (!r.adaptiveTimeout || explicit) return callerTimeout\n const ewma = tracker.getUsableLatencyMs(node, profileKey)\n if (ewma === undefined) return callerTimeout\n // EWMAs are fractional, but the result feeds AbortSignal.timeout(), which\n // Node rejects with ERR_OUT_OF_RANGE for non-integer delays (browsers coerce).\n return Math.ceil(\n Math.min(callerTimeout, Math.max(r.adaptiveTimeoutFloorMs, r.adaptiveTimeoutFactor * ewma))\n )\n}\n\n// ── Internal helpers ────────────────────────────────────────────────────────\n\n/** Record a caught error on the health tracker (handles NodeError to avoid double-counting). */\nfunction recordError(tracker: NodeHealthTracker, node: string, e: any, api?: string): void {\n if (e instanceof NodeError) {\n if (e.isRateLimit) {\n // 0 → no usable Retry-After → let recordRateLimit apply escalating backoff.\n tracker.recordRateLimit(node, e.rateLimitMs || undefined)\n } else {\n tracker.recordFailure(node, api)\n }\n } else if (e instanceof RPCError) {\n // RPC-level errors are API-specific (e.g., disabled API)\n tracker.recordFailure(node, api)\n } else {\n // Transport-level failures (DNS, TLS, timeout) affect the whole node\n tracker.recordFailure(node)\n }\n}\n\n/**\n * Passively extract head_block_number from known RPC responses\n * (e.g. `condenser_api.get_dynamic_global_properties`, `database_api.get_dynamic_global_properties`).\n * Silently ignores responses without that shape.\n */\nfunction tryRecordHeadBlock(\n tracker: NodeHealthTracker,\n node: string,\n method: string,\n result: any\n): void {\n if (!result || typeof result !== 'object') return\n if (!method.includes('get_dynamic_global_properties')) return\n const block = (result as any).head_block_number\n if (typeof block === 'number') {\n tracker.recordHeadBlock(node, block)\n }\n}\n\n// ── AbortSignal helpers (browser fallbacks) ─────────────────────────────────\n\n/**\n * Build a TimeoutError \"reason\" for an aborted signal.\n * Prefers the standard `DOMException` when available. Runtimes that ship\n * `AbortController` without `DOMException` (notably React Native / Hermes,\n * old Node < 17) fall back to a plain Error tagged with `name: 'TimeoutError'`\n * — which is what consumers actually check on `signal.reason`.\n */\nfunction createTimeoutReason(): Error {\n if (typeof DOMException !== 'undefined') {\n return new DOMException('The operation was aborted due to timeout', 'TimeoutError')\n }\n const err = new Error('The operation was aborted due to timeout')\n err.name = 'TimeoutError'\n return err\n}\n\n/** AbortSignal.timeout polyfill for pre-Chrome 103 / pre-Safari 16.4.\n * Returns { signal, cleanup } — caller must invoke cleanup() on success\n * to clear the dangling timer. */\nfunction createTimeoutSignal(ms: number): { signal: AbortSignal; cleanup: () => void } {\n // Node's AbortSignal.timeout throws ERR_OUT_OF_RANGE on fractional delays\n // (browsers coerce them), so guard every caller here.\n ms = Math.ceil(ms)\n if (typeof AbortSignal.timeout === 'function') {\n return { signal: AbortSignal.timeout(ms), cleanup: () => {} }\n }\n const controller = new AbortController()\n const timer = setTimeout(() => controller.abort(createTimeoutReason()), ms)\n return { signal: controller.signal, cleanup: () => clearTimeout(timer) }\n}\n\n/** AbortSignal.any polyfill for pre-Chrome 116 / pre-Safari 17.4.\n * Returns { signal, cleanup } — caller must invoke cleanup() on success\n * to remove listeners from the input signals (prevents leaks when the\n * same long-lived signal is reused across many callRPC invocations). */\nfunction mergeSignals(\n primary: AbortSignal,\n secondary?: AbortSignal\n): { signal: AbortSignal; cleanup: () => void } {\n if (!secondary) return { signal: primary, cleanup: () => {} }\n if (typeof AbortSignal.any === 'function') {\n return { signal: AbortSignal.any([primary, secondary]), cleanup: () => {} }\n }\n // Fallback: controller that aborts with the winning signal's reason\n const controller = new AbortController()\n if (primary.aborted) {\n controller.abort(primary.reason)\n return { signal: controller.signal, cleanup: () => {} }\n }\n if (secondary.aborted) {\n controller.abort(secondary.reason)\n return { signal: controller.signal, cleanup: () => {} }\n }\n\n const onPrimaryAbort = () => controller.abort(primary.reason)\n const onSecondaryAbort = () => controller.abort(secondary.reason)\n primary.addEventListener('abort', onPrimaryAbort, { once: true })\n secondary.addEventListener('abort', onSecondaryAbort, { once: true })\n\n const cleanup = () => {\n primary.removeEventListener('abort', onPrimaryAbort)\n secondary.removeEventListener('abort', onSecondaryAbort)\n }\n return { signal: controller.signal, cleanup }\n}\n\n/**\n * Low-level JSON-RPC call to a single node. No failover.\n * Throws RPCError for blockchain rejections, NodeError for HTTP 429/5xx,\n * and generic Error for other transport failures.\n * @param shouldRetry - If true, retries once on the same node for transient errors.\n */\nconst jsonRPCCall = async (\n url: string,\n method: string,\n params: any,\n timeout = config.timeout,\n shouldRetry = false,\n externalSignal?: AbortSignal\n) => {\n const id = Math.floor(Math.random() * 100_000_000)\n const body = {\n jsonrpc: '2.0',\n method,\n params,\n id\n }\n // Merge the per-call timeout with any external abort signal (e.g., SSR\n // request cancellation). Either one firing cancels the fetch.\n // Fallbacks for browsers without AbortSignal.timeout (pre-Chrome 103)\n // or AbortSignal.any (pre-Chrome 116).\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(timeout)\n const { signal, cleanup: cleanupMerge } = mergeSignals(tSignal, externalSignal)\n const cleanup = () => {\n cleanupTimeout()\n cleanupMerge()\n }\n\n try {\n const res = await fetch(url, {\n method: 'POST',\n body: JSON.stringify(body),\n headers: { 'Content-Type': 'application/json', ...serverIdentityHeaders() },\n signal\n })\n\n // Handle HTTP-level errors before parsing JSON.\n // Throw NodeError so callers can record health exactly once.\n if (res.status === 429) {\n throw new NodeError(url, `HTTP 429 Rate Limited`, {\n rateLimitMs: parseRetryAfterMs(res.headers.get('Retry-After')),\n isRateLimit: true\n })\n }\n // Any other 5xx is a node-level failure. Common cases:\n // 502 Bad Gateway — upstream HAF/jussi down\n // 503 Service Unavail — node draining / maintenance\n // 504 Gateway Timeout — slow upstream\n // 520-530 — Cloudflare interstitials (1033 tunnel error → 530)\n // Without this branch, the HTML error-page body would fall into res.json()\n // and throw a generic SyntaxError downstream, making failover guess at\n // whether the request reached the node.\n if (res.status >= 500 && res.status < 600) {\n throw new NodeError(url, `HTTP ${res.status} from ${url}`)\n }\n\n const result = (await res.json()) as CallResponse\n if (\n !result ||\n typeof result.id === 'undefined' ||\n result.id !== id ||\n result.jsonrpc !== '2.0'\n ) {\n throw new Error('JSONRPC id mismatch')\n }\n if ('result' in result) {\n return result.result\n }\n if ('error' in result) {\n const e = result.error\n if ('message' in e && 'code' in e) {\n throw new RPCError(e)\n }\n throw result.error\n }\n // No result and no error?\n throw result\n } catch (e) {\n if (e instanceof RPCError) {\n throw e\n }\n // NodeError should not be retried on the same node - it's an HTTP status issue\n if (e instanceof NodeError) {\n throw e\n }\n if (externalSignal?.aborted) {\n throw e\n }\n if (shouldRetry) {\n return jsonRPCCall(url, method, params, timeout, false, externalSignal)\n }\n throw e\n } finally {\n cleanup()\n }\n}\n\n/** Small jitter delay between failover attempts to prevent thundering herd. */\nfunction jitterDelay(): Promise {\n return sleep(50 + Math.random() * 50)\n}\n\n// ── Hedged read attempt ─────────────────────────────────────────────────────\n\n/**\n * One hedged READ attempt: start the primary node, and if it is still pending\n * after `max(hedgeDelayFloorMs, hedgeDelayFactor × primary EWMA)`, race a\n * duplicate against the next healthy untried node. First success wins and the\n * loser is aborted. Resolution rules (mirroring the sequential path exactly):\n *\n * - External abort (caller cancelled): reject immediately, record nothing.\n * - Authoritative RPCError (non-node-level blockchain rejection) from either\n * leg: an answer, not a fault — abort the other leg, reject immediately.\n * - Failover-class failure: record health for that leg (recordError +\n * recordSlowFailure — identical to the sequential catch); if the other leg\n * is still running, keep waiting on it; when both have failed, reject with\n * the last error so the outer loop continues its normal failover.\n * - Primary fails BEFORE the hedge fires: reject immediately (plain failover —\n * hedging only ever races slowness, never a node that failed fast).\n *\n * Health/budget bookkeeping on a win: winner records a normal success sample;\n * if the hedge won, the primary gets a censored latency sample (elapsed at\n * abort — a lower bound on its true latency) so repeated hedge-wins reorder\n * the pool; if the primary won without the hedge ever firing, the budget\n * refills. An aborted hedge leg records nothing (it was never given a fair\n * run). Broadcasts NEVER go through this path (double-broadcast risk) — it is\n * wired into `callRPC` only.\n */\nfunction hedgedRpcAttempt(opts: {\n method: string\n params: any[] | object\n api: string\n primary: string\n /**\n * Pre-selected healthy untried peers (up to a few, in rank order). The\n * actual hedge target is drawn uniformly at random at FIRE time: with many\n * concurrent callers behind one origin IP, always duplicating to the single\n * next-ranked node would concentrate the whole hedge stream on it and could\n * trip its per-IP rate limit — spreading over the top candidates keeps the\n * same budget bound without a single-target hotspot. Marked tried only if\n * the hedge actually fires.\n */\n hedgePool: string[]\n callerTimeout: number\n /** Caller passed an explicit timeout — adaptive shortening is disabled. */\n explicitTimeout: boolean\n /** The call's wall-clock deadline: a hedge must not START past it (it would\n * be a brand-new request the outer loop itself would refuse to start). */\n deadlineAt: number\n externalSignal?: AbortSignal\n /** Lets the outer loop add the hedge node to its tried-set at fire time. */\n onHedgeFired: (node: string) => void\n /** Caller-supplied payload validation — see callRPC's `validate` param. */\n validate?: (result: unknown) => boolean\n}): Promise {\n const {\n method,\n params,\n api,\n primary,\n hedgePool,\n callerTimeout,\n explicitTimeout,\n deadlineAt,\n externalSignal,\n onHedgeFired,\n validate\n } = opts\n return new Promise((resolve, reject) => {\n let done = false\n let pendingLegs = 0\n let hedgeFired = false\n /** The primary settled on its own (success OR failure). A censored latency\n * sample is only valid for a primary that was still in flight when the\n * hedge won — recording one after the primary already failed would\n * fabricate a second sample for a request whose outcome was recorded. */\n let primarySettled = false\n let lastError: any\n let hedgeTimer: ReturnType | undefined\n let primaryStart = 0\n const controllers: AbortController[] = []\n\n /** Settle exactly once: clear the timer, abort every other in-flight leg\n * (their rejections land behind the `done` guard and are dropped). */\n const finish = (settle: () => void) => {\n if (done) return\n done = true\n if (hedgeTimer !== undefined) {\n clearTimeout(hedgeTimer)\n hedgeTimer = undefined\n }\n for (const c of controllers) {\n if (!c.signal.aborted) c.abort()\n }\n settle()\n }\n\n const startLeg = (node: string, isHedge: boolean) => {\n pendingLegs++\n const controller = new AbortController()\n controllers.push(controller)\n // Merge our cancellation handle with the caller's signal; jsonRPCCall\n // merges the result with its own per-attempt timeout signal.\n const merged = mergeSignals(controller.signal, externalSignal)\n const legTimeout = adaptiveAttemptTimeout(\n rpcHealthTracker,\n node,\n method,\n callerTimeout,\n explicitTimeout\n )\n const start = Date.now()\n if (!isHedge) primaryStart = start\n jsonRPCCall(node, method, params, legTimeout, false, merged.signal)\n .then((res) => {\n merged.cleanup()\n pendingLegs--\n if (!isHedge) primarySettled = true\n if (done) return\n if (validate && !validate(res)) {\n // Well-formed envelope, impossible payload: a node fault the\n // HTTP/JSON-RPC layers cannot see. Same handling as the catch\n // path — record the fault against this node's API health, never\n // record a success for a lie, and let the other leg still win.\n rpcHealthTracker.recordDefectiveResponse(node, api)\n lastError = new Error(\n `[hive-tx] response validation failed for ${method} from ${node}`\n )\n if (!isHedge && !hedgeFired) {\n finish(() => reject(lastError))\n return\n }\n if (pendingLegs === 0) {\n finish(() => reject(lastError))\n }\n return\n }\n rpcHealthTracker.recordSuccess(node, api, Date.now() - start, method)\n tryRecordHeadBlock(rpcHealthTracker, node, method, res)\n if (isHedge) {\n if (!primarySettled) {\n // Primary lost the race while still in flight: censored sample\n // (lower bound of its true latency) so the ranker learns without\n // marking it as failed. A primary that already failed was fully\n // recorded by its own catch — nothing more to record.\n rpcHealthTracker.recordCensoredLatency(primary, Date.now() - primaryStart, method)\n }\n } else if (!hedgeFired) {\n rpcHedgeBudget.refill()\n }\n finish(() => resolve(res as T))\n })\n .catch((e) => {\n merged.cleanup()\n pendingLegs--\n if (!isHedge) primarySettled = true\n if (done) return // aborted loser (or late settle) — already resolved\n if (externalSignal?.aborted) {\n // Caller cancelled — bail without recording (mirrors sequential path).\n finish(() => reject(e))\n return\n }\n if (e instanceof RPCError && !isNodeLevelRPCError(e.code, e.message)) {\n // Authoritative rejection: an answer, not a node fault.\n finish(() => reject(e))\n return\n }\n // Failover-class failure — record exactly as the sequential catch does.\n recordError(rpcHealthTracker, node, e, api)\n rpcHealthTracker.recordSlowFailure(node, Date.now() - start, method)\n lastError = e\n if (!isHedge && !hedgeFired) {\n // Primary failed fast, before the hedge delay: plain failover.\n finish(() => reject(e))\n return\n }\n if (pendingLegs === 0) {\n finish(() => reject(lastError))\n }\n // else: the other leg is still in flight and may still win.\n })\n }\n\n startLeg(primary, false)\n\n // Delay from the primary's per-method profile (the eligibility gate\n // ensured it is usable); a raced expiry just means the floor applies. It is\n // then clamped BELOW the primary's own attempt window: for a heavy API\n // (EWMA > window/hedgeDelayFactor) the un-clamped delay would land past\n // the primary's timeout-abort — which clears this timer — so hedging would\n // silently never fire for exactly the heavy tail it exists to protect.\n // Firing at ~80% of the window keeps the duplicate meaningful (it starts\n // while the primary is still allowed to win) for every profile shape.\n const ewma = rpcHealthTracker.getUsableLatencyMs(primary, method) ?? 0\n const primaryWindow = adaptiveAttemptTimeout(\n rpcHealthTracker,\n primary,\n method,\n callerTimeout,\n explicitTimeout\n )\n const delay = Math.min(\n Math.max(config.resilience.hedgeDelayFloorMs, config.resilience.hedgeDelayFactor * ewma),\n 0.8 * primaryWindow\n )\n hedgeTimer = setTimeout(() => {\n hedgeTimer = undefined\n if (done || externalSignal?.aborted) return\n // Never START a duplicate past the call's wall-clock deadline — it would\n // extend the hold and spend a token on work the outer loop would refuse.\n if (Date.now() >= deadlineAt) return\n // Candidates were selected before the delay elapsed — re-check health at\n // fire time (one may have been rate-limited meanwhile) BEFORE spending a\n // token, so a stale pool costs nothing. Random draw spreads concurrent\n // callers' duplicates across the top candidates (see hedgePool doc).\n const live = hedgePool.filter((n) => rpcHealthTracker.isNodeHealthy(n, api))\n if (live.length === 0) return\n const target = live[Math.floor(Math.random() * live.length)]\n // Budget check at fire time, not arm time: only actual duplicates spend.\n if (!rpcHedgeBudget.trySpend()) return\n hedgeFired = true\n onHedgeFired(target)\n startLeg(target, true)\n }, delay)\n })\n}\n\n// ── Public API: callRPC ─────────────────────────────────────────────────────\n\n/**\n * Makes API calls to Hive blockchain nodes with automatic retry and failover support.\n * Uses per-request retry counters, node health tracking, jitter between retries,\n * and HTTP status awareness (429 rate limiting, 503).\n *\n * If the current node fails, it will automatically try the next healthy node.\n * When all nodes have been tried, wraps around to give earlier nodes another chance\n * until the full retry budget (config.retry) is exhausted.\n * RPCErrors (valid blockchain rejections) are never retried.\n *\n * @param method - The API method name (e.g., 'condenser_api.get_accounts')\n * @param params - Parameters for the API method as array or object\n * @param timeout - Request timeout in milliseconds (default: config.timeout)\n * @param retry - Maximum number of retry attempts (default: config.retry). The\n * wall-clock budget (`config.resilience.totalBudgetFactor` × timeout) may end\n * the failover walk before the retry count is exhausted.\n * @param validate - Optional payload validation. Some nodes return a valid\n * JSON-RPC envelope carrying an impossible payload (e.g. account rows with\n * metadata fields stripped to \"\"), which no transport-level check can catch.\n * When the callback returns false the response is treated as a node fault:\n * recorded against that node's per-API health (repeat offenders get an API\n * cooldown and are deprioritized) and the failover walk continues to the\n * next node instead of returning the lie. Keep validators conservative —\n * reject only payloads the caller KNOWS cannot be correct, or a strict\n * validator turns every node's honest answer into a failover storm.\n * @returns Promise resolving to the API response\n * @throws {RPCError} On blockchain-level errors (bad params, missing authority, etc.)\n * @throws {Error} If all retry attempts fail\n *\n * @example\n * ```typescript\n * import { callRPC } from 'hive-tx'\n *\n * // Get account information\n * const accounts = await callRPC('condenser_api.get_accounts', [['alice']])\n *\n * // Custom timeout and retry settings\n * const data = await callRPC('condenser_api.get_content', ['alice', 'test-post'], 10_000, 5)\n * ```\n */\nexport const callRPC = async (\n method: string,\n params: any[] | object = [],\n timeout?: number,\n retry = config.retry,\n signal?: AbortSignal,\n validate?: (result: unknown) => boolean\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an array')\n }\n if (config.nodes.length === 0) {\n throw new Error('config.nodes is empty')\n }\n // An explicit timeout argument is authoritative: adaptive shortening only\n // applies to callers who left the window to the SDK (timeout === undefined),\n // so `callRPC(m, p, 10_000)` still means \"give each attempt 10s\" exactly.\n const explicitTimeout = timeout !== undefined\n const ceiling = timeout ?? config.timeout\n const api = apiOf(method)\n // Wall-clock budget across ALL failover attempts. Without it the worst case\n // is (retry+1) × timeout ≈ 30s — exactly the render pile-up this feature\n // exists to prevent — whenever the WHOLE pool is slow (adaptive timeouts\n // rise with the EWMAs and hedging self-throttles, both by design). The\n // deadline is checked before each new attempt AND before a hedge fires; an\n // in-flight attempt still finishes its own window, so the true ceiling is\n // deadline + one attempt window (up to ~2× the window if a hedge fired just\n // before the deadline and the attempt then waits out the hedge leg too).\n // Note this budget also bounds callers who passed an explicit `retry`: the\n // wall clock, not the attempt count, is the stronger promise here.\n // Server-side read-through proxy, when configured and the method is on its\n // allowlist: one call, and on any miss the node loop below runs unchanged.\n // It runs BEFORE the node deadline is taken, so a slow proxy costs its own\n // timeout and nothing of the failover budget the nodes get today.\n // Snapshot: the binding can be cleared by the host while this call awaits.\n const proxy = serverRpcProxy\n if (proxy && isNodeRuntime && proxy.methodSet.has(method)) {\n if (Date.now() < proxyOpenUntil) {\n rpcProxyStats.skipped++\n } else {\n try {\n const served = await proxyRpcCall(proxy, method, params, ceiling, signal, validate)\n rpcProxyStats.served++\n proxyConsecutiveMisses = 0\n return served\n } catch (e: unknown) {\n if (signal?.aborted) throw e\n rpcProxyStats.fallback++\n const reason: string = e instanceof ProxyMiss ? e.reason : 'transport'\n rpcProxyStats.fallbackByReason[reason] = (rpcProxyStats.fallbackByReason[reason] ?? 0) + 1\n if (reason === 'rpcerror') {\n // A relayed node error is a healthy proxy answer: it closes the\n // count like a served call. Crawler-made feed URLs produce these in\n // runs, and counting them opened the breaker on a working proxy.\n proxyConsecutiveMisses = 0\n } else if (++proxyConsecutiveMisses >= proxy.failureThreshold) {\n proxyOpenUntil = Date.now() + proxy.cooldownMs\n proxyConsecutiveMisses = 0\n }\n }\n }\n }\n\n const deadline = Date.now() + config.resilience.totalBudgetFactor * ceiling\n\n // Track nodes tried in the current round. When all nodes have been tried,\n // clear the set to allow a second round (wrap-around) using the retry budget.\n const triedInRound = new Set()\n let lastError: any\n\n for (let attempt = 0; attempt <= retry; attempt++) {\n if (attempt > 0 && Date.now() >= deadline) {\n break\n }\n // Re-evaluate node order each attempt so health changes are respected.\n // Pass api so nodes with an API-specific cooldown are deprioritized.\n const orderedNodes = rpcHealthTracker.getOrderedNodes(config.nodes, api)\n // Pick the healthiest untried node. If all tried, start a new round.\n let node = orderedNodes.find((n) => !triedInRound.has(n))\n if (!node) {\n triedInRound.clear()\n node = orderedNodes[0]\n }\n triedInRound.add(node)\n\n // Hedge eligibility for THIS attempt: opted in, the primary has a usable\n // latency profile for this exact method (so the hedge delay is grounded in\n // data — cold starts stay sequential), and healthy untried peers exist.\n let hedgePool: string[] = []\n if (\n config.resilience.hedge &&\n rpcHealthTracker.getUsableLatencyMs(node, method) !== undefined\n ) {\n hedgePool = orderedNodes\n .filter((n) => !triedInRound.has(n) && rpcHealthTracker.isNodeHealthy(n, api))\n .slice(0, 3)\n }\n\n if (hedgePool.length > 0) {\n try {\n // All health/budget recording happens inside the hedged attempt —\n // the catch below must NOT record again (unlike the sequential path).\n return await hedgedRpcAttempt({\n method,\n params,\n api,\n primary: node,\n hedgePool,\n callerTimeout: ceiling,\n explicitTimeout,\n deadlineAt: deadline,\n externalSignal: signal,\n onHedgeFired: (n) => triedInRound.add(n),\n validate\n })\n } catch (e: any) {\n if (e instanceof RPCError && !isNodeLevelRPCError(e.code, e.message)) {\n throw e\n }\n if (signal?.aborted) {\n throw e\n }\n lastError = e\n if (attempt < retry) {\n await jitterDelay()\n }\n continue\n }\n }\n\n const callStart = Date.now()\n try {\n const res = await jsonRPCCall(\n node,\n method,\n params,\n adaptiveAttemptTimeout(rpcHealthTracker, node, method, ceiling, explicitTimeout),\n false,\n signal\n )\n if (validate && !validate(res)) {\n // Well-formed envelope, impossible payload: a node fault the\n // HTTP/JSON-RPC layers cannot see. Count it against this node's API\n // health (never record a success or refill the hedge budget for a\n // lie) and fail over to the next node.\n rpcHealthTracker.recordDefectiveResponse(node, api)\n lastError = new Error(`[hive-tx] response validation failed for ${method} from ${node}`)\n if (attempt < retry) {\n await jitterDelay()\n }\n continue\n }\n rpcHealthTracker.recordSuccess(node, api, Date.now() - callStart, method)\n // An un-hedged success is what earns hedge budget back (see HedgeBudget).\n rpcHedgeBudget.refill()\n tryRecordHeadBlock(rpcHealthTracker, node, method, res)\n return res as T\n } catch (e: any) {\n // RPCErrors: distinguish node-level failures from genuine blockchain rejections.\n // Node-level errors (e.g. -32602 \"Unable to parse endpoint data\" from a sick\n // HAF/jussi backend) should failover; real rejections (bad params, missing\n // authority, etc.) propagate immediately.\n if (e instanceof RPCError) {\n if (!isNodeLevelRPCError(e.code, e.message)) {\n throw e\n }\n // Node-level RPC error — record failure and fall through to failover\n }\n // External abort — stop retrying immediately\n if (signal?.aborted) {\n throw e\n }\n recordError(rpcHealthTracker, node, e, api)\n // A genuinely slow failure (timeout/abort/slow-5xx) is also a latency signal so\n // a node that 200s-but-too-slow or aborts at the timeout is demoted by the\n // ranker, not only by the (transient) failure gate. Measured elapsed, never a\n // constant; recordSlowFailure ignores instant (down-node) failures.\n rpcHealthTracker.recordSlowFailure(node, Date.now() - callStart, method)\n lastError = e\n\n // Add jitter before trying next node\n if (attempt < retry) {\n await jitterDelay()\n }\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callRPC for broadcasts ──────────────────────────────────────\n\n/**\n * Broadcast-safe RPC call. Only retries on pre-connection errors where the\n * request definitively never reached the server (ECONNREFUSED, ENOTFOUND, etc.).\n * On timeouts, HTTP errors, or any ambiguous failure, throws immediately to\n * prevent double-broadcasting transactions.\n *\n * Tries each node once (no wrap-around) since broadcast retries are dangerous.\n *\n * @internal Used by Transaction.broadcast()\n */\nexport const callRPCBroadcast = async (\n method: string,\n params: any[] | object = [],\n timeout = config.broadcastTimeout,\n signal?: AbortSignal\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an array')\n }\n if (config.nodes.length === 0) {\n throw new Error('config.nodes is empty')\n }\n const api = apiOf(method)\n // Track which nodes we've already tried - broadcasts must never retry the same node\n const triedNodes = new Set()\n let lastError: any\n\n for (let attempt = 0; attempt < config.nodes.length; attempt++) {\n // Re-evaluate order each attempt so health changes are respected\n const orderedNodes = rpcHealthTracker.getOrderedNodes(config.nodes, api)\n const node = orderedNodes.find((n) => !triedNodes.has(n))\n if (!node) break\n triedNodes.add(node)\n if (signal?.aborted) {\n throw new Error('Aborted')\n }\n try {\n const res = await jsonRPCCall(node, method, params, timeout, false, signal)\n // Deliberately no latency sample for broadcasts: broadcast_transaction_synchronous\n // blocks for block inclusion (~1.5–3s+) regardless of the node's read speed, so\n // feeding it into the shared read EWMA would wrongly demote a fast node for reads.\n // The same nodes are profiled by callRPC read traffic, so a genuinely slow node is\n // still demoted there.\n rpcHealthTracker.recordSuccess(node, api)\n return res as T\n } catch (e: any) {\n // RPCErrors are valid blockchain rejections - never retry\n if (e instanceof RPCError) {\n throw e\n }\n if (signal?.aborted) {\n throw e\n }\n recordError(rpcHealthTracker, node, e, api)\n lastError = e\n\n // Broadcast safety: only fail over when the request is safe to re-send.\n // `broadcastOperations` signs the tx exactly once and `callRPCBroadcast`\n // reuses that signed payload across nodes, so any case where the next\n // node would dedupe by trx_id is fine. RPCErrors (real blockchain\n // rejections) propagate immediately — see isBroadcastSafeToRetry.\n if (!isBroadcastSafeToRetry(e)) {\n throw e\n }\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callREST ────────────────────────────────────────────────────\n\nconst apiMethods: Record = {\n balance: '/balance-api',\n hafah: '/hafah-api',\n hafbe: '/hafbe-api',\n hivemind: '/hivemind-api',\n hivesense: '/hivesense-api',\n reputation: '/reputation-api',\n 'nft-tracker': '/nft-tracker-api',\n hafsql: '/hafsql',\n status: '/status-api'\n}\n\n/**\n * Makes REST API calls to Hive blockchain REST endpoints with automatic retry and failover support.\n * Uses per-request retry counters, node health tracking, and timeout support.\n * Wraps around the node list to honor the full retry budget.\n *\n * @template Api - The REST API method type (e.g., 'balance', 'hafah', 'hivemind', etc.)\n * @template P - The endpoint path type for the specified API\n *\n * @param api - The REST API method name to call\n * @param endpoint - The specific endpoint path within the API\n * @param params - Optional parameters for path and query string replacement\n * @param timeout - Request timeout in milliseconds (default: config.timeout)\n * @param retry - Number of retry attempts before throwing an error (default:\n * config.retry). The wall-clock budget (`config.resilience.totalBudgetFactor`\n * × timeout) may end the failover walk before the retry count is exhausted.\n *\n * @returns Promise resolving to the API response data with proper typing\n * @throws Error if all retry attempts fail\n *\n * @example\n * ```typescript\n * import { callREST } from 'hive-tx'\n *\n * // Get account balance\n * const balance = await callREST('balance', '/accounts/{account-name}/balances', { \"account-name\": 'alice' })\n *\n * // Custom timeout and retry settings\n * const data = await callREST('status', '/status', undefined, 10_000, 3)\n * ```\n */\nexport async function callREST(\n api: APIMethods,\n endpoint: string,\n params?: Record,\n timeout?: number,\n retry = config.retry,\n signal?: AbortSignal\n): Promise {\n if (!Array.isArray(config.restNodes)) {\n throw new Error('config.restNodes is not an array')\n }\n if (config.restNodes.length === 0) {\n throw new Error('config.restNodes is empty')\n }\n // Same contract as callRPC: an explicit timeout argument is authoritative\n // (no adaptive shortening), and a wall-clock deadline bounds the total\n // failover walk when the whole pool is slow.\n const explicitTimeout = timeout !== undefined\n const ceiling = timeout ?? config.timeout\n const deadline = Date.now() + config.resilience.totalBudgetFactor * ceiling\n // Latency-profile key: api + endpoint TEMPLATE (pre-substitution, so the\n // cardinality is code-defined) — a cheap endpoint's baseline must not set\n // the deadline for a heavy one within the same REST api.\n const restProfileKey = `${api}:${endpoint}`\n // Per-API node override: an API served by only a subset of nodes (e.g.\n // hivesense) uses its own capable-host list so the small retry budget and\n // cold starts aren't wasted on nodes that 404/503 it. Any API without an\n // override (or with an empty one) falls back to the generic restNodes.\n const apiNodes =\n config.restNodesByApi?.[api]?.length\n ? config.restNodesByApi[api]!\n : config.restNodes\n const triedInRound = new Set()\n let lastError: any\n // Track whether the error was already recorded by the HTTP status handler\n let alreadyRecorded = false\n\n for (let attempt = 0; attempt <= retry; attempt++) {\n if (attempt > 0 && Date.now() >= deadline) {\n break\n }\n // Re-evaluate node order each attempt so health changes are respected.\n // Pass api so per-API cooldowns are respected.\n const orderedNodes = restHealthTracker.getOrderedNodes(apiNodes, api)\n let node = orderedNodes.find((n) => !triedInRound.has(n))\n if (!node) {\n triedInRound.clear()\n node = orderedNodes[0]\n }\n triedInRound.add(node)\n const baseUrl = node + apiMethods[api]\n let path = endpoint as string\n const paramObj = params || ({} as Record)\n const processedPathParams = new Set()\n\n // Replace path params ONLY\n Object.entries(paramObj).forEach(([key, value]) => {\n if (path.includes(`{${key}}`)) {\n path = path.replace(`{${key}}`, encodeURIComponent(String(value)))\n processedPathParams.add(key)\n }\n })\n const url = new URL(baseUrl + path)\n // Add ONLY remaining params as query (if any)\n Object.entries(paramObj).forEach(([key, value]) => {\n if (!processedPathParams.has(key)) {\n if (Array.isArray(value)) {\n value.forEach((v) => url.searchParams.append(key, String(v)))\n } else {\n url.searchParams.set(key, String(value))\n }\n }\n })\n\n if (signal?.aborted) {\n throw new Error('Aborted')\n }\n alreadyRecorded = false\n // Adaptive per-attempt timeout (see adaptiveAttemptTimeout): a profiled\n // REST node is abandoned at factor×EWMA instead of the full fixed window.\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(\n adaptiveAttemptTimeout(restHealthTracker, node, restProfileKey, ceiling, explicitTimeout)\n )\n const { signal: restSignal, cleanup: cleanupMerge } = mergeSignals(tSignal, signal)\n const restCleanup = () => { cleanupTimeout(); cleanupMerge() }\n const restCallStart = Date.now()\n try {\n const response = await fetch(url.toString(), {\n signal: restSignal,\n headers: serverIdentityHeaders()\n })\n if (response.status === 404) {\n throw new Error('HTTP 404 - Hint: can happen on wrong params')\n }\n if (response.status === 429) {\n // 0 (no usable Retry-After) → undefined → escalating backoff in recordRateLimit.\n restHealthTracker.recordRateLimit(\n node,\n parseRetryAfterMs(response.headers.get('Retry-After')) || undefined\n )\n alreadyRecorded = true\n throw new Error(`HTTP 429 Rate Limited by ${node}`)\n }\n if (response.status === 503) {\n restHealthTracker.recordFailure(node, api)\n alreadyRecorded = true\n throw new Error(`HTTP 503 Service Unavailable from ${node}`)\n }\n if (!response.ok) {\n restHealthTracker.recordFailure(node, api)\n alreadyRecorded = true\n throw new Error(`HTTP ${response.status} from ${node}`)\n }\n restHealthTracker.recordSuccess(node, api, Date.now() - restCallStart, restProfileKey)\n return response.json() as any\n } catch (e: any) {\n // 404 is not a node issue, don't failover\n if (e?.message?.includes('HTTP 404')) {\n throw e\n }\n // External abort (caller unmounted / React Query cancelled the request) is the\n // client's decision, NOT a node fault. Mirror callRPC: bail before recording any\n // failure or slow-latency sample so a healthy REST node (e.g. an own node) is never\n // demoted by routine navigation/cancellation.\n if (signal?.aborted) {\n throw e\n }\n // Only record if not already recorded by 429/503 handler above\n if (!alreadyRecorded) {\n restHealthTracker.recordFailure(node, api)\n }\n // A slow failure (timeout/abort/slow-5xx — e.g. an own node from a far region) is a\n // latency signal too, so it is demoted by the ranker, not only the failure gate.\n // Measured elapsed; recordSlowFailure floors at LATENCY_SLOW_FAILURE_MS so a fast\n // 404/429 or instant down-node failure is NOT mis-read as \"slow\".\n restHealthTracker.recordSlowFailure(node, Date.now() - restCallStart, restProfileKey)\n lastError = e\n\n if (attempt < retry) {\n await jitterDelay()\n }\n } finally {\n restCleanup()\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callWithQuorum ───────────────────────────────────────────────\n\n/**\n * Make a JSONRPC call with quorum. The method will cross-check the result\n * with `quorum` number of nodes before returning the result.\n * @param method - The API method name (e.g., 'condenser_api.get_accounts')\n * @param params - Parameters for the API method as array or object\n * @param quorum - Default: 2 (recommended)\n */\nexport const callWithQuorum = async (\n method: string,\n params: any[] | object = [],\n quorum = 2,\n signal?: AbortSignal\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an Array')\n }\n if (quorum > config.nodes.length) {\n throw new Error('quorum > config.nodes.length')\n }\n // We call random nodes for better security (Fisher-Yates shuffle)\n const shuffleNodes = (arr: string[]) => {\n const a = [...arr]\n for (let i = a.length - 1; i > 0; i--) {\n const j = Math.floor(Math.random() * (i + 1));\n [a[i], a[j]] = [a[j], a[i]]\n }\n return a\n }\n let allNodes = shuffleNodes(config.nodes)\n let currentBatchSize = Math.min(quorum, allNodes.length)\n let allResults: any[] = []\n while (currentBatchSize > 0 && allNodes.length > 0) {\n // Take next batch of nodes\n const batchNodes = allNodes.splice(0, currentBatchSize)\n const promises: Promise[] = []\n const batchResults: any[] = []\n // Launch batch calls in parallel\n for (let i = 0; i < batchNodes.length; i++) {\n promises.push(\n jsonRPCCall(batchNodes[i], method, params, undefined, true, signal)\n .then((data) => batchResults.push(data))\n .catch(() => {})\n )\n }\n await Promise.all(promises)\n allResults.push(...batchResults)\n // Check for consensus in successful results\n const consensusResult = findConsensus(allResults, quorum)\n if (consensusResult) {\n return consensusResult\n }\n // Prepare next batch\n currentBatchSize = Math.min(quorum, allNodes.length)\n if (currentBatchSize === 0) {\n throw new Error('No more nodes available.')\n }\n }\n throw new Error(\"Couldn't reach quorum.\")\n}\n\nfunction findConsensus(results: any[], quorum: number) {\n const resultGroups = new Map()\n for (const result of results) {\n const key = JSON.stringify(result)\n if (!resultGroups.has(key)) {\n resultGroups.set(key, [])\n }\n resultGroups.get(key)!.push(result)\n }\n const consensusGroup = Array.from(resultGroups.values()).find((group) => group.length >= quorum)\n return consensusGroup ? consensusGroup[0] : null\n}\n","import { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\nimport { PrivateKey } from './helpers/PrivateKey'\nimport {\n OperationName,\n OperationBody,\n TransactionType,\n TransactionStatus,\n BroadcastResult\n} from './types'\nimport { ByteBuffer } from './helpers/ByteBuffer'\nimport { Serializer } from './helpers/serializer'\nimport { sha256 } from '@noble/hashes/sha2.js'\nimport { config } from './config'\nimport { callRPC, callRPCBroadcast, RPCError } from './helpers/call'\nimport { DigestData } from './types'\nimport { sleep } from './helpers/sleep'\n\nconst chainId = hexToBytes(config.chain_id)\n\ninterface TransactionOptions {\n transaction?: TransactionType | Transaction\n /**\n * Transaction expiration in milliseconds (ms) - max 86400000 (24 hours)\n * @default 60_000\n */\n expiration?: number\n}\n\nexport class Transaction {\n transaction?: TransactionType\n\n expiration: number = 60_000\n\n private txId?: string\n\n constructor(options?: TransactionOptions) {\n if (options?.transaction) {\n if (options.transaction instanceof Transaction) {\n this.transaction = options.transaction.transaction\n this.expiration = options.transaction.expiration\n } else {\n this.transaction = options.transaction\n }\n // A transaction built externally (e.g. from a hive-uri signing request)\n // may omit the `signatures` array. sign(), addSignature() and broadcast()\n // all assume it exists, so normalize it here to avoid\n // \"Cannot read property 'push' of undefined\" on sign.\n if (this.transaction && !Array.isArray(this.transaction.signatures)) {\n this.transaction.signatures = []\n }\n this.txId = this.digest().txId\n }\n if (options?.expiration) {\n this.expiration = options.expiration\n }\n }\n\n /**\n * Adds an operation to the transaction. If no transaction exists, creates one first.\n * @template O Operation name type for type safety\n * @param operationName The name/type of the operation to add (e.g., 'transfer', 'vote', 'comment')\n * @param operationBody The operation data/body for the specified operation type\n * @returns Promise that resolves when the operation is added\n * @throws Error if transaction creation fails or global properties cannot be retrieved\n */\n async addOperation(\n operationName: O,\n operationBody: OperationBody\n ): Promise {\n if (!this.transaction) {\n await this.createTransaction(this.expiration)\n }\n this.transaction!.operations.push([operationName, operationBody])\n }\n\n /**\n * Signs the transaction with the provided key(s), supporting both single and multi-signature transactions.\n * For multi-signature, you can sign with all keys at once or sign individually by calling this method multiple times.\n * @param keys Single PrivateKey or array of PrivateKeys to sign the transaction with\n * @returns The signed transaction\n * @throws Error if no transaction exists to sign\n */\n sign(keys: PrivateKey | PrivateKey[]): TransactionType {\n if (!this.transaction) {\n throw new Error('First create a transaction by .addOperation()')\n }\n if (this.transaction) {\n const { digest, txId } = this.digest()\n if (!Array.isArray(keys)) {\n keys = [keys]\n }\n for (const key of keys) {\n const signature = key.sign(digest)\n this.transaction.signatures.push(signature.customToString())\n }\n this.txId = txId\n return this.transaction\n } else {\n throw new Error('No transaction to sign')\n }\n }\n\n /**\n * Broadcasts the signed transaction to the Hive network.\n * Automatically handles retries and duplicate transaction detection.\n * @param checkStatus By default (false) the transaction is not guaranteed to be included in a block.\n * For example the transaction can expire while waiting in mempool.\n * If you pass true here, the function will wait for the transaction to be either included or dropped\n * before returning a result.\n * @returns Promise resolving to broadcast result\n * @throws Error if no transaction exists or transaction is not signed or transaction got rejected\n */\n async broadcast(checkStatus = false): Promise {\n if (!this.transaction) {\n throw new Error(\n 'Attempted to broadcast an empty transaction. Add operations by .addOperation()'\n )\n }\n if (this.transaction.signatures.length === 0) {\n throw new Error(\n 'Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)'\n )\n }\n try {\n await callRPCBroadcast('condenser_api.broadcast_transaction', [this.transaction])\n } catch (e) {\n if (e instanceof RPCError && e.message.includes('Duplicate transaction check failed')) {\n // ignore duplicate transaction error as this can happen when we retry the broadcast\n } else {\n throw e\n }\n }\n if (!this.txId) {\n this.txId = this.digest().txId\n }\n if (!checkStatus) {\n return { tx_id: this.txId, status: 'unknown' }\n }\n // Poll until the transaction reaches a final state or max attempts exceeded.\n // With 60 attempts: delays grow from 1.3s to 19s, total wait ~10 minutes.\n const maxPollAttempts = 60\n await sleep(1000)\n let status = await this.checkStatus()\n let i = 1\n while (\n status?.status !== 'within_irreversible_block' &&\n status?.status !== 'expired_irreversible' &&\n status?.status !== 'too_old' &&\n i < maxPollAttempts\n ) {\n await sleep(1000 + i * 300)\n status = await this.checkStatus()\n i++\n }\n return {\n tx_id: this.txId,\n status: (status?.status ?? 'unknown') as BroadcastResult['status']\n }\n }\n\n /**\n * Returns the transaction digest containing the transaction ID and hash.\n * The digest can be used to verify signatures and for transaction identification.\n * @returns DigestData containing transaction ID and hash\n * @throws Error if no transaction exists\n */\n digest(): DigestData {\n if (!this.transaction) {\n throw new Error('First create a transaction by .addOperation()')\n }\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n const temp = { ...this.transaction }\n try {\n Serializer.Transaction(buffer, temp)\n } catch (cause) {\n throw new Error('Unable to serialize transaction: ' + cause)\n }\n buffer.flip()\n const transactionData = new Uint8Array(buffer.toBuffer())\n const txId = bytesToHex(sha256(transactionData)).slice(0, 40)\n const digest = sha256(new Uint8Array([...chainId, ...transactionData]))\n return { digest, txId }\n }\n\n /**\n * Adds a signature to an already created transaction. Useful when signing with external tools.\n * Multiple signatures can be added one at a time for multi-signature transactions.\n * @param signature The signature string in hex format (must be exactly 130 characters)\n * @returns The transaction with the added signature\n * @throws Error if no transaction exists or signature format is invalid\n */\n addSignature(signature: string): TransactionType {\n if (!this.transaction) {\n throw new Error('First create a transaction by .create(operations)')\n }\n if (typeof signature !== 'string') {\n throw new Error('Signature must be string')\n }\n if (signature.length !== 130) {\n throw new Error('Signature must be 130 characters long')\n }\n this.transaction.signatures.push(signature)\n return this.transaction\n }\n\n /** Get status of this transaction. Usually called internally after broadcasting. */\n async checkStatus(): Promise {\n if (!this.txId) {\n this.txId = this.digest().txId\n }\n return callRPC('transaction_status_api.find_transaction', {\n transaction_id: this.txId,\n expiration: this.transaction?.expiration\n })\n }\n\n /**\n * Creates the transaction structure and initializes it with blockchain data.\n * Retrieves current head block information and sets up reference block data.\n * @private\n * @param expiration Transaction expiration in milliseconds\n */\n private createTransaction = async (expiration: number) => {\n const props = await callRPC('condenser_api.get_dynamic_global_properties', [])\n const bytes = hexToBytes(props.head_block_id)\n const refBlockPrefix = Number(new Uint32Array(bytes.buffer, bytes.byteOffset + 4, 1)[0])\n const expirationIso = new Date(Date.now() + expiration).toISOString().slice(0, -5)\n this.transaction = {\n expiration: expirationIso,\n extensions: [],\n operations: [],\n ref_block_num: props.head_block_number & 0xffff,\n ref_block_prefix: refBlockPrefix,\n signatures: []\n }\n }\n}\n","import bs58 from 'bs58'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { sha256, sha512 } from '@noble/hashes/sha2.js'\nimport { PublicKey } from './PublicKey'\nimport { Signature } from './Signature'\nimport { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\nexport type KeyRole = 'owner' | 'active' | 'posting' | 'memo'\n\nconst NETWORK_ID = new Uint8Array([0x80])\n\n/**\n * ECDSA (secp256k1) private key for signing and encryption operations.\n * Handles key generation, derivation from seeds/passwords, and cryptographic operations.\n *\n * All private keys are stored internally as Uint8Array and can be converted to/from\n * Wallet Import Format (WIF) strings for storage and transmission.\n *\n * @example\n * ```typescript\n * // From WIF string\n * const key = PrivateKey.from('5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw')\n *\n * // Generate random key\n * const randomKey = PrivateKey.randomKey()\n *\n * // From username and password\n * const loginKey = PrivateKey.fromLogin('username', 'password')\n *\n * // Sign a message\n * const signature = key.sign(someHash)\n *\n * // Get public key\n * const pubKey = key.createPublic()\n * ```\n */\nexport class PrivateKey {\n key: Uint8Array\n\n constructor(key: Uint8Array) {\n this.key = key\n try {\n secp256k1.getPublicKey(key)\n } catch (e) {\n throw new Error('invalid private key')\n }\n }\n\n /**\n * Creates a PrivateKey instance from a WIF string or raw Uint8Array.\n * Automatically detects the input type and uses the appropriate method.\n *\n * @param value - WIF formatted string or raw 32-byte key as Uint8Array\n * @returns New PrivateKey instance\n * @throws Error if the key format is invalid\n */\n static from(value: string | Uint8Array): PrivateKey {\n if (typeof value === 'string') {\n return PrivateKey.fromString(value)\n } else {\n return new PrivateKey(value)\n }\n }\n\n /**\n * Creates a PrivateKey from a Wallet Import Format (WIF) encoded string.\n *\n * @param wif - WIF encoded private key string\n * @returns New PrivateKey instance\n * @throws Error if WIF format is invalid or checksum fails\n */\n static fromString(wif: string): PrivateKey {\n return new PrivateKey(decodePrivate(wif).subarray(1))\n }\n\n /**\n * Creates a PrivateKey from a seed string or Uint8Array.\n * The seed is hashed with SHA256 to produce the private key.\n *\n * @param seed - Seed string (converted to bytes) or raw byte array\n * @returns New PrivateKey instance derived from seed\n */\n static fromSeed(seed: string | Uint8Array): PrivateKey {\n if (typeof seed === 'string') {\n const isHex = /^[0-9a-fA-F]+$/.test(seed)\n if (isHex) {\n seed = hexToBytes(seed)\n } else {\n // Convert non-hex string to Uint8Array using UTF-8 encoding\n // Avoid top-level TextEncoder — not available on all runtimes (e.g. Hermes)\n const bytes: number[] = []\n for (let i = 0; i < seed.length; i++) {\n let c = seed.charCodeAt(i)\n if (c < 0x80) {\n bytes.push(c)\n } else if (c < 0x800) {\n bytes.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f))\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < seed.length) {\n const next = seed.charCodeAt(++i)\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff)\n bytes.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n } else {\n bytes.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n }\n }\n seed = new Uint8Array(bytes)\n }\n }\n return new PrivateKey(sha256(seed))\n }\n\n /**\n * Derives a PrivateKey from username, password, and role using Hive's key derivation scheme.\n * This generates the same keys that the Hive wallet uses for login-based keys.\n *\n * @param username - Hive username\n * @param password - Master password (or seed phrase)\n * @param role - Key role ('owner', 'active', 'posting', 'memo')\n * @returns New PrivateKey instance for the specified role\n */\n static fromLogin(username: string, password: string, role: KeyRole = 'active'): PrivateKey {\n const seed = username + role + password\n return PrivateKey.fromSeed(seed)\n }\n\n /**\n * Signs a 32-byte message hash using ECDSA and returns a recoverable signature.\n * The signature includes recovery information to allow public key recovery.\n *\n * @param message - 32-byte message hash to sign (Uint8Array)\n * @returns Signature object containing the signature data\n */\n sign(message: Uint8Array): Signature {\n const rv = secp256k1.sign(message, this.key, {\n extraEntropy: true,\n format: 'recovered',\n prehash: false // prehash does sha256 on the message\n })\n const recovery = parseInt(bytesToHex(rv.subarray(0, 1)), 16)\n return Signature.from((recovery + 31).toString(16) + bytesToHex(rv.subarray(1)))\n }\n\n /**\n * Derives the corresponding public key for this private key.\n *\n * @param prefix - Optional address prefix (defaults to config.address_prefix)\n * @returns PublicKey instance derived from this private key\n */\n createPublic(prefix?: string): PublicKey {\n return new PublicKey(secp256k1.getPublicKey(this.key), prefix)\n }\n\n /**\n * Returns the private key as a Wallet Import Format (WIF) encoded string.\n * This includes network ID and checksum for safe storage/transmission.\n *\n * @returns WIF encoded private key string\n */\n toString(): string {\n return encodePrivate(new Uint8Array([...NETWORK_ID, ...this.key]))\n }\n\n /**\n * Returns a masked representation of the private key for debugging/logging.\n * Shows only the first and last 6 characters to avoid accidental exposure.\n * Use toString() to get the full key for export/serialization.\n *\n * @returns Masked key representation for safe logging\n */\n inspect(): string {\n const key = this.toString()\n return `PrivateKey: ${key.slice(0, 6)}...${key.slice(-6)}`\n }\n\n /**\n * Computes a shared secret using ECDH key exchange for memo encryption.\n * The shared secret is used as a key for AES encryption/decryption.\n *\n * @param publicKey - Other party's public key\n * @returns 64-byte shared secret as Uint8Array\n */\n getSharedSecret(publicKey: PublicKey): Uint8Array {\n const s = secp256k1.getSharedSecret(this.key, publicKey.key)\n // strip the parity byte\n return sha512(s.subarray(1))\n }\n\n /**\n * Generates a new cryptographically secure random private key.\n * Uses the secp256k1 key generation algorithm for security.\n * This method may take up to 250ms due to entropy collection.\n *\n * @returns New randomly generated PrivateKey instance\n */\n static randomKey(): PrivateKey {\n return new PrivateKey(secp256k1.keygen().secretKey)\n }\n}\n\nconst doubleSha256 = (input: Uint8Array) => {\n const dbl = sha256(sha256(input))\n return dbl\n}\n\n/** Encode bs58+doubleSha256-checksum private key. */\nconst encodePrivate = (key: Uint8Array) => {\n // assert.equal(key.readUInt8(0), 0x80, 'private key network id mismatch')\n const checksum = doubleSha256(key)\n return bs58.encode(new Uint8Array([...key, ...checksum.slice(0, 4)]))\n}\n\n/** Decode bs58+doubleSha256-checksum encoded private key. */\nconst decodePrivate = (encodedKey: string) => {\n const buffer = bs58.decode(encodedKey)\n if (!isUint8ArrayEqual(buffer.slice(0, 1), NETWORK_ID)) {\n throw new Error('Private key network id mismatch')\n }\n const checksum = buffer.slice(-4)\n const key = buffer.slice(0, -4)\n const checksumVerify = doubleSha256(key).slice(0, 4)\n if (!isUint8ArrayEqual(checksum, checksumVerify)) {\n throw new Error('Private key checksum mismatch')\n }\n return key\n}\n\nconst isUint8ArrayEqual = (a: Uint8Array, b: Uint8Array) => {\n if (a === b) return true\n if (a.byteLength !== b.byteLength) return false\n const len = a.byteLength\n let i = 0\n while (i < len && a[i] === b[i]) i++\n return i === len\n}\n","import { ByteBuffer } from './ByteBuffer'\nimport { cbc as AESCBC } from '@noble/ciphers/aes.js'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { sha256, sha512 } from '@noble/hashes/sha2.js'\nimport { PrivateKey } from './PrivateKey'\nimport { PublicKey } from './PublicKey'\n\nexport const encrypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n message: Uint8Array,\n nonce: bigint = uniqueNonce()\n) => crypt(privateKey, publicKey, nonce, message)\n\nexport const decrypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n nonce: bigint,\n message: Uint8Array,\n checksum: number\n): Uint8Array => {\n const d = crypt(privateKey, publicKey, nonce, message, checksum)\n return d.message\n}\n\n/**\n * @arg message - Encrypted or plain text message (see checksum)\n * @arg checksum - shared secret checksum (null to encrypt, non-null to decrypt)\n */\nconst crypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n nonce: bigint,\n message: Uint8Array,\n checksum?: number\n): { nonce: bigint; message: Uint8Array; checksum: number } => {\n const nonceL = nonce\n const S = privateKey.getSharedSecret(publicKey)\n let ebuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n ebuf.writeUint64(nonceL)\n ebuf.append(S)\n ebuf.flip()\n\n const encryptionKey = sha512(new Uint8Array(ebuf.toBuffer()))\n const iv = encryptionKey.subarray(32, 48)\n const tag = encryptionKey.subarray(0, 32)\n\n // check if first 64 bit of sha256 hash treated as uint64_t truncated to 32 bits.\n const check = sha256(encryptionKey).subarray(0, 4)\n const cbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n cbuf.append(check)\n cbuf.flip()\n const check32 = cbuf.readUint32()\n if (checksum !== undefined) {\n if (check32 !== checksum) {\n throw new Error('Invalid key')\n }\n message = cryptoJsDecrypt(message, tag, iv)\n } else {\n message = cryptoJsEncrypt(message, tag, iv)\n }\n return { nonce: nonceL, message, checksum: check32 }\n}\n\n/**\n * This method does not use a checksum, the returned data must be validated some other way.\n * @arg {string|Uint8Array} ciphertext - binary format\n * @return {Uint8Array} the decrypted message\n */\nconst cryptoJsDecrypt = (message: Uint8Array, tag: Uint8Array, iv: Uint8Array): Uint8Array => {\n let messageBuffer = message\n const decipher = AESCBC(tag, iv)\n messageBuffer = decipher.decrypt(messageBuffer)\n return messageBuffer\n}\n\n/**\n * This method does not use a checksum, the returned data must be validated some other way.\n * @arg {string|Uint8Array} plaintext - binary format\n * @return {Uint8Array} binary\n */\nexport const cryptoJsEncrypt = (\n message: Uint8Array,\n tag: Uint8Array,\n iv: Uint8Array\n): Uint8Array => {\n let messageBuffer = message\n const cipher = AESCBC(tag, iv)\n messageBuffer = cipher.encrypt(messageBuffer)\n return messageBuffer\n}\n\nlet uniqueNonceEntropy: number | null = null\n\nconst uniqueNonce = (): bigint => {\n if (uniqueNonceEntropy === null) {\n const randomPrivateKey = secp256k1.utils.randomSecretKey()\n uniqueNonceEntropy = (randomPrivateKey[0] << 8) | randomPrivateKey[1]\n }\n let long = BigInt(Date.now())\n const entropy = ++uniqueNonceEntropy % 0x10000\n long = (long << BigInt(16)) | BigInt(entropy)\n return long\n}\n","import { ByteBuffer } from './ByteBuffer'\nimport { PublicKey } from './PublicKey'\n\nconst PublicKeyDeserializer = (buf: ByteBuffer) => {\n const c = fixedBuf(buf, 33)\n return new PublicKey(c)\n}\n\nconst UInt64Deserializer = (b: ByteBuffer) => {\n return b.readUint64()\n}\n\nconst UInt32Deserializer = (b: ByteBuffer) => {\n return b.readUint32()\n}\n\nconst BinaryDeserializer = (b: ByteBuffer) => {\n const len = b.readVarint32()\n const bCopy = b.copy(b.offset, b.offset + len)\n b.skip(len)\n return new Uint8Array(bCopy.toBuffer())\n}\n\nconst BufferDeserializer = (keyDeserializers: any) => (buf: Uint8Array) => {\n const obj: any = {}\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n buffer.append(buf)\n buffer.flip()\n for (const [key, deserializer] of keyDeserializers) {\n try {\n obj[key] = deserializer(buffer)\n } catch (error: any) {\n error.message = `${key}: ${error.message}`\n throw error\n }\n }\n return obj\n}\n\nfunction fixedBuf(b: ByteBuffer, len: number) {\n if (!b) {\n throw Error('No buffer found on first parameter')\n } else {\n const bCopy = b.copy(b.offset, b.offset + len)\n b.skip(len)\n return new Uint8Array(bCopy.toBuffer())\n }\n}\n\nconst EncryptedMemoDeserializer = BufferDeserializer([\n ['from', PublicKeyDeserializer],\n ['to', PublicKeyDeserializer],\n ['nonce', UInt64Deserializer],\n ['check', UInt32Deserializer],\n ['encrypted', BinaryDeserializer]\n])\n\nexport const Deserializer = {\n Memo: EncryptedMemoDeserializer\n}\n","import bs58 from 'bs58'\nimport { ByteBuffer } from './ByteBuffer'\nimport { Serializer } from './serializer'\nimport { PrivateKey } from './PrivateKey'\nimport * as Aes from './aes'\nimport { PublicKey } from './PublicKey'\nimport { Deserializer } from './deserializer'\n\nexport type Memo = {\n /**\n * Encrypts a memo for secure private messaging\n */\n encode(\n privateKey: string | PrivateKey,\n publicKey: string | PublicKey,\n memo: string,\n testNonce?: any\n ): string\n\n /**\n * Decrypts a memo message\n */\n decode(privateKey: string | PrivateKey, memo: string): string\n}\n\n/**\n * Encodes a memo using AES encryption for secure private messaging on Hive.\n * Messages must start with '#' to be encrypted. Plain text messages are returned unchanged.\n *\n * @param privateKey - Sender's private memo key (string WIF format or PrivateKey instance)\n * @param publicKey - Recipient's public memo key (string or PublicKey instance)\n * @param memo - Message to encrypt (must start with '#' for encryption)\n * @param testNonce - Optional nonce for testing (advanced usage)\n * @returns Encrypted memo string prefixed with '#'\n * @throws Error if encryption is not supported in current environment\n */\nconst encode = (\n privateKey: string | PrivateKey,\n publicKey: string | PublicKey,\n memo: string,\n testNonce?: any\n): string => {\n if (!memo.startsWith('#')) {\n return memo\n }\n memo = memo.substring(1)\n checkEncryption()\n privateKey = toPrivateObj(privateKey)\n publicKey = toPublicObj(publicKey)\n const mbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n mbuf.writeVString(memo)\n const memoBuffer = new Uint8Array(mbuf.copy(0, mbuf.offset).toBuffer())\n const { nonce, message, checksum } = Aes.encrypt(privateKey, publicKey, memoBuffer, testNonce)\n const mbuf2 = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n Serializer.Memo(mbuf2, {\n check: checksum,\n encrypted: message,\n from: privateKey.createPublic(),\n nonce,\n to: publicKey\n })\n mbuf2.flip()\n const data = new Uint8Array(mbuf2.toBuffer())\n return '#' + bs58.encode(data)\n}\n\n/**\n * Decrypts an encrypted memo using AES decryption.\n * Messages must start with '#' to be decrypted. Plain text messages are returned unchanged.\n *\n * @param privateKey - Recipient's private memo key (string WIF format or PrivateKey instance)\n * @param memo - Encrypted memo string (must start with '#' for decryption)\n * @returns Decrypted memo content with '#' prefix\n * @throws Error if decryption fails or encryption not supported in current environment\n */\nconst decode = (privateKey: string | PrivateKey, memo: string): string => {\n if (!memo.startsWith('#')) {\n return memo\n }\n memo = memo.substring(1)\n checkEncryption()\n privateKey = toPrivateObj(privateKey)\n // memo = bs58.decode(memo)\n let memoBuffer = Deserializer.Memo(bs58.decode(memo))\n const { from, to, nonce, check, encrypted } = memoBuffer\n const pubkey = privateKey.createPublic().toString()\n const otherpub =\n pubkey === new PublicKey(from.key).toString() ? new PublicKey(to.key) : new PublicKey(from.key)\n memoBuffer = Aes.decrypt(privateKey, otherpub, nonce, encrypted, check)\n const mbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n mbuf.append(memoBuffer)\n mbuf.flip()\n return '#' + mbuf.readVString()\n}\n\nlet encodeTest: boolean | undefined\nconst checkEncryption = () => {\n if (encodeTest === undefined) {\n let plaintext\n encodeTest = true // prevent infinate looping\n try {\n const wif = '5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw'\n const pubkey = 'STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA'\n const cyphertext = encode(wif, pubkey, '#memo爱')\n plaintext = decode(wif, cyphertext)\n } finally {\n encodeTest = plaintext === '#memo爱'\n }\n }\n if (encodeTest === false) {\n throw new Error('This environment does not support encryption.')\n }\n}\n\nconst toPrivateObj = (o: string | PrivateKey): PrivateKey => {\n if (typeof o === 'string') {\n return PrivateKey.fromString(o)\n } else {\n return o\n }\n}\nconst toPublicObj = (o: string | PublicKey): PublicKey => {\n if (typeof o === 'string') {\n return PublicKey.fromString(o)\n } else {\n return o\n }\n}\n\n/**\n * Memo utilities for encrypting and decrypting private messages between Hive users.\n * Uses AES encryption with ECDH key exchange for secure communication.\n *\n * Messages must start with '#' to be encrypted/decrypted.\n * Plain text messages (without '#') are returned unchanged.\n *\n * @example\n * ```typescript\n * import { Memo, PrivateKey, PublicKey } from 'hive-tx'\n *\n * // Encrypt a message\n * const encrypted = Memo.encode(senderPrivateKey, recipientPublicKey, '#Hello World')\n *\n * // Decrypt a message\n * const decrypted = Memo.decode(recipientPrivateKey, encrypted)\n * console.log(decrypted) // '#Hello World'\n * ```\n */\nexport const Memo = {\n decode,\n encode\n}\n","import { Serializer } from './serializer'\nimport { ByteBuffer } from './ByteBuffer'\nimport { PublicKey } from './PublicKey'\nimport { bytesToHex } from '@noble/hashes/utils.js'\n\nexport interface WitnessProps {\n account_creation_fee?: string\n account_subsidy_budget?: number\n account_subsidy_decay?: number\n key: PublicKey | string\n maximum_block_size?: number\n new_signing_key?: PublicKey | string | null\n hbd_exchange_rate?: { base: string; quote: string }\n hbd_interest_rate?: number\n url?: string\n}\n\n/** Return null for a valid username */\nexport const validateUsername = (username: string): null | string => {\n let suffix = 'Account name should '\n if (!username) {\n return suffix + 'not be empty.'\n }\n const length = username.length\n if (length < 3) {\n return suffix + 'be longer.'\n }\n if (length > 16) {\n return suffix + 'be shorter.'\n }\n if (/\\./.test(username)) {\n suffix = 'Each account segment should '\n }\n const ref = username.split('.')\n const len = ref.length\n for (let i = 0; i < len; i++) {\n const label = ref[i]\n if (!/^[a-z]/.test(label)) {\n return suffix + 'start with a lowercase letter.'\n }\n if (!/^[a-z0-9-]*$/.test(label)) {\n return suffix + 'have only lowercase letters, digits, or dashes.'\n }\n if (!/[a-z0-9]$/.test(label)) {\n return suffix + 'end with a lowercase letter or digit.'\n }\n if (label.length < 3) {\n return suffix + 'be longer.'\n }\n }\n return null\n}\n\nexport const operations = {\n vote: 0,\n comment: 1,\n transfer: 2,\n transfer_to_vesting: 3,\n withdraw_vesting: 4,\n limit_order_create: 5,\n limit_order_cancel: 6,\n feed_publish: 7,\n convert: 8,\n account_create: 9,\n account_update: 10,\n witness_update: 11,\n account_witness_vote: 12,\n account_witness_proxy: 13,\n pow: 14,\n custom: 15,\n report_over_production: 16,\n delete_comment: 17,\n custom_json: 18,\n comment_options: 19,\n set_withdraw_vesting_route: 20,\n limit_order_create2: 21,\n claim_account: 22,\n create_claimed_account: 23,\n request_account_recovery: 24,\n recover_account: 25,\n change_recovery_account: 26,\n escrow_transfer: 27,\n escrow_dispute: 28,\n escrow_release: 29,\n pow2: 30,\n escrow_approve: 31,\n transfer_to_savings: 32,\n transfer_from_savings: 33,\n cancel_transfer_from_savings: 34,\n custom_binary: 35,\n decline_voting_rights: 36,\n reset_account: 37,\n set_reset_account: 38,\n claim_reward_balance: 39,\n delegate_vesting_shares: 40,\n account_create_with_delegation: 41,\n witness_set_properties: 42,\n account_update2: 43,\n create_proposal: 44,\n update_proposal_votes: 45,\n remove_proposal: 46,\n update_proposal: 47,\n collateralized_convert: 48,\n recurrent_transfer: 49,\n // virtual ops\n fill_convert_request: 50,\n author_reward: 51,\n curation_reward: 52,\n comment_reward: 53,\n liquidity_reward: 54,\n interest: 55,\n fill_vesting_withdraw: 56,\n fill_order: 57,\n shutdown_witness: 58,\n fill_transfer_from_savings: 59,\n hardfork: 60,\n comment_payout_update: 61,\n return_vesting_delegation: 62,\n comment_benefactor_reward: 63,\n producer_reward: 64,\n clear_null_account_balance: 65,\n proposal_pay: 66,\n sps_fund: 67,\n hardfork_hive: 68,\n hardfork_hive_restore: 69,\n delayed_voting: 70,\n consolidate_treasury_balance: 71,\n effective_comment_vote: 72,\n ineffective_delete_comment: 73,\n sps_convert: 74,\n expired_account_notification: 75,\n changed_recovery_account: 76,\n transfer_to_vesting_completed: 77,\n pow_reward: 78,\n vesting_shares_split: 79,\n account_created: 80,\n fill_collateralized_convert_request: 81,\n system_warning: 82,\n fill_recurrent_transfer: 83,\n failed_recurrent_transfer: 84,\n limit_order_cancelled: 85,\n producer_missed: 86,\n proposal_fee: 87,\n collateralized_convert_immediate_conversion: 88,\n escrow_approved: 89,\n escrow_rejected: 90,\n proxy_cleared: 91,\n declined_voting_rights: 92\n}\n\n/**\n * Make bitmask filter to be used with get_account_history call\n */\nexport const makeBitMaskFilter = (allowedOperations: number[]): [string | null, string | null] => {\n return allowedOperations\n .reduce(reduceFunction, [BigInt(0), BigInt(0)])\n .map((value: bigint) => (value !== BigInt(0) ? value.toString() : null)) as [string | null, string | null]\n}\nconst reduceFunction = (\n [low, high]: [bigint, bigint],\n allowedOperation: number\n): [bigint, bigint] => {\n if (allowedOperation < 64) {\n return [low | (BigInt(1) << BigInt(allowedOperation)), high]\n } else {\n return [low, high | (BigInt(1) << BigInt(allowedOperation - 64))]\n }\n}\n\nexport const buildWitnessSetProperties = (\n owner: string,\n props: WitnessProps\n): ['witness_set_properties', { extensions: never[]; owner: string; props: any }] => {\n const data = {\n extensions: [],\n owner,\n props: []\n }\n for (const key of Object.keys(props)) {\n if ((props as any)[key] === undefined) continue\n let type\n switch (key) {\n case 'key':\n case 'new_signing_key':\n type = Serializer.PublicKey\n break\n case 'account_subsidy_budget':\n case 'account_subsidy_decay':\n case 'maximum_block_size':\n type = Serializer.UInt32\n break\n case 'hbd_interest_rate':\n type = Serializer.UInt16\n break\n case 'url':\n type = Serializer.String\n break\n case 'hbd_exchange_rate':\n type = Serializer.Price\n break\n case 'account_creation_fee':\n type = Serializer.Asset\n break\n default:\n throw new Error(`Unknown witness prop: ${key}`)\n }\n data.props.push([key, serialize(type, props[key])])\n }\n data.props.sort((a: any, b: any) => a[0].localeCompare(b[0]))\n return ['witness_set_properties', data]\n}\n\nconst serialize = (serializer: any, data: any) => {\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n serializer(buffer, data)\n buffer.flip()\n // `props` values must be hex\n return bytesToHex(new Uint8Array(buffer.toBuffer()))\n}\n","/**\n * Re-exports hive-tx APIs and provides helper functions that bridge\n * API differences from the legacy dhive library.\n */\n\nimport {\n PrivateKey,\n Transaction,\n callRPCBroadcast,\n type BroadcastResult,\n} from \"../../hive-tx\";\nimport type { Operation, OperationName, OperationBody } from \"../../hive-tx\";\nimport { sha256 as nobleSha256 } from \"@noble/hashes/sha2.js\";\n\n// ── Re-exports ─────────────────────────────────────────────────────────────\n\nexport {\n Transaction as HiveTxTransaction,\n PrivateKey,\n PublicKey,\n Signature,\n Memo,\n config as hiveTxConfig,\n callRPC,\n callRPCBroadcast,\n callREST,\n callWithQuorum,\n utils as hiveTxUtils,\n} from \"../../hive-tx\";\n\nexport type {\n Operation,\n OperationName,\n OperationBody,\n AssetSymbol,\n BroadcastResult,\n AccountCreateOperation,\n CustomJsonOperation,\n // Referenced in ConfigManager.setResilience's public signature — must be\n // nameable from the main entry, not only from @ecency/sdk/hive.\n ResilienceOptions,\n} from \"../../hive-tx\";\n\n// ── Compat types (matching dhive shapes used throughout the codebase) ──────\n\n/** Compatible with dhive's TransactionConfirmation from broadcast_transaction_synchronous */\nexport interface TransactionConfirmation {\n id: string;\n block_num: number;\n trx_num: number;\n expired: boolean;\n}\n\n/** Authority role type used in key management */\nexport type AuthorityType = \"owner\" | \"active\" | \"posting\" | \"memo\";\n\n/** SMT asset format (NAI representation) used in transaction history */\nexport interface SMTAsset {\n amount: string;\n precision: number;\n nai: string;\n}\n\n/** RC account data from rc_api.find_rc_accounts */\nexport interface RCAccount {\n account: string;\n rc_manabar: {\n current_mana: string | number;\n last_update_time: number;\n };\n max_rc: string | number;\n max_rc_creation_adjustment: {\n amount: string;\n precision: number;\n nai: string;\n };\n delegated_rc: number;\n received_delegated_rc: number;\n}\n\n// ── Helpers ────────────────────────────────────────────────────────────────\n\n/**\n * Compute SHA-256 hash of a string or Uint8Array.\n * Drop-in replacement for dhive's `cryptoUtils.sha256()`.\n */\nexport function sha256(input: string | Uint8Array): Uint8Array {\n let data: Uint8Array;\n if (typeof input === \"string\") {\n // Inline UTF-8 encode — avoids TextEncoder which is unavailable on some\n // runtimes (React Native / Hermes).\n const bytes: number[] = [];\n for (let i = 0; i < input.length; i++) {\n let c = input.charCodeAt(i);\n if (c < 0x80) {\n bytes.push(c);\n } else if (c < 0x800) {\n bytes.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f));\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < input.length) {\n const next = input.charCodeAt(++i);\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff);\n bytes.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f));\n } else {\n bytes.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f));\n }\n }\n data = new Uint8Array(bytes);\n } else {\n data = input;\n }\n return nobleSha256(data);\n}\n\n/** Check if a string is a valid WIF-encoded private key. */\nexport function isWif(key: string): boolean {\n try {\n PrivateKey.fromString(key);\n return true;\n } catch {\n return false;\n }\n}\n\n/**\n * Sign and broadcast operations, returning a dhive-compatible TransactionConfirmation.\n *\n * Uses broadcast_transaction_synchronous so the response includes block_num/trx_num,\n * matching the shape that the rest of the codebase expects from dhive's\n * `client.broadcast.sendOperations()`.\n *\n * @deprecated Prefer {@link broadcastOperationsAsync} (the default for\n * `useBroadcastMutation`); poll `transaction_status_api` if you need block\n * confirmation. Kept only for explicit `broadcastMode: 'sync'` opt-ins.\n */\nexport async function broadcastOperations(\n ops: Operation[],\n key: PrivateKey\n): Promise {\n const tx = new Transaction();\n for (const op of ops) {\n await tx.addOperation(\n op[0] as OperationName,\n op[1] as OperationBody\n );\n }\n tx.sign(key);\n return callRPCBroadcast(\"condenser_api.broadcast_transaction_synchronous\", [\n tx.transaction,\n ]);\n}\n\n/**\n * Sign and broadcast operations without waiting for block inclusion.\n *\n * Uses broadcast_transaction which returns as soon as the node accepts the\n * transaction into its mempool. Transport and RPC errors (network failures,\n * invalid operations, expired transactions) are still thrown immediately -\n * the only thing skipped is the wait for the transaction to appear in a block.\n *\n * Returns { tx_id, status: 'unknown' }. To confirm block inclusion afterward,\n * poll transaction_status_api with the returned tx_id.\n *\n * Prefer this for operations where faster response matters more than\n * immediate confirmation (e.g. votes, reblogs, follows).\n *\n * Use broadcastOperations() when you need block_num/trx_num confirmation\n * (e.g. transfers, account updates, key changes).\n */\nexport async function broadcastOperationsAsync(\n ops: Operation[],\n key: PrivateKey\n): Promise {\n const tx = new Transaction();\n for (const op of ops) {\n await tx.addOperation(\n op[0] as OperationName,\n op[1] as OperationBody\n );\n }\n tx.sign(key);\n return tx.broadcast(false);\n}\n\n// ── Mana calculations (ported from dhive's RCAPI) ──────────────────────────\n\ninterface Manabar {\n current_mana: string | number;\n last_update_time: number;\n}\n\ninterface ManaResult {\n current_mana: number;\n max_mana: number;\n percentage: number;\n}\n\nconst MANA_REGENERATION_SECONDS = 432000; // 5 days\n\nfunction calculateManabar(maxMana: number, manabar: Manabar): ManaResult {\n const delta = Date.now() / 1000 - manabar.last_update_time;\n let currentMana =\n Number(manabar.current_mana) +\n (delta * maxMana) / MANA_REGENERATION_SECONDS;\n let percentage = Math.round((currentMana / maxMana) * 10000);\n if (!isFinite(percentage) || percentage < 0) {\n percentage = 0;\n } else if (percentage > 10000) {\n percentage = 10000;\n }\n return { current_mana: currentMana, max_mana: maxMana, percentage };\n}\n\n/**\n * Get effective vesting shares for an account (matching dhive's getVests).\n * Subtracts delegated, adds received, accounts for pending withdrawals.\n */\nfunction getVests(account: any): number {\n const vests = parseFloat(account.vesting_shares);\n const delegated = parseFloat(account.delegated_vesting_shares);\n const received = parseFloat(account.received_vesting_shares);\n const withdrawRate = parseFloat(account.vesting_withdraw_rate);\n const alreadyWithdrawn =\n (Number(account.to_withdraw) - Number(account.withdrawn)) / 1e6;\n const withdrawVests = Math.min(withdrawRate, alreadyWithdrawn);\n return vests - withdrawVests - delegated + received;\n}\n\n/** Calculate voting power mana (equivalent to dhive client.rc.calculateVPMana) */\nexport function calculateVPMana(account: any): ManaResult {\n const maxMana = getVests(account) * 1e6;\n return calculateManabar(maxMana, account.voting_manabar);\n}\n\n/** Calculate RC mana (equivalent to dhive client.rc.calculateRCMana) */\nexport function calculateRCMana(rcAccount: RCAccount): ManaResult {\n return calculateManabar(\n Number(rcAccount.max_rc),\n rcAccount.rc_manabar\n );\n}\n\n// setHiveTxNodes and initHiveTx removed — config is now unified.\n// Use hiveTxConfig directly or ConfigManager.setHiveNodes().\n","/**\n * Chain error handling utilities\n * Extracted from web's operations.ts and mobile's dhive.ts error handling patterns\n */\n\nexport enum ErrorType {\n COMMON = \"common\",\n INFO = \"info\",\n INSUFFICIENT_RESOURCE_CREDITS = \"insufficient_resource_credits\",\n MISSING_AUTHORITY = \"missing_authority\",\n TOKEN_EXPIRED = \"token_expired\",\n NETWORK = \"network\",\n TIMEOUT = \"timeout\",\n VALIDATION = \"validation\",\n}\n\nexport interface ParsedChainError {\n message: string;\n type: ErrorType;\n originalError?: any;\n}\n\n/**\n * Parses Hive blockchain errors into standardized format.\n * Extracted from web's operations.ts and mobile's dhive.ts error handling.\n *\n * @param error - The error object or string from a blockchain operation\n * @returns Parsed error with user-friendly message and categorized type\n *\n * @example\n * ```typescript\n * try {\n * await vote(...);\n * } catch (error) {\n * const parsed = parseChainError(error);\n * console.log(parsed.message); // \"Insufficient Resource Credits. Please wait or power up.\"\n * console.log(parsed.type); // ErrorType.INSUFFICIENT_RESOURCE_CREDITS\n * }\n * ```\n */\nexport function parseChainError(error: any): ParsedChainError {\n // Extract error strings from various error formats\n // Check both error_description and message independently for pattern matching\n const errorDescription = error?.error_description ? String(error.error_description) : '';\n const errorMessage = error?.message ? String(error.message) : '';\n // HiveSigner throws plain objects like { error: \"unauthorized\", error_description: \"...\" }\n const errorCode = error?.error ? String(error.error) : '';\n const errorString = errorDescription || errorMessage || String(error || '');\n\n // Helper function to test patterns against all error fields\n const testPattern = (pattern: RegExp): boolean => {\n // Check error code first (e.g. HiveSigner's { error: \"unauthorized\" })\n if (errorCode && pattern.test(errorCode)) return true;\n // Check error_description (priority)\n if (errorDescription && pattern.test(errorDescription)) return true;\n // Then check message\n if (errorMessage && pattern.test(errorMessage)) return true;\n // Finally check fallback errorString (handles plain string inputs)\n if (errorString && pattern.test(errorString)) return true;\n return false;\n };\n\n // Resource credits (from both web and mobile patterns)\n if (\n testPattern(/please wait to transact/i) ||\n testPattern(/insufficient rc/i) ||\n testPattern(/rc mana|rc account|resource credits/i)\n ) {\n return {\n message: \"Insufficient Resource Credits. Please wait or power up.\",\n type: ErrorType.INSUFFICIENT_RESOURCE_CREDITS,\n originalError: error,\n };\n }\n\n // Min comment interval (from web operations.ts line 29)\n if (testPattern(/you may only post once every/i)) {\n return {\n message: \"Please wait before posting again (minimum 3 second interval between comments).\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Identical vote (from web operations.ts line 31)\n if (testPattern(/your current vote on this comment is identical/i)) {\n return {\n message: \"You have already voted with the same weight.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Must claim something (from web operations.ts line 33)\n if (testPattern(/must claim something/i)) {\n return {\n message: \"You must claim rewards before performing this action.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Cannot claim that much VESTS (from web operations.ts line 35)\n if (testPattern(/cannot claim that much vests/i)) {\n return {\n message: \"Cannot claim that amount. Please check your pending rewards.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Cannot delete comment with positive votes (from web operations.ts line 42)\n if (testPattern(/cannot delete a comment with net positive/i)) {\n return {\n message: \"Cannot delete a comment with positive votes.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Comment has children (from web operations.ts line 44)\n if (testPattern(/children == 0/i)) {\n return {\n message: \"Cannot delete a comment with replies.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Comment already paid out (from web operations.ts line 46)\n if (testPattern(/comment_cashout/i)) {\n return {\n message: \"Cannot modify a comment that has already been paid out.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Voting on paid out post (from web operations.ts line 48)\n if (testPattern(/votes evaluating for comment that is paid out is forbidden/i)) {\n return {\n message: \"Cannot vote on posts that have already been paid out.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // No key available (SDK internal - from broadcastWithMethod when key not stored)\n if (testPattern(/no (active|owner|posting|memo) key available/i)) {\n return {\n message: \"Key not available. Please provide your key to sign this operation.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing active authority. Hive nodes return \"missing required active\n // authority\"; web operations.ts also throws the short form. Match both so the\n // auth fallback (auth-upgrade dialog) fires instead of misclassifying as a\n // generic chain error.\n if (testPattern(/missing (required )?active authority/i)) {\n return {\n message: \"Missing active authority. This operation requires your active key.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing owner authority (\"missing required owner authority\" or short form)\n if (testPattern(/missing (required )?owner authority/i)) {\n return {\n message: \"Missing owner authority. This operation requires your owner key.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing posting authority (general pattern)\n if (testPattern(/missing (required )?posting authority/i)) {\n return {\n message: \"Missing posting authority. Please check your login method.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Token expired / unauthorized (HiveSigner OAuth2 errors + general patterns)\n // HiveSigner returns: { error: \"invalid_grant\" } for invalid/expired tokens,\n // { error: \"unauthorized_access\" } for IP-based access denial\n if (\n errorCode === 'invalid_grant' ||\n errorCode === 'unauthorized_access' ||\n testPattern(/token expired/i) ||\n testPattern(/invalid token/i) ||\n testPattern(/\\bunauthorized\\b/i) ||\n testPattern(/\\bforbidden\\b/i)\n ) {\n return {\n message: \"Authentication token expired. Please log in again.\",\n type: ErrorType.TOKEN_EXPIRED,\n originalError: error,\n };\n }\n\n // Already reblogged\n if (testPattern(/has already reblogged/i) || testPattern(/already reblogged this post/i)) {\n return {\n message: \"You have already reblogged this post.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Duplicate transaction\n if (testPattern(/duplicate transaction/i)) {\n return {\n message: \"This transaction has already been processed.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Network errors (more specific patterns to avoid false positives)\n if (\n testPattern(/econnrefused/i) ||\n testPattern(/connection refused/i) ||\n testPattern(/failed to fetch/i) ||\n testPattern(/\\bnetwork[-\\s]?(request|error|timeout|unreachable|down|failed)\\b/i)\n ) {\n return {\n message: \"Network error. Please check your connection and try again.\",\n type: ErrorType.NETWORK,\n originalError: error,\n };\n }\n\n // Timeout errors\n if (testPattern(/timeout/i) || testPattern(/timed out/i)) {\n return {\n message: \"Request timed out. Please try again.\",\n type: ErrorType.TIMEOUT,\n originalError: error,\n };\n }\n\n // Account doesn't exist\n if (testPattern(/account.*does not exist/i) || testPattern(/account not found/i)) {\n return {\n message: \"Account not found. Please check the username.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Invalid memo key\n if (testPattern(/invalid memo key/i)) {\n return {\n message: \"Invalid memo key. Cannot encrypt message.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Insufficient funds (require both words in same string to avoid cross-field false positives)\n if (testPattern(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i)) {\n return {\n message: \"Insufficient funds for this transaction.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Generic validation errors (use word boundaries to be more specific)\n if (testPattern(/\\b(invalid|validation)\\b/i)) {\n // Truncate to 150 chars like other branches\n const message = (error?.message || errorString).substring(0, 150) || \"Validation error occurred\";\n return {\n message,\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Default: return original error message\n // Check for error_description first (from web operations.ts line 65-72)\n if (error?.error_description && typeof error.error_description === \"string\") {\n return {\n message: error.error_description.substring(0, 150),\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Then check message field\n if (error?.message && typeof error.message === \"string\") {\n return {\n message: error.message.substring(0, 150),\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Handle plain objects without message property (avoid \"[object Object]\")\n let message: string;\n if (typeof error === 'object' && error !== null) {\n // Check for common error properties\n if (error.error_description) {\n message = String(error.error_description);\n } else if (error.code) {\n message = `Error code: ${error.code}`;\n } else if (errorString && errorString !== '[object Object]') {\n message = errorString.substring(0, 150);\n } else {\n message = \"Unknown error occurred\";\n }\n } else {\n message = errorString.substring(0, 150) || \"Unknown error occurred\";\n }\n\n return {\n message,\n type: ErrorType.COMMON,\n originalError: error,\n };\n}\n\n/**\n * Formats error for display to user.\n * Returns tuple of [message, type] for backward compatibility with existing code.\n *\n * This function maintains compatibility with the old formatError signature from\n * web's operations.ts (line 59-84) and mobile's dhive.ts error handling.\n *\n * @param error - The error object or string\n * @returns Tuple of [user-friendly message, error type]\n *\n * @example\n * ```typescript\n * try {\n * await transfer(...);\n * } catch (error) {\n * const [message, type] = formatError(error);\n * showToast(message, type);\n * }\n * ```\n */\nexport function formatError(error: any): [string, ErrorType] {\n const parsed = parseChainError(error);\n return [parsed.message, parsed.type];\n}\n\n/**\n * Checks if error indicates missing authority and should trigger auth fallback.\n * Used by the SDK's useBroadcastMutation to determine if it should retry with\n * an alternate authentication method.\n *\n * @param error - The error object or string\n * @returns true if auth fallback should be attempted\n *\n * @example\n * ```typescript\n * try {\n * await broadcast(operations);\n * } catch (error) {\n * if (shouldTriggerAuthFallback(error)) {\n * // Try with alternate auth method\n * await broadcastWithHiveAuth(operations);\n * }\n * }\n * ```\n */\nexport function shouldTriggerAuthFallback(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.MISSING_AUTHORITY || type === ErrorType.TOKEN_EXPIRED;\n}\n\n/**\n * Checks if error is a resource credits (RC) error.\n * Useful for showing specific UI feedback about RC issues.\n *\n * @param error - The error object or string\n * @returns true if the error is related to insufficient RC\n *\n * @example\n * ```typescript\n * try {\n * await vote(...);\n * } catch (error) {\n * if (isResourceCreditsError(error)) {\n * showRCWarning(); // Show specific RC education/power up UI\n * }\n * }\n * ```\n */\nexport function isResourceCreditsError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.INSUFFICIENT_RESOURCE_CREDITS;\n}\n\n/**\n * Checks if error is informational (not critical).\n * Informational errors typically don't need retry logic.\n *\n * @param error - The error object or string\n * @returns true if the error is informational\n */\nexport function isInfoError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.INFO;\n}\n\n/**\n * Checks if error is network-related and should be retried.\n *\n * @param error - The error object or string\n * @returns true if the error is network-related\n */\nexport function isNetworkError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.NETWORK || type === ErrorType.TIMEOUT;\n}\n","import {\n useMutation,\n type MutationKey,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { PrivateKey, RPCError } from \"../../../hive-tx\";\nimport type { Operation } from \"../../../hive-tx\";\nimport { broadcastOperations, broadcastOperationsAsync, type TransactionConfirmation } from \"@/modules/core/hive-tx\";\nimport type { BroadcastResult } from \"../../../hive-tx\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { shouldTriggerAuthFallback } from \"@/modules/core/errors\";\nimport type { AuthorityLevel } from \"@/modules/operations/authority-map\";\nimport hs from \"hivesigner\";\n\n/**\n * Broadcast mode controls whether the SDK waits for block inclusion.\n *\n * - `'async'` (default): Uses `broadcast_transaction` — returns once the node\n * accepts the transaction into its mempool. Transport and RPC errors are\n * still thrown immediately; only the block-inclusion wait is skipped.\n *\n * - `'sync'`: Uses `broadcast_transaction_synchronous` — waits for block\n * inclusion and returns `block_num`/`trx_num`. Deprecated; prefer `'async'`\n * and poll `transaction_status_api` if you need block confirmation.\n */\nexport type BroadcastMode = 'sync' | 'async';\n\n/**\n * Broadcasts operations using a specific auth method.\n *\n * @param method - Auth method to use ('key', 'hiveauth', 'hivesigner', 'keychain', 'custom')\n * @param username - Hive username to broadcast for\n * @param ops - Operations to broadcast\n * @param auth - AuthContextV2 with adapter and configuration\n * @param authority - Key authority to use (posting, active, owner, or memo)\n * @param fetchedKey - Optional pre-fetched key to avoid duplicate fetches\n * @param fetchedToken - Optional pre-fetched access token to avoid duplicate fetches\n * @param broadcastMode - Whether to wait for block inclusion ('sync') or just mempool acceptance ('async')\n * @returns Transaction confirmation from the blockchain\n * @throws Error if method is not available or broadcast fails\n */\nasync function broadcastWithMethod(\n method: string,\n username: string,\n ops: Operation[],\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n fetchedKey?: string | null,\n fetchedToken?: string | null,\n broadcastMode: BroadcastMode = 'async'\n): Promise {\n const adapter = auth?.adapter;\n\n switch (method) {\n case 'key': {\n if (!adapter) {\n throw new Error('No adapter provided for key-based auth');\n }\n\n // Use pre-fetched key if provided, otherwise fetch it\n let key: string | null | undefined = fetchedKey;\n\n if (key === undefined) {\n // Key not pre-fetched, fetch it now based on authority\n switch (authority) {\n case 'owner':\n if (adapter.getOwnerKey) {\n key = await adapter.getOwnerKey(username);\n } else {\n throw new Error(\n `Owner key not supported by adapter. Owner operations (like account recovery) ` +\n `require master password login or manual key entry.`\n );\n }\n break;\n\n case 'active':\n if (adapter.getActiveKey) {\n key = await adapter.getActiveKey(username);\n }\n break;\n\n case 'memo':\n if (adapter.getMemoKey) {\n key = await adapter.getMemoKey(username);\n } else {\n throw new Error(\n `Memo key not supported by adapter. Use memo encryption methods instead.`\n );\n }\n break;\n\n case 'posting':\n default:\n key = await adapter.getPostingKey(username);\n break;\n }\n }\n\n if (!key) {\n throw new Error(`No ${authority} key available for ${username}`);\n }\n\n // Attempt broadcast with key\n const privateKey = PrivateKey.fromString(key);\n if (broadcastMode === 'async') {\n return await broadcastOperationsAsync(ops, privateKey);\n }\n return await broadcastOperations(ops, privateKey);\n }\n\n case 'hiveauth': {\n if (!adapter?.broadcastWithHiveAuth) {\n throw new Error('HiveAuth not supported by adapter');\n }\n return await adapter.broadcastWithHiveAuth(username, ops, authority);\n }\n\n case 'hivesigner': {\n if (!adapter) {\n throw new Error('No adapter provided for HiveSigner auth');\n }\n\n // Access tokens only have posting authority — for active/owner/memo ops,\n // go directly to platform-specific HiveSigner broadcast (e.g., redirect to hivesigner.com)\n if (authority !== 'posting') {\n if (adapter.broadcastWithHiveSigner) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n throw new Error(`HiveSigner access token cannot sign ${authority} operations. No platform broadcast available.`);\n }\n\n // Try direct API broadcast with access token first (posting ops only)\n const token = fetchedToken !== undefined\n ? fetchedToken\n : await adapter.getAccessToken(username);\n\n if (token) {\n try {\n const client = new hs.Client({ accessToken: token });\n const response = await client.broadcast(ops);\n return response.result;\n } catch (tokenError) {\n // Token broadcast failed — try platform-specific HiveSigner broadcast\n if (adapter.broadcastWithHiveSigner && shouldTriggerAuthFallback(tokenError)) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n throw tokenError;\n }\n }\n\n // No token available — try platform-specific HiveSigner broadcast\n if (adapter.broadcastWithHiveSigner) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n\n throw new Error(`No access token available for ${username}`);\n }\n\n case 'keychain': {\n if (!adapter?.broadcastWithKeychain) {\n throw new Error('Keychain not supported by adapter');\n }\n return await adapter.broadcastWithKeychain(username, ops, authority);\n }\n\n case 'custom': {\n if (!auth?.broadcast) {\n throw new Error('No custom broadcast function provided');\n }\n return (await auth.broadcast(ops, authority)) as TransactionConfirmation;\n }\n\n default:\n throw new Error(`Unknown auth method: ${method}`);\n }\n}\n\n/**\n * Attempts to broadcast operations using multiple auth methods in fallback chain.\n * Implements sophisticated fallback pattern from mobile app.\n *\n * @param username - Hive username to broadcast for\n * @param ops - Operations to broadcast\n * @param auth - AuthContextV2 with adapter and fallback configuration\n * @param authority - Key authority to use ('posting' | 'active' | 'owner' | 'memo'), defaults to 'posting'\n * @returns Transaction confirmation from the blockchain\n * @throws Error if all auth methods fail or if a non-auth error occurs\n *\n * @remarks\n * **Preferred Behavior (when adapter.getLoginType exists):**\n * - Calls adapter.getLoginType() to determine user's actual auth method\n * - Uses ONLY that method (no fallbacks) - more predictable and faster\n * - If it fails, throws the error immediately\n *\n * **Fallback Behavior (for backward compatibility):**\n * - Tries each auth method in the fallback chain order\n * - Only continues to next method if error is auth-related (missing authority, token expired)\n * - Stops immediately for non-auth errors (RC exhaustion, network errors, validation errors)\n * - Collects all errors and provides detailed failure message\n *\n * @example\n * ```typescript\n * // Preferred: Adapter with getLoginType (single method, no fallbacks)\n * const auth: AuthContextV2 = {\n * adapter: myAdapter, // includes getLoginType()\n * };\n *\n * // Legacy: Explicit fallback chain (tries multiple methods)\n * const auth: AuthContextV2 = {\n * adapter: myAdapter,\n * fallbackChain: ['key', 'hiveauth', 'hivesigner'],\n * };\n * ```\n */\nasync function broadcastWithFallback(\n username: string,\n ops: Operation[],\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n broadcastMode: BroadcastMode = 'async'\n): Promise {\n const adapter = auth?.adapter;\n\n // PREFERRED APPROACH: If adapter provides getLoginType, use smart auth strategy\n // This avoids unnecessary fallback attempts and is more predictable\n if (adapter?.getLoginType) {\n const loginType = await adapter.getLoginType(username, authority);\n\n if (loginType) {\n // SMART AUTH STRATEGY: Optimize based on login type + authority + credentials\n\n // Check if user has granted ecency.app posting authority\n const hasPostingAuth = adapter.hasPostingAuthorization\n ? await adapter.hasPostingAuthorization(username)\n : false;\n\n // OPTIMIZATION: Use HiveSigner token for posting ops when posting auth is granted\n // This is faster than direct key signing or HiveAuth for key-based logins\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'key'\n ) {\n try {\n // Try HiveSigner API first (faster)\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Only fallback if this is an auth-related error\n // Otherwise, rethrow the original error (e.g., network errors, validation errors)\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n // Fallback to direct key signing if token auth method fails\n console.warn('[SDK] HiveSigner token auth failed, falling back to key:', error);\n }\n }\n\n // OPTIMIZATION: Use HiveSigner token for keychain/MetaMask users with posting auth (faster, no popup)\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'keychain'\n ) {\n try {\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n console.warn('[SDK] HiveSigner token auth failed, falling back to keychain/snap:', error);\n }\n }\n\n // OPTIMIZATION: Use HiveSigner token for HiveAuth users with posting auth (faster)\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'hiveauth'\n ) {\n try {\n // Try HiveSigner API first (faster)\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Only fallback if this is an auth-related error\n // Otherwise, rethrow the original error (e.g., network errors, validation errors)\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n // Fallback to HiveAuth if token auth method fails\n console.warn('[SDK] HiveSigner token auth failed, falling back to HiveAuth:', error);\n }\n }\n\n // Use user's actual login method\n try {\n return await broadcastWithMethod(loginType, username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Check if error is due to missing authority (e.g., posting key trying active op)\n if (shouldTriggerAuthFallback(error)) {\n // Show auth upgrade UI if available (only for posting/active operations)\n if (\n adapter.showAuthUpgradeUI &&\n (authority === 'posting' || authority === 'active')\n ) {\n // Guard against empty operations array\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`Operation requires ${authority} authority. User declined alternate auth.`);\n }\n\n // User selected a specific method - delegate to broadcastWithMethod\n // This handles all auth methods (hiveauth, hivesigner, key, keychain, custom, etc.)\n // broadcastWithMethod already contains all necessary validation and method-specific logic\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n }\n\n // Not an auth error, or no upgrade UI available - throw original error\n throw error;\n }\n }\n\n // loginType is null — user's auth method is unknown (e.g., incomplete login data)\n if (authority === 'posting') {\n // For posting ops, try HiveSigner — access token is usually available for all logins\n try {\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (hsError) {\n if (shouldTriggerAuthFallback(hsError) && adapter.showAuthUpgradeUI) {\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`No login type available for ${username}. Please log in again.`);\n }\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n throw hsError;\n }\n } else if (authority === 'active' && adapter.showAuthUpgradeUI) {\n // For active ops, show auth upgrade dialog — no silent fallback possible\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`Operation requires ${authority} authority. User declined alternate auth.`);\n }\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n }\n\n // FALLBACK APPROACH: For backward compatibility, use fallback chain\n // This is only used if adapter doesn't provide getLoginType\n const chain = auth?.fallbackChain ?? ['key', 'hiveauth', 'hivesigner', 'keychain', 'custom'];\n const errors: Map = new Map();\n\n for (const method of chain) {\n try {\n // Check if method is available before attempting\n let shouldSkip = false;\n let skipReason = '';\n let prefetchedKey: string | null | undefined;\n let prefetchedToken: string | null | undefined;\n\n switch (method) {\n case 'key':\n if (!adapter) {\n shouldSkip = true;\n skipReason = 'No adapter provided';\n } else {\n // Pre-fetch key to check availability (will be reused in broadcast)\n let key: string | null | undefined;\n\n switch (authority) {\n case 'owner':\n if (adapter.getOwnerKey) {\n key = await adapter.getOwnerKey(username);\n }\n break;\n case 'active':\n if (adapter.getActiveKey) {\n key = await adapter.getActiveKey(username);\n }\n break;\n case 'memo':\n if (adapter.getMemoKey) {\n key = await adapter.getMemoKey(username);\n }\n break;\n case 'posting':\n default:\n key = await adapter.getPostingKey(username);\n break;\n }\n\n if (!key) {\n shouldSkip = true;\n skipReason = `No ${authority} key available`;\n } else {\n prefetchedKey = key; // Store for reuse\n }\n }\n break;\n case 'hiveauth':\n if (!adapter?.broadcastWithHiveAuth) {\n shouldSkip = true;\n skipReason = 'HiveAuth not supported by adapter';\n }\n break;\n case 'hivesigner':\n if (!adapter) {\n shouldSkip = true;\n skipReason = 'No adapter provided';\n } else {\n // Pre-fetch token if available (will be reused in broadcast)\n const token = await adapter.getAccessToken(username);\n if (token) {\n prefetchedToken = token; // Store for reuse\n }\n // When no token but adapter exists, don't skip —\n // broadcastWithMethod can fall back to adapter.broadcastWithHiveSigner\n }\n break;\n case 'keychain':\n if (!adapter?.broadcastWithKeychain) {\n shouldSkip = true;\n skipReason = 'Keychain not supported by adapter';\n }\n break;\n case 'custom':\n if (!auth?.broadcast) {\n shouldSkip = true;\n skipReason = 'No custom broadcast function provided';\n }\n break;\n }\n\n if (shouldSkip) {\n errors.set(method, new Error(`Skipped: ${skipReason}`));\n continue;\n }\n\n // Method is available, attempt broadcast with pre-fetched credentials\n return await broadcastWithMethod(method, username, ops, auth, authority, prefetchedKey, prefetchedToken, broadcastMode);\n } catch (error) {\n // Record actual error from failed broadcast attempt\n errors.set(method, error as Error);\n\n // Only continue fallback if error suggests trying another method\n if (!shouldTriggerAuthFallback(error)) {\n // If it's not an auth error, throw immediately (e.g., RC error, network error)\n throw error;\n }\n }\n }\n\n // FIX #2: Improved error message distinguishes between skips and real failures\n const hasRealAttempts = Array.from(errors.values()).some(\n error => !error.message.startsWith('Skipped:')\n );\n\n if (!hasRealAttempts) {\n // All methods were skipped (none attempted)\n const skipReasons = Array.from(errors.entries())\n .map(([method, error]) => `${method}: ${error.message}`)\n .join(', ');\n throw new Error(\n `[SDK][Broadcast] No auth methods attempted for ${username}. ${skipReasons}`\n );\n }\n\n // At least one method was attempted but all failed\n const errorMessages = Array.from(errors.entries())\n .map(([method, error]) => `${method}: ${error.message}`)\n .join(', ');\n\n throw new Error(\n `[SDK][Broadcast] All auth methods failed for ${username}. Errors: ${errorMessages}`\n );\n}\n\n/**\n * React Query mutation hook for broadcasting Hive operations.\n * Supports multiple authentication methods with automatic fallback.\n *\n * @template T - Type of the mutation payload\n * @param mutationKey - React Query mutation key for cache management\n * @param username - Hive username (required for broadcast)\n * @param operations - Function that converts payload to Hive operations\n * @param onSuccess - Success callback after broadcast completes\n * @param auth - Authentication context (supports both legacy AuthContext and new AuthContextV2)\n * @param authority - Key authority to use ('posting' | 'active' | 'owner' | 'memo'), defaults to 'posting'\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Authentication Flow:**\n *\n * 1. **With AuthContextV2 + adapter + enableFallback** (recommended for new code):\n * - Tries auth methods in fallbackChain order\n * - Smart fallback: only retries on auth errors, not RC/network errors\n * - Uses platform adapter for storage, UI, and broadcasting\n *\n * 2. **With legacy AuthContext** (backward compatible):\n * - Tries auth.broadcast() first (custom implementation)\n * - Falls back to postingKey if available\n * - Falls back to accessToken (HiveSigner) if available\n * - Throws if no auth method available\n *\n * **Backward Compatibility:**\n * - All existing code using AuthContext will continue to work\n * - AuthContextV2 extends AuthContext, so it's a drop-in replacement\n * - enableFallback defaults to false if no adapter provided\n *\n * @example\n * ```typescript\n * // New pattern with platform adapter and fallback\n * const mutation = useBroadcastMutation(\n * ['vote'],\n * username,\n * (payload) => [voteOperation(payload)],\n * () => console.log('Success!'),\n * {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * },\n * 'posting'\n * );\n *\n * // Legacy pattern (still works)\n * const mutation = useBroadcastMutation(\n * ['vote'],\n * username,\n * (payload) => [voteOperation(payload)],\n * () => console.log('Success!'),\n * { postingKey: 'wif-key' }\n * );\n * ```\n */\nexport function useBroadcastMutation(\n mutationKey: MutationKey = [],\n username: string | undefined,\n operations: (payload: T) => Operation[],\n onSuccess: UseMutationOptions[\"onSuccess\"] = () => {},\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n options?: {\n onMutate?: UseMutationOptions[\"onMutate\"];\n onError?: UseMutationOptions[\"onError\"];\n onSettled?: UseMutationOptions[\"onSettled\"];\n /**\n * Controls whether to wait for block inclusion or just mempool acceptance.\n *\n * - `'async'` (default): Returns after mempool acceptance. Recommended for\n * all operations; errors are still thrown immediately.\n *\n * - `'sync'`: Waits for block inclusion, returns block_num/trx_num.\n * Deprecated; prefer `'async'`.\n */\n broadcastMode?: BroadcastMode;\n }\n) {\n const broadcastMode = options?.broadcastMode ?? 'async';\n\n return useMutation({\n onSuccess,\n onMutate: options?.onMutate,\n onError: options?.onError,\n onSettled: options?.onSettled,\n mutationKey: [...mutationKey, username],\n mutationFn: async (payload: T) => {\n if (!username) {\n throw new Error(\n \"[Core][Broadcast] Attempted to call broadcast API with anon user\"\n );\n }\n\n const ops = operations(payload);\n\n try {\n // New: Try auth methods in fallback chain (if enabled)\n if (auth?.enableFallback !== false && auth?.adapter) {\n return await broadcastWithFallback(username, ops, auth, authority, broadcastMode);\n }\n\n // Legacy behavior: try methods in fixed order (backward compatible)\n if (auth?.broadcast) {\n return await auth.broadcast(ops, authority);\n }\n\n const postingKey = auth?.postingKey;\n if (postingKey) {\n // Legacy auth only supports posting authority\n if (authority !== 'posting') {\n throw new Error(\n `[SDK][Broadcast] Legacy auth only supports posting authority, but '${authority}' was requested. ` +\n `Use AuthContextV2 with an adapter for ${authority} operations.`\n );\n }\n\n const privateKey = PrivateKey.fromString(postingKey);\n\n return await broadcastOperations(\n ops,\n privateKey\n );\n }\n\n const accessToken = auth?.accessToken;\n if (accessToken) {\n const client = new hs.Client({ accessToken });\n const response = await client.broadcast(ops);\n return response.result;\n }\n\n throw new Error(\n \"[SDK][Broadcast] – cannot broadcast w/o posting key or token\"\n );\n } catch (e) {\n if (e instanceof RPCError) {\n // Normalize raw blockchain rejections (missing authority, RC exhaustion,\n // validation failures) from every broadcast path — sync and async — into\n // a plain Error whose message is preserved for downstream classification\n // (formatError), so React Query captures a handled mutation error.\n throw new Error(e.message);\n }\n throw e\n }\n },\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\nimport hs from \"hivesigner\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport async function broadcastJson(\n username: string | undefined,\n id: string,\n payload: T,\n auth?: AuthContextV2\n) {\n if (!username) {\n throw new Error(\n \"[Core][Broadcast] Attempted to call broadcast API with anon user\"\n );\n }\n const jjson = {\n id,\n required_auths: [],\n required_posting_auths: [username],\n json: JSON.stringify(payload),\n };\n\n if (auth?.broadcast) {\n return auth.broadcast([[\"custom_json\", jjson]], \"posting\");\n }\n\n const postingKey = auth?.postingKey;\n if (postingKey) {\n const privateKey = PrivateKey.fromString(postingKey);\n\n return broadcastOperations(\n [[\"custom_json\", jjson]],\n privateKey\n );\n }\n\n // With hivesigner access token\n const accessToken = auth?.accessToken;\n if (accessToken) {\n const response = await new hs.Client({\n accessToken,\n }).customJson([], [username], id, JSON.stringify(payload));\n return response.result;\n }\n\n /*\n * Adapter, as a last resort rather than first.\n *\n * `auth.broadcast` above is the supported caller-supplied path inherited by\n * AuthContextV2, but the web app's `getSdkAuthContext` does not populate it.\n * A Keychain user whose posting key is not stored and who has no HiveSigner\n * token therefore reached the throw below instead of being asked to sign.\n * This is reachable today from follow and unfollow.\n *\n * Placed last on purpose: every branch above already works for the sessions\n * that reach it, and reordering would change which method signs for people\n * it currently serves. This only claims cases that were previously errors.\n */\n const adapter = auth?.adapter;\n if (adapter) {\n const ops: Parameters>[1] =\n [[\"custom_json\", jjson]];\n\n if (auth?.loginType === \"keychain\" && adapter.broadcastWithKeychain) {\n return adapter.broadcastWithKeychain(username, ops, \"posting\");\n }\n if (auth?.loginType === \"hiveauth\" && adapter.broadcastWithHiveAuth) {\n return adapter.broadcastWithHiveAuth(username, ops, \"posting\");\n }\n }\n\n throw new Error(\n \"[SDK][Broadcast] – cannot broadcast w/o posting key or token\"\n );\n}\n","import type { BroadcastMode } from \"./use-broadcast-mutation\";\nimport type { PlatformAdapter } from \"@/modules/core/types\";\n\n/**\n * Delay (ms) before invalidating chain-derived queries after an async\n * broadcast. ~1.3 Hive blocks (3s/block) so the just-broadcast transaction has\n * landed in a block before we refetch — otherwise the refetch returns pre-tx\n * state (e.g. a stale wallet balance).\n */\nexport const BROADCAST_INCLUSION_DELAY_MS = 4000;\n\n/**\n * Invalidate queries after a broadcast, accounting for broadcast mode.\n *\n * - `'sync'`: the transaction already waited for block inclusion, so refetch\n * immediately (returns the adapter's promise so callers may await it).\n * - `'async'` (default) / undefined: the transaction is only in the mempool, so\n * a refetch now would read pre-tx state — defer by ~1 block.\n *\n * No-ops when the adapter can't invalidate.\n */\nexport function invalidateAfterBroadcast(\n adapter: PlatformAdapter | null | undefined,\n broadcastMode: BroadcastMode | undefined,\n keys: any[][]\n): void | Promise {\n if (!adapter?.invalidateQueries) return;\n if (broadcastMode === \"sync\") {\n // Method call (not an extracted reference) so `this` stays bound to adapter.\n return adapter.invalidateQueries(keys);\n }\n setTimeout(() => adapter.invalidateQueries?.(keys), BROADCAST_INCLUSION_DELAY_MS);\n}\n","export function withTimeoutSignal(timeoutMs: number, signal?: AbortSignal): AbortSignal {\n const timeoutSignal = AbortSignal.timeout(timeoutMs);\n if (!signal) return timeoutSignal;\n\n // AbortSignal.any is available in Chrome 116+, Safari 17.4+, Firefox 124+.\n // Fall back to manual AbortController wiring for older browsers.\n if (typeof AbortSignal.any === \"function\") {\n return AbortSignal.any([signal, timeoutSignal]);\n }\n\n const ac = new AbortController();\n const onAbort = () => {\n const reason = signal.aborted ? signal.reason : timeoutSignal.reason;\n ac.abort(reason);\n signal.removeEventListener(\"abort\", onAbort);\n timeoutSignal.removeEventListener(\"abort\", onAbort);\n };\n if (signal.aborted) {\n ac.abort(signal.reason);\n } else if (timeoutSignal.aborted) {\n ac.abort(timeoutSignal.reason);\n } else {\n signal.addEventListener(\"abort\", onAbort, { once: true });\n timeoutSignal.addEventListener(\"abort\", onAbort, { once: true });\n }\n return ac.signal;\n}\n","import { QueryClient } from \"@tanstack/react-query\";\nimport {\n config as hiveTxConfig,\n setNodes as setHiveTxNodes,\n setRestNodes as setHiveTxRestNodes,\n setRestNodesByApi as setHiveTxRestNodesByApi,\n setUserAgent as setHiveTxUserAgent,\n setResilience as setHiveTxResilience,\n setServerRpcProxy as setHiveTxServerRpcProxy,\n rpcProxyStats,\n type ResilienceOptions,\n type ServerRpcProxyOptions,\n} from \"../../hive-tx\";\nimport type { APIMethods } from \"../../hive-tx/api-types\";\n\n// Safe environment variable access for browser builds\n// In browser builds, tsup will replace process.env.* with literal values at compile time\nconst isDevelopment = (() => {\n try {\n return process.env?.NODE_ENV === 'development';\n } catch {\n return false;\n }\n})();\n\nconst getHeliusApiKey = () => {\n try {\n return process.env?.VITE_HELIUS_API_KEY;\n } catch {\n return undefined;\n }\n};\n\n/** Timeout for internal API calls (search, private API). */\nexport const INTERNAL_API_TIMEOUT_MS = 10_000;\n\n/**\n * Ceiling on `gcTime` for any query that runs during SSR.\n *\n * A long window is fine in a browser or native app, where the cache holds one\n * user's data and lives as long as the session. It is not fine in a server\n * renderer: every query schedules a gc timer, a pending timer is a GC root, and\n * `Query` holds the whole `QueryCache` — so one long-lived entry keeps\n * everything else that request cached reachable for its entire window. A server\n * process then settles at roughly `ingest rate × gcTime`, which is how\n * ecency.com's renderers ended up aborting on the old-space cap rather than\n * levelling off (2026-07-26).\n *\n * Two minutes is far longer than any single render, which is the only window a\n * server-side entry has to be reused before it is dehydrated into the payload.\n *\n * Note this bounds SDK queries at the source. `apps/web` additionally clamps\n * every query through `defaultQueryOptions`, which is what protects it from\n * options defined outside the SDK; hosts that do not clamp get the right\n * behaviour from these defaults alone.\n */\nexport const SERVER_GC_TIME_MS = 2 * 60 * 1000;\n\n/**\n * How `CONFIG.queryClient` is resolved.\n *\n * This used to be a plain `queryClient: new QueryClient()` property — a single\n * instance created at module import and shared by every caller for the lifetime\n * of the process. That is correct in a browser (one process, one user) but wrong\n * under SSR, where one process serves every request: each server render wrote its\n * fetched data into that one cache and nothing ever removed it, so the heap grew\n * monotonically until the renderer hit its old-space limit and aborted.\n *\n * A host that renders on the server registers a resolver (see\n * `ConfigManager.setQueryClientResolver`) which returns the *current request's*\n * client, so cached data dies with the request that produced it. Hosts that\n * genuinely want one long-lived client keep using `setQueryClient`, and callers\n * that configure nothing fall back to a lazily created instance.\n *\n * The resolver is consulted on every read rather than cached here on purpose:\n * request scoping is the host's concern, and only the host can know when one\n * request ends and the next begins.\n */\nlet queryClientResolver: (() => QueryClient) | undefined;\n\n/** Created on first use, and only when no resolver has been registered. */\nlet fallbackQueryClient: QueryClient | undefined;\n\nfunction resolveQueryClient(): QueryClient {\n if (queryClientResolver) {\n return queryClientResolver();\n }\n return (fallbackQueryClient ??= new QueryClient());\n}\n\nexport const CONFIG = {\n privateApiHost: \"https://ecency.com\",\n /**\n * Host for the newsletter relay routes (/api/newsletter/*), which live on\n * the WEB origin (Next.js route handlers), not on the private API service.\n * `undefined` falls back to `privateApiHost` (right for mobile, whose one\n * host serves both); the web client pins it to \"\" so newsletter requests\n * stay same-origin on ANY deployment, hostname regardless.\n */\n newsletterHost: undefined as string | undefined,\n /**\n * Observer used for bridge calls when nobody is logged in. The bridge applies\n * this account's mute list to the response, marking muted authors' posts and\n * comments `stats.gray` so clients can dim or collapse them. Anonymous\n * visitors therefore inherit Ecency's moderation instead of seeing an\n * unfiltered firehose. Apps may override via `ConfigManager.setDefaultObserver`,\n * which expects a real account rather than \"\" (see that setter).\n *\n * Note this only *marks* content: the bridge still returns muted authors'\n * posts, so an observer never shortens a feed.\n */\n defaultObserver: \"ecency\",\n /**\n * First-party client identifier sent as the `X-Ecency-Client` header on\n * search/private API requests. Lets the origin distinguish Ecency's own\n * web/mobile/SSR traffic from third-party integrators (who should use the\n * keyed api.hivesearcher.com backend instead of the public proxy). This is\n * a routing marker, not a secret. Apps may override via\n * `ConfigManager.setClientId` (e.g. \"web\" or \"mobile\") for observability.\n */\n clientId: \"ecency-sdk\",\n imageHost: \"https://i.ecency.com\",\n /** Current Hive RPC nodes. Reads from the unified hive-tx config. */\n get hiveNodes(): string[] {\n return hiveTxConfig.nodes;\n },\n heliusApiKey: getHeliusApiKey(),\n /**\n * The React Query client all SDK code reads through `getQueryClient()`.\n * Backed by a resolver so an SSR host can scope it per request — see the\n * `queryClientResolver` note above. Assigning replaces the resolver with one\n * that always returns the assigned client, preserving the previous\n * \"one client, set once\" behaviour for browser and native hosts.\n */\n get queryClient(): QueryClient {\n return resolveQueryClient();\n },\n set queryClient(client: QueryClient) {\n queryClientResolver = () => client;\n },\n pollsApiHost: \"https://poll.ecency.com\",\n plausibleHost: \"https://pl.ecency.com\",\n // DMCA filtering - can be configured by the app\n dmcaAccounts: [] as string[],\n dmcaTags: [] as string[],\n dmcaPatterns: [] as string[],\n // Pre-compiled regex patterns for performance and security\n dmcaTagRegexes: [] as RegExp[],\n dmcaPatternRegexes: [] as RegExp[],\n // Track if DMCA has been initialized to avoid duplicate logs\n _dmcaInitialized: false,\n};\n\ntype DmcaListsInput = {\n accounts?: string[];\n tags?: string[];\n posts?: string[];\n};\n\nexport namespace ConfigManager {\n export function setQueryClient(client: QueryClient) {\n CONFIG.queryClient = client;\n }\n\n /**\n * Register how the SDK should obtain its React Query client, for hosts where\n * a single shared instance is wrong — principally SSR, where one process\n * serves many requests and a shared cache both leaks memory and risks serving\n * one request's data to another.\n *\n * `resolve` is called on every SDK cache access and should return the client\n * belonging to the request currently being handled. In a Next.js App Router\n * host that means wrapping the factory in React's `cache()`, which memoises\n * per request:\n *\n * ```ts\n * ConfigManager.setQueryClientResolver(() => getQueryClient());\n * ```\n *\n * Registering a resolver supersedes any client previously passed to\n * `setQueryClient`; assigning a client afterwards supersedes the resolver.\n */\n export function setQueryClientResolver(resolve: () => QueryClient) {\n queryClientResolver = resolve;\n }\n\n /**\n * Set the private API host\n * @param host - The private API host URL (e.g., \"https://ecency.com\" or \"\" for relative URLs)\n */\n export function setPrivateApiHost(host: string) {\n CONFIG.privateApiHost = host;\n }\n\n /**\n * Set the host for the newsletter relay routes (/api/newsletter/*), or\n * `undefined` to fall back to the private API host. Use \"\" for same-origin\n * relative requests (the web client's case).\n */\n export function setNewsletterHost(host: string | undefined) {\n CONFIG.newsletterHost = host;\n }\n\n /**\n * Set the first-party client identifier sent as the `X-Ecency-Client` header\n * on search/private API requests (e.g. \"web\" or \"mobile\"). Defaults to\n * \"ecency-sdk\". Used by the origin to tell Ecency's own apps apart from\n * third-party integrators.\n * @param clientId - Short client label\n */\n export function setClientId(clientId: string) {\n CONFIG.clientId = clientId;\n }\n\n /**\n * Set the observer used for bridge calls made without a logged-in user.\n * Defaults to \"ecency\"; a third-party integrator should point this at their\n * own moderation account.\n *\n * Must be a real account. An empty value is rejected rather than treated as\n * an opt-out: consumers resolve the observer with `||`, and `getDiscussion`\n * separately falls back to the post author, so \"\" would not disable mute\n * marking. It would silently observe as someone else while being cached under\n * \"\", leaving the request and its cache key describing different things.\n * @param observer - Hive account whose mute list applies to anonymous reads\n * @throws If given an empty or whitespace-only value\n */\n export function setDefaultObserver(observer: string) {\n if (typeof observer !== \"string\" || observer.trim() === \"\") {\n throw new Error(\n \"setDefaultObserver requires a non-empty Hive account. There is no empty-string opt-out; \" +\n \"observer resolution would fall back to the post author while caching under an empty key.\"\n );\n }\n\n CONFIG.defaultObserver = observer;\n }\n\n /**\n * Get a validated base URL for API requests\n * Returns a valid base URL that can be used with new URL(path, baseUrl)\n *\n * Priority:\n * 1. CONFIG.privateApiHost if set (dev/staging or explicit config)\n * 2. window.location.origin if in browser (production with relative URLs)\n * 3. 'https://ecency.com' as fallback for SSR (production default)\n *\n * @returns A valid base URL string\n * @throws Never throws - always returns a valid URL\n */\n export function getValidatedBaseUrl(): string {\n if (CONFIG.privateApiHost) {\n return CONFIG.privateApiHost;\n }\n\n if (typeof window !== 'undefined' && window.location?.origin) {\n return window.location.origin;\n }\n\n // Fallback for SSR when privateApiHost is empty (production case)\n return 'https://ecency.com';\n }\n\n /**\n * Set the polls API host\n * @param host - The polls API host URL (e.g., \"https://poll.ecency.com\")\n */\n export function setPollsApiHost(host: string) {\n CONFIG.pollsApiHost = host;\n }\n\n /**\n * Set the image host\n * @param host - The image host URL (e.g., \"https://i.ecency.com\")\n */\n export function setImageHost(host: string) {\n CONFIG.imageHost = host;\n }\n\n /**\n * Set Hive RPC nodes, replacing the default list.\n * Delegates to the unified hive-tx `setNodes` (single validated setter,\n * shared with the lean `@ecency/sdk/hive` entry) so node configuration is\n * defined in exactly one place.\n * @param nodes - Array of Hive RPC node URLs\n */\n export function setHiveNodes(nodes: string[]) {\n setHiveTxNodes(nodes);\n }\n\n /**\n * Set the REST-API node list, replacing the default `restNodes`. Lets an app\n * add/remove REST hosts at runtime (e.g. drop an own node being decommissioned,\n * or widen the public pool) without forking + republishing the SDK. Delegates to\n * the unified hive-tx `setRestNodes` (validated, shared with `@ecency/sdk/hive`).\n * @param nodes - Array of REST-capable node URLs (without a trailing slash)\n */\n export function setRestNodes(nodes: string[]) {\n setHiveTxRestNodes(nodes);\n }\n\n /**\n * Merge per-API REST node overrides. For each API a non-empty valid list pins it\n * to those hosts (so `callREST` never wastes its retry budget on a node that\n * 404/503s the API); an empty list removes the pin (falls back to `restNodes`).\n * Other APIs' pins (e.g. the built-in `hivesense`) are preserved. Delegates to the\n * unified hive-tx `setRestNodesByApi`.\n * @param map - Partial map of REST API name → capable node URLs\n */\n export function setRestNodesByApi(map: Partial>) {\n setHiveTxRestNodesByApi(map);\n }\n\n /**\n * Set the User-Agent sent on server-side (Node) requests to Hive nodes.\n * Lets an app label its own SSR/server traffic (otherwise Node's fetch sends a\n * bare `node` UA). No effect in browsers (User-Agent is a forbidden header) or\n * React Native (keeps its native UA). Delegates to the unified hive-tx setter.\n * @param userAgent - The User-Agent string (e.g. \"ecency-web-ssr (+https://ecency.com)\")\n */\n export function setUserAgent(userAgent: string) {\n setHiveTxUserAgent(userAgent);\n }\n\n /**\n * Tune read-call tail-latency resilience: adaptive per-attempt timeouts\n * (default on) and hedged requests (default OFF — a duplicate request races\n * the next healthy node when the primary stalls, bounded by a token bucket so\n * only the slow tail hedges and pool-wide slowness self-disables it). Partial:\n * only the fields provided are changed; invalid values are ignored\n * field-by-field. Delegates to the unified hive-tx `setResilience`.\n * @param opts - e.g. `{ hedge: true }` to opt into hedged reads\n */\n export function setResilience(opts: Partial) {\n setHiveTxResilience(opts);\n }\n\n /**\n * Route allowlisted server-side RPC reads through a read-through cache in\n * front of the node pool (one cache per host, shared by every renderer\n * process). An optimization, never a dependency: any proxy failure falls\n * straight through to the node loop. No effect outside Node; null switches\n * it off. Delegates to the unified hive-tx `setServerRpcProxy`.\n * @param opts - `{ url, headers, timeoutMs, methods }` or null\n */\n export function setServerRpcProxy(opts: ServerRpcProxyOptions | null) {\n setHiveTxServerRpcProxy(opts);\n }\n\n /**\n * The live counters of that proxy path: `served` (answered by the proxy),\n * `fallback` with a per-reason breakdown (the read went to the node pool\n * after a proxy failure) and `skipped` (breaker open). The same object the\n * call path increments, exposed here because the root build carries its own\n * copy of the hive-tx internals; a consumer importing `rpcProxyStats` from\n * the `/hive` entry would read a different, never-incremented instance.\n * Read-only by contract: the web tier prints it, nothing resets it.\n */\n export function getServerRpcProxyStats(): Readonly {\n return rpcProxyStats;\n }\n\n /**\n * Static analysis: Check for known ReDoS-vulnerable patterns\n * @param pattern - Raw regex pattern string\n * @returns Object with risk level and reason\n */\n function analyzeRedosRisk(pattern: string): { safe: boolean; reason?: string } {\n // Check 1: Nested quantifiers (e.g., (a+)+, (a*)+, (a{1,})+)\n if (/(\\([^)]*[*+{][^)]*\\))[*+{]/.test(pattern)) {\n return { safe: false, reason: \"nested quantifiers detected\" };\n }\n\n // Check 2: Alternation with overlapping terms (e.g., (a|a)+, (ab|a)+)\n if (/\\([^|)]*\\|[^)]*\\)[*+{]/.test(pattern)) {\n return { safe: false, reason: \"alternation with quantifier (potential overlap)\" };\n }\n\n // Check 3: Catastrophic backtracking patterns (e.g., (a*)*b, (a+)+b)\n if (/\\([^)]*[*+][^)]*\\)[*+]/.test(pattern)) {\n return { safe: false, reason: \"repeated quantifiers (catastrophic backtracking risk)\" };\n }\n\n // Check 4: Greedy quantifiers followed by optional patterns (e.g., .*.*x, .+.+x)\n if (/\\.\\*\\.\\*/.test(pattern) || /\\.\\+\\.\\+/.test(pattern)) {\n return { safe: false, reason: \"multiple greedy quantifiers on wildcards\" };\n }\n\n // Check 5: Unbounded ranges with wildcards (e.g., .{1,999999})\n const unboundedRange = /\\.?\\{(\\d+),(\\d+)\\}/g;\n let match;\n while ((match = unboundedRange.exec(pattern)) !== null) {\n const [, min, max] = match;\n const range = parseInt(max, 10) - parseInt(min, 10);\n if (range > 1000) {\n return { safe: false, reason: `excessive range: {${min},${max}}` };\n }\n }\n\n return { safe: true };\n }\n\n /**\n * Runtime test: Execute regex against adversarial inputs with timeout\n * @param regex - Compiled regex\n * @returns Object indicating if regex passed runtime test\n */\n function testRegexPerformance(regex: RegExp): { safe: boolean; reason?: string } {\n // Test inputs designed to trigger ReDoS in vulnerable patterns\n const adversarialInputs = [\n // Nested quantifier attack\n \"a\".repeat(50) + \"x\",\n // Alternation attack\n \"ab\".repeat(50) + \"x\",\n // Wildcard attack\n \"x\".repeat(100),\n // Mixed attack\n \"aaa\".repeat(30) + \"bbb\".repeat(30) + \"x\",\n ];\n\n const maxExecutionTime = 5; // 5ms hard limit per test\n\n for (const input of adversarialInputs) {\n const start = Date.now();\n try {\n regex.test(input);\n const duration = Date.now() - start;\n\n if (duration > maxExecutionTime) {\n return {\n safe: false,\n reason: `runtime test exceeded ${maxExecutionTime}ms (took ${duration}ms on input length ${input.length})`\n };\n }\n } catch (err) {\n return { safe: false, reason: `runtime test threw error: ${err}` };\n }\n }\n\n return { safe: true };\n }\n\n /**\n * Safely compile a regex pattern with defense-in-depth validation\n * @param pattern - Raw regex pattern string\n * @param maxLength - Maximum allowed pattern length (default 200)\n * @returns Compiled RegExp or null if invalid/unsafe\n */\n function safeCompileRegex(pattern: string, maxLength = 200): RegExp | null {\n // Use the module-level isDevelopment constant\n\n try {\n // Layer 1: Basic validation\n if (!pattern) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: empty pattern`);\n }\n return null;\n }\n\n if (pattern.length > maxLength) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: length ${pattern.length} exceeds max ${maxLength} - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n // Layer 2: Static ReDoS analysis\n const staticAnalysis = analyzeRedosRisk(pattern);\n if (!staticAnalysis.safe) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${staticAnalysis.reason}) - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n // Layer 3: Compilation attempt\n let regex: RegExp;\n try {\n regex = new RegExp(pattern);\n } catch (compileErr) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${pattern.substring(0, 50)}...`, compileErr);\n }\n return null;\n }\n\n // Layer 4: Runtime performance testing\n const runtimeTest = testRegexPerformance(regex);\n if (!runtimeTest.safe) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${runtimeTest.reason}) - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n return regex;\n } catch (err) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${pattern.substring(0, 50)}...`, err);\n }\n return null;\n }\n }\n\n /**\n * Set DMCA filtering lists\n * @param lists - DMCA lists object containing accounts/tags/posts arrays\n */\n export function setDmcaLists(\n lists: DmcaListsInput = {}\n ) {\n const coerceList = (value: unknown): string[] =>\n Array.isArray(value) ? value.filter((item): item is string => typeof item === \"string\") : [];\n\n // Ensure we have a valid object to work with\n const input = lists || {};\n\n const resolved = {\n accounts: coerceList(input.accounts),\n tags: coerceList(input.tags),\n patterns: coerceList(input.posts),\n };\n\n CONFIG.dmcaAccounts = resolved.accounts;\n CONFIG.dmcaTags = resolved.tags;\n CONFIG.dmcaPatterns = resolved.patterns;\n\n // Pre-compile tag regex patterns (tags can be regex)\n CONFIG.dmcaTagRegexes = resolved.tags\n .map((pattern) => safeCompileRegex(pattern))\n .filter((r): r is RegExp => r !== null);\n\n // Post patterns are plain strings for exact matching, not regex\n // No compilation needed - they will be used with simple string comparison\n CONFIG.dmcaPatternRegexes = [];\n\n const rejectedTagCount = resolved.tags.length - CONFIG.dmcaTagRegexes.length;\n\n // Only log once to avoid noise during builds/hot reloads\n // Only show in development mode to avoid cluttering production console\n // Use the module-level isDevelopment constant\n\n if (!CONFIG._dmcaInitialized && isDevelopment) {\n console.log(`[SDK] DMCA configuration loaded:`);\n console.log(` - Accounts: ${resolved.accounts.length}`);\n console.log(` - Tag patterns: ${CONFIG.dmcaTagRegexes.length}/${resolved.tags.length} compiled (${rejectedTagCount} rejected)`);\n console.log(` - Post patterns: ${resolved.patterns.length} (using exact string matching)`);\n\n if (rejectedTagCount > 0) {\n console.warn(`[SDK] ${rejectedTagCount} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`);\n }\n }\n\n CONFIG._dmcaInitialized = true;\n }\n}\n","import {\n InfiniteData,\n QueryClient,\n QueryKey,\n useInfiniteQuery,\n UseInfiniteQueryOptions,\n useQuery,\n UseQueryOptions,\n} from \"@tanstack/react-query\";\nimport { CONFIG } from \"./config\";\n\n/**\n * Builds a client with the SDK's defaults. It is only a factory — request\n * scoping is the host's job, via `ConfigManager.setQueryClientResolver`, since\n * only the host knows where one request ends and the next begins.\n */\nexport function makeQueryClient() {\n return new QueryClient({\n defaultOptions: {\n queries: {\n // With SSR, we usually want to set some default staleTime\n // above 0 to avoid refetching immediately on the client\n // staleTime: 60 * 1000,\n refetchOnWindowFocus: false,\n refetchOnMount: false,\n },\n },\n });\n}\nexport const getQueryClient = () => CONFIG.queryClient;\n\nexport namespace EcencyQueriesManager {\n export function getQueryData(queryKey: QueryKey) {\n const queryClient = getQueryClient();\n return queryClient.getQueryData(queryKey);\n }\n\n export function getInfiniteQueryData(queryKey: QueryKey) {\n const queryClient = getQueryClient();\n return queryClient.getQueryData>(queryKey);\n }\n\n export async function prefetchQuery(options: UseQueryOptions) {\n const queryClient = getQueryClient();\n await queryClient.prefetchQuery(options);\n return getQueryData(options.queryKey);\n }\n\n export async function prefetchInfiniteQuery(\n options: UseInfiniteQueryOptions<\n T,\n Error,\n InfiniteData,\n QueryKey,\n P\n >\n ) {\n const queryClient = getQueryClient();\n await queryClient.prefetchInfiniteQuery(options);\n return getInfiniteQueryData(options.queryKey);\n }\n\n export function generateClientServerQuery(options: UseQueryOptions) {\n return {\n prefetch: () => prefetchQuery(options),\n getData: () => getQueryData(options.queryKey),\n useClientQuery: () => useQuery(options),\n fetchAndGet: () => getQueryClient().fetchQuery(options),\n };\n }\n\n export function generateClientServerInfiniteQuery(\n options: UseInfiniteQueryOptions<\n T,\n Error,\n InfiniteData,\n QueryKey,\n P\n >\n ) {\n return {\n prefetch: () => prefetchInfiniteQuery(options),\n getData: () => getInfiniteQueryData(options.queryKey),\n useClientQuery: () => useInfiniteQuery(options),\n fetchAndGet: () => getQueryClient().fetchInfiniteQuery(options),\n };\n }\n}\n","export function encodeObj(o: any): string {\n return btoa(JSON.stringify(o));\n}\n\nexport function decodeObj(o: any): any {\n let dataToParse = atob(o);\n if (dataToParse[0] !== \"{\") {\n return undefined;\n }\n return JSON.parse(dataToParse);\n}\n","import type { SMTAsset } from \"@/modules/core/hive-tx\";\n\nexport enum Symbol {\n HIVE = \"HIVE\",\n HBD = \"HBD\",\n VESTS = \"VESTS\",\n}\n\nexport enum NaiMap {\n \"@@000000021\" = \"HIVE\",\n \"@@000000013\" = \"HBD\",\n \"@@000000037\" = \"VESTS\",\n}\n\nexport interface Asset {\n amount: number;\n symbol: Symbol;\n}\n\nexport function parseAsset(sval: string | SMTAsset): Asset {\n if (typeof sval === \"string\") {\n const sp = sval.split(\" \");\n return {\n amount: parseFloat(sp[0]),\n // @ts-ignore\n symbol: Symbol[sp[1]],\n };\n } else {\n return {\n amount: parseFloat(sval.amount.toString()) / Math.pow(10, sval.precision),\n // @ts-ignore\n symbol: NaiMap[sval.nai],\n };\n }\n}\n","let cachedFetch: typeof globalThis.fetch | undefined;\n\nexport function getBoundFetch() {\n if (!cachedFetch) {\n if (typeof globalThis.fetch !== \"function\") {\n throw new Error(\"[Ecency][SDK] - global fetch is not available\");\n }\n\n cachedFetch = globalThis.fetch.bind(globalThis);\n }\n\n return cachedFetch;\n}\n","export function isCommunity(value: unknown) {\n return typeof value === \"string\" ? /^hive-\\d+$/.test(value) : false;\n}\n","import { WrappedResponse } from \"../types/pagination\";\n\n/**\n * Type guard to check if response is wrapped with pagination metadata\n */\nexport function isWrappedResponse(response: any): response is WrappedResponse {\n return (\n response &&\n typeof response === \"object\" &&\n \"data\" in response &&\n \"pagination\" in response &&\n Array.isArray(response.data)\n );\n}\n\n/**\n * Normalize response to wrapped format for backwards compatibility\n * If the backend returns old format (array), convert it to wrapped format\n */\nexport function normalizeToWrappedResponse(\n response: T[] | WrappedResponse,\n limit: number\n): WrappedResponse {\n if (isWrappedResponse(response)) {\n return response;\n }\n\n // Old format - just an array\n // Since we don't have pagination metadata, assume no more pages\n return {\n data: Array.isArray(response) ? response : [],\n pagination: {\n total: Array.isArray(response) ? response.length : 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n}\n","export function vestsToHp(vests: number, hivePerMVests: number): number {\n return (vests / 1e6) * hivePerMVests;\n}\n","export function isEmptyDate(s: string | undefined): boolean {\n if (s === undefined) {\n return true;\n }\n\n return parseInt(s.split(\"-\")[0], 10) < 1980;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { DynamicProps } from \"../types\";\nimport { parseAsset } from \"../utils\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n// This query powers wallet/HP/reward math that should stay close to chain state.\n// Keep a short refresh cadence despite the 5 RPC calls.\nconst DYNAMIC_PROPS_REFRESH_MS = 60 * 1000;\n\nexport function getDynamicPropsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.core.dynamicProps(),\n refetchInterval: DYNAMIC_PROPS_REFRESH_MS,\n staleTime: DYNAMIC_PROPS_REFRESH_MS,\n queryFn: async ({ signal }): Promise => {\n // Get raw blockchain data — all five calls are independent, run in parallel.\n // Hardfork properties is wrapped with catch since not all nodes support it.\n const [rawGlobalDynamic, rawFeedHistory, rawChainProps, rawRewardFund, rawHardforkProps] = await Promise.all([\n callRPC(\"condenser_api.get_dynamic_global_properties\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_feed_history\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_chain_properties\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_reward_fund\", [\"post\"], undefined, undefined, signal),\n callRPC(\"database_api.get_hardfork_properties\", {}, undefined, undefined, signal)\n .catch(() => ({ current_hardfork_version: \"1.28.0\", last_hardfork: 28 })),\n ]) as [any, any, any, any, any];\n\n // Calculate derived values for backward compatibility\n // parseAsset handles both string format (\"200905388484 HIVE\") and NAI format ({ amount, nai, precision })\n const totalVestingSharesAmount = parseAsset(rawGlobalDynamic.total_vesting_shares).amount;\n const totalVestingFundAmount = parseAsset(rawGlobalDynamic.total_vesting_fund_hive).amount;\n\n // Guard against division by zero/NaN/Infinity\n let hivePerMVests = 0;\n if (\n Number.isFinite(totalVestingSharesAmount) &&\n totalVestingSharesAmount !== 0 &&\n Number.isFinite(totalVestingFundAmount)\n ) {\n hivePerMVests = (totalVestingFundAmount / totalVestingSharesAmount) * 1e6;\n }\n const base = parseAsset(rawFeedHistory.current_median_history.base).amount;\n const quote = parseAsset(rawFeedHistory.current_median_history.quote).amount;\n const fundRecentClaims = parseFloat(rawRewardFund.recent_claims);\n const fundRewardBalance = parseAsset(rawRewardFund.reward_balance).amount;\n const votePowerReserveRate = Number(rawGlobalDynamic.vote_power_reserve_rate ?? 0);\n const authorRewardCurve = rawRewardFund.author_reward_curve ?? \"linear\";\n const contentConstant = Number(rawRewardFund.content_constant ?? 0);\n const currentHardforkVersion = String(rawHardforkProps.current_hardfork_version ?? \"0.0.0\");\n const lastHardfork = Number(rawHardforkProps.last_hardfork ?? 0);\n const hbdPrintRate = rawGlobalDynamic.hbd_print_rate;\n const hbdInterestRate = rawGlobalDynamic.hbd_interest_rate;\n const headBlock = rawGlobalDynamic.head_block_number;\n const totalVestingFund = totalVestingFundAmount;\n const totalVestingShares = totalVestingSharesAmount;\n const virtualSupply = parseAsset(rawGlobalDynamic.virtual_supply).amount;\n const vestingRewardPercent = rawGlobalDynamic.vesting_reward_percent || 0;\n const accountCreationFee = rawChainProps.account_creation_fee;\n\n return {\n // Backward compatible transformed fields (camelCase, parsed)\n hivePerMVests,\n base,\n quote,\n fundRecentClaims,\n fundRewardBalance,\n votePowerReserveRate,\n authorRewardCurve,\n contentConstant,\n currentHardforkVersion,\n lastHardfork,\n hbdPrintRate,\n hbdInterestRate,\n headBlock,\n totalVestingFund,\n totalVestingShares,\n virtualSupply,\n vestingRewardPercent,\n accountCreationFee,\n\n // Raw blockchain data (snake_case, unparsed) for direct use\n // Includes ALL fields from the blockchain responses\n raw: {\n globalDynamic: rawGlobalDynamic,\n feedHistory: rawFeedHistory,\n chainProps: rawChainProps,\n rewardFund: rawRewardFund,\n hardforkProps: rawHardforkProps,\n },\n } as DynamicProps;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface RewardFund {\n id: number;\n name: string;\n reward_balance: string;\n recent_claims: string;\n last_update: string;\n content_constant: string;\n percent_curation_rewards: number;\n percent_content_rewards: number;\n author_reward_curve: string;\n curation_reward_curve: string;\n}\n\n/**\n * Get reward fund information from the blockchain\n * @param fundName - Name of the reward fund (default: 'post')\n */\nexport function getRewardFundQueryOptions(fundName = \"post\") {\n return queryOptions({\n queryKey: QueryKeys.core.rewardFund(fundName),\n queryFn: () =>\n callRPC(\"condenser_api.get_reward_fund\", [\n fundName,\n ]) as Promise,\n });\n}\n","/**\n * Centralized query key definitions for all SDK queries.\n *\n * These key builders are the single source of truth for React Query cache keys.\n * Both SDK query options and web app consumers should reference these\n * instead of using inline string arrays.\n *\n * @example\n * ```typescript\n * import { QueryKeys } from \"@ecency/sdk\";\n *\n * // In query options\n * queryKey: QueryKeys.posts.entry(`/@${author}/${permlink}`)\n *\n * // In cache invalidation\n * queryClient.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) })\n * ```\n */\n/** Strip trailing undefined values so the key works as a prefix for partialMatchKey */\nfunction key(...parts: unknown[]): unknown[] {\n let end = parts.length;\n while (end > 0 && parts[end - 1] === undefined) {\n end--;\n }\n return parts.slice(0, end);\n}\n\nexport const QueryKeys = {\n // ===========================================================================\n // Posts\n // ===========================================================================\n posts: {\n entry: (entryPath: string) => [\"posts\", \"entry\", entryPath],\n postHeader: (author: string, permlink?: string) =>\n [\"posts\", \"post-header\", author, permlink],\n content: (author: string, permlink: string) =>\n [\"posts\", \"content\", author, permlink],\n contentReplies: (author: string, permlink: string) =>\n [\"posts\", \"content-replies\", author, permlink],\n accountPosts: (\n username: string,\n filter: string,\n limit: number,\n observer: string\n ) => [\"posts\", \"account-posts\", username, filter, limit, observer],\n accountPostsPage: (\n username: string,\n filter: string,\n startAuthor: string,\n startPermlink: string,\n limit: number,\n observer: string\n ) =>\n [\n \"posts\",\n \"account-posts-page\",\n username,\n filter,\n startAuthor,\n startPermlink,\n limit,\n observer,\n ],\n userPostVote: (username: string, author: string, permlink: string) =>\n [\"posts\", \"user-vote\", username, author, permlink],\n reblogs: (username: string, limit: number) =>\n [\"posts\", \"reblogs\", username, limit],\n entryActiveVotes: (author?: string, permlink?: string) =>\n [\"posts\", \"entry-active-votes\", author, permlink],\n rebloggedBy: (author: string, permlink: string) =>\n [\"posts\", \"reblogged-by\", author, permlink],\n tips: (author: string, permlink: string) =>\n [\"posts\", \"tips\", author, permlink],\n normalize: (author: string, permlink: string) =>\n [\"posts\", \"normalize\", author, permlink],\n drafts: (activeUsername?: string) =>\n [\"posts\", \"drafts\", activeUsername],\n draftsInfinite: (activeUsername?: string, limit?: number) =>\n key(\"posts\", \"drafts\", \"infinite\", activeUsername, limit),\n schedules: (activeUsername?: string) =>\n [\"posts\", \"schedules\", activeUsername],\n schedulesInfinite: (activeUsername?: string, limit?: number) =>\n key(\"posts\", \"schedules\", \"infinite\", activeUsername, limit),\n fragments: (username?: string) =>\n [\"posts\", \"fragments\", username],\n fragmentsInfinite: (username?: string, limit?: number) =>\n key(\"posts\", \"fragments\", \"infinite\", username, limit),\n images: (username?: string) => [\"posts\", \"images\", username],\n galleryImages: (activeUsername?: string) =>\n [\"posts\", \"gallery-images\", activeUsername],\n imagesInfinite: (username?: string, limit?: number) =>\n key(\"posts\", \"images\", \"infinite\", username, limit),\n promoted: (type: string) => [\"posts\", \"promoted\", type],\n _promotedPrefix: [\"posts\", \"promoted\"],\n accountPostsBlogPrefix: (username: string) =>\n [\"posts\", \"account-posts\", username, \"blog\"] as const,\n postsRanked: (\n sort: string,\n tag: string,\n limit: number,\n observer: string\n ) => [\"posts\", \"posts-ranked\", sort, tag, limit, observer],\n postsRankedPage: (\n sort: string,\n startAuthor: string,\n startPermlink: string,\n limit: number,\n tag: string,\n observer: string\n ) =>\n [\n \"posts\",\n \"posts-ranked-page\",\n sort,\n startAuthor,\n startPermlink,\n limit,\n tag,\n observer,\n ],\n discussions: (\n author: string,\n permlink: string,\n order: string,\n observer: string\n ) => [\"posts\", \"discussions\", author, permlink, order, observer],\n discussion: (author: string, permlink: string, observer: string) =>\n [\"posts\", \"discussion\", author, permlink, observer],\n deletedEntry: (entryPath: string) =>\n [\"posts\", \"deleted-entry\", entryPath],\n commentHistory: (\n author: string,\n permlink: string,\n onlyMeta: boolean\n ) => [\"posts\", \"comment-history\", author, permlink, onlyMeta],\n trendingTags: () => [\"posts\", \"trending-tags\"],\n trendingTagsWithStats: (limit: number) =>\n [\"posts\", \"trending-tags\", \"stats\", limit],\n wavesFeed: (\n params: {\n containers?: string[];\n tag?: string;\n following?: string;\n author?: string;\n observer?: string;\n limit?: number;\n } = {}\n ) => [\n \"posts\",\n \"waves\",\n \"feed\",\n params.tag ?? \"\",\n params.following ?? \"\",\n params.author ?? \"\",\n params.observer ?? \"\",\n params.limit ?? 0,\n [...(params.containers ?? [])].sort().join(\",\")\n ],\n shortsFeed: (\n params: {\n containers?: string[];\n tag?: string;\n author?: string;\n observer?: string;\n limit?: number;\n } = {}\n ) => [\n \"posts\",\n \"waves\",\n \"shorts\",\n params.tag ?? \"\",\n params.author ?? \"\",\n params.observer ?? \"\",\n params.limit ?? 0,\n [...(params.containers ?? [])].sort().join(\",\")\n ],\n wavesByHost: (host: string) =>\n [\"posts\", \"waves\", \"by-host\", host],\n wavesByTag: (host: string, tag: string) =>\n [\"posts\", \"waves\", \"by-tag\", host, tag],\n wavesFollowing: (host: string, username: string) =>\n [\"posts\", \"waves\", \"following\", host, username],\n wavesTrendingTags: (host: string, hours: number) =>\n [\"posts\", \"waves\", \"trending-tags\", host, hours],\n wavesByAccount: (host: string, username: string) =>\n [\"posts\", \"waves\", \"by-account\", host, username],\n wavesTrendingAuthors: (host: string) =>\n [\"posts\", \"waves\", \"trending-authors\", host],\n _prefix: [\"posts\"],\n },\n\n // ===========================================================================\n // Accounts\n // ===========================================================================\n accounts: {\n full: (username?: string) => [\"get-account-full\", username],\n list: (...usernames: string[]) =>\n [\"accounts\", \"list\", ...usernames],\n friends: (\n following: string,\n mode: string,\n followType: string,\n limit: number\n ) => [\"accounts\", \"friends\", following, mode, followType, limit],\n searchFriends: (username: string, mode: string, query: string) =>\n [\"accounts\", \"friends\", \"search\", username, mode, query],\n subscriptions: (username: string) =>\n [\"accounts\", \"subscriptions\", username],\n followCount: (username: string) =>\n [\"accounts\", \"follow-count\", username],\n recoveries: (username: string) =>\n [\"accounts\", \"recoveries\", username],\n pendingRecovery: (username: string) =>\n [\"accounts\", \"recoveries\", username, \"pending-request\"],\n checkWalletPending: (username: string, code: string | null) =>\n [\"accounts\", \"check-wallet-pending\", username, code],\n mutedUsers: (username: string) =>\n [\"accounts\", \"muted-users\", username],\n following: (\n follower: string,\n startFollowing: string,\n followType: string,\n limit: number\n ) =>\n [\n \"accounts\",\n \"following\",\n follower,\n startFollowing,\n followType,\n limit,\n ],\n followers: (\n following: string,\n startFollower: string,\n followType: string,\n limit: number\n ) =>\n [\n \"accounts\",\n \"followers\",\n following,\n startFollower,\n followType,\n limit,\n ],\n search: (query: string, excludeList?: string[]) =>\n [\"accounts\", \"search\", query, excludeList],\n profiles: (accounts: string[], observer: string) =>\n [\"accounts\", \"profiles\", accounts, observer],\n lookup: (query: string, limit: number) =>\n [\"accounts\", \"lookup\", query, limit],\n transactions: (username: string, group: string, limit: number) =>\n [\"accounts\", \"transactions\", username, group, limit],\n favorites: (activeUsername?: string) =>\n [\"accounts\", \"favorites\", activeUsername],\n favoritesInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"favorites\", \"infinite\", activeUsername, limit),\n checkFavorite: (activeUsername: string, targetUsername: string) =>\n [\n \"accounts\",\n \"favorites\",\n \"check\",\n activeUsername,\n targetUsername,\n ],\n favoriteTags: (activeUsername?: string) =>\n [\"accounts\", \"favorite-tags\", activeUsername],\n favoriteTagsInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"favorite-tags\", \"infinite\", activeUsername, limit),\n checkFavoriteTag: (activeUsername: string, tag: string) =>\n [\"accounts\", \"favorite-tags\", \"check\", activeUsername, tag],\n relations: (reference: string | undefined, target: string | undefined) =>\n [\"accounts\", \"relations\", reference, target],\n bots: () => [\"accounts\", \"bots\"],\n voteHistory: (username: string, limit: number) =>\n [\"accounts\", \"vote-history\", username, limit],\n reputations: (query: string, limit: number) =>\n [\"accounts\", \"reputations\", query, limit],\n bookmarks: (activeUsername?: string) =>\n [\"accounts\", \"bookmarks\", activeUsername],\n bookmarksInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"bookmarks\", \"infinite\", activeUsername, limit),\n referrals: (username: string) =>\n [\"accounts\", \"referrals\", username],\n referralsStats: (username: string) =>\n [\"accounts\", \"referrals-stats\", username],\n proMembers: () => [\"accounts\", \"pro-members\"],\n _prefix: [\"accounts\"],\n },\n\n // ===========================================================================\n // Notifications\n // ===========================================================================\n notifications: {\n announcements: () => [\"notifications\", \"announcements\"],\n spotlights: () => [\"notifications\", \"spotlights\"],\n list: (activeUsername?: string, filter?: string) =>\n [\"notifications\", activeUsername, filter],\n unreadCount: (activeUsername?: string) =>\n [\"notifications\", \"unread\", activeUsername],\n settings: (activeUsername?: string) =>\n [\"notifications\", \"settings\", activeUsername],\n _prefix: [\"notifications\"],\n },\n\n // ===========================================================================\n // Core\n // ===========================================================================\n core: {\n rewardFund: (fundName: string) =>\n [\"core\", \"reward-fund\", fundName],\n dynamicProps: () => [\"core\", \"dynamic-props\"],\n chainProperties: () => [\"core\", \"chain-properties\"],\n _prefix: [\"core\"],\n },\n\n // ===========================================================================\n // Communities\n // ===========================================================================\n communities: {\n single: (name?: string, observer?: string) =>\n [\"community\", \"single\", name, observer],\n /** Prefix key for matching all observer variants of a community */\n singlePrefix: (name: string) =>\n [\"community\", \"single\", name] as const,\n context: (username: string, communityName: string) =>\n [\"community\", \"context\", username, communityName],\n rewarded: () => [\"communities\", \"rewarded\"],\n list: (sort: string, query: string, limit: number) =>\n [\"communities\", \"list\", sort, query, limit],\n subscribers: (communityName: string) =>\n [\"communities\", \"subscribers\", communityName],\n subscribersInfinite: (communityName: string) =>\n [\"communities\", \"subscribers\", \"infinite\", communityName],\n accountNotifications: (account: string, limit: number) =>\n [\"communities\", \"account-notifications\", account, limit],\n },\n\n // ===========================================================================\n // Proposals\n // ===========================================================================\n proposals: {\n list: () => [\"proposals\", \"list\"],\n proposal: (id: number) => [\"proposals\", \"proposal\", id],\n votes: (proposalId: number, voter: string, limit: number) =>\n [\"proposals\", \"votes\", proposalId, voter, limit],\n votesPrefix: (proposalId: number) =>\n [\"proposals\", \"votes\", proposalId] as const,\n votesByUser: (voter: string) =>\n [\"proposals\", \"votes\", \"by-user\", voter],\n },\n\n // ===========================================================================\n // Search\n // ===========================================================================\n search: {\n topics: (q: string, limit: number) => [\"search\", \"topics\", q, limit],\n path: (q: string) => [\"search\", \"path\", q],\n account: (q: string, limit: number) =>\n [\"search\", \"account\", q, limit],\n results: (\n q: string,\n sort: string,\n hideLow: boolean | string,\n since?: string,\n scrollId?: string,\n votes?: number\n ) => {\n const normalizedHideLow = typeof hideLow === \"string\" ? hideLow === \"1\" || hideLow === \"true\" : hideLow;\n return [\"search\", q, sort, normalizedHideLow, since, scrollId, votes] as const;\n },\n controversialRising: (what: string, tag: string) =>\n [\"search\", \"controversial-rising\", what, tag],\n similarEntries: (author: string, permlink: string, content?: string) =>\n content\n ? [\"search\", \"similar-entries\", author, permlink, content]\n : [\"search\", \"similar-entries\", author, permlink],\n api: (\n q: string,\n sort: string,\n hideLow: boolean,\n since?: string,\n votes?: number,\n includeNsfw?: boolean\n ) => key(\"search\", \"api\", q, sort, hideLow, since, votes, includeNsfw),\n },\n\n // ===========================================================================\n // Witnesses\n // ===========================================================================\n witnesses: {\n list: (limit: number) => [\"witnesses\", \"list\", limit],\n votes: (username: string | undefined) => [\"witnesses\", \"votes\", username],\n proxy: () => [\"witnesses\", \"proxy\"],\n voters: (\n witness: string,\n page: number,\n pageSize: number,\n sort: string,\n direction: string\n ) => [\"witnesses\", \"voters\", witness, page, pageSize, sort, direction],\n voterCount: (witness: string) =>\n [\"witnesses\", \"voter-count\", witness],\n },\n\n // ===========================================================================\n // Wallet\n // ===========================================================================\n wallet: {\n outgoingRcDelegations: (username: string, limit: number) =>\n [\"wallet\", \"outgoing-rc-delegations\", username, limit],\n vestingDelegations: (username: string, limit: number) =>\n [\"wallet\", \"vesting-delegations\", username, limit],\n withdrawRoutes: (account: string) =>\n [\"wallet\", \"withdraw-routes\", account],\n incomingRc: (username: string) =>\n [\"wallet\", \"incoming-rc\", username],\n conversionRequests: (account: string) =>\n [\"wallet\", \"conversion-requests\", account],\n receivedVestingShares: (username: string) =>\n [\"wallet\", \"received-vesting-shares\", username],\n savingsWithdraw: (account: string) =>\n [\"wallet\", \"savings-withdraw\", account],\n openOrders: (user: string) =>\n [\"wallet\", \"open-orders\", user],\n collateralizedConversionRequests: (account: string) =>\n [\"wallet\", \"collateralized-conversion-requests\", account],\n recurrentTransfers: (username: string) =>\n [\"wallet\", \"recurrent-transfers\", username],\n balanceHistory: (username: string, coinType: string, pageSize: number) =>\n [\"wallet\", \"balance-history\", username, coinType, pageSize],\n aggregatedHistory: (\n username: string,\n coinType: string,\n granularity?: \"yearly\" | \"monthly\" | \"daily\"\n ) =>\n granularity === undefined\n ? [\"wallet\", \"aggregated-history\", username, coinType]\n : [\"wallet\", \"aggregated-history\", username, coinType, granularity],\n portfolio: (\n username: string,\n onlyEnabled: string,\n currency: string\n ) =>\n [\"wallet\", \"portfolio\", \"v2\", username, onlyEnabled, currency],\n },\n\n // ===========================================================================\n // Assets\n // ===========================================================================\n assets: {\n hiveGeneralInfo: (username: string) =>\n [\"assets\", \"hive\", \"general-info\", username],\n hiveTransactions: (username: string, limit: number, filterKey: string) =>\n [\"assets\", \"hive\", \"transactions\", username, limit, filterKey],\n hiveWithdrawalRoutes: (username: string) =>\n [\"assets\", \"hive\", \"withdrawal-routes\", username],\n hiveMetrics: (bucketSeconds: number) =>\n [\"assets\", \"hive\", \"metrics\", bucketSeconds],\n hbdGeneralInfo: (username: string) =>\n [\"assets\", \"hbd\", \"general-info\", username],\n hbdTransactions: (\n username: string,\n limit: number,\n filterKey: string\n ) => [\"assets\", \"hbd\", \"transactions\", username, limit, filterKey],\n hivePowerGeneralInfo: (username: string) =>\n [\"assets\", \"hive-power\", \"general-info\", username],\n hivePowerDelegates: (username: string) =>\n [\"assets\", \"hive-power\", \"delegates\", username],\n hivePowerDelegatings: (username: string) =>\n [\"assets\", \"hive-power\", \"delegatings\", username],\n hivePowerTransactions: (\n username: string,\n limit: number,\n filterKey: string\n ) =>\n [\n \"assets\",\n \"hive-power\",\n \"transactions\",\n username,\n limit,\n filterKey,\n ],\n pointsGeneralInfo: (username: string) =>\n [\"assets\", \"points\", \"general-info\", username],\n pointsTransactions: (username: string, type: string) =>\n [\"assets\", \"points\", \"transactions\", username, type],\n ecencyAssetInfo: (username: string, asset: string, currency: string) =>\n [\"ecency-wallets\", \"asset-info\", username, asset, currency],\n },\n\n // ===========================================================================\n // Market\n // ===========================================================================\n market: {\n statistics: () => [\"market\", \"statistics\"],\n orderBook: (limit: number) => [\"market\", \"order-book\", limit],\n history: (seconds: number, startDate: number, endDate: number) =>\n [\"market\", \"history\", seconds, startDate, endDate],\n feedHistory: () => [\"market\", \"feed-history\"],\n hiveHbdStats: () => [\"market\", \"hive-hbd-stats\"],\n data: (\n coin: string,\n vsCurrency: string,\n fromTs: number,\n toTs: number\n ) => [\"market\", \"data\", coin, vsCurrency, fromTs, toTs],\n tradeHistory: (limit: number, start: number, end: number) =>\n [\"market\", \"trade-history\", limit, start, end],\n currentMedianHistoryPrice: () =>\n [\"market\", \"current-median-history-price\"],\n },\n\n // ===========================================================================\n // Analytics\n // ===========================================================================\n analytics: {\n discoverCuration: (duration: string) =>\n [\"analytics\", \"discover-curation\", duration],\n pageStats: (\n url: string,\n dimensions: string,\n metrics: string,\n dateRange: string\n ) =>\n [\"analytics\", \"page-stats\", url, dimensions, metrics, dateRange],\n discoverLeaderboard: (duration: string) =>\n [\"analytics\", \"discover-leaderboard\", duration],\n },\n\n // ===========================================================================\n // Promotions\n // ===========================================================================\n promotions: {\n promotePrice: () => [\"promotions\", \"promote-price\"],\n boostPlusPrices: () => [\"promotions\", \"boost-plus-prices\"],\n boostPlusAccounts: (account: string) =>\n [\"promotions\", \"boost-plus-accounts\", account],\n },\n\n // ===========================================================================\n // Resource Credits\n // ===========================================================================\n resourceCredits: {\n account: (username: string) =>\n [\"resource-credits\", \"account\", username],\n stats: () => [\"resource-credits\", \"stats\"],\n resourceParams: () => [\"resource-credits\", \"resource-params\"],\n },\n\n // ===========================================================================\n // Points\n // ===========================================================================\n points: {\n points: (username: string, filter: number) =>\n [\"points\", username, filter],\n _prefix: (username: string) => [\"points\", username],\n },\n\n // ===========================================================================\n // Polls\n // ===========================================================================\n polls: {\n details: (author: string, permlink: string) =>\n [\"polls\", \"details\", author, permlink],\n vote: (author?: string, permlink?: string) =>\n author && permlink\n ? [\"polls\", \"vote\", author, permlink]\n : [\"polls\", \"vote\"],\n _prefix: [\"polls\"],\n },\n\n // ===========================================================================\n // Operations\n // ===========================================================================\n operations: {\n chainProperties: () => [\"operations\", \"chain-properties\"],\n },\n\n // ===========================================================================\n // Games\n // ===========================================================================\n games: {\n statusCheck: (gameType: string, username: string) =>\n [\"games\", \"status-check\", gameType, username],\n },\n\n quests: {\n status: (username: string | undefined) => [\"quests\", \"status\", username],\n },\n\n // ===========================================================================\n // Newsletter (digest subscriptions + sender API)\n // ===========================================================================\n newsletter: {\n subscriptions: (username: string | undefined) => [\n \"newsletter\",\n \"subscriptions\",\n username,\n ],\n sender: (type: string, target: string, username: string | undefined) => [\n \"newsletter\",\n \"sender\",\n type,\n target,\n username,\n ],\n issues: (type: string, target: string, username: string | undefined) => [\n \"newsletter\",\n \"issues\",\n type,\n target,\n username,\n ],\n posts: (\n type: string,\n target: string,\n username: string | undefined,\n limit: number,\n ) => [\"newsletter\", \"posts\", type, target, username, limit],\n _prefix: [\"newsletter\"],\n },\n\n // ===========================================================================\n // Support Ecency\n // ===========================================================================\n support: {\n settings: (username: string | undefined) => [\"support\", \"settings\", username],\n _prefix: [\"support\"],\n },\n\n // ===========================================================================\n // Bad Actors\n // ===========================================================================\n badActors: {\n list: () => [\"bad-actors\", \"list\"],\n _prefix: [\"bad-actors\"],\n },\n\n // ===========================================================================\n // Curation desk\n // ===========================================================================\n curation: {\n /** Public feed; `params` is the normalized (defaults dropped) param map. */\n feed: (params: Record = {}) => [\"curation\", \"feed\", params],\n /** Authed roster feed; every sort and filter value is on the key. */\n rosterFeed: (username: string | undefined, params: Record = {}) => [\n \"curation\",\n \"roster-feed\",\n username,\n params,\n ],\n status: () => [\"curation\", \"status\"],\n roster: () => [\"curation\", \"roster\"],\n /**\n * The admin view of the roster: private, per viewer, never shared with the public key.\n * `rosterAdminPrefix` covers every viewer's copy, because the roster it describes is\n * shared: a write by one admin makes the cached copy of any other one stale.\n */\n rosterAdmin: (username: string | undefined) => [\"curation\", \"roster-admin\", username],\n rosterAdminPrefix: () => [\"curation\", \"roster-admin\"],\n recommendations: (params: Record = {}) => [\n \"curation\",\n \"recommendations\",\n params,\n ],\n _recommendationsPrefix: [\"curation\", \"recommendations\"],\n post: (author: string, permlink: string) => [\"curation\", \"post\", author, permlink],\n /** Route 14: one recommender's 90-day scorecard. */\n recommender: (username: string) => [\"curation\", \"recommender\", username],\n /** Mutation key of the recommend and unrecommend broadcast. */\n recommend: () => [\"curation\", \"recommend\"],\n _prefix: [\"curation\"],\n },\n\n // ===========================================================================\n // AI\n // ===========================================================================\n ai: {\n prices: () => [\"ai\", \"prices\"] as const,\n assistPrices: (username?: string) => [\"ai\", \"assist-prices\", username] as const,\n transcribePrice: (username?: string) => [\"ai\", \"transcribe-price\", username] as const,\n images: (username?: string) => [\"ai\", \"images\", username] as const,\n _prefix: [\"ai\"],\n },\n} as const;\n","/**\n * UTF-8 byte length of a string.\n *\n * `TextEncoder` is missing on some runtimes the SDK ships to (React Native /\n * Hermes), and `String.length` is NOT a substitute: it counts UTF-16 code\n * units, so anything non-ASCII is undercounted. Where that number feeds an RC\n * estimate, undercounting means telling someone a post is affordable when the\n * chain will reject it.\n */\nexport function utf8ByteLength(value: string): number {\n if (typeof TextEncoder !== \"undefined\") {\n return new TextEncoder().encode(value).length;\n }\n\n let bytes = 0;\n for (let i = 0; i < value.length; i++) {\n const c = value.charCodeAt(i);\n if (c < 0x80) {\n bytes += 1;\n } else if (c < 0x800) {\n bytes += 2;\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < value.length) {\n // surrogate pair encodes as four bytes\n i++;\n bytes += 4;\n } else {\n bytes += 3;\n }\n }\n return bytes;\n}\n\n/** Byte length of Hive's unsigned LEB128 varint for `value`. */\nexport function varintByteLength(value: number): number {\n let count = 0;\n let remaining = value;\n do {\n count++;\n remaining >>>= 7;\n } while (remaining > 0);\n return count;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiImagePriceResponse } from \"../types\";\n\nexport function getAiGeneratePriceQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.prices(),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-generate-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI generation prices: ${response.status}`);\n }\n\n return (await response.json()) as AiImagePriceResponse;\n },\n staleTime: 300_000,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiImageHistoryItem } from \"../types\";\n\n/**\n * Per-user AI image generation history (the backend's last 20 successful generations).\n * The backend resolves the user from the validated code, so no username is sent; the\n * key still carries it so each account caches its own history.\n */\nexport function getAiImagesQueryOptions(username: string | undefined, accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.images(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-images\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI image history: ${response.status}`);\n }\n\n return (await response.json()) as AiImageHistoryItem[];\n },\n staleTime: 30_000,\n // This list is a recovery surface: a generation can complete server-side while the\n // client saw only an error, in which case no success-path invalidation ever runs.\n // Every mount of the history view therefore refetches unconditionally, so opening\n // the tab always shows what the server actually delivered.\n refetchOnMount: \"always\",\n enabled: !!username && !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiAssistPrice } from \"../types\";\n\nexport function getAiAssistPriceQueryOptions(username: string | undefined, accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.assistPrices(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-assist-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI assist prices: ${response.status}`);\n }\n\n return (await response.json()) as AiAssistPrice[];\n },\n staleTime: 60_000,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiTranscribePrice } from \"../types\";\n\n/**\n * Dictation pricing. Kept on its own route rather than folded into\n * /private-api/ai-assist-price: that endpoint returns a list of flat-cost actions and\n * shipped clients render every entry as a selectable assist action, so adding a\n * metered one there would surface in older clients as an action they cannot perform.\n *\n * Everything except `free_remaining` is static, so this is cheap to hold and lets the\n * client price a clip locally while the user is still recording.\n */\nexport function getAiTranscribePriceQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.ai.transcribePrice(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-transcribe-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\"\n },\n body: JSON.stringify({ code: accessToken })\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI transcribe price: ${response.status}`);\n }\n\n return (await response.json()) as AiTranscribePrice;\n },\n staleTime: 60_000,\n enabled: !!accessToken\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiGenerationResponse } from \"../types\";\n\nexport interface GenerateImageParams {\n prompt: string;\n aspect_ratio?: string;\n power?: number;\n // Pass a stable key to make a retry recover the same paid generation. If omitted a\n // fresh key is generated per call (only dedupes edge/proxy retries, not user retries).\n idempotency_key?: string;\n}\n\n// Generates a key matching the eepoints validator [A-Za-z0-9_-]{8,64}.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\n// What a completed generation invalidates: the Points balance (it changed) and the\n// per-user generation history (the new image belongs there right away). Exported so the\n// side effect stays unit-testable without rendering the hook.\nexport function invalidateGenerateImageCaches(username: string) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username),\n });\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.images(username),\n });\n}\n\nexport function useGenerateImage(\n username: string | undefined,\n accessToken: string | undefined,\n) {\n return useMutation({\n mutationKey: [\"ai\", \"generate-image\"],\n mutationFn: async (params: GenerateImageParams): Promise => {\n if (!username) {\n throw new Error(\n \"[SDK][AI][GenerateImage] – username wasn't provided\"\n );\n }\n\n if (!accessToken) {\n throw new Error(\n \"[SDK][AI][GenerateImage] – access token wasn't found\"\n );\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/ai-generate-image\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code: accessToken,\n us: username,\n prompt: params.prompt,\n aspect_ratio: params.aspect_ratio ?? \"1:1\",\n power: params.power ?? 1,\n idempotency_key: params.idempotency_key ?? makeIdempotencyKey(),\n }),\n }\n );\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n const err = new Error(\n `[SDK][AI][GenerateImage] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n );\n (err as any).status = response.status;\n (err as any).data = parsed;\n throw err;\n }\n\n // 202 = the prediction is paid for and captured but not yet delivered to our image\n // host. Detect it by HTTP status BEFORE parsing (the body may be present or empty)\n // and surface it as a typed error so the caller can retry with the SAME\n // idempotency_key to fetch it — no second prediction, no second charge.\n if (response.status === 202) {\n let pendingData: Record = {};\n try {\n pendingData = await response.json();\n } catch {\n // empty / non-JSON 202 body is fine — the status alone drives recovery\n }\n const err = new Error(\"[SDK][AI][GenerateImage] – delivery pending\");\n (err as any).status = 202;\n (err as any).data = pendingData;\n throw err;\n }\n\n const data = (await response.json()) as AiGenerationResponse;\n\n return data;\n },\n onSuccess: () => {\n if (username) {\n invalidateGenerateImageCaches(username);\n }\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiAssistResponse } from \"../types\";\n\nexport interface AiAssistParams {\n action: string;\n text: string;\n code?: string;\n}\n\n// Generates a key that matches the eepoints validator [A-Za-z0-9_-]{8,64}.\n// Used to dedupe duplicate POSTs caused by edge/proxy retries — same key on\n// retry returns the cached AI output without re-charging or re-calling Claude.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\nexport function useAiAssist(\n username: string | undefined,\n accessToken: string | undefined,\n) {\n return useMutation({\n mutationKey: [\"ai\", \"assist\"],\n mutationFn: async (params: AiAssistParams): Promise => {\n if (!username) {\n throw new Error(\n \"[SDK][AI][Assist] – username wasn't provided\"\n );\n }\n\n if (!accessToken) {\n throw new Error(\n \"[SDK][AI][Assist] – access token wasn't found\"\n );\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/ai-assist\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code: params.code ?? accessToken,\n us: username,\n action: params.action,\n text: params.text,\n idempotency_key: makeIdempotencyKey(),\n }),\n }\n );\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n const err = new Error(\n `[SDK][AI][Assist] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n );\n (err as any).status = response.status;\n (err as any).data = parsed;\n throw err;\n }\n\n return (await response.json()) as AiAssistResponse;\n },\n onSuccess: (data) => {\n if (username) {\n // Invalidate points cache if cost was charged\n if (data.cost > 0) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username),\n });\n }\n // Invalidate assist prices to refresh free_remaining counts\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.assistPrices(username),\n });\n }\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiTranscribeParams, AiTranscribeResponse } from \"../types\";\n\n// Matches the eepoints validator [A-Za-z0-9_-]{8,64}. Dedupes duplicate POSTs caused\n// by edge/proxy retries -- the same key returns the cached transcript without\n// re-charging or re-calling the vendor.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\n/**\n * Transcribe an audio clip to text, charged per 30 seconds.\n *\n * Sends multipart/form-data rather than JSON because it carries a file. Unlike the\n * other AI mutations the charge is BURNED rather than moved to the treasury, so the\n * points transaction shows up as PointTransactionType.BURNED (997).\n */\nexport function useAiTranscribe(username: string | undefined, accessToken: string | undefined) {\n return useMutation({\n mutationKey: [\"ai\", \"transcribe\"],\n mutationFn: async (params: AiTranscribeParams): Promise => {\n if (!username) {\n throw new Error(\"[SDK][AI][Transcribe] – username wasn't provided\");\n }\n\n // Validate the token actually being sent, not just the bound one. A caller\n // that resolves a fresh token per call (because the bound one can expire\n // during a long recording) legitimately has nothing at hook construction.\n const code = params.code ?? accessToken;\n if (!code) {\n throw new Error(\"[SDK][AI][Transcribe] – access token wasn't found\");\n }\n\n const form = new FormData();\n form.append(\"code\", code);\n // `us` is resolved from the code server-side and is deliberately not sent:\n // upstream burns from whoever it names.\n form.append(\"duration_ms\", String(Math.round(params.durationMs)));\n // Caller-supplied key when there is one. Generating a fresh key per attempt\n // would defeat the dedupe in the one case it exists for: a POST that reached\n // the server whose response was lost. Retrying then would transcribe and\n // charge a second time. Same contract as useGenerateImage.\n form.append(\"idempotency_key\", params.idempotency_key ?? makeIdempotencyKey());\n form.append(\"audio\", params.audio, params.fileName ?? \"clip.webm\");\n\n const fetchApi = getBoundFetch();\n // No Content-Type header: fetch sets it, including the multipart boundary.\n // Setting it by hand drops the boundary and the body becomes unparseable.\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-transcribe\", {\n method: \"POST\",\n body: form\n });\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n // Object.assign rather than `as any` casts: callers need `status` to tell a\n // 402 (out of Points) from a 429 (rate limited) from a 400 (clip too long),\n // and this keeps that shape typed.\n throw Object.assign(\n new Error(\n `[SDK][AI][Transcribe] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n ),\n { status: response.status, data: parsed }\n );\n }\n\n return (await response.json()) as AiTranscribeResponse;\n },\n onSuccess: (data) => {\n if (username) {\n if (data.cost > 0) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username)\n });\n }\n // Refresh free_remaining, which only Pro members ever have above zero.\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.transcribePrice(username)\n });\n }\n }\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport {\n AccountFollowStats,\n FullAccount,\n} from \"../types\";\nimport { parseProfileMetadata } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/** The raw `condenser_api.get_accounts` row — every FullAccount field except the three\n * this query derives separately (follow_stats + reputation from bridge, profile parsed). */\ntype RawAccount = Omit;\n\n/** Minimal shape read from `bridge.get_profile` (hivemind social profile): it carries\n * the reputation score, the follower/following counts and hivemind's parsed\n * (normalized) profile — the latter is used only to cross-validate the chain row. */\ninterface BridgeProfile {\n reputation?: number;\n stats?: { followers?: number; following?: number };\n metadata?: { profile?: Record };\n}\n\n/** True when the chain row carries no account metadata at all. Legitimate for\n * accounts that never set a profile — but combined with a populated hivemind\n * profile it identifies a node serving stripped account rows. */\nfunction isMetadataStripped(account: RawAccount): boolean {\n return !account.posting_json_metadata && !account.json_metadata;\n}\n\n/** True when a hivemind `metadata.profile` object carries at least one real\n * value. Hivemind emits its fixed profile keys with empty strings for\n * accounts without a profile, so key presence alone proves nothing. */\nfunction hasProfileValues(profile?: Record | null): boolean {\n if (!profile) return false;\n return Object.values(profile).some((value) =>\n typeof value === \"string\" ? value.length > 0 : value != null\n );\n}\n\nexport function getAccountFullQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: QueryKeys.accounts.full(username),\n queryFn: async ({ signal }) => {\n if (!username) {\n return null;\n }\n\n // Fetch the chain account (balances/keys/vesting) and the hivemind profile in\n // parallel — both only need the username. bridge.get_profile carries BOTH the\n // follower/following counts and the reputation score, so it replaces the old\n // second-layer condenser_api.get_follow_count RPC *and* the reputation-api REST\n // call: condenser_api.get_accounts no longer returns a usable reputation (it is 0\n // since the hardfork), and there is no reason to make two extra round-trips for\n // data one profile object already carries.\n const [response, bridgeProfile] = await Promise.all([\n callRPC(\n \"condenser_api.get_accounts\",\n [[username]],\n undefined,\n undefined,\n signal,\n // A correct node always answers get_accounts with an array — a null\n // result in a well-formed envelope is a node fault (observed in the\n // wild), so fail over to the next node instead of misreading it as\n // \"account does not exist\".\n (rows) => Array.isArray(rows)\n ),\n callRPC(\n \"bridge.get_profile\",\n { account: username },\n undefined,\n undefined,\n signal\n ).catch((e): BridgeProfile | null => {\n // A caller cancel (aborted signal) must propagate — only genuine RPC/transport\n // failures degrade to reputation 0 / no follow_stats.\n if (signal?.aborted) throw e;\n return null;\n })\n ]);\n if (!response?.[0]) {\n // The account does not exist (e.g. not yet finalized on-chain during\n // signup). Treat absence as a recoverable null instead of throwing, so\n // consumers (useQuery hooks and fetchQuery callers) surface it as empty\n // data rather than an unhandled rejection / error-boundary crash.\n return null;\n }\n\n let chainAccount = response[0];\n\n // Cross-validate the chain row against the hivemind profile fetched in\n // the same query. Some public nodes serve account rows with BOTH\n // metadata fields stripped to \"\" (observed in the wild) while their own\n // hivemind still returns the real profile — and a merge base built from\n // such a row wipes the user's profile on the next partial\n // account_update2. When the row claims \"no metadata\" but hivemind\n // disagrees, re-read once (failover may pick another node) and otherwise\n // fail the query: an error here is recoverable, a poisoned cache entry\n // is not.\n if (\n isMetadataStripped(chainAccount) &&\n hasProfileValues(bridgeProfile?.metadata?.profile)\n ) {\n // The re-read carries a payload validator: a stripped row is treated\n // as a node fault, so the failover walk moves on to other nodes (and\n // repeat offenders earn a per-API health cooldown) instead of asking\n // the same lying node twice.\n const reread = await callRPC(\n \"condenser_api.get_accounts\",\n [[username]],\n undefined,\n undefined,\n signal,\n (rows) =>\n Array.isArray(rows) &&\n (!rows[0] || !isMetadataStripped(rows[0] as RawAccount))\n );\n if (reread[0] && !isMetadataStripped(reread[0])) {\n chainAccount = reread[0];\n } else {\n throw new Error(\n `[SDK][Accounts] – inconsistent account row for ${username}: empty json metadata while hivemind profile is populated`\n );\n }\n }\n\n const profile = parseProfileMetadata(chainAccount.posting_json_metadata);\n\n // bridge.get_profile.stats → follower/following counts; `reputation` is the\n // computed score (e.g. 78.29). accountReputation() floors an in-range score, so\n // it yields the same value the reputation-api used to return. Both degrade to a\n // safe default if the profile call failed.\n const stats = bridgeProfile?.stats;\n const follow_stats: AccountFollowStats | undefined = stats\n ? {\n account: chainAccount.name,\n follower_count: stats.followers ?? 0,\n following_count: stats.following ?? 0\n }\n : undefined;\n const reputationValue: number = bridgeProfile?.reputation ?? 0;\n\n return {\n name: chainAccount.name,\n owner: chainAccount.owner,\n active: chainAccount.active,\n posting: chainAccount.posting,\n memo_key: chainAccount.memo_key,\n post_count: chainAccount.post_count,\n created: chainAccount.created,\n posting_json_metadata: chainAccount.posting_json_metadata,\n last_vote_time: chainAccount.last_vote_time,\n last_post: chainAccount.last_post,\n json_metadata: chainAccount.json_metadata,\n reward_hive_balance: chainAccount.reward_hive_balance,\n reward_hbd_balance: chainAccount.reward_hbd_balance,\n reward_vesting_hive: chainAccount.reward_vesting_hive,\n reward_vesting_balance: chainAccount.reward_vesting_balance,\n balance: chainAccount.balance,\n hbd_balance: chainAccount.hbd_balance,\n savings_balance: chainAccount.savings_balance,\n savings_hbd_balance: chainAccount.savings_hbd_balance,\n savings_hbd_last_interest_payment:\n chainAccount.savings_hbd_last_interest_payment,\n savings_hbd_seconds_last_update:\n chainAccount.savings_hbd_seconds_last_update,\n savings_hbd_seconds: chainAccount.savings_hbd_seconds,\n next_vesting_withdrawal: chainAccount.next_vesting_withdrawal,\n pending_claimed_accounts: chainAccount.pending_claimed_accounts,\n vesting_shares: chainAccount.vesting_shares,\n delegated_vesting_shares: chainAccount.delegated_vesting_shares,\n received_vesting_shares: chainAccount.received_vesting_shares,\n vesting_withdraw_rate: chainAccount.vesting_withdraw_rate,\n to_withdraw: chainAccount.to_withdraw,\n withdrawn: chainAccount.withdrawn,\n // int64 counters. Condenser serves them unquoted, so normalize here in case a\n // node quotes them, but leave an omitted counter undefined: absent is unknown,\n // and coercing it to 0 would understate every ratio derived from it.\n curation_rewards:\n chainAccount.curation_rewards === undefined\n ? undefined\n : Number(chainAccount.curation_rewards),\n posting_rewards:\n chainAccount.posting_rewards === undefined\n ? undefined\n : Number(chainAccount.posting_rewards),\n witness_votes: chainAccount.witness_votes,\n proxy: chainAccount.proxy,\n recovery_account: chainAccount.recovery_account,\n proxied_vsf_votes: chainAccount.proxied_vsf_votes,\n voting_manabar: chainAccount.voting_manabar,\n voting_power: chainAccount.voting_power,\n downvote_manabar: chainAccount.downvote_manabar,\n follow_stats,\n reputation: reputationValue,\n profile,\n } satisfies FullAccount;\n },\n enabled: !!username,\n staleTime: 60000,\n });\n}\n","import { AccountProfile, FullAccount } from \"../types\";\n\nexport type ProfileTokens = AccountProfile[\"tokens\"];\n\nconst DENIED_KEYS = new Set([\"__proto__\", \"constructor\", \"prototype\"]);\n\nfunction isPlainObject(value: unknown): value is Record {\n if (!value || typeof value !== \"object\" || Array.isArray(value)) {\n return false;\n }\n const proto = Object.getPrototypeOf(value);\n return proto === null || proto === Object.prototype;\n}\n\nfunction deepMerge>(target: T, source: Record): T {\n const result = { ...target } as Record;\n for (const key of Object.keys(source)) {\n if (DENIED_KEYS.has(key)) {\n continue;\n }\n const srcVal = source[key];\n const tgtVal = result[key];\n if (isPlainObject(srcVal) && isPlainObject(tgtVal)) {\n result[key] = deepMerge(tgtVal, srcVal);\n } else {\n result[key] = srcVal;\n }\n }\n return result as T;\n}\n\nexport interface BuildProfileMetadataArgs {\n existingProfile?: AccountProfile;\n profile?: Partial | null;\n tokens?: ProfileTokens | null;\n}\n\nfunction sanitizeTokens(\n tokens?: ProfileTokens | null\n): ProfileTokens | undefined {\n // Guard against corrupted data from blockchain where tokens is not an array\n if (!tokens || !Array.isArray(tokens)) {\n return undefined;\n }\n\n return tokens.map(({ meta, ...rest }) => {\n if (!meta || typeof meta !== \"object\") {\n return { ...rest, meta };\n }\n\n const { privateKey, username, ...safeMeta } = meta;\n return { ...rest, meta: safeMeta };\n });\n}\n\nexport function parseProfileMetadata(\n postingJsonMetadata?: string | null\n): AccountProfile {\n if (!postingJsonMetadata) {\n return {} as AccountProfile;\n }\n\n try {\n const parsed = JSON.parse(postingJsonMetadata);\n if (\n parsed &&\n typeof parsed === \"object\" &&\n parsed.profile &&\n typeof parsed.profile === \"object\"\n ) {\n return parsed.profile as AccountProfile;\n }\n } catch (err) {\n console.warn(\"[SDK] Failed to parse posting_json_metadata:\", err, { length: postingJsonMetadata?.length ?? 0 });\n }\n\n return {} as AccountProfile;\n}\n\nexport function extractAccountProfile(\n data?: Pick | null\n): AccountProfile {\n return parseProfileMetadata(data?.posting_json_metadata);\n}\n\n/**\n * Choose between two account snapshots for a posting-metadata merge base.\n * Prefers `preferred` (typically the freshest cache entry) unless `fallback`\n * carries strictly more profile keys — guarding read-modify-write flows\n * against a snapshot whose metadata was served stripped by a misbehaving node\n * while another snapshot still holds the real profile. A partial update must\n * never shrink the profile while any snapshot still knows the full one.\n */\nexport function pickRicherMetadataSnapshot<\n T extends Pick\n>(\n preferred: T | null | undefined,\n fallback: T | null | undefined\n): T | null | undefined {\n if (!preferred) return fallback;\n if (!fallback) return preferred;\n const preferredKeys = Object.keys(\n parseProfileMetadata(preferred.posting_json_metadata)\n ).length;\n const fallbackKeys = Object.keys(\n parseProfileMetadata(fallback.posting_json_metadata)\n ).length;\n return fallbackKeys > preferredKeys ? fallback : preferred;\n}\n\n/**\n * Parse the FULL root object of posting_json_metadata, not just its `profile`\n * key. Returns {} for missing/invalid input or a non-object root.\n *\n * `parseProfileMetadata` intentionally returns only `parsed.profile`; this\n * helper exists so writers can carry forward any sibling top-level keys that\n * live alongside `profile` (data other Hive apps may store there) instead of\n * dropping them on the next update.\n */\nexport function parsePostingMetadataRoot(\n postingJsonMetadata?: string | null\n): Record {\n if (!postingJsonMetadata) {\n return {};\n }\n\n try {\n const parsed = JSON.parse(postingJsonMetadata);\n if (isPlainObject(parsed)) {\n return parsed;\n }\n } catch (err) {\n console.warn(\"[SDK] Failed to parse posting_json_metadata root:\", err, {\n length: postingJsonMetadata?.length ?? 0,\n });\n }\n\n return {};\n}\n\n/**\n * Build the serialized `posting_json_metadata` string for an account_update2\n * operation. It deep-merges the profile (via {@link buildProfileMetadata}) over\n * the account's CURRENT on-chain profile AND preserves any non-`profile`\n * top-level keys present in the existing metadata, so a partial profile update\n * (e.g. only `pinned` or only `tokens`) never clobbers unrelated fields.\n */\nexport function buildPostingJsonMetadata({\n existingPostingJsonMetadata,\n profile,\n tokens,\n}: {\n existingPostingJsonMetadata?: string | null;\n profile?: Partial | null;\n tokens?: ProfileTokens | null;\n}): string {\n const root = parsePostingMetadataRoot(existingPostingJsonMetadata);\n const existingProfile = isPlainObject(root.profile)\n ? (root.profile as AccountProfile)\n : ({} as AccountProfile);\n\n const mergedProfile = buildProfileMetadata({\n existingProfile,\n profile,\n tokens,\n });\n\n return JSON.stringify({ ...root, profile: mergedProfile });\n}\n\nexport function buildProfileMetadata({\n existingProfile,\n profile,\n tokens,\n}: BuildProfileMetadataArgs): AccountProfile {\n const { tokens: profileTokens, version: _ignoredVersion, ...profileRest } =\n profile ?? {};\n\n const metadata = deepMerge(\n (existingProfile ?? {}) as Record,\n profileRest as Record,\n ) as AccountProfile;\n\n // Clean up corrupted tokens data from blockchain before processing\n if (metadata.tokens && !Array.isArray(metadata.tokens)) {\n metadata.tokens = undefined;\n }\n\n // tokens semantics:\n // undefined → no change, fall back to profileTokens from profile partial\n // null or [] → explicitly clear tokens\n // non-empty array → set tokens\n if (tokens !== undefined) {\n // Explicit intent from caller: null or [] clears, non-empty array sets\n metadata.tokens = tokens && tokens.length > 0 ? tokens : [];\n } else if (profileTokens !== undefined) {\n // Fall back to tokens from profile partial (including empty array to clear)\n metadata.tokens = profileTokens;\n }\n\n metadata.tokens = sanitizeTokens(metadata.tokens);\n metadata.version = 2;\n\n return metadata;\n}\n","import { FullAccount, AccountProfile } from \"../types\";\nimport { parseProfileMetadata } from \"./profile-metadata\";\n\n/**\n * Parses raw account data from Hive API into FullAccount type\n * Handles profile metadata extraction from posting_json_metadata or json_metadata\n */\nexport function parseAccounts(rawAccounts: any[]): FullAccount[] {\n return rawAccounts.map((x) => {\n const account: FullAccount = {\n name: x.name,\n owner: x.owner,\n active: x.active,\n posting: x.posting,\n memo_key: x.memo_key,\n post_count: x.post_count,\n created: x.created,\n reputation: x.reputation,\n posting_json_metadata: x.posting_json_metadata,\n last_vote_time: x.last_vote_time,\n last_post: x.last_post,\n json_metadata: x.json_metadata,\n reward_hive_balance: x.reward_hive_balance,\n reward_hbd_balance: x.reward_hbd_balance,\n reward_vesting_hive: x.reward_vesting_hive,\n reward_vesting_balance: x.reward_vesting_balance,\n balance: x.balance,\n hbd_balance: x.hbd_balance,\n savings_balance: x.savings_balance,\n savings_hbd_balance: x.savings_hbd_balance,\n savings_hbd_last_interest_payment: x.savings_hbd_last_interest_payment,\n savings_hbd_seconds_last_update: x.savings_hbd_seconds_last_update,\n savings_hbd_seconds: x.savings_hbd_seconds,\n next_vesting_withdrawal: x.next_vesting_withdrawal,\n pending_claimed_accounts: x.pending_claimed_accounts,\n vesting_shares: x.vesting_shares,\n delegated_vesting_shares: x.delegated_vesting_shares,\n received_vesting_shares: x.received_vesting_shares,\n vesting_withdraw_rate: x.vesting_withdraw_rate,\n to_withdraw: x.to_withdraw,\n withdrawn: x.withdrawn,\n witness_votes: x.witness_votes,\n proxy: x.proxy,\n recovery_account: x.recovery_account,\n proxied_vsf_votes: x.proxied_vsf_votes,\n voting_manabar: x.voting_manabar,\n voting_power: x.voting_power,\n downvote_manabar: x.downvote_manabar,\n };\n\n // Try to parse profile from posting_json_metadata first\n let profile: AccountProfile | undefined = parseProfileMetadata(\n x.posting_json_metadata\n );\n\n // Fallback to json_metadata if posting_json_metadata didn't have a profile\n if (!profile || Object.keys(profile).length === 0) {\n try {\n const jsonMetadata = JSON.parse(x.json_metadata || \"{}\");\n if (jsonMetadata.profile) {\n profile = jsonMetadata.profile;\n }\n } catch (e) {\n // Ignore parsing errors\n }\n }\n\n // Ensure we always have a profile object\n if (!profile || Object.keys(profile).length === 0) {\n profile = {\n about: \"\",\n cover_image: \"\",\n location: \"\",\n name: \"\",\n profile_image: \"\",\n website: \"\",\n };\n }\n\n return { ...account, profile };\n });\n}\n","/**\n * The chain stores an account name in a `fixed_string` of 16 **bytes**, and hived\n * asserts on the byte length while deserialising the argument, before it ever looks\n * an account up. So a name that is too long does not come back as \"no such account\",\n * it comes back as\n *\n * Assert Exception:in_len <= sizeof(data): Input too large: `` (17)\n * for fixed size string: (16)\n *\n * from `lookup_accounts`, `get_accounts` and anything else taking an\n * `account_name_type`, including plain reads.\n */\nconst HIVE_ACCOUNT_NAME_MAX_BYTES = 16;\n\n/**\n * Bytes, not characters. The two differ exactly where this bug lives: `sebastián.bilbao`\n * is 16 characters but 17 bytes, and `вцпк33ппп43` is 11 characters but 18 bytes. Both\n * pass a `.length <= 16` check and both are rejected by the node.\n */\nexport function accountNameByteLength(value: string): number {\n return new TextEncoder().encode(value).length;\n}\n\n/**\n * Whether a value can be sent to a node as an account name (or as the prefix of one,\n * which `lookup_accounts` takes) without tripping the assert above.\n *\n * This is deliberately only a length check. It is not account-name validation: a\n * caller searching for a prefix is allowed to pass something that is not yet a legal\n * name, and a node answers that honestly with no matches. The only thing that must not\n * happen is a request the node refuses to parse.\n */\nexport function isQueryableAccountName(value: string | undefined | null): boolean {\n if (!value) {\n return false;\n }\n\n return accountNameByteLength(value) <= HIVE_ACCOUNT_NAME_MAX_BYTES;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { parseAccounts } from \"../utils/parse-accounts\";\nimport { FullAccount } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\nexport function getAccountsQueryOptions(usernames: string[]) {\n return queryOptions({\n queryKey: QueryKeys.accounts.list(...usernames),\n enabled: usernames.length > 0,\n queryFn: async (): Promise => {\n // One unholdable name asserts the whole batch, so drop those first. They\n // cannot name an existing account, and an empty result is what a caller\n // checking \"does this account exist\" already handles.\n const queryable = usernames.filter(isQueryableAccountName);\n if (queryable.length === 0) {\n return [];\n }\n\n // A correct node always answers get_accounts with an array — a null\n // result in a well-formed envelope is a node fault (observed in the\n // wild), so the validator makes callRPC fail over to the next node\n // instead of resolving with a payload parseAccounts cannot map over.\n const response = (await callRPC(\n \"condenser_api.get_accounts\",\n [queryable],\n undefined,\n undefined,\n undefined,\n (rows) => Array.isArray(rows)\n )) as any[];\n return parseAccounts(response ?? []);\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountFollowStats } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get follow count (followers and following) for an account\n */\nexport function getFollowCountQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.accounts.followCount(username),\n queryFn: () =>\n callRPC(\"condenser_api.get_follow_count\", [\n username,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of accounts following a user\n *\n * @param following - The account being followed\n * @param startFollower - Pagination start point (account name)\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Maximum number of results (default: 100)\n */\nexport function getFollowersQueryOptions(\n following: string | undefined,\n startFollower: string,\n followType = \"blog\",\n limit = 100\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.followers(following!, startFollower, followType, limit),\n queryFn: () =>\n callRPC(\"condenser_api.get_followers\", [\n following,\n startFollower,\n followType,\n limit,\n ]) as Promise,\n enabled: !!following,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of accounts that a user is following\n *\n * @param follower - The account doing the following\n * @param startFollowing - Pagination start point (account name)\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Maximum number of results (default: 100)\n */\nexport function getFollowingQueryOptions(\n follower: string,\n startFollowing: string,\n followType = \"blog\",\n limit = 100\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.following(follower, startFollowing, followType, limit),\n queryFn: () =>\n callRPC(\"condenser_api.get_following\", [\n follower,\n startFollowing,\n followType,\n limit,\n ]) as Promise,\n enabled: !!follower,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/** `condenser_api.get_following` caps a single response at 1000 rows. */\nconst MUTED_USERS_PAGE_SIZE = 1000;\n\n/**\n * Safety valve for the paging loop: 20 pages is 20k muted accounts, far past\n * any real mute list. Bounds the work if a node ever stops advancing the\n * cursor, so a malformed response degrades to a truncated list rather than an\n * endless request loop.\n */\nconst MUTED_USERS_MAX_PAGES = 20;\n\n/**\n * Get the full list of accounts a user has muted.\n *\n * Pages until the list is exhausted instead of taking the first N. That is\n * load-bearing: this result dims muted authors in feeds and collapses their\n * comments (`entry-list-item-muted-content`, `discussion-list`), so a truncated\n * list silently renders muted accounts as though they were never muted.\n *\n * Takes no limit, on purpose. `QueryKeys.accounts.mutedUsers` keys on the\n * username alone, so a limit parameter meant callers requesting different\n * amounts shared one cache entry and whichever mounted first decided how much\n * of the list every other caller saw.\n *\n * @param username - The account whose mute list to fetch\n */\nexport function getMutedUsersQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: QueryKeys.accounts.mutedUsers(username!),\n queryFn: async () => {\n const muted: string[] = [];\n let start = \"\";\n\n for (let page = 0; page < MUTED_USERS_MAX_PAGES; page++) {\n const response = (await callRPC(\"condenser_api.get_following\", [\n username,\n start,\n \"ignore\",\n MUTED_USERS_PAGE_SIZE,\n ])) as Follow[];\n\n if (!response?.length) {\n break;\n }\n\n let names = response.map((user) => user.following);\n\n // `start` is exclusive on Hive, so a page should not repeat the cursor.\n // Drop it defensively anyway: against a node treating `start` as\n // inclusive, this loop would otherwise re-append the same account until\n // it hit the page cap.\n if (names[0] === start) {\n names = names.slice(1);\n }\n\n if (!names.length) {\n break;\n }\n\n muted.push(...names);\n\n if (response.length < MUTED_USERS_PAGE_SIZE) {\n break;\n }\n\n start = names[names.length - 1];\n }\n\n return muted;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\n/**\n * Lookup accounts by username prefix\n *\n * @param query - Username prefix to search for\n * @param limit - Maximum number of results (default: 50)\n */\nexport function lookupAccountsQueryOptions(query: string, limit = 50) {\n return queryOptions({\n queryKey: QueryKeys.accounts.lookup(query, limit),\n queryFn: async (): Promise => {\n // `lower_bound_name` is an account_name_type, so a prefix the chain cannot\n // hold is an assert rather than an empty result. Callers feed this from raw\n // input (the editor's `@` autocomplete hands over whatever follows the `@`,\n // punctuation included), so answer \"nothing matches\" here instead.\n if (!isQueryableAccountName(query)) {\n return [];\n }\n\n return callRPC(\"condenser_api.lookup_accounts\", [\n query,\n limit,\n ]) as Promise;\n },\n enabled: !!query,\n staleTime: Infinity,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchAccountsByUsernameQueryOptions(\n query: string,\n limit = 5,\n excludeList: string[] = []\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.search(query, excludeList),\n enabled: !!query,\n queryFn: async () => {\n const response = (await callRPC(\"condenser_api.lookup_accounts\", [query, limit])) as string[];\n return response.filter((item) =>\n excludeList.length > 0 ? !excludeList.includes(item) : true\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { AccountProfile } from \"../types\";\n\ntype AccountProfileToken = NonNullable[number];\n\nexport type WalletMetadataCandidate = Partial & {\n currency?: string;\n show?: boolean;\n address?: string;\n publicKey?: string;\n privateKey?: string;\n username?: string;\n};\n\nexport interface CheckUsernameWalletsPendingResponse {\n exist: boolean;\n tokens?: WalletMetadataCandidate[];\n wallets?: WalletMetadataCandidate[];\n}\n\nconst RESERVED_META_KEYS = new Set([\n \"ownerPublicKey\",\n \"activePublicKey\",\n \"postingPublicKey\",\n \"memoPublicKey\",\n]);\n\ninterface WalletsEndpointResponseItem {\n token?: unknown;\n address?: unknown;\n status?: unknown;\n meta?: unknown;\n username?: unknown;\n}\n\nexport function checkUsernameWalletsPendingQueryOptions(\n username: string,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.checkWalletPending(username, code ?? null),\n queryFn: async () => {\n if (!username || !code) {\n return { exist: false } satisfies CheckUsernameWalletsPendingResponse;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/wallets\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n username,\n code,\n }),\n }\n );\n\n if (!response.ok) {\n return { exist: false } satisfies CheckUsernameWalletsPendingResponse;\n }\n\n const payload = (await response.json()) as unknown;\n\n const wallets: WalletMetadataCandidate[] = Array.isArray(payload)\n ? payload.flatMap((item) => {\n if (!item || typeof item !== \"object\") {\n return [];\n }\n\n const walletItem = item as WalletsEndpointResponseItem;\n\n const symbol =\n typeof walletItem.token === \"string\"\n ? walletItem.token\n : undefined;\n\n if (!symbol) {\n return [];\n }\n\n const meta: Record =\n walletItem.meta && typeof walletItem.meta === \"object\"\n ? { ...(walletItem.meta as Record) }\n : {};\n\n const sanitizedMeta: Record = {};\n\n const address =\n typeof walletItem.address === \"string\" && walletItem.address\n ? walletItem.address\n : undefined;\n\n const statusShow =\n typeof walletItem.status === \"number\"\n ? walletItem.status === 3\n : undefined;\n\n const showFlag = statusShow ?? false;\n\n if (address) {\n sanitizedMeta.address = address;\n }\n\n sanitizedMeta.show = showFlag;\n\n const baseCandidate = {\n symbol,\n currency: symbol,\n address,\n show: showFlag,\n type: \"CHAIN\",\n meta: sanitizedMeta,\n } satisfies WalletMetadataCandidate;\n\n const metaTokenCandidates: WalletMetadataCandidate[] = [];\n\n for (const [metaSymbol, metaValue] of Object.entries(meta)) {\n if (typeof metaSymbol !== \"string\") {\n continue;\n }\n\n if (RESERVED_META_KEYS.has(metaSymbol)) {\n continue;\n }\n\n if (typeof metaValue !== \"string\" || !metaValue) {\n continue;\n }\n\n if (!/^[A-Z0-9]{2,10}$/.test(metaSymbol)) {\n continue;\n }\n\n metaTokenCandidates.push({\n symbol: metaSymbol,\n currency: metaSymbol,\n address: metaValue,\n show: showFlag,\n type: \"CHAIN\",\n meta: { address: metaValue, show: showFlag },\n });\n }\n\n return [baseCandidate, ...metaTokenCandidates];\n })\n : [];\n\n return {\n exist: wallets.length > 0,\n tokens: wallets.length ? wallets : undefined,\n wallets: wallets.length ? wallets : undefined,\n } satisfies CheckUsernameWalletsPendingResponse;\n },\n refetchOnMount: true,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { AccountRelationship } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getRelationshipBetweenAccountsQueryOptions(\n reference: string | undefined,\n target: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.relations(reference, target),\n enabled: !!reference && !!target,\n refetchOnMount: false,\n refetchInterval: 3_600_000,\n queryFn: async () => {\n const fallback: AccountRelationship = {\n follows: false,\n ignores: false,\n blacklists: false,\n follows_muted: false,\n follows_blacklists: false,\n };\n\n // `enabled` only gates the automatic useQuery run. fetchQuery and\n // prefetchQuery invoke queryFn regardless, so guard here as well rather\n // than sending a missing account name to the RPC and caching the result.\n if (!reference || !target) {\n return fallback;\n }\n\n const result = await callRPC(\"bridge.get_relationship_between_accounts\", [reference, target]);\n return (result ?? fallback) as AccountRelationship;\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype Subscriptions = string[];\n\nexport function getAccountSubscriptionsQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.subscriptions(username!),\n enabled: !!username,\n queryFn: async ({ signal }) => {\n const response = await callRPC(\"bridge.list_all_subscriptions\", {\n account: username,\n }, undefined, undefined, signal);\n return (response ?? []) as Subscriptions;\n },\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountBookmark } from \"../types\";\n\nexport function getBookmarksQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.bookmarks(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Bookmarks] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n return (await response.json()) as AccountBookmark[];\n },\n });\n}\n\nexport function getBookmarksInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.bookmarksInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bookmarks: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountFavorite } from \"../types\";\n\nexport function getFavoritesQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.favorites(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Favorites] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n return (await response.json()) as AccountFavorite[];\n },\n });\n}\n\nexport function getFavoritesInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.favoritesInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/favorites?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch favorites: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\n/**\n * Query options to check if a specific account is in the active user's favorites\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n * @param targetUsername - The username to check if favorited\n * @returns Query options for checking if target is favorited\n */\nexport function checkFavoriteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n targetUsername: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.checkFavorite(activeUsername!, targetUsername!),\n enabled: !!activeUsername && !!code && !!targetUsername,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Favorites] – missing auth\");\n }\n if (!targetUsername) {\n throw new Error(\"[SDK][Accounts][Favorites] – no target username\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-check\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n account: targetUsername,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Accounts][Favorites] – favorites-check failed with status ${response.status}: ${response.statusText}`\n );\n }\n\n const result = await response.json();\n if (typeof result !== \"boolean\") {\n throw new Error(\n `[SDK][Accounts][Favorites] – favorites-check returned invalid type: expected boolean, got ${typeof result}`\n );\n }\n\n return result;\n },\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountFavoriteTag } from \"../types\";\n\n/**\n * The hashtags the active user follows, newest first.\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n */\nexport function getFavoriteTagsQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.favoriteTags(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorite-tags\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to fetch favorite tags: ${response.status}`);\n }\n return (await response.json()) as AccountFavoriteTag[];\n },\n });\n}\n\nexport function getFavoriteTagsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.favoriteTagsInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/favorite-tags?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch favorite tags: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","const TAG_PATTERN = /^[a-z0-9-]{1,32}$/;\nconst COMMUNITY_PATTERN = /^hive-\\d+$/;\n\n/**\n * The one place a followed tag is normalised before it is sent or used as a cache\n * key: trimmed, lowercased, one leading `#` dropped, then validated. Mirrors the\n * server rule exactly, so a value that passes here is stored as-is.\n *\n * Returns null for anything that is not a usable tag, including a community name\n * (`hive-123456`): communities are subscribed to on chain, not followed as tags.\n */\nexport function normalizeTag(raw: unknown): string | null {\n if (typeof raw !== \"string\") {\n return null;\n }\n\n let tag = raw.trim().toLowerCase();\n if (tag.startsWith(\"#\")) {\n tag = tag.slice(1);\n }\n\n if (!TAG_PATTERN.test(tag) || COMMUNITY_PATTERN.test(tag)) {\n return null;\n }\n\n return tag;\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { normalizeTag } from \"../utils/normalize-tag\";\n\n/**\n * Whether the active user follows a hashtag.\n *\n * The tag is normalised here, so `#Photography` and `photography` share one cache\n * entry and one request. A value that is not a usable tag (or a community name)\n * disables the query and reads as \"not followed\".\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n * @param tag - The tag to check, in any spelling\n */\nexport function getFavoriteTagCheckQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n tag: string | undefined\n) {\n const normalized = normalizeTag(tag);\n\n return queryOptions({\n queryKey: QueryKeys.accounts.checkFavoriteTag(activeUsername ?? \"\", normalized ?? \"\"),\n enabled: !!activeUsername && !!code && normalized !== null,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n if (normalized === null) {\n return false;\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorite-tags-check\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n tag: normalized,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Accounts][FavoriteTags] – favorite-tags-check failed with status ${response.status}: ${response.statusText}`\n );\n }\n\n const result = await response.json();\n if (typeof result !== \"boolean\") {\n throw new Error(\n `[SDK][Accounts][FavoriteTags] – favorite-tags-check returned invalid type: expected boolean, got ${typeof result}`\n );\n }\n\n return result;\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { GetRecoveriesEmailResponse } from \"../types\";\n\nexport function getAccountRecoveriesQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n enabled: !!username && !!code,\n queryKey: QueryKeys.accounts.recoveries(username!),\n queryFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Accounts] Missing username or access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/recoveries\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n return response.json() as Promise;\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getAccountPendingRecoveryQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n enabled: !!username,\n queryKey: QueryKeys.accounts.pendingRecovery(username!),\n queryFn: () =>\n callRPC(\"database_api.find_change_recovery_account_requests\", { accounts: [username] }),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountReputation } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\nexport function getAccountReputationsQueryOptions(query: string, limit = 50) {\n return queryOptions({\n queryKey: QueryKeys.accounts.reputations(query, limit),\n enabled: !!query,\n queryFn: async (): Promise => {\n // Same account_name_type argument as lookup_accounts, same assert if the value\n // is longer than the chain can hold.\n if (!query || !isQueryableAccountName(query)) {\n return [];\n }\n\n return callRPC(\"condenser_api.get_account_reputations\", [query, limit]) as Promise;\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { utils } from \"../../../hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Transaction, OperationGroup } from \"../types/transaction\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport { parseAsset, NaiMap } from \"@/modules/core/utils\";\n\nconst ops = utils.operations;\n\nexport const ACCOUNT_OPERATION_GROUPS: Record = {\n transfers: [\n ops.transfer,\n ops.transfer_to_savings,\n ops.transfer_from_savings,\n ops.cancel_transfer_from_savings,\n // The virtual op emitted when a savings withdrawal completes. It used to be a\n // second copy of fill_recurrent_transfer, so a completed savings withdrawal was\n // never returned by the transfers group nor by ALL_ACCOUNT_OPERATIONS.\n ops.fill_transfer_from_savings,\n ops.recurrent_transfer,\n ops.fill_recurrent_transfer,\n ops.escrow_transfer,\n ],\n \"market-orders\": [\n ops.fill_convert_request,\n ops.fill_order,\n ops.fill_collateralized_convert_request,\n ops.limit_order_create2,\n ops.limit_order_create,\n ops.limit_order_cancel,\n ],\n interests: [ops.interest],\n \"stake-operations\": [\n ops.return_vesting_delegation,\n ops.withdraw_vesting,\n ops.transfer_to_vesting,\n ops.set_withdraw_vesting_route,\n ops.update_proposal_votes,\n ops.fill_vesting_withdraw,\n ops.account_witness_proxy,\n ops.delegate_vesting_shares,\n ],\n rewards: [\n ops.author_reward,\n ops.curation_reward,\n ops.producer_reward,\n ops.claim_reward_balance,\n ops.comment_benefactor_reward,\n ops.liquidity_reward,\n ops.proposal_pay,\n ],\n};\n\n/**\n * Every operation any group asks for, de-duplicated. Groups overlap (an op can be\n * meaningful to more than one), and the raw concatenation used to repeat ids in the\n * `operation-types` query string sent to hafah.\n */\nexport const ALL_ACCOUNT_OPERATIONS = Array.from(\n new Set(Object.values(ACCOUNT_OPERATION_GROUPS).flat())\n);\n\ninterface TxPageRaw {\n entries: Transaction[];\n currentPage: number;\n}\n\n/**\n * Cursor for transaction pagination.\n * null = first request (returns newest page, API omits page param).\n * number = specific page to fetch (decrementing for older data).\n */\ntype TxCursor = number | null;\n\ninterface HafahOperation {\n op: {\n type: string;\n value: Record;\n };\n block: number;\n trx_id: string;\n op_pos: number;\n op_type_id: number;\n timestamp: string;\n virtual_op: boolean;\n operation_id: string;\n trx_in_block: number;\n}\n\ninterface HafahResponse {\n total_operations: number;\n total_pages: number;\n operations_result: HafahOperation[];\n}\n\n/**\n * Derive a safe, unique, and chronologically ordered `num` from REST fields.\n *\n * Layout: block * 10_000_000 + trx_in_block * 100 + op_pos\n * - trx_in_block: up to 99_999 (Hive max block size ~65K txs)\n * - op_pos: up to 99 (operations within a single transaction)\n * - Max value: 105_000_000 * 10_000_000 = 1.05e15, within MAX_SAFE_INTEGER (9.007e15)\n */\nfunction deriveNum(entry: HafahOperation): number {\n return entry.block * 10_000_000 + entry.trx_in_block * 100 + entry.op_pos;\n}\n\n/**\n * Strip the `_operation` suffix from the REST API type name\n * to match the Transaction type discriminants (e.g. \"transfer\").\n */\nfunction normalizeOpType(restType: string): string {\n return restType.replace(/_operation$/, \"\");\n}\n\n/**\n * Check if a value is a NAI asset object (e.g. { nai: \"@@000000021\", amount: \"1000\", precision: 3 }).\n */\nfunction isNaiAsset(v: unknown): v is { nai: string; amount: string; precision: number } {\n return typeof v === \"object\" && v !== null && \"nai\" in v && \"amount\" in v && \"precision\" in v;\n}\n\n/**\n * Convert a NAI asset object to a human-readable string like \"1.000 HIVE\".\n * Returns the value unchanged if it's not a NAI object.\n */\nfunction naiToString(v: unknown): unknown {\n if (!isNaiAsset(v)) return v;\n const parsed = parseAsset(v);\n const symbol = NaiMap[v.nai as keyof typeof NaiMap] ?? \"UNKNOWN\";\n return `${parsed.amount.toFixed(v.precision)} ${symbol}`;\n}\n\n/**\n * Convert all NAI asset objects in an operation's value to human-readable strings\n * so downstream renderers that expect \"1.000 HIVE\" don't crash with object values.\n */\nfunction normalizeOpValue(value: Record): Record {\n const result: Record = {};\n for (const [k, v] of Object.entries(value)) {\n result[k] = naiToString(v);\n }\n return result;\n}\n\n/**\n * Get account transaction history with pagination and filtering.\n * Uses the hafah-api REST endpoint for server-side op-type filtering\n * and real pagination metadata.\n *\n * @param username - Account name to get transactions for\n * @param limit - Number of transactions per page\n * @param group - Filter by operation group (transfers, market-orders, etc.)\n */\nexport function getTransactionsInfiniteQueryOptions(\n username?: string,\n limit = 20,\n group: OperationGroup | \"\" = \"\"\n) {\n const operationTypes = group\n ? ACCOUNT_OPERATION_GROUPS[group]\n : ALL_ACCOUNT_OPERATIONS;\n\n return infiniteQueryOptions<\n TxPageRaw,\n Error,\n InfiniteData,\n (string | number)[],\n TxCursor\n >({\n queryKey: QueryKeys.accounts.transactions(username ?? \"\", group, limit),\n initialPageParam: null as TxCursor,\n\n queryFn: async ({ pageParam, signal }: { pageParam: TxCursor; signal?: AbortSignal }) => {\n if (!username) {\n return { entries: [], currentPage: 0 };\n }\n\n const fetchPage = async (page: TxCursor) => {\n const params: Record = {\n \"account-name\": username,\n \"operation-types\": operationTypes.join(\",\"),\n \"page-size\": limit,\n };\n\n // First call: omit page to get newest data\n // Subsequent calls: pass specific page number (decrementing)\n if (page !== null) {\n params.page = page;\n }\n\n return (await callREST(\n \"hafah\",\n \"/accounts/{account-name}/operations\",\n params,\n undefined,\n undefined,\n signal\n )) as HafahResponse;\n };\n\n const toEntries = (response: HafahResponse) =>\n response.operations_result.map((entry) => {\n const type = normalizeOpType(entry.op.type);\n const value = normalizeOpValue(entry.op.value);\n return {\n ...value,\n num: deriveNum(entry),\n type,\n timestamp: entry.timestamp,\n trx_id: entry.trx_id,\n } as Transaction;\n });\n\n const response = await fetchPage(pageParam);\n let entries = toEntries(response);\n let currentPage = pageParam ?? response.total_pages;\n\n // hafah pages oldest-first, so the newest page (what an omitted `page`\n // returns) is the remainder bucket: total_operations mod page-size rows,\n // anywhere from 1 to page-size. Requesting page=total_pages explicitly\n // returns the same short bucket, so the only way to a full-size first\n // screen is chaining the next older page in.\n if (pageParam === null && entries.length < limit && response.total_pages > 1) {\n try {\n const chained = await fetchPage(response.total_pages - 1);\n entries = [...entries, ...toEntries(chained)];\n currentPage = response.total_pages - 1;\n } catch (e) {\n // Caller cancellation is not a node failure: rethrow so the query\n // settles as cancelled instead of resolving with a partial page.\n if (signal?.aborted) {\n throw e;\n }\n // Keep the short remainder page; the cursor stays at total_pages so\n // the page that failed here is fetchNextPage's next target, not lost.\n }\n }\n\n return { entries, currentPage };\n },\n\n getNextPageParam: (lastPage) => {\n const nextPage = lastPage.currentPage - 1;\n return nextPage >= 1 ? nextPage : undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport function getBotsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.accounts.bots(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/public/bots\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bots: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n refetchOnMount: true,\n staleTime: Infinity,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { ReferralItem } from \"../types/referral\";\n\ntype PageParam = { maxId?: number };\n\nexport function getReferralsInfiniteQueryOptions(username: string) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.referrals(username),\n initialPageParam: { maxId: undefined } as PageParam,\n queryFn: async ({ pageParam }: { pageParam: PageParam }) => {\n const { maxId } = pageParam ?? {};\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(`/private-api/referrals/${username}`, baseUrl);\n\n if (maxId !== undefined) {\n url.searchParams.set(\"max_id\", maxId.toString());\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch referrals: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n getNextPageParam: (lastPage: ReferralItem[]) => {\n const nextMaxId = lastPage?.[lastPage.length - 1]?.id;\n return typeof nextMaxId === \"number\" ? ({ maxId: nextMaxId } as PageParam) : undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { ReferralStat } from \"../types/referral\";\n\ninterface ReferralStatsResponse {\n total?: number;\n rewarded?: number;\n}\n\nexport function getReferralsStatsQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.accounts.referralsStats(username),\n queryFn: async () => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/referrals/${username}/stats`,\n {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch referral stats: ${response.status}`);\n }\n\n const data = await response.json() as ReferralStatsResponse;\n\n if (!data) {\n throw new Error(\"No Referrals for this user!\");\n }\n\n return {\n total: data.total ?? 0,\n rewarded: data.rewarded ?? 0,\n } as ReferralStat;\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow, Profile, FriendsRow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface FriendsPageParam {\n startFollowing: string;\n}\n\ntype FriendsPage = FriendsRow[];\n\n/**\n * Get list of friends (following/followers) with profile information\n *\n * @param following - The account whose friends to get\n * @param mode - \"following\" or \"followers\"\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Number of results per page (default: 100)\n * @param enabled - Whether query is enabled (default: true)\n */\nexport function getFriendsInfiniteQueryOptions(\n following: string,\n mode: \"following\" | \"followers\",\n options?: {\n followType?: string;\n limit?: number;\n enabled?: boolean;\n }\n) {\n const { followType = \"blog\", limit = 100, enabled = true } = options ?? {};\n\n return infiniteQueryOptions<\n FriendsPage,\n Error,\n InfiniteData,\n (string | number)[],\n FriendsPageParam\n >({\n queryKey: QueryKeys.accounts.friends(following, mode, followType, limit),\n initialPageParam: { startFollowing: \"\" } as FriendsPageParam,\n enabled,\n refetchOnMount: true,\n\n queryFn: async ({ pageParam }: { pageParam: FriendsPageParam }) => {\n const { startFollowing } = pageParam;\n\n const method = mode === \"following\" ? \"get_following\" : \"get_followers\";\n const response = (await callRPC(`condenser_api.${method}`, [following, startFollowing === \"\" ? null : startFollowing, followType, limit])) as Follow[];\n\n const accountNames = response.map((e) =>\n mode === \"following\" ? e.following : e.follower\n );\n\n // Get profiles via bridge API\n const accounts = (await callRPC(\"bridge.get_profiles\", {\n accounts: accountNames,\n observer: undefined,\n })) as Profile[];\n\n const rows: FriendsPage = (accounts ?? []).map((a) => ({\n name: a.name,\n reputation: a.reputation,\n active: a.active, // Return raw timestamp\n }));\n\n return rows;\n },\n\n getNextPageParam: (lastPage: FriendsPage): FriendsPageParam | undefined =>\n lastPage && lastPage.length === limit\n ? { startFollowing: lastPage[lastPage.length - 1].name }\n : undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow, Profile, FriendSearchResult } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nconst SEARCH_LIMIT = 30;\n\n/**\n * Search friends (following/followers) by query string\n *\n * @param username - The account whose friends to search\n * @param mode - \"following\" or \"followers\"\n * @param query - Search query string\n */\nexport function getSearchFriendsQueryOptions(\n username: string,\n mode: \"following\" | \"followers\",\n query: string\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.searchFriends(username, mode, query),\n refetchOnMount: false,\n enabled: false, // Manual query via refetch\n queryFn: async (): Promise => {\n if (!query) return [];\n\n const start = query.slice(0, -1);\n const method = mode === \"following\" ? \"get_following\" : \"get_followers\";\n const response = (await callRPC(`condenser_api.${method}`, [username, start, \"blog\", 1000])) as Follow[];\n\n const accountNames = response\n .map((e) => (mode === \"following\" ? e.following : e.follower))\n .filter((name) => name.toLowerCase().includes(query.toLowerCase()))\n .slice(0, SEARCH_LIMIT);\n\n // Get profiles via bridge API\n const accounts = (await callRPC(\"bridge.get_profiles\", {\n accounts: accountNames,\n observer: undefined,\n })) as Profile[];\n\n return (\n accounts?.map((a) => ({\n name: a.name,\n full_name: a.metadata.profile?.name || \"\",\n reputation: a.reputation,\n active: a.active, // Return raw timestamp\n })) ?? []\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { TrendingTag } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getTrendingTagsQueryOptions(limit = 20) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.trendingTags(),\n queryFn: async ({ pageParam: { afterTag } }) =>\n callRPC(\"condenser_api.get_trending_tags\", [afterTag, limit])\n .then((tags: TrendingTag[]) =>\n tags\n .filter((x) => x.name !== \"\")\n .filter((x) => !x.name.startsWith(\"hive-\"))\n .map((x) => x.name)\n ),\n initialPageParam: { afterTag: \"\" },\n getNextPageParam: (lastPage) =>\n lastPage?.length > 0\n ? { afterTag: lastPage[lastPage.length - 1] }\n : undefined,\n staleTime: 60 * 60 * 1000, // 1 hour — tags change slowly\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { isCommunity } from \"@/modules/core/utils\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { TrendingTag } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getTrendingTagsWithStatsQueryOptions(limit = 250) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.trendingTagsWithStats(limit),\n queryFn: async ({ pageParam: { afterTag } }) =>\n callRPC(\"condenser_api.get_trending_tags\", [afterTag, limit])\n .then((tags: TrendingTag[]) =>\n tags.filter((tag) => tag.name !== \"\").filter((tag) => !isCommunity(tag.name))\n ),\n initialPageParam: { afterTag: \"\" },\n getNextPageParam: (lastPage) =>\n lastPage?.length ? { afterTag: lastPage[lastPage.length - 1].name } : undefined,\n staleTime: Infinity,\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\n\nexport function getFragmentsQueryOptions(username: string, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.fragments(username),\n queryFn: async () => {\n if (!code) {\n return [];\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n return response.json() as Promise;\n },\n enabled: !!username && !!code,\n });\n}\n\nexport function getFragmentsInfiniteQueryOptions(\n username: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.fragmentsInfinite(username, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!username || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/fragments?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch fragments: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!username && !!code,\n });\n}\n","import { ConfigManager, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\n// TODO: replace any with Entry\nexport function getPromotedPostsQuery(\n type: \"feed\" | \"waves\" = \"feed\"\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.promoted(type),\n queryFn: async () => {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/promoted-entries\", baseUrl);\n if (type === \"waves\") {\n url.searchParams.append(\"short_content\", \"1\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n const data = await response.json();\n return data as T[];\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry, Vote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getEntryActiveVotesQueryOptions(entry?: Entry) {\n return queryOptions({\n queryKey: QueryKeys.posts.entryActiveVotes(entry?.author, entry?.permlink),\n queryFn: async () => {\n return callRPC(\"condenser_api.get_active_votes\", [\n entry?.author,\n entry?.permlink,\n ]) as Promise;\n },\n enabled: !!entry,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { Vote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get a specific user's vote on a post\n * Useful when post has >1000 votes to efficiently get one user's vote\n *\n * @param username - The voter's username\n * @param author - The post author\n * @param permlink - The post permlink\n */\nexport function getUserPostVoteQueryOptions(\n username: string | undefined,\n author: string | undefined,\n permlink: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.userPostVote(username!, author!, permlink!),\n queryFn: async () => {\n const result = await callRPC(\"database_api.list_votes\", {\n start: [username, author, permlink],\n limit: 1,\n order: \"by_voter_comment\"\n });\n\n // Return first vote if found, otherwise null\n return (result?.votes?.[0] || null) as Vote | null;\n },\n enabled: !!username && !!author && !!permlink,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getContentQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.content(author, permlink),\n enabled: !!author && !!permlink,\n queryFn: async (): Promise =>\n callRPC(\"condenser_api.get_content\", [\n author,\n permlink,\n ]) as Promise,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getContentRepliesQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.contentReplies(author, permlink),\n enabled: !!author && !!permlink,\n queryFn: async (): Promise =>\n callRPC(\"condenser_api.get_content_replies\", {\n author,\n permlink,\n }) as Promise,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getPostHeaderQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.postHeader(author, permlink),\n queryFn: async () => {\n return callRPC(\"bridge.get_post_header\", {\n author,\n permlink,\n }) as Promise;\n },\n initialData: null,\n });\n}\n","import { CONFIG } from \"@/modules/core\";\nimport { Entry } from \"../types\";\n\n/**\n * Filters and censors entries that match DMCA patterns\n * @param entry - Single entry or array of entries to filter\n * @returns Filtered entry/entries with DMCA content censored.\n * Note: Can return null/undefined if input is falsy - callers should guard against this.\n */\nexport function filterDmcaEntry(entry: Entry): Entry | null | undefined;\nexport function filterDmcaEntry(entries: Entry[]): Entry[];\nexport function filterDmcaEntry(entryOrEntries: Entry | Entry[] | null | undefined): Entry | Entry[] | null | undefined {\n if (Array.isArray(entryOrEntries)) {\n // Array elements are non-null Entries, so applyFilter never returns nullish here.\n return entryOrEntries.map((entry) => applyFilter(entry)) as Entry[];\n }\n return applyFilter(entryOrEntries);\n}\n\nfunction applyFilter(entry: Entry | null | undefined): Entry | null | undefined {\n if (!entry) return entry;\n\n const entryPath = `@${entry.author}/${entry.permlink}`;\n const isDmca =\n CONFIG.dmcaPatterns.includes(entryPath) ||\n CONFIG.dmcaPatternRegexes.some((regex) => regex.test(entryPath));\n\n if (isDmca) {\n return {\n ...entry,\n body: \"This post is not available due to a copyright/fraudulent claim.\",\n title: \"\",\n };\n }\n\n return entry;\n}\n","import { callWithQuorum } from \"../../hive-tx\";\nimport { Entry } from \"@/modules/posts/types\";\n\n/**\n * When the primary node returns null for a get_post call,\n * verify by querying multiple random nodes. If any node\n * returns the post, it exists (the first node was lagging).\n *\n * Uses callWithQuorum(quorum=1) which shuffles and queries\n * nodes in batches. Since it shuffles, it's unlikely to hit\n * the same node that just returned null first.\n */\nexport async function verifyPostOnAlternateNode(\n author: string,\n permlink: string,\n observer: string\n): Promise {\n try {\n const response = await callWithQuorum(\"bridge.get_post\", {\n author,\n permlink,\n observer,\n }, 1);\n\n if (\n response &&\n typeof response === \"object\" &&\n (response as Entry).author === author &&\n (response as Entry).permlink === permlink\n ) {\n return response as Entry;\n }\n } catch {\n // All nodes failed or returned null\n }\n\n return null;\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { verifyPostOnAlternateNode } from \"@/modules/bridge/verify-on-alternate-node\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getPostQueryOptions(\n author: string,\n permlink?: string,\n observer = \"\",\n num?: number\n) {\n const cleanPermlink = permlink?.trim();\n const entryPath = `/@${author}/${cleanPermlink ?? \"\"}`;\n\n return queryOptions({\n queryKey: QueryKeys.posts.entry(entryPath),\n queryFn: async () => {\n if (!cleanPermlink || cleanPermlink === \"undefined\") {\n return null;\n }\n\n // hive-tx tries nodes in order; the first healthy node (index 0) handles this call.\n // If it returns null, verifyPostOnAlternateNode skips index 0 and tries others.\n const response = await callRPC(\"bridge.get_post\", {\n author,\n permlink: cleanPermlink,\n observer,\n });\n\n if (!response) {\n // Primary node returned null — verify on alternate nodes\n // to guard against sync lag returning null for valid posts\n const verified = await verifyPostOnAlternateNode(author, cleanPermlink, observer);\n if (!verified) {\n return null;\n }\n const verifiedEntry = num !== undefined ? { ...verified, num } as Entry : verified as Entry;\n return filterDmcaEntry(verifiedEntry);\n }\n\n const entry = num !== undefined ? { ...response, num } as Entry : response as Entry;\n return filterDmcaEntry(entry);\n },\n enabled:\n !!author &&\n !!permlink &&\n permlink.trim() !== \"\" &&\n permlink.trim() !== \"undefined\",\n });\n}\n","import { CONFIG } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { AccountRelationship, Profile } from \"@/modules/accounts/types\";\nimport { Community } from \"@/modules/communities/types/community\";\nimport { Subscription } from \"@/modules/communities/types/subscription\";\nimport { Entry } from \"@/modules/posts/types\";\nimport { filterDmcaEntry } from \"@/modules/posts/utils/filter-dmca-entries\";\n\ntype BridgeParams = Record | unknown[];\n\nexport function bridgeApiCall(endpoint: string, params: BridgeParams, signal?: AbortSignal): Promise {\n return callRPC(`bridge.${endpoint}`, params, undefined, undefined, signal) as Promise;\n}\n\nexport async function resolvePost(\n post: Entry,\n observer: string,\n num?: number,\n signal?: AbortSignal\n): Promise {\n const { json_metadata: json } = post;\n\n if (json?.original_author && json?.original_permlink && json.tags?.[0] === \"cross-post\") {\n try {\n const resp = await getPost(\n json.original_author,\n json.original_permlink,\n observer,\n num,\n signal\n );\n if (resp) {\n return {\n ...post,\n original_entry: resp,\n num,\n };\n }\n return post;\n } catch {\n return post;\n }\n }\n\n return { ...post, num };\n}\n\nasync function resolvePosts(posts: Entry[], observer: string, signal?: AbortSignal): Promise {\n const validatedPosts = posts.map(validateEntry);\n const resolved = await Promise.all(validatedPosts.map((p) => resolvePost(p, observer, undefined, signal)));\n return filterDmcaEntry(resolved) as Entry[];\n}\n\nexport async function getPostsRanked(\n sort: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n tag: string = \"\",\n observer: string = \"\",\n signal?: AbortSignal\n): Promise {\n const resp = await bridgeApiCall(\"get_ranked_posts\", {\n sort,\n start_author,\n start_permlink,\n limit,\n tag,\n observer,\n }, signal);\n\n if (Array.isArray(resp)) {\n return resolvePosts(resp, observer, signal);\n }\n\n if (resp != null) {\n console.warn(\n `[SDK] get_ranked_posts returned ${typeof resp} instead of an array for sort=${sort}; treating as no results.`\n );\n }\n\n return null;\n}\n\nexport async function getAccountPosts(\n sort: string,\n account: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n observer: string = \"\",\n signal?: AbortSignal\n): Promise {\n if (CONFIG.dmcaAccounts.includes(account)) {\n return [];\n }\n\n const resp = await bridgeApiCall(\"get_account_posts\", {\n sort,\n account,\n start_author,\n start_permlink,\n limit,\n observer,\n }, signal);\n\n if (Array.isArray(resp)) {\n return resolvePosts(resp, observer, signal);\n }\n\n if (resp != null) {\n console.warn(\n `[SDK] get_account_posts returned ${typeof resp} instead of an array for account=${account}, sort=${sort}; treating as no results.`\n );\n }\n\n return null;\n}\n\n/**\n * Validates that an Entry object has required properties with non-null values.\n */\nfunction validateEntry(entry: Entry): Entry {\n const newEntry: Entry = {\n ...entry,\n active_votes: Array.isArray(entry.active_votes) ? [...entry.active_votes] : [],\n beneficiaries: Array.isArray(entry.beneficiaries) ? [...entry.beneficiaries] : [],\n blacklists: Array.isArray(entry.blacklists) ? [...entry.blacklists] : [],\n replies: Array.isArray(entry.replies) ? [...entry.replies] : [],\n stats: entry.stats ? { ...entry.stats } : null,\n };\n\n const requiredStringProps: (keyof Entry)[] = [\n \"author\",\n \"title\",\n \"body\",\n \"created\",\n \"category\",\n \"permlink\",\n \"url\",\n \"updated\",\n ];\n\n for (const prop of requiredStringProps) {\n if (newEntry[prop] == null) {\n (newEntry as any)[prop] = \"\";\n }\n }\n\n if (newEntry.author_reputation == null) {\n newEntry.author_reputation = 0;\n }\n if (newEntry.children == null) {\n newEntry.children = 0;\n }\n if (newEntry.depth == null) {\n newEntry.depth = 0;\n }\n if (newEntry.net_rshares == null) {\n newEntry.net_rshares = 0;\n }\n if (newEntry.payout == null) {\n newEntry.payout = 0;\n }\n if (newEntry.percent_hbd == null) {\n newEntry.percent_hbd = 0;\n }\n\n if (!newEntry.stats) {\n newEntry.stats = {\n flag_weight: 0,\n gray: false,\n hide: false,\n total_votes: 0,\n };\n }\n\n if (newEntry.author_payout_value == null) {\n newEntry.author_payout_value = \"0.000 HBD\";\n }\n if (newEntry.curator_payout_value == null) {\n newEntry.curator_payout_value = \"0.000 HBD\";\n }\n if (newEntry.max_accepted_payout == null) {\n newEntry.max_accepted_payout = \"1000000.000 HBD\";\n }\n if (newEntry.payout_at == null) {\n newEntry.payout_at = \"\";\n }\n if (newEntry.pending_payout_value == null) {\n newEntry.pending_payout_value = \"0.000 HBD\";\n }\n if (newEntry.promoted == null) {\n newEntry.promoted = \"0.000 HBD\";\n }\n\n if (newEntry.is_paidout == null) {\n newEntry.is_paidout = false;\n }\n\n return newEntry;\n}\n\nexport async function getPost(\n author: string = \"\",\n permlink: string = \"\",\n observer: string = \"\",\n num?: number,\n signal?: AbortSignal\n): Promise {\n const resp = await bridgeApiCall(\"get_post\", {\n author,\n permlink,\n observer,\n }, signal);\n\n if (resp) {\n const validatedEntry = validateEntry(resp);\n const post = await resolvePost(validatedEntry, observer, num, signal);\n return filterDmcaEntry(post) as Entry;\n }\n\n return undefined;\n}\n\nexport async function getPostHeader(\n author: string = \"\",\n permlink: string = \"\"\n): Promise {\n const resp = await bridgeApiCall(\"get_post_header\", {\n author,\n permlink,\n });\n return resp ? validateEntry(resp) : resp;\n}\n\nexport async function getDiscussion(\n author: string,\n permlink: string,\n observer?: string\n): Promise | null> {\n const resp = await bridgeApiCall | null>(\"get_discussion\", {\n author,\n permlink,\n observer: observer || author,\n });\n\n if (resp) {\n const validatedResp: Record = {};\n for (const [key, entry] of Object.entries(resp)) {\n validatedResp[key] = validateEntry(entry);\n }\n return validatedResp;\n }\n return resp;\n}\n\nexport async function getCommunity(\n name: string,\n observer: string | undefined = \"\"\n): Promise {\n return bridgeApiCall(\"get_community\", { name, observer });\n}\n\nexport async function getCommunities(\n last: string = \"\",\n limit: number = 100,\n query?: string | null,\n sort: string = \"rank\",\n observer: string = \"\"\n): Promise {\n return bridgeApiCall(\"list_communities\", {\n last,\n limit,\n query,\n sort,\n observer,\n });\n}\n\nexport async function normalizePost(post: unknown): Promise {\n const resp = await bridgeApiCall(\"normalize_post\", { post });\n return resp ? validateEntry(resp) : resp;\n}\n\nexport async function getSubscriptions(account: string): Promise {\n return bridgeApiCall(\"list_all_subscriptions\", { account });\n}\n\nexport async function getSubscribers(community: string): Promise {\n return bridgeApiCall(\"list_subscribers\", { community });\n}\n\nexport async function getRelationshipBetweenAccounts(\n follower: string,\n following: string\n): Promise {\n return bridgeApiCall(\"get_relationship_between_accounts\", [\n follower,\n following,\n ]);\n}\n\nexport async function getProfiles(\n accounts: string[],\n observer?: string\n): Promise {\n return bridgeApiCall(\"get_profiles\", { accounts, observer });\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getDiscussion } from \"@/modules/bridge\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport enum SortOrder {\n trending = \"trending\",\n author_reputation = \"author_reputation\",\n votes = \"votes\",\n created = \"created\",\n}\n\nfunction parseAsset(value: string): { amount: number; symbol: string } {\n const match = value.match(/^(\\d+\\.?\\d*)\\s*([A-Z]+)$/);\n if (!match) return { amount: 0, symbol: \"\" };\n return {\n amount: parseFloat(match[1]),\n symbol: match[2],\n };\n}\n\nexport function sortDiscussions(\n entry: Entry,\n discussion: Entry[],\n order: SortOrder\n) {\n const allPayout = (c: Entry) =>\n parseAsset(c.pending_payout_value).amount +\n parseAsset(c.author_payout_value).amount +\n parseAsset(c.curator_payout_value).amount;\n\n const absNegative = (a: Entry) => a.net_rshares < 0;\n const isPinned = (a: Entry) =>\n entry.json_metadata?.pinned_reply === `${a.author}/${a.permlink}`;\n\n const sortOrders = {\n trending: (a: Entry, b: Entry) => {\n if (absNegative(a)) {\n return 1;\n }\n\n if (absNegative(b)) {\n return -1;\n }\n\n const _a = allPayout(a);\n const _b = allPayout(b);\n if (_a !== _b) {\n return _b - _a;\n }\n\n return 0;\n },\n author_reputation: (a: Entry, b: Entry) => {\n const keyA = a.author_reputation;\n const keyB = b.author_reputation;\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n votes: (a: Entry, b: Entry) => {\n const keyA = a.children;\n const keyB = b.children;\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n created: (a: Entry, b: Entry) => {\n if (absNegative(a)) {\n return 1;\n }\n\n if (absNegative(b)) {\n return -1;\n }\n\n const keyA = Date.parse(a.created);\n const keyB = Date.parse(b.created);\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n };\n\n const sorted = discussion.sort(sortOrders[order]);\n const pinnedIndex = sorted.findIndex((i) => isPinned(i));\n const pinned = sorted[pinnedIndex];\n if (pinnedIndex >= 0) {\n sorted.splice(pinnedIndex, 1);\n sorted.unshift(pinned);\n }\n return sorted;\n}\n\nexport function getDiscussionsQueryOptions(\n entry: Entry,\n order: SortOrder = SortOrder.created,\n enabled: boolean = true,\n observer?: string\n) {\n // Anonymous readers fall back to CONFIG.defaultObserver rather than the post\n // author. Author-as-observer only helps the minority of authors who curate a\n // mute list; everyone else's comment section came back unfiltered, so the\n // shared moderation account is the better default for logged-out traffic.\n const resolvedObserver = observer || CONFIG.defaultObserver;\n\n return queryOptions({\n queryKey: QueryKeys.posts.discussions(entry?.author, entry?.permlink, order, resolvedObserver),\n queryFn: async () => {\n if (!entry) {\n return [];\n }\n\n const response = await callRPC(\"bridge.get_discussion\", {\n author: entry.author,\n permlink: entry.permlink,\n observer: resolvedObserver,\n });\n\n const results = response\n ? Array.from(Object.values(response as Record))\n : [];\n return filterDmcaEntry(results);\n },\n enabled: enabled && !!entry,\n select: (data: Entry[]) => sortDiscussions(entry, data, order),\n // Preserve optimistic entries during refetch by using structural sharing\n // This ensures newly added comments (is_optimistic: true) aren't wiped out\n // when blockchain hasn't indexed them yet\n structuralSharing: (oldData, newData) => {\n if (!oldData || !newData) return newData;\n\n // Find optimistic entries in old data that aren't in new data yet\n const optimisticEntries = (oldData as Entry[]).filter(\n (entry: Entry) => entry.is_optimistic === true\n );\n\n const fetchedPermlinks = new Set(\n (newData as Entry[]).map((e: Entry) => `${e.author}/${e.permlink}`)\n );\n\n const missingOptimistic = optimisticEntries.filter(\n (opt: Entry) => !fetchedPermlinks.has(`${opt.author}/${opt.permlink}`)\n );\n\n // If there are optimistic entries missing from new data, preserve them\n if (missingOptimistic.length > 0) {\n return [...(newData as Entry[]), ...missingOptimistic];\n }\n\n return newData;\n },\n });\n}\n\nexport function getDiscussionQueryOptions(\n author: string,\n permlink: string,\n observer?: string,\n enabled = true\n) {\n const resolvedObserver = observer || CONFIG.defaultObserver;\n\n return queryOptions({\n queryKey: QueryKeys.posts.discussion(author, permlink, resolvedObserver),\n enabled: enabled && !!author && !!permlink,\n queryFn: async () =>\n getDiscussion(author, permlink, resolvedObserver) as Promise | null>,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getAccountPosts } from \"@/modules/bridge\";\n\ntype PageParam = {\n author: string | undefined;\n permlink: string | undefined;\n hasNextPage: boolean;\n};\ntype Page = Entry[];\n\nexport function getAccountPostsInfiniteQueryOptions(\n username: string | undefined,\n filter = \"posts\",\n limit = 20,\n observer = \"\",\n enabled = true\n) {\n return infiniteQueryOptions<\n Page,\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.posts.accountPosts(username ?? \"\", filter, limit, observer),\n enabled: !!username && enabled,\n initialPageParam: {\n author: undefined,\n permlink: undefined,\n hasNextPage: true,\n } as PageParam,\n\n queryFn: async ({ pageParam, signal }) => {\n if (!pageParam?.hasNextPage || !username) return [];\n\n const response = await getAccountPosts(\n filter,\n username,\n pageParam.author ?? \"\",\n pageParam.permlink ?? \"\",\n limit,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n\n getNextPageParam: (lastPage: Page): PageParam | undefined => {\n const last = lastPage?.[lastPage.length - 1];\n // Only consider there's a next page if we got a full page of results\n // A partial page means we've reached the end\n const hasNextPage = (lastPage?.length ?? 0) === limit;\n\n if (!hasNextPage) {\n return undefined;\n }\n\n return {\n author: last?.author,\n permlink: last?.permlink,\n hasNextPage,\n };\n },\n });\n}\n\nexport function getAccountPostsQueryOptions(\n username: string | undefined,\n filter = \"posts\",\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit = 20,\n observer = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.accountPostsPage(username ?? \"\", filter, start_author, start_permlink, limit, observer),\n enabled: !!username && enabled,\n queryFn: async ({ signal } = {} as any) => {\n if (!username) {\n return [];\n }\n\n const response = await getAccountPosts(\n filter,\n username,\n start_author,\n start_permlink,\n limit,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n });\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getPostsRanked } from \"@/modules/bridge\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype PageParam = {\n author: string | undefined;\n permlink: string | undefined;\n};\n\ninterface GetPostsRankedOptions {\n resolvePosts?: boolean;\n}\n\n/**\n * `select` runs on every render, and React Query only reuses its previous\n * result when both the data and the select function are unchanged. These\n * options are rebuilt on each render, so an inline arrow would be a new\n * function every time and every page would be re-sorted on every render.\n * One stable function per sort keeps that memoization working.\n */\nconst displaySelects = new Map<\n string,\n (data: InfiniteData) => InfiniteData\n>();\n\nfunction displaySelect(sort: string) {\n let select = displaySelects.get(sort);\n if (!select) {\n select = (data) => ({\n ...data,\n pages: data.pages.map((page) => orderForDisplay(page, sort)),\n });\n displaySelects.set(sort, select);\n }\n return select;\n}\n\n/**\n * Display order for one page.\n *\n * Pinned entries are captured before the created-date sort: the bridge surfaces\n * them at the head of the response in the community moderators' chosen order,\n * which the sort would scatter by age. Every pin is kept, since an earlier\n * post-sort find() kept one and silently dropped the rest, so multi-pin\n * communities never displayed their other pinned posts. Pins only occur on the\n * first page, cursor pages return none, so this is a no-op elsewhere.\n *\n * Applied in `select` rather than in the query function so it cannot reach the\n * pagination cursor.\n */\nfunction orderForDisplay(page: Entry[], sort: string): Entry[] {\n const pinned = page.filter((entry) => entry.stats?.is_pinned);\n const rest = page.filter((entry) => !entry.stats?.is_pinned);\n\n if (sort === \"hot\") {\n return [...pinned, ...rest];\n }\n\n const byCreated = [...rest].sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n return [...pinned, ...byCreated];\n}\n\nexport function getPostsRankedInfiniteQueryOptions(\n sort: string,\n tag: string,\n limit = 20,\n observer = \"\",\n enabled = true,\n _options: GetPostsRankedOptions = {}\n) {\n return infiniteQueryOptions<\n Entry[],\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.posts.postsRanked(sort, tag, limit, observer),\n queryFn: async ({ pageParam, signal }: { pageParam: PageParam; signal: AbortSignal }) => {\n let sanitizedTag = tag;\n if (CONFIG.dmcaTagRegexes.some((regex) => regex.test(tag))) {\n sanitizedTag = \"\";\n }\n\n const response = await callRPC(\"bridge.get_ranked_posts\", {\n sort,\n start_author: pageParam.author,\n start_permlink: pageParam.permlink,\n limit,\n tag: sanitizedTag,\n observer,\n }, undefined, undefined, signal);\n\n if (response === null || response === undefined) {\n return [];\n }\n\n if (!Array.isArray(response)) {\n throw new Error(\n `[SDK] get_ranked_posts returned ${typeof response} for sort=${sort}`\n );\n }\n\n // Kept in the bridge's own order. getNextPageParam takes the cursor from\n // the last entry of the page this returns, and the bridge continues from\n // that entry in ITS ranking, so reordering here made the next request\n // start from the middle of the previous ranked page: for trending, payout\n // and muted the last entry by date is not the last entry by rank, and\n // scrolling repeated some posts and skipped others. Display order is\n // applied in `select`, which React Query runs after pagination.\n return filterDmcaEntry(response as Entry[]);\n },\n select: displaySelect(sort),\n enabled,\n initialPageParam: {\n author: undefined,\n permlink: undefined,\n } as PageParam,\n getNextPageParam: (lastPage: Entry[]) => {\n // React Query reads \"there is no next page\" from undefined alone, so\n // returning an object here always left it true. An infinite list\n // then keeps calling fetchNextPage at the end of the feed, appending an\n // empty page each time: the query state churns and the cache grows for as\n // long as the reader sits at the bottom.\n const last = lastPage?.[lastPage.length - 1];\n if (!last) {\n return undefined;\n }\n\n return { author: last.author, permlink: last.permlink };\n },\n });\n}\n\nexport function getPostsRankedQueryOptions(\n sort: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n tag: string = \"\",\n observer: string = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.postsRankedPage(sort, start_author, start_permlink, limit, tag, observer),\n enabled,\n queryFn: async ({ signal } = {} as any) => {\n let sanitizedTag = tag;\n if (CONFIG.dmcaTagRegexes.some((regex) => regex.test(tag))) {\n sanitizedTag = \"\";\n }\n\n const response = await getPostsRanked(\n sort,\n start_author,\n start_permlink,\n limit,\n sanitizedTag,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface BlogEntry {\n author: string;\n permlink: string;\n blog: string;\n reblog_on: string;\n reblogged_on: string;\n entry_id: number;\n}\n\nexport interface Reblog {\n author: string;\n permlink: string;\n}\n\nexport function getReblogsQueryOptions(\n username?: string,\n activeUsername?: string,\n limit = 200\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.reblogs(username ?? \"\", limit),\n queryFn: async () => {\n const response = (await callRPC(\"condenser_api.get_blog_entries\", [\n username ?? activeUsername,\n 0,\n limit,\n ])) as BlogEntry[];\n\n return response\n .filter(\n (i) =>\n i.author !== activeUsername &&\n !i.reblogged_on.startsWith(\"1970-\")\n )\n .map((i) => ({ author: i.author, permlink: i.permlink })) as Reblog[];\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of usernames who reblogged a specific post\n */\nexport function getRebloggedByQueryOptions(author?: string, permlink?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.rebloggedBy(author ?? \"\", permlink ?? \"\"),\n queryFn: async () => {\n if (!author || !permlink) {\n return [];\n }\n\n const response = (await callRPC(\"condenser_api.get_reblogged_by\", [author, permlink])) as string[];\n\n return Array.isArray(response) ? response : [];\n },\n enabled: !!author && !!permlink,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { Schedule } from \"../types/schedule\";\n\nexport function getSchedulesQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.schedules(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch schedules: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getSchedulesInfiniteQueryOptions(\n activeUsername: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.schedulesInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/schedules?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch schedules: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { Draft } from \"../types/draft\";\n\nexport function getDraftsQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.drafts(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch drafts: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getDraftsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.draftsInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/drafts?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch drafts: ${response.status}`);\n }\n\n const json = await response.json();\n // Normalize response for backwards compatibility\n // If backend doesn't support wrapped format yet, it returns Draft[]\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { UserImage } from \"../types/user-image\";\n\nasync function fetchUserImages(code: string | undefined): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch images: ${response.status}`);\n }\n\n return response.json() as Promise;\n}\n\nexport function getImagesQueryOptions(username?: string, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.images(username),\n queryFn: async () => {\n if (!username || !code) {\n return [];\n }\n return fetchUserImages(code);\n },\n enabled: !!username && !!code,\n });\n}\n\nexport function getGalleryImagesQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.galleryImages(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n return fetchUserImages(code);\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getImagesInfiniteQueryOptions(\n username: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.imagesInfinite(username, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!username || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/images?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch images: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!username && !!code,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { CommentHistory } from \"../types/comment-history\";\n\nexport function getCommentHistoryQueryOptions(author: string, permlink: string, onlyMeta = false) {\n return queryOptions({\n queryKey: QueryKeys.posts.commentHistory(author, permlink, onlyMeta),\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/comment-history\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink,\n onlyMeta: onlyMeta ? \"1\" : \"\",\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch comment history: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!author && !!permlink,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { CommentHistory } from \"../types/comment-history\";\n\nfunction makeEntryPath(author: string, permlink: string): string {\n const cleanAuthor = author?.trim();\n const cleanPermlink = permlink?.trim();\n\n if (!cleanAuthor || !cleanPermlink) {\n throw new Error(\"Invalid entry path: author and permlink are required\");\n }\n\n // Normalize by removing any leading @ or / characters\n const normalizedAuthor = cleanAuthor.replace(/^@+/, \"\");\n const normalizedPermlink = cleanPermlink.replace(/^\\/+/, \"\");\n\n if (!normalizedAuthor || !normalizedPermlink) {\n throw new Error(\"Invalid entry path: author and permlink cannot be empty after normalization\");\n }\n\n return `@${normalizedAuthor}/${normalizedPermlink}`;\n}\n\nexport interface DeletedEntry {\n body: string;\n title: string;\n tags: string[];\n}\n\nexport function getDeletedEntryQueryOptions(author: string, permlink: string) {\n const cleanPermlink = permlink?.trim();\n const cleanAuthor = author?.trim();\n const isValid =\n !!cleanAuthor && !!cleanPermlink && cleanPermlink !== \"undefined\";\n\n const entryPath = isValid ? makeEntryPath(cleanAuthor, cleanPermlink) : \"\";\n\n return queryOptions({\n queryKey: QueryKeys.posts.deletedEntry(entryPath),\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/comment-history\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink: cleanPermlink || \"\",\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch comment history: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n select: (history): DeletedEntry | null => {\n if (!history?.list?.[0]) {\n return null;\n }\n const { body, title, tags } = history.list[0];\n return {\n body,\n title,\n tags,\n };\n },\n enabled: isValid,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { PostTipsResponse } from \"../types/post-tip\";\n\n/**\n * Tips for a single post.\n *\n * Addressed as a GET so the response can be cached. This was a POST, which no\n * cache may store, so the same tip totals were refetched on every mount. The\n * endpoint keys off nothing but author and permlink and needs no auth, and now\n * serves a Cache-Control, so a repeat read can come from the browser instead of\n * the network.\n *\n * `staleTime` is kept at or below the endpoint's own cache window rather than\n * extending it. react-query cannot see how old a response already was when\n * `fetch` served it from the browser cache, so it restarts its window from zero\n * on a body that may already be near expiry; worst-case staleness is the two\n * windows added together.\n */\nexport function getPostTipsQueryOptions(author: string, permlink: string, isEnabled = true) {\n return queryOptions({\n queryKey: QueryKeys.posts.tips(author, permlink),\n queryFn: async () => {\n const path = `/private-api/post-tips/${encodeURIComponent(author)}/${encodeURIComponent(permlink)}`;\n const response = await fetch(CONFIG.privateApiHost + path, {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch post tips: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!author && !!permlink && isEnabled,\n staleTime: 60 * 1000,\n });\n}\n","import { Entry, WaveEntry } from \"../types\";\nimport { getDiscussionsQueryOptions, SortOrder } from \"../queries/get-discussions-query-options\";\nimport { CONFIG } from \"@/modules/core\";\n\ntype EntryWithPostId = Entry & { post_id: number };\n\nfunction normalizeContainer(entry: EntryWithPostId, host: string): WaveEntry {\n return {\n ...entry,\n id: entry.id ?? entry.post_id,\n // The private-api waves feeds send the publish time as `timestamp`, not `created`.\n created: entry.created ?? (entry as unknown as { timestamp?: string }).timestamp,\n host\n } as WaveEntry;\n}\n\nfunction normalizeParent(entry: EntryWithPostId): Entry {\n return {\n ...entry,\n id: entry.id ?? entry.post_id\n } as Entry;\n}\n\nexport function normalizeWaveEntryFromApi(\n entry:\n | (Entry & { post_id: number; container?: EntryWithPostId | null; parent?: EntryWithPostId | null })\n | null\n | undefined,\n host: string\n): WaveEntry | null {\n if (!entry) {\n return null;\n }\n\n const containerSource = entry.container ?? entry;\n const container = normalizeContainer(containerSource, host);\n\n const parent = entry.parent ? normalizeParent(entry.parent) : undefined;\n\n return {\n ...entry,\n id: entry.id ?? entry.post_id,\n // The private-api waves feeds (following / tag / account) send the publish\n // time as `timestamp`, not `created`; map it so the relative time renders on\n // every card (the For You feed already carries a real `created` from Hive RPC).\n created: entry.created ?? (entry as unknown as { timestamp?: string }).timestamp,\n // The private-api waves feeds omit max_accepted_payout; default it (and the\n // payout strings) to the Hive shape so payout-rendering consumers run their\n // pending+author+curator summation instead of treating the value as missing.\n max_accepted_payout: entry.max_accepted_payout || \"1000000.000 HBD\",\n pending_payout_value: entry.pending_payout_value || \"0.000 HBD\",\n author_payout_value: entry.author_payout_value || \"0.000 HBD\",\n curator_payout_value: entry.curator_payout_value || \"0.000 HBD\",\n host,\n container,\n parent\n } as WaveEntry;\n}\n\nexport function toEntryArray(x: unknown): Entry[] {\n return Array.isArray(x) ? (x as Entry[]) : [];\n}\n\nexport async function getVisibleFirstLevelThreadItems(\n container: WaveEntry\n): Promise {\n const queryOptions = getDiscussionsQueryOptions(container, SortOrder.created, true);\n const discussionItemsRaw = await CONFIG.queryClient.fetchQuery(queryOptions);\n const discussionItems = toEntryArray(discussionItemsRaw);\n\n if (discussionItems.length <= 1) {\n return [];\n }\n\n const firstLevelItems = discussionItems.filter(\n ({ parent_author, parent_permlink }) =>\n parent_author === container.author && parent_permlink === container.permlink\n );\n\n if (firstLevelItems.length === 0) {\n return [];\n }\n\n const visibleItems = firstLevelItems.filter((item) => !item.stats?.gray);\n\n return visibleItems;\n}\n\nexport function mapThreadItemsToWaveEntries(\n items: Entry[],\n container: WaveEntry,\n host: string\n): WaveEntry[] {\n if (items.length === 0) {\n return [];\n }\n\n return items\n .map((item) => {\n const parent = items.find(\n (i) =>\n i.author === item.parent_author &&\n i.permlink === item.parent_permlink &&\n i.author !== host\n );\n\n return {\n ...item,\n id: item.post_id,\n host,\n container,\n parent\n } as WaveEntry;\n })\n .filter((entry) => entry.container.post_id !== entry.post_id)\n .sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\nconst DEFAULT_FEED_LIMIT = 20;\n\ntype WavesFeedRow = Entry & {\n post_id: number;\n // The wave's container account (e.g. ecency.waves, leothreads), so a mixed\n // cross-container feed can be rendered and acted on per item.\n host?: string;\n // Opaque keyset cursor pointing just past this row.\n _cursor?: string;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport type WavesFeedEntry = WaveEntry & { _cursor?: string };\n\nexport interface WavesFeedParams {\n /** Scope to one or more container accounts; omit for the full combined feed. */\n containers?: string[];\n /** Only waves carrying this tag (across all containers). */\n tag?: string;\n /** Only waves from accounts this user follows (across all containers). */\n following?: string;\n /** Only this author's waves (across all containers); the per-author feed. */\n author?: string;\n /**\n * The viewing user; exclude authors they currently mute. Ecency's own\n * moderation mutes are applied by esync regardless of this value, so leaving\n * it unset drops the viewer's personal mutes, not the platform ones.\n */\n observer?: string;\n /** Page size (default 20). */\n limit?: number;\n}\n\ninterface NormalizedFeedParams {\n containers: string[];\n tag?: string;\n following?: string;\n author?: string;\n observer?: string;\n limit: number;\n}\n\nfunction normalizeParams(params: WavesFeedParams): NormalizedFeedParams {\n return {\n containers: params.containers ?? [],\n tag: params.tag?.trim() || undefined,\n following: params.following?.trim().toLowerCase() || undefined,\n author: params.author?.trim().toLowerCase() || undefined,\n observer: params.observer?.trim().toLowerCase() || undefined,\n limit: params.limit ?? DEFAULT_FEED_LIMIT\n };\n}\n\nasync function fetchWavesFeedPage(\n { containers, tag, following, author, observer, limit }: NormalizedFeedParams,\n cursor: string | undefined,\n signal?: AbortSignal\n): Promise {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/feed\", baseUrl);\n url.searchParams.set(\"limit\", String(limit));\n if (cursor) {\n url.searchParams.set(\"cursor\", cursor);\n }\n containers.forEach((container) => url.searchParams.append(\"container\", container));\n if (tag) {\n url.searchParams.set(\"tag\", tag);\n }\n if (following) {\n url.searchParams.set(\"following\", following);\n }\n if (author) {\n url.searchParams.set(\"author\", author);\n }\n if (observer) {\n url.searchParams.set(\"observer\", observer);\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves feed: ${response.status}`);\n }\n\n const data = (await response.json()) as WavesFeedRow[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n return data\n .map((row) => {\n const entry = normalizeWaveEntryFromApi(row, row.host ?? \"\");\n if (!entry) {\n return null;\n }\n return { ...entry, _cursor: row._cursor } as WavesFeedEntry;\n })\n .filter((entry): entry is WavesFeedEntry => Boolean(entry));\n}\n\n/**\n * Combined cross-container waves feed (the chronological \"For You\" stream, and\n * the Following / Tag feeds via filters).\n *\n * A single esync-backed call returns the newest waves across every indexed\n * container, already merged and time-ordered, with keyset (cursor) pagination,\n * replacing the per-container chain-RPC scan. The optional `tag` / `following`\n * filters narrow the same stream without changing the cursor.\n */\nexport function getWavesFeedQueryOptions(params: WavesFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, following, author, observer, limit } = normalized;\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesFeed({ containers, tag, following, author, observer, limit }),\n initialPageParam: undefined as string | undefined,\n\n queryFn: ({ pageParam, signal }) => fetchWavesFeedPage(normalized, pageParam, signal),\n\n // Keyset pagination. A short page (fewer than `limit` rows) is the\n // end-of-feed signal; on a full page the server always returns the next\n // cursor on the last row. Stopping (rather than looping) is the safe\n // fallback if that cursor were ever absent.\n getNextPageParam: (lastPage: WavesFeedEntry[]) => {\n if (lastPage.length < limit) {\n return undefined;\n }\n return lastPage[lastPage.length - 1]?._cursor;\n }\n });\n}\n\n/**\n * Page-one of the combined feed as a plain (non-infinite) query under a distinct\n * key, for the \"new waves\" poll. Separate from {@link getWavesFeedQueryOptions}\n * so refreshing it never truncates the infinite feed's loaded pages.\n */\nexport function getWavesLatestFeedQueryOptions(params: WavesFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, following, author, observer, limit } = normalized;\n\n return queryOptions({\n queryKey: [\n ...QueryKeys.posts.wavesFeed({ containers, tag, following, author, observer, limit }),\n \"latest\"\n ],\n staleTime: 0,\n queryFn: ({ signal }) => fetchWavesFeedPage(normalized, undefined, signal)\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\nconst DEFAULT_FEED_LIMIT = 20;\n\n/** The 3Speak video a short embeds, as returned by esync /api/waves/shorts. */\nexport interface ShortVideo {\n platform: string;\n author: string;\n permlink: string;\n embed_url: string;\n thumbnail_url: string | null;\n duration_secs: number | null;\n}\n\ntype ShortsFeedRow = Entry & {\n post_id: number;\n host?: string;\n video?: ShortVideo;\n _cursor?: string;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport type ShortsFeedEntry = WaveEntry & {\n /** The embedded 3Speak video reference for the reels player. */\n video?: ShortVideo;\n _cursor?: string;\n};\n\nexport interface ShortsFeedParams {\n /** Scope to one or more container accounts; omit for the full combined feed. */\n containers?: string[];\n /** Only shorts carrying this tag (across all containers). */\n tag?: string;\n /** Only this author's shorts (across all containers). */\n author?: string;\n /**\n * The viewing user; exclude authors they currently mute. Ecency's own\n * moderation mutes are applied by esync regardless of this value.\n */\n observer?: string;\n /** Page size (default 20). */\n limit?: number;\n}\n\ninterface NormalizedShortsParams {\n containers: string[];\n tag?: string;\n author?: string;\n observer?: string;\n limit: number;\n}\n\nfunction normalizeParams(params: ShortsFeedParams): NormalizedShortsParams {\n return {\n containers: params.containers ?? [],\n tag: params.tag?.trim() || undefined,\n author: params.author?.trim().toLowerCase() || undefined,\n observer: params.observer?.trim().toLowerCase() || undefined,\n limit: params.limit ?? DEFAULT_FEED_LIMIT\n };\n}\n\nasync function fetchShortsFeedPage(\n { containers, tag, author, observer, limit }: NormalizedShortsParams,\n cursor: string | undefined,\n signal?: AbortSignal\n): Promise {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/shorts\", baseUrl);\n url.searchParams.set(\"limit\", String(limit));\n if (cursor) {\n url.searchParams.set(\"cursor\", cursor);\n }\n containers.forEach((container) => url.searchParams.append(\"container\", container));\n if (tag) {\n url.searchParams.set(\"tag\", tag);\n }\n if (author) {\n url.searchParams.set(\"author\", author);\n }\n if (observer) {\n url.searchParams.set(\"observer\", observer);\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch shorts feed: ${response.status}`);\n }\n\n const data = (await response.json()) as ShortsFeedRow[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n return data\n .map((row) => {\n const entry = normalizeWaveEntryFromApi(row, row.host ?? \"\");\n if (!entry) {\n return null;\n }\n return {\n ...entry,\n // A lightweight feed row may omit active_votes; EntryVoteBtn (which uses\n // this entry as React Query initialData) calls .some() on it, so default\n // to an empty array to avoid a crash before the full post query loads.\n active_votes: entry.active_votes ?? [],\n video: row.video,\n _cursor: row._cursor\n } as ShortsFeedEntry;\n })\n .filter((entry): entry is ShortsFeedEntry => Boolean(entry));\n}\n\n/**\n * Combined cross-container shorts (reels) feed: waves that embed a 3Speak video.\n *\n * Backed by esync /api/waves/shorts (via /private-api/waves/shorts). Same shape,\n * keyset pagination and filters as {@link getWavesFeedQueryOptions}, plus a\n * `video` block per item for the vertical reels player. There is no `following`\n * filter in v1.\n */\nexport function getShortsFeedQueryOptions(params: ShortsFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, author, observer, limit } = normalized;\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.shortsFeed({ containers, tag, author, observer, limit }),\n initialPageParam: undefined as string | undefined,\n\n queryFn: ({ pageParam, signal }) => fetchShortsFeedPage(normalized, pageParam, signal),\n\n // Keyset pagination: a short page (fewer than `limit` rows) ends the feed;\n // on a full page the server returns the next cursor on the last row.\n getNextPageParam: (lastPage: ShortsFeedEntry[]) => {\n if (lastPage.length < limit) {\n return undefined;\n }\n return lastPage[lastPage.length - 1]?._cursor;\n }\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport {\n getVisibleFirstLevelThreadItems,\n mapThreadItemsToWaveEntries\n} from \"../utils/waves-helpers\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nconst THREAD_CONTAINER_BATCH_SIZE = 5;\nconst MAX_CONTAINERS_TO_SCAN = 50;\n\ninterface ThreadsResult {\n entries: WaveEntry[];\n}\n\nasync function getThreads(\n host: string,\n pageParam?: WaveEntry\n): Promise {\n let startAuthor = pageParam?.author;\n let startPermlink = pageParam?.permlink;\n let scannedContainers = 0;\n let skipContainerId = pageParam?.post_id;\n\n while (scannedContainers < MAX_CONTAINERS_TO_SCAN) {\n interface AccountPostsParams {\n sort: string;\n account: string;\n limit: number;\n start_author?: string;\n start_permlink?: string;\n }\n\n const rpcParams: AccountPostsParams = {\n sort: \"posts\", // ProfileFilter.posts\n account: host,\n limit: THREAD_CONTAINER_BATCH_SIZE,\n ...(startAuthor ? { start_author: startAuthor } : {}),\n ...(startPermlink ? { start_permlink: startPermlink } : {})\n };\n\n let containers: WaveEntry[];\n try {\n containers = (await callRPC(\"bridge.get_account_posts\", rpcParams)) as WaveEntry[];\n } catch (err) {\n console.error(\"[SDK] getThreads get_account_posts error:\", err);\n return null;\n }\n\n if (!containers || containers.length === 0) {\n return null;\n }\n\n const normalizedContainers = containers.map((container) => {\n container.id = container.post_id;\n container.host = host;\n return container;\n });\n\n for (const container of normalizedContainers) {\n if (skipContainerId && container.post_id === skipContainerId) {\n skipContainerId = undefined;\n continue;\n }\n\n scannedContainers += 1;\n\n if (container.stats?.gray) {\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n let visibleItems: Entry[];\n try {\n visibleItems = await getVisibleFirstLevelThreadItems(container);\n } catch (err) {\n // A transient bridge.get_discussion failure (RPC timeout, node error, or\n // an oversized response on a large late-day container) must not collapse\n // the whole feed. Treat this container as temporarily unavailable and scan\n // the next one — mirroring the empty-container handling below and the\n // get_account_posts guard above. The query's refetch interval retries it.\n console.error(\"[SDK] getThreads get_discussion error:\", err);\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n if (visibleItems.length === 0) {\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n return {\n entries: mapThreadItemsToWaveEntries(visibleItems, container, host)\n };\n }\n\n const lastContainer = normalizedContainers[normalizedContainers.length - 1];\n\n if (!lastContainer) {\n return null;\n }\n\n startAuthor = lastContainer.author;\n startPermlink = lastContainer.permlink;\n }\n\n return null;\n}\n\n// Page = array of WaveEntry; Cursor = WaveEntry (container) or undefined\ntype WavesPage = WaveEntry[];\ntype WavesCursor = WaveEntry | undefined;\n\nexport function getWavesByHostQueryOptions(host: string) {\n return infiniteQueryOptions<\n WavesPage,\n Error,\n InfiniteData,\n string[],\n WavesCursor\n >({\n queryKey: QueryKeys.posts.wavesByHost(host),\n initialPageParam: undefined as WavesCursor,\n\n queryFn: async ({ pageParam }: { pageParam: WavesCursor }) => {\n const result = await getThreads(host, pageParam);\n if (!result) return []; // no items to show for this page\n\n return result.entries;\n },\n\n getNextPageParam: (lastPage: WavesPage): WavesCursor => lastPage?.[0]?.container,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ntype WavesTagEntryResponse = Entry & {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nconst DEFAULT_TAG_FEED_LIMIT = 40;\n\nexport function getWavesByTagQueryOptions(host: string, tag: string, limit = DEFAULT_TAG_FEED_LIMIT) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesByTag(host, tag),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/tags\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"tag\", tag);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves by tag: ${response.status}`);\n }\n\n const data = await response.json() as WavesTagEntryResponse[];\n\n const result = data\n .slice(0, limit)\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n return result.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves by tag\", error);\n return [];\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ntype WavesFollowingEntry = Entry & {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport function getWavesFollowingQueryOptions(host: string, username?: string) {\n const normalizedUsername = username?.trim().toLowerCase();\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesFollowing(host, normalizedUsername ?? \"\"),\n enabled: Boolean(normalizedUsername),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n if (!normalizedUsername) {\n return [];\n }\n\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/following\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"username\", normalizedUsername);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves following feed: ${response.status}`);\n }\n\n const data = await response.json() as WavesFollowingEntry[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n const flattened = data\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n if (flattened.length === 0) {\n return [];\n }\n\n return flattened.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves following feed\", error);\n return [];\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { WaveTrendingTag } from \"../types\";\n\ninterface WavesTrendingTagResponse {\n tag: string;\n posts: number;\n}\n\nexport function getWavesTrendingTagsQueryOptions(host?: string, hours = 24) {\n // Omit the container for combined trending tags across all containers.\n const container = host?.trim() || undefined;\n\n return queryOptions({\n queryKey: QueryKeys.posts.wavesTrendingTags(container ?? \"\", hours),\n queryFn: async ({ signal }): Promise => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/trending/tags\", baseUrl);\n if (container) {\n url.searchParams.set(\"container\", container);\n }\n url.searchParams.set(\"hours\", hours.toString());\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves trending tags: ${response.status}`);\n }\n\n const data = await response.json() as WavesTrendingTagResponse[];\n\n return data.map(({ tag, posts }) => ({ tag, posts }));\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves trending tags\", error);\n return [];\n }\n }\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ninterface WavesAccountEntry extends Entry {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n}\n\nexport function getWavesByAccountQueryOptions(host: string, username?: string) {\n const normalizedUsername = username?.trim().toLowerCase();\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesByAccount(host, normalizedUsername ?? \"\"),\n enabled: Boolean(normalizedUsername),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n if (!normalizedUsername) {\n return [];\n }\n\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/account\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"username\", normalizedUsername);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves for account: ${response.status}`);\n }\n\n const data = await response.json() as WavesAccountEntry[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n const flattened = data\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n if (flattened.length === 0) {\n return [];\n }\n\n return flattened.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves for account\", error);\n throw error;\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { WaveTrendingAuthor } from \"../types\";\n\nexport function getWavesTrendingAuthorsQueryOptions(host: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.wavesTrendingAuthors(host),\n queryFn: async ({ signal }): Promise => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/trending/authors\", baseUrl);\n url.searchParams.set(\"container\", host);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves trending authors: ${response.status}`);\n }\n\n const data = await response.json() as WaveTrendingAuthor[];\n\n return data.map(({ author, posts }) => ({ author, posts }));\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves trending authors\", error);\n throw error;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry } from \"../types\";\nimport { normalizePost } from \"@/modules/bridge\";\n\nexport function getNormalizePostQueryOptions(\n post: { author?: string; permlink?: string } | undefined,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.normalize(post?.author ?? \"\", post?.permlink ?? \"\"),\n enabled: enabled && !!post,\n queryFn: async () => normalizePost(post) as Promise,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core/config\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry } from \"@/modules/posts/types\";\nimport { getPostQueryOptions } from \"@/modules/posts/queries\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ninterface VoteOperationDetails {\n voter: string;\n author: string;\n permlink: string;\n weight: number;\n}\n\ninterface AccountVoteHistoryItem {\n timestamp: string;\n op: [string, VoteOperationDetails];\n}\n\ntype AccountVoteHistoryRecord = [number, AccountVoteHistoryItem];\n\ninterface VoteHistoryResult extends VoteOperationDetails {\n num: number;\n timestamp: string;\n}\n\nexport interface VoteHistoryPageParam {\n start: number;\n}\n\nexport interface VoteHistoryPage {\n lastDate: number;\n lastItemFetched: number;\n entries: Entry[];\n}\n\nfunction isEntry(x: unknown): x is Entry {\n return (\n !!x &&\n typeof x === \"object\" &&\n \"author\" in x &&\n \"permlink\" in x &&\n \"active_votes\" in x\n );\n}\n\n/**\n * Calculate days since a date\n */\nfunction getDays(createdDate: string): number {\n const past = new Date(createdDate);\n const now = new Date();\n const diffMs = now.getTime() - past.getTime();\n return diffMs / (1000 * 60 * 60 * 24);\n}\n\n/**\n * Get account vote history with entries\n *\n * @param username - Account name to get vote history for\n * @param limit - Number of history items per page (default: 20)\n * @param filters - Additional filters to pass to get_account_history\n * @param dayLimit - Only include votes from last N days (default: 7)\n */\nexport function getAccountVoteHistoryInfiniteQueryOptions(\n username: string,\n options?: {\n limit?: number;\n filters?: F[];\n dayLimit?: number;\n }\n) {\n const { limit = 20, filters = [], dayLimit = 7.0 } = options ?? {};\n\n return infiniteQueryOptions<\n VoteHistoryPage,\n Error,\n InfiniteData,\n (string | number)[],\n VoteHistoryPageParam\n >({\n queryKey: QueryKeys.accounts.voteHistory(username, limit),\n initialPageParam: { start: -1 },\n\n queryFn: async ({ pageParam }: { pageParam: VoteHistoryPageParam }) => {\n const { start } = pageParam;\n\n const response = (await callRPC(\"condenser_api.get_account_history\", [username, start, limit, ...filters])) as AccountVoteHistoryRecord[];\n\n const mappedResults: VoteHistoryResult[] = response.map(([num, historyObj]) => ({\n ...historyObj.op[1],\n num,\n timestamp: historyObj.timestamp,\n }));\n\n const result = mappedResults.filter(\n (filtered) =>\n filtered.voter === username &&\n filtered.weight !== 0 &&\n getDays(filtered.timestamp) <= dayLimit\n );\n\n const entries: Entry[] = [];\n for (const obj of result) {\n const post = await CONFIG.queryClient.fetchQuery(\n getPostQueryOptions(obj.author, obj.permlink)\n );\n if (isEntry(post)) entries.push(post);\n }\n\n const [firstHistory] = response;\n\n return {\n lastDate: firstHistory ? getDays(firstHistory[1].timestamp) : 0,\n lastItemFetched: firstHistory ? firstHistory[0] : start,\n entries,\n };\n },\n\n getNextPageParam: (lastPage: VoteHistoryPage): VoteHistoryPageParam => ({\n start: lastPage.lastItemFetched,\n }),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Profile } from \"../types\";\nimport { getProfiles } from \"@/modules/bridge\";\n\nexport function getProfilesQueryOptions(\n accounts: string[],\n observer?: string,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.profiles(accounts, observer ?? \"\"),\n enabled: enabled && accounts.length > 0,\n queryFn: async () => getProfiles(accounts, observer) as Promise,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport type {\n BalanceCoinType,\n BalanceHistoryEntry,\n BalanceHistoryResponse,\n} from \"../types\";\n\ninterface BalanceHistoryPage {\n entries: BalanceHistoryEntry[];\n currentPage: number;\n}\n\n/**\n * Cursor for balance history pagination.\n * null = first request (returns the newest page).\n * number = specific page to fetch (decrementing for older data).\n */\ntype BalanceHistoryCursor = number | null;\n\n/**\n * Get balance history for an account with pagination, newest first.\n * Uses the balance-api REST endpoint with direction=desc.\n *\n * Pagination: first call omits `page` to get the newest data.\n * The response includes `total_pages` so we know the current page number.\n * Subsequent calls decrement the page number to load older data.\n *\n * @param username - Account name\n * @param coinType - HIVE, HBD, or VESTS\n * @param pageSize - Number of entries per page\n */\nexport function getBalanceHistoryInfiniteQueryOptions(\n username?: string,\n coinType: BalanceCoinType = \"HIVE\",\n pageSize = 200\n) {\n return infiniteQueryOptions<\n BalanceHistoryPage,\n Error,\n InfiniteData,\n (string | number)[],\n BalanceHistoryCursor\n >({\n queryKey: QueryKeys.wallet.balanceHistory(\n username ?? \"\",\n coinType,\n pageSize\n ),\n initialPageParam: null as BalanceHistoryCursor,\n\n queryFn: async ({ pageParam, signal }) => {\n if (!username) {\n return { entries: [], currentPage: 0 };\n }\n\n const params: Record = {\n \"account-name\": username,\n \"coin-type\": coinType,\n \"page-size\": pageSize,\n direction: \"desc\",\n };\n\n // First call: omit page to get newest data\n // Subsequent calls: pass specific page number\n if (pageParam !== null) {\n params.page = pageParam;\n }\n\n const response = (await callREST(\n \"balance\",\n \"/accounts/{account-name}/balance-history\",\n params,\n undefined,\n undefined,\n signal\n )) as BalanceHistoryResponse;\n\n return {\n entries: response.operations_result,\n currentPage: pageParam ?? response.total_pages,\n };\n },\n\n getNextPageParam: (lastPage) => {\n // Decrement page to go further back in time\n const nextPage = lastPage.currentPage - 1;\n return nextPage >= 1 ? nextPage : undefined;\n },\n\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport type { AggregatedBalanceEntry, BalanceCoinType } from \"../types\";\n\nexport type BalanceAggregationGranularity = \"yearly\" | \"monthly\" | \"daily\";\n\n/**\n * Get aggregated balance history for an account.\n * Uses the balance-api REST endpoint - enables yearly/monthly/daily summary\n * widgets that are impossible via RPC.\n *\n * @param username - Account name\n * @param coinType - HIVE, HBD, or VESTS\n * @param granularity - yearly (default), monthly, or daily\n */\nexport function getAggregatedBalanceQueryOptions(\n username?: string,\n coinType: BalanceCoinType = \"HIVE\",\n granularity: BalanceAggregationGranularity = \"yearly\"\n) {\n return queryOptions({\n queryKey: QueryKeys.wallet.aggregatedHistory(\n username ?? \"\",\n coinType,\n granularity\n ),\n\n queryFn: async () => {\n if (!username) {\n return [];\n }\n\n return (await callREST(\n \"balance\",\n \"/accounts/{account-name}/aggregated-history\",\n {\n \"account-name\": username,\n \"coin-type\": coinType,\n granularity,\n }\n )) as AggregatedBalanceEntry[];\n },\n\n enabled: !!username,\n staleTime: 60_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport interface ProMembersResponse {\n /** Usernames of active Ecency Pro members. */\n members: string[];\n count: number;\n}\n\n/**\n * Public, cached roster of Ecency Pro members. Backed by a lightweight private-api\n * endpoint (no auth) so any surface can decorate a username with a Pro badge without\n * a per-user request.\n *\n * `staleTime` is deliberately shorter than the endpoint's own cache window and is\n * NOT raised to match it. react-query has no idea how old a response already was\n * when `fetch` served it from the browser cache: it treats a nine-minute-old\n * cached body as freshly fetched and starts its own window from zero. Worst-case\n * staleness is therefore the endpoint's window plus this one, so raising this to\n * match the server would roughly double it rather than align it.\n */\nexport function getProMembersQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.accounts.proMembers(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/pro-members\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch pro members: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n staleTime: 5 * 60 * 1000,\n });\n}\n\n/** Lowercased set of member usernames for O(1), case-insensitive membership checks. */\nexport function proMembersSet(members?: string[]): Set {\n return new Set((members ?? []).map((m) => m.toLowerCase()));\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { useQuery, useQueryClient } from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { AccountProfile, FullAccount } from \"../types\";\nimport {\n buildPostingJsonMetadata,\n buildProfileMetadata,\n extractAccountProfile,\n pickRicherMetadataSnapshot,\n} from \"../utils/profile-metadata\";\n\ninterface Payload {\n profile: Partial;\n tokens: AccountProfile[\"tokens\"];\n}\n\n/**\n * React Query mutation hook for updating account profile metadata.\n *\n * This mutation broadcasts an account_update2 operation to update the user's\n * profile information (name, about, location, avatar, cover image, etc.).\n *\n * @param username - The username to update (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Profile Fields:**\n * - name: Display name\n * - about: Bio/description\n * - location: Location\n * - website: Website URL\n * - profile_image: Avatar URL\n * - cover_image: Cover/banner URL\n * - tokens: Social tokens (Twitter, Facebook, etc.)\n * - version: Profile metadata version (auto-set to 2)\n *\n * **Authentication:**\n * - Uses posting authority (account_update2 operation)\n * - Supports all auth methods via platform adapter\n *\n * **Post-Broadcast Actions:**\n * - Optimistically updates account cache with new profile data\n * - Invalidates account cache to refetch from blockchain\n *\n * @example\n * ```typescript\n * const updateProfile = useAccountUpdate(username, {\n * adapter: myAdapter,\n * });\n *\n * // Update profile\n * updateProfile.mutate({\n * profile: {\n * name: \"John Doe\",\n * about: \"Hive enthusiast\",\n * profile_image: \"https://...\",\n * }\n * });\n * ```\n */\nexport function useAccountUpdate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n const queryClient = useQueryClient();\n\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useBroadcastMutation(\n [\"accounts\", \"update\"],\n username,\n (payload: Partial) => {\n // Prefer the freshest cached snapshot. onMutate has just refetched the\n // account from chain, so this usually reflects the current on-chain\n // profile rather than a possibly stale/unloaded render-time value. If\n // the cache instead holds a metadata-poorer row than the render-time\n // snapshot (e.g. a node served a stripped account row), the richer\n // snapshot wins — a partial update must never shrink the profile while\n // any snapshot still knows the full one.\n const account = pickRicherMetadataSnapshot(\n queryClient.getQueryData(\n getAccountFullQueryOptions(username).queryKey\n ),\n data\n );\n\n if (!account) {\n throw new Error(\"[SDK][Accounts] – cannot update not existing account\");\n }\n\n return [\n [\n \"account_update2\",\n {\n account: username!,\n json_metadata: \"\",\n extensions: [] as [],\n // Read-modify-write the FULL on-chain metadata: deep-merge the\n // profile and preserve any non-`profile` top-level keys, so a\n // partial update never wipes unrelated fields.\n posting_json_metadata: buildPostingJsonMetadata({\n existingPostingJsonMetadata: account.posting_json_metadata,\n profile: payload.profile,\n tokens: payload.tokens,\n }),\n },\n ],\n ];\n },\n async (_data: unknown, variables: Partial) => {\n // Optimistic cache update\n queryClient.setQueryData(\n getAccountFullQueryOptions(username).queryKey,\n (data) => {\n if (!data) {\n return data;\n }\n\n const obj = JSON.parse(JSON.stringify(data)) as FullAccount;\n obj.profile = buildProfileMetadata({\n existingProfile: extractAccountProfile(data),\n profile: variables.profile,\n tokens: variables.tokens,\n });\n\n return obj;\n }\n );\n\n // Invalidate cache to refetch from blockchain\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username)\n ]);\n },\n auth,\n undefined,\n {\n broadcastMode,\n // Before merging, force a fresh on-chain read so a stale or unloaded\n // cached snapshot cannot cause a partial update (e.g. pinning a post,\n // which sets only `pinned`) to overwrite the existing profile with a\n // near-empty object. Best-effort: if the refetch fails, the op builder\n // falls back to the cached snapshot.\n onMutate: async () => {\n if (!username) {\n return;\n }\n try {\n await queryClient.fetchQuery({\n ...getAccountFullQueryOptions(username),\n staleTime: 0,\n });\n } catch {\n // Ignore – fall back to whatever is already cached.\n }\n },\n }\n );\n}\n","import { broadcastJson, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { AuthContext } from \"@/modules/core/types\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { getRelationshipBetweenAccountsQueryOptions, getAccountFullQueryOptions } from \"../queries\";\nimport { AccountRelationship } from \"../types\";\n\ntype Kind = \"toggle-ignore\" | \"toggle-follow\";\n\nexport function useAccountRelationsUpdate(\n reference: string | undefined,\n target: string | undefined,\n auth: AuthContext | undefined,\n onSuccess: (data: Partial | undefined) => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"relation\", \"update\", reference, target],\n mutationFn: async (kind: Kind) => {\n const relationsQuery = getRelationshipBetweenAccountsQueryOptions(\n reference!,\n target!\n );\n await getQueryClient().prefetchQuery(relationsQuery);\n const actualRelation = getQueryClient().getQueryData(\n relationsQuery.queryKey\n );\n\n await broadcastJson(\n reference,\n \"follow\",\n [\n \"follow\",\n {\n follower: reference,\n following: target,\n what: [\n ...(kind === \"toggle-ignore\" && !actualRelation?.ignores\n ? [\"ignore\"]\n : []),\n ...(kind === \"toggle-follow\" && !actualRelation?.follows\n ? [\"blog\"]\n : []),\n ],\n },\n ],\n auth\n );\n\n return {\n ...actualRelation,\n ignores:\n kind === \"toggle-ignore\"\n ? !actualRelation?.ignores\n : actualRelation?.ignores,\n follows:\n kind === \"toggle-follow\"\n ? !actualRelation?.follows\n : actualRelation?.follows,\n } satisfies Partial;\n },\n onError,\n onSuccess(data) {\n onSuccess(data);\n\n getQueryClient().setQueryData(\n QueryKeys.accounts.relations(reference!, target!),\n data\n );\n\n // Invalidate account query to refetch follow stats (follower_count, following_count)\n // This is needed because profile pages use staleTime: Infinity for performance\n if (target) {\n getQueryClient().invalidateQueries(\n getAccountFullQueryOptions(target)\n );\n }\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Content Operations\n * Operations for creating, voting, and managing content on Hive blockchain\n */\n\n/**\n * Builds a vote operation.\n * @param voter - Account casting the vote\n * @param author - Author of the post/comment\n * @param permlink - Permlink of the post/comment\n * @param weight - Vote weight (-10000 to 10000, where 10000 = 100% upvote, -10000 = 100% downvote)\n * @returns Vote operation\n */\nexport function buildVoteOp(\n voter: string,\n author: string,\n permlink: string,\n weight: number\n): Operation {\n if (!voter || !author || !permlink) {\n throw new Error(\"[SDK][buildVoteOp] Missing required parameters\");\n }\n if (weight < -10000 || weight > 10000) {\n throw new Error(\"[SDK][buildVoteOp] Weight must be between -10000 and 10000\");\n }\n\n return [\n \"vote\",\n {\n voter,\n author,\n permlink,\n weight,\n },\n ];\n}\n\n/**\n * Builds a comment operation (for posts or replies).\n * @param author - Author of the comment/post\n * @param permlink - Permlink of the comment/post\n * @param parentAuthor - Parent author (empty string for top-level posts)\n * @param parentPermlink - Parent permlink (category/tag for top-level posts)\n * @param title - Title of the post (empty for comments)\n * @param body - Content body (required - cannot be empty)\n * @param jsonMetadata - JSON metadata object\n * @returns Comment operation\n */\nexport function buildCommentOp(\n author: string,\n permlink: string,\n parentAuthor: string,\n parentPermlink: string,\n title: string,\n body: string,\n jsonMetadata: Record\n): Operation {\n // Every comment mutation (create, update, cross-post) goes through this\n // builder, so it is the one place the required fields are checked. Naming the\n // missing ones makes the report actionable instead of a bare assertion.\n const missing: string[] = [];\n if (!author) missing.push(\"author\");\n if (!permlink) missing.push(\"permlink\");\n if (parentPermlink === undefined) missing.push(\"parentPermlink\");\n if (!body) missing.push(\"body\");\n if (missing.length > 0) {\n throw new Error(`[SDK][buildCommentOp] Missing required parameters: ${missing.join(\", \")}`);\n }\n\n return [\n \"comment\",\n {\n parent_author: parentAuthor,\n parent_permlink: parentPermlink,\n author,\n permlink,\n title,\n body,\n json_metadata: JSON.stringify(jsonMetadata),\n },\n ];\n}\n\n/**\n * Builds a comment options operation (for setting beneficiaries, rewards, etc.).\n * @param author - Author of the comment/post\n * @param permlink - Permlink of the comment/post\n * @param maxAcceptedPayout - Maximum accepted payout (e.g., \"1000000.000 HBD\")\n * @param percentHbd - Percent of payout in HBD (10000 = 100%)\n * @param allowVotes - Allow votes on this content\n * @param allowCurationRewards - Allow curation rewards\n * @param extensions - Extensions array (for beneficiaries, etc.)\n * @returns Comment options operation\n */\nexport function buildCommentOptionsOp(\n author: string,\n permlink: string,\n maxAcceptedPayout: string,\n percentHbd: number,\n allowVotes: boolean,\n allowCurationRewards: boolean,\n extensions: any[]\n): Operation {\n if (!author || !permlink) {\n throw new Error(\"[SDK][buildCommentOptionsOp] Missing required parameters\");\n }\n\n return [\n \"comment_options\",\n {\n author,\n permlink,\n max_accepted_payout: maxAcceptedPayout,\n percent_hbd: percentHbd,\n allow_votes: allowVotes,\n allow_curation_rewards: allowCurationRewards,\n extensions,\n },\n ];\n}\n\n/**\n * Builds a delete comment operation.\n * @param author - Author of the comment/post to delete\n * @param permlink - Permlink of the comment/post to delete\n * @returns Delete comment operation\n */\nexport function buildDeleteCommentOp(author: string, permlink: string): Operation {\n if (!author || !permlink) {\n throw new Error(\"[SDK][buildDeleteCommentOp] Missing required parameters\");\n }\n\n return [\n \"delete_comment\",\n {\n author,\n permlink,\n },\n ];\n}\n\n/**\n * Builds a reblog operation (custom_json).\n * @param account - Account performing the reblog\n * @param author - Original post author\n * @param permlink - Original post permlink\n * @param deleteReblog - If true, removes the reblog\n * @returns Custom JSON operation for reblog\n */\nexport function buildReblogOp(\n account: string,\n author: string,\n permlink: string,\n deleteReblog: boolean = false\n): Operation {\n if (!account || !author || !permlink) {\n throw new Error(\"[SDK][buildReblogOp] Missing required parameters\");\n }\n\n const json: any = {\n account,\n author,\n permlink,\n };\n\n if (deleteReblog) {\n json.delete = \"delete\";\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\"reblog\", json]),\n required_auths: [],\n required_posting_auths: [account],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Wallet Operations\n * Operations for managing tokens, savings, vesting, and conversions\n */\n\n/**\n * Builds a transfer operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Transfer operation\n */\nexport function buildTransferOp(\n from: string,\n to: string,\n amount: string,\n memo: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferOp] Missing required parameters\");\n }\n\n return [\n \"transfer\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n },\n ];\n}\n\n/**\n * Builds multiple transfer operations for multiple recipients.\n * @param from - Sender account\n * @param destinations - Comma or space separated list of recipient accounts\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Array of transfer operations\n */\nexport function buildMultiTransferOps(\n from: string,\n destinations: string,\n amount: string,\n memo: string\n): Operation[] {\n if (!from || !destinations || !amount) {\n throw new Error(\"[SDK][buildMultiTransferOps] Missing required parameters\");\n }\n\n // Split the destination input into an array of usernames\n const destArray = destinations\n .trim()\n .split(/[\\s,]+/)\n .filter(Boolean);\n\n // Create a transfer operation for each destination username\n return destArray.map((dest) =>\n buildTransferOp(from, dest.trim(), amount, memo)\n );\n}\n\n/**\n * Builds a recurrent transfer operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @param recurrence - Recurrence in hours\n * @param executions - Number of executions (2 = executes twice)\n * @returns Recurrent transfer operation\n */\nexport function buildRecurrentTransferOp(\n from: string,\n to: string,\n amount: string,\n memo: string,\n recurrence: number,\n executions: number\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildRecurrentTransferOp] Missing required parameters\");\n }\n if (recurrence < 24) {\n throw new Error(\"[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours\");\n }\n\n return [\n \"recurrent_transfer\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n recurrence,\n executions,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds a transfer to savings operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Transfer to savings operation\n */\nexport function buildTransferToSavingsOp(\n from: string,\n to: string,\n amount: string,\n memo: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferToSavingsOp] Missing required parameters\");\n }\n\n return [\n \"transfer_to_savings\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n },\n ];\n}\n\n/**\n * Builds a transfer from savings operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @param requestId - Unique request ID (use timestamp)\n * @returns Transfer from savings operation\n */\nexport function buildTransferFromSavingsOp(\n from: string,\n to: string,\n amount: string,\n memo: string,\n requestId: number\n): Operation {\n if (!from || !to || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildTransferFromSavingsOp] Missing required parameters\");\n }\n\n return [\n \"transfer_from_savings\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n request_id: requestId,\n },\n ];\n}\n\n/**\n * Builds a cancel transfer from savings operation.\n * @param from - Account that initiated the savings withdrawal\n * @param requestId - Request ID to cancel\n * @returns Cancel transfer from savings operation\n */\nexport function buildCancelTransferFromSavingsOp(\n from: string,\n requestId: number\n): Operation {\n if (!from || requestId === undefined) {\n throw new Error(\"[SDK][buildCancelTransferFromSavingsOp] Missing required parameters\");\n }\n\n return [\n \"cancel_transfer_from_savings\",\n {\n from,\n request_id: requestId,\n },\n ];\n}\n\n/**\n * Builds operations to claim savings interest.\n * Creates a transfer_from_savings and immediately cancels it to claim interest.\n * @param from - Account claiming interest\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"0.001 HIVE\")\n * @param memo - Transfer memo\n * @param requestId - Unique request ID\n * @returns Array of operations [transfer_from_savings, cancel_transfer_from_savings]\n */\nexport function buildClaimInterestOps(\n from: string,\n to: string,\n amount: string,\n memo: string,\n requestId: number\n): Operation[] {\n if (!from || !to || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildClaimInterestOps] Missing required parameters\");\n }\n\n return [\n buildTransferFromSavingsOp(from, to, amount, memo, requestId),\n buildCancelTransferFromSavingsOp(from, requestId),\n ];\n}\n\n/**\n * Builds a transfer to vesting operation (power up).\n * @param from - Account sending HIVE\n * @param to - Account receiving Hive Power\n * @param amount - Amount with HIVE symbol (e.g., \"1.000 HIVE\")\n * @returns Transfer to vesting operation\n */\nexport function buildTransferToVestingOp(\n from: string,\n to: string,\n amount: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferToVestingOp] Missing required parameters\");\n }\n\n return [\n \"transfer_to_vesting\",\n {\n from,\n to,\n amount,\n },\n ];\n}\n\n/**\n * Builds a withdraw vesting operation (power down).\n * @param account - Account withdrawing vesting\n * @param vestingShares - Amount of VESTS to withdraw (e.g., \"1.000000 VESTS\")\n * @returns Withdraw vesting operation\n */\nexport function buildWithdrawVestingOp(\n account: string,\n vestingShares: string\n): Operation {\n if (!account || !vestingShares) {\n throw new Error(\"[SDK][buildWithdrawVestingOp] Missing required parameters\");\n }\n\n return [\n \"withdraw_vesting\",\n {\n account,\n vesting_shares: vestingShares,\n },\n ];\n}\n\n/**\n * Builds a delegate vesting shares operation (HP delegation).\n * @param delegator - Account delegating HP\n * @param delegatee - Account receiving HP delegation\n * @param vestingShares - Amount of VESTS to delegate (e.g., \"1000.000000 VESTS\")\n * @returns Delegate vesting shares operation\n */\nexport function buildDelegateVestingSharesOp(\n delegator: string,\n delegatee: string,\n vestingShares: string\n): Operation {\n if (!delegator || !delegatee || !vestingShares) {\n throw new Error(\"[SDK][buildDelegateVestingSharesOp] Missing required parameters\");\n }\n\n return [\n \"delegate_vesting_shares\",\n {\n delegator,\n delegatee,\n vesting_shares: vestingShares,\n },\n ];\n}\n\n/**\n * Builds a set withdraw vesting route operation.\n * @param fromAccount - Account withdrawing vesting\n * @param toAccount - Account receiving withdrawn vesting\n * @param percent - Percentage to route (0-10000, where 10000 = 100%)\n * @param autoVest - Auto convert to vesting\n * @returns Set withdraw vesting route operation\n */\nexport function buildSetWithdrawVestingRouteOp(\n fromAccount: string,\n toAccount: string,\n percent: number,\n autoVest: boolean\n): Operation {\n if (!fromAccount || !toAccount || percent === undefined) {\n throw new Error(\"[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters\");\n }\n if (percent < 0 || percent > 10000) {\n throw new Error(\"[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000\");\n }\n\n return [\n \"set_withdraw_vesting_route\",\n {\n from_account: fromAccount,\n to_account: toAccount,\n percent,\n auto_vest: autoVest,\n },\n ];\n}\n\n/**\n * Builds a convert operation (HBD to HIVE).\n * @param owner - Account converting HBD\n * @param amount - Amount of HBD to convert (e.g., \"1.000 HBD\")\n * @param requestId - Unique request ID (use timestamp)\n * @returns Convert operation\n */\nexport function buildConvertOp(\n owner: string,\n amount: string,\n requestId: number\n): Operation {\n if (!owner || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildConvertOp] Missing required parameters\");\n }\n\n return [\n \"convert\",\n {\n owner,\n amount,\n requestid: requestId,\n },\n ];\n}\n\n/**\n * Builds a collateralized convert operation (HIVE to HBD via collateral).\n * @param owner - Account converting HIVE\n * @param amount - Amount of HIVE to convert (e.g., \"1.000 HIVE\")\n * @param requestId - Unique request ID (use timestamp)\n * @returns Collateralized convert operation\n */\nexport function buildCollateralizedConvertOp(\n owner: string,\n amount: string,\n requestId: number\n): Operation {\n if (!owner || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildCollateralizedConvertOp] Missing required parameters\");\n }\n\n return [\n \"collateralized_convert\",\n {\n owner,\n amount,\n requestid: requestId,\n },\n ];\n}\n\n/**\n * Builds a Hive Engine custom_json operation.\n * @param from - Account performing the operation\n * @param contractAction - Engine contract action (e.g., \"transfer\", \"stake\")\n * @param contractPayload - Payload for the contract action\n * @param contractName - Engine contract name (defaults to \"tokens\")\n * @returns Custom JSON operation\n */\nexport function buildEngineOp(\n from: string,\n contractAction: string,\n contractPayload: Record,\n contractName = \"tokens\"\n): Operation {\n return [\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [from],\n required_posting_auths: [],\n json: JSON.stringify({ contractName, contractAction, contractPayload }),\n }];\n}\n\n/**\n * Builds a scot_claim_token operation (posting authority).\n * @param account - Account claiming rewards\n * @param tokens - Array of token symbols to claim\n * @returns Custom JSON operation\n */\nexport function buildEngineClaimOp(\n account: string,\n tokens: string[]\n): Operation {\n return [\"custom_json\", {\n id: \"scot_claim_token\",\n required_auths: [],\n required_posting_auths: [account],\n json: JSON.stringify(tokens.map((symbol) => ({ symbol }))),\n }];\n}\n\n/**\n * Builds a delegate RC operation (custom_json).\n * @param from - Account delegating RC\n * @param delegatees - Single delegatee or comma-separated list\n * @param maxRc - Maximum RC to delegate (in mana units)\n * @returns Custom JSON operation for RC delegation\n */\nexport function buildDelegateRcOp(\n from: string,\n delegatees: string,\n maxRc: string | number\n): Operation {\n if (!from || !delegatees || maxRc === undefined) {\n throw new Error(\"[SDK][buildDelegateRcOp] Missing required parameters\");\n }\n\n const delegateeArray = delegatees.includes(\",\")\n ? delegatees.split(\",\").map((d) => d.trim())\n : [delegatees];\n\n return [\n \"custom_json\",\n {\n id: \"rc\",\n json: JSON.stringify([\n \"delegate_rc\",\n {\n from,\n delegatees: delegateeArray,\n max_rc: maxRc,\n },\n ]),\n required_auths: [],\n required_posting_auths: [from],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Social Operations\n * Operations for following, muting, and managing social relationships\n */\n\n/**\n * Builds a follow operation (custom_json).\n * @param follower - Account following\n * @param following - Account to follow\n * @returns Custom JSON operation for follow\n */\nexport function buildFollowOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildFollowOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [\"blog\"],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an unfollow operation (custom_json).\n * @param follower - Account unfollowing\n * @param following - Account to unfollow\n * @returns Custom JSON operation for unfollow\n */\nexport function buildUnfollowOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildUnfollowOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an ignore/mute operation (custom_json).\n * @param follower - Account ignoring\n * @param following - Account to ignore\n * @returns Custom JSON operation for ignore\n */\nexport function buildIgnoreOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildIgnoreOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [\"ignore\"],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an unignore/unmute operation (custom_json).\n * @param follower - Account unignoring\n * @param following - Account to unignore\n * @returns Custom JSON operation for unignore\n */\nexport function buildUnignoreOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildUnignoreOp] Missing required parameters\");\n }\n\n return buildUnfollowOp(follower, following);\n}\n\n/**\n * Builds a Hive Notify set last read operation (custom_json).\n * @param username - Account setting last read\n * @param date - ISO date string (defaults to now)\n * @returns Array of custom JSON operations for setting last read\n */\nexport function buildSetLastReadOps(username: string, date?: string): Operation[] {\n if (!username) {\n throw new Error(\"[SDK][buildSetLastReadOps] Missing required parameters\");\n }\n\n const lastReadDate = date || new Date().toISOString().split(\".\")[0];\n\n const notifyOp: Operation = [\n \"custom_json\",\n {\n id: \"notify\",\n json: JSON.stringify([\"setLastRead\", { date: lastReadDate }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n\n const ecencyNotifyOp: Operation = [\n \"custom_json\",\n {\n id: \"ecency_notify\",\n json: JSON.stringify([\"setLastRead\", { date: lastReadDate }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n\n return [notifyOp, ecencyNotifyOp];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Governance Operations\n * Operations for witness voting, proposals, and proxy management\n */\n\n/**\n * Builds an account witness vote operation.\n * @param account - Account voting\n * @param witness - Witness account name\n * @param approve - True to approve, false to disapprove\n * @returns Account witness vote operation\n */\nexport function buildWitnessVoteOp(\n account: string,\n witness: string,\n approve: boolean\n): Operation {\n if (!account || !witness || approve === undefined) {\n throw new Error(\"[SDK][buildWitnessVoteOp] Missing required parameters\");\n }\n\n return [\n \"account_witness_vote\",\n {\n account,\n witness,\n approve,\n },\n ];\n}\n\n/**\n * Builds an account witness proxy operation.\n * @param account - Account setting proxy\n * @param proxy - Proxy account name (empty string to remove proxy)\n * @returns Account witness proxy operation\n */\nexport function buildWitnessProxyOp(account: string, proxy: string): Operation {\n if (!account || proxy === undefined) {\n throw new Error(\"[SDK][buildWitnessProxyOp] Missing required parameters\");\n }\n\n return [\n \"account_witness_proxy\",\n {\n account,\n proxy,\n },\n ];\n}\n\n/**\n * Payload for proposal creation\n */\nexport interface ProposalCreatePayload {\n receiver: string;\n subject: string;\n permlink: string;\n start: string;\n end: string;\n dailyPay: string;\n}\n\n/**\n * Builds a create proposal operation.\n * @param creator - Account creating the proposal\n * @param payload - Proposal details (must include start, end, and dailyPay)\n * @returns Create proposal operation\n */\nexport function buildProposalCreateOp(\n creator: string,\n payload: ProposalCreatePayload\n): Operation {\n // Validate required fields including start, end, and dailyPay\n if (\n !creator ||\n !payload.receiver ||\n !payload.subject ||\n !payload.permlink ||\n !payload.start ||\n !payload.end ||\n !payload.dailyPay\n ) {\n throw new Error(\"[SDK][buildProposalCreateOp] Missing required parameters\");\n }\n\n // Validate date format by attempting to parse them\n const startDate = new Date(payload.start);\n const endDate = new Date(payload.end);\n if (startDate.toString() === 'Invalid Date' || endDate.toString() === 'Invalid Date') {\n throw new Error(\n \"[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings\"\n );\n }\n\n return [\n \"create_proposal\",\n {\n creator,\n receiver: payload.receiver,\n start_date: payload.start,\n end_date: payload.end,\n daily_pay: payload.dailyPay,\n subject: payload.subject,\n permlink: payload.permlink,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds an update proposal votes operation.\n * @param voter - Account voting\n * @param proposalIds - Array of proposal IDs\n * @param approve - True to approve, false to disapprove\n * @returns Update proposal votes operation\n */\nexport function buildProposalVoteOp(\n voter: string,\n proposalIds: number[],\n approve: boolean\n): Operation {\n if (!voter || !proposalIds || proposalIds.length === 0 || approve === undefined) {\n throw new Error(\"[SDK][buildProposalVoteOp] Missing required parameters\");\n }\n\n return [\n \"update_proposal_votes\",\n {\n voter,\n proposal_ids: proposalIds,\n approve,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds a remove proposal operation.\n * @param proposalOwner - Owner of the proposal\n * @param proposalIds - Array of proposal IDs to remove\n * @returns Remove proposal operation\n */\nexport function buildRemoveProposalOp(\n proposalOwner: string,\n proposalIds: number[]\n): Operation {\n if (!proposalOwner || !proposalIds || proposalIds.length === 0) {\n throw new Error(\"[SDK][buildRemoveProposalOp] Missing required parameters\");\n }\n\n return [\n \"remove_proposal\",\n {\n proposal_owner: proposalOwner,\n proposal_ids: proposalIds,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds an update proposal operation.\n * @param proposalId - Proposal ID to update (must be a valid number, including 0)\n * @param creator - Account that created the proposal\n * @param dailyPay - New daily pay amount\n * @param subject - New subject\n * @param permlink - New permlink\n * @returns Update proposal operation\n */\nexport function buildUpdateProposalOp(\n proposalId: number,\n creator: string,\n dailyPay: string,\n subject: string,\n permlink: string\n): Operation {\n // Validate proposalId properly - check for undefined/null instead of falsy\n // This allows proposalId of 0 which is a valid proposal ID\n if (\n proposalId === undefined ||\n proposalId === null ||\n typeof proposalId !== 'number' ||\n !creator ||\n !dailyPay ||\n !subject ||\n !permlink\n ) {\n throw new Error(\"[SDK][buildUpdateProposalOp] Missing required parameters\");\n }\n\n return [\n \"update_proposal\",\n {\n proposal_id: proposalId,\n creator,\n daily_pay: dailyPay,\n subject,\n permlink,\n extensions: [],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Community Operations\n * Operations for managing Hive communities\n */\n\n/**\n * Builds a subscribe to community operation (custom_json).\n * @param username - Account subscribing\n * @param community - Community name (e.g., \"hive-123456\")\n * @returns Custom JSON operation for subscribe\n */\nexport function buildSubscribeOp(username: string, community: string): Operation {\n if (!username || !community) {\n throw new Error(\"[SDK][buildSubscribeOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"subscribe\", { community }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds an unsubscribe from community operation (custom_json).\n * @param username - Account unsubscribing\n * @param community - Community name (e.g., \"hive-123456\")\n * @returns Custom JSON operation for unsubscribe\n */\nexport function buildUnsubscribeOp(username: string, community: string): Operation {\n if (!username || !community) {\n throw new Error(\"[SDK][buildUnsubscribeOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"unsubscribe\", { community }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a set user role in community operation (custom_json).\n * @param username - Account setting the role (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Account to set role for\n * @param role - Role name (e.g., \"admin\", \"mod\", \"member\", \"guest\")\n * @returns Custom JSON operation for setRole\n */\nexport function buildSetRoleOp(\n username: string,\n community: string,\n account: string,\n role: string\n): Operation {\n if (!username || !community || !account || !role) {\n throw new Error(\n `[SDK][buildSetRoleOp] Missing required parameters: username=${username}, community=${community}, account=${account}, role=${role}`\n );\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"setRole\", { community, account, role }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Community properties for update\n */\nexport interface CommunityProps {\n title: string;\n about: string;\n lang: string;\n description: string;\n flag_text: string;\n is_nsfw: boolean;\n}\n\n/**\n * Builds an update community properties operation (custom_json).\n * @param username - Account updating (must be community admin)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param props - Properties to update\n * @returns Custom JSON operation for updateProps\n */\nexport function buildUpdateCommunityOp(\n username: string,\n community: string,\n props: CommunityProps\n): Operation {\n if (!username || !community || !props) {\n throw new Error(\"[SDK][buildUpdateCommunityOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"updateProps\", { community, props }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a pin/unpin post in community operation (custom_json).\n * @param username - Account pinning (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param pin - True to pin, false to unpin\n * @returns Custom JSON operation for pinPost/unpinPost\n */\nexport function buildPinPostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n pin: boolean\n): Operation {\n if (!username || !community || !account || !permlink || pin === undefined) {\n throw new Error(\"[SDK][buildPinPostOp] Missing required parameters\");\n }\n\n const action = pin ? \"pinPost\" : \"unpinPost\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, permlink }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a mute/unmute post in community operation (custom_json).\n * @param username - Account muting (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param notes - Mute reason/notes\n * @param mute - True to mute, false to unmute\n * @returns Custom JSON operation for mutePost/unmutePost\n */\nexport function buildMutePostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n notes: string,\n mute: boolean\n): Operation {\n if (\n !username ||\n !community ||\n !account ||\n !permlink ||\n mute === undefined\n ) {\n throw new Error(\"[SDK][buildMutePostOp] Missing required parameters\");\n }\n\n const action = mute ? \"mutePost\" : \"unmutePost\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, permlink, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a mute/unmute user in community operation (custom_json).\n * @param username - Account performing mute (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Account to mute/unmute\n * @param notes - Mute reason/notes\n * @param mute - True to mute, false to unmute\n * @returns Custom JSON operation for muteUser/unmuteUser\n */\nexport function buildMuteUserOp(\n username: string,\n community: string,\n account: string,\n notes: string,\n mute: boolean\n): Operation {\n if (!username || !community || !account || mute === undefined) {\n throw new Error(\"[SDK][buildMuteUserOp] Missing required parameters\");\n }\n\n const action = mute ? \"muteUser\" : \"unmuteUser\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a flag post in community operation (custom_json).\n * @param username - Account flagging\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param notes - Flag reason/notes\n * @returns Custom JSON operation for flagPost\n */\nexport function buildFlagPostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n notes: string\n): Operation {\n if (!username || !community || !account || !permlink) {\n throw new Error(\"[SDK][buildFlagPostOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"flagPost\", { community, account, permlink, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Market Operations\n * Operations for trading on the internal Hive market\n */\n\n/**\n * Transaction type for buy/sell operations\n */\nexport enum BuySellTransactionType {\n Buy = \"buy\",\n Sell = \"sell\",\n}\n\n/**\n * Order ID prefix for different order types\n */\nexport enum OrderIdPrefix {\n EMPTY = \"\",\n SWAP = \"9\",\n}\n\n/**\n * Builds a limit order create operation.\n * @param owner - Account creating the order\n * @param amountToSell - Amount and asset to sell\n * @param minToReceive - Minimum amount and asset to receive\n * @param fillOrKill - If true, order must be filled immediately or cancelled\n * @param expiration - Expiration date (ISO string)\n * @param orderId - Unique order ID\n * @returns Limit order create operation\n */\nexport function buildLimitOrderCreateOp(\n owner: string,\n amountToSell: string,\n minToReceive: string,\n fillOrKill: boolean,\n expiration: string,\n orderId: number\n): Operation {\n if (!owner || !amountToSell || !minToReceive || !expiration || orderId === undefined) {\n throw new Error(\"[SDK][buildLimitOrderCreateOp] Missing required parameters\");\n }\n\n return [\n \"limit_order_create\",\n {\n owner,\n orderid: orderId,\n amount_to_sell: amountToSell,\n min_to_receive: minToReceive,\n fill_or_kill: fillOrKill,\n expiration,\n },\n ];\n}\n\n/**\n * Helper to format number to 3 decimal places\n */\nfunction formatNumber(value: number, decimals: number = 3): string {\n return value.toFixed(decimals);\n}\n\n/**\n * Builds a limit order create operation with automatic formatting.\n * This is a convenience method that handles buy/sell logic and formatting.\n *\n * For Buy orders: You're buying HIVE with HBD\n * - amountToSell: HBD amount you're spending\n * - minToReceive: HIVE amount you want to receive\n *\n * For Sell orders: You're selling HIVE for HBD\n * - amountToSell: HIVE amount you're selling\n * - minToReceive: HBD amount you want to receive\n *\n * @param owner - Account creating the order\n * @param amountToSell - Amount to sell (number)\n * @param minToReceive - Minimum to receive (number)\n * @param orderType - Buy or Sell\n * @param idPrefix - Order ID prefix\n * @returns Limit order create operation\n */\nexport function buildLimitOrderCreateOpWithType(\n owner: string,\n amountToSell: number,\n minToReceive: number,\n orderType: BuySellTransactionType,\n idPrefix: OrderIdPrefix = OrderIdPrefix.EMPTY\n): Operation {\n // Validate numeric inputs\n if (\n !owner ||\n orderType === undefined ||\n !Number.isFinite(amountToSell) ||\n amountToSell <= 0 ||\n !Number.isFinite(minToReceive) ||\n minToReceive <= 0\n ) {\n throw new Error(\"[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters\");\n }\n\n // Calculate expiration (27 days from now)\n const expiration = new Date(Date.now());\n expiration.setDate(expiration.getDate() + 27);\n const expirationStr = expiration.toISOString().split(\".\")[0];\n\n // Generate order ID\n const orderId = Number(\n `${idPrefix}${Math.floor(Date.now() / 1000)\n .toString()\n .slice(2)}`\n );\n\n // Format amounts based on order type\n // Buy: Sell HBD to buy HIVE\n // Sell: Sell HIVE to buy HBD\n const formattedAmountToSell =\n orderType === BuySellTransactionType.Buy\n ? `${formatNumber(amountToSell, 3)} HBD`\n : `${formatNumber(amountToSell, 3)} HIVE`;\n\n const formattedMinToReceive =\n orderType === BuySellTransactionType.Buy\n ? `${formatNumber(minToReceive, 3)} HIVE`\n : `${formatNumber(minToReceive, 3)} HBD`;\n\n return buildLimitOrderCreateOp(\n owner,\n formattedAmountToSell,\n formattedMinToReceive,\n false,\n expirationStr,\n orderId\n );\n}\n\n/**\n * Builds a limit order cancel operation.\n * @param owner - Account cancelling the order\n * @param orderId - Order ID to cancel\n * @returns Limit order cancel operation\n */\nexport function buildLimitOrderCancelOp(owner: string, orderId: number): Operation {\n if (!owner || orderId === undefined) {\n throw new Error(\"[SDK][buildLimitOrderCancelOp] Missing required parameters\");\n }\n\n return [\n \"limit_order_cancel\",\n {\n owner,\n orderid: orderId,\n },\n ];\n}\n\n/**\n * Builds a claim reward balance operation.\n * @param account - Account claiming rewards\n * @param rewardHive - HIVE reward to claim (e.g., \"0.000 HIVE\")\n * @param rewardHbd - HBD reward to claim (e.g., \"0.000 HBD\")\n * @param rewardVests - VESTS reward to claim (e.g., \"0.000000 VESTS\")\n * @returns Claim reward balance operation\n */\nexport function buildClaimRewardBalanceOp(\n account: string,\n rewardHive: string,\n rewardHbd: string,\n rewardVests: string\n): Operation {\n if (!account || !rewardHive || !rewardHbd || !rewardVests) {\n throw new Error(\"[SDK][buildClaimRewardBalanceOp] Missing required parameters\");\n }\n\n return [\n \"claim_reward_balance\",\n {\n account,\n reward_hive: rewardHive,\n reward_hbd: rewardHbd,\n reward_vests: rewardVests,\n },\n ];\n}\n","import type { Operation, Authority } from \"../../../hive-tx\";\n\nexport type { Authority };\n\n/**\n * Account Operations\n * Operations for managing accounts, keys, and permissions\n */\n\n/**\n * Builds an account update operation.\n * @param account - Account name\n * @param owner - Owner authority (optional)\n * @param active - Active authority (optional)\n * @param posting - Posting authority (optional)\n * @param memoKey - Memo public key\n * @param jsonMetadata - Account JSON metadata\n * @returns Account update operation\n */\nexport function buildAccountUpdateOp(\n account: string,\n owner: Authority | undefined,\n active: Authority | undefined,\n posting: Authority | undefined,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !memoKey) {\n throw new Error(\"[SDK][buildAccountUpdateOp] Missing required parameters\");\n }\n\n return [\n \"account_update\",\n {\n account,\n owner,\n active,\n posting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds an account update2 operation (for posting_json_metadata).\n * @param account - Account name\n * @param jsonMetadata - Account JSON metadata (legacy, usually empty)\n * @param postingJsonMetadata - Posting JSON metadata string\n * @param extensions - Extensions array\n * @returns Account update2 operation\n */\nexport function buildAccountUpdate2Op(\n account: string,\n jsonMetadata: string,\n postingJsonMetadata: string,\n extensions: any[]\n): Operation {\n if (!account || postingJsonMetadata === undefined) {\n throw new Error(\"[SDK][buildAccountUpdate2Op] Missing required parameters\");\n }\n\n return [\n \"account_update2\",\n {\n account,\n json_metadata: jsonMetadata || \"\",\n posting_json_metadata: postingJsonMetadata,\n extensions: (extensions || []) as [],\n },\n ];\n}\n\n/**\n * Public keys for account creation\n */\nexport interface AccountKeys {\n ownerPublicKey: string;\n activePublicKey: string;\n postingPublicKey: string;\n memoPublicKey: string;\n}\n\n/**\n * Builds an account create operation.\n * @param creator - Creator account name\n * @param newAccountName - New account name\n * @param keys - Public keys for the new account\n * @param fee - Creation fee (e.g., \"3.000 HIVE\")\n * @returns Account create operation\n */\nexport function buildAccountCreateOp(\n creator: string,\n newAccountName: string,\n keys: AccountKeys,\n fee: string\n): Operation {\n if (!creator || !newAccountName || !keys || !fee) {\n throw new Error(\"[SDK][buildAccountCreateOp] Missing required parameters\");\n }\n\n const owner: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.ownerPublicKey, 1]],\n };\n\n const active: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.activePublicKey, 1]],\n };\n\n const posting: Authority = {\n weight_threshold: 1,\n account_auths: [[\"ecency.app\", 1]],\n key_auths: [[keys.postingPublicKey, 1]],\n };\n\n return [\n \"account_create\",\n {\n creator,\n new_account_name: newAccountName,\n owner,\n active,\n posting,\n memo_key: keys.memoPublicKey,\n json_metadata: \"\",\n fee,\n },\n ] satisfies Operation;\n}\n\n/**\n * Builds a create claimed account operation (using account creation tokens).\n * @param creator - Creator account name\n * @param newAccountName - New account name\n * @param keys - Public keys for the new account\n * @returns Create claimed account operation\n */\nexport function buildCreateClaimedAccountOp(\n creator: string,\n newAccountName: string,\n keys: AccountKeys\n): Operation {\n if (!creator || !newAccountName || !keys) {\n throw new Error(\"[SDK][buildCreateClaimedAccountOp] Missing required parameters\");\n }\n\n const owner: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.ownerPublicKey, 1]],\n };\n\n const active: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.activePublicKey, 1]],\n };\n\n const posting: Authority = {\n weight_threshold: 1,\n account_auths: [[\"ecency.app\", 1]],\n key_auths: [[keys.postingPublicKey, 1]],\n };\n\n return [\n \"create_claimed_account\",\n {\n creator,\n new_account_name: newAccountName,\n owner,\n active,\n posting,\n memo_key: keys.memoPublicKey,\n json_metadata: \"\",\n extensions: [] as [],\n },\n ];\n}\n\n/**\n * Builds a claim account operation.\n * @param creator - Account claiming the token\n * @param fee - Fee for claiming (usually \"0.000 HIVE\" for RC-based claims)\n * @returns Claim account operation\n */\nexport function buildClaimAccountOp(creator: string, fee: string): Operation {\n if (!creator || !fee) {\n throw new Error(\"[SDK][buildClaimAccountOp] Missing required parameters\");\n }\n\n return [\n \"claim_account\",\n {\n creator,\n fee,\n extensions: [] as [],\n },\n ];\n}\n\n/**\n * Builds an operation to grant posting permission to another account.\n * Helper that modifies posting authority to add an account.\n * @param account - Account granting permission\n * @param currentPosting - Current posting authority\n * @param grantedAccount - Account to grant permission to\n * @param weightThreshold - Weight threshold of the granted account\n * @param memoKey - Memo public key (required by Hive blockchain)\n * @param jsonMetadata - Account JSON metadata (required by Hive blockchain)\n * @returns Account update operation with modified posting authority\n */\nexport function buildGrantPostingPermissionOp(\n account: string,\n currentPosting: Authority,\n grantedAccount: string,\n weightThreshold: number,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !currentPosting || !grantedAccount || !memoKey) {\n throw new Error(\"[SDK][buildGrantPostingPermissionOp] Missing required parameters\");\n }\n\n // Find existing account or create new entry to prevent duplicates\n const existingIndex = currentPosting.account_auths.findIndex(\n ([acc]) => acc === grantedAccount\n );\n\n const newAccountAuths = [...currentPosting.account_auths];\n if (existingIndex >= 0) {\n // Update existing entry with new weight\n newAccountAuths[existingIndex] = [grantedAccount, weightThreshold];\n } else {\n // Add new entry\n newAccountAuths.push([grantedAccount, weightThreshold]);\n }\n\n const newPosting: Authority = {\n ...currentPosting,\n account_auths: newAccountAuths,\n };\n\n // Sort account_auths alphabetically for consistency\n newPosting.account_auths.sort((a, b) => (a[0] > b[0] ? 1 : -1));\n\n return [\n \"account_update\",\n {\n account,\n posting: newPosting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds an operation to revoke posting permission from an account.\n * Helper that modifies posting authority to remove an account.\n * @param account - Account revoking permission\n * @param currentPosting - Current posting authority\n * @param revokedAccount - Account to revoke permission from\n * @param memoKey - Memo public key (required by Hive blockchain)\n * @param jsonMetadata - Account JSON metadata (required by Hive blockchain)\n * @returns Account update operation with modified posting authority\n */\nexport function buildRevokePostingPermissionOp(\n account: string,\n currentPosting: Authority,\n revokedAccount: string,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !currentPosting || !revokedAccount || !memoKey) {\n throw new Error(\"[SDK][buildRevokePostingPermissionOp] Missing required parameters\");\n }\n\n const newPosting: Authority = {\n ...currentPosting,\n account_auths: currentPosting.account_auths.filter(\n ([acc]) => acc !== revokedAccount\n ),\n };\n\n return [\n \"account_update\",\n {\n account,\n posting: newPosting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds a change recovery account operation.\n * @param accountToRecover - Account to change recovery account for\n * @param newRecoveryAccount - New recovery account name\n * @param extensions - Extensions array\n * @returns Change recovery account operation\n */\nexport function buildChangeRecoveryAccountOp(\n accountToRecover: string,\n newRecoveryAccount: string,\n extensions: any[] = []\n): Operation {\n if (!accountToRecover || !newRecoveryAccount) {\n throw new Error(\"[SDK][buildChangeRecoveryAccountOp] Missing required parameters\");\n }\n\n return [\n \"change_recovery_account\",\n {\n account_to_recover: accountToRecover,\n new_recovery_account: newRecoveryAccount,\n extensions: extensions as [],\n },\n ];\n}\n\n/**\n * Builds a request account recovery operation.\n * @param recoveryAccount - Recovery account performing the recovery\n * @param accountToRecover - Account to recover\n * @param newOwnerAuthority - New owner authority\n * @param extensions - Extensions array\n * @returns Request account recovery operation\n */\nexport function buildRequestAccountRecoveryOp(\n recoveryAccount: string,\n accountToRecover: string,\n newOwnerAuthority: Authority,\n extensions: any[] = []\n): Operation {\n if (!recoveryAccount || !accountToRecover || !newOwnerAuthority) {\n throw new Error(\"[SDK][buildRequestAccountRecoveryOp] Missing required parameters\");\n }\n\n return [\n \"request_account_recovery\",\n {\n recovery_account: recoveryAccount,\n account_to_recover: accountToRecover,\n new_owner_authority: newOwnerAuthority,\n extensions: extensions as [],\n },\n ];\n}\n\n/**\n * Builds a recover account operation.\n * @param accountToRecover - Account to recover\n * @param newOwnerAuthority - New owner authority\n * @param recentOwnerAuthority - Recent owner authority (for proof)\n * @param extensions - Extensions array\n * @returns Recover account operation\n */\nexport function buildRecoverAccountOp(\n accountToRecover: string,\n newOwnerAuthority: Authority,\n recentOwnerAuthority: Authority,\n extensions: any[] = []\n): Operation {\n if (!accountToRecover || !newOwnerAuthority || !recentOwnerAuthority) {\n throw new Error(\"[SDK][buildRecoverAccountOp] Missing required parameters\");\n }\n\n return [\n \"recover_account\",\n {\n account_to_recover: accountToRecover,\n new_owner_authority: newOwnerAuthority,\n recent_owner_authority: recentOwnerAuthority,\n extensions: extensions as [],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Ecency-Specific Operations\n * Custom operations for Ecency platform features (Points, Boost, Promote, etc.)\n */\n\n/**\n * Builds an Ecency Boost Plus subscription operation (custom_json).\n * @param user - User account\n * @param account - Account to subscribe\n * @param duration - Subscription duration in days (must be a valid finite number)\n * @returns Custom JSON operation for boost plus\n */\nexport function buildBoostPlusOp(\n user: string,\n account: string,\n duration: number\n): Operation {\n // Validate required parameters and ensure duration is a finite number (reject NaN, Infinity)\n if (!user || !account || !Number.isFinite(duration)) {\n throw new Error(\"[SDK][buildBoostPlusOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_boost_plus\",\n json: JSON.stringify({\n user,\n account,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds an Ecency RC top-up operation (custom_json): a short-term, RC-only\n * delegation to the user's OWN account, paid for with Ecency Points. Distinct\n * from Boost Plus (which delegates Hive Power). The RC amount is fixed\n * server-side, so the user only chooses a duration. Signed with active\n * authority because it spends Points. The actual on-chain `delegate_rc` is\n * broadcast by the Ecency relay account, not here.\n * @param user - User account (payer and recipient of the RC)\n * @param duration - Delegation duration in days (must be a valid finite number)\n * @returns Custom JSON operation for the RC top-up\n */\nexport function buildRcDelegationOp(user: string, duration: number): Operation {\n if (!user || !Number.isInteger(duration) || duration <= 0) {\n throw new Error(\"[SDK][buildRcDelegationOp] Missing or invalid parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_rc_delegation\",\n json: JSON.stringify({\n user,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds an Ecency promote operation (custom_json).\n * @param user - User account\n * @param author - Post author\n * @param permlink - Post permlink\n * @param duration - Promotion duration in days (must be a valid finite number)\n * @returns Custom JSON operation for promote\n */\nexport function buildPromoteOp(\n user: string,\n author: string,\n permlink: string,\n duration: number\n): Operation {\n // Validate required parameters and ensure duration is a finite number (reject NaN, Infinity)\n if (!user || !author || !permlink || !Number.isFinite(duration)) {\n throw new Error(\"[SDK][buildPromoteOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_promote\",\n json: JSON.stringify({\n user,\n author,\n permlink,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\nconst CURATION_REASONS = [\"quality\", \"underrated\", \"newcomer\", \"other\"] as const;\ntype CurationRecommendReason = (typeof CURATION_REASONS)[number];\n\n/**\n * Builds a curation recommendation operation (custom_json, posting authority).\n * The desk indexes `ecency_curation` ops from the chain; there is no write route.\n * @param recommender - Account recommending the post (signs with posting)\n * @param author - Post author\n * @param permlink - Post permlink\n * @param reason - One of quality, underrated, newcomer, other (defaults to quality)\n * @returns Custom JSON operation with id \"ecency_curation\"\n */\nexport function buildCurationRecommendOp(\n recommender: string,\n author: string,\n permlink: string,\n reason: CurationRecommendReason = \"quality\"\n): Operation {\n if (!recommender || !author || !permlink) {\n throw new Error(\"[SDK][buildCurationRecommendOp] Missing required parameters\");\n }\n if (!CURATION_REASONS.includes(reason)) {\n throw new Error(\"[SDK][buildCurationRecommendOp] Unknown reason\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_curation\",\n json: JSON.stringify({\n v: 1,\n op: \"recommend\",\n author,\n permlink,\n reason,\n }),\n required_auths: [],\n required_posting_auths: [recommender],\n },\n ];\n}\n\n/**\n * Builds a curation recommendation withdrawal (custom_json, posting authority).\n * @param recommender - Account withdrawing its recommendation\n * @param author - Post author\n * @param permlink - Post permlink\n * @returns Custom JSON operation with id \"ecency_curation\" and op \"unrecommend\"\n */\nexport function buildCurationUnrecommendOp(\n recommender: string,\n author: string,\n permlink: string\n): Operation {\n if (!recommender || !author || !permlink) {\n throw new Error(\"[SDK][buildCurationUnrecommendOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_curation\",\n json: JSON.stringify({\n v: 1,\n op: \"unrecommend\",\n author,\n permlink,\n }),\n required_auths: [],\n required_posting_auths: [recommender],\n },\n ];\n}\n\n/**\n * Builds an Ecency point transfer operation (custom_json).\n * @param sender - Sender account\n * @param receiver - Receiver account\n * @param amount - Amount to transfer\n * @param memo - Transfer memo\n * @returns Custom JSON operation for point transfer\n */\nexport function buildPointTransferOp(\n sender: string,\n receiver: string,\n amount: string,\n memo: string\n): Operation {\n if (!sender || !receiver || !amount) {\n throw new Error(\"[SDK][buildPointTransferOp] Missing required parameters\");\n }\n\n // Normalize \"POINTS\" to \"POINT\" — backend expects singular form\n const normalizedAmount = amount.replace(/POINTS\\b/, \"POINT\");\n\n return [\n \"custom_json\",\n {\n id: \"ecency_point_transfer\",\n json: JSON.stringify({\n sender,\n receiver,\n amount: normalizedAmount,\n memo: memo || \"\",\n }),\n required_auths: [sender],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds multiple Ecency point transfer operations for multiple recipients.\n * @param sender - Sender account\n * @param destinations - Comma or space separated list of recipients\n * @param amount - Amount to transfer\n * @param memo - Transfer memo\n * @returns Array of custom JSON operations for point transfers\n */\nexport function buildMultiPointTransferOps(\n sender: string,\n destinations: string,\n amount: string,\n memo: string\n): Operation[] {\n if (!sender || !destinations || !amount) {\n throw new Error(\"[SDK][buildMultiPointTransferOps] Missing required parameters\");\n }\n\n // Split the destination input into an array of usernames\n const destArray = destinations\n .trim()\n .split(/[\\s,]+/)\n .filter(Boolean);\n\n // Validate parsed destinations\n if (destArray.length === 0) {\n throw new Error(\"[SDK][buildMultiPointTransferOps] Missing valid destinations\");\n }\n\n // Create a point transfer operation for each destination\n return destArray.map((dest) =>\n buildPointTransferOp(sender, dest.trim(), amount, memo)\n );\n}\n\n/**\n * Builds an Ecency community rewards registration operation (custom_json).\n * @param name - Account name to register\n * @returns Custom JSON operation for community registration\n */\nexport function buildCommunityRegistrationOp(name: string): Operation {\n if (!name) {\n throw new Error(\"[SDK][buildCommunityRegistrationOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_registration\",\n json: JSON.stringify({\n name,\n }),\n required_auths: [name],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds a generic active authority custom_json operation.\n * Used for various Ecency operations that require active authority.\n * @param username - Account performing the operation\n * @param operationId - Custom JSON operation ID\n * @param json - JSON payload\n * @returns Custom JSON operation with active authority\n */\nexport function buildActiveCustomJsonOp(\n username: string,\n operationId: string,\n json: Record\n): Operation {\n if (!username || !operationId || !json) {\n throw new Error(\"[SDK][buildActiveCustomJsonOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: operationId,\n json: JSON.stringify(json),\n required_auths: [username],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds a generic posting authority custom_json operation.\n * Used for various operations that require posting authority.\n * @param username - Account performing the operation\n * @param operationId - Custom JSON operation ID\n * @param json - JSON payload\n * @returns Custom JSON operation with posting authority\n */\nexport function buildPostingCustomJsonOp(\n username: string,\n operationId: string,\n json: Record | any[]\n): Operation {\n if (!username || !operationId || !json) {\n throw new Error(\"[SDK][buildPostingCustomJsonOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: operationId,\n json: JSON.stringify(json),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildFollowOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for following an account.\n */\nexport interface FollowPayload {\n /** Account to follow */\n following: string;\n}\n\n/**\n * React Query mutation hook for following an account.\n *\n * This mutation broadcasts a follow operation to the Hive blockchain,\n * adding the target account to the follower's \"blog\" follow list.\n *\n * @param username - The username of the follower (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates relationship cache to show updated follow status\n * - Invalidates account cache to refetch updated follower/following counts\n *\n * @example\n * ```typescript\n * const followMutation = useFollow(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Follow an account\n * followMutation.mutate({\n * following: 'alice'\n * });\n * ```\n */\nexport function useFollow(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"follow\"],\n username,\n ({ following }) => [\n buildFollowOp(username!, following)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.relations(username!, variables.following),\n QueryKeys.accounts.full(variables.following),\n QueryKeys.accounts.followCount(variables.following),\n QueryKeys.accounts.followCount(username!)\n ]);\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUnfollowOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for unfollowing an account.\n */\nexport interface UnfollowPayload {\n /** Account to unfollow */\n following: string;\n}\n\n/**\n * React Query mutation hook for unfollowing an account.\n *\n * This mutation broadcasts an unfollow operation to the Hive blockchain,\n * removing the target account from the follower's follow list.\n *\n * @param username - The username of the follower (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates relationship cache to show updated follow status\n * - Invalidates account cache to refetch updated follower/following counts\n *\n * @example\n * ```typescript\n * const unfollowMutation = useUnfollow(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Unfollow an account\n * unfollowMutation.mutate({\n * following: 'alice'\n * });\n * ```\n */\nexport function useUnfollow(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"unfollow\"],\n username,\n ({ following }) => [\n buildUnfollowOp(username!, following)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.relations(username!, variables.following),\n QueryKeys.accounts.full(variables.following),\n QueryKeys.accounts.followCount(variables.following),\n QueryKeys.accounts.followCount(username!)\n ]);\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\ninterface Payload {\n author: string;\n permlink: string;\n}\n\nexport function useBookmarkAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"bookmarks\", \"add\", username],\n mutationFn: async ({ author, permlink }: Payload) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Bookmarks] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks-add\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: () => {\n onSuccess();\n getQueryClient().invalidateQueries({\n queryKey: [\"accounts\", \"bookmarks\", username],\n });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useBookmarkDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"bookmarks\", \"delete\", username],\n mutationFn: async (bookmarkId: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Bookmarks] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks-delete\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n id: bookmarkId,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: () => {\n onSuccess();\n getQueryClient().invalidateQueries({\n queryKey: [\"accounts\", \"bookmarks\", username],\n });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useAccountFavoriteAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorites\", \"add\", username],\n mutationFn: async (account: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Favorites] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-add\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n account,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: (_data, account) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favorites(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoritesInfinite(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavorite(username!, account) });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation, InfiniteData } from \"@tanstack/react-query\";\nimport { AccountFavorite } from \"../../types\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useAccountFavoriteDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorites\", \"delete\", username],\n mutationFn: async (account: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Favorites] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-delete\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n account,\n code,\n }),\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to delete favorite: ${response.status}`);\n }\n return response.json();\n },\n onMutate: async (account: string) => {\n if (!username) {\n return;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.accounts.favorites(username);\n const infinitePrefix = QueryKeys.accounts.favoritesInfinite(username);\n const checkKey = QueryKeys.accounts.checkFavorite(username, account);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n qc.cancelQueries({ queryKey: checkKey }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((f) => f.account !== account)\n );\n }\n\n const previousCheck = qc.getQueryData(checkKey);\n qc.setQueryData(checkKey, false);\n\n const infiniteQueries = qc.getQueriesData>>({\n queryKey: infinitePrefix,\n });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((f) => f.account !== account),\n })),\n });\n }\n }\n\n return { previousList, previousInfinite, previousCheck };\n },\n onSuccess: (_data, account) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favorites(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoritesInfinite(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavorite(username!, account) });\n },\n onError: (err, account, context) => {\n const qc = getQueryClient();\n if (context?.previousList) {\n qc.setQueryData(QueryKeys.accounts.favorites(username), context.previousList);\n }\n if (context?.previousInfinite) {\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n }\n if (context?.previousCheck !== undefined) {\n qc.setQueryData(\n QueryKeys.accounts.checkFavorite(username!, account),\n context.previousCheck\n );\n }\n onError(err);\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { AccountFavoriteTag } from \"../../types\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\n\nasync function favoriteTagRequest(\n route: \"favorite-tags-add\" | \"favorite-tags-delete\",\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n if (!username || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n // Normalised before it leaves the client, so the request, the cache key and the\n // stored row all agree on the spelling.\n const normalized = normalizeTag(tag);\n if (normalized === null) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – invalid tag\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/\" + route, {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n tag: normalized,\n code,\n }),\n });\n if (!response.ok) {\n throw new Error(`Failed to ${route === \"favorite-tags-add\" ? \"add\" : \"delete\"} favorite tag: ${response.status}`);\n }\n return (await response.json()) as AccountFavoriteTag[];\n}\n\n/** Follow a hashtag. Resolves to the updated list, newest first. */\nexport function addFavoriteTagRequest(\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n return favoriteTagRequest(\"favorite-tags-add\", username, code, tag);\n}\n\n/** Unfollow a hashtag. Resolves to the updated list, newest first. */\nexport function deleteFavoriteTagRequest(\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n return favoriteTagRequest(\"favorite-tags-delete\", username, code, tag);\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\nimport { addFavoriteTagRequest } from \"./requests\";\n\nexport function useFavoriteTagAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorite-tags\", \"add\", username],\n mutationFn: (tag: string) => addFavoriteTagRequest(username, code, tag),\n onSuccess: (_data, tag) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTags(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTagsInfinite(username) });\n qc.invalidateQueries({\n queryKey: QueryKeys.accounts.checkFavoriteTag(username!, normalizeTag(tag) ?? tag),\n });\n },\n onError,\n });\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { WrappedResponse } from \"@/modules/core/types\";\nimport { InfiniteData, QueryKey, useMutation, UseMutationOptions } from \"@tanstack/react-query\";\nimport { AccountFavoriteTag } from \"../../types\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\nimport { deleteFavoriteTagRequest } from \"./requests\";\n\ntype InfinitePages = InfiniteData>;\n\ninterface DeleteContext {\n normalized: string;\n previousList: AccountFavoriteTag[] | undefined;\n previousInfinite: Map;\n /** `undefined` when the check query had no cached value before the mutation. */\n previousCheck: boolean | undefined;\n}\n\n/**\n * The mutation options behind useFavoriteTagDelete, exported so the cache\n * behaviour can be exercised without rendering a hook.\n *\n * The tag is removed from the list, the infinite pages and the check entry\n * optimistically. On failure the snapshots are put back for an instant revert, and\n * then every touched key is invalidated anyway: a snapshot taken while another\n * delete was in flight still holds that other tag, so the restore alone would\n * resurrect it. The refetch is what makes the cache converge.\n */\nexport function favoriteTagDeleteMutationOptions(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n): UseMutationOptions {\n const invalidateAll = (normalized: string | undefined) => {\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTags(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTagsInfinite(username) });\n if (normalized) {\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavoriteTag(username!, normalized) });\n }\n };\n\n return {\n mutationKey: [\"accounts\", \"favorite-tags\", \"delete\", username],\n mutationFn: (tag: string) => deleteFavoriteTagRequest(username, code, tag),\n onMutate: async (tag: string) => {\n const normalized = normalizeTag(tag);\n if (!username || normalized === null) {\n return undefined;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.accounts.favoriteTags(username);\n const infinitePrefix = QueryKeys.accounts.favoriteTagsInfinite(username);\n const checkKey = QueryKeys.accounts.checkFavoriteTag(username, normalized);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n qc.cancelQueries({ queryKey: checkKey }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((f) => f.tag !== normalized)\n );\n }\n\n const previousCheck = qc.getQueryData(checkKey);\n qc.setQueryData(checkKey, false);\n\n const infiniteQueries = qc.getQueriesData({ queryKey: infinitePrefix });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((f) => f.tag !== normalized),\n })),\n });\n }\n }\n\n return { normalized, previousList, previousInfinite, previousCheck };\n },\n onSuccess: (_data, tag) => {\n onSuccess();\n invalidateAll(normalizeTag(tag) ?? undefined);\n },\n onError: (err, _tag, context) => {\n const qc = getQueryClient();\n if (context) {\n if (context.previousList) {\n qc.setQueryData(QueryKeys.accounts.favoriteTags(username), context.previousList);\n }\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n const checkKey = QueryKeys.accounts.checkFavoriteTag(username!, context.normalized);\n if (context.previousCheck !== undefined) {\n qc.setQueryData(checkKey, context.previousCheck);\n } else {\n // Nothing was cached before, so the optimistic `false` must not outlive\n // the failure as if it were an answer from the server.\n qc.removeQueries({ queryKey: checkKey, exact: true });\n }\n }\n invalidateAll(context?.normalized);\n onError(err);\n },\n };\n}\n\nexport function useFavoriteTagDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation(favoriteTagDeleteMutationOptions(username, code, onSuccess, onError));\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport type { Authority } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\nexport interface Keys {\n owner: PrivateKey;\n active: PrivateKey;\n posting: PrivateKey;\n memo_key: PrivateKey;\n}\n\ninterface Payload {\n keepCurrent?: boolean;\n currentKey: PrivateKey;\n keys: Keys[];\n keysToRevoke?: string[]; // Deprecated: will be treated as revoking from all authorities\n keysToRevokeByAuthority?: Partial>; // Authority-specific revocation\n}\n\nexport function dedupeAndSortKeyAuths(\n existing: Authority[\"key_auths\"],\n additions: [string, number][]\n): Authority[\"key_auths\"] {\n const merged = new Map();\n\n existing.forEach(([key, weight]) => {\n merged.set(key.toString(), weight);\n });\n\n additions.forEach(([key, weight]) => {\n merged.set(key.toString(), weight);\n });\n\n return Array.from(merged.entries())\n .sort(([keyA], [keyB]) => keyA.localeCompare(keyB))\n .map(([key, weight]) => [key, weight] as [string, number]);\n}\n\ntype UpdateKeyAuthsOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountUpdateKeyAuths(\n username: string,\n options?: UpdateKeyAuthsOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"keys-update\", username],\n mutationFn: async ({\n keys,\n keepCurrent = false,\n currentKey,\n keysToRevoke = [],\n keysToRevokeByAuthority = {}\n }: Payload) => {\n if (keys.length === 0) {\n throw new Error(\n \"[SDK][Update password] – no new keys provided\"\n );\n }\n\n if (!accountData) {\n throw new Error(\n \"[SDK][Update password] – cannot update keys for anon user\"\n );\n }\n\n const prepareAuth = (keyName: keyof Keys) => {\n const auth: Authority = JSON.parse(JSON.stringify(accountData[keyName]));\n\n // Get keys to revoke for this specific authority\n const keysToRevokeForAuthority = keysToRevokeByAuthority[keyName] || [];\n // Fallback to global keysToRevoke for backwards compatibility\n const allKeysToRevoke = [\n ...keysToRevokeForAuthority,\n ...(keysToRevokeByAuthority[keyName] === undefined ? keysToRevoke : [])\n ];\n\n // Filter out keys to revoke from existing keys (authority-specific)\n const existingKeys = keepCurrent\n ? auth.key_auths.filter(([key]) => !allKeysToRevoke.includes(key.toString()))\n : [];\n\n auth.key_auths = dedupeAndSortKeyAuths(\n existingKeys,\n keys.map(\n (values, i) =>\n [values[keyName].createPublic().toString(), i + 1] as [\n string,\n number,\n ]\n )\n );\n\n return auth;\n };\n\n return broadcastOperations(\n [[\"account_update\", {\n account: username,\n json_metadata: accountData.json_metadata,\n owner: prepareAuth(\"owner\"),\n active: prepareAuth(\"active\"),\n posting: prepareAuth(\"posting\"),\n // Always use new memo key when adding new keys\n memo_key: keys[0].memo_key.createPublic().toString(),\n }]],\n currentKey\n );\n },\n ...options,\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { useAccountUpdateKeyAuths } from \"./use-account-update-key-auths\";\n\ninterface Payload {\n newPassword: string;\n currentPassword: string;\n keepCurrent?: boolean;\n}\n\n/**\n * Only native Hive and custom passwords could be updated here\n * Seed based password cannot be updated here, it will be in an account always for now\n */\ntype UpdatePasswordOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountUpdatePassword(\n username: string,\n options?: UpdatePasswordOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n const { mutateAsync: updateKeys } = useAccountUpdateKeyAuths(username);\n\n return useMutation({\n mutationKey: [\"accounts\", \"password-update\", username],\n mutationFn: async ({\n newPassword,\n currentPassword,\n keepCurrent,\n }: Payload) => {\n if (!accountData) {\n throw new Error(\n \"[SDK][Update password] – cannot update password for anon user\"\n );\n }\n const currentKey = PrivateKey.fromLogin(\n username,\n currentPassword,\n \"owner\"\n );\n\n return updateKeys({\n currentKey,\n keepCurrent,\n keys: [\n {\n owner: PrivateKey.fromLogin(username, newPassword, \"owner\"),\n active: PrivateKey.fromLogin(username, newPassword, \"active\"),\n posting: PrivateKey.fromLogin(username, newPassword, \"posting\"),\n memo_key: PrivateKey.fromLogin(username, newPassword, \"memo\"),\n },\n ],\n });\n },\n ...options,\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n useQueryClient,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { FullAccount } from \"../types\";\nimport hs from \"hivesigner\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ntype SignType = \"key\" | \"keychain\" | \"hivesigner\";\n\ninterface CommonPayload {\n accountName: string;\n type: SignType;\n key?: PrivateKey;\n}\n\ntype RevokePostingOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n> & {\n hsCallbackUrl?: string;\n};\n\nexport function useAccountRevokePosting(\n username: string | undefined,\n options: RevokePostingOptions,\n auth?: AuthContextV2\n) {\n const queryClient = useQueryClient();\n\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"revoke-posting\", data?.name],\n mutationFn: async ({ accountName, type, key }: CommonPayload) => {\n if (!data) {\n throw new Error(\n \"[SDK][Accounts] – cannot revoke posting for anonymous user\"\n );\n }\n\n const posting = JSON.parse(JSON.stringify(data.posting)) as FullAccount[\"posting\"];\n\n posting.account_auths = posting.account_auths.filter(\n ([account]) => account !== accountName\n );\n\n const operationBody = {\n account: data.name,\n posting,\n memo_key: data.memo_key,\n json_metadata: data.json_metadata,\n };\n\n if (type === \"key\" && key) {\n return broadcastOperations([[\"account_update\", operationBody]], key);\n } else if (type === \"keychain\") {\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Accounts] – missing keychain broadcaster\");\n }\n return auth.adapter.broadcastWithKeychain(\n data.name,\n [[\"account_update\", operationBody]],\n \"active\"\n );\n } else {\n if (!options.hsCallbackUrl && process.env.NODE_ENV === \"development\") {\n console.warn(\"[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing.\");\n }\n return hs.sendOperation(\n [\"account_update\", operationBody],\n options.hsCallbackUrl ? { callback: options.hsCallbackUrl } : {},\n () => {}\n );\n }\n },\n onError: options.onError,\n onSuccess: (resp, payload, ctx) => {\n (options.onSuccess as\n | ((data: unknown, variables: CommonPayload, context: unknown) => unknown)\n | undefined)?.(resp, payload, ctx);\n queryClient.setQueryData(\n getAccountFullQueryOptions(username).queryKey,\n (data) =>\n ({\n ...data,\n posting: {\n ...data?.posting,\n account_auths:\n data?.posting?.account_auths?.filter(\n ([account]) => account !== payload.accountName\n ) ?? [],\n },\n }) as FullAccount\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ntype SignType = \"key\" | \"keychain\" | \"hivesigner\" | \"ecency\";\n\ninterface CommonPayload {\n accountName: string;\n type: SignType;\n key?: PrivateKey;\n email?: string;\n}\n\ntype UpdateRecoveryOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n> & {\n hsCallbackUrl?: string;\n};\n\nexport function useAccountUpdateRecovery(\n username: string | undefined,\n code: string | undefined,\n options: UpdateRecoveryOptions,\n auth?: AuthContextV2\n) {\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"recovery\", data?.name],\n mutationFn: async ({ accountName, type, key, email }: CommonPayload) => {\n if (!data) {\n throw new Error(\n \"[SDK][Accounts] – cannot change recovery for anonymous user\"\n );\n }\n\n const operationBody = {\n account_to_recover: data.name,\n new_recovery_account: accountName,\n extensions: [] as [],\n };\n\n if (type === \"ecency\") {\n if (!code) {\n throw new Error(\"[SDK][Accounts] – missing access token\");\n }\n const fetchApi = getBoundFetch();\n\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/recoveries-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n email,\n publicKeys: [\n ...data.owner.key_auths,\n ...data.active.key_auths,\n ...data.posting.key_auths,\n data.memo_key,\n ],\n }),\n });\n\n // Raw fetch resolves on 4xx/5xx, so guard explicitly — otherwise the\n // caller's onSuccess shows a \"recovery updated\" toast on a failed request.\n // (The missing Content-Type header also made the backend skip JSON parsing.)\n if (!response.ok) {\n throw new Error(`[SDK][Accounts] Failed to add recovery: ${response.status}`);\n }\n\n return response;\n } else if (type === \"key\" && key) {\n return broadcastOperations(\n [[\"change_recovery_account\", operationBody]],\n key\n );\n } else if (type === \"keychain\") {\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Accounts] – missing keychain broadcaster\");\n }\n return auth.adapter.broadcastWithKeychain(data.name, [[\"change_recovery_account\", operationBody]], \"owner\");\n } else {\n if (!options.hsCallbackUrl && process.env.NODE_ENV === \"development\") {\n console.warn(\"[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing.\");\n }\n return hs.sendOperation(\n [\"change_recovery_account\", operationBody],\n options.hsCallbackUrl ? { callback: options.hsCallbackUrl } : {},\n () => {}\n );\n }\n },\n onError: options.onError,\n onSuccess: options.onSuccess,\n });\n}\n","import { PublicKey } from \"../../../hive-tx\";\nimport type { Authority } from \"../../../hive-tx\";\nimport { FullAccount } from \"../types\";\n\n/**\n * Check whether an authority would still meet its weight_threshold\n * after removing the given keys. This prevents revoking keys that\n * would leave an authority unable to sign (especially for multisig).\n */\nexport function canRevokeFromAuthority(\n auth: Authority,\n revokingKeyStrs: Set\n): boolean {\n const remainingWeight = auth.key_auths\n .filter(([key]) => !revokingKeyStrs.has(String(key)))\n .reduce((sum, [, weight]) => sum + weight, 0);\n\n // account_auths also contribute weight\n const accountWeight = (auth.account_auths ?? []).reduce(\n (sum: number, [, weight]: [string, number]) => sum + weight,\n 0\n );\n\n return (remainingWeight + accountWeight) >= auth.weight_threshold;\n}\n\n/**\n * Build an account_update operation that removes the given public keys\n * from the relevant authorities.\n *\n * Only includes the `owner` field when a revoking key actually exists\n * in the owner authority - omitting it allows active-level signing.\n *\n * Returns the operation payload (without the \"account_update\" tag) so\n * callers can wrap it as needed for their broadcast method.\n */\nexport function buildRevokeKeysOp(\n accountData: FullAccount,\n revokingKeys: PublicKey[]\n) {\n const revokingKeyStrs = new Set(revokingKeys.map((k) => k.toString()));\n\n const hasAnyKeyInAuth = (auth: Authority) =>\n auth.key_auths.some(\n ([key]: [string | PublicKey, number]) => revokingKeyStrs.has(String(key))\n );\n\n const prepareAuth = (auth: Authority): Authority => {\n const clone: Authority = JSON.parse(JSON.stringify(auth));\n clone.key_auths = clone.key_auths.filter(\n ([key]) => !revokingKeyStrs.has(key.toString())\n );\n return clone;\n };\n\n const needsOwnerUpdate = hasAnyKeyInAuth(accountData.owner);\n\n return {\n account: accountData.name,\n json_metadata: accountData.json_metadata,\n owner: needsOwnerUpdate ? prepareAuth(accountData.owner) : undefined,\n active: prepareAuth(accountData.active),\n posting: prepareAuth(accountData.posting),\n memo_key: accountData.memo_key\n };\n}\n","import { PrivateKey, PublicKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { buildRevokeKeysOp } from \"./build-revoke-keys-op\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ninterface Payload {\n currentKey: PrivateKey;\n /** Keys to revoke. Accepts a single key or an array. */\n revokingKey: PublicKey | PublicKey[];\n}\n\n/**\n * Revoke one or more keys from an account on the Hive blockchain.\n *\n * When revoking keys that exist only in active/posting authorities,\n * the owner field is omitted from the operation so active-level\n * signing is sufficient.\n */\ntype RevokeKeyOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountRevokeKey(\n username: string | undefined,\n options?: RevokeKeyOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"revoke-key\", accountData?.name],\n mutationFn: async ({ currentKey, revokingKey }: Payload) => {\n if (!accountData) {\n throw new Error(\n \"[SDK][Revoke key] – cannot update keys for anon user\"\n );\n }\n\n const revokingKeys = Array.isArray(revokingKey) ? revokingKey : [revokingKey];\n const op = buildRevokeKeysOp(accountData, revokingKeys);\n\n return broadcastOperations([[\"account_update\", op]], currentKey);\n },\n ...options,\n });\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildClaimAccountOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for claiming account creation tokens.\n */\nexport interface ClaimAccountPayload {\n /** Creator account claiming the token */\n creator: string;\n /** Fee for claiming (usually \"0.000 HIVE\" for RC-based claims) */\n fee?: string;\n}\n\n/**\n * React Query mutation hook for claiming account creation tokens.\n *\n * This mutation broadcasts a claim_account operation to claim an account\n * creation token using Resource Credits (RC). The claimed token can later\n * be used to create a new account for free using the create_claimed_account\n * operation.\n *\n * @param username - The username claiming the account token (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates account cache to update pending_claimed_accounts count\n * - Updates account query data to set pending_claimed_accounts = 0 optimistically\n *\n * **Operation Details:**\n * - Uses native claim_account operation\n * - Fee: \"0.000 HIVE\" (uses RC instead of HIVE)\n * - Authority: Active key (required for claiming)\n *\n * **RC Requirements:**\n * - Requires sufficient Resource Credits (RC)\n * - RC amount varies based on network conditions\n * - Claiming without sufficient RC will fail\n *\n * **Use Case:**\n * - Claim tokens in advance when RC is available\n * - Create accounts later without paying HIVE fee\n * - Useful for onboarding services and apps\n *\n * @example\n * ```typescript\n * const claimMutation = useClaimAccount(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Claim account token using RC\n * claimMutation.mutate({\n * creator: 'alice',\n * fee: '0.000 HIVE'\n * });\n * ```\n */\nexport function useClaimAccount(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"claimAccount\"],\n username,\n ({ creator, fee = \"0.000 HIVE\" }) => [\n buildClaimAccountOp(creator, fee)\n ],\n async (_result: any, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(variables.creator),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildGrantPostingPermissionOp, type Authority } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface GrantPostingPermissionPayload {\n currentPosting: Authority;\n grantedAccount: string;\n weightThreshold: number;\n memoKey: string;\n jsonMetadata: string;\n}\n\nexport function useGrantPostingPermission(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"grant-posting-permission\"],\n username,\n (payload) => [\n buildGrantPostingPermissionOp(\n username!,\n payload.currentPosting,\n payload.grantedAccount,\n payload.weightThreshold,\n payload.memoKey,\n payload.jsonMetadata\n )\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildAccountCreateOp, buildCreateClaimedAccountOp, type AccountKeys } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface CreateAccountPayload {\n newAccountName: string;\n keys: AccountKeys;\n fee: string;\n /** If true, uses a claimed account token instead of paying the fee */\n useClaimed?: boolean;\n}\n\nexport function useCreateAccount(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"create\"],\n username,\n (payload) => [\n payload.useClaimed\n ? buildCreateClaimedAccountOp(username!, payload.newAccountName, payload.keys)\n : buildAccountCreateOp(username!, payload.newAccountName, payload.keys, payload.fee)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { parseAsset } from \"@/modules/core/utils\";\nimport { DynamicProps } from \"@/modules/core/types\";\nimport { FullAccount } from \"../types\";\nimport { calculateVPMana, calculateRCMana } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\n\nconst HIVE_VOTING_MANA_REGENERATION_SECONDS = 5 * 60 * 60 * 24; // 5 days\nconst HIVE_100_PERCENT = 10000;\nconst HIVE_VOTE_DUST_THRESHOLD = 50_000_000;\n\nfunction getEffectiveVests(account: FullAccount): number {\n const vesting = parseAsset(account.vesting_shares).amount;\n const received = parseAsset(account.received_vesting_shares).amount;\n const delegated = parseAsset(account.delegated_vesting_shares).amount;\n const withdrawRate = parseAsset(account.vesting_withdraw_rate).amount;\n const alreadyWithdrawn =\n (Number(account.to_withdraw) - Number(account.withdrawn)) / 1e6;\n const withdrawVests = Math.min(withdrawRate, alreadyWithdrawn);\n\n return vesting + received - delegated - withdrawVests;\n}\n\nfunction vestsToRshares(vests: number, votingPowerValue: number, votePerc: number): number {\n const vestingShares = vests * 1e6;\n const power = (votingPowerValue * votePerc) / 1e4 / 50 + 1;\n return (power * vestingShares) / 1e4;\n}\n\nfunction hasStableVoteHardfork(dynamicProps: DynamicProps): boolean {\n if (Number.isFinite(dynamicProps.lastHardfork)) {\n return dynamicProps.lastHardfork >= 28;\n }\n\n const [major = \"0\", minor = \"0\"] = (dynamicProps.currentHardforkVersion ?? \"0.0.0\").split(\".\");\n return Number(major) > 1 || (Number(major) === 1 && Number(minor) >= 28);\n}\n\nfunction stableVoteRshares(\n account: FullAccount,\n dynamicProps: DynamicProps,\n weight: number\n): number {\n const reserveRate =\n dynamicProps.votePowerReserveRate ||\n Number(dynamicProps.raw?.globalDynamic?.vote_power_reserve_rate ?? 0);\n\n if (!Number.isFinite(reserveRate) || reserveRate <= 0) {\n return 0;\n }\n\n const effectiveVests = getEffectiveVests(account);\n if (!Number.isFinite(effectiveVests) || effectiveVests <= 0) {\n return 0;\n }\n\n const vestingShares = effectiveVests * 1e6;\n const usedMana =\n Math.ceil(\n (vestingShares * weight * 60 * 60 * 24) /\n HIVE_100_PERCENT /\n (reserveRate * HIVE_VOTING_MANA_REGENERATION_SECONDS)\n );\n\n const mana = calculateVPMana(account);\n const currentMana = Math.min(mana.current_mana, mana.max_mana);\n\n if (!Number.isFinite(currentMana) || usedMana > currentMana) {\n return 0;\n }\n\n return Math.max(usedMana - HIVE_VOTE_DUST_THRESHOLD, 0);\n}\n\nexport function votingRshares(\n account: FullAccount,\n dynamicProps: DynamicProps,\n votingPowerValue: number,\n weight: number = 10000\n): number {\n if (!Number.isFinite(votingPowerValue) || !Number.isFinite(weight)) {\n return 0;\n }\n\n if (hasStableVoteHardfork(dynamicProps)) {\n return stableVoteRshares(account, dynamicProps, weight);\n }\n\n let totalVests = 0;\n try {\n totalVests = getEffectiveVests(account);\n if (!Number.isFinite(totalVests)) {\n return 0;\n }\n } catch {\n return 0;\n }\n\n return vestsToRshares(totalVests, votingPowerValue, weight);\n}\n\nexport function votingPower(account: FullAccount): number {\n const calc = calculateVPMana(account);\n return calc.percentage / 100;\n}\n\nexport function powerRechargeTime(power: number) {\n if (!Number.isFinite(power)) {\n throw new TypeError(\"Voting power must be a finite number\");\n }\n if (power < 0 || power > 100) {\n throw new RangeError(\"Voting power must be between 0 and 100\");\n }\n const missingPower = 100 - power;\n return (\n (missingPower * 100 * HIVE_VOTING_MANA_REGENERATION_SECONDS) / 10000\n );\n}\n\nexport function downVotingPower(account: FullAccount): number {\n const totalShares =\n parseFloat(account.vesting_shares) +\n parseFloat(account.received_vesting_shares) -\n parseFloat(account.delegated_vesting_shares);\n const elapsed = Math.floor(Date.now() / 1000) - account.downvote_manabar.last_update_time;\n const maxMana = (totalShares * 1000000) / 4;\n\n if (maxMana <= 0) {\n return 0;\n }\n\n let currentMana =\n parseFloat(account.downvote_manabar.current_mana.toString()) +\n (elapsed * maxMana) / HIVE_VOTING_MANA_REGENERATION_SECONDS;\n\n if (currentMana > maxMana) {\n currentMana = maxMana;\n }\n const currentManaPerc = (currentMana * 100) / maxMana;\n\n if (isNaN(currentManaPerc)) {\n return 0;\n }\n\n if (currentManaPerc > 100) {\n return 100;\n }\n return currentManaPerc;\n}\n\n/**\n * Rewards/stake coefficient, known on Hive as the KE ratio: every VEST ever paid out\n * to the account as curation rewards or as the vested half of an author payout, over\n * the VESTS it still holds and has not delegated away. Both sides are VESTS, so the\n * value is independent of the HIVE price and of the global VESTS/HP rate.\n *\n * Returns null when the account carries no undelegated stake, where the ratio is\n * undefined rather than zero.\n *\n * Limits worth repeating wherever this is displayed: `posting_rewards` counts only the\n * vested half of an author payout, the denominator ignores stake delegated TO the\n * account (so an account curating with received delegation scores high), and the value\n * climbs during a power-down because the numerator is frozen history.\n */\nexport function rewardsToStakeRatio(account: FullAccount): number | null {\n // Absent counters are unknown, not zero. A row that omits one (or a cache entry\n // dehydrated by an older build, which omits both) would otherwise produce a\n // confident but understated ratio, which is worse than showing nothing.\n const { curation_rewards: curation, posting_rewards: posting } = account;\n if (curation === undefined || posting === undefined) {\n return null;\n }\n\n const rewards = curation + posting;\n const ownVests =\n parseAsset(account.vesting_shares).amount -\n parseAsset(account.delegated_vesting_shares).amount;\n\n // The SDK's parseAsset hands back a raw parseFloat, so a malformed asset string\n // reaches here as NaN rather than 0. Both sides need the finite check.\n if (!Number.isFinite(rewards) || !Number.isFinite(ownVests) || ownVests <= 0) {\n return null;\n }\n\n return rewards / ownVests;\n}\n\nexport function rcPower(account: RCAccount): number {\n const calc = calculateRCMana(account);\n return calc.percentage / 100;\n}\n\nexport function votingValue(\n account: FullAccount,\n dynamicProps: DynamicProps,\n votingPowerValue: number,\n weight: number = 10000\n): number {\n if (!Number.isFinite(votingPowerValue) || !Number.isFinite(weight)) {\n return 0;\n }\n const { fundRecentClaims, fundRewardBalance, base, quote } = dynamicProps;\n\n if (\n !Number.isFinite(fundRecentClaims) ||\n !Number.isFinite(fundRewardBalance) ||\n !Number.isFinite(base) ||\n !Number.isFinite(quote)\n ) {\n return 0;\n }\n\n if (fundRecentClaims === 0 || quote === 0) {\n return 0;\n }\n\n const rShares = votingRshares(account, dynamicProps, votingPowerValue, weight);\n\n if (!Number.isFinite(rShares)) {\n return 0;\n }\n\n return (rShares / fundRecentClaims) * fundRewardBalance * (base / quote);\n}\n","import type { Operation } from \"../../hive-tx\";\n\n/**\n * Authority levels for Hive blockchain operations.\n * - posting: Social operations (voting, commenting, reblogging)\n * - active: Financial and account management operations\n * - owner: Critical security operations (key changes, account recovery)\n * - memo: Memo encryption/decryption (rarely used for signing)\n */\nexport type AuthorityLevel = 'posting' | 'active' | 'owner' | 'memo';\n\n/**\n * Maps operation types to their required authority level.\n *\n * This mapping is used to determine which key is needed to sign a transaction,\n * enabling smart auth fallback and auth upgrade UI.\n *\n * @remarks\n * - Most social operations (vote, comment, reblog) require posting authority\n * - Financial operations (transfer, withdraw) require active authority\n * - Account management operations require active authority\n * - Security operations (password change, account recovery) require owner authority\n * - custom_json requires dynamic detection based on required_auths vs required_posting_auths\n */\nexport const OPERATION_AUTHORITY_MAP: Record = {\n // Posting authority operations\n vote: 'posting',\n comment: 'posting',\n delete_comment: 'posting',\n comment_options: 'posting',\n claim_reward_balance: 'posting',\n\n // Active authority operations - Financial\n cancel_transfer_from_savings: 'active',\n collateralized_convert: 'active',\n convert: 'active',\n delegate_vesting_shares: 'active',\n recurrent_transfer: 'active',\n set_withdraw_vesting_route: 'active',\n transfer: 'active',\n transfer_from_savings: 'active',\n transfer_to_savings: 'active',\n transfer_to_vesting: 'active',\n withdraw_vesting: 'active',\n\n // Active authority operations - Market\n limit_order_create: 'active',\n limit_order_cancel: 'active',\n\n // Active authority operations - Account Management\n account_update: 'active',\n account_update2: 'active',\n claim_account: 'active',\n create_claimed_account: 'active',\n\n // Active authority operations - Governance\n account_witness_proxy: 'active',\n account_witness_vote: 'active',\n remove_proposal: 'active',\n update_proposal_votes: 'active',\n\n // Owner authority operations - Security & Account Recovery\n change_recovery_account: 'owner',\n request_account_recovery: 'owner',\n recover_account: 'owner',\n reset_account: 'owner',\n set_reset_account: 'owner',\n\n // Note: Some operations are handled separately via content inspection:\n // - custom_json: via getCustomJsonAuthority() - posting or active based on required_auths\n // - create_proposal/update_proposal: via getProposalAuthority() - typically active\n};\n\n/**\n * Determines authority required for a custom_json operation.\n *\n * Custom JSON operations can require either posting or active authority\n * depending on which field is populated:\n * - required_auths (active authority)\n * - required_posting_auths (posting authority)\n *\n * @param customJsonOp - The custom_json operation to inspect\n * @returns 'active' if requires active authority, 'posting' if requires posting authority\n *\n * @example\n * ```typescript\n * // Reblog operation (posting authority)\n * const reblogOp: Operation = ['custom_json', {\n * required_auths: [],\n * required_posting_auths: ['alice'],\n * id: 'reblog',\n * json: '...'\n * }];\n * getCustomJsonAuthority(reblogOp); // Returns 'posting'\n *\n * // Some active authority custom_json\n * const activeOp: Operation = ['custom_json', {\n * required_auths: ['alice'],\n * required_posting_auths: [],\n * id: 'some_active_op',\n * json: '...'\n * }];\n * getCustomJsonAuthority(activeOp); // Returns 'active'\n * ```\n */\nexport function getCustomJsonAuthority(customJsonOp: Operation): AuthorityLevel {\n const opType = customJsonOp[0];\n const payload = customJsonOp[1];\n\n if (opType !== 'custom_json') {\n throw new Error('Operation is not a custom_json operation');\n }\n\n // Type assertion for custom_json payload\n const customJson = payload as {\n required_auths?: string[];\n required_posting_auths?: string[];\n id: string;\n json: string;\n };\n\n // If required_auths is set and non-empty, needs active authority\n if (customJson.required_auths && customJson.required_auths.length > 0) {\n return 'active';\n }\n\n // If only required_posting_auths is set, needs posting authority\n if (customJson.required_posting_auths && customJson.required_posting_auths.length > 0) {\n return 'posting';\n }\n\n // Default to posting for custom_json (most common case)\n return 'posting';\n}\n\n/**\n * Determines authority required for a proposal operation.\n *\n * Proposal operations (create_proposal, update_proposal) typically require\n * active authority as they involve financial commitments and funding allocations.\n *\n * @param proposalOp - The proposal operation to inspect\n * @returns 'active' authority requirement\n *\n * @remarks\n * Unlike custom_json, proposal operations don't have explicit required_auths fields.\n * They always use the creator's authority, which defaults to active for financial\n * operations involving the DAO treasury.\n *\n * @example\n * ```typescript\n * const proposalOp: Operation = ['create_proposal', {\n * creator: 'alice',\n * receiver: 'bob',\n * subject: 'My Proposal',\n * permlink: 'my-proposal',\n * start: '2026-03-01T00:00:00',\n * end: '2026-04-01T00:00:00',\n * daily_pay: '100.000 HBD',\n * extensions: []\n * }];\n * getProposalAuthority(proposalOp); // Returns 'active'\n * ```\n */\nexport function getProposalAuthority(proposalOp: Operation): AuthorityLevel {\n const opType = proposalOp[0];\n\n if (opType !== 'create_proposal' && opType !== 'update_proposal') {\n throw new Error('Operation is not a proposal operation');\n }\n\n // Proposal operations require active authority for financial operations\n return 'active';\n}\n\n/**\n * Determines the required authority level for any operation.\n *\n * Uses the OPERATION_AUTHORITY_MAP for standard operations, and dynamic\n * detection for custom_json operations.\n *\n * @param op - The operation to check\n * @returns 'posting' or 'active' authority requirement\n *\n * @example\n * ```typescript\n * const voteOp: Operation = ['vote', { voter: 'alice', author: 'bob', permlink: 'post', weight: 10000 }];\n * getOperationAuthority(voteOp); // Returns 'posting'\n *\n * const transferOp: Operation = ['transfer', { from: 'alice', to: 'bob', amount: '1.000 HIVE', memo: '' }];\n * getOperationAuthority(transferOp); // Returns 'active'\n * ```\n */\nexport function getOperationAuthority(op: Operation): AuthorityLevel {\n const opType = op[0];\n\n // Special handling for custom_json - requires content inspection\n if (opType === 'custom_json') {\n return getCustomJsonAuthority(op);\n }\n\n // Special handling for proposal operations - requires content inspection\n if (opType === 'create_proposal' || opType === 'update_proposal') {\n return getProposalAuthority(op);\n }\n\n // Use mapping for standard operations, default to posting if unknown\n return OPERATION_AUTHORITY_MAP[opType] ?? 'posting';\n}\n\n/**\n * Determines the highest authority level required for a list of operations.\n *\n * Useful when broadcasting multiple operations together - the highest authority\n * level required by any operation determines what key is needed for the batch.\n *\n * Authority hierarchy: owner > active > posting > memo\n *\n * @param ops - Array of operations\n * @returns Highest authority level required ('owner', 'active', or 'posting')\n *\n * @example\n * ```typescript\n * const ops: Operation[] = [\n * ['vote', { ... }], // posting\n * ['comment', { ... }], // posting\n * ];\n * getRequiredAuthority(ops); // Returns 'posting'\n *\n * const mixedOps: Operation[] = [\n * ['comment', { ... }], // posting\n * ['transfer', { ... }], // active\n * ];\n * getRequiredAuthority(mixedOps); // Returns 'active'\n *\n * const securityOps: Operation[] = [\n * ['transfer', { ... }], // active\n * ['change_recovery_account', { ... }], // owner\n * ];\n * getRequiredAuthority(securityOps); // Returns 'owner'\n * ```\n */\nexport function getRequiredAuthority(ops: Operation[]): AuthorityLevel {\n let highestAuthority: AuthorityLevel = 'posting';\n\n for (const op of ops) {\n const authority = getOperationAuthority(op);\n\n // Owner is highest - return immediately\n if (authority === 'owner') {\n return 'owner';\n }\n\n // Active is higher than posting\n if (authority === 'active' && highestAuthority === 'posting') {\n highestAuthority = 'active';\n }\n\n // Memo is lowest (same level as posting)\n // If we see memo but only have posting, stick with posting\n }\n\n return highestAuthority;\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport type { Operation } from \"../../../hive-tx\";\nimport { isWif, broadcastOperations } from \"@/modules/core/hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useSignOperationByKey(username: string | undefined) {\n return useMutation({\n mutationKey: [\"operations\", \"sign\", username],\n mutationFn: ({\n operation,\n keyOrSeed,\n }: {\n operation: Operation;\n keyOrSeed: string;\n }) => {\n if (!username) {\n throw new Error(\"[Operations][Sign] – cannot sign op with anon user\");\n }\n\n let privateKey: PrivateKey;\n if (keyOrSeed.split(\" \").length === 12) {\n privateKey = PrivateKey.fromLogin(username, keyOrSeed, \"active\");\n } else if (isWif(keyOrSeed)) {\n privateKey = PrivateKey.fromString(keyOrSeed);\n } else {\n privateKey = PrivateKey.from(keyOrSeed);\n }\n\n return broadcastOperations(\n [operation],\n privateKey\n );\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport function useSignOperationByKeychain(\n username: string | undefined,\n auth?: AuthContextV2,\n keyType: \"owner\" | \"active\" | \"posting\" | \"memo\" = \"active\"\n) {\n return useMutation({\n mutationKey: [\"operations\", \"sign-keychain\", username],\n mutationFn: ({ operation }: { operation: Operation }) => {\n if (!username) {\n throw new Error(\n \"[SDK][Keychain] – cannot sign operation with anon user\"\n );\n }\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Keychain] – missing keychain broadcaster\");\n }\n\n return auth.adapter.broadcastWithKeychain(username, [operation], keyType);\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\n\nexport function useSignOperationByHivesigner(callbackUri = \"/\") {\n return useMutation({\n mutationKey: [\"operations\", \"sign-hivesigner\", callbackUri],\n mutationFn: async ({ operation }: { operation: Operation }) => {\n return hs.sendOperation(operation, { callback: callbackUri }, () => {});\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getChainPropertiesQueryOptions() {\n return queryOptions({\n queryKey: [\"operations\", \"chain-properties\"],\n queryFn: async () => {\n return await callRPC(\"condenser_api.get_chain_properties\", []);\n },\n });\n}\n","import { Fragment } from \"../types\";\n\n/**\n * Build the cache entry for an edited fragment.\n *\n * The `/private-api/fragments-update` endpoint returns only a minimal\n * acknowledgement, not the full fragment. Writing that response straight into\n * the query cache blanked out the edited snippet (the reported bug), so the\n * updated record is built from the values the user actually submitted, merged\n * over whatever fields the response does carry, on top of the existing cached\n * fragment (preserving id/created).\n */\nexport function applyFragmentUpdate(\n existing: Fragment,\n response: Partial | null | undefined,\n vars: { title: string; body: string }\n): Fragment {\n return {\n ...existing,\n ...(response ?? {}),\n title: vars.title,\n body: vars.body\n };\n}\n\n/**\n * Build the cache entry for a newly added fragment. Reaffirms the submitted\n * title/body over the server acknowledgement so a fresh snippet never renders\n * blank if the response omits them, while keeping any server-provided\n * id/timestamps.\n */\nexport function buildAddedFragment(\n response: Fragment | null | undefined,\n vars: { title: string; body: string }\n): Fragment {\n return {\n ...(response ?? {}),\n title: vars.title,\n body: vars.body\n } as Fragment;\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { buildAddedFragment } from \"../utils/fragment-cache-helpers\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useAddFragment(username: string, code: string | undefined) {\n return useMutation({\n mutationKey: [\"posts\", \"add-fragment\", username],\n mutationFn: async ({ title, body }: { title: string; body: string }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments-add\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n title,\n body,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n // Raw fetch resolves on 4xx/5xx, so a JSON error response would otherwise run\n // onSuccess and insert a bogus fragment into the cache. Throw instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to add fragment: ${response.status}`);\n }\n return response.json() as Promise;\n },\n onSuccess(response, variables) {\n const queryClient = getQueryClient();\n\n // Reaffirm the submitted title/body over the server acknowledgement so a\n // freshly added snippet never renders blank if the response omits them,\n // while keeping any server-provided id/timestamps.\n const newFragment = buildAddedFragment(response, variables);\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) => [newFragment, ...(data ?? [])]\n );\n\n // Update infinite query cache - add new fragment to first page\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page, index) =>\n index === 0\n ? { ...page, data: [newFragment, ...page.data] }\n : page\n ),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { applyFragmentUpdate } from \"../utils/fragment-cache-helpers\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useEditFragment(\n username: string,\n code: string | undefined\n) {\n return useMutation({\n mutationKey: [\"posts\", \"edit-fragment\", username],\n mutationFn: async ({\n fragmentId,\n title,\n body\n }: {\n fragmentId: string;\n title: string;\n body: string;\n }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments-update\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n id: fragmentId,\n title,\n body,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n // Raw fetch resolves on 4xx/5xx, so a JSON error response would otherwise run\n // onSuccess and overwrite the cached fragment with bogus data. Throw instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to update fragment: ${response.status}`);\n }\n return response.json() as Promise;\n },\n onSuccess(response, variables) {\n const queryClient = getQueryClient();\n\n // The /fragments-update endpoint returns a minimal acknowledgement, not the\n // full fragment, so writing the raw response into the cache blanked out the\n // edited snippet. Rebuild the fragment from the submitted values instead.\n const applyUpdate = (fragment: Fragment): Fragment =>\n applyFragmentUpdate(fragment, response, variables);\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) =>\n data?.map((fragment) =>\n fragment.id === variables.fragmentId ? applyUpdate(fragment) : fragment\n ) ?? []\n );\n\n // Update infinite query cache - update fragment in all pages\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.map((fragment) =>\n fragment.id === variables.fragmentId ? applyUpdate(fragment) : fragment\n ),\n })),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useRemoveFragment(\n username: string,\n code: string | undefined\n) {\n return useMutation({\n mutationKey: [\"posts\", \"remove-fragment\", username],\n mutationFn: async ({ fragmentId }: { fragmentId: string }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/fragments-delete\", {\n method: \"POST\",\n body: JSON.stringify({\n code,\n id: fragmentId,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n // getBoundFetch returns the raw fetch, so a 401/403/500 resolves rather than\n // rejects. Without this guard onSuccess would run and strip the fragment from\n // cache on a failed delete (false success). Throw so onError fires instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to delete fragment: ${response.status}`);\n }\n\n return response;\n },\n onSuccess(_data, variables) {\n const queryClient = getQueryClient();\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) => [...(data ?? [])].filter(({ id }) => id !== variables.fragmentId)\n );\n\n // Update infinite query cache - remove fragment from all pages\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.filter((fragment) => fragment.id !== variables.fragmentId),\n })),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { ApiNotification, ApiNotificationSetting } from \"@/modules/notifications\";\nimport { Draft, DraftMetadata } from \"@/modules/posts/types/draft\";\nimport { Schedule } from \"@/modules/posts/types/schedule\";\nimport { ApiResponse } from \"./types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nasync function parseJsonResponse(response: Response): Promise {\n if (!response.ok) {\n let errorData: unknown = undefined;\n try {\n errorData = await response.json();\n } catch {\n errorData = undefined;\n }\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = errorData;\n throw error;\n }\n\n // Handle empty responses gracefully (e.g., 204 No Content or empty body)\n const text = await response.text();\n if (!text || text.trim() === \"\") {\n return \"\" as T;\n }\n\n try {\n return JSON.parse(text) as T;\n } catch (e) {\n // If JSON parsing fails, return empty string as fallback\n console.warn(\"[SDK] Failed to parse JSON response:\", e, \"Response:\", text);\n return \"\" as T;\n }\n}\n\nexport async function signUp(\n username: string,\n email: string,\n referral: string,\n captchaToken?: string\n): Promise>> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/account-create\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username, email, referral, captcha_token: captchaToken }),\n });\n\n const data = await parseJsonResponse>(response);\n return { status: response.status, data };\n}\n\nexport async function subscribeEmail(\n email: string\n): Promise>> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/subscribe\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ email }),\n });\n\n const data = await parseJsonResponse>(response);\n return { status: response.status, data };\n}\n\nexport async function usrActivity(\n code: string | undefined,\n ty: number,\n bl: string | number = \"\",\n tx: string | number = \"\"\n): Promise {\n const params: {\n code: string | undefined;\n ty: number;\n bl?: string | number;\n tx?: string | number;\n } = { code, ty };\n\n if (bl) {\n params.bl = bl;\n }\n if (tx) {\n params.tx = tx;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/usr-activity\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(params),\n });\n\n await parseJsonResponse(response);\n}\n\nexport async function getNotifications(\n code: string | undefined,\n filter: string | null,\n since: string | null = null,\n user: string | null = null\n): Promise {\n const data: { code: string | undefined; filter?: string; since?: string; user?: string } = {\n code,\n };\n\n if (filter) {\n data.filter = filter;\n }\n\n if (since) {\n data.since = since;\n }\n\n if (user) {\n data.user = user;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/notifications\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function saveNotificationSetting(\n code: string | undefined,\n username: string,\n system: string,\n allows_notify: number,\n notify_types: number[],\n token: string\n): Promise {\n const data = {\n code,\n username,\n token,\n system,\n allows_notify,\n notify_types,\n };\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/register-device\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function getNotificationSetting(\n code: string | undefined,\n username: string,\n token: string\n): Promise {\n const data = { code, username, token };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/detail-device\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function markNotifications(\n code: string | undefined,\n id?: string\n): Promise> {\n const data: { code: string | undefined; id?: string } = {\n code,\n };\n if (id) {\n data.id = id;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/notifications/mark\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addImage(code: string | undefined, url: string): Promise> {\n const data = { code, url };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\n// Upload always targets the canonical Ecency image server, even when\n// the user has changed their viewing proxy (e.g. images.hive.blog).\n// i.ecency.com is the same imagehoster endpoint as images.ecency.com\n// (identical backend / token validation); it is the canonical host\n// because some ISPs SNI-filter the images.ecency.com hostname.\nconst UPLOAD_HOST = \"https://i.ecency.com\";\n\nexport async function uploadImage(\n file: File,\n token: string,\n signal?: AbortSignal\n): Promise<{ url: string }> {\n const fetchApi = getBoundFetch();\n const formData = new FormData();\n formData.append(\"file\", file);\n\n const response = await fetchApi(`${UPLOAD_HOST}/hs/${token}`, {\n method: \"POST\",\n body: formData,\n signal,\n });\n\n return parseJsonResponse<{ url: string }>(response);\n}\n\n/**\n * Upload image using posting key signature (/:username/:signature path).\n * Works with any compatible image server (images.ecency.com, images.hive.blog).\n * The signature is sha256(\"ImageSigningChallenge\" + fileData) signed with the posting key.\n */\nexport async function uploadImageWithSignature(\n file: File,\n username: string,\n signature: string,\n signal?: AbortSignal\n): Promise<{ url: string }> {\n const fetchApi = getBoundFetch();\n const formData = new FormData();\n formData.append(\"file\", file);\n\n const response = await fetchApi(`${CONFIG.imageHost}/${username}/${signature}`, {\n method: \"POST\",\n body: formData,\n signal,\n });\n\n return parseJsonResponse<{ url: string }>(response);\n}\n\nexport async function deleteImage(\n code: string | undefined,\n imageId: string\n): Promise> {\n const data = { code, id: imageId };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addDraft(\n code: string | undefined,\n title: string,\n body: string,\n tags: string,\n meta: DraftMetadata\n): Promise<{ drafts: Draft[] }> {\n const data = { code, title, body, tags, meta };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ drafts: Draft[] }>(response);\n}\n\nexport async function updateDraft(\n code: string | undefined,\n draftId: string,\n title: string,\n body: string,\n tags: string,\n meta: DraftMetadata\n): Promise<{ drafts: Draft[] }> {\n const data = { code, id: draftId, title, body, tags, meta };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-update\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ drafts: Draft[] }>(response);\n}\n\nexport async function deleteDraft(\n code: string | undefined,\n draftId: string\n): Promise> {\n const data = { code, id: draftId };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addSchedule(\n code: string | undefined,\n permlink: string,\n title: string,\n body: string,\n meta: Record,\n options: Record | null,\n schedule: string,\n reblog: boolean\n): Promise> {\n const data: Record = {\n code,\n permlink,\n title,\n body,\n meta,\n schedule,\n reblog,\n };\n\n if (options) {\n data.options = options;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function deleteSchedule(\n code: string | undefined,\n id: string\n): Promise> {\n const data = { code, id };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function moveSchedule(code: string | undefined, id: string): Promise {\n const data = { code, id };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-move\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function getPromotedPost(\n code: string | undefined,\n author: string,\n permlink: string\n): Promise<{ author: string; permlink: string } | \"\"> {\n const data = { code, author, permlink };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/promoted-post\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ author: string; permlink: string } | \"\">(response);\n}\n\nexport async function onboardEmail(\n username: string,\n email: string,\n friend: string\n): Promise> {\n const dataBody = {\n username,\n email,\n friend,\n };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/account-create-friend\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(dataBody),\n }\n );\n\n return parseJsonResponse>(response);\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addDraft } from \"@/modules/private-api/requests\";\nimport { DraftMetadata } from \"../types\";\n\nexport function useAddDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"add\", username],\n mutationFn: async ({\n title,\n body,\n tags,\n meta,\n }: {\n title: string;\n body: string;\n tags: string;\n meta: DraftMetadata;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for addDraft\");\n }\n return addDraft(code, title, body, tags, meta);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full drafts list from the response (API returns complete list)\n if (data?.drafts) {\n qc.setQueryData(QueryKeys.posts.drafts(username), data.drafts);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n }\n // Also invalidate the infinite query so the drafts list refetches\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { updateDraft } from \"@/modules/private-api/requests\";\nimport { DraftMetadata } from \"../types\";\n\nexport function useUpdateDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"update\", username],\n mutationFn: async ({\n draftId,\n title,\n body,\n tags,\n meta,\n }: {\n draftId: string;\n title: string;\n body: string;\n tags: string;\n meta: DraftMetadata;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for updateDraft\");\n }\n return updateDraft(code, draftId, title, body, tags, meta);\n },\n onSuccess: () => {\n onSuccess?.();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError,\n });\n}\n","import { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { deleteDraft } from \"@/modules/private-api/requests\";\nimport type { Draft } from \"../types\";\nimport type { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useDeleteDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"delete\", username],\n mutationFn: async ({ draftId }: { draftId: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteDraft\");\n }\n return deleteDraft(code, draftId);\n },\n onMutate: async ({ draftId }) => {\n if (!username) {\n return;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.posts.drafts(username);\n const infinitePrefix = QueryKeys.posts.draftsInfinite(username);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((d) => d._id !== draftId)\n );\n }\n\n const infiniteQueries = qc.getQueriesData>>({\n queryKey: infinitePrefix,\n });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((d) => d._id !== draftId),\n })),\n });\n }\n }\n\n return { previousList, previousInfinite };\n },\n onSuccess: () => {\n onSuccess?.();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError: (err, _variables, context) => {\n const qc = getQueryClient();\n if (context?.previousList) {\n qc.setQueryData(QueryKeys.posts.drafts(username), context.previousList);\n }\n if (context?.previousInfinite) {\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n }\n onError?.(err);\n },\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addSchedule } from \"@/modules/private-api/requests\";\n\nexport function useAddSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"add\", username],\n mutationFn: async ({\n permlink,\n title,\n body,\n meta,\n options,\n schedule,\n reblog,\n }: {\n permlink: string;\n title: string;\n body: string;\n meta: Record;\n options: Record | null;\n schedule: string;\n reblog: boolean;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for addSchedule\");\n }\n return addSchedule(code, permlink, title, body, meta, options, schedule, reblog);\n },\n onSuccess: () => {\n onSuccess?.();\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.posts.schedules(username),\n });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { deleteSchedule } from \"@/modules/private-api/requests\";\n\nexport function useDeleteSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"delete\", username],\n mutationFn: async ({ id }: { id: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteSchedule\");\n }\n return deleteSchedule(code, id);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full schedules list from the response (API returns complete list)\n if (data) {\n qc.setQueryData(QueryKeys.posts.schedules(username), data);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.schedules(username) });\n }\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { moveSchedule } from \"@/modules/private-api/requests\";\n\nexport function useMoveSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"move\", username],\n mutationFn: async ({ id }: { id: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for moveSchedule\");\n }\n return moveSchedule(code, id);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full schedules list from the response (API returns complete list)\n if (data) {\n qc.setQueryData(QueryKeys.posts.schedules(username), data);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.schedules(username) });\n }\n // Also invalidate drafts since moving a schedule creates a draft\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addImage } from \"@/modules/private-api/requests\";\n\n/**\n * Hook to add an image URL to the user's Ecency gallery\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful addition\n * @param onError - Optional callback on error\n *\n * @example\n * const addImageMutation = useAddImage(username, code);\n * addImageMutation.mutate({ url: 'https://...' });\n */\nexport function useAddImage(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"add\", username],\n mutationFn: async ({ url, code: nextCode }: { url: string; code?: string }) => {\n const effectiveCode = nextCode ?? code;\n\n if (!username || !effectiveCode) {\n throw new Error(\"[SDK][Posts] – missing auth for addImage\");\n }\n return addImage(effectiveCode, url);\n },\n onSuccess: () => {\n onSuccess?.();\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.posts.images(username),\n });\n },\n onError,\n });\n}\n","import { useMutation, type InfiniteData } from \"@tanstack/react-query\";\nimport { getQueryClient } from \"@/modules/core\";\nimport { deleteImage } from \"@/modules/private-api/requests\";\nimport type { UserImage } from \"../types\";\nimport type { WrappedResponse } from \"@/modules/core/types\";\n\n/**\n * Hook to delete an image from the user's Ecency gallery\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful deletion\n * @param onError - Optional callback on error\n *\n * @example\n * const deleteImageMutation = useDeleteImage(username, code);\n * deleteImageMutation.mutate({ imageId: '123' });\n */\nexport function useDeleteImage(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"delete\", username],\n mutationFn: async ({ imageId }: { imageId: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteImage\");\n }\n return deleteImage(code, imageId);\n },\n onSuccess: (_data, variables) => {\n onSuccess?.();\n const qc = getQueryClient();\n const { imageId } = variables;\n\n // Optimistic removal from regular cache\n qc.setQueryData(\n [\"posts\", \"images\", username],\n (prev) => prev?.filter((img) => img._id !== imageId)\n );\n\n // Optimistic removal from infinite cache pages\n qc.setQueriesData>>(\n { queryKey: [\"posts\", \"images\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.filter((img) => img._id !== imageId),\n })),\n };\n }\n );\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { uploadImage } from \"@/modules/private-api/requests\";\n\n/**\n * Hook to upload an image file to Ecency image hosting\n *\n * @param onSuccess - Optional callback on successful upload, receives { url: string }\n * @param onError - Optional callback on error\n *\n * Note: This hook uploads to Ecency's image server and requires a signature token.\n * The token should be generated using the user's posting key signature.\n *\n * @example\n * const uploadMutation = useUploadImage(\n * (data) => console.log('Uploaded:', data.url)\n * );\n * uploadMutation.mutate({ file, token });\n */\nexport function useUploadImage(\n onSuccess?: (data: { url: string }) => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"upload\"],\n mutationFn: async ({\n file,\n token,\n signal,\n }: {\n file: File;\n token: string;\n signal?: AbortSignal;\n }) => {\n return uploadImage(file, token, signal);\n },\n onSuccess,\n onError,\n });\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { Entry, EntryVote } from \"../types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\n\nfunction makeEntryPath(author: string, permlink: string) {\n return `/@${author}/${permlink}`;\n}\n\nfunction getEntryFromCache(\n author: string,\n permlink: string,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n return queryClient.getQueryData(\n QueryKeys.posts.entry(makeEntryPath(author, permlink))\n );\n}\n\nfunction setEntryInCache(entry: Entry, qc?: QueryClient) {\n const queryClient = qc ?? getQueryClient();\n queryClient.setQueryData(\n QueryKeys.posts.entry(makeEntryPath(entry.author, entry.permlink)),\n entry\n );\n}\n\nfunction mutateEntry(\n author: string,\n permlink: string,\n updater: (entry: Entry) => Entry,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n const path = makeEntryPath(author, permlink);\n const existing = queryClient.getQueryData(QueryKeys.posts.entry(path));\n if (!existing) return undefined;\n\n const updated = updater(existing);\n queryClient.setQueryData(QueryKeys.posts.entry(path), updated);\n return existing;\n}\n\n/**\n * SDK-level entry cache utilities. These operate on SDK cache keys\n * ([\"posts\", \"entry\", \"/@author/permlink\"]).\n *\n * Web layer can bridge these to its own QueryIdentifiers.ENTRY keys\n * during the migration period.\n */\nexport namespace EntriesCacheManagement {\n export function updateVotes(\n author: string,\n permlink: string,\n votes: EntryVote[],\n payout: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n active_votes: votes,\n stats: {\n ...(entry.stats || {\n gray: false,\n hide: false,\n flag_weight: 0,\n total_votes: 0,\n }),\n total_votes: votes.length,\n flag_weight: entry.stats?.flag_weight || 0,\n },\n total_votes: votes.length,\n payout,\n pending_payout_value: String(payout),\n }),\n qc\n );\n }\n\n export function updateReblogsCount(\n author: string,\n permlink: string,\n count: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n reblogs: count,\n }),\n qc\n );\n }\n\n export function updateRepliesCount(\n author: string,\n permlink: string,\n count: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n children: count,\n }),\n qc\n );\n }\n\n export function addReply(\n reply: Entry,\n parentAuthor: string,\n parentPermlink: string,\n qc?: QueryClient\n ) {\n mutateEntry(\n parentAuthor,\n parentPermlink,\n (entry) => ({\n ...entry,\n children: entry.children + 1,\n replies: [reply, ...entry.replies],\n }),\n qc\n );\n }\n\n export function updateEntries(entries: Entry[], qc?: QueryClient) {\n entries.forEach((entry) => setEntryInCache(entry, qc));\n }\n\n export function invalidateEntry(\n author: string,\n permlink: string,\n qc?: QueryClient\n ) {\n const queryClient = qc ?? getQueryClient();\n queryClient.invalidateQueries({\n queryKey: QueryKeys.posts.entry(makeEntryPath(author, permlink)),\n });\n }\n\n export function getEntry(\n author: string,\n permlink: string,\n qc?: QueryClient\n ): Entry | undefined {\n return getEntryFromCache(author, permlink, qc);\n }\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\nimport { EntriesCacheManagement } from \"../cache/entries-cache-management\";\n\n/**\n * Whether the cached active_votes list already reflects the broadcast vote:\n * the voter is present for a vote (weight !== 0) or absent for an unvote\n * (weight === 0). Used to avoid stacking the SDK's post-broadcast optimistic\n * update on top of a platform-level optimistic update applied at press time.\n */\nexport function isVoteAlreadyReflected(\n activeVotes: Array<{ voter: string }>,\n voter: string | undefined,\n weight: number\n): boolean {\n const hasVoterRecord = activeVotes.some((v) => v.voter === voter);\n return weight !== 0 ? hasVoterRecord : !hasVoterRecord;\n}\n\n/**\n * Payload for voting on a post or comment.\n */\nexport interface VotePayload {\n /** Author of the post/comment to vote on */\n author: string;\n /** Permlink of the post/comment to vote on */\n permlink: string;\n /** Vote weight (-10000 to 10000, where 10000 = 100% upvote, -10000 = 100% downvote) */\n weight: number;\n /** Optional estimated payout change for optimistic UI */\n estimated?: number;\n}\n\n/**\n * Post-broadcast optimistic cache update for a vote: replaces the voter's\n * active_votes record and bumps the payout by `estimated`. Skipped when the\n * cached entry already reflects this vote (voter present for a vote, absent\n * for an unvote): platforms with their own at-press optimistic layer (e.g.\n * the mobile app) have applied it by the time the broadcast resolves, and\n * stacking a second update here double-counts the payout and clobbers the\n * platform's richer vote record until the deferred invalidation.\n */\nexport function applyVoteCacheUpdate(\n username: string | undefined,\n variables: VotePayload,\n qc?: QueryClient\n): void {\n const entry = EntriesCacheManagement.getEntry(variables.author, variables.permlink, qc);\n if (\n !entry?.active_votes ||\n isVoteAlreadyReflected(entry.active_votes, username, variables.weight)\n ) {\n return;\n }\n const newVotes = [\n ...entry.active_votes.filter((v) => v.voter !== username),\n ...(variables.weight !== 0 ? [{ rshares: variables.weight, voter: username! }] : [])\n ];\n const newPayout = entry.payout + (variables.estimated ?? 0);\n EntriesCacheManagement.updateVotes(\n variables.author,\n variables.permlink,\n newVotes,\n newPayout,\n qc\n );\n}\n\n/**\n * React Query mutation hook for voting on posts and comments.\n *\n * This mutation broadcasts a vote operation to the Hive blockchain,\n * supporting upvotes (positive weight) and downvotes (negative weight).\n *\n * @param username - The username of the voter (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 120) if adapter.recordActivity is available\n * - Invalidates post cache to refetch updated vote data\n * - Invalidates voting power cache to show updated VP\n *\n * **Vote Weight:**\n * - 10000 = 100% upvote\n * - 0 = remove vote\n * - -10000 = 100% downvote\n *\n * @example\n * ```typescript\n * const voteMutation = useVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Upvote a post\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: 10000\n * });\n *\n * // Remove vote\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: 0\n * });\n *\n * // Downvote\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: -10000\n * });\n * ```\n *\n * @remarks\n * broadcastMode: async — Votes don't require block confirmation.\n * The vote is accepted into the mempool immediately; UI can optimistically update.\n */\nexport function useVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"vote\"],\n username,\n ({ author, permlink, weight }) => [\n buildVoteOp(username!, author, permlink, weight)\n ],\n async (result: any, variables) => {\n // Optimistic vote list + payout update (no-op when the cache already\n // reflects this vote — see applyVoteCacheUpdate).\n applyVoteCacheUpdate(username, variables);\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(120, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation — deferred for async broadcasts since onSuccess fires\n // at mempool acceptance before block inclusion.\n if (auth?.adapter?.invalidateQueries) {\n const doInvalidate = () => {\n auth.adapter!.invalidateQueries!([\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n QueryKeys.accounts.full(username)\n ]);\n };\n const mode = broadcastMode ?? 'async';\n if (mode === 'async') {\n setTimeout(doInvalidate, 4000);\n } else {\n doInvalidate();\n }\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys, getQueryClient } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildReblogOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { EntriesCacheManagement } from \"../cache/entries-cache-management\";\n\n/**\n * Payload for reblogging a post.\n */\nexport interface ReblogPayload {\n /** Original post author */\n author: string;\n /** Original post permlink */\n permlink: string;\n /** If true, removes the reblog instead of creating it */\n deleteReblog?: boolean;\n}\n\n/**\n * React Query mutation hook for reblogging posts.\n *\n * This mutation broadcasts a custom_json operation to reblog (or un-reblog)\n * a post to the user's blog feed.\n *\n * @param username - The username performing the reblog (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 130) if adapter.recordActivity is available\n * - Invalidates blog feed cache to show the reblogged post\n * - Invalidates post cache to update reblog status\n *\n * **Reblog vs Delete:**\n * - deleteReblog: false (default) - Creates a reblog\n * - deleteReblog: true - Removes an existing reblog\n *\n * @example\n * ```typescript\n * const reblogMutation = useReblog(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Reblog a post\n * reblogMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post'\n * });\n *\n * // Remove a reblog\n * reblogMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * deleteReblog: true\n * });\n * ```\n */\nexport function useReblog(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"reblog\"],\n username,\n ({ author, permlink, deleteReblog }) => [\n buildReblogOp(username!, author, permlink, deleteReblog ?? false)\n ],\n async (result: any, variables) => {\n // Optimistic reblog count update\n const entry = EntriesCacheManagement.getEntry(variables.author, variables.permlink);\n if (entry) {\n const newCount = Math.max(0, (entry.reblogs ?? 0) + (variables.deleteReblog ? -1 : 1));\n EntriesCacheManagement.updateReblogsCount(variables.author, variables.permlink, newCount);\n }\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(130, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation — deferred for async broadcasts since onSuccess fires\n // at mempool acceptance before block inclusion.\n const invalidate = () => {\n const qc = getQueryClient();\n qc.invalidateQueries({\n queryKey: QueryKeys.posts.accountPostsBlogPrefix(username!),\n });\n if (auth?.adapter?.invalidateQueries) {\n auth.adapter.invalidateQueries([\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n QueryKeys.posts.rebloggedBy(variables.author, variables.permlink),\n ]);\n }\n };\n const mode = broadcastMode ?? 'async';\n if (mode === 'async') {\n setTimeout(invalidate, 4000);\n } else {\n invalidate();\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\n/**\n * Beneficiary account and weight.\n */\nexport interface Beneficiary {\n /** Beneficiary account name */\n account: string;\n /** Beneficiary weight (10000 = 100%) */\n weight: number;\n}\n\n/**\n * Payload for creating a comment or post.\n */\nexport interface CommentPayload {\n /** Author of the comment/post */\n author: string;\n /** Permlink of the comment/post */\n permlink: string;\n /** Parent author (empty string for top-level posts) */\n parentAuthor: string;\n /** Parent permlink (category/tag for top-level posts) */\n parentPermlink: string;\n /** Title of the post (empty for comments) */\n title: string;\n /** Content body */\n body: string;\n /** JSON metadata object */\n jsonMetadata: Record;\n /**\n * Optional: set when this operation edits existing content rather than creating it.\n *\n * A `comment` operation is byte-identical for a create and an update, so only the\n * caller knows which it is. When set, no content activity is recorded. Activity\n * rewards content creation. Without this, an edit of content published elsewhere\n * is credited as content created here. Never broadcast.\n */\n isUpdate?: boolean;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"1000000.000 HBD\") */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n /** Beneficiaries array */\n beneficiaries?: Beneficiary[];\n };\n}\n\n/**\n * React Query mutation hook for creating posts and comments.\n *\n * This mutation broadcasts a comment operation (and optionally comment_options)\n * to create a new post or reply on the Hive blockchain.\n *\n * @param username - The username creating the comment/post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 100 for posts, 110 for comments) if adapter.recordActivity is\n * available, unless the payload sets `isUpdate`\n * - Invalidates feed caches to show the new content\n * - Invalidates parent post cache if this is a reply\n *\n * **Operations:**\n * - Always includes a comment operation\n * - Optionally includes comment_options operation for beneficiaries/rewards\n *\n * **Post vs Comment:**\n * - Post: parentAuthor = \"\", parentPermlink = category/tag\n * - Comment: parentAuthor = parent author, parentPermlink = parent permlink\n *\n * @example\n * ```typescript\n * const commentMutation = useComment(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Create a post\n * commentMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post-20260209',\n * parentAuthor: '',\n * parentPermlink: 'technology',\n * title: 'My Awesome Post',\n * body: 'This is the post content...',\n * jsonMetadata: {\n * tags: ['technology', 'hive'],\n * app: 'ecency/3.0.0'\n * },\n * options: {\n * beneficiaries: [\n * { account: 'ecency', weight: 500 }\n * ]\n * }\n * });\n *\n * // Create a comment\n * commentMutation.mutate({\n * author: 'bob',\n * permlink: 're-alice-my-awesome-post-20260209',\n * parentAuthor: 'alice',\n * parentPermlink: 'my-awesome-post-20260209',\n * title: '',\n * body: 'Great post!',\n * jsonMetadata: { app: 'ecency/3.0.0' }\n * });\n * ```\n */\n/**\n * Resolve which content activity a broadcast earns, or `null` for none.\n *\n * Content activity rewards publishing, so an update earns nothing: the `comment`\n * operation an edit broadcasts is indistinguishable from a create on chain, which\n * leaves the caller as the only party that can tell them apart. Without this, editing\n * a post first published on another frontend is credited here as a post.\n */\nexport function resolveContentActivityType(\n payload: Pick\n): 100 | 110 | null {\n if (payload.isUpdate) {\n return null;\n }\n\n return payload.parentAuthor ? 110 : 100;\n}\n\nexport function useComment(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"comment\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n payload.parentAuthor,\n payload.parentPermlink,\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n beneficiaries = []\n } = payload.options;\n\n const extensions: any[] = [];\n\n // Add beneficiaries extension if provided\n if (beneficiaries.length > 0) {\n // Sort beneficiaries alphabetically by account name (required by blockchain)\n const sortedBeneficiaries = [...beneficiaries].sort((a, b) =>\n a.account.localeCompare(b.account)\n );\n\n extensions.push([\n 0,\n {\n beneficiaries: sortedBeneficiaries.map(b => ({\n account: b.account,\n weight: b.weight\n }))\n }\n ]);\n }\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n extensions\n )\n );\n }\n\n return operations;\n },\n async (result: any, variables) => {\n // Determine if this is a post or comment\n const isPost = !variables.parentAuthor;\n const activityType = resolveContentActivityType(variables);\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (activityType !== null && auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(activityType, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation (always runs regardless of recordActivity outcome)\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username),\n QueryKeys.resourceCredits.account(username!)\n ];\n\n // If this is a reply, invalidate parent post and discussions\n if (!isPost) {\n // Invalidate parent entry\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n // Invalidate discussions (matches all sort orders)\n // Use partial key to match all sort order variants\n // For nested replies, use rootAuthor/rootPermlink to match the root post's discussions\n // Fall back to parentAuthor/parentPermlink for direct replies to posts\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n }\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { Entry } from \"../types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\n\n/**\n * Adds an optimistic entry to all discussions caches for the given root post.\n * Uses predicate matching to find all sort order variants.\n */\nexport function addOptimisticDiscussionEntry(\n entry: Entry,\n rootAuthor: string,\n rootPermlink: string,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n const queries = queryClient.getQueriesData({\n predicate: (query) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === rootAuthor &&\n key[3] === rootPermlink\n );\n },\n });\n\n for (const [queryKey, data] of queries) {\n if (data) {\n queryClient.setQueryData(queryKey, [entry, ...data]);\n }\n }\n}\n\n/**\n * Removes an entry from all discussions caches for the given root post.\n * Returns the previous state for rollback.\n */\nexport function removeOptimisticDiscussionEntry(\n author: string,\n permlink: string,\n rootAuthor: string,\n rootPermlink: string,\n qc?: QueryClient\n): Map {\n const queryClient = qc ?? getQueryClient();\n const snapshots = new Map();\n\n const queries = queryClient.getQueriesData({\n predicate: (query) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === rootAuthor &&\n key[3] === rootPermlink\n );\n },\n });\n\n for (const [queryKey, data] of queries) {\n if (data) {\n snapshots.set(queryKey, data);\n queryClient.setQueryData(\n queryKey,\n data.filter(\n (e) => e.author !== author || e.permlink !== permlink\n )\n );\n }\n }\n\n return snapshots;\n}\n\n/**\n * Restores discussion cache snapshots (for rollback on error).\n */\nexport function restoreDiscussionSnapshots(\n snapshots: Map,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n for (const [queryKey, data] of snapshots) {\n queryClient.setQueryData(queryKey, data);\n }\n}\n\n/**\n * Updates a specific entry in the SDK entry cache.\n * Returns the previous entry for rollback.\n */\nexport function updateEntryInCache(\n author: string,\n permlink: string,\n updates: Partial,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n const path = `/@${author}/${permlink}`;\n const previous = queryClient.getQueryData(QueryKeys.posts.entry(path));\n\n if (previous) {\n queryClient.setQueryData(QueryKeys.posts.entry(path), {\n ...previous,\n ...updates,\n });\n }\n\n return previous;\n}\n\n/**\n * Restores an entry in cache (for rollback on error).\n */\nexport function restoreEntryInCache(\n author: string,\n permlink: string,\n entry: Entry,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n const path = `/@${author}/${permlink}`;\n queryClient.setQueryData(QueryKeys.posts.entry(path), entry);\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildDeleteCommentOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport {\n removeOptimisticDiscussionEntry,\n restoreDiscussionSnapshots,\n} from \"../cache/discussions-cache-utils\";\nimport type { Entry } from \"../types\";\n\n/**\n * Payload for deleting a comment or post.\n */\nexport interface DeleteCommentPayload {\n /** Author of the comment/post to delete */\n author: string;\n /** Permlink of the comment/post to delete */\n permlink: string;\n /** Optional: Parent author (for cache invalidation of discussions) */\n parentAuthor?: string;\n /** Optional: Parent permlink (for cache invalidation of discussions) */\n parentPermlink?: string;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n}\n\n/**\n * React Query mutation hook for deleting posts and comments.\n *\n * This mutation broadcasts a delete_comment operation to the Hive blockchain.\n * Includes optimistic removal from discussions cache with rollback on error.\n *\n * @param username - The username deleting the comment/post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n */\nexport function useDeleteComment(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"deleteComment\"],\n username,\n ({ author, permlink }) => [\n buildDeleteCommentOp(author, permlink)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username)\n ];\n\n // If this is a reply, invalidate parent post and discussions\n if (variables.parentAuthor && variables.parentPermlink) {\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n }\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n {\n broadcastMode,\n // Optimistic removal: remove from discussions cache before broadcast\n onMutate: async (variables) => {\n const rootAuthor = variables.rootAuthor || variables.parentAuthor;\n const rootPermlink = variables.rootPermlink || variables.parentPermlink;\n\n if (rootAuthor && rootPermlink) {\n const snapshots = removeOptimisticDiscussionEntry(\n variables.author,\n variables.permlink,\n rootAuthor,\n rootPermlink\n );\n return { snapshots };\n }\n return {};\n },\n // Rollback on error: restore discussions cache\n onError: (_error, _variables, context) => {\n const { snapshots } = (context as { snapshots?: Map }) ?? {};\n if (snapshots) {\n restoreDiscussionSnapshots(snapshots);\n }\n },\n }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\n/**\n * Payload for creating a cross-post.\n */\nexport interface CrossPostPayload {\n /** Author of the cross-post (current user) */\n author: string;\n /** Permlink of the cross-post (usually: original-permlink-community-id) */\n permlink: string;\n /** Community ID to cross-post to (used as parent_permlink) */\n parentPermlink: string;\n /** Title of the cross-post (same as original) */\n title: string;\n /** Body of the cross-post (includes reference to original) */\n body: string;\n /** JSON metadata (must include original_author, original_permlink, tags, app) */\n jsonMetadata: Record;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"0.000 HBD\" for declined payout) */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n };\n}\n\n/**\n * React Query mutation hook for creating cross-posts.\n *\n * A cross-post is a special type of post that references an original post\n * and publishes it to a different community.\n *\n * @param username - The username creating the cross-post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates feed/blog caches to show the new cross-post\n *\n * **Operations:**\n * - Always includes a comment operation (with empty parent_author for top-level post)\n * - Optionally includes comment_options operation for rewards/beneficiaries\n *\n * **Metadata Requirements:**\n * The jsonMetadata must include:\n * - `original_author`: Author of the original post\n * - `original_permlink`: Permlink of the original post\n * - `tags`: Tags for the cross-post (typically [\"cross-post\"])\n * - `app`: Application identifier (e.g., \"ecency/3.0.0-vision\")\n *\n * @example\n * ```typescript\n * const crossPostMutation = useCrossPost(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Create a cross-post\n * crossPostMutation.mutate({\n * author: 'alice',\n * permlink: 'great-post-hive-123456',\n * parentPermlink: 'hive-123456', // community ID\n * title: 'Great Post',\n * body: 'This is a cross post of [@bob/great-post](/technology/@bob/great-post) by @alice.

Check this out!',\n * jsonMetadata: {\n * app: 'ecency/3.0.0-vision',\n * tags: ['cross-post'],\n * original_author: 'bob',\n * original_permlink: 'great-post'\n * },\n * options: {\n * maxAcceptedPayout: '0.000 HBD',\n * allowCurationRewards: false\n * }\n * });\n * ```\n */\nexport function useCrossPost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"cross-post\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation (empty parent_author for top-level post)\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n \"\", // empty parent_author for top-level post\n payload.parentPermlink, // community ID\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n } = payload.options;\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n [] // No beneficiaries for cross-posts\n )\n );\n }\n\n return operations;\n },\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username),\n // Invalidate target community feed so cross-post appears\n {\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"posts-ranked\" &&\n key[3] === variables.parentPermlink\n );\n }\n }\n ];\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\nimport type { Beneficiary } from \"./use-comment\";\n\n/**\n * Payload for updating a reply/comment.\n */\nexport interface UpdateReplyPayload {\n /** Author of the comment/post */\n author: string;\n /** Permlink of the comment/post being updated */\n permlink: string;\n /** Parent author */\n parentAuthor: string;\n /** Parent permlink */\n parentPermlink: string;\n /** Title (empty for comments) */\n title: string;\n /** Updated content body */\n body: string;\n /** Updated JSON metadata object */\n jsonMetadata: Record;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"1000000.000 HBD\") */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n /** Beneficiaries array */\n beneficiaries?: Beneficiary[];\n };\n}\n\n/**\n * React Query mutation hook for updating existing replies/comments.\n *\n * This mutation broadcasts a comment operation (and optionally comment_options)\n * to update an existing reply/comment on the Hive blockchain.\n *\n * @param username - The username updating the comment (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates parent post cache to reflect the updated comment\n * - Invalidates discussions cache (all sort orders)\n * - Invalidates RC cache (RC decreases after updating)\n *\n * **Operations:**\n * - Always includes a comment operation\n * - Optionally includes comment_options operation for beneficiaries/rewards\n *\n * **Important:**\n * - Updates use the same comment operation as creating new comments\n * - The blockchain identifies this as an update based on matching author/permlink\n * - Only the author can update their own content\n * - Content can only be updated before payout (within 7 days)\n *\n * @example\n * ```typescript\n * const updateReplyMutation = useUpdateReply(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Update a reply\n * updateReplyMutation.mutate({\n * author: 'alice',\n * permlink: 're-bob-my-post-20260209',\n * parentAuthor: 'bob',\n * parentPermlink: 'my-post-20260209',\n * title: '',\n * body: 'Updated comment content!',\n * jsonMetadata: {\n * tags: ['comment'],\n * app: 'ecency/3.0.0-vision'\n * },\n * rootAuthor: 'bob',\n * rootPermlink: 'my-post-20260209'\n * });\n * ```\n */\nexport function useUpdateReply(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"update-reply\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation (same operation for create and update)\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n payload.parentAuthor,\n payload.parentPermlink,\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n beneficiaries = []\n } = payload.options;\n\n const extensions: any[] = [];\n\n // Add beneficiaries extension if provided\n if (beneficiaries.length > 0) {\n // Sort beneficiaries alphabetically by account name (required by blockchain)\n const sortedBeneficiaries = [...beneficiaries].sort((a, b) =>\n a.account.localeCompare(b.account)\n );\n\n extensions.push([\n 0,\n {\n beneficiaries: sortedBeneficiaries.map(b => ({\n account: b.account,\n weight: b.weight\n }))\n }\n ]);\n }\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n extensions\n )\n );\n }\n\n return operations;\n },\n async (_result: any, variables) => {\n // No activity is recorded here. Activity rewards creating content. Every\n // broadcast from this mutation edits content that already exists.\n\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.resourceCredits.account(username!)\n ];\n\n // Invalidate parent entry\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n // Invalidate discussions (matches all sort orders)\n // Use partial key to match all sort order variants\n // For nested replies, use rootAuthor/rootPermlink to match the root post's discussions\n // Fall back to parentAuthor/parentPermlink for direct replies to posts\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildPromoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for promoting a post using Ecency Points.\n */\nexport interface PromotePayload {\n /** Post author */\n author: string;\n /** Post permlink */\n permlink: string;\n /** Promotion duration in days */\n duration: number;\n}\n\n/**\n * React Query mutation hook for promoting posts.\n *\n * This mutation broadcasts a custom_json operation to promote a post\n * using Ecency Points. The post will appear in promoted feeds for the\n * specified duration.\n *\n * @param username - The username promoting the post (required for broadcast, deducts points from this user)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates promoted posts cache to show newly promoted content\n * - Invalidates user points balance\n * - Invalidates post cache to update promotion status\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"ecency_promote\"\n * - JSON: {\"user\": \"username\", \"author\": \"postauthor\", \"permlink\": \"postpermlink\", \"duration\": 7}\n * - Authority: Active key (required for point spending)\n *\n * **Cost:**\n * - Costs Ecency Points based on duration\n * - User must have sufficient points balance\n *\n * @example\n * ```typescript\n * const promoteMutation = usePromote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Promote a post for 7 days\n * promoteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-great-post',\n * duration: 7\n * });\n * ```\n */\nexport function usePromote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"ecency\", \"promote\"],\n username,\n ({ author, permlink, duration }) => [\n buildPromoteOp(username!, author, permlink, duration)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n // Invalidate promoted posts feed\n [...QueryKeys.posts._promotedPrefix],\n // Invalidate user points balance\n [...QueryKeys.points._prefix(username!)],\n // Invalidate specific post cache to update promotion status\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport type ValidatePostCreatingOptions = {\n delays?: number[];\n};\n\nconst DEFAULT_VALIDATE_POST_DELAYS = [3000, 3000, 3000];\n\nconst delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));\n\nasync function getContent(author: string, permlink: string): Promise {\n return callRPC(\"condenser_api.get_content\", [\n author,\n permlink,\n ]) as Promise;\n}\n\nexport async function validatePostCreating(\n author: string,\n permlink: string,\n attempts = 0,\n options?: ValidatePostCreatingOptions\n) {\n const delays = options?.delays ?? DEFAULT_VALIDATE_POST_DELAYS;\n\n let response: Entry | undefined;\n try {\n response = await getContent(author, permlink);\n } catch (e) {\n response = undefined;\n }\n\n if (response || attempts >= delays.length) {\n return;\n }\n\n const waitMs = delays[attempts];\n if (waitMs > 0) {\n await delay(waitMs);\n }\n\n return validatePostCreating(author, permlink, attempts + 1, options);\n}\n","export * from \"./use-record-activity\";\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\ntype ActivityType =\n // Editor related\n | \"post-created\"\n | \"post-updated\"\n | \"post-scheduled\"\n | \"draft-created\"\n | \"video-published\"\n\n // Legacy editor related\n | \"legacy-post-created\"\n | \"legacy-post-updated\"\n | \"legacy-post-scheduled\"\n | \"legacy-draft-created\"\n | \"legacy-video-published\"\n\n // Perks related\n | \"perks-points-by-qr\"\n | \"perks-account-boost\"\n | \"perks-promote\"\n | \"perks-boost-plus\"\n | \"points-claimed\"\n | \"spin-rolled\"\n\n // Signup related\n | \"signed-up-with-wallets\"\n | \"signed-up-with-email\";\n\nexport interface RecordActivityOptions {\n url?: string;\n domain?: string;\n}\n\n/**\n * Get current location info safely (works in browser and Node.js)\n * Returns empty strings in non-browser environments\n */\nfunction getLocationInfo(): { url: string; domain: string } {\n if (typeof window !== \"undefined\" && window.location) {\n return {\n url: window.location.href,\n domain: window.location.host,\n };\n }\n return { url: \"\", domain: \"\" };\n}\n\nexport function useRecordActivity(\n username: string | undefined,\n activityType: ActivityType,\n options?: RecordActivityOptions\n) {\n return useMutation({\n mutationKey: [\"analytics\", activityType],\n mutationFn: async () => {\n if (!activityType) {\n throw new Error(\"[SDK][Analytics] – no activity type provided\");\n }\n const fetchApi = getBoundFetch();\n\n // Use provided values or auto-detect from browser environment\n // Falls back to empty strings in non-browser environments (Node.js, React Native, etc.)\n const locationInfo = getLocationInfo();\n const url = options?.url ?? locationInfo.url;\n const domain = options?.domain ?? locationInfo.domain;\n\n try {\n await fetchApi(CONFIG.plausibleHost + \"/api/event\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n name: activityType,\n url,\n domain,\n props: {\n username,\n },\n }),\n });\n } catch {\n // Analytics is fire-and-forget - network failures, ad blockers,\n // and CORS issues should not bubble up as user-facing errors\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { LeaderBoardDuration, LeaderBoardItem } from \"../types\";\n\nexport function getDiscoverLeaderboardQueryOptions(duration: LeaderBoardDuration) {\n return queryOptions({\n queryKey: [\"analytics\", \"discover-leaderboard\", duration],\n queryFn: async ({ signal }) => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/leaderboard/${duration}`,\n { signal }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch leaderboard: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { CurationDuration, CurationItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getDiscoverCurationQueryOptions(duration: CurationDuration) {\n return queryOptions({\n queryKey: [\"analytics\", \"discover-curation\", duration],\n queryFn: async ({ signal }) => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/curation/${duration}`,\n { signal }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch curation data: ${response.status}`);\n }\n\n const data = (await response.json()) as CurationItem[];\n\n // Fetch account data for efficiency calculation\n const accounts = data.map((item) => item.account);\n const accountsResponse = await callRPC(\"condenser_api.get_accounts\", [accounts]);\n\n // Calculate efficiency for each curator\n for (let index = 0; index < accountsResponse.length; index++) {\n const element = accountsResponse[index];\n const curator = data[index];\n\n // Convert Asset to string if needed\n const vestingShares = typeof element.vesting_shares === 'string'\n ? element.vesting_shares\n : element.vesting_shares.toString();\n const receivedVestingShares = typeof element.received_vesting_shares === 'string'\n ? element.received_vesting_shares\n : element.received_vesting_shares.toString();\n const delegatedVestingShares = typeof element.delegated_vesting_shares === 'string'\n ? element.delegated_vesting_shares\n : element.delegated_vesting_shares.toString();\n const vestingWithdrawRate = typeof element.vesting_withdraw_rate === 'string'\n ? element.vesting_withdraw_rate\n : element.vesting_withdraw_rate.toString();\n\n const effectiveVest: number =\n parseFloat(vestingShares) +\n parseFloat(receivedVestingShares) -\n parseFloat(delegatedVestingShares) -\n parseFloat(vestingWithdrawRate);\n // `hp` is the reward in Hive Power; the denominator stays in VESTS, which\n // is what the ranking has always compared. Every curator is scaled the\n // same way, so the ordering is unaffected by the unit mismatch.\n curator.efficiency = curator.hp / effectiveVest;\n }\n\n // Sort by efficiency descending\n data.sort((a: CurationItem, b: CurationItem) => b.efficiency - a.efficiency);\n\n return data;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { PageStatsResponse } from \"../types\";\n\n/**\n * Get page statistics from the private analytics API\n *\n * @param url - URL to get stats for\n * @param dimensions - Dimensions to query (default: [])\n * @param metrics - Metrics to query (default: [\"visitors\", \"pageviews\", \"visit_duration\"])\n * @param dateRange - Date range for the query (e.g. \"day\", \"7d\", \"30d\", \"all\")\n */\nexport function getPageStatsQueryOptions(\n url: string,\n dimensions: string[] = [],\n metrics: string[] = [\"visitors\", \"pageviews\", \"visit_duration\"],\n dateRange?: string\n) {\n // Sort arrays to ensure stable query keys regardless of input order\n const sortedDimensions = [...dimensions].sort();\n const sortedMetrics = [...metrics].sort();\n\n return queryOptions({\n queryKey: [\"analytics\", \"page-stats\", url, sortedDimensions, sortedMetrics, dateRange],\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/api/stats\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n metrics,\n url: encodeURIComponent(url),\n dimensions,\n date_range: dateRange,\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch page stats: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!url,\n // Analytics data should always be fresh - users expect current stats when changing range\n staleTime: 0,\n });\n}\n","/**\n * 3Speak takes an 11% beneficiary share on posts that embed one of its videos.\n *\n * This lives in the SDK because the rule is a payout contract that both the web app and the\n * mobile app have to apply identically. It was previously duplicated in each, which meant a\n * change to the weight, or to what counts as an embed, could land on one platform and not the\n * other and silently misroute revenue.\n */\n\n/** A beneficiary route as it appears in `comment_options`. */\nexport interface ThreeSpeakBeneficiaryRoute {\n account: string;\n weight: number;\n src?: string;\n}\n\nexport const THREESPEAK_BENEFICIARY_ACCOUNT = \"threespeakfund\";\n\n/** Beneficiary weight in basis points: 1100 = 11%. */\nexport const THREESPEAK_BENEFICIARY_WEIGHT = 1100;\n\n/**\n * Whether the body embeds a 3Speak video.\n *\n * Matches an actual embed url (e.g. `https://play.3speak.tv/embed?v=user/id`), not a plain\n * text mention of \"3speak.tv/embed\", which would otherwise attach an 11% route to a post that\n * merely talks about 3Speak.\n *\n * `3speak.tv` must be the host, either bare or under dot-delimited subdomains. The previous\n * `[a-z.]*` prefix also matched a lookalike domain such as `fake3speak.tv`, which would have\n * routed 11% of a user's rewards to threespeakfund for a video 3Speak never hosted. Matching\n * is case-insensitive because hostnames are, and a missed match means the route is silently\n * not attached rather than anything failing loudly.\n *\n * Note this requires an `/embed` path segment. The embed url is not built locally, it comes\n * back from 3Speak on upload, so if that shape ever changes this predicate stops recognising\n * it and the route is silently not attached.\n */\nexport function hasThreeSpeakEmbed(body: string): boolean {\n return /https?:\\/\\/([a-z0-9-]+\\.)*3speak\\.tv\\/embed[?/]/i.test(body);\n}\n\n/**\n * Ensures the 3Speak beneficiary is present, at the correct weight, when the body embeds a\n * 3Speak video. Other beneficiaries are preserved and the input is never mutated. Returns the\n * original array reference untouched when there is nothing to change, so callers can use it as\n * a cheap equality check.\n */\nexport function enforceThreeSpeakBeneficiary(\n beneficiaries: T[],\n body: string\n): (T | ThreeSpeakBeneficiaryRoute)[] {\n if (!hasThreeSpeakEmbed(body)) {\n return beneficiaries;\n }\n\n const existing = beneficiaries.find((b) => b.account === THREESPEAK_BENEFICIARY_ACCOUNT);\n\n if (existing && existing.weight === THREESPEAK_BENEFICIARY_WEIGHT) {\n return beneficiaries;\n }\n\n if (existing) {\n return beneficiaries.map((b) =>\n b.account === THREESPEAK_BENEFICIARY_ACCOUNT\n ? { ...b, weight: THREESPEAK_BENEFICIARY_WEIGHT }\n : b\n );\n }\n\n return [\n ...beneficiaries,\n { account: THREESPEAK_BENEFICIARY_ACCOUNT, weight: THREESPEAK_BENEFICIARY_WEIGHT }\n ];\n}\n\n/** Whether a beneficiary entry is the 3Speak route, which the UI locks from editing. */\nexport function isThreeSpeakBeneficiary(account: string): boolean {\n return account === THREESPEAK_BENEFICIARY_ACCOUNT;\n}\n","export * from \"./get-account-token-query-options\";\nexport * from \"./get-account-videos-query-options\";\n","export * from \"./get-decode-memo-query-options\";\n","import { queryOptions } from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\n\nexport function getDecodeMemoQueryOptions(\n username: string,\n memo: string,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"hivesigner\", \"decode-memo\", username],\n queryFn: async () => {\n if (accessToken) {\n const hsClient = new hs.Client({\n accessToken,\n });\n return hsClient.decode(memo);\n }\n },\n });\n}\n","import * as queries from \"./queries\";\n\nconst HiveSignerIntegration = {\n queries,\n};\n\nexport { HiveSignerIntegration };\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { HiveSignerIntegration } from \"../../hivesigner\";\nimport { getBoundFetch, getQueryClient } from \"@/modules/core\";\n\nexport function getAccountTokenQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"3speak\", \"authenticate\", username],\n enabled: !!username && !!accessToken,\n queryFn: async () => {\n if (!username || !accessToken) {\n throw new Error(\"[SDK][Integrations][3Speak] – anon user\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://studio.3speak.tv/mobile/login?username=${username}&hivesigner=true`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n const memoQueryOptions =\n HiveSignerIntegration.queries.getDecodeMemoQueryOptions(\n username,\n (await response.json()).memo,\n accessToken\n );\n await getQueryClient().prefetchQuery(memoQueryOptions);\n const { memoDecoded } = getQueryClient().getQueryData(\n memoQueryOptions.queryKey\n );\n\n return memoDecoded.replace(\"#\", \"\");\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ThreeSpeakVideo } from \"../types\";\nimport { getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { getAccountTokenQueryOptions } from \"./get-account-token-query-options\";\n\nexport function getAccountVideosQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"3speak\", \"videos\", username],\n enabled: !!username && !!accessToken,\n queryFn: async () => {\n if (!username || !accessToken) {\n throw new Error(\"[SDK][Integrations][3Speak] – anon user\");\n }\n\n const tokenQueryOptions = getAccountTokenQueryOptions(\n username,\n accessToken\n );\n\n await getQueryClient().prefetchQuery(tokenQueryOptions);\n const token = getQueryClient().getQueryData(tokenQueryOptions.queryKey);\n if (!token) {\n throw new Error(\"[SDK][Integrations][3Speak] – missing account token\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://studio.3speak.tv/mobile/api/my-videos`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Bearer ${token}`,\n },\n }\n );\n return (await response.json()) as ThreeSpeakVideo[];\n },\n });\n}\n","export * from \"./types\";\nexport * from \"./functions\";\nimport * as queries from \"./queries\";\n\nconst ThreeSpeakIntegration = {\n queries,\n};\n\nexport { ThreeSpeakIntegration };\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getBoundFetch } from \"@/modules/core\";\n\nexport function getHivePoshLinksQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"integrations\", \"hiveposh\", \"links\", username],\n retry: false, // Don't retry on user not found errors\n queryFn: async () => {\n try {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://hiveposh.com/api/v0/linked-accounts/${username}`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n // Handle 400 error when user is not registered on HivePosh\n if (response.status === 400) {\n const errorData = await response.json().catch(() => ({}));\n // Silently return null for \"User Not Connected\" errors\n if (errorData?.message === \"User Not Connected\") {\n return null;\n }\n }\n\n if (!response.ok) {\n return null;\n }\n\n const data = await response.json();\n\n return {\n twitter: {\n username: data.twitter_username,\n profile: data.twitter_profile,\n },\n reddit: {\n username: data.reddit_username,\n profile: data.reddit_profile,\n },\n } satisfies Record<\n \"twitter\" | \"reddit\",\n { username: string; profile: string }\n >;\n } catch (err) {\n // Silently handle all HivePosh API errors\n return null;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch } from \"@/modules/core\";\n\nexport interface StatsResponse {\n results: [\n {\n metrics: number[];\n dimensions: string[];\n },\n ];\n query: {\n site_id: string;\n metrics: string[];\n date_range: string[];\n filters: string[];\n };\n}\ninterface UseStatsQueryOptions {\n url: string;\n dimensions?: string[];\n metrics?: string[];\n /**\n * Which dimension the `url` is matched against. `event:page` (default) matches\n * any visit that viewed the page; `visit:entry_page` matches only visits that\n * landed on it. The API route validates this against an allow-list.\n */\n filterBy?: \"event:page\" | \"visit:entry_page\";\n /**\n * Plausible `date_range`. Pass a tuple `[from, to]` (ISO `YYYY-MM-DD`) to scope\n * the query — e.g. a post's creation date through today. Scoping is essential:\n * ClickHouse orders events by `(site_id, toDate(timestamp), …)` and partitions\n * by month, so a bounded range prunes to a few granules instead of scanning the\n * whole history. Omitting it falls back to the route default (`\"all\"`), which on\n * a high-traffic site is a multi-second full scan. Plausible also accepts the\n * relative keywords `\"day\"`, `\"7d\"`, `\"30d\"`, `\"all\"`.\n */\n dateRange?: string | [string, string];\n enabled?: boolean;\n}\n\nexport function getStatsQueryOptions({\n url,\n dimensions = [],\n metrics = [\"visitors\", \"pageviews\", \"visit_duration\"],\n filterBy = \"event:page\",\n dateRange,\n enabled = true,\n}: UseStatsQueryOptions) {\n return queryOptions({\n queryKey: [\"integrations\", \"plausible\", url, dimensions, metrics, filterBy, dateRange],\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(`${CONFIG.privateApiHost}/api/stats`, {\n method: \"POST\",\n body: JSON.stringify({\n metrics,\n url: encodeURIComponent(url),\n dimensions,\n filterBy,\n // Only forward a range when set, so the route keeps owning the default.\n ...(dateRange ? { date_range: dateRange } : {}),\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n // The proxy route returns 5xx (504/502) with an empty body on a Plausible\n // timeout/transport error, and Plausible itself can return a 4xx error JSON.\n // Without this guard those parse into an object with no `results`, and the UI\n // silently renders 0 — indistinguishable from a real zero. Throw instead so\n // React Query surfaces the error and retries.\n if (!response.ok) {\n throw new Error(`Failed to fetch Plausible stats: ${response.status}`);\n }\n\n return (await response.json()) as StatsResponse;\n },\n enabled: !!url && enabled,\n // Stats queries are now date-scoped and cheap; a single retry rides out a\n // transient slow scan without re-introducing the all-time pile-up.\n retry: 1,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getRcStatsQueryOptions() {\n return queryOptions({\n queryKey: [\"resource-credits\", \"stats\"],\n queryFn: async () => {\n const response = await callRPC(\"rc_api.get_rc_stats\", {});\n return response.rc_stats;\n },\n });\n}\n","import { callRPC } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getAccountRcQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"resource-credits\", \"account\", username],\n queryFn: async (): Promise => {\n const result = await callRPC(\"rc_api.find_rc_accounts\", {\n accounts: [username],\n });\n return result.rc_accounts;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { RcResourceParams } from \"../types/resource-params\";\n\n/**\n * Curve coefficients and sizing constants used to price resource usage.\n *\n * These only change at a hardfork, so the entry is kept for the session:\n * `gcTime: Infinity` is the one value that schedules no gc timer at all, so it\n * does not hold a request's query cache open on the server the way a long\n * finite window would.\n *\n * `staleTime` stays bounded on purpose. Making it infinite too would mean a\n * long-lived session keeps pricing with pre-hardfork coefficients forever,\n * quietly producing wrong RC estimates with no way to recover short of a\n * reload. A day is long enough that this is effectively never refetched, and\n * short enough that a hardfork corrects itself.\n */\nexport function getRcResourceParamsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.resourceCredits.resourceParams(),\n staleTime: 24 * 60 * 60 * 1000,\n gcTime: Infinity,\n queryFn: async () => (await callRPC(\"rc_api.get_resource_params\", {})) as RcResourceParams\n });\n}\n","/** Shape returned by `rc_api.get_resource_params`. Numbers arrive as strings. */\nexport interface RcPriceCurveParams {\n coeff_a: string | number;\n coeff_b: string | number;\n shift: string | number;\n}\n\nexport interface RcResourceDynamicsParams {\n resource_unit: string | number;\n budget_per_time_unit: string | number;\n pool_eq: string | number;\n max_pool_size: string | number;\n}\n\nexport interface RcResourceParamEntry {\n resource_dynamics_params: RcResourceDynamicsParams;\n price_curve_params: RcPriceCurveParams;\n}\n\n/**\n * Per-operation and per-transaction sizing constants. Only the members this\n * module needs are declared; the node returns many more.\n */\nexport interface RcSizeInfo {\n resource_state_bytes: {\n comment_base_size: number;\n comment_permlink_char_size: number;\n comment_beneficiaries_member_size: number;\n vote_size: number;\n transaction_base_size: number;\n [key: string]: number;\n };\n resource_execution_time: {\n comment_time: number;\n comment_options_time: number;\n vote_time: number;\n transaction_time: number;\n verify_authority_time: number;\n [key: string]: number;\n };\n [key: string]: Record;\n}\n\nexport interface RcResourceParams {\n resource_params: Record;\n size_info: RcSizeInfo;\n}\n\n/**\n * Resource order is consensus-defined (`HIVE_RC_NUM_RESOURCE_TYPES`) and the\n * `pool`, `share` and `budget` arrays in rc_stats are indexed by it.\n */\nexport const RC_RESOURCE_NAMES = [\n \"resource_history_bytes\",\n \"resource_new_accounts\",\n \"resource_market_bytes\",\n \"resource_state_bytes\",\n \"resource_execution_time\"\n] as const;\n\nexport type RcResourceName = (typeof RC_RESOURCE_NAMES)[number];\n\nexport interface RcCostBreakdown {\n resource: RcResourceName;\n usage: number;\n cost: number;\n}\n","import { utf8ByteLength, varintByteLength } from \"@/modules/core/utf8\";\nimport {\n RC_RESOURCE_NAMES,\n type RcCostBreakdown,\n type RcPriceCurveParams,\n type RcResourceName,\n type RcResourceParams,\n type RcSizeInfo\n} from \"../types/resource-params\";\nimport type { RcStats } from \"../types/stats\";\n\n/**\n * What the chain actually charges for publishing a comment, rather than the\n * network-average cost of an average comment.\n *\n * The average is a poor guide for posts: it is dominated by short replies,\n * while a long post is charged mostly on `history_bytes`, which is the\n * serialized transaction size. A real case: an account holding 21.3B RC was\n * told it could afford 17 posts, then a 46,620-byte post was rejected needing\n * 23.3B RC, more than that account's entire maximum.\n *\n * This is a direct port of `resource_credits::compute_cost` and the\n * `comment_operation` arm of `count_resources` from hive, so it tracks what\n * the node does instead of approximating it. Verified against a real\n * rejection: usage reproduces exactly and total cost lands within 0.3%, the\n * residual coming from `share` being published rounded to four digits.\n */\n\n/**\n * Fixed transaction header: ref_block_num(2) + ref_block_prefix(4) +\n * expiration(4) + the extensions varint(1).\n */\nconst TRANSACTION_HEADER_BYTES = 11;\n/** Compact signature, 65 bytes each. */\nconst SIGNATURE_BYTES = 65;\n/** asset = amount int64(8) + precision(1) + symbol(7). */\nconst ASSET_BYTES = 16;\n\nconst big = (v: string | number): bigint => BigInt(typeof v === \"string\" ? v : Math.trunc(v));\n\n/**\n * Port of `resource_credits::compute_cost` (libraries/chain/rc/rc_utility.cpp).\n *\n * BigInt is required, not stylistic: `coeff_a` is ~1.05e19, well past\n * Number.MAX_SAFE_INTEGER, so float arithmetic loses the low bits and the\n * result drifts.\n */\nexport function computeResourceCost(\n curve: RcPriceCurveParams,\n pool: number,\n resourceCount: number,\n regenShare: number\n): number {\n if (resourceCount <= 0 || regenShare <= 0) {\n return 0;\n }\n\n const coeffA = big(curve.coeff_a);\n const coeffB = big(curve.coeff_b);\n const shift = big(curve.shift);\n\n // The node shifts before multiplying by the resource count, because\n // regen * coeff_a already risks overflowing 128 bits. Order matters.\n let num = (big(regenShare) * coeffA) >> shift;\n num += 1n;\n num *= big(resourceCount);\n\n const denom = coeffB + (pool > 0 ? big(pool) : 0n);\n if (denom === 0n) {\n return 0;\n }\n\n return Number(num / denom + 1n);\n}\n\nexport interface CommentResourceUsageInput {\n /** Byte length of the serialized transaction. */\n transactionBytes: number;\n permlinkLength: number;\n /** Signatures on the transaction; a normal post carries one. */\n signatures?: number;\n /**\n * Beneficiary count on the companion comment_options, when publish appends\n * one. The chain counts resources for every operation in the transaction,\n * not just the comment.\n */\n beneficiaries?: number;\n hasCommentOptions?: boolean;\n}\n\n/**\n * Port of the `comment_operation` and `comment_options_operation` arms of\n * `count_resources` (libraries/chain/rc/resource_count.cpp). Reproduces the\n * chain's numbers exactly, see the spec.\n */\nexport function countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength,\n signatures = 1,\n beneficiaries = 0,\n hasCommentOptions = false\n }: CommentResourceUsageInput,\n sizeInfo: RcSizeInfo\n): Record {\n const state = sizeInfo.resource_state_bytes;\n const exec = sizeInfo.resource_execution_time;\n\n return {\n resource_history_bytes: transactionBytes,\n resource_new_accounts: 0,\n resource_market_bytes: 0,\n resource_state_bytes:\n state.comment_base_size +\n state.comment_permlink_char_size * permlinkLength +\n state.transaction_base_size +\n // comment_payout_beneficiaries is visited from comment_options\n state.comment_beneficiaries_member_size * beneficiaries,\n resource_execution_time:\n exec.comment_time +\n exec.transaction_time +\n exec.verify_authority_time * signatures +\n (hasCommentOptions ? exec.comment_options_time : 0)\n };\n}\n\nexport interface CommentLike {\n author: string;\n permlink: string;\n parent_author: string;\n parent_permlink: string;\n title: string;\n body: string;\n json_metadata: string;\n}\n\n\n/** A beneficiary route as it appears in comment_options extensions. */\nexport interface BeneficiaryRoute {\n account: string;\n weight: number;\n}\n\n/**\n * The comment_options operation publish appends when the author sets\n * beneficiaries or a non-default reward split.\n */\nexport interface CommentOptionsLike {\n beneficiaries?: BeneficiaryRoute[];\n}\n\n/** Serialized bytes of one string field: its varint length plus its bytes. */\nconst stringFieldBytes = (value: string): number => {\n const length = utf8ByteLength(value);\n return varintByteLength(length) + length;\n};\n\nconst commentOperationBytes = (op: CommentLike): number =>\n 1 + // operation variant id\n stringFieldBytes(op.parent_author) +\n stringFieldBytes(op.parent_permlink) +\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n stringFieldBytes(op.title) +\n stringFieldBytes(op.body) +\n stringFieldBytes(op.json_metadata);\n\nconst commentOptionsBytes = (op: CommentLike, options: CommentOptionsLike): number => {\n const beneficiaries = options.beneficiaries ?? [];\n let bytes =\n 1 + // operation variant id\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n ASSET_BYTES + // max_accepted_payout\n 2 + // percent_hbd\n 2; // allow_votes + allow_curation_rewards\n\n bytes += varintByteLength(beneficiaries.length > 0 ? 1 : 0);\n if (beneficiaries.length > 0) {\n bytes += 1 + varintByteLength(beneficiaries.length); // extension variant id + route count\n beneficiaries.forEach((route) => {\n bytes += stringFieldBytes(route.account) + 2; // weight is uint16\n });\n }\n return bytes;\n};\n\nexport interface CommentTransactionInput {\n op: CommentLike;\n /** Present when publish appends comment_options for beneficiaries or rewards. */\n options?: CommentOptionsLike;\n signatures?: number;\n}\n\n/**\n * Serialized size of the transaction that will carry this comment.\n *\n * This models Hive's binary encoding rather than approximating it: a fixed\n * header, one varint-prefixed field per string, and 65 bytes per signature.\n * Verified byte-exact against eight real transactions read back with\n * `get_transaction_hex`, including one carrying comment_options.\n */\nexport function estimateCommentTransactionBytes({\n op,\n options,\n signatures = 1\n}: CommentTransactionInput): number {\n const operations = [commentOperationBytes(op)];\n if (options) {\n operations.push(commentOptionsBytes(op, options));\n }\n\n return (\n TRANSACTION_HEADER_BYTES +\n varintByteLength(operations.length) +\n operations.reduce((sum, bytes) => sum + bytes, 0) +\n varintByteLength(signatures) +\n SIGNATURE_BYTES * signatures\n );\n}\n\nexport interface EstimateCommentRcCostInput {\n op: CommentLike;\n /** Companion comment_options, when the author set beneficiaries or rewards. */\n options?: CommentOptionsLike;\n rcParams: RcResourceParams | undefined;\n rcStats: Pick | undefined;\n signatures?: number;\n}\n\nexport interface CommentRcCostEstimate {\n /** False until both queries have resolved; callers must not warn on this. */\n ready: boolean;\n cost: number;\n transactionBytes: number;\n breakdown: RcCostBreakdown[];\n}\n\nconst EMPTY: CommentRcCostEstimate = {\n ready: false,\n cost: 0,\n transactionBytes: 0,\n breakdown: []\n};\n\n/** Total RC the chain will charge to broadcast this comment. */\nexport function estimateCommentRcCost({\n op,\n options,\n rcParams,\n rcStats,\n signatures = 1\n}: EstimateCommentRcCostInput): CommentRcCostEstimate {\n if (!rcParams?.resource_params || !rcParams.size_info || !rcStats?.pool || !rcStats.share) {\n return EMPTY;\n }\n\n const transactionBytes = estimateCommentTransactionBytes({ op, options, signatures });\n const usage = countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength: utf8ByteLength(op.permlink),\n signatures,\n beneficiaries: options?.beneficiaries?.length ?? 0,\n hasCommentOptions: !!options\n },\n rcParams.size_info\n );\n\n const regen = Number(rcStats.regen);\n let cost = 0;\n const breakdown: RcCostBreakdown[] = [];\n\n RC_RESOURCE_NAMES.forEach((name, index) => {\n const entry = rcParams.resource_params[name];\n const pool = Number(rcStats.pool[index] ?? 0);\n const share = Number(rcStats.share[index] ?? 0);\n if (!entry || share <= 0) {\n return;\n }\n\n // `usage` is scaled by the resource unit before pricing. It is 1 for the\n // resources a comment touches, but market bytes and new accounts are not.\n const scaled = usage[name] * Number(entry.resource_dynamics_params.resource_unit ?? 1);\n // rc_stats publishes `share` as weight/divisor scaled to 10,000. Kept in\n // BigInt: regen is ~2.4e12 and the product is past the safe-integer range\n // for larger shares.\n const regenShare = Number((BigInt(regen) * BigInt(share)) / 10000n);\n const resourceCost = computeResourceCost(entry.price_curve_params, pool, scaled, regenShare);\n\n cost += resourceCost;\n breakdown.push({ resource: name, usage: scaled, cost: resourceCost });\n });\n\n return { ready: true, cost, transactionBytes, breakdown };\n}\n","import {\n RC_RESOURCE_NAMES,\n type RcCostBreakdown,\n type RcResourceName,\n type RcResourceParams\n} from \"../types/resource-params\";\nimport type { RcStats } from \"../types/stats\";\nimport { computeResourceCost } from \"./estimate-comment-rc-cost\";\n\nexport type RcResourceUsage = Record;\n\nexport interface RcPricedUsage {\n cost: number;\n breakdown: RcCostBreakdown[];\n}\n\n/**\n * Turns per-resource usage into an RC cost.\n *\n * This is the single pricing path. Every RC figure the app shows, the publish\n * warning, the comment warning, the vote warning and the credits tooltip, goes\n * through here, so they cannot disagree with each other or with the chain.\n */\nexport function priceRcUsage(\n usage: RcResourceUsage,\n rcParams: RcResourceParams,\n rcStats: Pick\n): RcPricedUsage {\n const regen = Number(rcStats.regen);\n let cost = 0;\n const breakdown: RcCostBreakdown[] = [];\n\n RC_RESOURCE_NAMES.forEach((name, index) => {\n const entry = rcParams.resource_params[name];\n const pool = Number(rcStats.pool[index] ?? 0);\n const share = Number(rcStats.share[index] ?? 0);\n if (!entry || share <= 0) {\n return;\n }\n\n const scaled = usage[name] * Number(entry.resource_dynamics_params.resource_unit ?? 1);\n // rc_stats publishes `share` as weight/divisor scaled to 10,000. Kept in\n // BigInt: regen is ~2.4e12 and the product leaves the safe-integer range.\n const regenShare = Number((BigInt(regen) * BigInt(share)) / 10000n);\n const resourceCost = computeResourceCost(entry.price_curve_params, pool, scaled, regenShare);\n\n cost += resourceCost;\n breakdown.push({ resource: name, usage: scaled, cost: resourceCost });\n });\n\n return { cost, breakdown };\n}\n","import { utf8ByteLength, varintByteLength } from \"@/modules/core/utf8\";\nimport type { RcResourceName, RcSizeInfo } from \"../types/resource-params\";\nimport type { RcResourceUsage } from \"./price-rc-usage\";\n\n/**\n * Ports of the per-operation arms of `count_resources`\n * (hive/libraries/chain/rc/resource_count.cpp).\n *\n * Every operation charges three things: the serialized transaction size as\n * history_bytes, a per-operation state footprint, and execution time. Only the\n * middle two differ per operation, which is why they live together here.\n */\n\n/** Fixed header: ref_block_num(2) + ref_block_prefix(4) + expiration(4) + extensions varint(1). */\nexport const TRANSACTION_HEADER_BYTES = 11;\nexport const SIGNATURE_BYTES = 65;\n\nexport const stringFieldBytes = (value: string): number => {\n const length = utf8ByteLength(value);\n return varintByteLength(length) + length;\n};\n\nconst emptyUsage = (): RcResourceUsage => ({\n resource_history_bytes: 0,\n resource_new_accounts: 0,\n resource_market_bytes: 0,\n resource_state_bytes: 0,\n resource_execution_time: 0\n});\n\nexport interface VoteLike {\n voter: string;\n author: string;\n permlink: string;\n}\n\n/** Serialized size of a transaction carrying a single vote. */\nexport function estimateVoteTransactionBytes(op: VoteLike, signatures = 1): number {\n const operationBytes =\n 1 + // operation variant id\n stringFieldBytes(op.voter) +\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n 2; // weight, int16\n\n return (\n TRANSACTION_HEADER_BYTES +\n varintByteLength(1) +\n operationBytes +\n varintByteLength(signatures) +\n SIGNATURE_BYTES * signatures\n );\n}\n\n/**\n * A vote's footprint is fixed: `vote_size` state bytes and `vote_time`\n * execution time, regardless of the post being voted on.\n */\nexport function countVoteResourceUsage(\n { transactionBytes, signatures = 1 }: { transactionBytes: number; signatures?: number },\n sizeInfo: RcSizeInfo\n): RcResourceUsage {\n const state = sizeInfo.resource_state_bytes;\n const exec = sizeInfo.resource_execution_time;\n\n return {\n ...emptyUsage(),\n resource_history_bytes: transactionBytes,\n resource_state_bytes: state.vote_size + state.transaction_base_size,\n resource_execution_time:\n exec.vote_time + exec.transaction_time + exec.verify_authority_time * signatures\n };\n}\n\n/** Resource names, re-exported so callers do not reach into the types module. */\nexport type { RcResourceName };\n","import { calculateRCMana } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\nimport type { RcStats } from \"../types/stats\";\nimport type { RcResourceParams } from \"../types/resource-params\";\nimport { priceRcUsage } from \"./price-rc-usage\";\nimport {\n countVoteResourceUsage,\n estimateVoteTransactionBytes,\n type VoteLike\n} from \"./count-operation-usage\";\nimport {\n countCommentResourceUsage,\n estimateCommentTransactionBytes,\n type CommentLike,\n type CommentOptionsLike\n} from \"./estimate-comment-rc-cost\";\n\n/**\n * Operations the RC pre-check can estimate. Mirrors the keys exposed by\n * `rc_api.get_rc_stats` (see {@link RcStats}[\"ops\"]).\n */\nexport type RcPrecheckOperation = keyof RcStats[\"ops\"];\n\n/** The operation about to be broadcast, when the caller has it. */\nexport type RcPrecheckPayload =\n | { kind: \"comment\"; op: CommentLike; options?: CommentOptionsLike }\n | { kind: \"vote\"; op: VoteLike };\n\nexport interface RcPrecheckInput {\n /** From `getAccountRcQueryOptions(username)` -> rcAccounts[0]. */\n rcAccount: RCAccount | null | undefined;\n /** From `getRcStatsQueryOptions()`. */\n rcStats: RcStats | null | undefined;\n /** The operation the user is about to broadcast. */\n operation: RcPrecheckOperation;\n /**\n * From `getRcResourceParamsQueryOptions()`. Required for an exact estimate;\n * without it the result is not ready rather than silently approximate.\n */\n rcParams?: RcResourceParams | null;\n /**\n * The actual operation about to be broadcast. Supplying it is what makes the\n * estimate exact, because cost is dominated by the serialized transaction\n * size. Without it a minimal operation of that type is priced instead, which\n * is a lower bound: it can miss a marginal case but never invents one.\n */\n payload?: RcPrecheckPayload;\n /**\n * What to price when no payload is supplied.\n *\n * - `\"minimal\"` (default) prices the smallest operation of that type. It is\n * a lower bound, so a pre-submit warning is never invented for an\n * operation that would have succeeded.\n * - `\"average\"` prices the network average the chain publishes. Right for\n * \"how many of these can I afford\" displays, where there is no specific\n * operation in hand and the smallest conceivable one would flatter the\n * count.\n */\n fallback?: \"minimal\" | \"average\";\n /**\n * Safety multiplier applied to the operation cost when deciding\n * whether the broadcast will \"likely fail\". Actual on-chain cost varies with\n * network load, so we keep headroom. Defaults to 1.2.\n */\n buffer?: number;\n}\n\nexport interface RcPrecheckResult {\n /** Both inputs were available, so the estimate is meaningful. */\n ready: boolean;\n /** Current RC mana of the account. */\n currentMana: number;\n /** Maximum RC mana of the account. */\n maxMana: number;\n /**\n * RC cost of the operation itself.\n *\n * Named `avgCost` for backwards compatibility; it is no longer an average.\n * @deprecated prefer `cost`.\n */\n avgCost: number;\n /** RC cost of the operation, computed the way the chain computes it. */\n cost: number;\n /** Serialized transaction size, the dominant term for a comment. */\n transactionBytes: number;\n /** Average cost padded by `buffer`. */\n estimatedCost: number;\n /** `currentMana` is below the padded estimate -> broadcast likely fails. */\n willLikelyFail: boolean;\n /** RC shortfall vs the padded estimate (0 when not failing). */\n deficit: number;\n /** Roughly how many such operations the account can still afford. */\n remaining: number;\n}\n\nconst EMPTY: RcPrecheckResult = {\n ready: false,\n currentMana: 0,\n maxMana: 0,\n avgCost: 0,\n cost: 0,\n transactionBytes: 0,\n estimatedCost: 0,\n willLikelyFail: false,\n deficit: 0,\n remaining: 0,\n};\n\n/**\n * Pure, client-side estimate of whether an account has enough Resource Credits\n * to broadcast an operation, used to warn the user BEFORE they submit instead\n * of failing afterwards with the chain's \"Please wait to transact\" error.\n *\n * Costs are computed the way the chain computes them, from the actual\n * operation, not from the network-wide average. The average is dominated by\n * short replies and badly misleads on posts: it once told an account holding\n * 21.3B RC that it could afford 17 posts, and the next post it tried needed\n * 23.3B.\n *\n * Still a hint, never a hard gate: the buffer covers pool drift between the\n * estimate and the broadcast, and the publish/comment/vote action must stay\n * non-blocking.\n */\nexport function estimateRcPrecheck({\n rcAccount,\n rcStats,\n rcParams,\n operation,\n payload,\n fallback = \"minimal\",\n buffer = 1.2,\n}: RcPrecheckInput): RcPrecheckResult {\n if (!rcAccount || !rcStats?.ops) {\n return EMPTY;\n }\n\n const { current_mana: currentMana, max_mana: maxMana } = calculateRCMana(rcAccount);\n\n const priced = priceOperation(operation, payload, fallback, rcParams, rcStats);\n if (!priced) {\n // Nothing to price against: reporting \"ready\" here would be a silent\n // all-clear, which is the one answer a pre-check must never invent.\n return { ...EMPTY, currentMana, maxMana };\n }\n\n const { cost, transactionBytes } = priced;\n const safeBuffer = Number.isFinite(buffer) && buffer > 0 ? buffer : 1.2;\n const estimatedCost = cost * safeBuffer;\n const willLikelyFail = currentMana < estimatedCost;\n\n return {\n ready: true,\n currentMana,\n maxMana,\n avgCost: cost,\n cost,\n transactionBytes,\n estimatedCost,\n willLikelyFail,\n deficit: willLikelyFail ? Math.ceil(estimatedCost - currentMana) : 0,\n remaining: Math.floor(currentMana / cost),\n };\n}\n\n/**\n * Prices whichever operation the caller is about to broadcast.\n *\n * Comments and votes are the two operations whose cost swings with what the\n * user wrote, so they are priced from the payload, and pricing them needs the\n * curve parameters. Every other operation the type advertises (transfer,\n * custom_json, ...) is fixed-shape and takes the network average the chain\n * publishes, which needs nothing else.\n *\n * When no payload is supplied a minimal operation is priced. That is\n * deliberately a lower bound: it can miss a marginal case, but it never warns\n * about one that would have succeeded.\n *\n * Returns null when the answer would have to be invented, so the caller\n * reports \"not ready\" rather than a zero-cost all-clear.\n */\nfunction priceOperation(\n operation: RcPrecheckOperation,\n payload: RcPrecheckPayload | undefined,\n fallback: \"minimal\" | \"average\",\n rcParams: RcResourceParams | null | undefined,\n rcStats: RcStats\n): { cost: number; transactionBytes: number } | null {\n const average = averageCost(rcStats, operation);\n const pricedFromPayload =\n operation === \"comment_operation\" || operation === \"vote_operation\";\n\n // The average is a number the node already returned. It needs no curve\n // parameters, so a caller pricing a transfer must not be blocked waiting on\n // them, which is how every operation outside these two is priced.\n if (!pricedFromPayload || (!payload && fallback === \"average\")) {\n return average;\n }\n\n // Asked to price a real comment or vote without the inputs to do it. The\n // honest answer is \"not ready\": falling back to the average here is exactly\n // what told an account holding 21.3B RC it could afford 17 more posts.\n if (!rcParams?.resource_params || !rcParams.size_info || !rcStats.pool || !rcStats.share) {\n return null;\n }\n\n const stats = { pool: rcStats.pool, regen: rcStats.regen, share: rcStats.share };\n\n if (operation === \"vote_operation\") {\n const op: VoteLike = payload?.kind === \"vote\" ? payload.op : MINIMAL_VOTE;\n const transactionBytes = estimateVoteTransactionBytes(op);\n const usage = countVoteResourceUsage({ transactionBytes }, rcParams.size_info);\n return { cost: priceRcUsage(usage, rcParams, stats).cost, transactionBytes };\n }\n\n const op: CommentLike = payload?.kind === \"comment\" ? payload.op : MINIMAL_COMMENT;\n const options = payload?.kind === \"comment\" ? payload.options : undefined;\n const transactionBytes = estimateCommentTransactionBytes({ op, options });\n const usage = countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength: op.permlink.length,\n beneficiaries: options?.beneficiaries?.length ?? 0,\n hasCommentOptions: !!options\n },\n rcParams.size_info\n );\n return { cost: priceRcUsage(usage, rcParams, stats).cost, transactionBytes };\n}\n\n/** The network average the chain publishes for an operation, when it has one. */\nfunction averageCost(\n rcStats: RcStats,\n operation: RcPrecheckOperation\n): { cost: number; transactionBytes: number } | null {\n const cost = rcStats.ops[operation]?.avg_cost;\n return typeof cost === \"number\" && cost > 0 ? { cost, transactionBytes: 0 } : null;\n}\n\n/** Smallest realistic operations, used only when the caller has no payload yet. */\nconst MINIMAL_COMMENT: CommentLike = {\n author: \"aaaaaaaaaa\",\n permlink: \"aaaaaaaaaaaaaaaaaaaa\",\n parent_author: \"\",\n parent_permlink: \"hive-100000\",\n title: \"\",\n body: \"\",\n json_metadata: \"{}\"\n};\n\nconst MINIMAL_VOTE: VoteLike = {\n voter: \"aaaaaaaaaa\",\n author: \"aaaaaaaaaa\",\n permlink: \"aaaaaaaaaaaaaaaaaaaa\"\n};\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { GetGameStatus } from \"../types\";\n\nexport function getGameStatusCheckQueryOptions(\n username: string | undefined,\n code: string | undefined,\n gameType: \"spin\"\n) {\n return queryOptions({\n queryKey: [\"games\", \"status-check\", gameType, username],\n enabled: !!username && !!code,\n queryFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Games] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/get-game\",\n {\n method: \"POST\",\n body: JSON.stringify({\n game_type: gameType,\n code,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n return (await response.json()) as GetGameStatus;\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { GameClaim } from \"../types\";\nimport { useRecordActivity } from \"@/modules/analytics/mutations\";\n\n/**\n * POST a single game claim and return the parsed JSON body.\n *\n * A failed post-game comes back from the edge as an HTML gateway page (a 502 was\n * the trail on ECENCY-NEXT-1FCJ), and `response.json()` on that throws a bare\n * `SyntaxError` naming neither the endpoint nor the cause. Check the status and\n * the content type first, then fail with a STABLE, low-cardinality message\n * (content type + status, never the raw body) so these group as a single Sentry\n * issue instead of fragmenting on every distinct error page.\n *\n * Exported for unit testing; the hook below wraps it.\n */\nexport async function gameClaimRequest(\n code: string,\n gameType: \"spin\",\n key: string\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/post-game\",\n {\n method: \"POST\",\n body: JSON.stringify({\n game_type: gameType,\n code,\n key,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n // Media types are case-insensitive; normalise once and reuse in every branch.\n const contentType = (response.headers.get(\"content-type\") ?? \"\")\n .split(\";\")[0]\n .trim()\n .toLowerCase();\n const body = await response.text();\n\n if (!response.ok) {\n // Only fold a short JSON error body into the message; an HTML gateway page\n // (e.g. 502/503) would otherwise fragment the Sentry group per distinct page.\n const detail =\n body && contentType.includes(\"json\") ? `: ${body.slice(0, 200)}` : \"\";\n throw new Error(\n `[SDK][Games] – failed with status ${response.status}${detail}`\n );\n }\n\n if (!contentType.includes(\"json\")) {\n throw new Error(\n `[SDK][Games] – expected JSON but received \"${contentType || \"empty\"}\" response (status ${response.status})`\n );\n }\n\n try {\n return JSON.parse(body) as GameClaim;\n } catch {\n throw new Error(\n `[SDK][Games] – malformed JSON response (status ${response.status})`\n );\n }\n}\n\nexport function useGameClaim(\n username: string | undefined,\n code: string | undefined,\n gameType: \"spin\",\n key: string\n) {\n const { mutateAsync: recordActivity } = useRecordActivity(\n username,\n \"spin-rolled\"\n );\n\n return useMutation({\n mutationKey: [\"games\", \"post\", gameType, username],\n mutationFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Games] – missing auth\");\n }\n\n return gameClaimRequest(code, gameType, key);\n },\n onSuccess() {\n recordActivity();\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { QuestsResponse } from \"../types\";\n\n/**\n * Read-only daily/weekly/monthly quest progress for a user. Aggregates the existing\n * points ledger (no auth required — same sensitivity as `/private-api/points`).\n */\nexport function getQuestsQueryOptions(username: string | undefined) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.quests.status(name),\n enabled: !!name,\n queryFn: async () => {\n if (!name) {\n throw new Error(\"[SDK][Quests] – username wasn't provided\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/quests\",\n {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ username: name }),\n },\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch quests: ${response.status}`);\n }\n\n return (await response.json()) as QuestsResponse;\n },\n staleTime: 30000,\n refetchOnMount: true,\n });\n}\n","/**\n * Shared quest catalog — the single source of truth for which quests exist, their\n * encouraging goals, copy keys and icon hints. Lives in the SDK so the web and mobile\n * clients render an identical, harmonized set. The backend (`/private-api/quests`)\n * returns raw progress + the reward `cap`; this catalog layers the presentation.\n *\n * `goal` is an *encouraging, reachable* daily target and is intentionally independent of\n * the backend reward `cap` (the point at which the existing reward decays to ~0). It is\n * tunable here without any backend change.\n */\n\nexport type QuestTier = \"daily\" | \"weekly\" | \"monthly\";\n\nexport interface QuestCatalogEntry {\n id: string;\n tier: QuestTier;\n /** encouraging, reachable target for the period (tunable, not the reward cap) */\n goal: number;\n /** i18n key suffix; clients resolve e.g. `quests..title` / `.desc` */\n i18nKey: string;\n /** semantic icon hint; each client maps it to its own icon set */\n icon: string;\n}\n\nexport const QUEST_CATALOG: QuestCatalogEntry[] = [\n // Daily\n { id: \"checkin\", tier: \"daily\", goal: 1, i18nKey: \"checkin\", icon: \"check-circle\" },\n { id: \"post\", tier: \"daily\", goal: 1, i18nKey: \"post\", icon: \"pencil\" },\n { id: \"comment\", tier: \"daily\", goal: 3, i18nKey: \"comment\", icon: \"comment\" },\n { id: \"vote\", tier: \"daily\", goal: 10, i18nKey: \"vote\", icon: \"chevron-up-circle\" },\n { id: \"reblog\", tier: \"daily\", goal: 1, i18nKey: \"reblog\", icon: \"repeat\" },\n { id: \"spin\", tier: \"daily\", goal: 1, i18nKey: \"spin\", icon: \"gift\" },\n // Weekly\n { id: \"post\", tier: \"weekly\", goal: 5, i18nKey: \"post\", icon: \"pencil\" },\n { id: \"comment\", tier: \"weekly\", goal: 15, i18nKey: \"comment\", icon: \"comment\" },\n { id: \"vote\", tier: \"weekly\", goal: 50, i18nKey: \"vote\", icon: \"chevron-up-circle\" },\n { id: \"reblog\", tier: \"weekly\", goal: 5, i18nKey: \"reblog\", icon: \"repeat\" },\n // Monthly\n { id: \"post\", tier: \"monthly\", goal: 20, i18nKey: \"post\", icon: \"pencil\" },\n];\n\nexport function getQuestCatalogEntry(tier: QuestTier, id: string) {\n return QUEST_CATALOG.find((q) => q.tier === tier && q.id === id);\n}\n\n/**\n * Shortest body that earns points and counts toward the post/comment quests.\n *\n * MIRRORS the ePoints `CONTENT_MIN_LENGTH` - the backend is the source of truth and\n * rejects anything at or below it, silently. This exists so a client can say so in the\n * composer instead of leaving the user to wonder why their reply never counted.\n */\nexport const QUEST_MIN_CONTENT_LENGTH = 25;\n\n/**\n * The length the backend actually measures. URLs are stripped first, so a reply that is\n * nothing but an image link measures as empty however long it looks. Mirrors the\n * `http(s)://\\S+` strip in the ePoints verifier, including the absence of any trimming.\n *\n * Counts code points, not UTF-16 code units, because the backend measures with Python's\n * `len` on a str. `String.length` would score an astral character (most emoji) as 2,\n * so a reply of 13 emoji would look like 26 here and 13 there: the client would promise\n * points the backend then refuses, which is the exact confusion this is meant to end.\n */\nexport function measureQuestContentLength(body: string | null | undefined): number {\n return Array.from((body ?? \"\").replace(/https?:\\/\\/\\S+/g, \"\")).length;\n}\n\n/**\n * Whether a post or comment body is long enough to earn points and quest credit.\n * Strictly greater than the minimum, matching the backend comparison.\n */\nexport function earnsQuestContentCredit(body: string | null | undefined): boolean {\n return measureQuestContentLength(body) > QUEST_MIN_CONTENT_LENGTH;\n}\n\n// Streak Freeze display config. MIRRORS the ePoints constants\n// (STREAK_FREEZE_PRICE / STREAK_FREEZE_MAX_OWNED) — the server is the source of truth\n// and validates every purchase; these drive the label + button state only, so a drift\n// here never over-charges (the buy is priced server-side).\nexport const STREAK_FREEZE_PRICE = 300;\nexport const STREAK_FREEZE_MAX_OWNED = 2;\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { StreakFreezeBuyResult } from \"../types\";\n\n/** A fresh idempotency key per purchase; guarded for runtimes without crypto.randomUUID. */\nfunction genIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n return `${Date.now()}-${Math.random().toString(36).slice(2)}`;\n}\n\n/**\n * POST a single streak-freeze purchase. Throws on a non-2xx with the server's\n * `.status` + parsed `.data` attached so the caller can branch on 402 (insufficient)\n * / 409 (max owned). Exported for unit testing; the hook below wraps it.\n */\nexport async function buyStreakFreezeRequest(\n code: string\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/streak-freeze/buy\",\n {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ code, idempotency_key: genIdempotencyKey() }),\n }\n );\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to buy streak freeze: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as StreakFreezeBuyResult;\n}\n\n/**\n * Buy one streak freeze (a Points-only sink). The server debits Points, caps owned\n * inventory, and is idempotent per key. On success the quests + points caches are\n * invalidated so the owned count and balance refresh. A 402 (insufficient) / 409 (max\n * owned) is rethrown with `.status` + `.data` so the caller can route to a Points top-up.\n */\nexport function useBuyStreakFreeze(\n username: string | undefined,\n code: string | undefined\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"streak-freeze\", \"buy\", name],\n mutationFn: async () => {\n if (!name || !code) {\n throw new Error(\"[SDK][StreakFreeze] – missing auth\");\n }\n return buyStreakFreezeRequest(code);\n },\n onSuccess() {\n // Balance only changes on a successful debit.\n if (name) {\n queryClient.invalidateQueries({ queryKey: QueryKeys.points._prefix(name) });\n }\n },\n onSettled() {\n // Refresh freezes_owned on success AND error: a 409 (max owned) means the\n // client's count is stale, and without this the \"Protect streak\" button would\n // never hide and the user could keep re-triggering 409s.\n if (name) {\n queryClient.invalidateQueries({ queryKey: QueryKeys.quests.status(name) });\n }\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSubscribeOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for subscribing to a community.\n */\nexport interface SubscribeCommunityPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n}\n\n/**\n * React Query mutation hook for subscribing to a community.\n *\n * This mutation broadcasts a subscribe operation to the Hive blockchain,\n * adding the community to the user's subscription list.\n *\n * @param username - The username subscribing (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates subscriptions cache to show updated subscription list\n * - Invalidates community cache to refetch updated subscriber count\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"subscribe\", {\"community\": \"hive-123456\"}]\n * - Authority: Posting key\n *\n * @example\n * ```typescript\n * const subscribeMutation = useSubscribeCommunity(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Subscribe to a community\n * subscribeMutation.mutate({\n * community: 'hive-123456'\n * });\n * ```\n */\nexport function useSubscribeCommunity(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"subscribe\"],\n username,\n ({ community }) => [\n buildSubscribeOp(username!, community)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.subscriptions(username!),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n QueryKeys.communities.context(username!, variables.community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUnsubscribeOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for unsubscribing from a community.\n */\nexport interface UnsubscribeCommunityPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n}\n\n/**\n * React Query mutation hook for unsubscribing from a community.\n *\n * This mutation broadcasts an unsubscribe operation to the Hive blockchain,\n * removing the community from the user's subscription list.\n *\n * @param username - The username unsubscribing (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates subscriptions cache to show updated subscription list\n * - Invalidates community cache to refetch updated subscriber count\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"unsubscribe\", {\"community\": \"hive-123456\"}]\n * - Authority: Posting key\n *\n * @example\n * ```typescript\n * const unsubscribeMutation = useUnsubscribeCommunity(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Unsubscribe from a community\n * unsubscribeMutation.mutate({\n * community: 'hive-123456'\n * });\n * ```\n */\nexport function useUnsubscribeCommunity(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"unsubscribe\"],\n username,\n ({ community }) => [\n buildUnsubscribeOp(username!, community)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.subscriptions(username!),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n QueryKeys.communities.context(username!, variables.community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'sync' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildMutePostOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for muting/unmuting a post in a community.\n */\nexport interface MutePostPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n /** Post author */\n author: string;\n /** Post permlink */\n permlink: string;\n /** Mute reason/notes (required even for unmute) */\n notes: string;\n /** True to mute, false to unmute */\n mute: boolean;\n}\n\n/**\n * React Query mutation hook for muting/unmuting posts in a community.\n *\n * This mutation broadcasts a custom_json operation to mute (or unmute)\n * a post within a community. Only community moderators/admins can mute posts.\n *\n * @param username - The username performing the mute (required for broadcast, must have permission)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community posts cache to hide muted content\n * - Invalidates post cache to update mute status\n * - Invalidates feed cache to remove muted posts from feeds\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"mutePost\", {\"community\": \"hive-123456\", \"account\": \"author\", \"permlink\": \"post\", \"notes\": \"reason\"}]\n * - Action (unmute): [\"unmutePost\", {\"community\": \"hive-123456\", \"account\": \"author\", \"permlink\": \"post\", \"notes\": \"reason\"}]\n * - Authority: Posting key\n *\n * **Mute vs Unmute:**\n * - mute: true - Mutes the post (hides from community feed)\n * - mute: false - Unmutes the post (restores to community feed)\n *\n * **Permission:**\n * - Only community moderators and admins can mute/unmute posts\n * - Attempting to mute without permission will fail with an error\n *\n * @example\n * ```typescript\n * const mutePostMutation = useMutePost(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Mute a post\n * mutePostMutation.mutate({\n * community: 'hive-123456',\n * author: 'alice',\n * permlink: 'my-post',\n * notes: 'Violates community guidelines',\n * mute: true\n * });\n *\n * // Unmute a post\n * mutePostMutation.mutate({\n * community: 'hive-123456',\n * author: 'alice',\n * permlink: 'my-post',\n * notes: 'Resolved after editing',\n * mute: false\n * });\n * ```\n */\nexport function useMutePost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"mutePost\"],\n username,\n ({ community, author, permlink, notes, mute }) => [\n buildMutePostOp(username!, community, author, permlink, notes, mute)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n // Invalidate specific post cache to update mute status\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n // Invalidate community data\n [\"community\", \"single\", variables.community],\n // Invalidate community feed/posts (matches all sort orders, limits, observers)\n {\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"posts-ranked\" &&\n key[3] === variables.community\n );\n }\n }\n ];\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'sync' }\n );\n}\n","import { useBroadcastMutation, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSetRoleOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Community, CommunityTeam } from \"../types\";\n\n/**\n * Payload for setting a user's role in a community.\n */\nexport interface SetCommunityRolePayload {\n /** Account to set role for */\n account: string;\n /** Role name (e.g., \"admin\", \"mod\", \"member\", \"guest\") */\n role: string;\n}\n\n/**\n * React Query mutation hook for setting a user's role in a community.\n *\n * This mutation broadcasts a setRole operation to the Hive blockchain,\n * updating the role of a community member. Only users with appropriate\n * permissions (community owner/admin) can set roles.\n *\n * @param community - Community name (e.g., \"hive-123456\")\n * @param username - The username setting the role (required for broadcast, must have permission)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to refetch updated team member list\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"setRole\", {\"community\": \"hive-123456\", \"account\": \"user\", \"role\": \"mod\"}]\n * - Authority: Posting key\n *\n * **Role Types:**\n * - \"owner\" - Community owner (full permissions)\n * - \"admin\" - Administrator (can manage settings and team)\n * - \"mod\" - Moderator (can mute posts/users)\n * - \"member\" - Regular member (no special permissions)\n * - \"guest\" - Remove user from team (empty string also works)\n *\n * @example\n * ```typescript\n * const setRoleMutation = useSetCommunityRole('hive-123456', username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Set a user as moderator\n * setRoleMutation.mutate({\n * account: 'alice',\n * role: 'mod'\n * });\n *\n * // Remove a user from the team\n * setRoleMutation.mutate({\n * account: 'bob',\n * role: 'guest'\n * });\n * ```\n */\nexport function useSetCommunityRole(\n community: string,\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"set-role\", community],\n username,\n ({ account, role }) => [\n buildSetRoleOp(username!, community, account, role)\n ],\n async (_result: any, variables) => {\n // Optimistic team update in community cache\n // Query key is [\"community\",\"single\",name,observer] — observer varies, so use predicate\n const qc = getQueryClient();\n qc.setQueriesData(\n { queryKey: QueryKeys.communities.singlePrefix(community) },\n (prev) => {\n if (!prev) return prev;\n const team: CommunityTeam = [...(prev.team ?? [])];\n const idx = team.findIndex(([name]) => name === variables.account);\n if (idx >= 0) {\n team[idx] = [team[idx][0], variables.role, team[idx][2] ?? \"\"];\n } else {\n team.push([variables.account, variables.role, \"\"]);\n }\n return { ...prev, team };\n }\n );\n\n // Cache invalidation — prefix-match all community single queries + context for affected user\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n [...QueryKeys.communities.singlePrefix(community)],\n QueryKeys.communities.context(variables.account, community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUpdateCommunityOp, type CommunityProps } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Community } from \"../types\";\n\n/**\n * Payload for updating community properties.\n * Matches the CommunityProps interface from builders.\n */\nexport type UpdateCommunityPayload = CommunityProps;\n\n/**\n * React Query mutation hook for updating community properties.\n *\n * This mutation broadcasts an updateProps operation to the Hive blockchain,\n * modifying the community's metadata and settings. Only community admins\n * can update community properties.\n *\n * @param community - Community name (e.g., \"hive-123456\")\n * @param username - The username updating the community (required for broadcast, must be admin)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to refetch updated properties\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"updateProps\", {\"community\": \"hive-123456\", \"props\": {...}}]\n * - Authority: Posting key\n *\n * **Properties:**\n * - title - Community display title\n * - about - Short description/tagline\n * - lang - Primary language code (e.g., \"en\")\n * - description - Full community description (markdown supported)\n * - flag_text - Custom text shown when flagging posts\n * - is_nsfw - Whether community contains NSFW content\n *\n * @example\n * ```typescript\n * const updateMutation = useUpdateCommunity('hive-123456', username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Update community properties\n * updateMutation.mutate({\n * title: 'My Awesome Community',\n * about: 'A place for awesome people',\n * lang: 'en',\n * description: '# Welcome\\nThis is our community description',\n * flag_text: 'Please explain why this content violates our rules',\n * is_nsfw: false\n * });\n * ```\n */\nexport function useUpdateCommunity(\n community: string,\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"update\", community],\n username,\n (props) => [\n buildUpdateCommunityOp(username!, community, props)\n ],\n async (_result: any, variables) => {\n // Optimistic property merge in community cache\n // Query key is [\"community\",\"single\",name,observer] — observer varies, so use predicate\n const qc = getQueryClient();\n qc.setQueriesData(\n { queryKey: QueryKeys.communities.singlePrefix(community) },\n (prev) => {\n if (!prev) return prev;\n return { ...prev, ...(variables as unknown as Partial) };\n }\n );\n\n // Cache invalidation — prefix-match all community single queries\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n [...QueryKeys.communities.singlePrefix(community)]\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommunityRegistrationOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for community rewards registration.\n */\nexport interface CommunityRewardsRegisterPayload {\n /** Community account name (usually the community creator's account) */\n name: string;\n}\n\n/**\n * React Query mutation hook for registering to receive community rewards.\n *\n * This mutation broadcasts a custom_json operation to register a community\n * account to receive Ecency Points rewards for community activity.\n *\n * @param username - The username registering for community rewards (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to update registration status\n * - Invalidates points balance to reflect potential initial rewards\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"ecency_registration\"\n * - JSON: {\"name\": \"communityname\"}\n * - Authority: Active key (required for registration)\n *\n * **Purpose:**\n * - Enables communities to receive Ecency Points for activity\n * - One-time registration per community\n * - Can only be done by the community owner/creator\n *\n * @example\n * ```typescript\n * const registerMutation = useRegisterCommunityRewards(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Register community for rewards\n * registerMutation.mutate({\n * name: 'hive-123456'\n * });\n * ```\n */\nexport function useRegisterCommunityRewards(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"registerRewards\"],\n username,\n ({ name }) => [\n buildCommunityRegistrationOp(name)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n // Invalidate community cache to update registration status\n [...QueryKeys.communities.singlePrefix(variables.name)],\n // Invalidate points balance\n [...QueryKeys.points._prefix(username!)],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildPinPostOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface PinPostPayload {\n community: string;\n account: string;\n permlink: string;\n pin: boolean;\n}\n\nexport function usePinPost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"pin-post\"],\n username,\n ({ community, account, permlink, pin }) => [\n buildPinPostOp(username!, community, account, permlink, pin)\n ],\n async (_result, variables) => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.posts.entry(`/@${variables.account}/${variables.permlink}`),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Communities } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getCommunitiesQueryOptions(\n sort: string,\n query?: string,\n limit = 100,\n observer: string | undefined = undefined,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.list(sort, query ?? \"\", limit),\n enabled,\n queryFn: async () => {\n const response = await callRPC(\"bridge.list_communities\", {\n last: \"\",\n limit,\n sort: sort === \"hot\" ? \"rank\" : sort,\n query: query ? query : null,\n observer,\n });\n return (\n response\n ? sort === \"hot\"\n ? response.sort(() => Math.random() - 0.5)\n : response\n : []\n ) as Communities;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { CommunityRole } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getCommunityContextQueryOptions(\n username: string | undefined,\n communityName: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.context(username!, communityName!),\n enabled: !!username && !!communityName,\n queryFn: async () => {\n const response = await callRPC(\"bridge.get_community_context\", {\n account: username,\n name: communityName,\n });\n\n return {\n role: response?.role ?? \"guest\",\n subscribed: response?.subscribed ?? false,\n } satisfies {\n role: CommunityRole;\n subscribed: boolean;\n };\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Community } from \"../types/community\";\nimport { getCommunity } from \"@/modules/bridge\";\nimport { QueryKeys } from \"@/modules/core\";\n\nexport function getCommunityQueryOptions(\n name: string | undefined,\n observer: string | undefined = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.single(name, observer),\n enabled: enabled && !!name,\n queryFn: async () => getCommunity(name ?? \"\", observer) as Promise,\n });\n}\n","import {\n InfiniteData,\n infiniteQueryOptions,\n queryOptions\n} from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Subscription } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * hivemind caps `bridge.list_subscribers` at 100 rows per call, regardless of a\n * larger requested limit.\n */\nexport const SUBSCRIBERS_PAGE_SIZE = 100;\n\ntype SubscribersPage = Subscription[];\ntype SubscribersCursor = string | null;\n\n/**\n * Fetches one page of subscribers.\n *\n * `last` is omitted on the first page rather than passed as an empty string:\n * hivemind reads `\"\"` as a real cursor positioned before the first account and\n * returns zero rows.\n */\nasync function fetchSubscribersPage(\n communityName: string,\n last: SubscribersCursor\n): Promise {\n const response = await callRPC(\"bridge.list_subscribers\", {\n community: communityName,\n limit: SUBSCRIBERS_PAGE_SIZE,\n ...(last ? { last } : {})\n });\n return (response as Subscription[] | null) ?? [];\n}\n\n/**\n * Get the first page of subscribers for a community.\n *\n * @deprecated Returns at most {@link SUBSCRIBERS_PAGE_SIZE} subscribers, which\n * for most communities is a small fraction of the total while looking like the\n * complete list. Prefer {@link getCommunitySubscribersInfiniteQueryOptions}\n * unless a single page is genuinely all that is wanted.\n *\n * @param communityName - The community name (e.g., \"hive-123456\")\n */\nexport function getCommunitySubscribersQueryOptions(communityName: string) {\n return queryOptions({\n queryKey: QueryKeys.communities.subscribers(communityName),\n queryFn: async () => fetchSubscribersPage(communityName, null),\n staleTime: 60000\n });\n}\n\n/**\n * Get all subscribers for a community, paged with hivemind's `last` cursor.\n *\n * @param communityName - The community name (e.g., \"hive-123456\")\n */\nexport function getCommunitySubscribersInfiniteQueryOptions(\n communityName: string\n) {\n return infiniteQueryOptions<\n SubscribersPage,\n Error,\n InfiniteData,\n string[],\n SubscribersCursor\n >({\n queryKey: QueryKeys.communities.subscribersInfinite(communityName),\n initialPageParam: null as SubscribersCursor,\n queryFn: async ({ pageParam }: { pageParam: SubscribersCursor }) =>\n fetchSubscribersPage(communityName, pageParam),\n // The cursor is the previous page's last account name. A short page is the\n // end of the list.\n getNextPageParam: (lastPage: SubscribersPage): SubscribersCursor =>\n lastPage?.length >= SUBSCRIBERS_PAGE_SIZE\n ? lastPage[lastPage.length - 1]?.[0] ?? null\n : null,\n staleTime: 60000\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountNotification } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype NotifPage = AccountNotification[];\ntype NotifCursor = number | null;\n\n/**\n * Get account notifications for a community (bridge API)\n *\n * @param account - The account/community name\n * @param limit - Number of notifications per page\n */\nexport function getAccountNotificationsInfiniteQueryOptions(\n account: string,\n limit: number\n) {\n return infiniteQueryOptions<\n NotifPage,\n Error,\n InfiniteData,\n (string | number)[],\n NotifCursor\n >({\n queryKey: QueryKeys.communities.accountNotifications(account, limit),\n initialPageParam: null as NotifCursor,\n\n // Errors are deliberately not caught. Returning [] on failure made an RPC\n // outage indistinguishable from an empty log: `isError` never became true,\n // so consumers rendered \"no activity\" for a failed request, and a failed\n // page produced no cursor and silently ended pagination. Let React Query\n // own the error so `isError` and retry behave normally.\n queryFn: async ({ pageParam }: { pageParam: NotifCursor }) => {\n const response = await callRPC(\"bridge.account_notifications\", {\n account,\n limit,\n last_id: pageParam ?? undefined,\n });\n return (response as AccountNotification[] | null) ?? [];\n },\n\n // A short page is the end of the log. Keying on \"empty\" alone would also\n // treat a truncated page as the end.\n getNextPageParam: (lastPage: NotifPage): NotifCursor =>\n lastPage?.length >= limit ? lastPage[lastPage.length - 1].id : null,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { RewardedCommunity } from \"../types/rewarded-community\";\n\nexport function getRewardedCommunitiesQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.communities.rewarded(),\n queryFn: async () => {\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/rewarded-communities\",\n {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch rewarded communities: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","export enum ROLES {\n OWNER = \"owner\",\n ADMIN = \"admin\",\n MOD = \"mod\",\n MEMBER = \"member\",\n GUEST = \"guest\",\n MUTED = \"muted\",\n}\n\nexport const roleMap: Record = {\n [ROLES.OWNER]: [\n ROLES.ADMIN,\n ROLES.MOD,\n ROLES.MEMBER,\n ROLES.GUEST,\n ROLES.MUTED,\n ],\n [ROLES.ADMIN]: [ROLES.MOD, ROLES.MEMBER, ROLES.GUEST, ROLES.MUTED],\n [ROLES.MOD]: [ROLES.MEMBER, ROLES.GUEST, ROLES.MUTED],\n};\n\nexport type CommunityTeam = Array>;\nexport type CommunityRole = (typeof ROLES)[keyof typeof ROLES]; // \"owner\" | \"member\" | ...\nexport type CommunityType = \"Topic\" | \"Journal\" | \"Council\";\n\nexport interface Community {\n about: string;\n admins?: string[];\n avatar_url: string;\n created_at: string;\n description: string;\n flag_text: string;\n id: number;\n is_nsfw: boolean;\n lang: string;\n name: string;\n num_authors: number;\n num_pending: number;\n subscribers: number;\n sum_pending: number;\n settings?: any;\n team: CommunityTeam;\n title: string;\n type_id: number;\n}\n\nexport type Communities = Community[];\n","import { CommunityRole, CommunityType, ROLES } from \"../types\";\n\nexport function getCommunityType(name: string, type_id: number): CommunityType {\n if (name.startsWith(\"hive-3\") || type_id === 3) return \"Council\";\n if (name.startsWith(\"hive-2\") || type_id === 2) return \"Journal\";\n return \"Topic\";\n}\n\nexport function getCommunityPermissions({\n communityType,\n userRole,\n subscribed,\n}: {\n communityType: CommunityType;\n userRole: CommunityRole;\n subscribed: boolean;\n}) {\n const canPost = (() => {\n if (userRole === ROLES.MUTED) return false;\n\n if (communityType === \"Topic\") return true;\n\n // Journal & Council\n return [ROLES.OWNER, ROLES.ADMIN, ROLES.MOD, ROLES.MEMBER].includes(\n userRole\n );\n })();\n\n const canComment = (() => {\n if (userRole === ROLES.MUTED) return false;\n\n switch (communityType) {\n case \"Topic\":\n return true;\n case \"Journal\":\n return userRole !== ROLES.GUEST || subscribed;\n case \"Council\":\n return canPost;\n }\n })();\n\n const isModerator = [ROLES.OWNER, ROLES.ADMIN, ROLES.MOD].includes(userRole);\n\n return {\n canPost,\n canComment,\n isModerator,\n };\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getNotificationsUnreadCountQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.unreadCount(activeUsername),\n queryFn: async () => {\n // fetchQuery and refetch() ignore `enabled`, so a synthetic 0 returned here would be\n // cached as a real count. Same as the settings query: no code, no result.\n if (!code) {\n throw new Error(\"Missing access token\");\n }\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/notifications/unread`,\n {\n method: \"POST\",\n body: JSON.stringify({ code }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n const data = (await response.json()) as { count: number };\n return data.count;\n },\n enabled: !!activeUsername && !!code,\n // Placeholder, not initialData: initial data is stamped as fetched at creation,\n // so under a non-zero staleTime it counted as a fresh 0. fetchQuery returned it\n // without a request and observers skipped the fetch on mount until the next\n // refetchInterval. A placeholder still gives observers a number while loading.\n placeholderData: 0,\n refetchInterval: 60000,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { NotificationFilter } from \"../enums\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { ApiNotification } from \"../types\";\n\nexport function getNotificationsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n filter: NotificationFilter | undefined = undefined\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.notifications.list(activeUsername, filter),\n queryFn: async ({ pageParam }) => {\n if (!code) {\n return [];\n }\n const data = {\n code,\n filter,\n since: pageParam,\n user: undefined,\n };\n\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/notifications\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n }\n );\n\n if (!response.ok) {\n return [];\n }\n\n try {\n return (await response.json()) as ApiNotification[];\n } catch {\n return [];\n }\n },\n enabled: !!activeUsername && !!code,\n // No initialData here: an empty seed counts as fresh for the whole staleTime,\n // so consumers that only read `data` would render an empty list with no fetch.\n initialPageParam: \"\",\n getNextPageParam: (lastPage) => lastPage?.[lastPage.length - 1]?.id ?? \"\",\n refetchOnMount: true,\n });\n}\n","export enum NotificationFilter {\n VOTES = \"rvotes\",\n MENTIONS = \"mentions\",\n FAVORITES = \"nfavorites\",\n BOOKMARKS = \"nbookmarks\",\n FOLLOWS = \"follows\",\n REPLIES = \"replies\",\n REBLOGS = \"reblogs\",\n TRANSFERS = \"transfers\",\n DELEGATIONS = \"delegations\",\n PAYOUTS = \"payouts\",\n SCHEDULED_PUBLISHED = \"scheduled_published\",\n // Filter path is plural while the notification `type` string is singular\n // (`account_update`) - enotify routes on the plural form.\n ACCOUNT_UPDATES = \"account_updates\",\n WEEKLY_EARNINGS = \"weekly_earnings\",\n TAGS = \"tags\",\n}\n","// Values are enotify's ACTIVITY_MAIN_TYPE_* ints and are validated server-side at\n// device registration, so they must match enotify constants.py exactly. Note payouts\n// is 19: the original 16 is commented out upstream and must not be reused.\nexport enum NotifyTypes {\n VOTE = 1,\n MENTION = 2,\n FOLLOW = 3,\n COMMENT = 4,\n RE_BLOG = 5,\n TRANSFERS = 6,\n DELEGATIONS = 10,\n FAVORITES = 13,\n BOOKMARKS = 15,\n PAYOUTS = 19,\n ACCOUNT_UPDATE = 20,\n WEEKLY_EARNINGS = 21,\n SCHEDULED_PUBLISHED = 22,\n TAGS = 23,\n ALLOW_NOTIFY = \"ALLOW_NOTIFY\",\n}\n\nexport const ALL_NOTIFY_TYPES = [\n NotifyTypes.VOTE,\n NotifyTypes.MENTION,\n NotifyTypes.FOLLOW,\n NotifyTypes.COMMENT,\n NotifyTypes.RE_BLOG,\n NotifyTypes.TRANSFERS,\n NotifyTypes.DELEGATIONS,\n NotifyTypes.FAVORITES,\n NotifyTypes.BOOKMARKS,\n NotifyTypes.PAYOUTS,\n NotifyTypes.ACCOUNT_UPDATE,\n NotifyTypes.WEEKLY_EARNINGS,\n NotifyTypes.SCHEDULED_PUBLISHED,\n NotifyTypes.TAGS,\n] as const;\n\nexport enum NotificationViewType {\n ALL = \"All\",\n UNREAD = \"Unread\",\n READ = \"Read\",\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ApiNotificationSetting } from \"../types\";\nimport { ALL_NOTIFY_TYPES } from \"../enums\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport function getNotificationsSettingsQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n initialMuted?: boolean\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.settings(activeUsername),\n queryFn: async () => {\n let token = activeUsername + \"-web\";\n if (!code) {\n throw new Error(\"Missing access token\");\n }\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/detail-device\",\n {\n body: JSON.stringify({\n code,\n username: activeUsername,\n token,\n }),\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to fetch notification settings: ${response.status}`);\n }\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n refetchOnMount: false,\n initialData: () => {\n return {\n status: 0,\n system: \"web\",\n allows_notify: 0,\n notify_types: initialMuted ? [] : ([...ALL_NOTIFY_TYPES] as number[]),\n } as ApiNotificationSetting;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { Announcement } from \"../types/announcement\";\n\nexport function getAnnouncementsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.notifications.announcements(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/announcements\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch announcements: ${response.status}`);\n }\n\n const data = await response.json() as Announcement[];\n return data || [];\n },\n staleTime: 3_600_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { Spotlight } from \"../types/spotlight\";\n\n// `_accessToken` is accepted for call-site parity with mobile (which passes one) but is\n// intentionally unused: the spotlights endpoint is anonymous and only filters by date window.\nexport function getSpotlightsQueryOptions(_accessToken?: string) {\n return queryOptions({\n queryKey: QueryKeys.notifications.spotlights(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/spotlights\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch spotlights: ${response.status}`);\n }\n\n const data = (await response.json()) as Spotlight[];\n return data || [];\n },\n staleTime: 3_600_000,\n });\n}\n","import { useMutation, QueryKey, InfiniteData } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { markNotifications } from \"@/modules/private-api/requests\";\nimport { ApiNotification } from \"../types\";\n\ntype NotificationPage = ApiNotification[];\ntype InfiniteNotificationData = InfiniteData;\n\nfunction markNotificationRead(item: ApiNotification, id?: string): ApiNotification {\n return {\n ...item,\n read: (!id || id === item.id ? 1 : item.read) as 0 | 1,\n };\n}\n\nfunction isInfiniteData(data: unknown): data is InfiniteNotificationData {\n return (\n typeof data === \"object\" &&\n data !== null &&\n \"pages\" in data &&\n \"pageParams\" in data &&\n Array.isArray((data as InfiniteNotificationData).pages)\n );\n}\n\n/**\n * Hook to mark notifications as read with optimistic updates\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful mutation, receives unread count\n * @param onError - Optional callback on error\n *\n * @returns Mutation hook that accepts { id?: string }\n *\n * @example\n * ```typescript\n * const markAsRead = useMarkNotificationsRead(username, code);\n *\n * // Mark specific notification\n * markAsRead.mutate({ id: \"notification-id\" });\n *\n * // Mark all notifications (omit id)\n * markAsRead.mutate({});\n * ```\n */\nexport function useMarkNotificationsRead(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: (unreadCount?: number) => void,\n onError?: (e: Error) => void\n) {\n const queryClient = getQueryClient();\n\n return useMutation({\n mutationKey: [\"notifications\", \"mark-read\", username],\n\n mutationFn: async ({ id }: { id?: string }) => {\n if (!username || !code) {\n if (process.env.NODE_ENV !== \"production\") {\n console.warn(\"[SDK][Notifications] – missing auth for markNotifications\");\n }\n return;\n }\n return markNotifications(code, id);\n },\n\n // Optimistic update: Immediately mark notifications as read in cache\n onMutate: async ({ id }: { id?: string }) => {\n // Skip optimistic updates when auth is not available\n if (!username || !code) {\n return { previousData: [] };\n }\n\n // Cancel any outgoing refetches to prevent overwriting optimistic update\n await queryClient.cancelQueries({ queryKey: QueryKeys.notifications._prefix });\n\n // Snapshot current state for rollback\n const previousData: Array<[QueryKey, unknown]> = [];\n\n // Update infinite notification list queries (pages structure)\n const infiniteQueries = queryClient.getQueriesData({\n queryKey: QueryKeys.notifications._prefix,\n predicate: (query) => {\n const data = query.state.data;\n return isInfiniteData(data);\n },\n });\n\n infiniteQueries.forEach(([queryKey, data]) => {\n if (data && isInfiniteData(data)) {\n previousData.push([queryKey, data]);\n\n const updatedData: InfiniteNotificationData = {\n ...data,\n pages: data.pages.map((page) =>\n page.map((item) => markNotificationRead(item, id))\n ),\n };\n\n queryClient.setQueryData(queryKey, updatedData);\n }\n });\n\n // Optimistically decrement unread count\n const unreadKey = QueryKeys.notifications.unreadCount(username);\n const currentUnread = queryClient.getQueryData(unreadKey);\n if (typeof currentUnread === \"number\" && currentUnread > 0) {\n previousData.push([unreadKey, currentUnread]);\n\n if (!id) {\n // Mark all: set to 0\n queryClient.setQueryData(unreadKey, 0);\n } else {\n // Mark single: only decrement if the notification is currently unread\n const isUnread = infiniteQueries.some(([, d]) =>\n d?.pages.some((page) =>\n page.some((item) => item.id === id && item.read === 0)\n )\n );\n if (isUnread) {\n queryClient.setQueryData(unreadKey, currentUnread - 1);\n }\n }\n }\n\n // Return context for rollback\n return { previousData };\n },\n\n onSuccess: (response) => {\n // Extract unread count from response if available\n const unreadCount = typeof response === \"object\" && response !== null\n ? (response as { unread?: number }).unread\n : undefined;\n\n // Update unread count cache with server value\n if (typeof unreadCount === \"number\") {\n queryClient.setQueryData(\n QueryKeys.notifications.unreadCount(username),\n unreadCount\n );\n }\n\n onSuccess?.(unreadCount);\n },\n\n // Rollback optimistic update on error\n onError: (error, _variables, context) => {\n // Restore previous state\n if (context?.previousData) {\n context.previousData.forEach(([queryKey, data]) => {\n queryClient.setQueryData(queryKey, data);\n });\n }\n\n onError?.(error as Error);\n },\n\n // Always refetch after mutation settles\n onSettled: () => {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.notifications._prefix,\n });\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSetLastReadOps } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface SetLastReadPayload {\n date?: string;\n}\n\nexport function useSetLastRead(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"notifications\", \"set-last-read\"],\n username,\n ({ date }) => buildSetLastReadOps(username!, date),\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.notifications.unreadCount(username),\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Proposal } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get a single proposal by ID\n */\nexport function getProposalQueryOptions(id: number) {\n return queryOptions({\n queryKey: [\"proposals\", \"proposal\", id],\n queryFn: async () => {\n const r = await callRPC(\"condenser_api.find_proposals\", [[id]]);\n const proposal = r[0];\n\n // Determine proposal status based on dates\n if (new Date(proposal.start_date) < new Date() && new Date(proposal.end_date) >= new Date()) {\n proposal.status = \"active\";\n } else if (new Date(proposal.end_date) < new Date()) {\n proposal.status = \"expired\";\n } else {\n proposal.status = \"inactive\";\n }\n\n return proposal as Proposal;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Proposal } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get all proposals, sorted with expired proposals at the end\n */\nexport function getProposalsQueryOptions() {\n return queryOptions({\n queryKey: [\"proposals\", \"list\"],\n queryFn: async () => {\n const response = (await callRPC(\"database_api.list_proposals\", {\n start: [-1],\n limit: 500,\n order: \"by_total_votes\",\n order_direction: \"descending\",\n status: \"all\",\n })) as { proposals: Proposal[] };\n\n const proposals = response.proposals;\n const expired = proposals.filter((x) => x.status === \"expired\");\n const others = proposals.filter((x) => x.status !== \"expired\");\n\n return [...others, ...expired];\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ProposalVote } from \"../types\";\nimport { FullAccount } from \"@/modules/accounts\";\nimport { parseAccounts } from \"@/modules/accounts/utils\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n// One page = array of enriched vote rows\nexport type ProposalVoteRow = {\n id: number;\n voter: string;\n voterAccount: FullAccount;\n};\n\ntype Cursor = string; // we paginate by last voter name\n\n/**\n * Get proposal votes with pagination and enriched voter account data\n *\n * @param proposalId - The proposal ID\n * @param voter - Starting voter for pagination\n * @param limit - Number of votes per page\n */\nexport function getProposalVotesInfiniteQueryOptions(\n proposalId: number,\n voter: string,\n limit: number\n) {\n return infiniteQueryOptions<\n ProposalVoteRow[],\n Error,\n InfiniteData,\n (string | number)[],\n Cursor\n >({\n queryKey: [\"proposals\", \"votes\", proposalId, voter, limit],\n initialPageParam: voter as Cursor,\n refetchOnMount: true,\n staleTime: 0, // Always refetch on mount\n\n queryFn: async ({ pageParam }: { pageParam: Cursor }) => {\n const startParam = pageParam ?? voter;\n\n const response = (await callRPC(\"condenser_api.list_proposal_votes\", [\n [proposalId, startParam],\n limit,\n \"by_proposal_voter\",\n ])) as ProposalVote[];\n\n const list = response\n .filter((x) => x.proposal?.proposal_id === proposalId)\n .map((x) => ({ id: x.id, voter: x.voter }));\n\n const rawAccounts = await callRPC(\"condenser_api.get_accounts\", [list.map((l) => l.voter)]);\n const accounts = parseAccounts(rawAccounts);\n\n const page: ProposalVoteRow[] = list.map((i) => ({\n ...i,\n voterAccount: accounts.find((a) => i.voter === a.name)!,\n }));\n\n return page;\n },\n\n getNextPageParam: (lastPage: ProposalVoteRow[]): Cursor | undefined => {\n const last = lastPage?.[lastPage.length - 1];\n return last?.voter ?? undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ProposalVote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Fetches ALL proposal votes for a specific user in a single query.\n * Much more efficient than querying each proposal individually.\n * Uses \"by_voter_proposal\" order to get all votes by a user.\n */\nexport function getUserProposalVotesQueryOptions(voter: string) {\n return queryOptions({\n queryKey: [\"proposals\", \"votes\", \"by-user\", voter],\n enabled: !!voter && voter !== \"\",\n staleTime: 60 * 1000, // Cache for 1 minute\n queryFn: async () => {\n if (!voter || voter === \"\") {\n return [];\n }\n\n const response = (await callRPC(\"database_api.list_proposal_votes\", {\n start: [voter],\n limit: 1000,\n order: \"by_voter_proposal\",\n order_direction: \"ascending\",\n status: \"votable\",\n })) as { proposal_votes: ProposalVote[] };\n\n // Filter to only this user's votes (API might return votes after this user alphabetically)\n const userVotes = (response.proposal_votes || []).filter((vote) => vote.voter === voter);\n\n return userVotes;\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildProposalVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for voting on proposals.\n */\nexport interface ProposalVotePayload {\n /** Array of proposal IDs to vote on */\n proposalIds: number[];\n /** True to approve, false to disapprove */\n approve: boolean;\n}\n\n/**\n * React Query mutation hook for voting on Hive proposals.\n *\n * This mutation broadcasts an update_proposal_votes operation to vote on\n * one or more proposals in the Hive Decentralized Fund (HDF).\n *\n * @param username - The username voting on proposals (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 150) if adapter.recordActivity is available\n * - Invalidates proposal list cache to show updated vote status\n * - Invalidates voter's proposal votes cache\n *\n * **Multiple Proposals:**\n * - You can vote on multiple proposals in a single transaction\n * - All proposals receive the same vote (approve or disapprove)\n * - Proposal IDs are integers, not strings\n *\n * **Vote Types:**\n * - approve: true - Vote in favor of the proposal(s)\n * - approve: false - Remove your vote from the proposal(s)\n *\n * @example\n * ```typescript\n * const proposalVoteMutation = useProposalVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Approve a single proposal\n * proposalVoteMutation.mutate({\n * proposalIds: [123],\n * approve: true\n * });\n *\n * // Approve multiple proposals\n * proposalVoteMutation.mutate({\n * proposalIds: [123, 124, 125],\n * approve: true\n * });\n *\n * // Remove vote from a proposal\n * proposalVoteMutation.mutate({\n * proposalIds: [123],\n * approve: false\n * });\n * ```\n */\nexport function useProposalVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"proposals\", \"vote\"],\n username,\n ({ proposalIds, approve }) => [\n buildProposalVoteOp(username!, proposalIds, approve)\n ],\n async (result: any) => {\n // Wrap post-broadcast side-effects in try-catch to prevent propagating errors\n try {\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(150, txId, result?.block_num).catch((error) => {\n console.debug(\"[SDK][Proposals][useProposalVote] recordActivity failed\", {\n activityType: 150,\n blockNum: result?.block_num,\n transactionId: txId,\n error\n });\n });\n }\n\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.proposals.list(),\n QueryKeys.proposals.votesByUser(username!)\n ]);\n }\n } catch (error) {\n // Log but don't rethrow - don't fail mutation due to side-effect errors\n console.warn('[useProposalVote] Post-broadcast side-effect failed:', error);\n }\n },\n auth,\n 'active', // Use active authority for proposal votes (required by blockchain)\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildProposalCreateOp, type ProposalCreatePayload } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport { type ProposalCreatePayload };\n\nexport function useProposalCreate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"proposals\", \"create\"],\n username,\n (payload) => [\n buildProposalCreateOp(username!, payload)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.proposals.list(),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { DelegatedVestingShare } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get vesting delegations for an account with infinite scroll support\n *\n * @param username - The account username\n * @param limit - Maximum number of results per page (default: 50)\n */\nexport function getVestingDelegationsQueryOptions(\n username?: string,\n limit = 50\n) {\n return infiniteQueryOptions({\n queryKey: [\"wallet\", \"vesting-delegations\", username, limit],\n initialPageParam: \"\" as string,\n queryFn: async ({ pageParam }: { pageParam: string }) => {\n // Request one extra item on subsequent pages to handle inclusive cursor\n const fetchLimit = pageParam ? limit + 1 : limit;\n\n const result = await callRPC(\"condenser_api.get_vesting_delegations\", [\n username,\n pageParam || \"\",\n fetchLimit,\n ]) as DelegatedVestingShare[];\n\n // Filter out duplicate first item on subsequent pages\n // Hive API is inclusive of the 'from' cursor\n if (pageParam && result.length > 0 && result[0]?.delegatee === pageParam) {\n // Return at most limit items after removing the duplicate\n return result.slice(1, limit + 1);\n }\n\n return result;\n },\n getNextPageParam: (lastPage: DelegatedVestingShare[]) => {\n // If we got fewer results than limit, we've reached the end\n if (!lastPage || lastPage.length < limit) {\n return undefined;\n }\n\n // Return the last delegatee as cursor for next page\n const lastDelegation = lastPage[lastPage.length - 1];\n return lastDelegation?.delegatee;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { AccountDelegations } from \"../types\";\nimport { callREST } from \"@/modules/core/hive-tx\";\n\n/**\n * Account vesting delegations via the HAF balance-api REST endpoint\n * (`/balance-api/accounts/{account-name}/delegations`).\n *\n * Unlike `condenser_api.get_vesting_delegations` (see\n * {@link getHivePowerDelegatesInfiniteQueryOptions}), this returns the\n * complete outgoing AND incoming lists in a single request, with `callREST`\n * handling multi-node failover. `amount` is raw vests (vests * 10^6).\n */\nexport function getAccountDelegationsQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"assets\", \"account-delegations\", username],\n enabled: !!username,\n queryFn: ({ signal }) =>\n callREST(\n \"balance\",\n \"/accounts/{account-name}/delegations\",\n { \"account-name\": username },\n undefined,\n undefined,\n signal\n ) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { VestingDelegationExpiration } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get expiring vesting delegations for an account.\n *\n * When a delegation is removed (set to 0 VESTS), the HP doesn't return\n * immediately — it enters a 5-day cooldown. This query fetches those\n * in-flight expirations so they can be shown alongside active delegations.\n *\n * Uses database_api.find_vesting_delegation_expirations which returns\n * vesting_shares as NAI asset objects ({amount, nai, precision}).\n *\n * @param username - The delegator account username\n */\nexport function getVestingDelegationExpirationsQueryOptions(username?: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"vesting-delegation-expirations\", username],\n queryFn: async () => {\n if (!username) return [];\n const result = await callRPC(\"database_api.find_vesting_delegation_expirations\", { account: username }) as { delegations: VestingDelegationExpiration[] };\n return result.delegations;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConversionRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HBD to HIVE conversion requests for an account\n *\n * @param account - The account username\n */\nexport function getConversionRequestsQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"conversion-requests\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_conversion_requests\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.requestid - b.requestid),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CollateralizedConversionRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get collateralized HIVE to HBD conversion requests for an account\n *\n * @param account - The account username\n */\nexport function getCollateralizedConversionRequestsQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"collateralized-conversion-requests\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_collateralized_conversion_requests\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.requestid - b.requestid),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { SavingsWithdrawRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get pending savings withdrawal requests for an account\n *\n * @param account - The account username\n */\nexport function getSavingsWithdrawFromQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"savings-withdraw\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_savings_withdraw_from\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.request_id - b.request_id),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { WithdrawRoute } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get power down (vesting withdrawal) routes for an account\n *\n * @param account - The account username\n */\nexport function getWithdrawRoutesQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"withdraw-routes\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_withdraw_routes\", [\n account,\n \"outgoing\",\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OpenOrdersData } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get open market orders for an account\n *\n * @param user - The account username\n */\nexport function getOpenOrdersQueryOptions(user: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"open-orders\", user],\n queryFn: () =>\n callRPC(\"condenser_api.get_open_orders\", [\n user,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.orderid - b.orderid),\n enabled: !!user,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { RcDirectDelegation, RcDirectDelegationsResponse } from \"../types/rc-direct-delegation\";\n\ntype RcPage = RcDirectDelegation[];\ntype RcCursor = string | null;\n\n/**\n * Get outgoing RC delegations for an account\n *\n * @param username - Account name to get delegations for\n * @param limit - Number of delegations per page\n */\nexport function getOutgoingRcDelegationsInfiniteQueryOptions(username: string, limit = 100) {\n return infiniteQueryOptions<\n RcPage,\n Error,\n InfiniteData,\n (string | number)[],\n RcCursor\n >({\n queryKey: [\"wallet\", \"outgoing-rc-delegations\", username, limit],\n initialPageParam: null as RcCursor,\n\n queryFn: async ({ pageParam }: { pageParam: RcCursor }) => {\n const response = await callRPC(\"rc_api.list_rc_direct_delegations\", {\n start: [username, pageParam ?? \"\"],\n limit,\n })\n .then((r: any) => r as RcDirectDelegationsResponse);\n\n let delegations: RcDirectDelegation[] = response.rc_direct_delegations || [];\n\n // Filter out the starting delegation when paginating\n if (pageParam) {\n delegations = delegations.filter((delegation) => delegation.to !== pageParam);\n }\n\n return delegations;\n },\n\n getNextPageParam: (lastPage: RcPage): RcCursor =>\n lastPage.length === limit ? lastPage[lastPage.length - 1].to : null,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { IncomingRcResponse } from \"../types\";\n\nexport function getIncomingRcQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"wallet\", \"incoming-rc\", username],\n enabled: !!username,\n queryFn: async (): Promise => {\n if (!username) {\n throw new Error(\"[SDK][Wallet] - Missing username for incoming RC\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/received-rc/${username}`\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch incoming RC: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import type { AccountDelegations } from \"../types/account-delegations\";\nimport type { ReceivedVestingShare } from \"../types/received-vesting-share\";\n\n/**\n * Raw vests from balance-api (\"903311000000\" = 903311.000000 VESTS) as the\n * legacy asset string. Takes the decimal string (or a bigint), never a number:\n * a float has already rounded anything above 2^53 raw units before it gets\n * here, and the string arithmetic below keeps every digit.\n */\nexport function rawVestsToAsset(amount: string | bigint): string {\n const digits = String(amount).replace(/\\D/g, \"\") || \"0\";\n const padded = digits.padStart(7, \"0\");\n const whole = padded.slice(0, -6).replace(/^0+(?=\\d)/, \"\");\n return `${whole}.${padded.slice(-6)} VESTS`;\n}\n\n/**\n * The incoming half of an account's balance-api delegations in the shape the\n * received-delegation queries have always returned, largest first.\n */\nexport function toReceivedVestingShares(\n delegatee: string,\n delegations: AccountDelegations | null | undefined,\n): ReceivedVestingShare[] {\n return (delegations?.incoming_delegations ?? [])\n .map((d) => ({\n delegator: d.delegator,\n raw: BigInt(String(d.amount).replace(/\\D/g, \"\") || \"0\"),\n }))\n .sort((a, b) => (a.raw === b.raw ? 0 : a.raw > b.raw ? -1 : 1))\n .map(({ delegator, raw }) => ({\n delegatee,\n delegator,\n vesting_shares: rawVestsToAsset(raw),\n }));\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { getAccountDelegationsQueryOptions } from \"./get-account-delegations-query-options\";\nimport { toReceivedVestingShares } from \"../utils/received-vesting-shares\";\n\n/**\n * Who delegates HP to `username`, largest first.\n *\n * Read from the HAF balance-api through {@link getAccountDelegationsQueryOptions}\n * (fetched via the shared query client, so a page showing the totals and the\n * list makes one request), not from the Ecency notification database any more.\n * The return shape is unchanged apart from `timestamp`, which balance-api does\n * not carry.\n */\nexport function getReceivedVestingSharesQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.wallet.receivedVestingShares(username),\n enabled: !!username,\n queryFn: async () =>\n toReceivedVestingShares(\n username,\n // A page that shows the totals and the list asks twice within seconds;\n // a minute of freshness makes that one balance-api request.\n await getQueryClient().fetchQuery({\n ...getAccountDelegationsQueryOptions(username),\n staleTime: 60_000,\n }),\n ),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { RecurrentTransfer } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get recurrent transfers for an account\n *\n * @param username - The account username\n */\nexport function getRecurrentTransfersQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"recurrent-transfers\", username],\n queryFn: () =>\n callRPC(\"condenser_api.find_recurrent_transfers\", [\n username,\n ]) as Promise,\n enabled: !!username,\n });\n}\n","import { ConfigManager } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\ntype PortfolioLayer = \"points\" | \"hive\" | \"chain\" | \"engine\";\n\ninterface TokenAction {\n id: string;\n [key: string]: unknown;\n}\n\nexport interface PortfolioWalletItem {\n name: string;\n symbol: string;\n layer: PortfolioLayer;\n balance: number;\n fiatRate: number;\n currency: string;\n precision: number;\n address?: string;\n error?: string;\n pendingRewards?: number;\n pendingRewardsFiat?: number;\n liquid?: number;\n liquidFiat?: number;\n savings?: number;\n savingsFiat?: number;\n staked?: number;\n stakedFiat?: number;\n iconUrl?: string;\n actions?: TokenAction[];\n extraData?: Array<{ dataKey: string; value: any }>;\n apr?: number;\n}\n\nexport interface PortfolioResponse {\n username: string;\n currency?: string;\n wallets: PortfolioWalletItem[];\n}\n\nfunction normalizeString(value: unknown): string | undefined {\n if (typeof value === \"string\") {\n const trimmed = value.trim();\n return trimmed.length > 0 ? trimmed : undefined;\n }\n\n return undefined;\n}\n\nfunction normalizeNumber(value: unknown): number | undefined {\n if (typeof value === \"number\" && Number.isFinite(value)) {\n return value;\n }\n\n if (typeof value === \"string\") {\n const trimmed = value.trim();\n if (!trimmed) {\n return undefined;\n }\n\n const direct = Number.parseFloat(trimmed);\n if (Number.isFinite(direct)) {\n return direct;\n }\n\n const sanitized = trimmed.replace(/,/g, \"\");\n const match = sanitized.match(/[-+]?\\d+(?:\\.\\d+)?/);\n if (match) {\n const parsed = Number.parseFloat(match[0]);\n if (Number.isFinite(parsed)) {\n return parsed;\n }\n }\n }\n\n return undefined;\n}\n\nfunction parseToken(rawToken: unknown): PortfolioWalletItem | undefined {\n if (!rawToken || typeof rawToken !== \"object\") {\n return undefined;\n }\n\n const token = rawToken as Record;\n\n // Portfolio v2 returns well-defined PortfolioItem structure\n return {\n name: normalizeString(token.name) ?? \"\",\n symbol: normalizeString(token.symbol) ?? \"\",\n layer: (normalizeString(token.layer) ?? \"hive\") as PortfolioLayer,\n balance: normalizeNumber(token.balance) ?? 0,\n fiatRate: normalizeNumber(token.fiatRate) ?? 0,\n currency: normalizeString(token.currency) ?? \"usd\",\n precision: normalizeNumber(token.precision) ?? 3,\n address: normalizeString(token.address),\n error: normalizeString(token.error),\n pendingRewards: normalizeNumber(token.pendingRewards),\n pendingRewardsFiat: normalizeNumber(token.pendingRewardsFiat),\n liquid: normalizeNumber(token.liquid),\n liquidFiat: normalizeNumber(token.liquidFiat),\n savings: normalizeNumber(token.savings),\n savingsFiat: normalizeNumber(token.savingsFiat),\n staked: normalizeNumber(token.staked),\n stakedFiat: normalizeNumber(token.stakedFiat),\n iconUrl: normalizeString(token.iconUrl),\n actions: (token.actions ?? []) as TokenAction[],\n extraData: (token.extraData ?? []) as Array<{ dataKey: string; value: any }>,\n apr: normalizeNumber(token.apr),\n };\n}\n\nfunction extractTokens(payload: unknown): unknown[] {\n if (!payload || typeof payload !== \"object\") {\n return [];\n }\n\n const containers = [payload];\n const record = payload as Record;\n if (record.data && typeof record.data === \"object\") {\n containers.push(record.data as Record);\n }\n if (record.result && typeof record.result === \"object\") {\n containers.push(record.result as Record);\n }\n if (record.portfolio && typeof record.portfolio === \"object\") {\n containers.push(record.portfolio as Record);\n }\n\n for (const container of containers) {\n if (Array.isArray(container)) {\n return container;\n }\n\n if (container && typeof container === \"object\") {\n for (const key of [\n \"wallets\",\n \"tokens\",\n \"assets\",\n \"items\",\n \"portfolio\",\n \"balances\",\n ]) {\n const value = (container as Record)[key];\n if (Array.isArray(value)) {\n return value;\n }\n }\n }\n }\n\n return [];\n}\n\nfunction resolveUsername(payload: unknown): string | undefined {\n if (!payload || typeof payload !== \"object\") {\n return undefined;\n }\n\n const record = payload as Record;\n return (\n normalizeString(record.username) ??\n normalizeString(record.name) ??\n normalizeString(record.account)\n );\n}\n\n/**\n * Get portfolio query options for fetching user's wallet balances across all layers\n * @param username - Hive username\n * @param currency - Fiat currency code (default: \"usd\")\n * @param onlyEnabled - Only return enabled tokens (default: true)\n * @returns TanStack Query options for portfolio data\n */\nexport function getPortfolioQueryOptions(\n username: string,\n currency: string = \"usd\",\n onlyEnabled: boolean = true\n) {\n return queryOptions({\n queryKey: [\n \"wallet\",\n \"portfolio\",\n \"v2\",\n username,\n onlyEnabled ? \"only-enabled\" : \"all\",\n currency,\n ],\n enabled: Boolean(username),\n staleTime: 60000,\n refetchInterval: 120000,\n queryFn: async (): Promise => {\n if (!username) {\n throw new Error(\"[SDK][Wallet] – username is required\");\n }\n\n const endpoint = `${ConfigManager.getValidatedBaseUrl()}/wallet-api/portfolio-v2`;\n const response = await fetch(endpoint, {\n method: \"POST\",\n headers: {\n Accept: \"application/json\",\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username, onlyEnabled, currency }),\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Wallet] – Portfolio request failed (${response.status})`\n );\n }\n\n const payload = (await response.json()) as unknown;\n const tokens = extractTokens(payload)\n .map((item) => parseToken(item))\n .filter((item): item is PortfolioWalletItem => Boolean(item))\n // Backend may still emit removed SPK-layer items; drop them defensively\n .filter((item) => (item.layer as string) !== \"spk\");\n\n if (!tokens.length) {\n throw new Error(\n \"[SDK][Wallet] – Portfolio payload contained no tokens\"\n );\n }\n\n return {\n username: resolveUsername(payload) ?? username,\n currency: normalizeString(\n (payload as Record | undefined)?.fiatCurrency ??\n (payload as Record | undefined)?.currency\n )?.toUpperCase(),\n wallets: tokens,\n };\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nexport function getHiveAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n\n const marketTicker = (await callRPC(\"condenser_api.get_ticker\", [])\n .catch(() => undefined)) as { latest?: string } | undefined;\n\n const marketPrice = Number.parseFloat(marketTicker?.latest ?? \"\");\n\n if (!accountData) {\n return {\n name: \"HIVE\",\n title: \"Hive\",\n price: Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0,\n accountBalance: 0,\n } satisfies GeneralAssetInfo;\n }\n\n const liquidBalance = parseAsset(accountData.balance).amount;\n const savingsBalance = parseAsset(accountData.savings_balance).amount;\n\n return {\n name: \"HIVE\",\n title: \"Hive\",\n price: Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0,\n accountBalance: liquidBalance + savingsBalance,\n parts: [\n {\n name: \"current\",\n balance: liquidBalance,\n },\n {\n name: \"savings\",\n balance: savingsBalance,\n },\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nexport function getHbdAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hbd\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n\n const price = 1;\n\n if (!accountData) {\n return {\n name: \"HBD\",\n title: \"Hive Dollar\",\n price,\n accountBalance: 0,\n };\n }\n\n return {\n name: \"HBD\",\n title: \"Hive Dollar\",\n price,\n accountBalance:\n parseAsset(accountData.hbd_balance).amount +\n parseAsset(accountData?.savings_hbd_balance).amount,\n apr: ((dynamicProps?.hbdInterestRate ?? 0) / 100).toFixed(3),\n parts: [\n {\n name: \"current\",\n balance: parseAsset(accountData.hbd_balance).amount,\n },\n {\n name: \"savings\",\n balance: parseAsset(accountData.savings_hbd_balance).amount,\n },\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { isEmptyDate, parseAsset, vestsToHp } from \"@/modules/core/utils\";\n\nfunction getAPR(dynamicProps: DynamicProps) {\n const initialInflationRate = 9.5;\n const initialBlock = 7000000;\n const decreaseRate = 250000;\n const decreasePercentPerIncrement = 0.01;\n\n const headBlock = dynamicProps.headBlock;\n const deltaBlocks = headBlock - initialBlock;\n const decreaseIncrements = deltaBlocks / decreaseRate;\n\n let currentInflationRate =\n initialInflationRate - decreaseIncrements * decreasePercentPerIncrement;\n\n if (currentInflationRate < 0.95) {\n currentInflationRate = 0.95;\n }\n\n const vestingRewardPercent = dynamicProps.vestingRewardPercent / 10000;\n const virtualSupply = dynamicProps.virtualSupply;\n const totalVestingFunds = dynamicProps.totalVestingFund;\n\n return (\n (virtualSupply * currentInflationRate * vestingRewardPercent) /\n totalVestingFunds\n ).toFixed(3);\n}\n\nexport function getHivePowerAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-power\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n\n if (!dynamicProps || !accountData) {\n return {\n name: \"HP\",\n title: \"Hive Power\",\n price: 0,\n accountBalance: 0,\n };\n }\n\n const marketTicker = (await callRPC(\"condenser_api.get_ticker\", [])\n .catch(() => undefined)) as { latest?: string } | undefined;\n\n const marketPrice = Number.parseFloat(marketTicker?.latest ?? \"\");\n const price = Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps.base / dynamicProps.quote;\n\n const vestingShares = parseAsset(accountData.vesting_shares).amount;\n const delegatedVests = parseAsset(\n accountData.delegated_vesting_shares\n ).amount;\n const receivedVests = parseAsset(\n accountData.received_vesting_shares\n ).amount;\n const withdrawRateVests = parseAsset(\n accountData.vesting_withdraw_rate\n ).amount;\n const remainingToWithdrawVests = Math.max(\n (Number(accountData.to_withdraw) - Number(accountData.withdrawn)) /\n 1e6,\n 0\n );\n const nextWithdrawalVests = !isEmptyDate(\n accountData.next_vesting_withdrawal\n )\n ? Math.min(withdrawRateVests, remainingToWithdrawVests)\n : 0;\n\n const hpBalance = +vestsToHp(\n vestingShares,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const outgoingDelegationsHp = +vestsToHp(\n delegatedVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const incomingDelegationsHp = +vestsToHp(\n receivedVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const pendingPowerDownHp = +vestsToHp(\n remainingToWithdrawVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const nextPowerDownHp = +vestsToHp(\n nextWithdrawalVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const totalBalance = Math.max(hpBalance - pendingPowerDownHp, 0);\n const availableHp = Math.max(hpBalance - outgoingDelegationsHp, 0);\n\n return {\n name: \"HP\",\n title: \"Hive Power\",\n price,\n accountBalance: +totalBalance.toFixed(3),\n apr: getAPR(dynamicProps),\n parts: [\n {\n name: \"hp_balance\",\n balance: hpBalance,\n },\n {\n name: \"available\",\n balance: +availableHp.toFixed(3),\n },\n {\n name: \"outgoing_delegations\",\n balance: outgoingDelegationsHp,\n },\n {\n name: \"incoming_delegations\",\n balance: incomingDelegationsHp,\n },\n ...(pendingPowerDownHp > 0\n ? [\n {\n name: \"pending_power_down\",\n balance: +pendingPowerDownHp.toFixed(3),\n },\n ]\n : []),\n ...(nextPowerDownHp > 0 && nextPowerDownHp !== pendingPowerDownHp\n ? [\n {\n name: \"next_power_down\",\n balance: +nextPowerDownHp.toFixed(3),\n },\n ]\n : []),\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { utils } from \"../../../hive-tx\";\nimport { HiveOperationGroup } from \"../types\";\nconst ops = utils.operations;\n\nexport const HIVE_ACCOUNT_OPERATION_GROUPS: Record<\n HiveOperationGroup,\n number[]\n> = {\n transfers: [\n ops.transfer,\n ops.transfer_to_savings,\n ops.transfer_from_savings,\n ops.cancel_transfer_from_savings,\n ops.recurrent_transfer,\n ops.fill_recurrent_transfer,\n ops.escrow_transfer,\n ops.fill_recurrent_transfer,\n ],\n \"market-orders\": [\n ops.fill_convert_request,\n ops.fill_order,\n ops.fill_collateralized_convert_request,\n ops.limit_order_create2,\n ops.limit_order_create,\n ops.limit_order_cancel,\n ],\n interests: [ops.interest],\n \"stake-operations\": [\n ops.return_vesting_delegation,\n ops.withdraw_vesting,\n ops.transfer_to_vesting,\n ops.set_withdraw_vesting_route,\n ops.update_proposal_votes,\n ops.fill_vesting_withdraw,\n ops.account_witness_proxy,\n ops.delegate_vesting_shares,\n ],\n rewards: [\n ops.author_reward,\n ops.curation_reward,\n ops.producer_reward,\n ops.claim_reward_balance,\n ops.comment_benefactor_reward,\n ops.liquidity_reward,\n ops.proposal_pay,\n ],\n \"\": [],\n};\n","import { utils } from \"../../../hive-tx\";\nimport type { HiveOperationName } from \"../types\";\n\nexport const HIVE_OPERATION_LIST = Object.keys(\n utils.operations\n) as HiveOperationName[];\n","import { utils } from \"../../../hive-tx\";\nimport type { HiveOperationName } from \"../types\";\n\nconst operationOrders = utils.operations as Record<\n HiveOperationName,\n number\n>;\n\nexport const HIVE_OPERATION_ORDERS = operationOrders;\n\nexport const HIVE_OPERATION_NAME_BY_ID: Record =\n Object.entries(operationOrders).reduce((acc, [name, id]) => {\n acc[id] = name as HiveOperationName;\n return acc;\n }, {} as Record);\n","import { callRPC } from \"../../../hive-tx\";\nimport { utils } from \"../../../hive-tx\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { HIVE_ACCOUNT_OPERATION_GROUPS } from \"../consts\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n HiveOperationFilterKey,\n HiveOperationFilterValue,\n HiveOperationGroup,\n HiveOperationName,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nconst operationOrders = utils.operations;\n\nfunction isHiveOperationName(value: string): value is HiveOperationName {\n return Object.prototype.hasOwnProperty.call(operationOrders, value);\n}\n\nexport function resolveHiveOperationFilters(filters: HiveOperationFilter): {\n filterKey: HiveOperationFilterKey;\n filterArgs: any[];\n} {\n const rawValues: HiveOperationFilterValue[] = Array.isArray(filters)\n ? filters\n : [filters];\n\n const hasAll = rawValues.includes(\"\" as HiveOperationGroup);\n\n const uniqueValues = Array.from(\n new Set(\n rawValues.filter(\n (value): value is HiveOperationFilterValue =>\n value !== undefined &&\n value !== null &&\n value !== (\"\" as HiveOperationGroup)\n )\n )\n );\n\n const filterKey: HiveOperationFilterKey =\n hasAll || uniqueValues.length === 0\n ? \"all\"\n : uniqueValues\n .map((value) => value.toString())\n .sort()\n .join(\"|\");\n\n const operationIds = new Set();\n\n if (!hasAll) {\n uniqueValues.forEach((value) => {\n if (value in HIVE_ACCOUNT_OPERATION_GROUPS) {\n HIVE_ACCOUNT_OPERATION_GROUPS[value as HiveOperationGroup].forEach(\n (id) => operationIds.add(id)\n );\n return;\n }\n\n if (isHiveOperationName(value)) {\n operationIds.add(operationOrders[value]);\n }\n });\n }\n\n const filterArgs = makeBitMaskFilter(Array.from(operationIds));\n\n return {\n filterKey,\n filterArgs,\n };\n}\n\n/**\n * The filter values the caller passed, minus the \"all\" sentinel. Group aliases are\n * kept as-is: they never equal an operation name, so they simply never match.\n *\n * Used by the per-asset `select` filters so an operation a caller deliberately\n * requested is never silently dropped just because the asset filter has no opinion\n * about it. Passing no filter at all keeps the historical behaviour: the asset's own\n * allow-list decides, and nothing extra leaks in.\n */\nexport function collectRequestedOperations(\n filters: HiveOperationFilter\n): Set {\n const rawValues = Array.isArray(filters) ? filters : [filters];\n return new Set(\n rawValues.filter(\n (value): value is HiveOperationFilterValue =>\n value !== undefined && value !== null && value !== (\"\" as HiveOperationGroup)\n )\n );\n}\n\n/**\n * Cursor for `condenser_api.get_account_history`.\n *\n * A page comes back in ASCENDING `num` order, so the OLDEST entry is at index 0 and\n * walking backwards means `page[0].num - 1`. Reading the LAST entry instead takes the\n * NEWEST row, which advances the window by a single operation per page (a page of 1000\n * overlaps its predecessor by 999) and, once `num` reaches 0, yields -1 — the \"newest\"\n * sentinel `initialPageParam` uses — so the walk restarts at the head of the history and\n * never terminates.\n */\nexport function getNextAccountHistoryPageParam(\n lastPage: HiveTransaction[] | undefined\n): number | undefined {\n if (!lastPage?.length) {\n return undefined;\n }\n\n const oldest = Number(lastPage[0]?.num ?? 0);\n return Number.isFinite(oldest) && oldest > 0 ? oldest - 1 : undefined;\n}\n\n/**\n * The `limit` to request for a given cursor.\n *\n * `condenser_api.get_account_history` asserts `start >= limit - 1`, because `start` is a\n * 0-based index into the account's operation list and the node walks `limit` entries back\n * from it. The cursor above is derived from `num` alone, so the last window before the\n * start of history is necessarily shorter than `limit`, and asking for the full `limit`\n * there fails the assert instead of returning the remaining rows.\n *\n * Narrowing the window to `pageParam + 1` asks for exactly what is left. The `-1`\n * sentinel (\"give me the newest\") is not an index and passes through untouched.\n */\nexport function resolveAccountHistoryLimit(\n pageParam: number,\n limit: number\n): number {\n if (!Number.isFinite(pageParam) || pageParam < 0) {\n return limit;\n }\n\n return Math.min(limit, pageParam + 1);\n}\n\nfunction makeBitMaskFilter(allowedOperations: number[]) {\n let low = 0n;\n let high = 0n;\n\n allowedOperations.forEach((operation) => {\n if (operation < 64) {\n low |= 1n << BigInt(operation);\n } else {\n high |= 1n << BigInt(operation - 64);\n }\n });\n\n return [\n low !== 0n ? low.toString() : null,\n high !== 0n ? high.toString() : null,\n ];\n}\n\nexport function getHiveAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterArgs, filterKey } = resolveHiveOperationFilters(filters);\n const requestedOperations = collectRequestedOperations(filters);\n\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive\", \"transactions\", username, limit, filterKey],\n initialPageParam: -1,\n getNextPageParam: getNextAccountHistoryPageParam,\n\n queryFn: async ({ pageParam }) => {\n const response = await callRPC(\n \"condenser_api.get_account_history\",\n [\n username,\n pageParam,\n resolveAccountHistoryLimit(Number(pageParam), limit),\n ...filterArgs,\n ]\n );\n\n return response.map(\n (x: any) =>\n ({\n num: x[0],\n type: x[1].op[0],\n timestamp: x[1].timestamp,\n trx_id: x[1].trx_id,\n ...x[1].op[1],\n }) satisfies HiveTransaction\n );\n },\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const hivePayout = parseAsset(\n (item as AuthorReward).hive_payout\n );\n return hivePayout.amount > 0;\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"transfer_to_vesting\":\n case \"recurrent_transfer\":\n return parseAsset(item.amount).symbol === \"HIVE\";\n\n case \"transfer_from_savings\" as HiveOperationName:\n // The completed withdrawal carries the same asset as the request that\n // opened it, so it needs the same guard. Without a case of its own it\n // falls to the default below, which has no symbol check.\n case \"fill_transfer_from_savings\" as HiveOperationName:\n return parseAsset((item as any).amount).symbol === \"HIVE\";\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"HIVE\"].includes(asset.symbol);\n\n case \"claim_reward_balance\":\n const rewardHive = parseAsset(\n (item as ClaimRewardBalance).reward_hive\n );\n return rewardHive.amount > 0;\n\n case \"curation_reward\":\n case \"cancel_transfer_from_savings\":\n case \"fill_order\":\n case \"limit_order_create\":\n case \"limit_order_cancel\":\n case \"fill_convert_request\":\n case \"fill_collateralized_convert_request\":\n return true;\n\n case \"limit_order_create2\" as HiveOperationName:\n return true;\n default:\n // Keep an operation the caller asked for by name. Without this the\n // filter UI advertises every operation while this switch silently\n // discards the ones it has no opinion about, so picking e.g.\n // `fill_transfer_from_savings` returns an empty list. Requests that\n // pass no filter still fall through to `false`, so the unfiltered\n // HIVE view is unchanged.\n return requestedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { parseAsset } from \"@/modules/core/utils\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n HiveOperationName,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport {\n collectRequestedOperations,\n getHiveAssetTransactionsQueryOptions,\n resolveHiveOperationFilters,\n} from \"./get-hive-asset-transactions-query-options\";\n\nexport function getHbdAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterKey } = resolveHiveOperationFilters(filters);\n const requestedOperations = collectRequestedOperations(filters);\n\n return infiniteQueryOptions({\n ...getHiveAssetTransactionsQueryOptions(username, limit, filters),\n queryKey: [\"assets\", \"hbd\", \"transactions\", username, limit, filterKey],\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const hbdPayout = parseAsset(\n (item as AuthorReward).hbd_payout\n );\n return hbdPayout.amount > 0;\n\n case \"claim_reward_balance\":\n const rewardHbd = parseAsset(\n (item as ClaimRewardBalance).reward_hbd\n );\n return rewardHbd.amount > 0;\n\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"transfer_to_vesting\":\n case \"recurrent_transfer\":\n return parseAsset(item.amount).symbol === \"HBD\";\n\n case \"transfer_from_savings\" as HiveOperationName:\n // The completed withdrawal carries the same asset as the request that\n // opened it, so it needs the same guard. Without a case of its own it\n // falls to the default below, which has no symbol check.\n case \"fill_transfer_from_savings\" as HiveOperationName:\n return parseAsset((item as any).amount).symbol === \"HBD\";\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"HBD\"].includes(asset.symbol);\n\n case \"cancel_transfer_from_savings\":\n case \"fill_order\":\n case \"limit_order_create\":\n case \"limit_order_cancel\":\n case \"fill_convert_request\":\n case \"fill_collateralized_convert_request\":\n case \"proposal_pay\":\n case \"interest\":\n return true;\n\n case \"limit_order_create2\" as HiveOperationName:\n return true;\n default:\n // See the HIVE options: keep an operation the caller named explicitly,\n // otherwise the filter UI offers operations this switch throws away.\n // Unfiltered requests still fall through to `false`.\n return requestedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { parseAsset } from \"@/modules/core/utils\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport {\n getHiveAssetTransactionsQueryOptions,\n resolveHiveOperationFilters,\n} from \"./get-hive-asset-transactions-query-options\";\n\nexport function getHivePowerAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterKey } = resolveHiveOperationFilters(filters);\n\n const userSelectedOperations = new Set(\n Array.isArray(filters) ? filters : [filters]\n );\n const hasAllFilter =\n userSelectedOperations.has(\"\" as any) || userSelectedOperations.size === 0;\n\n return infiniteQueryOptions({\n ...getHiveAssetTransactionsQueryOptions(username, limit, filters),\n queryKey: [\n \"assets\",\n \"hive-power\",\n \"transactions\",\n username,\n limit,\n filterKey,\n ],\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const vestingPayout = parseAsset(\n (item as AuthorReward).vesting_payout\n );\n return vestingPayout.amount > 0;\n\n case \"claim_reward_balance\":\n const rewardVests = parseAsset(\n (item as ClaimRewardBalance).reward_vests\n );\n return rewardVests.amount > 0;\n\n case \"transfer_to_vesting\":\n return true;\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"recurrent_transfer\":\n return [\"VESTS\", \"HP\"].includes(parseAsset(item.amount).symbol);\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"VESTS\", \"HP\"].includes(asset.symbol);\n\n case \"curation_reward\":\n case \"withdraw_vesting\":\n case \"delegate_vesting_shares\":\n case \"fill_vesting_withdraw\":\n case \"return_vesting_delegation\":\n case \"producer_reward\":\n case \"set_withdraw_vesting_route\":\n return true;\n default:\n return hasAllFilter || userSelectedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport type { HiveMarketMetric } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nfunction formatDate(date: Date): string {\n const pad = (n: number) => n.toString().padStart(2, \"0\");\n return `${date.getFullYear()}-${pad(date.getMonth() + 1)}-${pad(date.getDate())}T${pad(date.getHours())}:${pad(date.getMinutes())}:${pad(date.getSeconds())}`;\n}\n\nfunction subtractSeconds(date: Date, seconds: number): Date {\n return new Date(date.getTime() - seconds * 1000);\n}\n\nexport function getHiveAssetMetricQueryOptions(bucketSeconds = 86_400) {\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive\", \"metrics\", bucketSeconds],\n queryFn: async ({ pageParam: [startDate, endDate] }) => {\n const apiData: HiveMarketMetric[] = await callRPC(\"condenser_api.get_market_history\", [bucketSeconds, formatDate(startDate), formatDate(endDate)]\n );\n\n return apiData.map(({ hive, non_hive, open }) => ({\n close: non_hive.close / hive.close,\n open: non_hive.open / hive.open,\n low: non_hive.low / hive.low,\n high: non_hive.high / hive.high,\n volume: hive.volume,\n time: new Date(open),\n }));\n },\n initialPageParam: [\n subtractSeconds(new Date(), Math.max(100 * bucketSeconds, 28_800)),\n new Date(),\n ],\n getNextPageParam: (_, __, [prevStartDate]) => [\n subtractSeconds(prevStartDate, Math.max(100 * bucketSeconds, 28_800)),\n subtractSeconds(prevStartDate, bucketSeconds),\n ],\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { WithdrawRoute } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getHiveAssetWithdrawalRoutesQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive\", \"withdrawal-routes\", username],\n queryFn: () =>\n callRPC(\"condenser_api.get_withdraw_routes\", [\n username,\n \"outgoing\",\n ]) as Promise,\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { DelegatedVestingShare } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getHivePowerDelegatesInfiniteQueryOptions(\n username: string,\n limit = 50\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-power\", \"delegates\", username],\n enabled: !!username,\n queryFn: () =>\n callRPC(\"condenser_api.get_vesting_delegations\", [\n username,\n \"\",\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { getAccountDelegationsQueryOptions } from \"./get-account-delegations-query-options\";\nimport { toReceivedVestingShares } from \"../utils/received-vesting-shares\";\n\n/**\n * The same list as {@link getReceivedVestingSharesQueryOptions} under the key\n * the wallet's HP asset views use. Both read the HAF balance-api through the\n * shared account-delegations query, so neither depends on the Ecency\n * notification database.\n */\nexport function getHivePowerDelegatingsQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.assets.hivePowerDelegatings(username),\n enabled: !!username,\n queryFn: async () =>\n toReceivedVestingShares(\n username,\n // A page that shows the totals and the list asks twice within seconds;\n // a minute of freshness makes that one balance-api request.\n await getQueryClient().fetchQuery({\n ...getAccountDelegationsQueryOptions(username),\n staleTime: 60_000,\n }),\n ),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OrdersData } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get the internal HIVE/HBD market order book\n *\n * @param limit - Maximum number of orders to fetch (default: 500)\n */\nexport function getOrderBookQueryOptions(limit = 500) {\n return queryOptions({\n queryKey: [\"market\", \"order-book\", limit],\n queryFn: () =>\n callRPC(\"condenser_api.get_order_book\", [\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketStatistics } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HIVE/HBD market statistics from the blockchain\n */\nexport function getMarketStatisticsQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"statistics\"],\n queryFn: () =>\n callRPC(\"condenser_api.get_ticker\", []) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketCandlestickDataItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HIVE/HBD market history (candlestick data)\n *\n * @param seconds - Bucket size in seconds\n * @param startDate - Start date for the data\n * @param endDate - End date for the data\n */\nexport function getMarketHistoryQueryOptions(\n seconds: number,\n startDate: Date,\n endDate: Date\n) {\n const formatDate = (date: Date) => {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n };\n\n return queryOptions({\n queryKey: [\"market\", \"history\", seconds, startDate.getTime(), endDate.getTime()],\n queryFn: () =>\n callRPC(\"condenser_api.get_market_history\", [\n seconds,\n formatDate(startDate),\n formatDate(endDate),\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { HiveHbdStats, MarketCandlestickDataItem, MarketStatistics } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get combined HIVE/HBD statistics including price, 24h change, and volume\n */\nexport function getHiveHbdStatsQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"hive-hbd-stats\"],\n queryFn: async () => {\n // Get current market statistics\n const stats = (await callRPC(\"condenser_api.get_ticker\", [])) as MarketStatistics;\n\n // Get 24h market history\n const now = new Date();\n const oneDayAgo = new Date(now.getTime() - 86400000); // 24 hours ago\n\n const formatDate = (date: Date) => {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n };\n\n const dayChange = (await callRPC(\"condenser_api.get_market_history\", [86400, formatDate(oneDayAgo), formatDate(now)]\n )) as MarketCandlestickDataItem[];\n\n // Calculate stats\n const result: HiveHbdStats = {\n price: +stats.latest,\n close: dayChange[0] ? dayChange[0].non_hive.open / dayChange[0].hive.open : 0,\n high: dayChange[0] ? dayChange[0].non_hive.high / dayChange[0].hive.high : 0,\n low: dayChange[0] ? dayChange[0].non_hive.low / dayChange[0].hive.low : 0,\n percent: dayChange[0]\n ? 100 - ((dayChange[0].non_hive.open / dayChange[0].hive.open) * 100) / +stats.latest\n : 0,\n totalFromAsset: stats.hive_volume.split(\" \")[0],\n totalToAsset: stats.hbd_volume.split(\" \")[0],\n };\n\n return result;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketData } from \"../types\";\nimport { getBoundFetch } from \"@/modules/core\";\n\n/**\n * Get market chart data from CoinGecko API\n *\n * @param coin - Coin ID (e.g., \"hive\", \"bitcoin\")\n * @param vsCurrency - Currency to compare against (e.g., \"usd\", \"eur\")\n * @param fromTs - From timestamp (Unix timestamp in seconds)\n * @param toTs - To timestamp (Unix timestamp in seconds)\n */\nexport function getMarketDataQueryOptions(\n coin: string,\n vsCurrency: string,\n fromTs: string,\n toTs: string\n) {\n return queryOptions({\n queryKey: [\"market\", \"data\", coin, vsCurrency, fromTs, toTs],\n queryFn: async ({ signal }) => {\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/coins/${coin}/market_chart/range?vs_currency=${vsCurrency}&from=${fromTs}&to=${toTs}`;\n\n const response = await fetchApi(url, { signal });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch market data: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OrdersDataItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nfunction formatDate(date: Date) {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n}\n\nexport function getTradeHistoryQueryOptions(\n limit = 1000,\n startDate?: Date,\n endDate?: Date\n) {\n const end = endDate ?? new Date();\n const start =\n startDate ?? new Date(end.getTime() - 10 * 60 * 60 * 1000);\n\n return queryOptions({\n queryKey: [\"market\", \"trade-history\", limit, start.getTime(), end.getTime()],\n queryFn: () =>\n callRPC(\"condenser_api.get_trade_history\", [\n formatDate(start),\n formatDate(end),\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface FeedHistoryItem {\n id: number;\n current_median_history: {\n base: string;\n quote: string;\n };\n market_median_history: {\n base: string;\n quote: string;\n };\n current_min_history: {\n base: string;\n quote: string;\n };\n current_max_history: {\n base: string;\n quote: string;\n };\n price_history: Array<{\n base: string;\n quote: string;\n }>;\n}\n\n/**\n * Get feed history from the blockchain\n * Returns price feed history including median prices\n */\nexport function getFeedHistoryQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"feed-history\"],\n queryFn: async () => {\n try {\n const feedHistory = await callRPC(\"condenser_api.get_feed_history\", []);\n return feedHistory as FeedHistoryItem;\n } catch (error) {\n throw error;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface MedianHistoryPrice {\n base: string;\n quote: string;\n}\n\n/**\n * Get current median history price from the blockchain\n * Returns the current median price for HIVE/HBD conversion\n */\nexport function getCurrentMedianHistoryPriceQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"current-median-history-price\"],\n queryFn: async () => {\n try {\n const price = await callRPC(\"condenser_api.get_current_median_history_price\", []);\n return price as MedianHistoryPrice;\n } catch (error) {\n throw error;\n }\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildLimitOrderCreateOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface LimitOrderCreatePayload {\n amountToSell: string;\n minToReceive: string;\n fillOrKill: boolean;\n expiration: string;\n orderId: number;\n}\n\nexport function useLimitOrderCreate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"market\", \"limit-order-create\"],\n username,\n (payload) => [\n buildLimitOrderCreateOp(\n username!,\n payload.amountToSell,\n payload.minToReceive,\n payload.fillOrKill,\n payload.expiration,\n payload.orderId\n )\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.wallet.openOrders(username!),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildLimitOrderCancelOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface LimitOrderCancelPayload {\n orderId: number;\n}\n\nexport function useLimitOrderCancel(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"market\", \"limit-order-cancel\"],\n username,\n ({ orderId }) => [\n buildLimitOrderCancelOp(username!, orderId)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.wallet.openOrders(username!),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { MarketData } from \"./types\";\nimport { CurrencyRates } from \"@/modules/private-api/types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nasync function parseJsonResponse(response: Response): Promise {\n const data = (await response.json()) as T;\n if (!response.ok) {\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n return data;\n}\n\nexport async function getMarketData(\n coin: string,\n vsCurrency: string,\n fromTs: string,\n toTs: string\n): Promise {\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/coins/${coin}/market_chart/range?vs_currency=${vsCurrency}&from=${fromTs}&to=${toTs}`;\n const response = await fetchApi(url);\n return parseJsonResponse(response);\n}\n\nexport async function getCurrencyRate(cur: string): Promise {\n if (cur === \"hbd\") {\n return 1;\n }\n\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${cur}`;\n const response = await fetchApi(url);\n const data = await parseJsonResponse<{ hive_dollar: Record }>(response);\n return data.hive_dollar[cur];\n}\n\nexport async function getCurrencyTokenRate(currency: string, token: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost +\n `/private-api/market-data/${currency === \"hbd\" ? \"usd\" : currency}/${token}`\n );\n\n return parseJsonResponse(response);\n}\n\nexport async function getCurrencyRates(): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/market-data/latest\");\n return parseJsonResponse(response);\n}\n\nexport async function getHivePrice(): Promise<{ hive: { usd: number } }> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n \"https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd\"\n );\n return parseJsonResponse<{ hive: { usd: number } }>(response);\n}\n","import { ConfigManager, getBoundFetch } from \"@/modules/core\";\nimport type { HiveEngineOpenOrder } from \"./types\";\n\ntype EngineOrderBookEntry = {\n txId: string;\n timestamp: number;\n account: string;\n symbol: string;\n quantity: string;\n price: string;\n tokensLocked?: string;\n};\n\nconst ENGINE_RPC_HEADERS = { \"Content-type\": \"application/json\" };\n\nasync function engineRpc(payload: Record): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const response = await fetchApi(`${baseUrl}/private-api/engine-api`, {\n method: \"POST\",\n body: JSON.stringify(payload),\n headers: ENGINE_RPC_HEADERS,\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – request failed with ${response.status}`\n );\n }\n\n const data = (await response.json()) as { result: T };\n return data.result;\n}\n\nasync function engineRpcSafe(\n payload: Record,\n fallback: T\n): Promise {\n try {\n return await engineRpc(payload);\n } catch (e) {\n return fallback;\n }\n}\n\nexport async function getHiveEngineOrderBook(\n symbol: string,\n limit: number = 50\n): Promise<{ buy: T[]; sell: T[] }> {\n const baseParams = {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n query: { symbol },\n limit,\n offset: 0,\n },\n id: 1,\n };\n\n const [buy, sell] = await Promise.all([\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"buyBook\",\n indexes: [{ index: \"price\", descending: true }],\n },\n },\n []\n ),\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"sellBook\",\n indexes: [{ index: \"price\", descending: false }],\n },\n },\n []\n ),\n ]);\n\n const sortByPriceDesc = (items: T[]) =>\n items.sort((a, b) => {\n const left = Number((a as EngineOrderBookEntry).price ?? 0);\n const right = Number((b as EngineOrderBookEntry).price ?? 0);\n return right - left;\n });\n const sortByPriceAsc = (items: T[]) =>\n items.sort((a, b) => {\n const left = Number((a as EngineOrderBookEntry).price ?? 0);\n const right = Number((b as EngineOrderBookEntry).price ?? 0);\n return left - right;\n });\n\n return {\n buy: sortByPriceDesc(buy),\n sell: sortByPriceAsc(sell),\n };\n}\n\nexport async function getHiveEngineTradeHistory>(\n symbol: string,\n limit: number = 50\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n table: \"tradesHistory\",\n query: { symbol },\n limit,\n offset: 0,\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineOpenOrders(\n account: string,\n symbol: string,\n limit: number = 100\n): Promise {\n const baseParams = {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n query: { symbol, account },\n limit,\n offset: 0,\n },\n id: 1,\n };\n\n const [buyRaw, sellRaw] = await Promise.all([\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"buyBook\",\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n },\n []\n ),\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"sellBook\",\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n },\n []\n ),\n ]);\n\n const formatTotal = (quantity: string, price: string) =>\n (Number(quantity || 0) * Number(price || 0)).toFixed(8);\n\n const buy: HiveEngineOpenOrder[] = buyRaw.map((order) => ({\n id: order.txId,\n type: \"buy\",\n account: order.account,\n symbol: order.symbol,\n quantity: order.quantity,\n price: order.price,\n total: order.tokensLocked ?? formatTotal(order.quantity, order.price),\n timestamp: Number(order.timestamp ?? 0),\n }));\n\n const sell: HiveEngineOpenOrder[] = sellRaw.map((order) => ({\n id: order.txId,\n type: \"sell\",\n account: order.account,\n symbol: order.symbol,\n quantity: order.quantity,\n price: order.price,\n total: formatTotal(order.quantity, order.price),\n timestamp: Number(order.timestamp ?? 0),\n }));\n\n return [...buy, ...sell].sort((a, b) => b.timestamp - a.timestamp) as T[];\n}\n\n/**\n * Market metrics, optionally narrowed to one symbol or to a list of them.\n *\n * An unfiltered call is served from a single page – the node caps `find` at 1000 rows\n * while Hive engine has far more traded tokens than that – so callers that only care\n * about specific symbols must pass them. Scanning the unfiltered page for a symbol\n * silently reports \"no market\" for everything outside it.\n */\nexport async function getHiveEngineMetrics>(\n symbol?: string | string[],\n account?: string\n): Promise {\n if (Array.isArray(symbol) && symbol.length === 0) {\n return [];\n }\n\n const symbolQuery = Array.isArray(symbol)\n ? { symbol: { $in: symbol } }\n : symbol\n ? { symbol }\n : {};\n\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n table: \"metrics\",\n query: {\n ...symbolQuery,\n ...(account ? { account } : {}),\n },\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokensMarket>(\n account?: string,\n symbol?: string | string[]\n): Promise {\n return getHiveEngineMetrics(symbol, account);\n}\n\nexport async function getHiveEngineTokensBalances>(\n username: string\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"tokens\",\n table: \"balances\",\n query: {\n account: username,\n },\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokensMetadata>(\n tokens: string[]\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"tokens\",\n table: \"tokens\",\n query: {\n symbol: { $in: tokens },\n },\n },\n id: 2,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokenTransactions>(\n username: string,\n symbol: string,\n limit: number,\n offset: number\n): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/engine-account-history\", baseUrl);\n url.searchParams.set(\"account\", username);\n url.searchParams.set(\"symbol\", symbol);\n url.searchParams.set(\"limit\", limit.toString());\n url.searchParams.set(\"offset\", offset.toString());\n\n const response = await fetchApi(url.toString(), {\n method: \"GET\",\n headers: { \"Content-type\": \"application/json\" },\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – account history failed with ${response.status}`\n );\n }\n\n return (await response.json()) as T[];\n}\n\nexport async function getHiveEngineTokenMetrics>(\n symbol: string,\n interval = \"daily\"\n): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/engine-chart-api\", baseUrl);\n url.searchParams.set(\"symbol\", symbol);\n url.searchParams.set(\"interval\", interval);\n\n const response = await fetchApi(url.toString(), {\n headers: { \"Content-type\": \"application/json\" },\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – chart failed with ${response.status}`\n );\n }\n\n return (await response.json()) as T[];\n}\n\nexport async function getHiveEngineUnclaimedRewards>(\n username: string\n): Promise> {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const response = await fetchApi(\n `${baseUrl}/private-api/engine-reward-api/${username}?hive=1`\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – rewards failed with ${response.status}`\n );\n }\n\n return (await response.json()) as Record;\n}\n","import { getHiveEngineTokensBalances } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenBalance } from \"../types\";\n\nexport function getHiveEngineTokensBalancesQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"balances\", username] as const,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensBalances(username);\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineMarketResponse } from \"../types\";\nimport { getHiveEngineTokensMarket } from \"../requests\";\n\nexport function getHiveEngineTokensMarketQueryOptions() {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"markets\"],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensMarket();\n },\n });\n}\n","import { getHiveEngineTokensMetadata } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenMetadataResponse } from \"../types\";\n\nexport function getHiveEngineTokensMetadataQueryOptions(tokens: string[]) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"metadata-list\", tokens] as const,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensMetadata(tokens);\n },\n });\n}\n","import { getHiveEngineTokenTransactions } from \"../requests\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTransaction } from \"../types\";\n\nexport function getHiveEngineTokenTransactionsQueryOptions(\n username: string | undefined,\n symbol: string,\n limit = 20\n) {\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol, \"transactions\", username],\n enabled: !!symbol && !!username,\n initialPageParam: 0,\n queryFn: async ({ pageParam }) => {\n if (!symbol || !username) {\n throw new Error(\n \"[SDK][HiveEngine] – token or username missed\"\n );\n }\n return getHiveEngineTokenTransactions(\n username,\n symbol,\n limit,\n pageParam as number\n );\n },\n getNextPageParam: (lastPage, _allPages, lastPageParam) =>\n (lastPage?.length ?? 0) === limit ? (lastPageParam as number) + limit : undefined,\n getPreviousPageParam: (_firstPage, _allPages, firstPageParam) =>\n (firstPageParam as number) > 0 ? (firstPageParam as number) - limit : undefined,\n });\n}\n","import { getHiveEngineTokenMetrics } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineMetric } from \"../types\";\n\nexport function getHiveEngineTokensMetricsQueryOptions(\n symbol: string,\n interval = \"daily\"\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokenMetrics(symbol, interval);\n },\n });\n}\n","import { getHiveEngineUnclaimedRewards } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenStatus } from \"../types\";\n\nexport function getHiveEngineUnclaimedRewardsQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"unclaimed\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n enabled: !!username,\n queryFn: async () => {\n try {\n const data = await getHiveEngineUnclaimedRewards(\n username as string\n );\n return Object.values(data).filter(\n ({ pending_token }) => pending_token > 0\n );\n } catch (e) {\n return [];\n }\n },\n });\n}\n","import { getHiveEngineTokensMarket } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenInfo } from \"../types\";\n\nexport function getAllHiveEngineTokensQueryOptions(\n account?: string,\n symbol?: string | string[]\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"all-tokens\", account, symbol] as const,\n queryFn: async () => {\n return getHiveEngineTokensMarket(account, symbol);\n },\n });\n}\n","interface Options {\n fractionDigits?: number;\n prefix?: string;\n suffix?: string;\n}\n\nexport function formattedNumber(\n value: number | string,\n options: Options | undefined = undefined\n) {\n let opts: Options = {\n fractionDigits: 3,\n prefix: \"\",\n suffix: \"\",\n };\n\n if (options) {\n opts = { ...opts, ...options };\n }\n\n const { fractionDigits, prefix, suffix } = opts;\n\n let out = \"\";\n\n if (prefix) out += prefix + \" \";\n // turn too small values to zero. Bug: https://github.com/adamwdraper/Numeral-js/issues/563\n const av = Math.abs(parseFloat(value.toString())) < 0.0001 ? 0 : value;\n const num = typeof av === \"string\" ? parseFloat(av) : av;\n out += num.toLocaleString(\"en-US\", {\n minimumFractionDigits: fractionDigits,\n maximumFractionDigits: fractionDigits,\n useGrouping: true,\n });\n if (suffix) out += \" \" + suffix;\n\n return out;\n}\n","import { formattedNumber } from \"./formatted-number\";\n\ninterface HiveEngineTokenProps {\n symbol: string;\n name: string;\n icon: string;\n precision: number;\n stakingEnabled: boolean;\n delegationEnabled: boolean;\n balance: string;\n stake: string;\n delegationsIn: string;\n delegationsOut: string;\n usdValue: number;\n}\n\nexport class HiveEngineToken {\n symbol: string;\n name?: string;\n icon?: string;\n\n precision?: number;\n stakingEnabled?: boolean;\n delegationEnabled?: boolean;\n balance: number;\n stake: number;\n stakedBalance: number;\n delegationsIn: number;\n delegationsOut: number;\n usdValue: number;\n\n constructor(props: HiveEngineTokenProps) {\n this.symbol = props.symbol;\n this.name = props.name || \"\";\n this.icon = props.icon || \"\";\n\n this.precision = props.precision || 0;\n this.stakingEnabled = props.stakingEnabled || false;\n this.delegationEnabled = props.delegationEnabled || false;\n this.balance = parseFloat(props.balance) || 0;\n this.stake = parseFloat(props.stake) || 0;\n this.delegationsIn = parseFloat(props.delegationsIn) || 0;\n this.delegationsOut = parseFloat(props.delegationsOut) || 0;\n this.stakedBalance =\n this.stake + this.delegationsIn - this.delegationsOut;\n this.usdValue = props.usdValue;\n }\n\n hasDelegations = (): boolean => {\n if (!this.delegationEnabled) {\n return false;\n }\n\n return this.delegationsIn > 0 && this.delegationsOut > 0;\n };\n\n delegations = (): string => {\n if (!this.hasDelegations()) {\n return \"\";\n }\n\n return `(${formattedNumber(this.stake, {\n fractionDigits: this.precision,\n })} + ${formattedNumber(this.delegationsIn, {\n fractionDigits: this.precision,\n })} - ${formattedNumber(this.delegationsOut, {\n fractionDigits: this.precision,\n })})`;\n };\n\n staked = (): string => {\n if (!this.stakingEnabled) {\n return \"-\";\n }\n\n if (this.stakedBalance < 0.0001) {\n return this.stakedBalance.toString();\n }\n\n return formattedNumber(this.stakedBalance, {\n fractionDigits: this.precision,\n });\n };\n\n balanced = (): string => {\n if (this.balance < 0.0001) {\n return this.balance.toString();\n }\n\n return formattedNumber(this.balance, { fractionDigits: this.precision });\n };\n}\n","import {\n getHiveEngineTokensBalances,\n getHiveEngineTokensMarket,\n getHiveEngineTokensMetadata,\n} from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type {\n HiveEngineTokenBalance,\n Token,\n TokenMetadata,\n HiveEngineTokenInfo,\n} from \"../types\";\nimport { HiveEngineToken } from \"../utils\";\n\ninterface DynamicProps {\n base: number;\n quote: number;\n}\n\nexport function getHiveEngineBalancesWithUsdQueryOptions(\n account: string,\n dynamicProps?: DynamicProps,\n allTokens?: HiveEngineTokenInfo[]\n) {\n return queryOptions({\n queryKey: [\n \"assets\",\n \"hive-engine\",\n \"balances-with-usd\",\n account,\n dynamicProps,\n allTokens,\n ] as const,\n queryFn: async () => {\n if (!account) {\n throw new Error(\"[HiveEngine] No account in a balances query\");\n }\n\n const balances = await getHiveEngineTokensBalances(account);\n\n const tokens = await getHiveEngineTokensMetadata(\n balances.map((t) => t.symbol)\n );\n\n const pricePerHive = dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0;\n const providedMetrics: ReadonlyArray = Array.isArray(\n allTokens\n )\n ? allTokens\n : [];\n\n // Whatever the caller passed comes from an unfiltered metrics call, which the node\n // caps at 1000 rows – held tokens outside that page have no price and used to be\n // valued at zero, understating the wallet. Ask for the missing ones by symbol.\n const unpricedSymbols = balances\n .map((balance) => balance.symbol)\n .filter(\n (symbol) =>\n symbol !== \"SWAP.HIVE\" &&\n !providedMetrics.some((metric) => metric.symbol === symbol)\n );\n\n const metrics: ReadonlyArray = [\n ...providedMetrics,\n ...(unpricedSymbols.length\n ? await getHiveEngineTokensMarket(\n undefined,\n unpricedSymbols\n )\n : []),\n ];\n\n return balances.map((balance) => {\n const token = tokens.find((t) => t.symbol === balance.symbol);\n let tokenMetadata: TokenMetadata | undefined;\n\n if (token?.metadata) {\n try {\n tokenMetadata = JSON.parse(token.metadata) as TokenMetadata;\n } catch {\n tokenMetadata = undefined;\n }\n }\n\n const metric = metrics.find((m) => m.symbol === balance.symbol);\n const lastPrice = Number(metric?.lastPrice ?? \"0\");\n const balanceAmount = Number(balance.balance);\n\n const usdValue =\n balance.symbol === \"SWAP.HIVE\"\n ? pricePerHive * balanceAmount\n : lastPrice === 0\n ? 0\n : Number(\n (lastPrice * pricePerHive * balanceAmount).toFixed(10)\n );\n\n return new HiveEngineToken({\n symbol: balance.symbol,\n name: token?.name ?? balance.symbol,\n icon: tokenMetadata?.icon ?? \"\",\n precision: token?.precision ?? 0,\n stakingEnabled: token?.stakingEnabled ?? false,\n delegationEnabled: token?.delegationEnabled ?? false,\n balance: balance.balance,\n stake: balance.stake,\n delegationsIn: balance.delegationsIn,\n delegationsOut: balance.delegationsOut,\n usdValue,\n });\n });\n },\n enabled: !!account,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient } from \"@/modules/core\";\nimport type { GeneralAssetInfo } from \"@/modules/wallet/types\";\nimport { getHiveEngineTokensMetadataQueryOptions } from \"./get-hive-engine-tokens-metadata-query-options\";\nimport { getHiveEngineTokensBalancesQueryOptions } from \"./get-hive-engine-tokens-balances-query-options\";\nimport { getAllHiveEngineTokensQueryOptions } from \"./get-all-hive-engine-tokens-query-options\";\nimport { getHiveAssetGeneralInfoQueryOptions } from \"@/modules/wallet/queries/get-hive-asset-general-info-query-options\";\n\nexport function getHiveEngineTokenGeneralInfoQueryOptions(\n username?: string,\n symbol?: string\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol, \"general-info\", username],\n enabled: !!symbol && !!username,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n if (!symbol || !username) {\n throw new Error(\n \"[SDK][HiveEngine] – token or username missed\"\n );\n }\n const queryClient = getQueryClient();\n const hiveQuery = getHiveAssetGeneralInfoQueryOptions(username);\n await queryClient.prefetchQuery(hiveQuery);\n const hiveData = queryClient.getQueryData(\n hiveQuery.queryKey\n );\n\n const metadataList = await queryClient.ensureQueryData(\n getHiveEngineTokensMetadataQueryOptions([symbol])\n );\n\n const balanceList = await queryClient.ensureQueryData(\n getHiveEngineTokensBalancesQueryOptions(username)\n );\n\n // Scoped to this symbol: the unfiltered metrics call is capped at 1000 rows, so a\n // token outside that page reported no market and rendered a zero price.\n const marketList = await queryClient.ensureQueryData(\n getAllHiveEngineTokensQueryOptions(undefined, symbol)\n );\n\n const metadata = metadataList?.find((i) => i.symbol === symbol);\n const balance = balanceList?.find((i) => i.symbol === symbol);\n const market = marketList?.find((i) => i.symbol === symbol);\n\n const lastPrice = +(market?.lastPrice ?? \"0\");\n\n const liquidBalance = parseFloat(balance?.balance ?? \"0\");\n const stakedBalance = parseFloat(balance?.stake ?? \"0\");\n const unstakingBalance = parseFloat(balance?.pendingUnstake ?? \"0\");\n\n const parts: GeneralAssetInfo[\"parts\"] = [\n { name: \"liquid\", balance: liquidBalance },\n { name: \"staked\", balance: stakedBalance },\n ];\n\n if (unstakingBalance > 0) {\n parts.push({ name: \"unstaking\", balance: unstakingBalance });\n }\n\n return {\n name: symbol,\n title: metadata?.name ?? \"\",\n price: lastPrice === 0 ? 0 : Number(lastPrice * (hiveData?.price ?? 0)),\n accountBalance: liquidBalance + stakedBalance,\n layer: \"ENGINE\",\n parts,\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { PointTransaction } from \"../types/point-transaction\";\n\ninterface PointsResponse {\n points: string;\n unclaimed_points: string;\n}\n\nexport function getPointsQueryOptions(username?: string, filter = 0) {\n return queryOptions({\n queryKey: [\"points\", username, filter],\n queryFn: async () => {\n if (!username) {\n throw new Error(\"Get points query – username wasn't provided\");\n }\n\n const name = username.replace(\"@\", \"\");\n\n // Get points\n const pointsResponse = await fetch(CONFIG.privateApiHost + \"/private-api/points\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username: name }),\n });\n\n if (!pointsResponse.ok) {\n throw new Error(`Failed to fetch points: ${pointsResponse.status}`);\n }\n\n const points = (await pointsResponse.json()) as PointsResponse;\n\n // Get transactions\n const transactionsResponse = await fetch(\n CONFIG.privateApiHost + \"/private-api/point-list\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username: name, type: filter }),\n }\n );\n\n if (!transactionsResponse.ok) {\n throw new Error(`Failed to fetch point transactions: ${transactionsResponse.status}`);\n }\n\n const transactions = (await transactionsResponse.json()) as PointTransaction[];\n\n return {\n points: points.points,\n uPoints: points.unclaimed_points,\n transactions,\n } as const;\n },\n staleTime: 30000,\n refetchOnMount: true,\n enabled: !!username,\n });\n}\n","import { getQueryClient } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"@/modules/wallet/types\";\nimport { getPointsQueryOptions } from \"./get-points-query-options\";\n\nexport function getPointsAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"points\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getPointsQueryOptions(username));\n const data = getQueryClient().getQueryData(\n getPointsQueryOptions(username).queryKey\n );\n return {\n name: \"POINTS\",\n title: \"Ecency Points\",\n price: 0.002,\n accountBalance: +(data?.points ?? 0),\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { CONFIG } from \"@/modules/core/config\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { PointTransaction } from \"../types\";\nimport { PointTransactionType } from \"../types\";\nimport type { GeneralAssetTransaction } from \"@/modules/wallet/types\";\n\nexport function getPointsAssetTransactionsQueryOptions(\n username: string | undefined,\n type?: PointTransactionType\n) {\n return queryOptions({\n queryKey: [\"assets\", \"points\", \"transactions\", username, type],\n queryFn: async () => {\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/point-list`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n username,\n type: type ?? 0,\n }),\n }\n );\n const data = (await response.json()) as PointTransaction[];\n return data.map(({ created, type, amount, id, sender, receiver, memo }) => ({\n created: new Date(created),\n type,\n results: [\n {\n amount: parseFloat(amount),\n asset: \"POINTS\",\n },\n ],\n id,\n from: sender ?? undefined,\n to: receiver ?? undefined,\n memo: memo ?? undefined,\n })) satisfies GeneralAssetTransaction[];\n },\n });\n}\n","import { getQueryClient } from \"@/modules/core\";\nimport { getCurrencyRate } from \"@/modules/market\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { getHiveAssetGeneralInfoQueryOptions } from \"./get-hive-asset-general-info-query-options\";\nimport { getHbdAssetGeneralInfoQueryOptions } from \"./get-hbd-asset-general-info-query-options\";\nimport { getHivePowerAssetGeneralInfoQueryOptions } from \"./get-hive-power-asset-general-info-query-options\";\nimport { getHiveEngineTokensBalancesQueryOptions } from \"@/modules/hive-engine/queries\";\nimport { getHiveEngineTokenGeneralInfoQueryOptions } from \"@/modules/hive-engine/queries\";\nimport { getPointsAssetGeneralInfoQueryOptions } from \"@/modules/points/queries\";\nimport {\n getPortfolioQueryOptions,\n type PortfolioResponse,\n type PortfolioWalletItem,\n} from \"./get-portfolio-query-options\";\n\ninterface Options {\n refetch?: boolean;\n currency?: string;\n}\n\nexport function getAccountWalletAssetInfoQueryOptions(\n username: string,\n asset: string,\n options: Options = { refetch: false }\n) {\n const queryClient = getQueryClient();\n const currency = options.currency ?? \"usd\";\n\n const fetchQuery = async (qo: any) => {\n if (options.refetch) {\n await queryClient.fetchQuery(qo);\n } else {\n await queryClient.prefetchQuery(qo);\n }\n return queryClient.getQueryData(qo.queryKey);\n };\n\n const convertPriceToUserCurrency = async (\n assetInfo: GeneralAssetInfo | undefined\n ): Promise => {\n if (!assetInfo || currency === \"usd\") {\n return assetInfo;\n }\n\n try {\n const conversionRate = await getCurrencyRate(currency);\n return {\n ...assetInfo,\n price: assetInfo.price * conversionRate,\n };\n } catch (error) {\n console.warn(`Failed to convert price from USD to ${currency}:`, error);\n return assetInfo;\n }\n };\n\n const portfolioQuery = getPortfolioQueryOptions(username, currency, true);\n\n const getPortfolioAssetInfo = async () => {\n try {\n const portfolio: PortfolioResponse = await queryClient.fetchQuery(portfolioQuery);\n const assetItem = portfolio.wallets.find(\n (item: PortfolioWalletItem) =>\n item.symbol.toUpperCase() === asset.toUpperCase()\n );\n\n if (!assetItem) return undefined;\n\n const parts: Array<{ name: string; balance: number }> = [];\n\n if (assetItem.liquid !== undefined && assetItem.liquid !== null) {\n parts.push({ name: \"liquid\", balance: assetItem.liquid });\n }\n\n if (assetItem.staked !== undefined && assetItem.staked !== null && assetItem.staked > 0) {\n parts.push({ name: \"staked\", balance: assetItem.staked });\n }\n\n if (assetItem.savings !== undefined && assetItem.savings !== null && assetItem.savings > 0) {\n parts.push({ name: \"savings\", balance: assetItem.savings });\n }\n\n if (assetItem.extraData && Array.isArray(assetItem.extraData)) {\n for (const extraItem of assetItem.extraData) {\n if (!extraItem || typeof extraItem !== \"object\") continue;\n\n const dataKey = extraItem.dataKey;\n const value = extraItem.value;\n\n if (typeof value === \"string\") {\n const cleanValue = value.replace(/,/g, \"\");\n const match = cleanValue.match(/[+-]?\\s*(\\d+(?:\\.\\d+)?)/);\n if (match) {\n const numValue = Math.abs(Number.parseFloat(match[1]));\n\n if (dataKey === \"delegated_hive_power\") {\n parts.push({ name: \"outgoing_delegations\", balance: numValue });\n } else if (dataKey === \"received_hive_power\") {\n parts.push({ name: \"incoming_delegations\", balance: numValue });\n } else if (dataKey === \"powering_down_hive_power\") {\n parts.push({ name: \"pending_power_down\", balance: numValue });\n }\n }\n }\n }\n }\n\n return {\n name: assetItem.symbol,\n title: assetItem.name,\n price: assetItem.fiatRate,\n accountBalance: assetItem.balance,\n apr: assetItem.apr?.toString(),\n layer: assetItem.layer,\n pendingRewards: assetItem.pendingRewards,\n parts,\n } as GeneralAssetInfo;\n } catch {\n return undefined;\n }\n };\n\n return queryOptions({\n queryKey: [\"ecency-wallets\", \"asset-info\", username, asset, currency],\n queryFn: async () => {\n const portfolioAssetInfo = await getPortfolioAssetInfo();\n\n if (portfolioAssetInfo && portfolioAssetInfo.price > 0) {\n return portfolioAssetInfo;\n }\n\n let assetInfo: GeneralAssetInfo | undefined;\n\n if (asset === \"HIVE\") {\n assetInfo = await fetchQuery(getHiveAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"HP\") {\n assetInfo = await fetchQuery(getHivePowerAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"HBD\") {\n assetInfo = await fetchQuery(getHbdAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"POINTS\") {\n assetInfo = await fetchQuery(getPointsAssetGeneralInfoQueryOptions(username));\n } else {\n // Check if it's a Hive Engine token\n const balances = await queryClient.ensureQueryData(\n getHiveEngineTokensBalancesQueryOptions(username)\n );\n\n if (balances.some((balance) => balance.symbol === asset)) {\n assetInfo = await fetchQuery(\n getHiveEngineTokenGeneralInfoQueryOptions(username, asset)\n );\n } else if (portfolioAssetInfo) {\n // Unknown asset but portfolio has data — use it as-is\n return portfolioAssetInfo;\n } else {\n throw new Error(\n `[SDK][Wallet] – unrecognized asset \"${asset}\"`\n );\n }\n }\n\n // If portfolio had rich data (parts, balance) but zero price,\n // merge the fallback price into the portfolio data\n if (portfolioAssetInfo && assetInfo && assetInfo.price > 0) {\n const converted = await convertPriceToUserCurrency(assetInfo);\n return {\n ...portfolioAssetInfo,\n price: converted!.price,\n };\n }\n\n return await convertPriceToUserCurrency(assetInfo);\n },\n });\n}\n","export enum AssetOperation {\n // Common\n Transfer = \"transfer\",\n\n // APR\n TransferToSavings = \"transfer-saving\",\n WithdrawFromSavings = \"withdraw-saving\",\n Delegate = \"delegate\",\n PowerUp = \"power-up\",\n PowerDown = \"power-down\",\n WithdrawRoutes = \"withdraw-routes\",\n ClaimInterest = \"claim-interest\",\n Swap = \"swap\",\n Convert = \"convert\",\n\n // Points\n Gift = \"gift\",\n Promote = \"promote\",\n Claim = \"claim\",\n Buy = \"buy\",\n\n // Layer 2\n Stake = \"stake\",\n Unstake = \"unstake\",\n Undelegate = \"undelegate\",\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for transferring tokens.\n */\nexport interface TransferPayload {\n /** Recipient account */\n to: string;\n /** Amount with asset symbol (e.g., \"1.000 HIVE\", \"5.000 HBD\") */\n amount: string;\n /** Transfer memo */\n memo: string;\n}\n\n/**\n * React Query mutation hook for transferring tokens.\n *\n * This mutation broadcasts a transfer operation to send HIVE or HBD\n * to another account. **Requires ACTIVE authority**.\n *\n * Uses `useBroadcastMutation` with the smart auth strategy:\n * - Adapter determines login type and dispatches to appropriate method\n * - If active key not available (common on web), triggers `showAuthUpgradeUI`\n * - Supports keychain, hivesigner, hiveauth, and direct key signing\n *\n * @param username - The username sending the transfer (required for broadcast)\n * @param auth - Authentication context with platform adapter\n *\n * @returns React Query mutation result\n */\nexport function useTransfer(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer\"],\n username,\n (payload) => [\n buildTransferOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildPointTransferOp } from \"@/modules/operations/builders\";\n\nexport interface TransferPointPayload {\n to: string;\n amount: string;\n memo: string;\n}\n\n/**\n * React Query mutation hook for transferring Ecency points.\n *\n * Uses `ecency_point_transfer` custom_json operation with ACTIVE authority.\n */\nexport function useTransferPoint(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-point\"],\n username,\n (payload) => [\n buildPointTransferOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildDelegateVestingSharesOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for delegating Hive Power (vesting shares).\n */\nexport interface DelegateVestingSharesPayload {\n /** Account receiving HP delegation */\n delegatee: string;\n /** Amount of VESTS to delegate (e.g., \"1000.000000 VESTS\"). Use \"0.000000 VESTS\" to remove delegation. */\n vestingShares: string;\n}\n\n/**\n * React Query mutation hook for delegating Hive Power (HP).\n *\n * This mutation broadcasts a delegate_vesting_shares operation to delegate HP\n * to another account. **Requires ACTIVE authority**, not posting.\n *\n * @param username - The username delegating HP (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **IMPORTANT: Active Authority Required**\n * - Delegation operations require ACTIVE key, not posting key\n * - Make sure your auth adapter provides getActiveKey() method\n * - Keychain/HiveAuth will prompt for Active authority\n *\n * **Delegation Mechanics:**\n * - Delegated HP can be used by the delegatee for resource credits\n * - Delegatee CANNOT power down or transfer the delegated HP\n * - Delegation can be removed by setting vestingShares to \"0.000000 VESTS\"\n * - Removing delegation has a 5-day cooldown before HP returns to delegator\n *\n * **Post-Broadcast Actions:**\n * - Invalidates delegations list cache to show updated delegation\n * - Invalidates account data for both delegator and delegatee\n *\n * @example\n * ```typescript\n * const delegateMutation = useDelegateVestingShares(username, {\n * adapter: {\n * ...myAdapter,\n * getActiveKey: async (username) => getActiveKeyFromStorage(username)\n * },\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Delegate HP\n * delegateMutation.mutate({\n * delegatee: 'alice',\n * vestingShares: '1000.000000 VESTS'\n * });\n *\n * // Remove delegation\n * delegateMutation.mutate({\n * delegatee: 'alice',\n * vestingShares: '0.000000 VESTS'\n * });\n * ```\n */\nexport function useDelegateVestingShares(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-vesting-shares\"],\n username,\n (payload) => [\n buildDelegateVestingSharesOp(\n username!,\n payload.delegatee,\n payload.vestingShares\n )\n ],\n async (_result, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.delegatee),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active', // IMPORTANT: Active authority required\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildSetWithdrawVestingRouteOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for setting withdraw vesting route.\n */\nexport interface SetWithdrawVestingRoutePayload {\n /** Account receiving withdrawn vesting */\n toAccount: string;\n /** Percentage to route (0-10000, where 10000 = 100%). Already scaled. */\n percent: number;\n /** Auto convert to vesting (power up) */\n autoVest: boolean;\n}\n\n/**\n * React Query mutation hook for setting withdraw vesting route.\n *\n * This mutation broadcasts a set_withdraw_vesting_route operation to configure\n * where withdrawn VESTS (power down) are sent. **Requires ACTIVE authority**, not posting.\n *\n * @param username - The username setting withdraw route (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **IMPORTANT: Active Authority Required**\n * - Withdraw route operations require ACTIVE key, not posting key\n * - Make sure your auth adapter provides getActiveKey() method\n * - Keychain/HiveAuth will prompt for Active authority\n *\n * **Withdraw Route Mechanics:**\n * - Routes a percentage of power down (withdraw_vesting) to another account\n * - Percent must be between 0-10000 (where 10000 = 100%)\n * - Multiple routes can be set, total cannot exceed 100%\n * - autoVest=true converts withdrawn VESTS to HP in destination account\n * - autoVest=false converts withdrawn VESTS to liquid HIVE\n *\n * **Post-Broadcast Actions:**\n * - Invalidates withdraw routes cache to show updated routes\n * - Invalidates account data for both accounts\n *\n * @example\n * ```typescript\n * const setRouteMutation = useSetWithdrawVestingRoute(username, {\n * adapter: {\n * ...myAdapter,\n * getActiveKey: async (username) => getActiveKeyFromStorage(username)\n * },\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Route 50% of power down to another account (auto vest)\n * setRouteMutation.mutate({\n * toAccount: 'alice',\n * percent: 5000, // 50% (already scaled)\n * autoVest: true\n * });\n *\n * // Route 100% of power down to another account (liquid HIVE)\n * setRouteMutation.mutate({\n * toAccount: 'bob',\n * percent: 10000, // 100% (already scaled)\n * autoVest: false\n * });\n * ```\n */\nexport function useSetWithdrawVestingRoute(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"set-withdraw-vesting-route\"],\n username,\n (payload) => [\n buildSetWithdrawVestingRouteOp(\n username!,\n payload.toAccount,\n payload.percent,\n payload.autoVest\n )\n ],\n async (_result, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.wallet.withdrawRoutes(username!),\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.toAccount)\n ]);\n },\n auth,\n 'active', // IMPORTANT: Active authority required\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface TransferEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n memo: string;\n}\n\nexport function useTransferEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"transfer\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n memo: payload.memo\n }\n });\n return [[\"custom_json\", {\n required_auths: [username!],\n required_posting_auths: [],\n id: \"ssc-mainnet-hive\",\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferToSavingsOp } from \"@/modules/operations/builders\";\n\nexport interface TransferToSavingsPayload {\n to: string;\n amount: string;\n memo: string;\n}\n\nexport function useTransferToSavings(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-to-savings\"],\n username,\n (payload) => [\n buildTransferToSavingsOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferFromSavingsOp } from \"@/modules/operations/builders\";\n\nexport interface TransferFromSavingsPayload {\n to: string;\n amount: string;\n memo: string;\n requestId: number;\n}\n\nexport function useTransferFromSavings(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-from-savings\"],\n username,\n (payload) => [\n buildTransferFromSavingsOp(username!, payload.to, payload.amount, payload.memo, payload.requestId)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferToVestingOp } from \"@/modules/operations/builders\";\n\nexport interface TransferToVestingPayload {\n to: string;\n amount: string;\n}\n\nexport function useTransferToVesting(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-to-vesting\"],\n username,\n (payload) => [\n buildTransferToVestingOp(username!, payload.to, payload.amount)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildWithdrawVestingOp } from \"@/modules/operations/builders\";\n\nexport interface WithdrawVestingPayload {\n vestingShares: string;\n}\n\nexport function useWithdrawVesting(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"withdraw-vesting\"],\n username,\n (payload) => [\n buildWithdrawVestingOp(username!, payload.vestingShares)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildConvertOp, buildCollateralizedConvertOp } from \"@/modules/operations/builders\";\n\nexport interface ConvertPayload {\n amount: string;\n requestId: number;\n collateralized?: boolean;\n}\n\nexport function useConvert(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"convert\"],\n username,\n (payload) => [\n payload.collateralized\n ? buildCollateralizedConvertOp(username!, payload.amount, payload.requestId)\n : buildConvertOp(username!, payload.amount, payload.requestId)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildClaimInterestOps } from \"@/modules/operations/builders\";\n\nexport interface ClaimInterestPayload {\n to: string;\n amount: string;\n memo: string;\n requestId: number;\n}\n\nexport function useClaimInterest(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-interest\"],\n username,\n (payload) => buildClaimInterestOps(username!, payload.to, payload.amount, payload.memo, payload.requestId),\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys, getQueryClient } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildClaimRewardBalanceOp } from \"@/modules/operations/builders\";\n\nexport interface ClaimRewardsPayload {\n rewardHive: string;\n rewardHbd: string;\n rewardVests: string;\n}\n\nconst CLAIM_REWARDS_INVALIDATION_DELAY_MS = 5000;\nconst pendingInvalidationTimers = new Map>();\n\nexport function useClaimRewards(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-rewards\"],\n username,\n (payload) => [\n buildClaimRewardBalanceOp(username!, payload.rewardHive, payload.rewardHbd, payload.rewardVests)\n ],\n () => {\n const timerKey = username ?? \"__anonymous__\";\n const keysToInvalidate = [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n QueryKeys.assets.hiveGeneralInfo(username!),\n QueryKeys.assets.hbdGeneralInfo(username!),\n QueryKeys.assets.hivePowerGeneralInfo(username!),\n ];\n\n // Delay invalidation to allow blockchain to propagate the transaction.\n // Immediate invalidation would fetch stale (pre-confirmation) data.\n const existingTimer = pendingInvalidationTimers.get(timerKey);\n if (existingTimer) {\n clearTimeout(existingTimer);\n pendingInvalidationTimers.delete(timerKey);\n }\n\n const timer = setTimeout(async () => {\n try {\n const qc = getQueryClient();\n const results = await Promise.allSettled(\n keysToInvalidate.map((key) => qc.invalidateQueries({ queryKey: key }))\n );\n const rejected = results.filter((result) => result.status === \"rejected\");\n if (rejected.length > 0) {\n console.error(\"[SDK][Wallet][useClaimRewards] delayed invalidation rejected\", {\n username,\n rejectedCount: rejected.length,\n rejected\n });\n }\n } catch (error) {\n console.error(\"[SDK][Wallet][useClaimRewards] delayed invalidation failed\", {\n username,\n error\n });\n } finally {\n pendingInvalidationTimers.delete(timerKey);\n }\n }, CLAIM_REWARDS_INVALIDATION_DELAY_MS);\n\n pendingInvalidationTimers.set(timerKey, timer);\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface DelegateEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useDelegateEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"delegate\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface UndelegateEngineTokenPayload {\n from: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useUndelegateEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"undelegate-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"undelegate\",\n contractPayload: {\n symbol: payload.symbol,\n from: payload.from,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface StakeEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useStakeEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"stake-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"stake\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface UnstakeEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useUnstakeEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"unstake-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"unstake\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface ClaimEngineRewardsPayload {\n tokens: string[];\n}\n\nexport function useClaimEngineRewards(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-engine-rewards\"],\n username,\n (payload) => {\n const json = JSON.stringify(payload.tokens.map((symbol) => ({ symbol })));\n return [[\"custom_json\", {\n id: \"scot_claim_token\",\n required_auths: [],\n required_posting_auths: [username!],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface EngineMarketOrderPayload {\n action: \"buy\" | \"sell\" | \"cancel\";\n symbol: string;\n quantity?: string;\n price?: string;\n orderId?: string;\n orderType?: \"buy\" | \"sell\";\n}\n\nexport function useEngineMarketOrder(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"engine-market-order\"],\n username,\n (payload) => {\n let contractPayload: Record;\n let contractAction: string;\n\n if (payload.action === \"cancel\") {\n contractAction = \"cancel\";\n contractPayload = {\n type: payload.orderType!,\n id: payload.orderId!,\n };\n } else {\n contractAction = payload.action;\n contractPayload = {\n symbol: payload.symbol,\n quantity: payload.quantity!,\n price: payload.price!,\n };\n }\n\n const json = JSON.stringify({\n contractName: \"market\",\n contractAction,\n contractPayload,\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { EcencyAnalytics } from \"@/modules/analytics\";\nimport { getQueryClient } from \"@/modules/core\";\nimport type { AuthorityLevel } from \"@/modules/operations/authority-map\";\nimport { AssetOperation } from \"../types\";\nimport {\n buildTransferOp,\n buildTransferToSavingsOp,\n buildTransferFromSavingsOp,\n buildTransferToVestingOp,\n buildWithdrawVestingOp,\n buildDelegateVestingSharesOp,\n buildSetWithdrawVestingRouteOp,\n buildConvertOp,\n buildClaimInterestOps,\n buildPointTransferOp,\n buildEngineOp,\n buildEngineClaimOp,\n} from \"@/modules/operations/builders\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface WalletOperationPayload {\n from: string;\n to?: string;\n amount?: string;\n memo?: string;\n request_id?: number;\n from_account?: string;\n to_account?: string;\n percent?: number;\n auto_vest?: boolean;\n mode?: string;\n [key: string]: unknown;\n}\n\nfunction buildHiveOperations(\n asset: string,\n operation: AssetOperation,\n payload: WalletOperationPayload\n): Operation[] | null {\n const { from, to = \"\", amount = \"\", memo = \"\" } = payload;\n const requestId = payload.request_id ?? (Date.now() >>> 0);\n\n switch (asset) {\n case \"HIVE\":\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildTransferOp(from, to, amount, memo)];\n case AssetOperation.TransferToSavings:\n return [buildTransferToSavingsOp(from, to, amount, memo)];\n case AssetOperation.WithdrawFromSavings:\n return [buildTransferFromSavingsOp(from, to, amount, memo, requestId)];\n case AssetOperation.PowerUp:\n return [buildTransferToVestingOp(from, to, amount)];\n }\n break;\n\n case \"HBD\":\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildTransferOp(from, to, amount, memo)];\n case AssetOperation.TransferToSavings:\n return [buildTransferToSavingsOp(from, to, amount, memo)];\n case AssetOperation.WithdrawFromSavings:\n return [buildTransferFromSavingsOp(from, to, amount, memo, requestId)];\n case AssetOperation.ClaimInterest:\n return buildClaimInterestOps(from, to, amount, memo, requestId);\n case AssetOperation.Convert:\n return [buildConvertOp(from, amount, Math.floor(Date.now() / 1000))];\n }\n break;\n\n case \"HP\":\n switch (operation) {\n case AssetOperation.PowerDown:\n return [buildWithdrawVestingOp(from, amount)];\n case AssetOperation.Delegate:\n return [buildDelegateVestingSharesOp(from, to, amount)];\n case AssetOperation.WithdrawRoutes:\n return [buildSetWithdrawVestingRouteOp(\n payload.from_account ?? from,\n payload.to_account ?? to,\n payload.percent ?? 0,\n payload.auto_vest ?? false\n )];\n }\n break;\n\n case \"POINTS\":\n if (operation === AssetOperation.Transfer || operation === AssetOperation.Gift) {\n return [buildPointTransferOp(from, to, amount, memo)];\n }\n break;\n }\n\n return null;\n}\n\nfunction buildEngineOperations(\n asset: string,\n operation: AssetOperation,\n payload: WalletOperationPayload\n): Operation[] | null {\n const { from, to = \"\", amount = \"\" } = payload;\n const quantity = typeof amount === \"string\" && amount.includes(\" \")\n ? amount.split(\" \")[0]\n : String(amount);\n\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildEngineOp(from, \"transfer\", {\n symbol: asset, to, quantity, memo: payload.memo ?? \"\"\n })];\n case AssetOperation.Stake:\n return [buildEngineOp(from, \"stake\", { symbol: asset, to, quantity })];\n case AssetOperation.Unstake:\n return [buildEngineOp(from, \"unstake\", { symbol: asset, to, quantity })];\n case AssetOperation.Delegate:\n return [buildEngineOp(from, \"delegate\", { symbol: asset, to, quantity })];\n case AssetOperation.Undelegate:\n return [buildEngineOp(from, \"undelegate\", { symbol: asset, from: to, quantity })];\n case AssetOperation.Claim:\n return [buildEngineClaimOp(from, [asset])];\n }\n\n return null;\n}\n\n/**\n * Determines authority level for a wallet operation.\n * Engine token claims use posting authority; everything else uses active.\n */\nfunction getWalletOperationAuthority(operation: AssetOperation): AuthorityLevel {\n if (operation === AssetOperation.Claim) {\n return 'posting';\n }\n return 'active';\n}\n\n/**\n * Meta-mutation hook that dispatches wallet operations based on asset and operation type.\n *\n * Supports HIVE, HBD, HP, POINTS, and Hive Engine tokens.\n * Uses `useBroadcastMutation` for unified auth handling via `AuthContextV2`.\n *\n * @param username - The Hive account performing the operation\n * @param asset - The asset symbol (e.g., \"HIVE\", \"HBD\", \"HP\", \"POINTS\", or engine token)\n * @param operation - The operation type from AssetOperation enum\n * @param auth - Auth context for broadcasting\n */\nexport function useWalletOperation(\n username: string | undefined,\n asset: string,\n operation: AssetOperation,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n const { mutateAsync: recordActivity } = EcencyAnalytics.useRecordActivity(\n username,\n operation as any\n );\n\n return useBroadcastMutation(\n [\"ecency-wallets\", asset, operation],\n username,\n (payload) => {\n // Try native Hive + POINTS operations\n const hiveOps = buildHiveOperations(asset, operation, payload);\n if (hiveOps) return hiveOps;\n\n // Try engine token operations\n const engineOps = buildEngineOperations(asset, operation, payload);\n if (engineOps) return engineOps;\n\n throw new Error(`[SDK][Wallet] – no operation builder for asset=\"${asset}\" operation=\"${operation}\"`);\n },\n () => {\n recordActivity();\n\n const keysToInvalidate: (string | undefined)[][] = [];\n\n // Invalidate asset-specific queries (prefix-matches all currency variants)\n keysToInvalidate.push([\"ecency-wallets\", \"asset-info\", username, asset]);\n\n if (asset === \"HIVE\") {\n keysToInvalidate.push([\"ecency-wallets\", \"asset-info\", username, \"HP\"]);\n }\n\n // Invalidate portfolio (prefix-matches all currency/filter variants)\n keysToInvalidate.push([\"wallet\", \"portfolio\", \"v2\", username]);\n\n // Delay invalidation to allow blockchain to process\n setTimeout(() => {\n keysToInvalidate.forEach((key) => {\n getQueryClient().invalidateQueries({ queryKey: key });\n });\n }, 5000);\n },\n auth,\n getWalletOperationAuthority(operation),\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildDelegateRcOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface DelegateRcPayload {\n to: string;\n maxRc: string | number;\n}\n\nexport function useDelegateRc(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-rc\"],\n username,\n ({ to, maxRc }) => [\n buildDelegateRcOp(username!, to, maxRc)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n QueryKeys.resourceCredits.account(username!),\n QueryKeys.resourceCredits.account(variables.to),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildWitnessVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for voting for a witness.\n */\nexport interface WitnessVotePayload {\n /** Witness account name to vote for/against */\n witness: string;\n /** True to approve, false to disapprove */\n approve: boolean;\n}\n\n/**\n * React Query mutation hook for voting for a Hive witness.\n *\n * This mutation broadcasts an account_witness_vote operation to vote for\n * or remove a vote from a witness.\n *\n * @param username - The username voting for the witness (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates account data cache to show updated witness votes\n * - Invalidates witness votes cache\n *\n * **Vote Types:**\n * - approve: true - Vote for the witness\n * - approve: false - Remove your vote from the witness\n *\n * **Authority Required:**\n * - Active authority is required for witness voting\n *\n * @example\n * ```typescript\n * const witnessVoteMutation = useWitnessVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Vote for a witness\n * witnessVoteMutation.mutate({\n * witness: 'good-karma',\n * approve: true\n * });\n *\n * // Remove vote from a witness\n * witnessVoteMutation.mutate({\n * witness: 'good-karma',\n * approve: false\n * });\n * ```\n */\nexport function useWitnessVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"witnesses\", \"vote\"],\n username,\n ({ witness, approve }) => [\n buildWitnessVoteOp(username!, witness, approve)\n ],\n async () => {\n // Wrap post-broadcast side-effects in try-catch to prevent propagating errors\n try {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.witnesses.votes(username)\n ]);\n }\n } catch (error) {\n // Log but don't rethrow - don't fail mutation due to side-effect errors\n console.warn('[useWitnessVote] Post-broadcast side-effect failed:', error);\n }\n },\n auth,\n 'active', // Use active authority for witness votes (required by blockchain)\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildWitnessProxyOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface WitnessProxyPayload {\n proxy: string;\n}\n\nexport function useWitnessProxy(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"witnesses\", \"proxy\"],\n username,\n ({ proxy }) => [\n buildWitnessProxyOp(username!, proxy)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.witnesses.proxy(),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Witness, WitnessVotersResponse } from \"../types\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\n\ntype WitnessPage = Witness[];\ntype WitnessCursor = number;\n\ninterface HafbeWitness {\n witness_name: string;\n rank: number;\n url: string;\n vests: string;\n votes_daily_change: string;\n voters_num: number;\n voters_num_daily_change: number;\n price_feed: number;\n bias: number;\n feed_updated_at: string;\n block_size: number;\n signing_key: string;\n version: string;\n missed_blocks: number;\n hbd_interest_rate: number;\n last_confirmed_block_num: number;\n account_creation_fee: number;\n}\n\ninterface HafbeWitnessesResponse {\n total_witnesses: number;\n total_pages: number;\n witnesses: HafbeWitness[];\n}\n\n/**\n * Map a hafbe-api witness to the SDK Witness shape so existing consumers\n * (e.g. the web app's transform()) keep working unchanged.\n */\nfunction mapRestWitness(w: HafbeWitness): Witness {\n return {\n owner: w.witness_name,\n total_missed: w.missed_blocks,\n url: w.url,\n props: {\n account_creation_fee: `${(w.account_creation_fee / 1000).toFixed(3)} HIVE`,\n account_subsidy_budget: 0,\n maximum_block_size: w.block_size,\n },\n hbd_exchange_rate: {\n base: `${w.price_feed.toFixed(3)} HBD`,\n },\n available_witness_account_subsidies: 0,\n running_version: w.version,\n signing_key: w.signing_key,\n last_hbd_exchange_update: w.feed_updated_at,\n rank: w.rank,\n vests: w.vests,\n voters_num: w.voters_num,\n voters_num_daily_change: w.voters_num_daily_change,\n price_feed: w.price_feed,\n hbd_interest_rate: w.hbd_interest_rate,\n last_confirmed_block_num: w.last_confirmed_block_num,\n };\n}\n\n/**\n * Get witnesses ordered by vote count (infinite scroll).\n * Uses the hafbe-api REST endpoint - replaces multi-call RPC assembly\n * with a single paginated call. Includes voter count, rank, and other\n * data that was previously unavailable.\n *\n * @param limit - Number of witnesses per page\n */\nexport function getWitnessesInfiniteQueryOptions(limit: number) {\n return infiniteQueryOptions<\n WitnessPage,\n Error,\n InfiniteData,\n (string | number)[],\n WitnessCursor\n >({\n queryKey: QueryKeys.witnesses.list(limit),\n initialPageParam: 1 as WitnessCursor,\n\n queryFn: async ({ pageParam }: { pageParam: WitnessCursor }) => {\n const response = (await callREST(\n \"hafbe\",\n \"/witnesses\",\n {\n \"page-size\": limit,\n page: pageParam,\n }\n )) as HafbeWitnessesResponse;\n\n return response.witnesses.map(mapRestWitness);\n },\n\n getNextPageParam: (lastPage, _allPages, lastPageParam) =>\n lastPage.length === limit ? lastPageParam + 1 : undefined,\n });\n}\n\nexport type WitnessVoterSortField =\n | \"vests\"\n | \"account_vests\"\n | \"proxied_vests\"\n | \"account_name\"\n | \"timestamp\";\n\nexport type WitnessVoterSortDirection = \"asc\" | \"desc\";\n\n/**\n * Get a single page of voters for a specific witness.\n *\n * Server-side pagination + sort: each page click fetches that page directly\n * from hafbe rather than scrolling through accumulated pages on the client.\n *\n * @param witness - Witness account name\n * @param page - 1-based page index\n * @param pageSize - Number of voters per page\n * @param sort - Field to sort by\n * @param direction - asc or desc\n */\nexport function getWitnessVotersPageQueryOptions(\n witness: string,\n page: number,\n pageSize: number,\n sort: WitnessVoterSortField = \"vests\",\n direction: WitnessVoterSortDirection = \"desc\"\n) {\n return queryOptions({\n queryKey: QueryKeys.witnesses.voters(witness, page, pageSize, sort, direction),\n queryFn: async ({ signal }) => {\n return (await callREST(\n \"hafbe\",\n \"/witnesses/{witness-name}/voters\",\n {\n \"witness-name\": witness,\n \"page-size\": pageSize,\n page,\n sort,\n direction,\n },\n undefined,\n undefined,\n signal\n )) as WitnessVotersResponse;\n },\n enabled: !!witness,\n staleTime: 60_000,\n });\n}\n\n/**\n * Get total voter count for a witness.\n *\n * @param witness - Witness account name\n */\nexport function getWitnessVoterCountQueryOptions(witness: string) {\n return queryOptions({\n queryKey: QueryKeys.witnesses.voterCount(witness),\n queryFn: async () => {\n return (await callREST(\n \"hafbe\",\n \"/witnesses/{witness-name}/voters/count\",\n { \"witness-name\": witness }\n )) as number;\n },\n enabled: !!witness,\n staleTime: 60_000,\n });\n}\n","export enum PointTransactionType {\n CHECKIN = 10,\n LOGIN = 20,\n CHECKIN_EXTRA = 30,\n POST = 100,\n COMMENT = 110,\n VOTE = 120,\n REBLOG = 130,\n DELEGATION = 150,\n REFERRAL = 160,\n COMMUNITY = 170,\n TRANSFER_SENT = 998,\n TRANSFER_INCOMING = 999,\n MINTED = 991,\n /**\n * Points burned out of supply rather than moved to the treasury. Written by the\n * AI surfaces (assist, image, transcribe), which pay a real per-request vendor\n * bill, so the Points are consumed rather than parked.\n *\n * The row carries no counterparty at all, which is what distinguishes it from\n * TRANSFER_SENT: `sender` and `receiver` are both null. A refund of a burn comes\n * back as this same type with a positive amount, so read the sign rather than\n * assuming a burn is always a debit.\n */\n BURNED = 997,\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { EcencyAnalytics } from \"@/modules/analytics\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { getPointsQueryOptions } from \"../queries\";\nimport type { Points } from \"../types\";\n\n/**\n * POST a points claim and return the parsed JSON body.\n *\n * The endpoint normally answers with JSON, but an edge/proxy layer can\n * occasionally return a 2xx whose body is an HTML interstitial or plain text\n * (ECENCY-NEXT-1FCJ). Calling `response.json()` on that throws a bare\n * `SyntaxError` that names neither the endpoint nor the cause. Instead we check\n * the content type first and fail with a STABLE, low-cardinality message\n * (content type + status) — never the raw body — so these group as a single\n * Sentry issue instead of fragmenting on every distinct HTML page.\n */\nexport async function claimPointsRequest(\n username: string | undefined,\n accessToken: string | undefined\n) {\n if (!username) {\n throw new Error(\"[SDK][Points][Claim] – username wasn't provided\");\n }\n\n if (!accessToken) {\n throw new Error(\"[SDK][Points][Claim] – access token wasn't found\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/points-claim\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n }\n );\n\n // Media types are case-insensitive; normalise once and reuse in every branch.\n const contentType = (response.headers.get(\"content-type\") ?? \"\")\n .split(\";\")[0]\n .trim()\n .toLowerCase();\n const body = await response.text();\n\n if (!response.ok) {\n if (response.status === 406) {\n try {\n return JSON.parse(body);\n } catch {\n return { message: body, code: response.status };\n }\n }\n // Only fold a short JSON error body into the message; an HTML gateway page\n // (e.g. 502/503) would otherwise fragment the Sentry group per distinct\n // page — the same problem the non-JSON guard below avoids for a 2xx body.\n const detail =\n body && contentType.includes(\"json\") ? `: ${body.slice(0, 200)}` : \"\";\n throw new Error(\n `[SDK][Points][Claim] – failed with status ${response.status}${detail}`\n );\n }\n\n if (!contentType.includes(\"json\")) {\n throw new Error(\n `[SDK][Points][Claim] – expected JSON but received \"${contentType || \"empty\"}\" response (status ${response.status})`\n );\n }\n\n try {\n return JSON.parse(body);\n } catch {\n throw new Error(\n `[SDK][Points][Claim] – malformed JSON response (status ${response.status})`\n );\n }\n}\n\nexport function useClaimPoints(\n username: string | undefined,\n accessToken: string | undefined,\n onSuccess?: () => void,\n onError?: Parameters[\"0\"][\"onError\"]\n) {\n const { mutateAsync: recordActivity } = EcencyAnalytics.useRecordActivity(\n username,\n \"points-claimed\"\n );\n\n return useMutation({\n mutationFn: () => claimPointsRequest(username, accessToken),\n onError,\n onSuccess: () => {\n recordActivity();\n\n getQueryClient().setQueryData(\n getPointsQueryOptions(username).queryKey,\n (data) => {\n if (!data) {\n return data;\n }\n\n return {\n ...data,\n points: (\n parseFloat(data.points) + parseFloat(data.uPoints)\n ).toFixed(3),\n uPoints: \"0\",\n };\n }\n );\n\n onSuccess?.();\n },\n });\n}\n","// A token only counts at the start of the query or after whitespace, matching\n// the search API's parser. Unanchored, these matched inside ordinary words:\n// \"prototype:v2\" read as type=v2 and the API rejected it as an invalid type,\n// \"subcategory:hive-1\" filtered on category=hive-1 with a stray \"sub\" left as\n// required text. The boundary is captured rather than looked behind so it can\n// be put back when the token is stripped, keeping the neighbouring words apart\n// (a lookbehind would also be fine here, but this stays portable).\nconst author_re = /(^|\\s)author:([^\\s]+)/g;\nconst type_re = /(^|\\s)type:([^\\s]+)/g;\nconst category_re = /(^|\\s)category:([^\\s]+)/g;\nconst tag_re = /(^|\\s)tag:([^\\s]+)/g;\n\n// Index of the token value in a match; group 1 is the boundary.\nconst VALUE = 2;\n\nexport enum SearchType {\n ALL = \"\",\n POST = \"post\",\n COMMENT = \"comment\"\n}\n\nexport const MAX_SEARCH_TAGS = 5;\n\n// The search API applies both caps itself (see query_validator); mirrored here\n// so the client can refuse instead of turning a 400 into an empty result list.\nexport const MAX_SEARCH_QUERY_LENGTH = 100;\n\n/**\n * Both parsers match a token with /author:([^\\s]+)/, so a value containing a\n * space stops filtering at the space and the remainder silently becomes\n * required free text. Keep the first word only, which is what the API would\n * have filtered on anyway.\n */\nfunction firstToken(value: string): string {\n return value.trim().split(/\\s+/)[0] ?? \"\";\n}\n\n/**\n * Hive account names are lowercase and the API filters authors with an exact\n * term query, so \"@Demo\" has to become \"demo\" or it matches nothing.\n */\nexport function normalizeSearchAuthor(value: string): string {\n return firstToken(value).replace(/^@+/, \"\").toLowerCase();\n}\n\nexport function normalizeSearchCategory(value: string): string {\n // Leading \"#\" goes for the same reason it goes on tags: a category is matched\n // by an exact term query, and users write categories the way they write tags.\n return firstToken(value).replace(/^#+/, \"\").toLowerCase();\n}\n\n/**\n * Accepts what a user actually types (\"travel, photography\", \"#travel travel\")\n * and returns exact-match ready tags, deduped in first-seen order.\n */\nexport function normalizeSearchTags(value: string): string[] {\n const seen = new Set();\n\n return value\n .split(/[\\s,]+/)\n .map((tag) => tag.replace(/^#+/, \"\").toLowerCase())\n .filter((tag) => {\n if (tag === \"\" || seen.has(tag)) {\n return false;\n }\n\n seen.add(tag);\n return true;\n });\n}\n\nexport interface SearchQueryParts {\n search?: string;\n author?: string;\n type?: SearchType;\n category?: string;\n /** Raw user input (\"a, b\") or an already split list. */\n tags?: string | string[];\n}\n\nexport interface BuiltSearchQuery {\n /** The `q` value to put in the URL. Round-trips through `SearchQuery`. */\n q: string;\n search: string;\n author: string;\n type: SearchType;\n category: string;\n tags: string[];\n}\n\n/**\n * Assembles the single `q` string that both this app and the search API parse\n * back into filters. Returns the normalized parts too, because the caller has\n * to validate the tag count and the total length before navigating.\n */\nexport function buildSearchQuery({\n search = \"\",\n author = \"\",\n type = SearchType.ALL,\n category = \"\",\n tags = []\n}: SearchQueryParts): BuiltSearchQuery {\n const normalizedSearch = search.trim().replace(/\\s+/g, \" \");\n const normalizedAuthor = normalizeSearchAuthor(author);\n const normalizedCategory = normalizeSearchCategory(category);\n const normalizedTags = normalizeSearchTags(Array.isArray(tags) ? tags.join(\",\") : tags);\n\n const parts = [normalizedSearch];\n\n if (normalizedAuthor) {\n parts.push(`author:${normalizedAuthor}`);\n }\n\n if (type) {\n parts.push(`type:${type}`);\n }\n\n if (normalizedCategory) {\n parts.push(`category:${normalizedCategory}`);\n }\n\n if (normalizedTags.length > 0) {\n // No space after the commas: a tag token ends at the first space, so\n // anything past one stops filtering and becomes required free text.\n parts.push(`tag:${normalizedTags.join(\",\")}`);\n }\n\n return {\n // Dropping the empty free text here is what keeps a filter-only query from\n // starting with a space.\n q: parts.filter((part) => part !== \"\").join(\" \"),\n search: normalizedSearch,\n author: normalizedAuthor,\n type,\n category: normalizedCategory,\n tags: normalizedTags\n };\n}\n\nexport class SearchQuery {\n public query: string = \"\";\n public search: string = \"\";\n public author: string = \"\";\n public type: SearchType = SearchType.ALL;\n public category: string = \"\";\n public tags: string[] = [];\n\n constructor(_query: string) {\n this.query = _query;\n this.search = _query;\n\n this.grabAuthor();\n this.grabType();\n this.grabCategory();\n this.grabTags();\n this.grabSearch();\n }\n\n private grab = (re: RegExp): string => {\n // @ts-ignore\n const matches = [...this.query.matchAll(re)];\n if (matches.length > 0) {\n return matches[0][VALUE].trim();\n }\n\n return \"\";\n };\n\n private grabAuthor = () => {\n this.author = this.grab(author_re);\n };\n\n private grabType = () => {\n const type = this.grab(type_re) as SearchType;\n if (Object.values(SearchType).includes(type)) {\n this.type = type as SearchType;\n }\n };\n\n private grabCategory = () => {\n this.category = this.grab(category_re);\n };\n\n private grabTags = () => {\n // Every tag: token counts, not just the first one. The API joins all of its\n // own tag: matches before splitting on commas, so reading only the first\n // token here under-reports the tags a query really applies and let a query\n // past the MAX_SEARCH_TAGS guard that the API then rejects with a 400.\n // A trailing comma (\"tag:a,\") must not yield an empty tag either - it would\n // be shown back as a phantom tag and counted against the same cap.\n const seen = new Set();\n\n this.tags = [...this.query.matchAll(tag_re)]\n .flatMap((match) => match[VALUE].split(\",\"))\n .map((tag) => tag.trim())\n .filter((tag) => {\n if (tag === \"\" || seen.has(tag)) {\n return false;\n }\n\n seen.add(tag);\n return true;\n });\n };\n\n private grabSearch = () => {\n [author_re, type_re, category_re, tag_re].forEach((r) => {\n // Put the captured boundary back, or removing a mid-query token would\n // run the words either side of it together.\n this.search = this.search.replace(r, \"$1\");\n });\n\n while (this.search.indexOf(\" \") !== -1) {\n this.search = this.search.replace(\" \", \" \");\n }\n\n this.search = this.search.trim();\n };\n}\n","export type RequestError = Error & { status?: number; data?: unknown };\n\n/**\n * Reads a response body and, when the status is not OK, throws an error that\n * keeps both the status and the parsed body.\n *\n * The search backend answers a malformed query with an explanation the user can\n * act on (\"Maximum 5 tags!\", \"Query string too long! ...\", \"Parsed query is\n * empty!\"). Dropping the body leaves callers with a bare status: they can\n * neither tell the user what to change nor tell a deterministic rejection from\n * a transient failure worth retrying.\n *\n * Module-internal on purpose - it is not part of the published SDK surface.\n */\nexport async function parseJsonResponse(\n response: Response,\n /**\n * Shape guard for a SUCCESSFUL body. JSON.parse happily accepts `null`,\n * `\"maintenance\"` and `{\"error\": \"...\"}`, none of which are the payload the\n * caller asked for, and all of which would otherwise be returned as `T` and\n * cached as valid data. Callers that have a known shape pass a guard so an\n * unexpected 200 fails here instead of at the first property access.\n */\n isValid?: (data: unknown) => boolean\n): Promise {\n const parseBody = async (): Promise => {\n // Read the body ONCE. Calling json() and then falling back to text() on the\n // same response cannot work: json() consumes the stream, so the fallback\n // always threw and the raw body of a non-JSON failure (an HTML error page\n // from a proxy) was silently lost.\n let raw: string;\n try {\n raw = await response.text();\n } catch {\n return undefined;\n }\n\n if (raw === \"\") {\n return undefined;\n }\n\n try {\n return JSON.parse(raw) as unknown;\n } catch {\n // Raw text is a diagnostic, not a payload. On a failed response it is\n // what the caller shows or logs, but on a 2xx returning it would hand\n // back a string typed as the parsed body: callers reading `.results`\n // would see undefined and report an empty result set, and the\n // controversial/rising pager would throw on `resp.results.length`. An\n // unparseable success is a failure, so let it fall through to the throw\n // below rather than caching a string as a SearchResponse.\n return response.ok ? undefined : raw;\n }\n };\n\n const data = await parseBody();\n if (!response.ok) {\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n if (data === undefined || (isValid !== undefined && !isValid(data))) {\n throw new Error(\"Response body was empty, invalid JSON, or not the expected shape\");\n }\n\n return data as T;\n}\n\n/**\n * The contract every /search-api consumer relies on: an object carrying a\n * `results` array. Enough to keep a stray 200 from reaching `resp.results.length`.\n */\nexport function isSearchResponse(data: unknown): boolean {\n return (\n typeof data === \"object\" &&\n data !== null &&\n Array.isArray((data as { results?: unknown }).results)\n );\n}\n","import { isServer } from \"@tanstack/react-query\";\nimport type { RequestError } from \"./parse-json-response\";\n\n/**\n * The app-wide default the browser QueryClient uses. Restated because supplying\n * a `retry` callback replaces React Query's own budget rather than adding to it.\n *\n * The 0 on the server is load-bearing: server QueryClients set `retry: false`\n * globally, and these queries are prefetched during SSR, so a flat 3 would\n * resurrect SSR retries against a single-region backend.\n */\nconst MAX_RETRIES = isServer ? 0 : 3;\n\n/**\n * Shared retry rule for every /search-api call.\n *\n * A 4xx is the backend rejecting the query itself (too many tags, over the\n * length cap, nothing left to search once the filters are parsed out).\n * Repeating it repeats the same answer, so the only effect is four requests\n * over several seconds before the UI can say what to change.\n *\n * 408 and 429 are the exceptions: they describe when the request arrived rather\n * than what it contained, and backing off is what resolves them. A client-side\n * timeout aborts the fetch and carries no status at all, so it falls through to\n * the normal budget like any other transport failure.\n */\nexport function searchRetryPolicy(failureCount: number, error: Error): boolean {\n const { status } = error as RequestError;\n const isTransient = status === 408 || status === 429;\n\n if (status !== undefined && status >= 400 && status < 500 && !isTransient) {\n return false;\n }\n\n return failureCount < MAX_RETRIES;\n}\n","import { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, INTERNAL_API_TIMEOUT_MS, withTimeoutSignal, QueryKeys } from \"@/modules/core\";\nimport { SearchResponse } from \"../types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"../parse-json-response\";\nimport { searchRetryPolicy } from \"../retry-policy\";\n\nexport function searchQueryOptions(\n q: string,\n sort: string,\n hideLow: string,\n since?: string,\n scroll_id?: string,\n votes?: number\n) {\n return queryOptions({\n queryKey: QueryKeys.search.results(q, sort, hideLow, since, scroll_id, votes),\n queryFn: async ({ signal }) => {\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) data.since = since;\n if (scroll_id) data.scroll_id = scroll_id;\n if (votes) data.votes = votes;\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body) instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n retry: searchRetryPolicy,\n });\n}\n\ntype PageParam = {\n sid: string | undefined;\n hasNextPage: boolean;\n};\n\nexport function getControversialRisingInfiniteQueryOptions(\n what: string,\n tag: string,\n enabled = true\n) {\n return infiniteQueryOptions<\n SearchResponse,\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.search.controversialRising(what, tag),\n initialPageParam: { sid: undefined, hasNextPage: true } as PageParam,\n\n queryFn: async ({ pageParam, signal }: { pageParam: PageParam; signal: AbortSignal }) => {\n if (!pageParam.hasNextPage) {\n return {\n hits: 0,\n took: 0,\n results: [],\n };\n }\n\n let sinceDate: Date | undefined;\n const now = new Date();\n\n switch (tag) {\n case \"today\":\n sinceDate = new Date(now.getTime() - 24 * 60 * 60 * 1000);\n break;\n case \"week\":\n sinceDate = new Date(now.getTime() - 7 * 24 * 60 * 60 * 1000);\n break;\n case \"month\":\n sinceDate = new Date(now.getTime() - 30 * 24 * 60 * 60 * 1000);\n break;\n case \"year\":\n sinceDate = new Date(now.getTime() - 365 * 24 * 60 * 60 * 1000);\n break;\n default:\n sinceDate = undefined;\n }\n\n const q = \"* type:post\";\n const sort = what === \"rising\" ? \"children\" : what;\n const since = sinceDate ? sinceDate.toISOString().split(\".\")[0] : undefined;\n const hideLow = \"0\";\n const votes = tag === \"today\" ? 50 : 200;\n\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) data.since = since;\n if (pageParam.sid) data.scroll_id = pageParam.sid;\n if (votes) data.votes = votes;\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body) instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n\n getNextPageParam: (resp: SearchResponse): PageParam => {\n return {\n sid: resp?.scroll_id,\n hasNextPage: resp.results.length > 0,\n };\n },\n\n enabled,\n retry: searchRetryPolicy,\n });\n}\n","import { CONFIG, INTERNAL_API_TIMEOUT_MS, getBoundFetch, withTimeoutSignal } from \"@/modules/core\";\nimport { SearchResponse } from \"./types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"./parse-json-response\";\n\nexport async function search(\n q: string,\n sort: string,\n hideLow: string,\n since?: string,\n scroll_id?: string,\n votes?: number,\n signal?: AbortSignal\n): Promise {\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) {\n data.since = since;\n }\n if (scroll_id) {\n data.scroll_id = scroll_id;\n }\n if (votes) {\n data.votes = votes;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n return parseJsonResponse(response, isSearchResponse);\n}\n\nexport async function similar(\n params: {\n author: string;\n permlink: string;\n title?: string;\n body?: string;\n tags?: string[];\n since?: string;\n },\n signal?: AbortSignal,\n timeoutMs: number = INTERNAL_API_TIMEOUT_MS\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/similar\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(params),\n signal: withTimeoutSignal(timeoutMs, signal),\n });\n\n return parseJsonResponse(response, isSearchResponse);\n}\n\nexport async function searchPath(q: string, signal?: AbortSignal): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/search-path\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify({ q }),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n const data = await parseJsonResponse(response, Array.isArray);\n return data?.length > 0 ? data : [q];\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { similar } from \"../requests\";\nimport { SearchResult } from \"../types/search-response\";\n\n// Without a recency window the backend ranks across the entire historical\n// index and surfaces years-old posts. Constrain suggestions to the last\n// ~6 months so related posts stay fresh (it also bounds the backend's\n// more_like_this candidate set, which is what keeps it fast).\nconst SIMILAR_ENTRIES_SINCE_MS = 182 * 24 * 60 * 60 * 1000;\n\n// How many results the suggestions strip renders at most.\nconst SIMILAR_ENTRIES_TARGET = 4;\n\n// more_like_this only extracts a handful of significant terms, so an excerpt is\n// enough signal and keeps the request payload small.\nconst SIMILAR_ENTRIES_BODY_LIMIT = 3000;\n\n// On the server the prefetch sits on the entry-page render path, and the search\n// backend is single-region (EU) — so anything slower than this stalls SSR for a\n// non-essential \"related posts\" strip. Keep the SSR cap short and let the strip\n// fall back to a client fetch (only that render misses the in-HTML strip; it's\n// ISR-cached anyway). Do NOT raise this — 2s is the SSR budget.\nconst SIMILAR_ENTRIES_SSR_TIMEOUT_MS = 2000;\n\n// The client fetch doesn't block paint, so it previously had no cap and fell\n// through to the SDK's generic INTERNAL_API_TIMEOUT_MS (10s; CF's worker further\n// truncates at ~8s). Combined with React Query's default client retry (3×), a\n// /search-api/similar outage turned this best-effort strip into a multi-second\n// post-onload tail (observed as a ~29s \"fully loaded\" in GTmetrix). Cap the\n// client call short and disable retry (below) so a degraded backend just hides\n// the strip quickly instead of churning.\nconst SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS = 4000;\n\n// The strip is hidden below this many results. A lone suggestion looks\n// sparse. Exported so the web component shares one threshold (filter == render).\nexport const SIMILAR_ENTRIES_MIN_RENDER = 2;\n\n// Strip markdown image/link/URL noise before truncating, so more_like_this\n// keys on prose terms instead of image-CDN domains and file hashes (which\n// rarely match the index's sanitized body and just waste the term budget).\nfunction toMltExcerpt(body: string, limit: number): string {\n return body\n .replace(/!\\[[^\\]]*\\]\\([^)]*\\)/g, \" \") // markdown images\n .replace(/\\[([^\\]]*)\\]\\([^)]*\\)/g, \"$1\") // markdown links -> keep link text\n .replace(/<[^>]+>/g, \" \") // html tags\n .replace(/https?:\\/\\/\\S+/g, \" \") // bare URLs\n .replace(/\\s+/g, \" \")\n .trim()\n .slice(0, limit);\n}\n\n// Compact deterministic fingerprint (djb2) of the MLT inputs. Folded into the\n// cache key so an edited post (title/tags/body changed) refetches instead of\n// serving stale recommendations under the same author/permlink. Deterministic\n// so the SSR prefetch and the client compute the same key from the same entry.\nfunction fingerprint(s: string): string {\n let h = 5381;\n for (let i = 0; i < s.length; i++) {\n h = ((h << 5) + h + s.charCodeAt(i)) | 0;\n }\n return (h >>> 0).toString(36);\n}\n\ninterface Entry {\n author: string;\n permlink: string;\n title?: string;\n body?: string;\n json_metadata?: {\n // Hive's json_metadata is user-controlled and untyped on-chain: `tags` is\n // usually a string[] but some posts store it as a bare string (or other\n // junk). Typed as unknown on purpose so callers can't assume an array —\n // it's narrowed with a runtime guard below.\n tags?: unknown;\n };\n}\n\nexport function getSimilarEntriesQueryOptions(entry: Entry) {\n const title = entry.title ?? \"\";\n // `?? []` only guards null/undefined; a non-array tags value (e.g. a bare\n // string from json_metadata) slips through and crashes `.filter` — which\n // took down the entry-page SSR prefetch (Sentry ECENCY-NEXT-1FMA). Guard on\n // Array.isArray so only real arrays reach the filter.\n const rawTags = entry.json_metadata?.tags;\n const tags = (Array.isArray(rawTags) ? rawTags : []).filter(\n (tag): tag is string => typeof tag === \"string\" && tag !== \"\"\n );\n const body = toMltExcerpt(entry.body ?? \"\", SIMILAR_ENTRIES_BODY_LIMIT);\n const contentKey = fingerprint(`${title}|${tags.join(\",\")}|${body}`);\n\n return queryOptions({\n queryKey: QueryKeys.search.similarEntries(entry.author, entry.permlink, contentKey),\n queryFn: async ({ signal }) => {\n // Naive `YYYY-MM-DDTHH:mm:ss` (no `Z`) matches the search-api date\n // contract used elsewhere; a <14h skew on a 182-day boundary is immaterial.\n const since = new Date(Date.now() - SIMILAR_ENTRIES_SINCE_MS).toISOString().slice(0, 19);\n\n // Elasticsearch more_like_this recommendations: content-based \"related\n // posts\" ranked by shared significant terms in title/body/tags, scoped\n // to the recency window. The backend already excludes the source author,\n // spam and nsfw.\n const response = await similar(\n {\n author: entry.author,\n permlink: entry.permlink,\n title,\n body,\n tags,\n since\n },\n signal,\n // Short cap server-side so a slow cross-region call can't stall SSR;\n // a slightly longer (but still bounded) cap client-side so a degraded\n // backend can't hang the request on the SDK's generic 8s timeout.\n typeof window === \"undefined\"\n ? SIMILAR_ENTRIES_SSR_TIMEOUT_MS\n : SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS\n );\n\n // Light client guard mirroring the render contract: never the source\n // post, never nsfw, one per author, capped at the render target.\n const collected: SearchResult[] = [];\n const seenAuthors = new Set();\n for (const r of response.results) {\n if (collected.length >= SIMILAR_ENTRIES_TARGET) break;\n if (r.permlink === entry.permlink) continue;\n if ((r.tags ?? []).indexOf(\"nsfw\") !== -1) continue;\n if (seenAuthors.has(r.author)) continue;\n seenAuthors.add(r.author);\n collected.push(r);\n }\n\n return collected;\n },\n // The entry page server-prefetches this query and dehydrates it. Without a\n // staleTime, React Query treats the hydrated data as stale and refetches on\n // mount — issuing a *redundant* /search-api/similar XHR right after\n // hydration even though SSR already provided the data. That refetch was the\n // long post-onload tail in the waterfall (held open to the client timeout),\n // inflating GTmetrix \"Fully Loaded\" while the visible strip was already\n // populated from SSR. A staleTime makes the hydrated data fresh so the\n // client skips that refetch; if SSR delivered nothing (empty cache), the\n // client still fetches. Recommendations are stable per post (and the cache\n // key is content-fingerprinted), so 5 min matches the page's ISR cadence.\n staleTime: 5 * 60 * 1000,\n // Best-effort suggestions strip — never retry-storm a degraded backend.\n // The web QueryClient only disables retries on the server; the browser\n // client keeps React Query's default retry (3×) — and other SDK consumers\n // (e.g. mobile) may too — so pin retry:false here to cover every caller.\n retry: false\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { getProfiles } from \"@/modules/bridge\";\nimport { Profile } from \"@/modules/accounts/types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchAccountQueryOptions(q: string, limit = 5) {\n const normalized = q.trim();\n\n return queryOptions({\n queryKey: QueryKeys.search.account(normalized, limit),\n queryFn: async (): Promise => {\n const usernames = (await callRPC(\"condenser_api.lookup_accounts\", [\n normalized,\n limit,\n ])) as string[];\n\n if (usernames.length === 0) {\n return [];\n }\n\n return getProfiles(usernames);\n },\n enabled: !!normalized,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { TrendingTag } from \"@/modules/posts/types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchTopicsQueryOptions(q: string, limit = 10) {\n const normalized = q.trim();\n\n return queryOptions({\n queryKey: QueryKeys.search.topics(normalized, limit),\n queryFn: async (): Promise => {\n const tags = (await callRPC(\"condenser_api.get_trending_tags\", [\n normalized,\n limit + 1,\n ])) as TrendingTag[];\n\n return tags\n .map((t) => t.name)\n .filter((name) => name !== \"\" && !name.startsWith(\"hive-\"))\n .slice(0, limit);\n },\n enabled: !!normalized,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, INTERNAL_API_TIMEOUT_MS, withTimeoutSignal, QueryKeys } from \"@/modules/core\";\nimport { SearchResponse } from \"../types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"../parse-json-response\";\nimport { searchRetryPolicy } from \"../retry-policy\";\n\nexport function getSearchApiInfiniteQueryOptions(\n q: string,\n sort: string,\n hideLow: boolean,\n since?: string,\n votes?: number,\n includeNsfw?: boolean\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.search.api(q, sort, hideLow, since, votes, includeNsfw),\n queryFn: async ({ pageParam, signal }: { pageParam: string | undefined; signal: AbortSignal }) => {\n interface SearchApiPayload {\n q: string;\n sort: string;\n hide_low: boolean;\n since?: string;\n scroll_id?: string;\n votes?: number;\n include_nsfw?: number;\n }\n\n const payload: SearchApiPayload = { q, sort, hide_low: hideLow };\n\n if (since) {\n payload.since = since;\n }\n if (pageParam) {\n payload.scroll_id = pageParam;\n }\n if (votes !== undefined) {\n payload.votes = votes;\n }\n if (includeNsfw) {\n payload.include_nsfw = 1;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(payload),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body), instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n initialPageParam: undefined as string | undefined,\n getNextPageParam: (lastPage: SearchResponse) => lastPage?.scroll_id,\n enabled: !!q,\n retry: searchRetryPolicy,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\n\nexport function getSearchPathQueryOptions(q: string) {\n return queryOptions({\n queryKey: [\"search\", \"path\", q],\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search-path\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify({ q }),\n });\n\n if (!response.ok) {\n throw new Error(`Search path failed: ${response.status}`);\n }\n\n const data = await response.json();\n\n if (data?.length > 0) {\n return data as string[];\n }\n\n return [q];\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { SupportSettings } from \"../types\";\n\n/**\n * Fetch the active user's Support Ecency settings. The username is resolved\n * server-side from the validated `code`, so only the code is sent. Throws on a\n * non-2xx with the server's `.status` + parsed `.data` attached. Exported for\n * unit testing; the query options below wrap it.\n */\nexport async function getSupportSettingsRequest(code: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/support-settings\", {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ code }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to fetch support settings: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as SupportSettings;\n}\n\n/**\n * Query options for the active user's Support Ecency settings\n * (beneficiary percent + curation holdback percent). Zeros mean both\n * opt-ins are off; the backend returns zeros when no row exists.\n */\nexport function getSupportSettingsQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n const name = username?.replace(\"@\", \"\");\n\n return queryOptions({\n queryKey: QueryKeys.support.settings(name),\n queryFn: () => {\n if (!code) {\n throw new Error(\"[SDK][Support] missing auth\");\n }\n return getSupportSettingsRequest(code);\n },\n enabled: !!name && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { QueryClient, useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { SupportSettings, UpdateSupportSettingsPayload } from \"../types\";\n\n/**\n * POST a Support Ecency settings update. Both percents are integers within\n * 0..100 (0 = off); the gateway rejects anything else with a 400. Throws on a\n * non-2xx with the server's `.status` + parsed `.data` attached so the caller\n * can surface the plain validation message. Exported for unit testing; the\n * hook below wraps it.\n */\nexport async function updateSupportSettingsRequest(\n code: string,\n payload: UpdateSupportSettingsPayload\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/support-settings-update\", {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({\n code,\n beneficiary_percent: payload.beneficiary_percent,\n curation_percent: payload.curation_percent,\n }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to update support settings: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as SupportSettings;\n}\n\n/**\n * Sync the settings cache after a successful update: seed the fresh server\n * response and invalidate so any active observers refetch. Exported for unit\n * testing; `useUpdateSupportSettings` calls it from `onSuccess`.\n */\nexport function applySupportSettingsUpdate(\n queryClient: QueryClient,\n username: string,\n data: SupportSettings\n) {\n queryClient.setQueryData(QueryKeys.support.settings(username), data);\n return queryClient.invalidateQueries({ queryKey: QueryKeys.support.settings(username) });\n}\n\n/**\n * Update the user's voluntary Support Ecency opt-ins (post beneficiary percent\n * and curation holdback percent). On success the settings query is refreshed\n * so every surface (publish dialog, settings card, injection hooks) sees the\n * new preference.\n */\nexport function useUpdateSupportSettings(\n username: string | undefined,\n code: string | undefined\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"support\", \"settings-update\", name],\n mutationFn: async (payload: UpdateSupportSettingsPayload) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Support] missing auth\");\n }\n return updateSupportSettingsRequest(code, payload);\n },\n onSuccess(data) {\n if (name) {\n applySupportSettingsUpdate(queryClient, name, data);\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\nexport function getBoostPlusPricesQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"boost-plus-prices\"],\n queryFn: async () => {\n if (!accessToken) {\n return [];\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/boost-plus-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch boost plus prices: ${response.status}`);\n }\n\n return await response.json() as PromotePrice[];\n },\n staleTime: Infinity,\n enabled: !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\n/**\n * RC top-up pricing: duration -> Points cost tiers, served by the ePoints\n * backend via the private API. Reuses the {@link PromotePrice} shape\n * ({ duration, price }).\n */\nexport function getRcDelegationPricesQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"rc-delegation-prices\"],\n queryFn: async () => {\n if (!accessToken) {\n return [];\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/rc-delegation-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch RC delegation prices: ${response.status}`);\n }\n\n return (await response.json()) as PromotePrice[];\n },\n staleTime: Infinity,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\n\nexport interface RcDelegationActive {\n user: string;\n expires: Date;\n}\n\n/**\n * The active (ON) RC top-up for a user, if any. Lets the UI block a duplicate\n * purchase up front (only one RC top-up is allowed at a time). Returns null\n * when the user has no active top-up.\n */\nexport function getRcDelegationActiveQueryOptions(username: string, accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"rc-delegation-active\", username],\n queryFn: async (): Promise => {\n if (!accessToken || !username) {\n return null;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/rc-delegation-active\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\"\n },\n body: JSON.stringify({ code: accessToken, username })\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch RC delegation active: ${response.status}`);\n }\n\n const responseData = (await response.json()) as { user?: string; expires?: string };\n\n return responseData && responseData.expires && responseData.user\n ? { user: responseData.user, expires: new Date(responseData.expires) }\n : null;\n },\n enabled: !!username && !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\nexport function getPromotePriceQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"promote-price\"],\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/promote-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch promote prices: ${response.status}`);\n }\n\n return await response.json() as PromotePrice[];\n },\n enabled: !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\n\nexport interface BoostPlusAccountPrice {\n account: string;\n expires: Date;\n}\n\nexport function getBoostPlusAccountPricesQueryOptions(account: string, accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"boost-plus-accounts\", account],\n queryFn: async (): Promise => {\n if (!accessToken || !account) {\n return null;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/boosted-plus-account\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken, account }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch boost plus account prices: ${response.status}`);\n }\n\n const responseData = await response.json() as {\n expires: string;\n account: string;\n };\n\n return responseData\n ? {\n account: responseData.account,\n expires: new Date(responseData.expires)\n }\n : null;\n },\n enabled: !!account && !!accessToken\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildBoostPlusOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface BoostPlusPayload {\n account: string;\n duration: number;\n}\n\nexport function useBoostPlus(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"promotions\", \"boost-plus\"],\n username,\n ({ account, duration }) => [\n buildBoostPlusOp(username!, account, duration)\n ],\n async (_data, { account }) => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.promotions.boostPlusAccounts(account),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildRcDelegationOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface RcDelegationPayload {\n duration: number;\n}\n\n/**\n * Buys a short-term, RC-only delegation (RC top-up) for the active user, paid\n * with Ecency Points. Mirrors {@link useBoostPlus} but is RC-only (no Hive\n * Power / voting power transferred). Invalidates the user's account + RC caches\n * so the new RC shows up once the relay delegation lands.\n */\nexport function useRcDelegation(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"promotions\", \"rc-delegation\"],\n username,\n ({ duration }) => [buildRcDelegationOp(username!, duration)],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.resourceCredits.account(username!),\n [\"promotions\", \"rc-delegation-active\", username]\n ]);\n }\n },\n auth,\n \"active\",\n { broadcastMode }\n );\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { HsTokenRenewResponse } from \"./types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nexport async function hsTokenRenew(code: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/auth-api/hs-token-refresh\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n data = undefined;\n }\n const error = new Error(`Failed to refresh token: ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n const data = (await response.json()) as HsTokenRenewResponse;\n return data;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"../../core\";\n\nconst BAD_ACTORS_URL =\n \"https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt\";\n\nexport function getBadActorsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.badActors.list(),\n queryFn: async ({ signal }) => {\n const response = await fetch(BAD_ACTORS_URL, { signal });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bad actors list: ${response.status}`);\n }\n\n const text = await response.text();\n return new Set(text.split(\"\\n\").filter(Boolean));\n },\n staleTime: 24 * 60 * 60 * 1000,\n /**\n * Deliberately left unbounded, including under SSR.\n *\n * `Infinity` is the one value that schedules no gc timer at all —\n * `isValidTimeout` in query-core rejects non-finite timeouts, so\n * `scheduleGc` is a no-op. With no timer there is no GC root, and on a\n * per-request client the entry dies with the request that made it.\n * Replacing it with a finite window would *create* a timer that retains the\n * Query and, through it, that request's whole QueryCache — strictly worse\n * here than leaving it alone.\n */\n gcTime: Infinity\n });\n}\n","export const POLLS_PROTOCOL_VERSION = 1.1;\n\nexport enum PollPreferredInterpretation {\n NUMBER_OF_VOTES = \"number_of_votes\",\n TOKENS = \"tokens\",\n}\n\nexport interface PollChoiceVotes {\n total_votes: number;\n hive_hp?: number;\n hive_proxied_hp?: number;\n hive_hp_incl_proxied: number | null;\n}\n\nexport interface PollChoice {\n choice_num: number;\n choice_text: string;\n votes?: PollChoiceVotes;\n}\n\nexport interface PollVoter {\n name: string;\n choices: number[];\n hive_hp?: number;\n hive_proxied_hp?: number;\n hive_hp_incl_proxied?: number;\n}\n\nexport interface PollStats {\n total_voting_accounts_num: number;\n total_hive_hp?: number;\n total_hive_proxied_hp?: number;\n total_hive_hp_incl_proxied: number | null;\n}\n\nexport interface Poll {\n author: string;\n permlink: string;\n question: string;\n poll_choices: PollChoice[];\n poll_voters?: PollVoter[];\n poll_stats?: PollStats;\n poll_trx_id: string;\n status: string;\n end_time: string;\n preferred_interpretation: PollPreferredInterpretation | string;\n max_choices_voted: number;\n filter_account_age_days: number;\n protocol_version: number;\n created: string;\n post_title: string;\n post_body: string;\n parent_permlink: string;\n tags: string[];\n image: unknown[];\n token?: string | null;\n community_membership?: string[];\n allow_vote_changes?: boolean;\n ui_hide_res_until_voted?: boolean;\n platform?: string;\n}\n\nexport function mapMetaChoicesToPollChoices(metaChoices: string[]): PollChoice[] {\n if (!metaChoices) {\n return [];\n }\n\n return metaChoices.map((choice, index) => ({\n choice_num: index + 1,\n choice_text: choice,\n votes: {\n total_votes: 0,\n hive_hp: 0,\n hive_proxied_hp: 0,\n hive_hp_incl_proxied: 0,\n },\n }));\n}\n","import { isServer, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys, SERVER_GC_TIME_MS } from \"@/modules/core\";\nimport { getBoundFetch } from \"@/modules/core/utils\";\nimport type { Poll, PollChoice, PollVoter, PollStats } from \"../types\";\n\nfunction normalizePoll(raw: Record): Poll {\n const pollChoices = (raw.poll_choices as Record[] | undefined) ?? [];\n const pollVoters = (raw.poll_voters as Record[] | undefined) ?? [];\n const rawStats = raw.poll_stats as Record | undefined;\n\n const choices: PollChoice[] = pollChoices.map((c) => {\n const votes = c.votes as Record | undefined;\n return {\n choice_num: (c.choice_num as number) ?? 0,\n choice_text: (c.choice_text as string) ?? \"\",\n votes: votes\n ? {\n total_votes: (votes.total_votes as number) ?? 0,\n hive_hp: votes.hive_hp as number | undefined,\n hive_proxied_hp: votes.hive_proxied_hp as number | undefined,\n hive_hp_incl_proxied: (votes.hive_hp_incl_proxied as number | null) ?? null,\n }\n : undefined,\n };\n });\n\n const voters: PollVoter[] = pollVoters.map((v) => ({\n name: (v.name as string) ?? \"\",\n choices: (v.choices as number[]) ?? [],\n hive_hp: v.hive_hp as number | undefined,\n hive_proxied_hp: v.hive_proxied_hp as number | undefined,\n hive_hp_incl_proxied: v.hive_hp_incl_proxied as number | undefined,\n }));\n\n const stats: PollStats | undefined = rawStats\n ? {\n total_voting_accounts_num: (rawStats.total_voting_accounts_num as number) ?? 0,\n total_hive_hp: rawStats.total_hive_hp as number | undefined,\n total_hive_proxied_hp: rawStats.total_hive_proxied_hp as number | undefined,\n total_hive_hp_incl_proxied: (rawStats.total_hive_hp_incl_proxied as number | null) ?? null,\n }\n : undefined;\n\n return {\n author: (raw.author as string) ?? \"\",\n permlink: (raw.permlink as string) ?? \"\",\n question: (raw.question as string) ?? \"\",\n poll_choices: choices,\n poll_voters: voters,\n poll_stats: stats,\n poll_trx_id: (raw.poll_trx_id as string) ?? \"\",\n status: (raw.status as string) ?? \"\",\n end_time: (raw.end_time as string) ?? \"\",\n preferred_interpretation: (raw.preferred_interpretation as string) ?? \"number_of_votes\",\n max_choices_voted: (raw.max_choices_voted as number) ?? 1,\n filter_account_age_days: (raw.filter_account_age_days as number) ?? 0,\n protocol_version: (raw.protocol_version as number) ?? 0,\n created: (raw.created as string) ?? \"\",\n post_title: (raw.post_title as string) ?? \"\",\n post_body: (raw.post_body as string) ?? \"\",\n parent_permlink: (raw.parent_permlink as string) ?? \"\",\n tags: (raw.tags as string[]) ?? [],\n image: (raw.image as unknown[]) ?? [],\n token: raw.token as string | null | undefined,\n community_membership: raw.community_membership as string[] | undefined,\n allow_vote_changes: raw.allow_vote_changes as boolean | undefined,\n ui_hide_res_until_voted: (raw.ui_hide_res_until_voted as boolean | undefined) ?? false,\n platform: raw.platform as string | undefined,\n };\n}\n\nexport function getPollQueryOptions(\n author: string | undefined,\n permlink: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.polls.details(author ?? \"\", permlink ?? \"\"),\n enabled: !!author && !!permlink,\n // Long in a browser, where a poll is cheap to keep and often revisited;\n // bounded during SSR, where holding it also holds that request's whole\n // cache. See SERVER_GC_TIME_MS.\n gcTime: isServer ? SERVER_GC_TIME_MS : 30 * 60 * 1000,\n queryFn: async (): Promise => {\n if (!author || !permlink) {\n throw new Error(\"[SDK][Polls] – missing author or permlink\");\n }\n\n const fetchApi = getBoundFetch();\n const url = `${CONFIG.pollsApiHost}/rpc/poll?author=eq.${encodeURIComponent(author)}&permlink=eq.${encodeURIComponent(permlink)}`;\n const response = await fetchApi(url);\n\n if (!response.ok) {\n throw new Error(`[SDK][Polls] – fetch failed: ${response.status}`);\n }\n\n const data = await response.json();\n\n if (!Array.isArray(data) || !data[0]) {\n throw new Error(\"[SDK][Polls] – no poll data found\");\n }\n\n return normalizePoll(data[0]);\n },\n });\n}\n","import { QueryKeys, useBroadcastMutation } from \"@/modules/core\";\nimport type { BroadcastMode, AuthContextV2 } from \"@/modules/core\";\n\nexport interface PollVotePayload {\n pollTrxId: string;\n choices: number[];\n}\n\nexport function usePollVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n QueryKeys.polls.vote(),\n username ?? \"\",\n ({ pollTrxId, choices }) => {\n if (!username) {\n throw new Error(\"[SDK][Polls] Cannot vote without an authenticated username\");\n }\n return [\n [\n \"custom_json\",\n {\n id: \"polls\",\n required_auths: [],\n required_posting_auths: [username],\n json: JSON.stringify({\n poll: pollTrxId,\n action: \"vote\",\n choices,\n }),\n },\n ],\n ];\n },\n undefined,\n auth,\n \"posting\",\n { broadcastMode: broadcastMode ?? \"async\" }\n );\n}\n","/**\n * Thresholds behind the content moderation treatment. Single source of truth for\n * every client: web and mobile previously carried their own copies, which drifted\n * (mobile flagged downvoted content at -7B rshares and 4 voters where web used\n * -10B and 5), so the same post read differently depending on the app.\n */\n\n/** Sum of rshares below which a post counts as heavily downvoted. */\nexport const HIDDEN_POST_RSHARES_THRESHOLD = -10000000000;\n\n/** Downvoting is only conclusive once enough accounts have voted. */\nexport const HIDDEN_POST_MIN_VOTES = 5;\n\n/**\n * Reputation (human-readable 0-100 scale) below which an author counts as\n * low-trust. New Hive accounts start around 25.\n *\n * NOTE: reputation is the only input. Account age is NOT part of the check, so a\n * years-old account that never earned reputation trips it exactly like a fresh\n * one. User-facing copy must say \"low reputation\", never \"new account\".\n */\nexport const LOW_TRUST_REPUTATION_THRESHOLD = 30;\n","/**\n * Converts Hive's raw reputation to the human-readable 0-100 scale, passing\n * through values that are already on it (the bridge returns both shapes\n * depending on the endpoint).\n */\nconst isHumanReadable = (input: number): boolean =>\n Math.abs(input) > 0 && Math.abs(input) <= 100;\n\nexport function accountReputation(input: string | number): number {\n if (typeof input === \"number\" && isHumanReadable(input)) {\n return Math.floor(input);\n }\n\n if (typeof input === \"string\") {\n input = Number(input);\n\n if (isHumanReadable(input)) {\n return Math.floor(input);\n }\n }\n\n if (input === 0) {\n return 25;\n }\n\n let neg = false;\n\n if (input < 0) {\n neg = true;\n }\n\n let reputationLevel = Math.log10(Math.abs(input as number));\n reputationLevel = Math.max(reputationLevel - 9, 0);\n\n if (reputationLevel < 0) {\n reputationLevel = 0;\n }\n\n if (neg) {\n reputationLevel *= -1;\n }\n\n reputationLevel = reputationLevel * 9 + 25;\n\n return Math.floor(reputationLevel);\n}\n","/**\n * Outbound-link detection for the SEO/backlink-farm signal.\n *\n * A link only counts as outbound promotion when it leaves the Hive/Ecency\n * ecosystem and is not an embedded image, so ordinary on-platform references and\n * post illustrations never trip the check.\n */\n\n// Hosts that are part of the Hive/Ecency ecosystem.\nconst INTERNAL_HOSTS = [\n \"ecency.com\",\n \"ecency.app\",\n \"hive.blog\",\n \"hive.io\",\n \"hiveblocks.com\",\n \"peakd.com\",\n \"snapie.io\",\n \"hivesuite.app\",\n \"leofinance.io\",\n \"inleo.io\",\n \"3speak.tv\",\n \"d.buzz\",\n \"waivio.com\"\n];\n\n// Image/media hosts: an embedded image is content, not a backlink.\nconst IMAGE_HOSTS = [\n \"imgur.com\",\n \"images.hive.blog\",\n \"files.peakd.com\",\n \"i.ecency.com\",\n \"images.ecency.com\",\n \"steemitimages.com\",\n \"cdn.steemitimages.com\",\n \"media.giphy.com\"\n];\n\nconst IMAGE_EXT_RE = /\\.(jpe?g|png|gif|webp|svg|bmp|avif)(\\?|#|$)/i;\n// Match absolute AND protocol-relative URLs (\"//host/...\"), so the check can't be\n// evaded with `[promo](//shop.example)` (the renderer allows protocol-relative hrefs).\nconst URL_RE = /(?:https?:)?\\/\\/[^\\s)<>\"'\\]]+/gi;\n// URLs in prose are commonly followed by punctuation (\"https://ecency.com, and...\");\n// strip it so the host parses correctly and internal links do not false-positive.\nconst TRAILING_PUNCT_RE = /[.,;:!?'\"]+$/;\n\nfunction hostOf(url: string): string {\n const m = /^(?:https?:)?\\/\\/([^/?#]+)/i.exec(url);\n return m ? m[1].toLowerCase().replace(/^www\\./, \"\") : \"\";\n}\n\nfunction isExternalPromoLink(rawUrl: string): boolean {\n const url = rawUrl.replace(TRAILING_PUNCT_RE, \"\");\n if (IMAGE_EXT_RE.test(url)) {\n return false; // embedded image, not a backlink\n }\n const host = hostOf(url);\n if (!host.includes(\".\")) {\n return false; // not a real domain (e.g. a stray \"//something\")\n }\n const matches = (h: string) => host === h || host.endsWith(\".\" + h);\n if (INTERNAL_HOSTS.some(matches) || IMAGE_HOSTS.some(matches)) {\n return false; // Hive/Ecency or image host\n }\n return true;\n}\n\n/** True if the post body contains an outbound (non-Hive, non-image) link. */\nexport function hasExternalLink(body: string | undefined | null): boolean {\n if (!body) {\n return false;\n }\n const matches = body.match(URL_RE);\n if (!matches) {\n return false;\n }\n return matches.some(isExternalPromoLink);\n}\n","import { accountReputation } from \"./account-reputation\";\nimport {\n HIDDEN_POST_MIN_VOTES,\n HIDDEN_POST_RSHARES_THRESHOLD,\n LOW_TRUST_REPUTATION_THRESHOLD\n} from \"./constants\";\nimport { hasExternalLink } from \"./external-links\";\n\n/**\n * Why a piece of content gets the moderation treatment. Clients render their own\n * copy per reason; the rules that pick the reason live here so web and mobile\n * always agree on which one fired.\n */\nexport enum ContentModerationReason {\n /**\n * `stats.gray` / `stats.hide` from hivemind: community moderator mutes, mutes\n * applied by the observer account, and authors hivemind itself grays out.\n */\n MOD_MUTED = \"mod_muted\",\n /** Heavily downvoted by enough distinct accounts to be conclusive. */\n DOWNVOTED = \"downvoted\",\n /** Low-reputation author whose post carries an outbound promotional link. */\n LOW_TRUST = \"low_trust\"\n}\n\n/**\n * The fields of a post or comment the rules read. Deliberately structural: web\n * passes an `Entry`, mobile passes a raw bridge post, and neither has to convert.\n */\nexport interface ModerationCandidate {\n author?: string;\n author_reputation?: string | number;\n body?: string | null;\n net_rshares?: number;\n active_votes?: unknown[] | null;\n stats?: {\n gray?: boolean;\n hide?: boolean;\n total_votes?: number;\n } | null;\n}\n\n/**\n * hivemind's `total_votes` is the authoritative count when present; `active_votes`\n * is the fallback for the feeds that omit stats.\n */\nfunction countVotes(content: ModerationCandidate): number {\n return content?.stats?.total_votes ?? content?.active_votes?.length ?? 0;\n}\n\n/** Heavily downvoted: strongly negative rshares from more than a handful of voters. */\nexport function isHiddenPost(\n netRshares: number | undefined,\n activeVotesLength: number\n): boolean {\n return (\n (netRshares ?? 0) < HIDDEN_POST_RSHARES_THRESHOLD &&\n activeVotesLength >= HIDDEN_POST_MIN_VOTES\n );\n}\n\n/**\n * Content-moderation signal for SEO/backlink-farm abuse: low-reputation accounts\n * publishing an outbound link are the signature of free-faucet SEO spam.\n *\n * Such posts are not blocked, they are de-emphasized and their outbound link is\n * flagged as unverified, so the promotional payoff drops to zero. Low reputation\n * on its own is NOT a moderation signal: plenty of small accounts post ordinary\n * content, and dimming all of them punishes newcomers for existing.\n */\nexport function isLowTrustSeoPost(\n content: Pick\n): boolean {\n const reputation = content?.author_reputation;\n // Some feeds omit reputation entirely. An unknown value is not evidence of\n // anything, so it must not be read as \"brand new account\" (raw 0 scales to 25,\n // which is below the threshold and would flag every post carrying a link).\n if (reputation === undefined || reputation === null) {\n return false;\n }\n return (\n accountReputation(reputation) < LOW_TRUST_REPUTATION_THRESHOLD &&\n hasExternalLink(content?.body)\n );\n}\n\n/** True when the viewer has personally muted this author. */\nexport function isAuthorMuted(\n author: string | undefined,\n mutedAuthors: string[] | undefined | null\n): boolean {\n return !!author && !!mutedAuthors?.includes(author);\n}\n\n/**\n * The reason a post or comment should be de-emphasized, or null when it is fine.\n *\n * Precedence, most authoritative first: an explicit moderation action outranks\n * the vote heuristic, which outranks the spam heuristic. Order matters because a\n * heavily downvoted post usually also has a battered reputation, and labelling\n * that \"low trust\" would hide why the content was actually flagged.\n *\n * A viewer's personal mute list is NOT an input here. Muting an author removes\n * their content from the viewer's lists entirely (see `isAuthorMuted`), rather\n * than labelling it.\n */\nexport function getContentModerationReason(\n content: ModerationCandidate | undefined | null\n): ContentModerationReason | null {\n if (!content) {\n return null;\n }\n if (content.stats?.gray || content.stats?.hide) {\n return ContentModerationReason.MOD_MUTED;\n }\n if (isHiddenPost(content.net_rshares, countVotes(content))) {\n return ContentModerationReason.DOWNVOTED;\n }\n if (isLowTrustSeoPost(content)) {\n return ContentModerationReason.LOW_TRUST;\n }\n return null;\n}\n","/**\n * Error types for the newsletter client, in their own dependency-free file so\n * test setups can hand out the REAL classes (instanceof must hold across the\n * app) without pulling the SDK config chain along.\n */\nexport class NewsletterApiError extends Error {\n constructor(\n message: string,\n public readonly status: number,\n public readonly data?: unknown,\n ) {\n super(message);\n }\n}\n\n/** A refused send, carrying the relay's routing `code` (already_sent, suspended, ...). */\nexport class NewsletterSendRefusedError extends NewsletterApiError {\n constructor(\n message: string,\n status: number,\n public readonly code?: string,\n public readonly taken?: Array<{ cadence: string; period: string; kind: string }>,\n data?: unknown,\n ) {\n super(message, status, data);\n }\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { NewsletterApiError, NewsletterSendRefusedError } from \"./errors\";\nimport type {\n DigestSubscribeInput,\n DigestSubscribeResult,\n DigestSubscription,\n NewsletterCandidatePost,\n NewsletterListType,\n NewsletterSendPreview,\n NewsletterSendRequest,\n NewsletterSendResult,\n NewsletterSenderStanding,\n NewsletterSentIssue,\n} from \"./types\";\n\n/**\n * Client for the newsletter relay at {privateApiHost}/api/newsletter/*\n * (Next.js route handlers on ecency.com, which alone hold the news-service\n * credentials — clients never talk to the service directly).\n *\n * Identity is the HiveSigner access token, passed here as the explicit `code`\n * argument. Transport mirrors the deployed web client per route: subscribe and\n * unsubscribe-all carry it in the POST body as `code` (the subscribe route\n * authenticates ONLY from the body — a header alone is treated as anonymous);\n * every other call, the send/preview POSTs included, uses the `X-HS-Token`\n * header. The relay verifies it upstream and derives the account from it, so\n * a stale token 401s — callers are responsible for supplying a fresh one\n * (web: ensureValidToken; mobile: the token-refresh wrapper).\n *\n * The email-token confirm/unsubscribe flows are deliberately absent: those\n * links land on web pages.\n */\nfunction newsletterUrl(path: string): string {\n // The relay lives on the WEB origin; newsletterHost overrides where that is\n // (\"\" = same-origin, the web client's case). Nullish on purpose: only an\n // unset override falls back, an empty string is a meaningful host.\n return `${CONFIG.newsletterHost ?? CONFIG.privateApiHost}/api/newsletter${path}`;\n}\n\nasync function parse(response: Response): Promise {\n const data = (await response.json().catch(() => undefined)) as\n | (T & { error?: string })\n | undefined;\n if (!response.ok) {\n throw new NewsletterApiError(\n data?.error || `Request failed (${response.status})`,\n response.status,\n data,\n );\n }\n // A 2xx without a JSON body is not a result; saying so beats returning blanks.\n if (!data || typeof data !== \"object\") {\n throw new NewsletterApiError(\n `Unexpected response (${response.status})`,\n response.status,\n );\n }\n return data;\n}\n\n/**\n * Subscribe an address to a digest. Authenticated callers (code given) skip\n * the captcha; anonymous callers must supply `captchaToken` in the input and\n * get double opt-in. The `own` digest type is always authenticated.\n */\nexport async function subscribeDigestRequest(\n input: DigestSubscribeInput,\n code?: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/subscribe\"), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ ...input, ...(code ? { code } : {}) }),\n });\n return parse(response);\n}\n\n/** Every live digest subscription attributed to the token's account. */\nexport async function getDigestSubscriptionsRequest(\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/subscriptions\"), {\n headers: { \"X-HS-Token\": code },\n });\n const data = await parse<{ subscriptions?: DigestSubscription[] }>(response);\n return data.subscriptions ?? [];\n}\n\n/** Leave one digest by subscription id. */\nexport async function leaveDigestRequest(\n id: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/subscriptions/${encodeURIComponent(id)}`),\n { method: \"DELETE\", headers: { \"X-HS-Token\": code } },\n );\n await parse<{ left: boolean }>(response);\n}\n\n/**\n * Suppress ONE address entirely (no Ecency bulk mail to it again). Only that\n * address stops: an account can hold subscriptions under several addresses.\n */\nexport async function unsubscribeAllDigestsRequest(\n email: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/unsubscribe-all\"), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, code }),\n });\n await parse<{ suppressed: boolean }>(response);\n}\n\n/** Sender standing (status, complaint/bounce stats, subscriber counts) for a list. */\nexport async function getNewsletterSenderRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/sender?type=${type}&target=${encodeURIComponent(target)}`),\n { headers: { \"X-HS-Token\": code } },\n );\n return parse(response);\n}\n\n/** Already-sent issues for a list, newest first. */\nexport async function getNewsletterIssuesRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/issues?type=${type}&target=${encodeURIComponent(target)}`),\n { headers: { \"X-HS-Token\": code } },\n );\n const data = await parse<{ issues?: NewsletterSentIssue[] }>(response);\n return data.issues ?? [];\n}\n\n/** Candidate posts for composing a digest issue. */\nexport async function getNewsletterPostsRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n limit = 20,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(\n `/posts?type=${type}&target=${encodeURIComponent(target)}&limit=${limit}`,\n ),\n { headers: { \"X-HS-Token\": code } },\n );\n const data = await parse<{ posts?: NewsletterCandidatePost[] }>(response);\n return data.posts ?? [];\n}\n\nasync function postSend(\n path: string,\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(path), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\", \"X-HS-Token\": code },\n body: JSON.stringify(request),\n });\n const data = (await response.json().catch(() => undefined)) as\n | (T & {\n error?: string;\n code?: string;\n taken?: NewsletterSendRefusedError[\"taken\"];\n })\n | undefined;\n if (!response.ok) {\n throw new NewsletterSendRefusedError(\n data?.error || `Request failed (${response.status})`,\n response.status,\n data?.code,\n data?.taken,\n data,\n );\n }\n if (!data || typeof data !== \"object\") {\n throw new NewsletterSendRefusedError(\n `Unexpected response (${response.status})`,\n response.status,\n );\n }\n return data;\n}\n\n/** Render the would-be issue (subject/html/text, counts, taken periods) without sending. */\nexport function previewNewsletterSendRequest(\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n return postSend(\"/send/preview\", request, code);\n}\n\n/** Send a post or composed digest to the list's subscribers. Pro/team gated by the relay. */\nexport function sendNewsletterIssueRequest(\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n return postSend(\"/send\", request, code);\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getDigestSubscriptionsRequest } from \"../api\";\n\n/**\n * The signed-in account's live digest subscriptions. Disabled without a\n * username + token: callers render nothing then, and a request that\n * predictably 401s is noise. `retry: false` because the common failure is a\n * stale token, which a retry with the same token cannot fix.\n */\nexport function getDigestSubscriptionsQueryOptions(\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.subscriptions(name),\n enabled: !!name && !!code,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getDigestSubscriptionsRequest(code);\n },\n staleTime: 60_000,\n retry: false,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterSenderRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/**\n * Sender standing for a creator/community list. View access is the list's\n * owner (creator) or the community team, decided by the relay — enable this\n * only for callers already known to be the sender.\n */\nexport function getNewsletterSenderQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.sender(type, target, name),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterSenderRequest(type, target, code);\n },\n staleTime: 5 * 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterIssuesRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/** Already-sent issues for a creator/community list (sender-only view). */\nexport function getNewsletterIssuesQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.issues(type, target, name),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterIssuesRequest(type, target, code);\n },\n staleTime: 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterPostsRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/** Candidate posts for composing a digest issue (send-gated by the relay). */\nexport function getNewsletterPostsQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n limit = 20,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.posts(type, target, name, limit),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterPostsRequest(type, target, code, limit);\n },\n staleTime: 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { subscribeDigestRequest } from \"../api\";\nimport type { DigestSubscribeInput } from \"../types\";\n\n/**\n * Subscribe to a digest (also re-used to change cadence: same list + address\n * with a new cadence updates the row). Works signed-in (code) and anonymous\n * (input.captchaToken); the signed-in path refreshes the account's\n * subscriptions list on success.\n */\nexport function useSubscribeDigest(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"subscribe\", name],\n mutationFn: (input: DigestSubscribeInput) =>\n subscribeDigestRequest(input, code),\n onSuccess() {\n if (name) {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.subscriptions(name),\n });\n }\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { leaveDigestRequest } from \"../api\";\nimport type { DigestSubscription } from \"../types\";\n\n/** Leave one digest by subscription id; drops the row from the cached list. */\nexport function useLeaveDigest(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"leave\", name],\n mutationFn: async (id: string) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return leaveDigestRequest(id, code);\n },\n onSuccess(_result, id) {\n queryClient.setQueryData(\n QueryKeys.newsletter.subscriptions(name),\n (prev) => (prev ?? []).filter((s) => s.id !== id),\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { unsubscribeAllDigestsRequest } from \"../api\";\nimport type { DigestSubscription } from \"../types\";\n\n/**\n * Stop all Ecency mail to ONE address. Only that address's rows leave the\n * cached list: an account can hold subscriptions under more than one address,\n * and those stay visible.\n */\nexport function useUnsubscribeAllDigests(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"unsubscribe-all\", name],\n mutationFn: async (email: string) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return unsubscribeAllDigestsRequest(email, code);\n },\n onSuccess(_result, email) {\n queryClient.setQueryData(\n QueryKeys.newsletter.subscriptions(name),\n (prev) =>\n (prev ?? []).filter(\n (s) => s.email.toLowerCase() !== email.toLowerCase(),\n ),\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport {\n previewNewsletterSendRequest,\n sendNewsletterIssueRequest,\n} from \"../api\";\nimport type { NewsletterSendRequest } from \"../types\";\n\n/**\n * Preview the would-be issue. No cache side effects: a preview changes\n * nothing server-side.\n */\nexport function usePreviewNewsletterIssue(\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return useMutation({\n mutationKey: [\"newsletter\", \"send-preview\", name],\n mutationFn: async (request: NewsletterSendRequest) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return previewNewsletterSendRequest(request, code);\n },\n });\n}\n\n/**\n * Send a post or composed digest to a list. Errors are\n * NewsletterSendRefusedError with the relay's routing `code`\n * (already_sent + taken periods, suspended, post_refused, ...). On success the\n * list's issues + sender standing refresh.\n */\nexport function useSendNewsletterIssue(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"send\", name],\n mutationFn: async (request: NewsletterSendRequest) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return sendNewsletterIssueRequest(request, code);\n },\n onSuccess(_result, request) {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.issues(request.type, request.target, name),\n });\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.sender(request.type, request.target, name),\n });\n },\n });\n}\n","/**\n * Curation desk types.\n *\n * Shapes mirror the desk routes behind `/private-api/curation-desk/*`. Public\n * rows carry no curator identity; the roster feed and the tick add an `overlay`\n * with marks, signals and flags. The window state (full, half, eighth, locked,\n * paid) is never in a payload: clients derive it from `created` and `payout_at`.\n */\n\nexport const CURATION_REASONS = [\"quality\", \"underrated\", \"newcomer\", \"other\"] as const;\nexport type CurationReason = (typeof CURATION_REASONS)[number];\n\nexport const CURATION_SORTS = [\"queue\", \"newest\", \"unique\", \"random\"] as const;\nexport type CurationSort = (typeof CURATION_SORTS)[number];\n\nexport const CURATION_VIEWS = [\n \"queue\",\n \"latest\",\n \"new-authors\",\n \"recommended\",\n \"curated\",\n \"all\",\n \"excluded\",\n] as const;\nexport type CurationView = (typeof CURATION_VIEWS)[number];\n\nexport const CURATION_APPS = [\"all\", \"ecency\", \"peakd\", \"other\"] as const;\nexport type CurationApp = (typeof CURATION_APPS)[number];\n\nexport const CURATION_WINDOWS = [\"12h\", \"full\", \"half\", \"eighth\", \"locked\", \"all\"] as const;\nexport type CurationWindow = (typeof CURATION_WINDOWS)[number];\n\nexport const CURATION_MARK_STATES = [\"reviewed\", \"snoozed\", \"flagged\", \"noted\"] as const;\nexport type CurationMarkState = (typeof CURATION_MARK_STATES)[number];\n\nexport const CURATION_FLAG_REASONS = [\n \"plagiarism\",\n \"ai_slop\",\n \"recycled\",\n \"image_only\",\n \"tag_abuse\",\n \"farming\",\n \"nsfw_untagged\",\n \"other\",\n] as const;\nexport type CurationFlagReason = (typeof CURATION_FLAG_REASONS)[number];\n\nexport type CurationRole = \"admin\" | \"mod\" | \"curator\" | \"trial\";\n\n/** Filters shared by the public feed (query params) and the roster feed (body). */\nexport interface CurationFeedParams {\n sort?: CurationSort;\n view?: CurationView;\n app?: CurationApp;\n community?: string;\n window?: CurationWindow;\n rep_min?: number;\n rep_max?: number;\n min_words?: number;\n max_words?: number;\n has_images?: boolean;\n new_authors?: boolean;\n recommended?: boolean;\n hide_curated?: boolean;\n limit?: number;\n}\n\n/** Roster-only additions: the random seed and the team-mark predicates. */\nexport interface CurationRosterFeedParams extends CurationFeedParams {\n seed?: string;\n flagged?: boolean;\n hide_reviewed?: boolean;\n hide_snoozed?: boolean;\n}\n\nexport interface CurationTrailedBy {\n curator: string;\n at: string;\n weight: number;\n source: \"erobot_push\" | \"history\" | \"inferred\" | string;\n confirmed: boolean;\n}\n\nexport interface CurationVotedBy {\n voter: string;\n weight: number;\n at: string;\n}\n\n/** Public row (route 1, 4 rows are narrower, route 5 adds recommenders). */\nexport interface CurationRow {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n created: string;\n app: string | null;\n is_ecency: boolean;\n community: string | null;\n community_title: string | null;\n tags: string[];\n rep: number | null;\n is_new_author: boolean;\n author_post_count: number | null;\n author_created?: string | null;\n word_count: number | null;\n image_count: number;\n first_image: string | null;\n summary: string | null;\n edited_at: string | null;\n edit_count: number;\n votes: number | null;\n pending_payout: number | null;\n pending_payout_est?: number | null;\n payout_at: string | null;\n is_declined?: boolean | null;\n is_gray?: boolean | null;\n rshares_total?: number | null;\n rshares_after_24h?: number | null;\n /** 0 open, 1 curated, 2 dropped */\n state: number;\n trailed_by: CurationTrailedBy | null;\n voted_by: CurationVotedBy[];\n author_trailed_at: string | null;\n /** Set on the hivewatchers unvote path. */\n unvoted_at?: string | null;\n /** Materialization time; with `created` it tells a late row. */\n inserted_at?: string | null;\n recommend_count: number;\n unique_recommenders: number;\n reco_no_meta_count: number;\n /** Opaque keyset cursor for the page that follows this row. */\n _cursor?: string;\n}\n\nexport interface CurationMark {\n curator: string;\n state: CurationMarkState;\n reason?: string | null;\n note?: string | null;\n /**\n * Whether a note body exists. Tick deltas carry this instead of the body,\n * so a delta must never overwrite a note the client already holds.\n */\n has_note?: boolean;\n snooze_until?: string | null;\n updated_at: string;\n}\n\nexport interface CurationSignals {\n formulaic?: number | null;\n images?: { on_hive?: number; total?: number } | null;\n engagement?: { replies_per_day?: number | null } | null;\n style?: { alert?: boolean; sigma?: number; feature?: string; sample?: number } | null;\n /**\n * The detector's read of the post's FIRST image, which is the one rendered as the\n * thumbnail. `over` is the only field to act on; `score` and `classes` are for tuning.\n * A null score means unknown (no image, or the check could not run), never \"clean\".\n */\n nsfw?: {\n score?: number | null;\n class?: string | null;\n over?: boolean;\n classes?: string[];\n note?: string;\n } | null;\n [key: string]: unknown;\n}\n\nexport interface CurationFlags {\n low_rep?: boolean;\n /** The author's reputation has gone negative, which is not the same line as low_rep. */\n negative_rep?: boolean;\n ignorelist?: boolean;\n abuser?: boolean;\n spaminator?: boolean;\n blocked_tag?: boolean;\n /** The post carries Hive's own `nsfw` tag. */\n nsfw?: boolean;\n patch_body?: boolean;\n deleted?: boolean;\n hivewatchers_downvote?: boolean;\n [key: string]: unknown;\n}\n\n/** Roster-only overlay shipped inline with the roster feed and in tick deltas. */\nexport interface CurationOverlay {\n signals: CurationSignals | null;\n flags: CurationFlags;\n excluded_reason: string | null;\n team_mark: CurationMarkState | null;\n team_mark_by: string | null;\n team_snooze_until?: string | null;\n resurfaced_at: string | null;\n /** Set when the roster dismissed the recommendations of this post. */\n reco_dismissed_at?: string | null;\n marks: CurationMark[];\n notes_count: number;\n}\n\nexport type CurationRosterRow = CurationRow & { overlay: CurationOverlay | null };\n\nexport interface CurationTeamCursor {\n post_id: number | null;\n created: string | null;\n set_by?: string;\n set_at?: string;\n}\n\nexport interface CurationActiveCurator {\n username: string;\n last_action_at: string;\n}\n\n/**\n * The narrowing facets a curator was working when they made a mark. Empty means\n * the whole queue. The keys are the roster feed's own params, so a value here has\n * already been through the allow lists the query runs on.\n */\nexport type CurationLane = Partial<{\n /** Present only when it is not the queue order, under which alone a position is a watermark. */\n sort: CurationSort;\n view: string;\n app: CurationApp;\n community: string;\n window: CurationWindow;\n rep_min: number;\n rep_max: number;\n min_words: number;\n max_words: number;\n has_images: boolean;\n new_authors: boolean;\n recommended: boolean;\n flagged: boolean;\n hide_curated: boolean;\n hide_reviewed: boolean;\n hide_snoozed: boolean;\n}>;\n\n/**\n * How far one curator has got, derived from their marks so nobody types it. This\n * is the hand-off curators used to post in Discord.\n *\n * `reviewed_to` is a progress claim rather than a contiguous reviewed prefix: a\n * mark is any of the four states and marks are not made in queue order. It is\n * read, never used to aim anything. `lane` travels with the mark that set the\n * position, so the two always describe the same moment. Roster-only: the public\n * payloads carry no per-curator activity at all.\n */\nexport interface CurationHandoffEntry {\n username: string;\n reviewed_to: string | null;\n reviewed_to_post_id: number | null;\n last_mark_at: string;\n /** Absent for a trial viewer looking at somebody else. */\n marks_24h?: number;\n /**\n * Null is UNKNOWN: a mark from before the desk sent lanes, or one that said\n * nothing. It is never the whole queue, which is `{}`. Absent until the\n * backend that records it is deployed.\n */\n lane?: CurationLane | null;\n}\n\nexport interface CurationFeedPage {\n items: CurationRow[];\n next_cursor: string | null;\n team_cursor: CurationTeamCursor;\n head_lag_seconds: number;\n feed_version: string | null;\n generated_at: string;\n}\n\nexport interface CurationRosterFeedPage {\n items: CurationRosterRow[];\n next_cursor: string | null;\n team_cursor: CurationTeamCursor;\n active_curators: CurationActiveCurator[];\n /** Roster only, and absent until the backend that derives it is deployed. */\n handoff?: CurationHandoffEntry[];\n facets: { communities: Array<{ community: string; title?: string | null; count?: number }> };\n total_estimate: number | null;\n head_lag_seconds: number;\n generated_at: string;\n}\n\nexport interface CurationManaSpent {\n equiv: number;\n trail: number;\n other: number;\n crosscheck: number | null;\n since: string;\n}\n\nexport interface CurationVp {\n account: string;\n percent: number;\n live_percent: number;\n implied_weight: number;\n at: string;\n sustainable_votes_per_day: number;\n regen_votes_per_hour: number;\n reward_fund?: {\n recent_claims: string | number;\n reward_balance: number;\n median_price: number;\n at: string;\n } | null;\n}\n\nexport interface CurationStatus {\n team_cursor: CurationTeamCursor;\n behind_seconds: number | null;\n counts: {\n unreviewed: number;\n curated_24h: number;\n trail_votes_today: { posts: number; comments: number };\n recommended_posts: number;\n };\n mana_spent_today: CurationManaSpent | null;\n vp: CurationVp | null;\n head_lag_seconds: number;\n reco_lag_blocks: number | null;\n feed_version: string | null;\n latest_post_id: number | null;\n worker_tick_age_seconds: number | null;\n}\n\n/**\n * The per-curator conditions erobot applies before trailing a vote. The three\n * weights are Hive vote weights (100 = 1%); `trail` overrides the per-role\n * default, and is what `config.followAccounts` used to be.\n */\nexport interface CurationRosterRules {\n min_weight?: number;\n max_weight?: number;\n waves_only_below?: number;\n trail?: boolean;\n}\n\nexport interface CurationRosterEntry {\n username: string;\n role: CurationRole;\n active: boolean;\n rules?: CurationRosterRules | null;\n /** Resolved by the backend, so no client re-implements the per-role default. */\n trail?: boolean;\n}\n\n/**\n * The admin view of a row. These fields are private, so they arrive from the\n * roster-list POST and never from the edge-cached roster GET.\n */\nexport interface CurationRosterAdminEntry extends CurationRosterEntry {\n added_by: string | null;\n added_at: string | null;\n removed_at: string | null;\n note: string | null;\n}\n\nexport interface CurationRoster {\n curators: CurationRosterEntry[];\n updated_at: string;\n}\n\nexport interface CurationRosterAdminList {\n curators: CurationRosterAdminEntry[];\n}\n\nexport interface CurationRosterSetInput {\n curator: string;\n role: CurationRole;\n rules?: CurationRosterRules;\n note?: string;\n}\n\nexport interface CurationRecommender {\n username: string;\n rep: number | null;\n reason: CurationReason | null;\n at: string;\n has_meta: boolean;\n is_self?: boolean;\n /**\n * Ordering weight of this recommender, 0.5 to 1.5 with 1.0 neutral. Above\n * 1.0 means curators curated their picks more often than they dismissed\n * them over the window. It changes ordering only, never what is shown.\n */\n precision?: number;\n /** At least 10 recommendations and a precision of 1.2 or more. */\n trusted?: boolean;\n}\n\n/**\n * Route 14: one recommender's 90-day scorecard. An unknown username answers\n * zeros with a neutral precision and `trusted: false`, never a 404, so a name\n * that never recommended anything is not an error state.\n */\nexport interface CurationRecommenderStats {\n username: string;\n window_days: number;\n recommended: number;\n curated: number;\n dismissed: number;\n withdrawn: number;\n precision: number;\n trusted: boolean;\n computed_at: string | null;\n}\n\nexport type CurationReasonsHistogram = Partial>;\n\nexport interface CurationRecommendationItem {\n author: string;\n permlink: string;\n title: string;\n created: string;\n /**\n * The post's cover, the same column the feed row carries. Optional because a\n * desk older than the field answers without it; absent and null both mean no\n * cover, and the caller proxifies before rendering.\n */\n first_image?: string | null;\n recommend_count: number;\n unique_recommenders: number;\n no_meta_count: number;\n reasons: CurationReasonsHistogram;\n recommenders: CurationRecommender[];\n _cursor?: string;\n}\n\nexport interface CurationRecommendationsPage {\n items: CurationRecommendationItem[];\n next_cursor: string | null;\n}\n\nexport type CurationRecommendationsSort = \"unique\" | \"newest\";\n\nexport interface CurationRecommendationsParams {\n sort?: CurationRecommendationsSort;\n limit?: number;\n}\n\n/** Route 5: the public row plus the recommender list, self row included. */\nexport interface CurationPost extends CurationRow {\n recommenders: CurationRecommender[];\n no_meta_count: number;\n reasons: CurationReasonsHistogram;\n}\n\nexport interface CurationTickRequest {\n /** `generated_at` echoed verbatim from the previous response. */\n since: string | null;\n /** Loaded rows that have no overlay yet (at most 100). */\n need: number[];\n /** Visible rows (at most 100). */\n visible: number[];\n}\n\n/**\n * Tick answer. `truncated` says the delta window was too wide to answer in\n * full; it only means something when the request carried a `since`, since a\n * first tick with `since: null` asks for a snapshot, not a window.\n */\nexport interface CurationTickResponse {\n overlay: Array<{ post_id: number } & CurationOverlay>;\n deltas: {\n marks: Array<{ post_id: number } & CurationMark>;\n flags: Array<{ post_id: number; flags: CurationFlags; excluded_reason: string | null }>;\n signals: Array<{ post_id: number; signals: CurationSignals | null }>;\n /**\n * Rows whose curation state moved since the client's own `generated_at`.\n * The overlay carries no state, so without these a page the client keeps\n * holding would render a curated post as open and votable. Optional: a\n * backend that predates it simply sends nothing.\n */\n rows?: Array<\n Pick\n >;\n };\n team_cursor: CurationTeamCursor;\n active_curators: CurationActiveCurator[];\n /** Roster only, and absent until the backend that derives it is deployed. */\n handoff?: CurationHandoffEntry[];\n trail_alerts: unknown[];\n generated_at: string;\n truncated: boolean;\n}\n\nexport interface CurationMarkInput {\n author: string;\n permlink: string;\n state: CurationMarkState;\n reason?: string;\n note?: string;\n snooze_until?: string;\n /**\n * The feed params the desk was showing when it made this mark. The hand-off\n * reads a position and its lane off the same mark, so a desk with two tabs on\n * different filters stamps each mark with its own. Paging keys are dropped by\n * the gateway; absent means the lane is unknown, never the whole queue.\n */\n lane?: CurationRosterFeedParams;\n}\n\nexport interface CurationMarkResponse {\n mark: CurationMark | null;\n row: CurationRosterRow;\n}\n\nexport interface CurationMarkClearResponse {\n ok: boolean;\n row: CurationRosterRow;\n}\n\nexport interface CurationMyMarksParams {\n state?: CurationMarkState;\n cursor?: string;\n limit?: number;\n}\n\nexport interface CurationMyMark extends CurationMark {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n created: string;\n row?: CurationRosterRow | null;\n}\n\nexport interface CurationMyMarksResponse {\n items: CurationMyMark[];\n next_cursor: string | null;\n}\n\nexport type CurationCursorAction = \"advance\" | \"rewind\";\n\nexport interface CurationCursorInput {\n post_id: number;\n action: CurationCursorAction;\n reason?: string;\n}\n\nexport interface CurationCursorResponse {\n team_cursor: CurationTeamCursor;\n moved: boolean;\n swept_count: number | null;\n}\n\nexport type CurationUaClass = \"web\" | \"mobile\";\n\nexport interface CurationRecommendMetaInput {\n author: string;\n permlink: string;\n /** 40 hex chars when the broadcast path returned one; omitted otherwise. */\n trx_id?: string | null;\n ua_class: CurationUaClass;\n}\n\nexport type CurationDismissAction = \"dismiss\" | \"restore\";\n\nexport interface CurationDismissRecoInput {\n author: string;\n permlink: string;\n action: CurationDismissAction;\n}\n\nexport interface CurationDismissRecoResponse {\n row: CurationRosterRow;\n}\n","import type { CurationFlags } from \"./types\";\n\n/**\n * The desk shows the moderation flags the backend materialized from the bot's\n * config and from external abuse lists. The web reads them through this helper\n * so the list's name stays a wire detail of the payload: it is a warning the\n * desk displays, never a verdict and never an input to indexability.\n */\nexport function isOnAbuseList(flags: CurationFlags | null | undefined): boolean {\n return !!flags?.spaminator || !!flags?.abuser;\n}\n\n/**\n * Any flag that keeps a row out of the public queue. `low_rep` is deliberately\n * absent: it is the one excluded reason every view still lists with a chip,\n * because 25 is the reputation a brand new account has. `negative_rep` is the\n * separate line for a reputation that has gone negative, and that one does\n * remove the row.\n */\nexport function isExcludedByFlags(flags: CurationFlags | null | undefined): boolean {\n return (\n !!flags?.ignorelist ||\n !!flags?.abuser ||\n !!flags?.blocked_tag ||\n !!flags?.nsfw ||\n !!flags?.patch_body ||\n !!flags?.negative_rep ||\n !!flags?.deleted\n );\n}\n","import type { InfiniteData } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\n\n/**\n * Takedown masking for desk payloads.\n *\n * The desk serves rows the bridge never touched, so they never pass through\n * `filterDmcaEntry`. The test is the same one that file runs (`CONFIG`\n * patterns plus regexes against `@author/permlink`); what a row can leak is\n * its title, its summary and its thumbnail, so those are what the mask blanks.\n */\n\ninterface MaskableCurationRow {\n author: string;\n permlink: string;\n title: string;\n summary?: string | null;\n first_image?: string | null;\n}\n\nexport function isDmcaCurationPath(author: string, permlink: string): boolean {\n const path = `@${author}/${permlink}`;\n return (\n CONFIG.dmcaPatterns.includes(path) || CONFIG.dmcaPatternRegexes.some((regex) => regex.test(path))\n );\n}\n\n/** Returns the SAME object when nothing matches, so memoized rows keep identity. */\nexport function maskDmcaCurationRow(row: T): T {\n if (!row || !isDmcaCurationPath(row.author, row.permlink)) {\n return row;\n }\n const masked = { ...row, title: \"\" } as MaskableCurationRow & Record;\n if (\"summary\" in masked) masked.summary = null;\n if (\"first_image\" in masked) masked.first_image = null;\n return masked as T;\n}\n\n/** Masks every page item; untouched pages keep their identity. */\nexport function maskDmcaCurationPages(\n data: InfiniteData\n): InfiniteData {\n let changed = false;\n const pages = data.pages.map((page) => {\n let pageChanged = false;\n const items = page.items.map((item) => {\n const masked = maskDmcaCurationRow(item);\n if (masked !== item) pageChanged = true;\n return masked;\n });\n if (!pageChanged) return page;\n changed = true;\n return { ...page, items };\n });\n return changed ? { ...data, pages } : data;\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport type {\n CurationCursorInput,\n CurationCursorResponse,\n CurationDismissRecoInput,\n CurationDismissRecoResponse,\n CurationFeedPage,\n CurationFeedParams,\n CurationMarkClearResponse,\n CurationMarkInput,\n CurationMarkResponse,\n CurationMyMarksParams,\n CurationMyMarksResponse,\n CurationPost,\n CurationRecommendMetaInput,\n CurationRecommendationsPage,\n CurationRecommendationsParams,\n CurationRecommenderStats,\n CurationRoster,\n CurationRosterAdminEntry,\n CurationRosterAdminList,\n CurationRosterFeedPage,\n CurationRosterFeedParams,\n CurationRosterSetInput,\n CurationStatus,\n CurationTickRequest,\n CurationTickResponse,\n} from \"./types\";\n\n/**\n * Curation desk transport. Public GETs carry no identity; authed POSTs take the\n * HiveSigner access `code` as an explicit argument and send it in the body.\n * Token freshness is the caller's job (web: ensureValidToken; mobile: its token\n * wrapper), so a builder never captures a code that can expire.\n */\n\nconst ROUTE = \"/private-api/curation-desk\";\n\nexport class CurationApiError extends Error {\n readonly status: number;\n readonly data: unknown;\n\n constructor(message: string, status: number, data?: unknown) {\n super(message);\n this.name = \"CurationApiError\";\n this.status = status;\n this.data = data;\n }\n}\n\n/**\n * A light shape check per response family, not a schema validator: it answers\n * \"is this the kind of body the consumers dereference\", so a 200 that carries\n * something else (an error envelope, another route's body) fails here instead\n * of inside a query builder reading `.items.length`.\n */\ntype ShapeCheck = (data: unknown) => boolean;\n\nfunction isRecord(data: unknown): data is Record {\n return typeof data === \"object\" && data !== null && !Array.isArray(data);\n}\n\n/** Every paged family: the list is what the consumers page over. */\nconst hasItems: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.items);\nconst hasCurators: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.curators);\n/** Route 5: the viewer finds their own recommendation by name in this list. */\nconst hasRecommenders: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.recommenders);\n/** `vp` is nullable, so the field has to be present rather than truthy. */\nconst isStatus: ShapeCheck = (data) => isRecord(data) && \"vp\" in data;\n/**\n * A scorecard is counted, never absent: an unknown recommender answers zeros\n * rather than a 404, so a body without a numeric `recommended` is another\n * route's answer and not an empty scorecard.\n */\n/** Every number the scorecard prints, the window it prints them for included. */\nconst SCORECARD_COUNTS = [\"window_days\", \"recommended\", \"curated\", \"dismissed\", \"withdrawn\", \"precision\"] as const;\nconst isRecommenderStats: ShapeCheck = (data) =>\n isRecord(data) &&\n SCORECARD_COUNTS.every((key) => typeof data[key] === \"number\") &&\n typeof data.trusted === \"boolean\";\n\nasync function parse(response: Response, what: string, check?: ShapeCheck): Promise {\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n data = undefined;\n }\n throw new CurationApiError(`Failed to ${what}: ${response.status}`, response.status, data);\n }\n // The gateway answers an unknown GET with a 200 HTML page. That is never an\n // empty queue, so a non-JSON body is an error too. A body that only claims\n // to be JSON gets the same treatment: parsing it must not reach the caller\n // as a SyntaxError with no status on it.\n const contentType = response.headers?.get?.(\"content-type\") ?? \"\";\n if (contentType && !contentType.includes(\"json\")) {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n let data: unknown;\n try {\n data = await response.json();\n } catch {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n if (check && !check(data)) {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n return data as T;\n}\n\nconst COMMUNITY_RE = /^hive-\\d{5,6}$/;\nconst SEED_RE = /^[a-z0-9]{8,16}$/;\n\n/**\n * Booleans the desk already defaults to true, so only an explicit false says\n * anything. Sending the \"1\" would split memo and cache keys against a gateway\n * that drops it.\n */\nconst DEFAULT_TRUE = new Set([\"hide_curated\", \"hide_reviewed\", \"hide_snoozed\"]);\n\n/** Fixed emission order: keeps memo and shared-cache keys stable across clients. */\nconst PARAM_ORDER = [\n \"sort\",\n \"seed\",\n \"view\",\n \"app\",\n \"community\",\n \"window\",\n \"rep_min\",\n \"rep_max\",\n \"min_words\",\n \"max_words\",\n \"has_images\",\n \"new_authors\",\n \"recommended\",\n \"flagged\",\n \"hide_curated\",\n \"hide_reviewed\",\n \"hide_snoozed\",\n \"limit\",\n] as const;\n\nexport type NormalizedCurationParams = Record;\n\n/**\n * Drops defaults and unknown values, emits fixed-order string params. Used for\n * the query string, the roster body and the React Query key, so all three agree.\n */\nexport function normalizeCurationParams(\n params: CurationRosterFeedParams | CurationFeedParams = {}\n): NormalizedCurationParams {\n const source = params as Record;\n const out: NormalizedCurationParams = {};\n for (const name of PARAM_ORDER) {\n const value = source[name];\n if (value === undefined || value === null || value === \"\") continue;\n if (typeof value === \"boolean\") {\n if (DEFAULT_TRUE.has(name)) {\n if (!value) out[name] = \"0\";\n } else if (value) {\n out[name] = \"1\";\n }\n continue;\n }\n if (typeof value === \"number\") {\n if (!Number.isFinite(value)) continue;\n out[name] = String(Math.trunc(value));\n continue;\n }\n const text = String(value);\n if ((name === \"app\" || name === \"window\") && text === \"all\") continue;\n if (name === \"community\" && !COMMUNITY_RE.test(text)) continue;\n if (name === \"seed\" && !SEED_RE.test(text)) continue;\n out[name] = text;\n }\n // The seed only means something for the random order.\n if (out.sort !== \"random\") delete out.seed;\n return out;\n}\n\nfunction toQuery(normalized: NormalizedCurationParams, cursor?: string): string {\n const search = new URLSearchParams();\n for (const name of PARAM_ORDER) {\n if (normalized[name] !== undefined) search.set(name, normalized[name]);\n }\n if (cursor) search.set(\"cursor\", cursor);\n const text = search.toString();\n return text ? `?${text}` : \"\";\n}\n\nfunction url(path: string): string {\n return `${CONFIG.privateApiHost}${ROUTE}${path}`;\n}\n\n/** Hosts a credential may reach without TLS: a local gateway has no certificate. */\nconst LOOPBACK_HOSTS = new Set([\"localhost\", \"127.0.0.1\", \"::1\", \"[::1]\"]);\n\n/**\n * The authed routes put the HiveSigner code in the body, so the transport is\n * the only thing keeping a replayable credential private. A relative host\n * (empty for same-origin, `//gateway`, `/api`) takes the page's own transport,\n * so it is resolved against the page before the scheme is read.\n */\nfunction assertCredentialTransport(what: string) {\n const host = CONFIG.privateApiHost || \"\";\n const page = typeof window !== \"undefined\" ? window.location?.href : undefined;\n let parsed: URL;\n try {\n parsed = page ? new URL(host, page) : new URL(host);\n } catch {\n // Relative with no page to resolve against: outside a browser nothing can\n // be fetched from a relative URL either.\n return;\n }\n if (parsed.protocol === \"https:\") return;\n if (parsed.protocol === \"http:\" && LOOPBACK_HOSTS.has(parsed.hostname)) return;\n throw new CurationApiError(`Refusing to ${what} over an insecure connection`, 0);\n}\n\nasync function getJson(\n path: string,\n what: string,\n signal?: AbortSignal,\n check?: ShapeCheck\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url(path), { method: \"GET\", signal });\n return parse(response, what, check);\n}\n\nasync function postJson(\n path: string,\n code: string | undefined,\n body: Record,\n what: string,\n signal?: AbortSignal,\n check?: ShapeCheck\n): Promise {\n if (!code) {\n throw new Error(\"[SDK][Curation] missing auth\");\n }\n assertCredentialTransport(what);\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url(path), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ ...body, code }),\n // A 307 or 308 would resend this body, code included, to wherever the\n // redirect points.\n redirect: \"error\",\n signal,\n });\n return parse(response, what, check);\n}\n\n// ---------------------------------------------------------------------------\n// Public reads (used by the query builders)\n// ---------------------------------------------------------------------------\n\nexport function fetchCurationFeedPage(\n params: CurationFeedParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/feed${toQuery(normalizeCurationParams(params), cursor)}`,\n \"fetch curation feed\",\n signal,\n hasItems\n );\n}\n\nexport function fetchCurationStatus(signal?: AbortSignal): Promise {\n return getJson(\"/status\", \"fetch curation status\", signal, isStatus);\n}\n\nexport function fetchCurationRoster(signal?: AbortSignal): Promise {\n return getJson(\"/roster\", \"fetch curation roster\", signal, hasCurators);\n}\n\nexport function fetchCurationRecommendationsPage(\n params: CurationRecommendationsParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n const search = new URLSearchParams();\n if (params.sort) search.set(\"sort\", params.sort);\n if (params.limit) search.set(\"limit\", String(params.limit));\n if (cursor) search.set(\"cursor\", cursor);\n const text = search.toString();\n return getJson(\n `/recommendations${text ? `?${text}` : \"\"}`,\n \"fetch curation recommendations\",\n signal,\n hasItems\n );\n}\n\nexport function fetchCurationRecommenderStats(\n username: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/recommender/${encodeURIComponent(username)}`,\n \"fetch recommender stats\",\n signal,\n isRecommenderStats\n );\n}\n\nexport function fetchCurationPost(\n author: string,\n permlink: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/post/${encodeURIComponent(author)}/${encodeURIComponent(permlink)}`,\n \"fetch curation post\",\n signal,\n hasRecommenders\n );\n}\n\n// ---------------------------------------------------------------------------\n// Authed writes and reads (code in the body)\n// ---------------------------------------------------------------------------\n\nexport function curationRosterFeedRequest(\n code: string | undefined,\n params: CurationRosterFeedParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n const body: Record = { ...normalizeCurationParams(params) };\n if (cursor) body.cursor = cursor;\n return postJson(\n \"/roster-feed\",\n code,\n body,\n \"fetch roster feed\",\n signal,\n hasItems\n );\n}\n\nexport function curationTickRequest(\n code: string | undefined,\n body: CurationTickRequest,\n signal?: AbortSignal\n): Promise {\n return postJson(\n \"/tick\",\n code,\n {\n since: body.since,\n need: body.need.slice(0, 100),\n visible: body.visible.slice(0, 100),\n },\n \"tick\",\n signal\n );\n}\n\n/**\n * The roster admin routes. All three are admin-only upstream, and all three are\n * POSTs: the private view carries notes and retired rows, which must never enter\n * the edge-cached roster GET.\n */\nexport function curationRosterListRequest(\n code: string | undefined,\n signal?: AbortSignal\n): Promise {\n // Same shape check as the public roster: a 200 carrying an error envelope, or any\n // body without `curators`, must reach the query's error path. Without it the panel\n // renders `data?.curators ?? []` and an outage looks like an empty roster.\n return postJson(\"/roster-list\", code, {}, \"list roster\", signal, hasCurators);\n}\n\nexport function curationRosterSetRequest(\n code: string | undefined,\n input: CurationRosterSetInput\n): Promise<{ curator: CurationRosterAdminEntry }> {\n const { curator, role, rules, note } = input;\n if (!curator || !role) {\n throw new Error(\"[SDK][Curation] roster set needs a curator and a role\");\n }\n const body: Record = { curator, role };\n // Sent whole or not at all: the backend replaces the stored rules with what\n // arrives, so a partial object would silently drop the rules left out.\n if (rules) body.rules = rules;\n if (note !== undefined) body.note = note;\n return postJson<{ curator: CurationRosterAdminEntry }>(\"/roster-set\", code, body, \"set curator\");\n}\n\nexport function curationRosterRetireRequest(\n code: string | undefined,\n curator: string\n): Promise<{ ok: boolean; curator: string }> {\n if (!curator) {\n throw new Error(\"[SDK][Curation] roster retire needs a curator\");\n }\n return postJson<{ ok: boolean; curator: string }>(\n \"/roster-retire\",\n code,\n { curator },\n \"retire curator\"\n );\n}\n\nexport function curationMarkRequest(\n code: string | undefined,\n input: CurationMarkInput\n): Promise {\n const { author, permlink, state, reason, note, snooze_until, lane } = input;\n if (!author || !permlink || !state) {\n throw new Error(\"[SDK][Curation] mark needs author, permlink and state\");\n }\n const body: Record = { author, permlink, state };\n if (reason) body.reason = reason;\n if (note) body.note = note;\n if (snooze_until) body.snooze_until = snooze_until;\n if (lane) body.lane = lane;\n return postJson(\"/mark\", code, body, \"set mark\");\n}\n\nexport function curationMarkClearRequest(\n code: string | undefined,\n input: { author: string; permlink: string }\n): Promise {\n if (!input.author || !input.permlink) {\n throw new Error(\"[SDK][Curation] mark-clear needs author and permlink\");\n }\n return postJson(\n \"/mark-clear\",\n code,\n { author: input.author, permlink: input.permlink },\n \"clear mark\"\n );\n}\n\nexport function curationMyMarksRequest(\n code: string | undefined,\n params: CurationMyMarksParams = {},\n signal?: AbortSignal\n): Promise {\n const body: Record = {};\n if (params.state) body.state = params.state;\n if (params.cursor) body.cursor = params.cursor;\n if (params.limit) body.limit = params.limit;\n return postJson(\"/marks\", code, body, \"fetch my marks\", signal, hasItems);\n}\n\nexport function curationCursorRequest(\n code: string | undefined,\n input: CurationCursorInput\n): Promise {\n if (!Number.isFinite(input.post_id) || !input.action) {\n throw new Error(\"[SDK][Curation] cursor needs post_id and action\");\n }\n const body: Record = { post_id: input.post_id, action: input.action };\n if (input.reason) body.reason = input.reason;\n return postJson(\"/cursor\", code, body, \"move cursor\");\n}\n\nconst TRX_ID_RE = /^[0-9a-f]{40}$/;\n\nexport function curationRecommendMetaRequest(\n code: string | undefined,\n input: CurationRecommendMetaInput\n): Promise<{ ok: boolean }> {\n const { author, permlink, trx_id, ua_class } = input;\n if (!author || !permlink || !ua_class) {\n throw new Error(\"[SDK][Curation] recommend-meta needs author, permlink and ua_class\");\n }\n const body: Record = { author, permlink, ua_class };\n // Optional and informational: only a well-formed id travels, so a path that\n // returned an odd shape never turns the ping into a 400.\n if (typeof trx_id === \"string\" && TRX_ID_RE.test(trx_id)) body.trx_id = trx_id;\n return postJson<{ ok: boolean }>(\"/recommend-meta\", code, body, \"send recommendation meta\");\n}\n\nexport function curationDismissRecoRequest(\n code: string | undefined,\n input: CurationDismissRecoInput\n): Promise {\n if (!input.author || !input.permlink || !input.action) {\n throw new Error(\"[SDK][Curation] recommendation-dismiss needs author, permlink and action\");\n }\n return postJson(\n \"/recommendation-dismiss\",\n code,\n { author: input.author, permlink: input.permlink, action: input.action },\n \"dismiss recommendation\"\n );\n}\n","import { infiniteQueryOptions, type InfiniteData } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { maskDmcaCurationPages } from \"../dmca\";\nimport { fetchCurationFeedPage, normalizeCurationParams } from \"../requests\";\nimport type { CurationFeedPage, CurationFeedParams, CurationRow } from \"../types\";\n\nexport const CURATION_FEED_PAGE_SIZE = 25;\nexport const CURATION_FEED_STALE_MS = 10_000;\n\n/**\n * Drops rows whose key already appeared on an earlier page. Needed for the\n * live-keyset `unique` order (a row whose count rose between two pages repeats),\n * harmless for the immutable chronological orders. Untouched pages keep their\n * identity so memoized rows do not re-render.\n */\nexport function dedupePagesBy(\n data: InfiniteData,\n keyOf: (item: TPage[\"items\"][number]) => string | number\n): InfiniteData {\n const seen = new Set();\n let changed = false;\n const pages = data.pages.map((page) => {\n const items = page.items.filter((row) => {\n const key = keyOf(row);\n if (seen.has(key)) {\n changed = true;\n return false;\n }\n seen.add(key);\n return true;\n });\n return items.length === page.items.length ? page : { ...page, items };\n });\n return changed ? { ...data, pages } : data;\n}\n\n/** Feed pages dedupe by `post_id`. */\nexport function dedupeCurationPages }>(\n data: InfiniteData\n): InfiniteData {\n return dedupePagesBy(data, (row) => row.post_id);\n}\n\ninterface SelectableFeedRow {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n summary?: string | null;\n first_image?: string | null;\n}\n\n/**\n * The select every desk feed shares: dedupe by `post_id`, then blank the rows\n * on the takedown list. The roster feed (web owned, because its queryFn needs\n * a fresh token) uses it too, so both feeds hide the same rows.\n */\nexport function selectCurationFeedPages(\n data: InfiniteData\n): InfiniteData {\n return maskDmcaCurationPages(dedupeCurationPages(data));\n}\n\n/**\n * Public curation feed (route 1), keyset paginated.\n *\n * `_cursor` on the last row is opaque: it encodes the order's key (`created`\n * and `post_id` for the chronological sorts, the recommender pair for `unique`,\n * the hash pair for `random`). A short page ends the list. No `refetchInterval`\n * (React Query would refetch every loaded page) and no `initialData` (the web\n * client's `refetchOnMount: false` would then never fetch page 1): the web polls\n * `status` and refetches page 1 only when `feed_version` changes.\n */\nexport function getCurationFeedInfiniteQueryOptions(params: CurationFeedParams = {}) {\n const limit = params.limit ?? CURATION_FEED_PAGE_SIZE;\n const normalized = normalizeCurationParams({ ...params, limit });\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.curation.feed(normalized),\n initialPageParam: undefined as string | undefined,\n queryFn: ({ pageParam, signal }) => fetchCurationFeedPage({ ...params, limit }, pageParam, signal),\n getNextPageParam: (lastPage: CurationFeedPage): string | undefined => {\n if (!lastPage || lastPage.items.length < limit) {\n return undefined;\n }\n const last: CurationRow | undefined = lastPage.items[lastPage.items.length - 1];\n return last?._cursor ?? lastPage.next_cursor ?? undefined;\n },\n select: selectCurationFeedPages,\n staleTime: CURATION_FEED_STALE_MS,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationStatus } from \"../requests\";\n\n/**\n * Desk status (route 2): team cursor, counts, @ecency VP and the mana budget.\n * Public, memoized 15 s at the gateway. The web polls it every 60 s while\n * visible and uses `feed_version` to decide whether page 1 needs a refetch.\n */\nexport function getCurationStatusQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.curation.status(),\n queryFn: ({ signal }) => fetchCurationStatus(signal),\n staleTime: 15_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRoster } from \"../requests\";\n\n/** Curator roster (route 3): usernames and roles. Changes rarely; 10 minutes shared. */\nexport function getCurationRosterQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.curation.roster(),\n queryFn: ({ signal }) => fetchCurationRoster(signal),\n staleTime: 600_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { curationRosterListRequest } from \"../requests\";\n\n/**\n * The admin view of the roster: notes, who added whom, and the retired rows the\n * public roster hides. Admin only upstream, so it is keyed by the viewer and\n * never shares a cache entry with the public roster query.\n */\nexport function getCurationRosterAdminQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.curation.rosterAdmin(username),\n queryFn: ({ signal }) => curationRosterListRequest(code, signal),\n enabled: !!username && !!code,\n staleTime: 60_000,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRecommendationsPage } from \"../requests\";\nimport { maskDmcaCurationPages } from \"../dmca\";\nimport type { CurationRecommendationsPage, CurationRecommendationsParams } from \"../types\";\nimport { dedupePagesBy } from \"./get-curation-feed-infinite-query-options\";\n\nexport const CURATION_RECOMMENDATIONS_PAGE_SIZE = 25;\n\n/**\n * Open posts with at least one active recommendation (route 4), ordered by\n * unique recommenders (networks) or by first recommendation time.\n */\nexport function getCurationRecommendationsInfiniteQueryOptions(\n params: CurationRecommendationsParams = {}\n) {\n const sort = params.sort ?? \"unique\";\n const limit = params.limit ?? CURATION_RECOMMENDATIONS_PAGE_SIZE;\n const normalized: Record = { sort, limit: String(limit) };\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.curation.recommendations(normalized),\n initialPageParam: undefined as string | undefined,\n queryFn: ({ pageParam, signal }) =>\n fetchCurationRecommendationsPage({ sort, limit }, pageParam, signal),\n getNextPageParam: (lastPage: CurationRecommendationsPage): string | undefined => {\n if (!lastPage || lastPage.items.length < limit) {\n return undefined;\n }\n const last = lastPage.items[lastPage.items.length - 1];\n return last?._cursor ?? lastPage.next_cursor ?? undefined;\n },\n // Route 4 items carry no post_id; the author/permlink pair is the identity.\n select: (data) =>\n maskDmcaCurationPages(dedupePagesBy(data, (item) => `${item.author}/${item.permlink}`)),\n staleTime: 10_000,\n });\n}\n\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationPost } from \"../requests\";\n\nconst ACCOUNT_RE = /^[a-z0-9.-]{3,16}$/;\nconst PERMLINK_RE = /^[a-z0-9-]{1,255}$/;\n\n/**\n * One post's public desk row plus its recommenders (route 5). A viewer finds\n * their own recommendation state by their username in `recommenders`, so no\n * authed read exists. Memoized 15 s at the gateway, which is why a recommender's\n * own row is optimistic and polls this with backoff.\n */\nexport function getCurationPostQueryOptions(author: string, permlink: string) {\n const valid = ACCOUNT_RE.test(author) && PERMLINK_RE.test(permlink);\n\n return queryOptions({\n queryKey: QueryKeys.curation.post(author, permlink),\n queryFn: ({ signal }) => {\n // Guarded twice: `enabled` only gates automatic fetching, a prefetch\n // still runs the queryFn.\n if (!valid) {\n throw new Error(\"[SDK][Curation] invalid author or permlink\");\n }\n return fetchCurationPost(author, permlink, signal);\n },\n enabled: valid,\n staleTime: 15_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRecommenderStats } from \"../requests\";\n\nconst ACCOUNT_RE = /^[a-z0-9.-]{3,16}$/;\n\n/**\n * One recommender's 90-day scorecard (route 14): how many recommendations they\n * made, how many were curated, dismissed or withdrawn, the resulting precision\n * and whether they count as trusted. Public and memoized 60 s at the gateway,\n * so a popover that opens twice costs one request.\n *\n * The route answers zeros with a neutral precision for a name it has never\n * seen, so a missing scorecard is data rather than an error.\n */\nexport function getCurationRecommenderQueryOptions(username: string) {\n const valid = ACCOUNT_RE.test(username ?? \"\");\n\n return queryOptions({\n queryKey: QueryKeys.curation.recommender(username),\n queryFn: ({ signal }) => {\n // Guarded twice: `enabled` gates automatic fetching only, a prefetch\n // still runs this.\n if (!valid) {\n throw new Error(\"[SDK][Curation] invalid recommender username\");\n }\n return fetchCurationRecommenderStats(username, signal);\n },\n enabled: valid,\n staleTime: 60_000,\n });\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport {\n buildCurationRecommendOp,\n buildCurationUnrecommendOp,\n} from \"@/modules/operations/builders\";\nimport type { CurationReason } from \"../types\";\n\nexport interface CurationRecommendPayload {\n author: string;\n permlink: string;\n /** Defaults to \"quality\" on recommend; ignored on withdraw. */\n reason?: CurationReason;\n /** Broadcast the `unrecommend` op instead. */\n withdraw?: boolean;\n}\n\n/**\n * The broadcast result is not uniform across auth paths: the key path returns\n * `{tx_id, status}`, the HiveSigner token and Keychain extension paths return\n * `{id, block_num, ...}`; the redirect flows never resolve at all. This\n * gives the one shape the desk needs (a 40 hex char id) or null.\n */\nexport function normalizeBroadcastTrxId(result: unknown): string | null {\n if (!result || typeof result !== \"object\") return null;\n const r = result as { tx_id?: unknown; id?: unknown };\n const id = typeof r.tx_id === \"string\" ? r.tx_id : typeof r.id === \"string\" ? r.id : null;\n return id && /^[0-9a-f]{40}$/.test(id) ? id : null;\n}\n\n/**\n * Recommend a post to the curators (or withdraw a recommendation) with one\n * `custom_json` under posting authority. The desk indexes the op from the\n * chain; nothing is written to a desk route here. Platform wrappers send the\n * optional meta ping after success.\n */\nexport function useCurationRecommend(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n QueryKeys.curation.recommend(),\n username,\n (payload) => [\n payload.withdraw\n ? buildCurationUnrecommendOp(username!, payload.author, payload.permlink)\n : buildCurationRecommendOp(username!, payload.author, payload.permlink, payload.reason),\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.curation.post(variables.author, variables.permlink),\n [...QueryKeys.curation._recommendationsPrefix],\n ]);\n },\n auth,\n \"posting\",\n { broadcastMode }\n );\n}\n"]} \ No newline at end of file diff --git a/packages/sdk/dist/node/index.mjs b/packages/sdk/dist/node/index.mjs index c20f77ca4e..1b88f2debe 100644 --- a/packages/sdk/dist/node/index.mjs +++ b/packages/sdk/dist/node/index.mjs @@ -1,4 +1,4 @@ -import {useQuery,useInfiniteQuery,useMutation,QueryClient,queryOptions,infiniteQueryOptions,useQueryClient,isServer}from'@tanstack/react-query';import {hexToBytes,bytesToHex}from'@noble/hashes/utils.js';import {ripemd160}from'@noble/hashes/legacy.js';import Mn from'bs58';import {secp256k1}from'@noble/curves/secp256k1.js';import {sha256,sha512}from'@noble/hashes/sha2.js';import {cbc}from'@noble/ciphers/aes.js';import Co from'hivesigner';var Is=Object.defineProperty;var kt=(e,t)=>{for(var r in t)Is(e,r,{get:t[r],enumerable:true});};var Tt=new ArrayBuffer(0),Ft=null,qt=null;function Ds(){return Ft||(typeof TextEncoder<"u"?Ft=new TextEncoder:Ft={encode(e){let t=[];for(let r=0;r>6,128|n&63);else if(n>=55296&&n<=56319&&r+1>18,128|n>>12&63,128|n>>6&63,128|n&63);}else t.push(224|n>>12,128|n>>6&63,128|n&63);}return new Uint8Array(t)}}),Ft}function Tn(){return qt||(typeof TextDecoder<"u"?qt=new TextDecoder:qt={decode(e){let t=e instanceof ArrayBuffer?new Uint8Array(e):new Uint8Array(e.buffer,e.byteOffset,e.byteLength),r="";for(let n=0;n>10),56320+(i&1023)));}return r}}),qt}var D=class e{static LITTLE_ENDIAN=true;static BIG_ENDIAN=false;static DEFAULT_CAPACITY=16;static DEFAULT_ENDIAN=e.BIG_ENDIAN;buffer;view;offset;markedOffset;limit;littleEndian;constructor(t=e.DEFAULT_CAPACITY,r=e.DEFAULT_ENDIAN){this.buffer=t===0?Tt:new ArrayBuffer(t),this.view=t===0?new DataView(Tt):new DataView(this.buffer),this.offset=0,this.markedOffset=-1,this.limit=t,this.littleEndian=r;}static allocate(t,r){return new e(t,r)}static concat(t,r){let n=0;for(let a=0;a0&&(n.buffer=t.buffer,n.offset=t.byteOffset,n.limit=t.byteOffset+t.byteLength,n.view=new DataView(t.buffer));else if(t instanceof ArrayBuffer)n=new e(0,r),t.byteLength>0&&(n.buffer=t,n.offset=0,n.limit=t.byteLength,n.view=t.byteLength>0?new DataView(t):new DataView(Tt));else if(Array.isArray(t))n=new e(t.length,r),n.limit=t.length,new Uint8Array(n.buffer).set(t);else throw TypeError("Illegal buffer");return n}writeBytes(t,r){return this.append(t,r)}writeInt8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setInt8(r,t),n&&(this.offset+=1),this}writeByte(t,r){return this.writeInt8(t,r)}writeUint8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setUint8(r,t),n&&(this.offset+=1),this}writeUInt8(t,r){return this.writeUint8(t,r)}readUint8(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint8(t);return r&&(this.offset+=1),n}readUInt8(t){return this.readUint8(t)}writeInt16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setInt16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeShort(t,r){return this.writeInt16(t,r)}writeUint16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setUint16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeUInt16(t,r){return this.writeUint16(t,r)}writeInt32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setInt32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeInt(t,r){return this.writeInt32(t,r)}writeUint32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setUint32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeUInt32(t,r){return this.writeUint32(t,r)}readUint32(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint32(t,this.littleEndian);return r&&(this.offset+=4),n}readUInt32=this.readUint32;append(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o;return t instanceof e?(o=new Uint8Array(t.buffer,t.offset,t.limit-t.offset),t.offset+=o.length):t instanceof Uint8Array?o=t:t instanceof ArrayBuffer?o=new Uint8Array(t):o=new Uint8Array(t),o.length<=0?this:(r+o.length>this.buffer.byteLength&&this.resize(r+o.length),new Uint8Array(this.buffer).set(o,r),n&&(this.offset+=o.length),this)}clone(t){let r=new e(0,this.littleEndian);return t?(r.buffer=new ArrayBuffer(this.buffer.byteLength),new Uint8Array(r.buffer).set(new Uint8Array(this.buffer)),r.view=new DataView(r.buffer)):(r.buffer=this.buffer,r.view=this.view),r.offset=this.offset,r.markedOffset=this.markedOffset,r.limit=this.limit,r}copy(t,r){if(t===void 0&&(t=this.offset),r===void 0&&(r=this.limit),t===r)return new e(0,this.littleEndian);let n=r-t,o=new e(n,this.littleEndian);return o.offset=0,o.limit=n,new Uint8Array(o.buffer).set(new Uint8Array(this.buffer).subarray(t,r),0),o}copyTo(t,r,n,o){let i=typeof r>"u",s=typeof n>"u";r=i?t.offset:r,n=s?this.offset:n,o=o===void 0?this.limit:o;let a=o-n;return a===0?t:(t.ensureCapacity(r+a),new Uint8Array(t.buffer).set(new Uint8Array(this.buffer).subarray(n,o),r),s&&(this.offset+=a),i&&(t.offset+=a),this)}ensureCapacity(t){let r=this.buffer.byteLength;return rt?r:t):this}flip(){return this.limit=this.offset,this.offset=0,this}resize(t){if(this.buffer.byteLength"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigInt64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeLong(t,r){return this.writeInt64(t,r)}readInt64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigInt64(t,this.littleEndian);return r&&(this.offset+=8),n}readLong(t){return this.readInt64(t)}writeUint64(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigUint64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeUInt64(t,r){return this.writeUint64(t,r)}readUint64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigUint64(t,this.littleEndian);return r&&(this.offset+=8),n}readUInt64(t){return this.readUint64(t)}toBuffer(t){let r=this.offset,n=this.limit;return !t&&r===0&&n===this.buffer.byteLength?this.buffer:r===n?Tt:this.buffer.slice(r,n)}toArrayBuffer(t){return this.toBuffer(t)}writeVarint32(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=this.calculateVarint32(t);for(r+o>this.buffer.byteLength&&this.resize(r+o),t>>>=0;t>=128;)this.view.setUint8(r++,t&127|128),t>>>=7;return this.view.setUint8(r++,t),n?(this.offset=r,this):o}readVarint32(t){let r=typeof t>"u";typeof t>"u"&&(t=this.offset);let n=0,o=0,i;do i=this.view.getUint8(t++),n<5&&(o|=(i&127)<<7*n),++n;while((i&128)!==0);return o|=0,r?(this.offset=t,o):{value:o,length:n}}calculateVarint32(t){return t=t>>>0,t<128?1:t<16384?2:t<1<<21?3:t<1<<28?4:5}writeVString(t,r){let n=typeof r>"u",o=n?this.offset:r,i=Ds().encode(t),s=i.length,a=this.calculateVarint32(s);return o+a+s>this.buffer.byteLength&&this.resize(o+a+s),this.writeVarint32(s,o),o+=a,new Uint8Array(this.buffer).set(i,o),o+=s,n?(this.offset=o,this):o-(r||0)}readVString(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=t,o=this.readVarint32(t),i=o.value,s=o.length;t+=s;let a=Tn().decode(new Uint8Array(this.buffer,t,i));return t+=i,r?(this.offset=t,a):{string:a,length:t-n}}readUTF8String(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=Tn().decode(new Uint8Array(this.buffer,r,t));return n?(this.offset+=t,o):{string:o,length:t}}};var O={nodes:["https://api.hive.blog","https://api.deathwing.me","https://api.openhive.network","https://api.syncad.com","https://rpc.mahdiyari.info"],restNodes:["https://api.hive.blog","https://rpc.mahdiyari.info","https://api.syncad.com","https://hiveapi.actifit.io","https://api.c0ff33a.uk"],restNodesByApi:{hivesense:["https://api.hive.blog","https://api.syncad.com"]},userAgent:"ecency-sdk",chain_id:"beeab0de00000000000000000000000000000000000000000000000000000000",address_prefix:"STM",timeout:5e3,broadcastTimeout:15e3,retry:5,resilience:{adaptiveTimeout:true,adaptiveTimeoutFloorMs:2e3,adaptiveTimeoutFactor:4,hedge:false,hedgeDelayFloorMs:750,hedgeDelayFactor:2,hedgeBucketCapacity:10,hedgeRefillPerSuccess:.1,totalBudgetFactor:2}},Fn=["bridge.get_ranked_posts","bridge.get_account_posts","bridge.get_post","bridge.get_discussion","bridge.get_profile","bridge.get_profiles","bridge.get_community","bridge.list_communities","condenser_api.get_accounts","condenser_api.get_content","condenser_api.get_dynamic_global_properties","condenser_api.get_trending_tags"],It=null,yr=e=>{if(e===null){It=null;return}if(!e||typeof e!="object")return;let t=typeof e.url=="string"?e.url.trim():"";if(!/^https?:\/\//i.test(t))return;let r={};if(e.headers&&typeof e.headers=="object")for(let[s,a]of Object.entries(e.headers))typeof a=="string"&&a&&!/[\u0000-\u001f\u007f]/.test(a)&&!/[\u0000-\u001f\u007f]/.test(s)&&(r[s]=a);let n=typeof e.timeoutMs=="number"&&Number.isFinite(e.timeoutMs)&&e.timeoutMs>0?e.timeoutMs:2e3,o=e.methods===void 0?[...Fn]:Array.isArray(e.methods)?e.methods.filter(s=>typeof s=="string"&&s.includes(".")):[];if(o.length===0)return;let i=(s,a)=>typeof s=="number"&&Number.isFinite(s)&&s>0?s:a;It={url:t,headers:r,timeoutMs:n,methods:o,failureThreshold:Math.floor(i(e.failureThreshold,3)),cooldownMs:i(e.cooldownMs,1e4),methodSet:new Set(o)};},hr=e=>Array.isArray(e)?[...new Set(e.filter(t=>typeof t=="string").map(t=>t.trim().replace(/\/+$/,"")).filter(t=>t.length>0&&/^https?:\/\/.+/.test(t)))]:[],_r=e=>{let t=hr(e);t.length&&(O.nodes=t);},wr=e=>{let t=hr(e);t.length&&(O.restNodes=t);},br=e=>{if(!e||typeof e!="object")return;let t={...O.restNodesByApi};for(let[r,n]of Object.entries(e)){let o=hr(n);o.length?t[r]=o:delete t[r];}O.restNodesByApi=t;},vr=e=>{if(typeof e!="string")return;let t=e.trim();!t||/[\u0000-\u001f\u007f]/.test(t)||(O.userAgent=t);},Ar=e=>{if(!e||typeof e!="object")return;let t=O.resilience,r=o=>typeof o=="boolean",n=o=>typeof o=="number"&&Number.isFinite(o)&&o>0;r(e.adaptiveTimeout)&&(t.adaptiveTimeout=e.adaptiveTimeout),n(e.adaptiveTimeoutFloorMs)&&(t.adaptiveTimeoutFloorMs=Math.max(e.adaptiveTimeoutFloorMs,2e3)),n(e.adaptiveTimeoutFactor)&&(t.adaptiveTimeoutFactor=e.adaptiveTimeoutFactor),r(e.hedge)&&(t.hedge=e.hedge),n(e.hedgeDelayFloorMs)&&(t.hedgeDelayFloorMs=e.hedgeDelayFloorMs),n(e.hedgeDelayFactor)&&(t.hedgeDelayFactor=e.hedgeDelayFactor),n(e.hedgeBucketCapacity)&&(t.hedgeBucketCapacity=e.hedgeBucketCapacity),n(e.hedgeRefillPerSuccess)&&(t.hedgeRefillPerSuccess=Math.min(e.hedgeRefillPerSuccess,1)),n(e.totalBudgetFactor)&&(t.totalBudgetFactor=Math.max(e.totalBudgetFactor,1));};var Re=class e{data;recovery;compressed;constructor(t,r,n){this.data=t,this.recovery=r,this.compressed=n??true;}static from(t){if(typeof t=="string"){let r=hexToBytes(t),n=parseInt(bytesToHex(r.subarray(0,1)),16)-31,o=true;n<0&&(o=false,n=n+4);let i=r.subarray(1);return new e(i,n,o)}else throw new Error("Expected string for data")}toBuffer(){let t=new Uint8Array(65).fill(0);return this.compressed?t[0]=this.recovery+31&255:t[0]=this.recovery+27&255,t.set(this.data,1),t}customToString(){return bytesToHex(this.toBuffer())}toString(){return this.customToString()}getPublicKey(t){if(t instanceof Uint8Array&&t.length!==32||typeof t=="string"&&t.length!==64)throw new Error("Expected a valid sha256 hash as message");typeof t=="string"&&(t=hexToBytes(t));let r=secp256k1.Signature.fromBytes(this.data,"compact"),n=new secp256k1.Signature(r.r,r.s,this.recovery);return new Y(n.recoverPublicKey(t).toBytes())}};var Y=class e{key;prefix;constructor(t,r){this.key=t,this.prefix=r??O.address_prefix;}static fromString(t){let r=O.address_prefix;if(typeof t!="string"||t.length<=r.length)throw new Error("Invalid public key");let n=t.slice(0,r.length);if(n!==r)throw new Error(`Public key must start with ${r}`);let o;try{o=Mn.decode(t.slice(r.length));}catch{throw new Error("Invalid public key encoding")}if(o.length!==37)throw new Error("Invalid public key length");let i=o.subarray(0,33),s=o.subarray(33,37),a=ripemd160(i).subarray(0,4);if(!Ns(s,a))throw new Error("Public key checksum mismatch");try{secp256k1.Point.fromBytes(i);}catch{throw new Error("Invalid public key")}return new e(i,n)}static from(t){return t instanceof e?t:e.fromString(t)}verify(t,r){return typeof r=="string"&&(r=Re.from(r)),secp256k1.verify(r.data,t,this.key,{prehash:false,format:"compact"})}toString(){return Ks(this.key,this.prefix)}toJSON(){return this.toString()}inspect(){return `PublicKey: ${this.toString()}`}},Ks=(e,t)=>{let r=ripemd160(e);return t+Mn.encode(new Uint8Array([...e,...r.subarray(0,4)]))},Ns=(e,t)=>{if(e.byteLength!==t.byteLength)return false;for(let r=0;r{throw new Error("Void can not be serialized")},b=(e,t)=>{e.writeVString(t);},Qs=(e,t)=>{e.writeInt16(t);},Qn=(e,t)=>{e.writeInt64(t);},Bn=(e,t)=>{e.writeUint8(t);},pe=(e,t)=>{e.writeUint16(t);},X=(e,t)=>{e.writeUint32(t);},Un=(e,t)=>{e.writeUint64(t);},be=(e,t)=>{e.writeByte(t?1:0);},Hn=e=>(t,r)=>{let[n,o]=r;t.writeVarint32(n),e[n](t,o);},I=(e,t)=>{let r=Dt.from(t),n=r.getPrecision();e.writeInt64(Math.round(r.amount*Math.pow(10,n))),e.writeUint8(n);for(let o=0;o<7;o++)e.writeUint8(r.symbol.charCodeAt(o)||0);},ke=(e,t)=>{e.writeUint32(Math.floor(new Date(t+"Z").getTime()/1e3));},ye=(e,t)=>{t===null||typeof t=="string"&&t.slice(-39)==="1111111111111111111111111111111114T1Anm"?e.append(new Uint8Array(33).fill(0)):e.append(Y.from(t).key);},Vn=(e=null)=>(t,r)=>{r=Kt.from(r);let n=r.buffer.length;if(e){if(n!==e)throw new Error(`Unable to serialize binary. Expected ${e} bytes, got ${n}`)}else t.writeVarint32(n);t.append(r.buffer);},jn=Vn(),Pr=(e,t)=>(r,n)=>{r.writeVarint32(n.length);for(let[o,i]of n)e(r,o),t(r,i);},V=e=>(t,r)=>{t.writeVarint32(r.length);for(let n of r)e(t,n);},le=e=>(t,r)=>{for(let[n,o]of e)try{o(t,r[n]);}catch(i){throw i.message=`${n}: ${i.message}`,i}},Me=e=>(t,r)=>{r!==void 0?(t.writeByte(1),e(t,r)):t.writeByte(0);},W=le([["weight_threshold",X],["account_auths",Pr(b,pe)],["key_auths",Pr(ye,pe)]]),Us=le([["account",b],["weight",pe]]),xr=le([["base",I],["quote",I]]),Hs=le([["account_creation_fee",I],["maximum_block_size",X],["hbd_interest_rate",pe]]),k=(e,t)=>{let r=le(t);return (n,o)=>{n.writeVarint32(e),r(n,o);}},E={};E.account_create=k(R.account_create,[["fee",I],["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b]]);E.account_create_with_delegation=k(R.account_create_with_delegation,[["fee",I],["delegation",I],["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b],["extensions",V(se)]]);E.account_update=k(R.account_update,[["account",b],["owner",Me(W)],["active",Me(W)],["posting",Me(W)],["memo_key",ye],["json_metadata",b]]);E.account_witness_proxy=k(R.account_witness_proxy,[["account",b],["proxy",b]]);E.account_witness_vote=k(R.account_witness_vote,[["account",b],["witness",b],["approve",be]]);E.cancel_transfer_from_savings=k(R.cancel_transfer_from_savings,[["from",b],["request_id",X]]);E.change_recovery_account=k(R.change_recovery_account,[["account_to_recover",b],["new_recovery_account",b],["extensions",V(se)]]);E.claim_account=k(R.claim_account,[["creator",b],["fee",I],["extensions",V(se)]]);E.claim_reward_balance=k(R.claim_reward_balance,[["account",b],["reward_hive",I],["reward_hbd",I],["reward_vests",I]]);E.comment=k(R.comment,[["parent_author",b],["parent_permlink",b],["author",b],["permlink",b],["title",b],["body",b],["json_metadata",b]]);E.comment_options=k(R.comment_options,[["author",b],["permlink",b],["max_accepted_payout",I],["percent_hbd",pe],["allow_votes",be],["allow_curation_rewards",be],["extensions",V(Hn([le([["beneficiaries",V(Us)]])]))]]);E.convert=k(R.convert,[["owner",b],["requestid",X],["amount",I]]);E.create_claimed_account=k(R.create_claimed_account,[["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b],["extensions",V(se)]]);E.custom=k(R.custom,[["required_auths",V(b)],["id",pe],["data",jn]]);E.custom_json=k(R.custom_json,[["required_auths",V(b)],["required_posting_auths",V(b)],["id",b],["json",b]]);E.decline_voting_rights=k(R.decline_voting_rights,[["account",b],["decline",be]]);E.delegate_vesting_shares=k(R.delegate_vesting_shares,[["delegator",b],["delegatee",b],["vesting_shares",I]]);E.delete_comment=k(R.delete_comment,[["author",b],["permlink",b]]);E.escrow_approve=k(R.escrow_approve,[["from",b],["to",b],["agent",b],["who",b],["escrow_id",X],["approve",be]]);E.escrow_dispute=k(R.escrow_dispute,[["from",b],["to",b],["agent",b],["who",b],["escrow_id",X]]);E.escrow_release=k(R.escrow_release,[["from",b],["to",b],["agent",b],["who",b],["receiver",b],["escrow_id",X],["hbd_amount",I],["hive_amount",I]]);E.escrow_transfer=k(R.escrow_transfer,[["from",b],["to",b],["hbd_amount",I],["hive_amount",I],["escrow_id",X],["agent",b],["fee",I],["json_meta",b],["ratification_deadline",ke],["escrow_expiration",ke]]);E.feed_publish=k(R.feed_publish,[["publisher",b],["exchange_rate",xr]]);E.limit_order_cancel=k(R.limit_order_cancel,[["owner",b],["orderid",X]]);E.limit_order_create=k(R.limit_order_create,[["owner",b],["orderid",X],["amount_to_sell",I],["min_to_receive",I],["fill_or_kill",be],["expiration",ke]]);E.limit_order_create2=k(R.limit_order_create2,[["owner",b],["orderid",X],["amount_to_sell",I],["exchange_rate",xr],["fill_or_kill",be],["expiration",ke]]);E.recover_account=k(R.recover_account,[["account_to_recover",b],["new_owner_authority",W],["recent_owner_authority",W],["extensions",V(se)]]);E.request_account_recovery=k(R.request_account_recovery,[["recovery_account",b],["account_to_recover",b],["new_owner_authority",W],["extensions",V(se)]]);E.reset_account=k(R.reset_account,[["reset_account",b],["account_to_reset",b],["new_owner_authority",W]]);E.set_reset_account=k(R.set_reset_account,[["account",b],["current_reset_account",b],["reset_account",b]]);E.set_withdraw_vesting_route=k(R.set_withdraw_vesting_route,[["from_account",b],["to_account",b],["percent",pe],["auto_vest",be]]);E.transfer=k(R.transfer,[["from",b],["to",b],["amount",I],["memo",b]]);E.transfer_from_savings=k(R.transfer_from_savings,[["from",b],["request_id",X],["to",b],["amount",I],["memo",b]]);E.transfer_to_savings=k(R.transfer_to_savings,[["from",b],["to",b],["amount",I],["memo",b]]);E.transfer_to_vesting=k(R.transfer_to_vesting,[["from",b],["to",b],["amount",I]]);E.vote=k(R.vote,[["voter",b],["author",b],["permlink",b],["weight",Qs]]);E.withdraw_vesting=k(R.withdraw_vesting,[["account",b],["vesting_shares",I]]);E.witness_update=k(R.witness_update,[["owner",b],["url",b],["block_signing_key",ye],["props",Hs],["fee",I]]);E.witness_set_properties=k(R.witness_set_properties,[["owner",b],["props",Pr(b,jn)],["extensions",V(se)]]);E.account_update2=k(R.account_update2,[["account",b],["owner",Me(W)],["active",Me(W)],["posting",Me(W)],["memo_key",Me(ye)],["json_metadata",b],["posting_json_metadata",b],["extensions",V(se)]]);E.create_proposal=k(R.create_proposal,[["creator",b],["receiver",b],["start_date",ke],["end_date",ke],["daily_pay",I],["subject",b],["permlink",b],["extensions",V(se)]]);E.update_proposal_votes=k(R.update_proposal_votes,[["voter",b],["proposal_ids",V(Qn)],["approve",be],["extensions",V(se)]]);E.remove_proposal=k(R.remove_proposal,[["proposal_owner",b],["proposal_ids",V(Qn)],["extensions",V(se)]]);var Vs=le([["end_date",ke]]);E.update_proposal=k(R.update_proposal,[["proposal_id",Un],["creator",b],["daily_pay",I],["subject",b],["permlink",b],["extensions",V(Hn([se,Vs]))]]);E.collateralized_convert=k(R.collateralized_convert,[["owner",b],["requestid",X],["amount",I]]);E.recurrent_transfer=k(R.recurrent_transfer,[["from",b],["to",b],["amount",I],["memo",b],["recurrence",pe],["executions",pe],["extensions",V(le([["type",Bn],["value",le([["pair_id",Bn]])]]))]]);var js=(e,t)=>{let r=E[t[0]];if(!r)throw new Error(`No serializer for operation: ${t[0]}`);try{r(e,t[1]);}catch(n){throw n.message=`${t[0]}: ${n.message}`,n}},Ls=le([["ref_block_num",pe],["ref_block_prefix",X],["expiration",ke],["operations",V(js)],["extensions",V(b)]]),$s=le([["from",ye],["to",ye],["nonce",Un],["check",X],["encrypted",Vn()]]),de={Asset:I,Memo:$s,Price:xr,PublicKey:ye,String:b,Transaction:Ls,UInt16:pe,UInt32:X};var lt=e=>new Promise(t=>setTimeout(t,e));var Jn=(()=>{try{return !(typeof navigator<"u"&&navigator.product==="ReactNative")&&typeof process<"u"&&process.versions!=null&&process.versions.node!=null}catch{return false}})();function Rr(){return Jn?{"User-Agent":O.userAgent}:{}}var Fe={served:0,fallback:0,skipped:0,fallbackByReason:{status:0,rpcerror:0,timeout:0,transport:0,validate:0,parse:0}},qe=class extends Error{constructor(r,n){super(n);this.reason=r;}reason},Ln=e=>e instanceof Error?e.message:typeof e=="string"?e:String(e),Nt=0,$n=0;async function Ws(e,t,r,n,o,i){let s=t.indexOf(".");if(s<=0||s===t.length-1)throw new qe("transport",`method without an api prefix: ${t}`);let{signal:a,cleanup:c}=Tr(Math.min(e.timeoutMs,n)),{signal:p,cleanup:l}=Ut(a,o);try{let m;try{m=await fetch(e.url,{method:"POST",body:JSON.stringify({api:t.slice(0,s),method:t.slice(s+1),params:r}),headers:{"Content-Type":"application/json",...Rr(),...e.headers},signal:p});}catch(g){throw o?.aborted?g:new qe(a.aborted?"timeout":"transport",Ln(g))}if(m.status!==200){try{await m.body?.cancel();}catch{}let g=m.status===502&&(m.headers.get("x-ssr-cache")??"").toUpperCase()==="RPCERROR";throw new qe(g?"rpcerror":"status",g?"proxy relayed a node error":`proxy answered ${m.status}`)}let f;try{f=await m.json();}catch(g){throw o?.aborted?g:new qe(a.aborted?"timeout":"parse",Ln(g))}if(i&&!i(f))throw new qe("validate","proxy result rejected by validator");return f}finally{c(),l();}}var Z=class extends Error{name="RPCError";data;code;stack=void 0;constructor(t){super(t.message),this.code=t.code,"data"in t&&(this.data=t.data);}},Be=class extends Error{node;rateLimitMs;isRateLimit;constructor(t,r,n={}){super(r),this.node=t,this.rateLimitMs=n.rateLimitMs??0,this.isRateLimit=n.isRateLimit??false;}};function Yn(e){if(!e)return 0;let t=Number(e);if(Number.isFinite(t))return t>0?t*1e3:0;let r=Date.parse(e);if(Number.isFinite(r)){let n=r-Date.now();return n>0?n:0}return 0}var Gs=["ECONNREFUSED","ENOTFOUND","EHOSTUNREACH","EAI_AGAIN"],zs=["Failed to fetch","NetworkError when attempting to fetch","Load failed","fetch failed"];function Js(e){if(!e)return "";let t=[String(e.name||""),String(e.message||""),String(e.code||"")],r=e.cause;for(let n=0;r&&n<5;n++)t.push(String(r.code||""),String(r.message||"")),r=r.cause;return t.join(" ")}function Ys(e){if(!e)return false;if(e instanceof Be)return true;if(e instanceof Z)return false;let t=Js(e);return !!(Gs.some(r=>t.includes(r))||zs.some(r=>t.includes(r))||e instanceof SyntaxError||/Unexpected token|JSON\.parse|Unexpected end of JSON/i.test(t))}function Or(e,t){return !!(e===-32603||e<=-32e3&&e>=-32099||e===-32601||e===-32602&&/unable to parse|endpoint data|internal/i.test(t))}function Xn(e){let t=e.indexOf(".");return t>0?e.slice(0,t):e}var Xs=1e4,Zs=6e4,ea=12e4,Wn=2,Gn=6e4,zn=12e4,ta=30,dt=.3,Sr=3,mt=5*6e4,Zn=6e4,eo=1e3,to=2e3,Bt=class{health=new Map;getOrCreate(t){let r=this.health.get(t);return r||(r={consecutiveFailures:0,lastFailureTime:0,rateLimitedUntil:0,rateLimitStreak:0,lastRateLimitAt:0,apiFailures:new Map,headBlock:0,headBlockUpdatedAt:0,ewmaLatencyMs:void 0,latencySampleCount:0,latencyUpdatedAt:0,lastProbeAt:Date.now(),apiLatency:new Map},this.health.set(t,r)),r}recordSuccess(t,r,n,o){let i=this.getOrCreate(t);if(i.consecutiveFailures=0,i.rateLimitStreak=0,r){let s=i.apiFailures.get(r);(!s||!(s.defective&&s.cooldownUntil>Date.now()))&&i.apiFailures.delete(r);}typeof n=="number"&&Number.isFinite(n)&&n>=0&&this.recordLatency(i,n,o??r);}recordSlowFailure(t,r,n){!Number.isFinite(r)||r=Sr&&o-i.updatedAt<=mt?i.ewmaMs:void 0}return this.isLatencyUsable(n,o)?n.ewmaLatencyMs:void 0}recordCensoredLatency(t,r,n){!Number.isFinite(r)||r<50||this.recordLatency(this.getOrCreate(t),r,n);}recordLatency(t,r,n){let o=Date.now();if(t.latencyUpdatedAt>0&&o-t.latencyUpdatedAt>mt&&(t.ewmaLatencyMs=void 0,t.latencySampleCount=0,t.apiLatency.clear()),t.ewmaLatencyMs=t.ewmaLatencyMs===void 0?r:dt*r+(1-dt)*t.ewmaLatencyMs,t.latencySampleCount++,t.latencyUpdatedAt=o,n!==void 0){let i=t.apiLatency.get(n);!i||o-i.updatedAt>mt?t.apiLatency.set(n,{ewmaMs:r,sampleCount:1,updatedAt:o}):(i.ewmaMs=dt*r+(1-dt)*i.ewmaMs,i.sampleCount++,i.updatedAt=o);}}recordFailure(t,r){let n=this.getOrCreate(t);if(r){let o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};(i.cooldownUntil>0&&i.cooldownUntil<=o||i.lastFailureTime>0&&o-i.lastFailureTime>3e4)&&(i.count=0,i.cooldownUntil=0),i.count++,i.lastFailureTime=o,i.count>=Wn&&(i.cooldownUntil=o+Gn),n.apiFailures.set(r,i);}else n.consecutiveFailures++,n.lastFailureTime=Date.now();}recordDefectiveResponse(t,r){let n=this.getOrCreate(t),o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};i.count=Math.max(i.count+1,Wn),i.lastFailureTime=o,i.cooldownUntil=o+Gn,i.defective=true,n.apiFailures.set(r,i);}recordRateLimit(t,r){let n=this.getOrCreate(t),o=Date.now();n.rateLimitStreak>0&&o-n.lastRateLimitAt>ea&&(n.rateLimitStreak=0);let i=typeof r=="number"&&Number.isFinite(r)&&r>0,s=i?r:Math.min(Xs*2**n.rateLimitStreak,Zs);i||n.rateLimitStreak++,n.lastRateLimitAt=o,n.rateLimitedUntil=i?o+s:Math.max(n.rateLimitedUntil,o+s),n.consecutiveFailures++,n.lastFailureTime=o;}recordHeadBlock(t,r){if(!r||!Number.isFinite(r))return;let n=this.getOrCreate(t);n.headBlock=r,n.headBlockUpdatedAt=Date.now();}consensusHeadBlock(){let t=Date.now(),r=[];for(let n of this.health.values())n.headBlock>0&&t-n.headBlockUpdatedAt<=zn&&r.push(n.headBlock);return r.length<2?0:(r.sort((n,o)=>n-o),r[Math.floor((r.length-1)/2)])}isNodeHealthy(t,r){let n=this.health.get(t);if(!n)return true;let o=Date.now();if(n.rateLimitedUntil>o||n.consecutiveFailures>=3&&o-n.lastFailureTime<3e4)return false;if(r){let s=n.apiFailures.get(r);if(s&&s.cooldownUntil>o)return false}let i=this.consensusHeadBlock();return !(i>0&&n.headBlock>0&&o-n.headBlockUpdatedAt<=zn&&i-n.headBlock>ta)}getOrderedNodes(t,r){let n=[],o=[];for(let c of t)this.isNodeHealthy(c,r)?n.push(c):o.push(c);if(n.length<=1)return [...n,...o];let i=Date.now(),s=n.map((c,p)=>({node:c,i:p,score:this.scoreNode(c,i)})).sort((c,p)=>c.score-p.score||c.i-p.i).map(c=>c.node),a=this.pickReprobeCandidate(n,i);return a&&s[0]!==a?[a,...s.filter(c=>c!==a),...o]:[...s,...o]}isLatencyUsable(t,r){return !!t&&t.ewmaLatencyMs!==void 0&&t.latencySampleCount>=Sr&&r-t.latencyUpdatedAt<=mt}scoreNode(t,r){let n=this.health.get(t);return this.isLatencyUsable(n,r)?n.ewmaLatencyMs:eo}pickReprobeCandidate(t,r){let n=r-Zn,o,i=1/0;for(let s of t){let a=this.getOrCreate(s),c=Math.max(a.latencyUpdatedAt,a.lastProbeAt);c<=n&&c=1-1e-9?(this.tokens-=1,true):false}refill(){this.clamp(),this.tokens=Math.min(O.resilience.hedgeBucketCapacity,this.tokens+O.resilience.hedgeRefillPerSuccess);}clamp(){this.tokens>O.resilience.hedgeBucketCapacity&&(this.tokens=O.resilience.hedgeBucketCapacity);}get available(){return this.tokens}reset(t=O.resilience.hedgeBucketCapacity){this.tokens=t;}},Er=new Cr;function Qt(e,t,r,n,o){let i=O.resilience;if(!i.adaptiveTimeout||o)return n;let s=e.getUsableLatencyMs(t,r);return s===void 0?n:Math.ceil(Math.min(n,Math.max(i.adaptiveTimeoutFloorMs,i.adaptiveTimeoutFactor*s)))}function kr(e,t,r,n){r instanceof Be?r.isRateLimit?e.recordRateLimit(t,r.rateLimitMs||void 0):e.recordFailure(t,n):r instanceof Z?e.recordFailure(t,n):e.recordFailure(t);}function ro(e,t,r,n){if(!n||typeof n!="object"||!r.includes("get_dynamic_global_properties"))return;let o=n.head_block_number;typeof o=="number"&&e.recordHeadBlock(t,o);}function ra(){if(typeof DOMException<"u")return new DOMException("The operation was aborted due to timeout","TimeoutError");let e=new Error("The operation was aborted due to timeout");return e.name="TimeoutError",e}function Tr(e){if(e=Math.ceil(e),typeof AbortSignal.timeout=="function")return {signal:AbortSignal.timeout(e),cleanup:()=>{}};let t=new AbortController,r=setTimeout(()=>t.abort(ra()),e);return {signal:t.signal,cleanup:()=>clearTimeout(r)}}function Ut(e,t){if(!t)return {signal:e,cleanup:()=>{}};if(typeof AbortSignal.any=="function")return {signal:AbortSignal.any([e,t]),cleanup:()=>{}};let r=new AbortController;if(e.aborted)return r.abort(e.reason),{signal:r.signal,cleanup:()=>{}};if(t.aborted)return r.abort(t.reason),{signal:r.signal,cleanup:()=>{}};let n=()=>r.abort(e.reason),o=()=>r.abort(t.reason);e.addEventListener("abort",n,{once:true}),t.addEventListener("abort",o,{once:true});let i=()=>{e.removeEventListener("abort",n),t.removeEventListener("abort",o);};return {signal:r.signal,cleanup:i}}var ft=async(e,t,r,n=O.timeout,o=false,i)=>{let s=Math.floor(Math.random()*1e8),a={jsonrpc:"2.0",method:t,params:r,id:s},{signal:c,cleanup:p}=Tr(n),{signal:l,cleanup:m}=Ut(c,i),f=()=>{p(),m();};try{let g=await fetch(e,{method:"POST",body:JSON.stringify(a),headers:{"Content-Type":"application/json",...Rr()},signal:l});if(g.status===429)throw new Be(e,"HTTP 429 Rate Limited",{rateLimitMs:Yn(g.headers.get("Retry-After")),isRateLimit:!0});if(g.status>=500&&g.status<600)throw new Be(e,`HTTP ${g.status} from ${e}`);let _=await g.json();if(!_||typeof _.id>"u"||_.id!==s||_.jsonrpc!=="2.0")throw new Error("JSONRPC id mismatch");if("result"in _)return _.result;if("error"in _){let A=_.error;throw "message"in A&&"code"in A?new Z(A):_.error}throw _}catch(g){if(g instanceof Z||g instanceof Be||i?.aborted)throw g;if(o)return ft(e,t,r,n,false,i);throw g}finally{f();}};function Mt(){return lt(50+Math.random()*50)}function na(e){let{method:t,params:r,api:n,primary:o,hedgePool:i,callerTimeout:s,explicitTimeout:a,deadlineAt:c,externalSignal:p,onHedgeFired:l,validate:m}=e;return new Promise((f,g)=>{let _=false,A=0,x=false,C=false,F,ce,Ee=0,P=[],H=$=>{if(!_){_=true,ce!==void 0&&(clearTimeout(ce),ce=void 0);for(let q of P)q.signal.aborted||q.abort();$();}},L=($,q)=>{A++;let ge=new AbortController;P.push(ge);let pt=Ut(ge.signal,p),qs=Qt(j,$,t,s,a),gr=Date.now();q||(Ee=gr),ft($,t,r,qs,false,pt.signal).then(ie=>{if(pt.cleanup(),A--,q||(C=true),!_){if(m&&!m(ie)){if(j.recordDefectiveResponse($,n),F=new Error(`[hive-tx] response validation failed for ${t} from ${$}`),!q&&!x){H(()=>g(F));return}A===0&&H(()=>g(F));return}j.recordSuccess($,n,Date.now()-gr,t),ro(j,$,t,ie),q?C||j.recordCensoredLatency(o,Date.now()-Ee,t):x||Er.refill(),H(()=>f(ie));}}).catch(ie=>{if(pt.cleanup(),A--,q||(C=true),!_){if(p?.aborted){H(()=>g(ie));return}if(ie instanceof Z&&!Or(ie.code,ie.message)){H(()=>g(ie));return}if(kr(j,$,ie,n),j.recordSlowFailure($,Date.now()-gr,t),F=ie,!q&&!x){H(()=>g(ie));return}A===0&&H(()=>g(F));}});};L(o,false);let Q=j.getUsableLatencyMs(o,t)??0,J=Qt(j,o,t,s,a),z=Math.min(Math.max(O.resilience.hedgeDelayFloorMs,O.resilience.hedgeDelayFactor*Q),.8*J);ce=setTimeout(()=>{if(ce=void 0,_||p?.aborted||Date.now()>=c)return;let $=i.filter(ge=>j.isNodeHealthy(ge,n));if($.length===0)return;let q=$[Math.floor(Math.random()*$.length)];Er.trySpend()&&(x=true,l(q),L(q,true));},z);})}var y=async(e,t=[],r,n=O.retry,o,i)=>{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an array");if(O.nodes.length===0)throw new Error("config.nodes is empty");let s=r!==void 0,a=r??O.timeout,c=Xn(e),p=It;if(p&&Jn&&p.methodSet.has(e))if(Date.now()<$n)Fe.skipped++;else try{let g=await Ws(p,e,t,a,o,i);return Fe.served++,Nt=0,g}catch(g){if(o?.aborted)throw g;Fe.fallback++;let _=g instanceof qe?g.reason:"transport";Fe.fallbackByReason[_]=(Fe.fallbackByReason[_]??0)+1,_==="rpcerror"?Nt=0:++Nt>=p.failureThreshold&&($n=Date.now()+p.cooldownMs,Nt=0);}let l=Date.now()+O.resilience.totalBudgetFactor*a,m=new Set,f;for(let g=0;g<=n&&!(g>0&&Date.now()>=l);g++){let _=j.getOrderedNodes(O.nodes,c),A=_.find(F=>!m.has(F));A||(m.clear(),A=_[0]),m.add(A);let x=[];if(O.resilience.hedge&&j.getUsableLatencyMs(A,e)!==void 0&&(x=_.filter(F=>!m.has(F)&&j.isNodeHealthy(F,c)).slice(0,3)),x.length>0)try{return await na({method:e,params:t,api:c,primary:A,hedgePool:x,callerTimeout:a,explicitTimeout:s,deadlineAt:l,externalSignal:o,onHedgeFired:F=>m.add(F),validate:i})}catch(F){if(F instanceof Z&&!Or(F.code,F.message)||o?.aborted)throw F;f=F,g{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an array");if(O.nodes.length===0)throw new Error("config.nodes is empty");let o=Xn(e),i=new Set,s;for(let a=0;a!i.has(l));if(!p)break;if(i.add(p),n?.aborted)throw new Error("Aborted");try{let l=await ft(p,e,t,r,!1,n);return j.recordSuccess(p,o),l}catch(l){if(l instanceof Z||n?.aborted||(kr(j,p,l,o),s=l,!Ys(l)))throw l}}throw s},oa={balance:"/balance-api",hafah:"/hafah-api",hafbe:"/hafbe-api",hivemind:"/hivemind-api",hivesense:"/hivesense-api",reputation:"/reputation-api","nft-tracker":"/nft-tracker-api",hafsql:"/hafsql",status:"/status-api"};async function te(e,t,r,n,o=O.retry,i){if(!Array.isArray(O.restNodes))throw new Error("config.restNodes is not an array");if(O.restNodes.length===0)throw new Error("config.restNodes is empty");let s=n!==void 0,a=n??O.timeout,c=Date.now()+O.resilience.totalBudgetFactor*a,p=`${e}:${t}`,l=O.restNodesByApi?.[e]?.length?O.restNodesByApi[e]:O.restNodes,m=new Set,f,g=false;for(let _=0;_<=o&&!(_>0&&Date.now()>=c);_++){let A=Te.getOrderedNodes(l,e),x=A.find(q=>!m.has(q));x||(m.clear(),x=A[0]),m.add(x);let C=x+oa[e],F=t,ce=r||{},Ee=new Set;Object.entries(ce).forEach(([q,ge])=>{F.includes(`{${q}}`)&&(F=F.replace(`{${q}}`,encodeURIComponent(String(ge))),Ee.add(q));});let P=new URL(C+F);if(Object.entries(ce).forEach(([q,ge])=>{Ee.has(q)||(Array.isArray(ge)?ge.forEach(pt=>P.searchParams.append(q,String(pt))):P.searchParams.set(q,String(ge)));}),i?.aborted)throw new Error("Aborted");g=false;let{signal:H,cleanup:L}=Tr(Qt(Te,x,p,a,s)),{signal:Q,cleanup:J}=Ut(H,i),z=()=>{L(),J();},$=Date.now();try{let q=await fetch(P.toString(),{signal:Q,headers:Rr()});if(q.status===404)throw new Error("HTTP 404 - Hint: can happen on wrong params");if(q.status===429)throw Te.recordRateLimit(x,Yn(q.headers.get("Retry-After"))||void 0),g=!0,new Error(`HTTP 429 Rate Limited by ${x}`);if(q.status===503)throw Te.recordFailure(x,e),g=!0,new Error(`HTTP 503 Service Unavailable from ${x}`);if(!q.ok)throw Te.recordFailure(x,e),g=!0,new Error(`HTTP ${q.status} from ${x}`);return Te.recordSuccess(x,e,Date.now()-$,p),q.json()}catch(q){if(q?.message?.includes("HTTP 404")||i?.aborted)throw q;g||Te.recordFailure(x,e),Te.recordSlowFailure(x,Date.now()-$,p),f=q,_{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an Array");if(r>O.nodes.length)throw new Error("quorum > config.nodes.length");let i=(c=>{let p=[...c];for(let l=p.length-1;l>0;l--){let m=Math.floor(Math.random()*(l+1));[p[l],p[m]]=[p[m],p[l]];}return p})(O.nodes),s=Math.min(r,i.length),a=[];for(;s>0&&i.length>0;){let c=i.splice(0,s),p=[],l=[];for(let f=0;fl.push(g)).catch(()=>{}));await Promise.all(p),a.push(...l);let m=ia(a,r);if(m)return m;if(s=Math.min(r,i.length),s===0)throw new Error("No more nodes available.")}throw new Error("Couldn't reach quorum.")};function ia(e,t){let r=new Map;for(let o of e){let i=JSON.stringify(o);r.has(i)||r.set(i,[]),r.get(i).push(o);}let n=Array.from(r.values()).find(o=>o.length>=t);return n?n[0]:null}var aa=hexToBytes(O.chain_id),Qe=class e{transaction;expiration=6e4;txId;constructor(t){t?.transaction&&(t.transaction instanceof e?(this.transaction=t.transaction.transaction,this.expiration=t.transaction.expiration):this.transaction=t.transaction,this.transaction&&!Array.isArray(this.transaction.signatures)&&(this.transaction.signatures=[]),this.txId=this.digest().txId),t?.expiration&&(this.expiration=t.expiration);}async addOperation(t,r){this.transaction||await this.createTransaction(this.expiration),this.transaction.operations.push([t,r]);}sign(t){if(!this.transaction)throw new Error("First create a transaction by .addOperation()");if(this.transaction){let{digest:r,txId:n}=this.digest();Array.isArray(t)||(t=[t]);for(let o of t){let i=o.sign(r);this.transaction.signatures.push(i.customToString());}return this.txId=n,this.transaction}else throw new Error("No transaction to sign")}async broadcast(t=false){if(!this.transaction)throw new Error("Attempted to broadcast an empty transaction. Add operations by .addOperation()");if(this.transaction.signatures.length===0)throw new Error("Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)");try{await Ye("condenser_api.broadcast_transaction",[this.transaction]);}catch(i){if(!(i instanceof Z&&i.message.includes("Duplicate transaction check failed")))throw i}if(this.txId||(this.txId=this.digest().txId),!t)return {tx_id:this.txId,status:"unknown"};let r=60;await lt(1e3);let n=await this.checkStatus(),o=1;for(;n?.status!=="within_irreversible_block"&&n?.status!=="expired_irreversible"&&n?.status!=="too_old"&&o{let r=await y("condenser_api.get_dynamic_global_properties",[]),n=hexToBytes(r.head_block_id),o=Number(new Uint32Array(n.buffer,n.byteOffset+4,1)[0]),i=new Date(Date.now()+t).toISOString().slice(0,-5);this.transaction={expiration:i,extensions:[],operations:[],ref_block_num:r.head_block_number&65535,ref_block_prefix:o,signatures:[]};}};var uo=new Uint8Array([128]),U=class e{key;constructor(t){this.key=t;try{secp256k1.getPublicKey(t);}catch{throw new Error("invalid private key")}}static from(t){return typeof t=="string"?e.fromString(t):new e(t)}static fromString(t){return new e(la(t).subarray(1))}static fromSeed(t){if(typeof t=="string")if(/^[0-9a-fA-F]+$/.test(t))t=hexToBytes(t);else {let n=[];for(let o=0;o>6,128|i&63);else if(i>=55296&&i<=56319&&o+1>18,128|i>>12&63,128|i>>6&63,128|i&63);}else n.push(224|i>>12,128|i>>6&63,128|i&63);}t=new Uint8Array(n);}return new e(sha256(t))}static fromLogin(t,r,n="active"){let o=t+n+r;return e.fromSeed(o)}sign(t){let r=secp256k1.sign(t,this.key,{extraEntropy:true,format:"recovered",prehash:false}),n=parseInt(bytesToHex(r.subarray(0,1)),16);return Re.from((n+31).toString(16)+bytesToHex(r.subarray(1)))}createPublic(t){return new Y(secp256k1.getPublicKey(this.key),t)}toString(){return pa(new Uint8Array([...uo,...this.key]))}inspect(){let t=this.toString();return `PrivateKey: ${t.slice(0,6)}...${t.slice(-6)}`}getSharedSecret(t){let r=secp256k1.getSharedSecret(this.key,t.key);return sha512(r.subarray(1))}static randomKey(){return new e(secp256k1.keygen().secretKey)}},co=e=>sha256(sha256(e)),pa=e=>{let t=co(e);return Mn.encode(new Uint8Array([...e,...t.slice(0,4)]))},la=e=>{let t=Mn.decode(e);if(!so(t.slice(0,1),uo))throw new Error("Private key network id mismatch");let r=t.slice(-4),n=t.slice(0,-4),o=co(n).slice(0,4);if(!so(r,o))throw new Error("Private key checksum mismatch");return n},so=(e,t)=>{if(e===t)return true;if(e.byteLength!==t.byteLength)return false;let r=e.byteLength,n=0;for(;nfo(e,t,n,r),mo=(e,t,r,n,o)=>fo(e,t,r,n,o).message,fo=(e,t,r,n,o)=>{let i=r,s=e.getSharedSecret(t),a=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);a.writeUint64(i),a.append(s),a.flip();let c=sha512(new Uint8Array(a.toBuffer())),p=c.subarray(32,48),l=c.subarray(0,32),m=sha256(c).subarray(0,4),f=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);f.append(m),f.flip();let g=f.readUint32();if(o!==void 0){if(g!==o)throw new Error("Invalid key");n=ga(n,l,p);}else n=ya(n,l,p);return {nonce:i,message:n,checksum:g}},ga=(e,t,r)=>{let n=e;return n=cbc(t,r).decrypt(n),n},ya=(e,t,r)=>{let n=e;return n=cbc(t,r).encrypt(n),n},qr=null,ha=()=>{if(qr===null){let r=secp256k1.utils.randomSecretKey();qr=r[0]<<8|r[1];}let e=BigInt(Date.now()),t=++qr%65536;return e=e<{let t=Pa(e,33);return new Y(t)},wa=e=>e.readUint64(),ba=e=>e.readUint32(),va=e=>{let t=e.readVarint32(),r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())},Aa=e=>t=>{let r={},n=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);n.append(t),n.flip();for(let[o,i]of e)try{r[o]=i(n);}catch(s){throw s.message=`${o}: ${s.message}`,s}return r};function Pa(e,t){if(e){let r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())}else throw Error("No buffer found on first parameter")}var xa=Aa([["from",go],["to",go],["nonce",wa],["check",ba],["encrypted",va]]),yo={Memo:xa};var _o=(e,t,r,n)=>{if(!r.startsWith("#"))return r;r=r.substring(1),bo(),e=vo(e),t=Oa(t);let o=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);o.writeVString(r);let i=new Uint8Array(o.copy(0,o.offset).toBuffer()),{nonce:s,message:a,checksum:c}=lo(e,t,i,n),p=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);de.Memo(p,{check:c,encrypted:a,from:e.createPublic(),nonce:s,to:t}),p.flip();let l=new Uint8Array(p.toBuffer());return "#"+Mn.encode(l)},wo=(e,t)=>{if(!t.startsWith("#"))return t;t=t.substring(1),bo(),e=vo(e);let r=yo.Memo(Mn.decode(t)),{from:n,to:o,nonce:i,check:s,encrypted:a}=r,p=e.createPublic().toString()===new Y(n.key).toString()?new Y(o.key):new Y(n.key);r=mo(e,p,i,a,s);let l=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);return l.append(r),l.flip(),"#"+l.readVString()},Vt,bo=()=>{if(Vt===void 0){let e;Vt=true;try{let t="5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw",n=_o(t,"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA","#memo\u7231");e=wo(t,n);}finally{Vt=e==="#memo\u7231";}}if(Vt===false)throw new Error("This environment does not support encryption.")},vo=e=>typeof e=="string"?U.fromString(e):e,Oa=e=>typeof e=="string"?Y.fromString(e):e,Ao={decode:wo,encode:_o};var oe={};kt(oe,{buildWitnessSetProperties:()=>Ta,makeBitMaskFilter:()=>Ra,operations:()=>Ea,validateUsername:()=>Ca});var Ca=e=>{let t="Account name should ";if(!e)return t+"not be empty.";let r=e.length;if(r<3)return t+"be longer.";if(r>16)return t+"be shorter.";/\./.test(e)&&(t="Each account segment should ");let n=e.split("."),o=n.length;for(let i=0;ie.reduce(ka,[BigInt(0),BigInt(0)]).map(t=>t!==BigInt(0)?t.toString():null),ka=([e,t],r)=>r<64?[e|BigInt(1)<{let r={extensions:[],owner:e,props:[]};for(let n of Object.keys(t)){if(t[n]===void 0)continue;let o;switch(n){case "key":case "new_signing_key":o=de.PublicKey;break;case "account_subsidy_budget":case "account_subsidy_decay":case "maximum_block_size":o=de.UInt32;break;case "hbd_interest_rate":o=de.UInt16;break;case "url":o=de.String;break;case "hbd_exchange_rate":o=de.Price;break;case "account_creation_fee":o=de.Asset;break;default:throw new Error(`Unknown witness prop: ${n}`)}r.props.push([n,Fa(o,t[n])]);}return r.props.sort((n,o)=>n[0].localeCompare(o[0])),["witness_set_properties",r]},Fa=(e,t)=>{let r=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);return e(r,t),r.flip(),bytesToHex(new Uint8Array(r.toBuffer()))};function zy(e){let t;if(typeof e=="string"){let r=[];for(let n=0;n>6,128|o&63);else if(o>=55296&&o<=56319&&n+1>18,128|o>>12&63,128|o>>6&63,128|o&63);}else r.push(224|o>>12,128|o>>6&63,128|o&63);}t=new Uint8Array(r);}else t=e;return sha256(t)}function Po(e){try{return U.fromString(e),!0}catch{return false}}async function ee(e,t){let r=new Qe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),Ye("condenser_api.broadcast_transaction_synchronous",[r.transaction])}async function xo(e,t){let r=new Qe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),r.broadcast(false)}var Ia=432e3;function Oo(e,t){let r=Date.now()/1e3-t.last_update_time,n=Number(t.current_mana)+r*e/Ia,o=Math.round(n/e*1e4);return !isFinite(o)||o<0?o=0:o>1e4&&(o=1e4),{current_mana:n,max_mana:e,percentage:o}}function Da(e){let t=parseFloat(e.vesting_shares),r=parseFloat(e.delegated_vesting_shares),n=parseFloat(e.received_vesting_shares),o=parseFloat(e.vesting_withdraw_rate),i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t-s-r+n}function Ir(e){let t=Da(e)*1e6;return Oo(t,e.voting_manabar)}function jt(e){return Oo(Number(e.max_rc),e.rc_manabar)}var So=(c=>(c.COMMON="common",c.INFO="info",c.INSUFFICIENT_RESOURCE_CREDITS="insufficient_resource_credits",c.MISSING_AUTHORITY="missing_authority",c.TOKEN_EXPIRED="token_expired",c.NETWORK="network",c.TIMEOUT="timeout",c.VALIDATION="validation",c))(So||{});function Xe(e){let t=e?.error_description?String(e.error_description):"",r=e?.message?String(e.message):"",n=e?.error?String(e.error):"",o=t||r||String(e||""),i=a=>!!(n&&a.test(n)||t&&a.test(t)||r&&a.test(r)||o&&a.test(o));if(i(/please wait to transact/i)||i(/insufficient rc/i)||i(/rc mana|rc account|resource credits/i))return {message:"Insufficient Resource Credits. Please wait or power up.",type:"insufficient_resource_credits",originalError:e};if(i(/you may only post once every/i))return {message:"Please wait before posting again (minimum 3 second interval between comments).",type:"common",originalError:e};if(i(/your current vote on this comment is identical/i))return {message:"You have already voted with the same weight.",type:"info",originalError:e};if(i(/must claim something/i))return {message:"You must claim rewards before performing this action.",type:"info",originalError:e};if(i(/cannot claim that much vests/i))return {message:"Cannot claim that amount. Please check your pending rewards.",type:"info",originalError:e};if(i(/cannot delete a comment with net positive/i))return {message:"Cannot delete a comment with positive votes.",type:"info",originalError:e};if(i(/children == 0/i))return {message:"Cannot delete a comment with replies.",type:"common",originalError:e};if(i(/comment_cashout/i))return {message:"Cannot modify a comment that has already been paid out.",type:"common",originalError:e};if(i(/votes evaluating for comment that is paid out is forbidden/i))return {message:"Cannot vote on posts that have already been paid out.",type:"common",originalError:e};if(i(/no (active|owner|posting|memo) key available/i))return {message:"Key not available. Please provide your key to sign this operation.",type:"missing_authority",originalError:e};if(i(/missing (required )?active authority/i))return {message:"Missing active authority. This operation requires your active key.",type:"missing_authority",originalError:e};if(i(/missing (required )?owner authority/i))return {message:"Missing owner authority. This operation requires your owner key.",type:"missing_authority",originalError:e};if(i(/missing (required )?posting authority/i))return {message:"Missing posting authority. Please check your login method.",type:"missing_authority",originalError:e};if(n==="invalid_grant"||n==="unauthorized_access"||i(/token expired/i)||i(/invalid token/i)||i(/\bunauthorized\b/i)||i(/\bforbidden\b/i))return {message:"Authentication token expired. Please log in again.",type:"token_expired",originalError:e};if(i(/has already reblogged/i)||i(/already reblogged this post/i))return {message:"You have already reblogged this post.",type:"info",originalError:e};if(i(/duplicate transaction/i))return {message:"This transaction has already been processed.",type:"info",originalError:e};if(i(/econnrefused/i)||i(/connection refused/i)||i(/failed to fetch/i)||i(/\bnetwork[-\s]?(request|error|timeout|unreachable|down|failed)\b/i))return {message:"Network error. Please check your connection and try again.",type:"network",originalError:e};if(i(/timeout/i)||i(/timed out/i))return {message:"Request timed out. Please try again.",type:"timeout",originalError:e};if(i(/account.*does not exist/i)||i(/account not found/i))return {message:"Account not found. Please check the username.",type:"validation",originalError:e};if(i(/invalid memo key/i))return {message:"Invalid memo key. Cannot encrypt message.",type:"validation",originalError:e};if(i(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i))return {message:"Insufficient funds for this transaction.",type:"validation",originalError:e};if(i(/\b(invalid|validation)\b/i))return {message:(e?.message||o).substring(0,150)||"Validation error occurred",type:"validation",originalError:e};if(e?.error_description&&typeof e.error_description=="string")return {message:e.error_description.substring(0,150),type:"common",originalError:e};if(e?.message&&typeof e.message=="string")return {message:e.message.substring(0,150),type:"common",originalError:e};let s;return typeof e=="object"&&e!==null?e.error_description?s=String(e.error_description):e.code?s=`Error code: ${e.code}`:o&&o!=="[object Object]"?s=o.substring(0,150):s="Unknown error occurred":s=o.substring(0,150)||"Unknown error occurred",{message:s,type:"common",originalError:e}}function Ka(e){let t=Xe(e);return [t.message,t.type]}function ve(e){let{type:t}=Xe(e);return t==="missing_authority"||t==="token_expired"}function Na(e){let{type:t}=Xe(e);return t==="insufficient_resource_credits"}function Ma(e){let{type:t}=Xe(e);return t==="info"}function Ba(e){let{type:t}=Xe(e);return t==="network"||t==="timeout"}async function Ae(e,t,r,n,o="posting",i,s,a="async"){let c=n?.adapter;switch(e){case "key":{if(!c)throw new Error("No adapter provided for key-based auth");let p=i;if(p===void 0)switch(o){case "owner":if(c.getOwnerKey)p=await c.getOwnerKey(t);else throw new Error("Owner key not supported by adapter. Owner operations (like account recovery) require master password login or manual key entry.");break;case "active":c.getActiveKey&&(p=await c.getActiveKey(t));break;case "memo":if(c.getMemoKey)p=await c.getMemoKey(t);else throw new Error("Memo key not supported by adapter. Use memo encryption methods instead.");break;default:p=await c.getPostingKey(t);break}if(!p)throw new Error(`No ${o} key available for ${t}`);let l=U.fromString(p);return a==="async"?await xo(r,l):await ee(r,l)}case "hiveauth":{if(!c?.broadcastWithHiveAuth)throw new Error("HiveAuth not supported by adapter");return await c.broadcastWithHiveAuth(t,r,o)}case "hivesigner":{if(!c)throw new Error("No adapter provided for HiveSigner auth");if(o!=="posting"){if(c.broadcastWithHiveSigner)return await c.broadcastWithHiveSigner(t,r,o);throw new Error(`HiveSigner access token cannot sign ${o} operations. No platform broadcast available.`)}let p=s!==void 0?s:await c.getAccessToken(t);if(p)try{return (await new Co.Client({accessToken:p}).broadcast(r)).result}catch(l){if(c.broadcastWithHiveSigner&&ve(l))return await c.broadcastWithHiveSigner(t,r,o);throw l}if(c.broadcastWithHiveSigner)return await c.broadcastWithHiveSigner(t,r,o);throw new Error(`No access token available for ${t}`)}case "keychain":{if(!c?.broadcastWithKeychain)throw new Error("Keychain not supported by adapter");return await c.broadcastWithKeychain(t,r,o)}case "custom":{if(!n?.broadcast)throw new Error("No custom broadcast function provided");return await n.broadcast(r,o)}default:throw new Error(`Unknown auth method: ${e}`)}}async function Ua(e,t,r,n="posting",o="async"){let i=r?.adapter;if(i?.getLoginType){let l=await i.getLoginType(e,n);if(l){let m=i.hasPostingAuthorization?await i.hasPostingAuthorization(e):false;if(n==="posting"&&m&&l==="key")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to key:",f);}if(n==="posting"&&m&&l==="keychain")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to keychain/snap:",f);}if(n==="posting"&&m&&l==="hiveauth")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to HiveAuth:",f);}try{return await Ae(l,e,t,r,n,void 0,void 0,o)}catch(f){if(ve(f)&&i.showAuthUpgradeUI&&(n==="posting"||n==="active")){let g=t.length>0?t[0][0]:"unknown",_=await i.showAuthUpgradeUI(n,g);if(!_)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await Ae(_,e,t,r,n,void 0,void 0,o)}throw f}}if(n==="posting")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(m){if(ve(m)&&i.showAuthUpgradeUI){let f=t.length>0?t[0][0]:"unknown",g=await i.showAuthUpgradeUI(n,f);if(!g)throw new Error(`No login type available for ${e}. Please log in again.`);return await Ae(g,e,t,r,n,void 0,void 0,o)}throw m}else if(n==="active"&&i.showAuthUpgradeUI){let m=t.length>0?t[0][0]:"unknown",f=await i.showAuthUpgradeUI(n,m);if(!f)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await Ae(f,e,t,r,n,void 0,void 0,o)}}let s=r?.fallbackChain??["key","hiveauth","hivesigner","keychain","custom"],a=new Map;for(let l of s)try{let m=!1,f="",g,_;switch(l){case "key":if(!i)m=!0,f="No adapter provided";else {let A;switch(n){case "owner":i.getOwnerKey&&(A=await i.getOwnerKey(e));break;case "active":i.getActiveKey&&(A=await i.getActiveKey(e));break;case "memo":i.getMemoKey&&(A=await i.getMemoKey(e));break;default:A=await i.getPostingKey(e);break}A?g=A:(m=!0,f=`No ${n} key available`);}break;case "hiveauth":i?.broadcastWithHiveAuth||(m=!0,f="HiveAuth not supported by adapter");break;case "hivesigner":if(!i)m=!0,f="No adapter provided";else {let A=await i.getAccessToken(e);A&&(_=A);}break;case "keychain":i?.broadcastWithKeychain||(m=!0,f="Keychain not supported by adapter");break;case "custom":r?.broadcast||(m=!0,f="No custom broadcast function provided");break}if(m){a.set(l,new Error(`Skipped: ${f}`));continue}return await Ae(l,e,t,r,n,g,_,o)}catch(m){if(a.set(l,m),!ve(m))throw m}if(!Array.from(a.values()).some(l=>!l.message.startsWith("Skipped:"))){let l=Array.from(a.entries()).map(([m,f])=>`${m}: ${f.message}`).join(", ");throw new Error(`[SDK][Broadcast] No auth methods attempted for ${e}. ${l}`)}let p=Array.from(a.entries()).map(([l,m])=>`${l}: ${m.message}`).join(", ");throw new Error(`[SDK][Broadcast] All auth methods failed for ${e}. Errors: ${p}`)}function v(e=[],t,r,n=()=>{},o,i="posting",s){let a=s?.broadcastMode??"async";return useMutation({onSuccess:n,onMutate:s?.onMutate,onError:s?.onError,onSettled:s?.onSettled,mutationKey:[...e,t],mutationFn:async c=>{if(!t)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let p=r(c);try{if(o?.enableFallback!==!1&&o?.adapter)return await Ua(t,p,o,i,a);if(o?.broadcast)return await o.broadcast(p,i);let l=o?.postingKey;if(l){if(i!=="posting")throw new Error(`[SDK][Broadcast] Legacy auth only supports posting authority, but '${i}' was requested. Use AuthContextV2 with an adapter for ${i} operations.`);let f=U.fromString(l);return await ee(p,f)}let m=o?.accessToken;if(m)return (await new Co.Client({accessToken:m}).broadcast(p)).result;throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}catch(l){throw l instanceof Z?new Error(l.message):l}}})}async function Eo(e,t,r,n){if(!e)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let o={id:t,required_auths:[],required_posting_auths:[e],json:JSON.stringify(r)};if(n?.broadcast)return n.broadcast([["custom_json",o]],"posting");let i=n?.postingKey;if(i){let c=U.fromString(i);return ee([["custom_json",o]],c)}let s=n?.accessToken;if(s)return (await new Co.Client({accessToken:s}).customJson([],[e],t,JSON.stringify(r))).result;let a=n?.adapter;if(a){let c=[["custom_json",o]];if(n?.loginType==="keychain"&&a.broadcastWithKeychain)return a.broadcastWithKeychain(e,c,"posting");if(n?.loginType==="hiveauth"&&a.broadcastWithHiveAuth)return a.broadcastWithHiveAuth(e,c,"posting")}throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}var lh=4e3;function S(e,t,r){if(e?.invalidateQueries){if(t==="sync")return e.invalidateQueries(r);setTimeout(()=>e.invalidateQueries?.(r),4e3);}}function Pe(e,t){let r=AbortSignal.timeout(e);if(!t)return r;if(typeof AbortSignal.any=="function")return AbortSignal.any([t,r]);let n=new AbortController,o=()=>{let i=t.aborted?t.reason:r.reason;n.abort(i),t.removeEventListener("abort",o),r.removeEventListener("abort",o);};return t.aborted?n.abort(t.reason):r.aborted?n.abort(r.reason):(t.addEventListener("abort",o,{once:true}),r.addEventListener("abort",o,{once:true})),n.signal}var Ue=(()=>{try{return process.env?.NODE_ENV==="development"}catch{return false}})(),ja=()=>{try{return process.env?.VITE_HELIUS_API_KEY}catch{return}},xe=1e4,Ro=120*1e3,Lt,La;function $a(){return Lt?Lt():La??=new QueryClient}var d={privateApiHost:"https://ecency.com",newsletterHost:void 0,defaultObserver:"ecency",clientId:"ecency-sdk",imageHost:"https://i.ecency.com",get hiveNodes(){return O.nodes},heliusApiKey:ja(),get queryClient(){return $a()},set queryClient(e){Lt=()=>e;},pollsApiHost:"https://poll.ecency.com",plausibleHost:"https://pl.ecency.com",dmcaAccounts:[],dmcaTags:[],dmcaPatterns:[],dmcaTagRegexes:[],dmcaPatternRegexes:[],_dmcaInitialized:false},B;(Ee=>{function e(P){d.queryClient=P;}Ee.setQueryClient=e;function t(P){Lt=P;}Ee.setQueryClientResolver=t;function r(P){d.privateApiHost=P;}Ee.setPrivateApiHost=r;function n(P){d.newsletterHost=P;}Ee.setNewsletterHost=n;function o(P){d.clientId=P;}Ee.setClientId=o;function i(P){if(typeof P!="string"||P.trim()==="")throw new Error("setDefaultObserver requires a non-empty Hive account. There is no empty-string opt-out; observer resolution would fall back to the post author while caching under an empty key.");d.defaultObserver=P;}Ee.setDefaultObserver=i;function s(){return d.privateApiHost?d.privateApiHost:typeof window<"u"&&window.location?.origin?window.location.origin:"https://ecency.com"}Ee.getValidatedBaseUrl=s;function a(P){d.pollsApiHost=P;}Ee.setPollsApiHost=a;function c(P){d.imageHost=P;}Ee.setImageHost=c;function p(P){_r(P);}Ee.setHiveNodes=p;function l(P){wr(P);}Ee.setRestNodes=l;function m(P){br(P);}Ee.setRestNodesByApi=m;function f(P){vr(P);}Ee.setUserAgent=f;function g(P){Ar(P);}Ee.setResilience=g;function _(P){yr(P);}Ee.setServerRpcProxy=_;function A(){return Fe}Ee.getServerRpcProxyStats=A;function x(P){if(/(\([^)]*[*+{][^)]*\))[*+{]/.test(P))return {safe:false,reason:"nested quantifiers detected"};if(/\([^|)]*\|[^)]*\)[*+{]/.test(P))return {safe:false,reason:"alternation with quantifier (potential overlap)"};if(/\([^)]*[*+][^)]*\)[*+]/.test(P))return {safe:false,reason:"repeated quantifiers (catastrophic backtracking risk)"};if(/\.\*\.\*/.test(P)||/\.\+\.\+/.test(P))return {safe:false,reason:"multiple greedy quantifiers on wildcards"};let H=/\.?\{(\d+),(\d+)\}/g,L;for(;(L=H.exec(P))!==null;){let[,Q,J]=L;if(parseInt(J,10)-parseInt(Q,10)>1e3)return {safe:false,reason:`excessive range: {${Q},${J}}`}}return {safe:true}}function C(P){let H=["a".repeat(50)+"x","ab".repeat(50)+"x","x".repeat(100),"aaa".repeat(30)+"bbb".repeat(30)+"x"],L=5;for(let Q of H){let J=Date.now();try{P.test(Q);let z=Date.now()-J;if(z>L)return {safe:!1,reason:`runtime test exceeded ${L}ms (took ${z}ms on input length ${Q.length})`}}catch(z){return {safe:false,reason:`runtime test threw error: ${z}`}}}return {safe:true}}function F(P,H=200){try{if(!P)return Ue&&console.warn("[SDK] DMCA pattern rejected: empty pattern"),null;if(P.length>H)return Ue&&console.warn(`[SDK] DMCA pattern rejected: length ${P.length} exceeds max ${H} - pattern: ${P.substring(0,50)}...`),null;let L=x(P);if(!L.safe)return Ue&&console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${L.reason}) - pattern: ${P.substring(0,50)}...`),null;let Q;try{Q=new RegExp(P);}catch(z){return Ue&&console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${P.substring(0,50)}...`,z),null}let J=C(Q);return J.safe?Q:(Ue&&console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${J.reason}) - pattern: ${P.substring(0,50)}...`),null)}catch(L){return Ue&&console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${P.substring(0,50)}...`,L),null}}function ce(P={}){let H=z=>Array.isArray(z)?z.filter($=>typeof $=="string"):[],L=P||{},Q={accounts:H(L.accounts),tags:H(L.tags),patterns:H(L.posts)};d.dmcaAccounts=Q.accounts,d.dmcaTags=Q.tags,d.dmcaPatterns=Q.patterns,d.dmcaTagRegexes=Q.tags.map(z=>F(z)).filter(z=>z!==null),d.dmcaPatternRegexes=[];let J=Q.tags.length-d.dmcaTagRegexes.length;!d._dmcaInitialized&&Ue&&(console.log("[SDK] DMCA configuration loaded:"),console.log(` - Accounts: ${Q.accounts.length}`),console.log(` - Tag patterns: ${d.dmcaTagRegexes.length}/${Q.tags.length} compiled (${J} rejected)`),console.log(` - Post patterns: ${Q.patterns.length} (using exact string matching)`),J>0&&console.warn(`[SDK] ${J} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`)),d._dmcaInitialized=true;}Ee.setDmcaLists=ce;})(B||={});function Ph(){return new QueryClient({defaultOptions:{queries:{refetchOnWindowFocus:false,refetchOnMount:false}}})}var w=()=>d.queryClient,Ja;(s=>{function e(a){return w().getQueryData(a)}s.getQueryData=e;function t(a){return w().getQueryData(a)}s.getInfiniteQueryData=t;async function r(a){return await w().prefetchQuery(a),e(a.queryKey)}s.prefetchQuery=r;async function n(a){return await w().prefetchInfiniteQuery(a),t(a.queryKey)}s.prefetchInfiniteQuery=n;function o(a){return {prefetch:()=>r(a),getData:()=>e(a.queryKey),useClientQuery:()=>useQuery(a),fetchAndGet:()=>w().fetchQuery(a)}}s.generateClientServerQuery=o;function i(a){return {prefetch:()=>n(a),getData:()=>t(a.queryKey),useClientQuery:()=>useInfiniteQuery(a),fetchAndGet:()=>w().fetchInfiniteQuery(a)}}s.generateClientServerInfiniteQuery=i;})(Ja||={});function Oh(e){return btoa(JSON.stringify(e))}function Sh(e){let t=atob(e);if(t[0]==="{")return JSON.parse(t)}var ko=(n=>(n.HIVE="HIVE",n.HBD="HBD",n.VESTS="VESTS",n))(ko||{}),$t=(e=>(e["@@000000021"]="HIVE",e["@@000000013"]="HBD",e["@@000000037"]="VESTS",e))($t||{});function T(e){if(typeof e=="string"){let t=e.split(" ");return {amount:parseFloat(t[0]),symbol:ko[t[1]]}}else return {amount:parseFloat(e.amount.toString())/Math.pow(10,e.precision),symbol:$t[e.nai]}}var Dr;function h(){if(!Dr){if(typeof globalThis.fetch!="function")throw new Error("[Ecency][SDK] - global fetch is not available");Dr=globalThis.fetch.bind(globalThis);}return Dr}function To(e){return typeof e=="string"?/^hive-\d+$/.test(e):false}function Ya(e){return e&&typeof e=="object"&&"data"in e&&"pagination"in e&&Array.isArray(e.data)}function re(e,t){return Ya(e)?e:{data:Array.isArray(e)?e:[],pagination:{total:Array.isArray(e)?e.length:0,limit:t,offset:0,has_next:false}}}function Ze(e,t){return e/1e6*t}function Fo(e){return e===void 0?true:parseInt(e.split("-")[0],10)<1980}var qo=60*1e3;function Oe(){return queryOptions({queryKey:u.core.dynamicProps(),refetchInterval:qo,staleTime:qo,queryFn:async({signal:e})=>{let[t,r,n,o,i]=await Promise.all([y("condenser_api.get_dynamic_global_properties",[],void 0,void 0,e),y("condenser_api.get_feed_history",[],void 0,void 0,e),y("condenser_api.get_chain_properties",[],void 0,void 0,e),y("condenser_api.get_reward_fund",["post"],void 0,void 0,e),y("database_api.get_hardfork_properties",{},void 0,void 0,e).catch(()=>({current_hardfork_version:"1.28.0",last_hardfork:28}))]),s=T(t.total_vesting_shares).amount,a=T(t.total_vesting_fund_hive).amount,c=0;Number.isFinite(s)&&s!==0&&Number.isFinite(a)&&(c=a/s*1e6);let p=T(r.current_median_history.base).amount,l=T(r.current_median_history.quote).amount,m=parseFloat(o.recent_claims),f=T(o.reward_balance).amount,g=Number(t.vote_power_reserve_rate??0),_=o.author_reward_curve??"linear",A=Number(o.content_constant??0),x=String(i.current_hardfork_version??"0.0.0"),C=Number(i.last_hardfork??0),F=t.hbd_print_rate,ce=t.hbd_interest_rate,Ee=t.head_block_number,P=a,H=s,L=T(t.virtual_supply).amount,Q=t.vesting_reward_percent||0,J=n.account_creation_fee;return {hivePerMVests:c,base:p,quote:l,fundRecentClaims:m,fundRewardBalance:f,votePowerReserveRate:g,authorRewardCurve:_,contentConstant:A,currentHardforkVersion:x,lastHardfork:C,hbdPrintRate:F,hbdInterestRate:ce,headBlock:Ee,totalVestingFund:P,totalVestingShares:H,virtualSupply:L,vestingRewardPercent:Q,accountCreationFee:J,raw:{globalDynamic:t,feedHistory:r,chainProps:n,rewardFund:o,hardforkProps:i}}}})}function Hh(e="post"){return queryOptions({queryKey:u.core.rewardFund(e),queryFn:()=>y("condenser_api.get_reward_fund",[e])})}function Ie(...e){let t=e.length;for(;t>0&&e[t-1]===void 0;)t--;return e.slice(0,t)}var u={posts:{entry:e=>["posts","entry",e],postHeader:(e,t)=>["posts","post-header",e,t],content:(e,t)=>["posts","content",e,t],contentReplies:(e,t)=>["posts","content-replies",e,t],accountPosts:(e,t,r,n)=>["posts","account-posts",e,t,r,n],accountPostsPage:(e,t,r,n,o,i)=>["posts","account-posts-page",e,t,r,n,o,i],userPostVote:(e,t,r)=>["posts","user-vote",e,t,r],reblogs:(e,t)=>["posts","reblogs",e,t],entryActiveVotes:(e,t)=>["posts","entry-active-votes",e,t],rebloggedBy:(e,t)=>["posts","reblogged-by",e,t],tips:(e,t)=>["posts","tips",e,t],normalize:(e,t)=>["posts","normalize",e,t],drafts:e=>["posts","drafts",e],draftsInfinite:(e,t)=>Ie("posts","drafts","infinite",e,t),schedules:e=>["posts","schedules",e],schedulesInfinite:(e,t)=>Ie("posts","schedules","infinite",e,t),fragments:e=>["posts","fragments",e],fragmentsInfinite:(e,t)=>Ie("posts","fragments","infinite",e,t),images:e=>["posts","images",e],galleryImages:e=>["posts","gallery-images",e],imagesInfinite:(e,t)=>Ie("posts","images","infinite",e,t),promoted:e=>["posts","promoted",e],_promotedPrefix:["posts","promoted"],accountPostsBlogPrefix:e=>["posts","account-posts",e,"blog"],postsRanked:(e,t,r,n)=>["posts","posts-ranked",e,t,r,n],postsRankedPage:(e,t,r,n,o,i)=>["posts","posts-ranked-page",e,t,r,n,o,i],discussions:(e,t,r,n)=>["posts","discussions",e,t,r,n],discussion:(e,t,r)=>["posts","discussion",e,t,r],deletedEntry:e=>["posts","deleted-entry",e],commentHistory:(e,t,r)=>["posts","comment-history",e,t,r],trendingTags:()=>["posts","trending-tags"],trendingTagsWithStats:e=>["posts","trending-tags","stats",e],wavesFeed:(e={})=>["posts","waves","feed",e.tag??"",e.following??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],shortsFeed:(e={})=>["posts","waves","shorts",e.tag??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],wavesByHost:e=>["posts","waves","by-host",e],wavesByTag:(e,t)=>["posts","waves","by-tag",e,t],wavesFollowing:(e,t)=>["posts","waves","following",e,t],wavesTrendingTags:(e,t)=>["posts","waves","trending-tags",e,t],wavesByAccount:(e,t)=>["posts","waves","by-account",e,t],wavesTrendingAuthors:e=>["posts","waves","trending-authors",e],_prefix:["posts"]},accounts:{full:e=>["get-account-full",e],list:(...e)=>["accounts","list",...e],friends:(e,t,r,n)=>["accounts","friends",e,t,r,n],searchFriends:(e,t,r)=>["accounts","friends","search",e,t,r],subscriptions:e=>["accounts","subscriptions",e],followCount:e=>["accounts","follow-count",e],recoveries:e=>["accounts","recoveries",e],pendingRecovery:e=>["accounts","recoveries",e,"pending-request"],checkWalletPending:(e,t)=>["accounts","check-wallet-pending",e,t],mutedUsers:e=>["accounts","muted-users",e],following:(e,t,r,n)=>["accounts","following",e,t,r,n],followers:(e,t,r,n)=>["accounts","followers",e,t,r,n],search:(e,t)=>["accounts","search",e,t],profiles:(e,t)=>["accounts","profiles",e,t],lookup:(e,t)=>["accounts","lookup",e,t],transactions:(e,t,r)=>["accounts","transactions",e,t,r],favorites:e=>["accounts","favorites",e],favoritesInfinite:(e,t)=>Ie("accounts","favorites","infinite",e,t),checkFavorite:(e,t)=>["accounts","favorites","check",e,t],favoriteTags:e=>["accounts","favorite-tags",e],favoriteTagsInfinite:(e,t)=>Ie("accounts","favorite-tags","infinite",e,t),checkFavoriteTag:(e,t)=>["accounts","favorite-tags","check",e,t],relations:(e,t)=>["accounts","relations",e,t],bots:()=>["accounts","bots"],voteHistory:(e,t)=>["accounts","vote-history",e,t],reputations:(e,t)=>["accounts","reputations",e,t],bookmarks:e=>["accounts","bookmarks",e],bookmarksInfinite:(e,t)=>Ie("accounts","bookmarks","infinite",e,t),referrals:e=>["accounts","referrals",e],referralsStats:e=>["accounts","referrals-stats",e],proMembers:()=>["accounts","pro-members"],_prefix:["accounts"]},notifications:{announcements:()=>["notifications","announcements"],spotlights:()=>["notifications","spotlights"],list:(e,t)=>["notifications",e,t],unreadCount:e=>["notifications","unread",e],settings:e=>["notifications","settings",e],_prefix:["notifications"]},core:{rewardFund:e=>["core","reward-fund",e],dynamicProps:()=>["core","dynamic-props"],chainProperties:()=>["core","chain-properties"],_prefix:["core"]},communities:{single:(e,t)=>["community","single",e,t],singlePrefix:e=>["community","single",e],context:(e,t)=>["community","context",e,t],rewarded:()=>["communities","rewarded"],list:(e,t,r)=>["communities","list",e,t,r],subscribers:e=>["communities","subscribers",e],subscribersInfinite:e=>["communities","subscribers","infinite",e],accountNotifications:(e,t)=>["communities","account-notifications",e,t]},proposals:{list:()=>["proposals","list"],proposal:e=>["proposals","proposal",e],votes:(e,t,r)=>["proposals","votes",e,t,r],votesPrefix:e=>["proposals","votes",e],votesByUser:e=>["proposals","votes","by-user",e]},search:{topics:(e,t)=>["search","topics",e,t],path:e=>["search","path",e],account:(e,t)=>["search","account",e,t],results:(e,t,r,n,o,i)=>["search",e,t,typeof r=="string"?r==="1"||r==="true":r,n,o,i],controversialRising:(e,t)=>["search","controversial-rising",e,t],similarEntries:(e,t,r)=>r?["search","similar-entries",e,t,r]:["search","similar-entries",e,t],api:(e,t,r,n,o,i)=>Ie("search","api",e,t,r,n,o,i)},witnesses:{list:e=>["witnesses","list",e],votes:e=>["witnesses","votes",e],proxy:()=>["witnesses","proxy"],voters:(e,t,r,n,o)=>["witnesses","voters",e,t,r,n,o],voterCount:e=>["witnesses","voter-count",e]},wallet:{outgoingRcDelegations:(e,t)=>["wallet","outgoing-rc-delegations",e,t],vestingDelegations:(e,t)=>["wallet","vesting-delegations",e,t],withdrawRoutes:e=>["wallet","withdraw-routes",e],incomingRc:e=>["wallet","incoming-rc",e],conversionRequests:e=>["wallet","conversion-requests",e],receivedVestingShares:e=>["wallet","received-vesting-shares",e],savingsWithdraw:e=>["wallet","savings-withdraw",e],openOrders:e=>["wallet","open-orders",e],collateralizedConversionRequests:e=>["wallet","collateralized-conversion-requests",e],recurrentTransfers:e=>["wallet","recurrent-transfers",e],balanceHistory:(e,t,r)=>["wallet","balance-history",e,t,r],aggregatedHistory:(e,t,r)=>r===void 0?["wallet","aggregated-history",e,t]:["wallet","aggregated-history",e,t,r],portfolio:(e,t,r)=>["wallet","portfolio","v2",e,t,r]},assets:{hiveGeneralInfo:e=>["assets","hive","general-info",e],hiveTransactions:(e,t,r)=>["assets","hive","transactions",e,t,r],hiveWithdrawalRoutes:e=>["assets","hive","withdrawal-routes",e],hiveMetrics:e=>["assets","hive","metrics",e],hbdGeneralInfo:e=>["assets","hbd","general-info",e],hbdTransactions:(e,t,r)=>["assets","hbd","transactions",e,t,r],hivePowerGeneralInfo:e=>["assets","hive-power","general-info",e],hivePowerDelegates:e=>["assets","hive-power","delegates",e],hivePowerDelegatings:e=>["assets","hive-power","delegatings",e],hivePowerTransactions:(e,t,r)=>["assets","hive-power","transactions",e,t,r],pointsGeneralInfo:e=>["assets","points","general-info",e],pointsTransactions:(e,t)=>["assets","points","transactions",e,t],ecencyAssetInfo:(e,t,r)=>["ecency-wallets","asset-info",e,t,r]},market:{statistics:()=>["market","statistics"],orderBook:e=>["market","order-book",e],history:(e,t,r)=>["market","history",e,t,r],feedHistory:()=>["market","feed-history"],hiveHbdStats:()=>["market","hive-hbd-stats"],data:(e,t,r,n)=>["market","data",e,t,r,n],tradeHistory:(e,t,r)=>["market","trade-history",e,t,r],currentMedianHistoryPrice:()=>["market","current-median-history-price"]},analytics:{discoverCuration:e=>["analytics","discover-curation",e],pageStats:(e,t,r,n)=>["analytics","page-stats",e,t,r,n],discoverLeaderboard:e=>["analytics","discover-leaderboard",e]},promotions:{promotePrice:()=>["promotions","promote-price"],boostPlusPrices:()=>["promotions","boost-plus-prices"],boostPlusAccounts:e=>["promotions","boost-plus-accounts",e]},resourceCredits:{account:e=>["resource-credits","account",e],stats:()=>["resource-credits","stats"],resourceParams:()=>["resource-credits","resource-params"]},points:{points:(e,t)=>["points",e,t],_prefix:e=>["points",e]},polls:{details:(e,t)=>["polls","details",e,t],vote:(e,t)=>e&&t?["polls","vote",e,t]:["polls","vote"],_prefix:["polls"]},operations:{chainProperties:()=>["operations","chain-properties"]},games:{statusCheck:(e,t)=>["games","status-check",e,t]},quests:{status:e=>["quests","status",e]},newsletter:{subscriptions:e=>["newsletter","subscriptions",e],sender:(e,t,r)=>["newsletter","sender",e,t,r],issues:(e,t,r)=>["newsletter","issues",e,t,r],posts:(e,t,r,n)=>["newsletter","posts",e,t,r,n],_prefix:["newsletter"]},support:{settings:e=>["support","settings",e],_prefix:["support"]},badActors:{list:()=>["bad-actors","list"],_prefix:["bad-actors"]},curation:{feed:(e={})=>["curation","feed",e],rosterFeed:(e,t={})=>["curation","roster-feed",e,t],status:()=>["curation","status"],roster:()=>["curation","roster"],rosterAdmin:e=>["curation","roster-admin",e],rosterAdminPrefix:()=>["curation","roster-admin"],recommendations:(e={})=>["curation","recommendations",e],_recommendationsPrefix:["curation","recommendations"],post:(e,t)=>["curation","post",e,t],recommender:e=>["curation","recommender",e],recommend:()=>["curation","recommend"],_prefix:["curation"]},ai:{prices:()=>["ai","prices"],assistPrices:e=>["ai","assist-prices",e],transcribePrice:e=>["ai","transcribe-price",e],images:e=>["ai","images",e],_prefix:["ai"]}};function yt(e){if(typeof TextEncoder<"u")return new TextEncoder().encode(e).length;let t=0;for(let r=0;r=55296&&n<=56319&&r+1>>=7;while(r>0);return t}function Gh(e){return queryOptions({queryKey:u.ai.prices(),queryFn:async()=>{let r=await h()(d.privateApiHost+"/private-api/ai-generate-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch AI generation prices: ${r.status}`);return await r.json()},staleTime:3e5,enabled:!!e})}function Xh(e,t){return queryOptions({queryKey:u.ai.images(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI image history: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:"always",enabled:!!e&&!!t})}function r_(e,t){return queryOptions({queryKey:u.ai.assistPrices(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-assist-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI assist prices: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function s_(e,t){return queryOptions({queryKey:u.ai.transcribePrice(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-transcribe-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI transcribe price: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function iu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function su(e){w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.images(e)});}function p_(e,t){return useMutation({mutationKey:["ai","generate-image"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][GenerateImage] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][GenerateImage] \u2013 access token wasn't found");let o=await h()(d.privateApiHost+"/private-api/ai-generate-image",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,us:e,prompt:r.prompt,aspect_ratio:r.aspect_ratio??"1:1",power:r.power??1,idempotency_key:r.idempotency_key??iu()})});if(!o.ok){let s=await o.text(),a={};try{a=JSON.parse(s);}catch{}let c=new Error(`[SDK][AI][GenerateImage] \u2013 failed with status ${o.status}${s?`: ${s}`:""}`);throw c.status=o.status,c.data=a,c}if(o.status===202){let s={};try{s=await o.json();}catch{}let a=new Error("[SDK][AI][GenerateImage] \u2013 delivery pending");throw a.status=202,a.data=s,a}return await o.json()},onSuccess:()=>{e&&su(e);}})}function uu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function f_(e,t){return useMutation({mutationKey:["ai","assist"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Assist] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][Assist] \u2013 access token wasn't found");let o=await h()(d.privateApiHost+"/private-api/ai-assist",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:r.code??t,us:e,action:r.action,text:r.text,idempotency_key:uu()})});if(!o.ok){let i=await o.text(),s={};try{s=JSON.parse(i);}catch{}let a=new Error(`[SDK][AI][Assist] \u2013 failed with status ${o.status}${i?`: ${i}`:""}`);throw a.status=o.status,a.data=s,a}return await o.json()},onSuccess:r=>{e&&(r.cost>0&&w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.assistPrices(e)}));}})}function pu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function __(e,t){return useMutation({mutationKey:["ai","transcribe"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Transcribe] \u2013 username wasn't provided");let n=r.code??t;if(!n)throw new Error("[SDK][AI][Transcribe] \u2013 access token wasn't found");let o=new FormData;o.append("code",n),o.append("duration_ms",String(Math.round(r.durationMs))),o.append("idempotency_key",r.idempotency_key??pu()),o.append("audio",r.audio,r.fileName??"clip.webm");let s=await h()(d.privateApiHost+"/private-api/ai-transcribe",{method:"POST",body:o});if(!s.ok){let a=await s.text(),c={};try{c=JSON.parse(a);}catch{}throw Object.assign(new Error(`[SDK][AI][Transcribe] \u2013 failed with status ${s.status}${a?`: ${a}`:""}`),{status:s.status,data:c})}return await s.json()},onSuccess:r=>{e&&(r.cost>0&&w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.transcribePrice(e)}));}})}function Kr(e){return !e.posting_json_metadata&&!e.json_metadata}function du(e){return e?Object.values(e).some(t=>typeof t=="string"?t.length>0:t!=null):false}function M(e){return queryOptions({queryKey:u.accounts.full(e),queryFn:async({signal:t})=>{if(!e)return null;let[r,n]=await Promise.all([y("condenser_api.get_accounts",[[e]],void 0,void 0,t,p=>Array.isArray(p)),y("bridge.get_profile",{account:e},void 0,void 0,t).catch(p=>{if(t?.aborted)throw p;return null})]);if(!r?.[0])return null;let o=r[0];if(Kr(o)&&du(n?.metadata?.profile)){let p=await y("condenser_api.get_accounts",[[e]],void 0,void 0,t,l=>Array.isArray(l)&&(!l[0]||!Kr(l[0])));if(p[0]&&!Kr(p[0]))o=p[0];else throw new Error(`[SDK][Accounts] \u2013 inconsistent account row for ${e}: empty json metadata while hivemind profile is populated`)}let i=He(o.posting_json_metadata),s=n?.stats,a=s?{account:o.name,follower_count:s.followers??0,following_count:s.following??0}:void 0,c=n?.reputation??0;return {name:o.name,owner:o.owner,active:o.active,posting:o.posting,memo_key:o.memo_key,post_count:o.post_count,created:o.created,posting_json_metadata:o.posting_json_metadata,last_vote_time:o.last_vote_time,last_post:o.last_post,json_metadata:o.json_metadata,reward_hive_balance:o.reward_hive_balance,reward_hbd_balance:o.reward_hbd_balance,reward_vesting_hive:o.reward_vesting_hive,reward_vesting_balance:o.reward_vesting_balance,balance:o.balance,hbd_balance:o.hbd_balance,savings_balance:o.savings_balance,savings_hbd_balance:o.savings_hbd_balance,savings_hbd_last_interest_payment:o.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:o.savings_hbd_seconds_last_update,savings_hbd_seconds:o.savings_hbd_seconds,next_vesting_withdrawal:o.next_vesting_withdrawal,pending_claimed_accounts:o.pending_claimed_accounts,vesting_shares:o.vesting_shares,delegated_vesting_shares:o.delegated_vesting_shares,received_vesting_shares:o.received_vesting_shares,vesting_withdraw_rate:o.vesting_withdraw_rate,to_withdraw:o.to_withdraw,withdrawn:o.withdrawn,curation_rewards:o.curation_rewards===void 0?void 0:Number(o.curation_rewards),posting_rewards:o.posting_rewards===void 0?void 0:Number(o.posting_rewards),witness_votes:o.witness_votes,proxy:o.proxy,recovery_account:o.recovery_account,proxied_vsf_votes:o.proxied_vsf_votes,voting_manabar:o.voting_manabar,voting_power:o.voting_power,downvote_manabar:o.downvote_manabar,follow_stats:a,reputation:c,profile:i}},enabled:!!e,staleTime:6e4})}var mu=new Set(["__proto__","constructor","prototype"]);function Wt(e){if(!e||typeof e!="object"||Array.isArray(e))return false;let t=Object.getPrototypeOf(e);return t===null||t===Object.prototype}function Io(e,t){let r={...e};for(let n of Object.keys(t)){if(mu.has(n))continue;let o=t[n],i=r[n];Wt(o)&&Wt(i)?r[n]=Io(i,o):r[n]=o;}return r}function fu(e){if(!(!e||!Array.isArray(e)))return e.map(({meta:t,...r})=>{if(!t||typeof t!="object")return {...r,meta:t};let{privateKey:n,username:o,...i}=t;return {...r,meta:i}})}function He(e){if(!e)return {};try{let t=JSON.parse(e);if(t&&typeof t=="object"&&t.profile&&typeof t.profile=="object")return t.profile}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata:",t,{length:e?.length??0});}return {}}function Do(e){return He(e?.posting_json_metadata)}function Ko(e,t){if(!e)return t;if(!t)return e;let r=Object.keys(He(e.posting_json_metadata)).length;return Object.keys(He(t.posting_json_metadata)).length>r?t:e}function gu(e){if(!e)return {};try{let t=JSON.parse(e);if(Wt(t))return t}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata root:",t,{length:e?.length??0});}return {}}function No({existingPostingJsonMetadata:e,profile:t,tokens:r}){let n=gu(e),o=Wt(n.profile)?n.profile:{},i=Nr({existingProfile:o,profile:t,tokens:r});return JSON.stringify({...n,profile:i})}function Nr({existingProfile:e,profile:t,tokens:r}){let{tokens:n,version:o,...i}=t??{},s=Io(e??{},i);return s.tokens&&!Array.isArray(s.tokens)&&(s.tokens=void 0),r!==void 0?s.tokens=r&&r.length>0?r:[]:n!==void 0&&(s.tokens=n),s.tokens=fu(s.tokens),s.version=2,s}function Gt(e){return e.map(t=>{let r={name:t.name,owner:t.owner,active:t.active,posting:t.posting,memo_key:t.memo_key,post_count:t.post_count,created:t.created,reputation:t.reputation,posting_json_metadata:t.posting_json_metadata,last_vote_time:t.last_vote_time,last_post:t.last_post,json_metadata:t.json_metadata,reward_hive_balance:t.reward_hive_balance,reward_hbd_balance:t.reward_hbd_balance,reward_vesting_hive:t.reward_vesting_hive,reward_vesting_balance:t.reward_vesting_balance,balance:t.balance,hbd_balance:t.hbd_balance,savings_balance:t.savings_balance,savings_hbd_balance:t.savings_hbd_balance,savings_hbd_last_interest_payment:t.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:t.savings_hbd_seconds_last_update,savings_hbd_seconds:t.savings_hbd_seconds,next_vesting_withdrawal:t.next_vesting_withdrawal,pending_claimed_accounts:t.pending_claimed_accounts,vesting_shares:t.vesting_shares,delegated_vesting_shares:t.delegated_vesting_shares,received_vesting_shares:t.received_vesting_shares,vesting_withdraw_rate:t.vesting_withdraw_rate,to_withdraw:t.to_withdraw,withdrawn:t.withdrawn,witness_votes:t.witness_votes,proxy:t.proxy,recovery_account:t.recovery_account,proxied_vsf_votes:t.proxied_vsf_votes,voting_manabar:t.voting_manabar,voting_power:t.voting_power,downvote_manabar:t.downvote_manabar},n=He(t.posting_json_metadata);if(!n||Object.keys(n).length===0)try{let o=JSON.parse(t.json_metadata||"{}");o.profile&&(n=o.profile);}catch{}return (!n||Object.keys(n).length===0)&&(n={about:"",cover_image:"",location:"",name:"",profile_image:"",website:""}),{...r,profile:n}})}function yu(e){return new TextEncoder().encode(e).length}function et(e){return e?yu(e)<=16:false}function I_(e){return queryOptions({queryKey:u.accounts.list(...e),enabled:e.length>0,queryFn:async()=>{let t=e.filter(et);if(t.length===0)return [];let r=await y("condenser_api.get_accounts",[t],void 0,void 0,void 0,n=>Array.isArray(n));return Gt(r??[])}})}function B_(e){return queryOptions({queryKey:u.accounts.followCount(e),queryFn:()=>y("condenser_api.get_follow_count",[e])})}function j_(e,t,r="blog",n=100){return queryOptions({queryKey:u.accounts.followers(e,t,r,n),queryFn:()=>y("condenser_api.get_followers",[e,t,r,n]),enabled:!!e})}function z_(e,t,r="blog",n=100){return queryOptions({queryKey:u.accounts.following(e,t,r,n),queryFn:()=>y("condenser_api.get_following",[e,t,r,n]),enabled:!!e})}var Mo=1e3,Au=20;function ew(e){return queryOptions({queryKey:u.accounts.mutedUsers(e),queryFn:async()=>{let t=[],r="";for(let n=0;ns.following);if(i[0]===r&&(i=i.slice(1)),!i.length||(t.push(...i),o.lengthet(e)?y("condenser_api.lookup_accounts",[e,t]):[],enabled:!!e,staleTime:1/0})}function lw(e,t=5,r=[]){return queryOptions({queryKey:u.accounts.search(e,r),enabled:!!e,queryFn:async()=>(await y("condenser_api.lookup_accounts",[e,t])).filter(o=>r.length>0?!r.includes(o):true)})}var Su=new Set(["ownerPublicKey","activePublicKey","postingPublicKey","memoPublicKey"]);function gw(e,t){return queryOptions({queryKey:u.accounts.checkWalletPending(e,t??null),queryFn:async()=>{if(!e||!t)return {exist:false};let n=await h()(d.privateApiHost+"/private-api/wallets",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,code:t})});if(!n.ok)return {exist:false};let o=await n.json(),i=Array.isArray(o)?o.flatMap(s=>{if(!s||typeof s!="object")return [];let a=s,c=typeof a.token=="string"?a.token:void 0;if(!c)return [];let p=a.meta&&typeof a.meta=="object"?{...a.meta}:{},l={},m=typeof a.address=="string"&&a.address?a.address:void 0,g=(typeof a.status=="number"?a.status===3:void 0)??false;m&&(l.address=m),l.show=g;let _={symbol:c,currency:c,address:m,show:g,type:"CHAIN",meta:l},A=[];for(let[x,C]of Object.entries(p))typeof x=="string"&&(Su.has(x)||typeof C!="string"||!C||/^[A-Z0-9]{2,10}$/.test(x)&&A.push({symbol:x,currency:x,address:C,show:g,type:"CHAIN",meta:{address:C,show:g}}));return [_,...A]}):[];return {exist:i.length>0,tokens:i.length?i:void 0,wallets:i.length?i:void 0}},refetchOnMount:true})}function Bo(e,t){return queryOptions({queryKey:u.accounts.relations(e,t),enabled:!!e&&!!t,refetchOnMount:false,refetchInterval:36e5,queryFn:async()=>{let r={follows:false,ignores:false,blacklists:false,follows_muted:false,follows_blacklists:false};return !e||!t?r:await y("bridge.get_relationship_between_accounts",[e,t])??r}})}function xw(e){return queryOptions({queryKey:u.accounts.subscriptions(e),enabled:!!e,queryFn:async({signal:t})=>await y("bridge.list_all_subscriptions",{account:e},void 0,void 0,t)??[]})}function Ew(e,t){return queryOptions({queryKey:u.accounts.bookmarks(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Bookmarks] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/bookmarks",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Rw(e,t,r=10){return infiniteQueryOptions({queryKey:u.accounts.bookmarksInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch bookmarks: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function qw(e,t){return queryOptions({queryKey:u.accounts.favorites(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/favorites",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Iw(e,t,r=10){return infiniteQueryOptions({queryKey:u.accounts.favoritesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/favorites?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorites: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Mw(e,t,r){return queryOptions({queryKey:u.accounts.checkFavorite(e,r),enabled:!!e&&!!t&&!!r,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");if(!r)throw new Error("[SDK][Accounts][Favorites] \u2013 no target username");let o=await h()(d.privateApiHost+"/private-api/favorites-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:r})});if(!o.ok)throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check failed with status ${o.status}: ${o.statusText}`);let i=await o.json();if(typeof i!="boolean")throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check returned invalid type: expected boolean, got ${typeof i}`);return i}})}function Hw(e,t){return queryOptions({queryKey:u.accounts.favoriteTags(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");let n=await h()(d.privateApiHost+"/private-api/favorite-tags",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch favorite tags: ${n.status}`);return await n.json()}})}function Vw(e,t,r=10){return infiniteQueryOptions({queryKey:u.accounts.favoriteTagsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/favorite-tags?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorite tags: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}var Ku=/^[a-z0-9-]{1,32}$/,Nu=/^hive-\d+$/;function Se(e){if(typeof e!="string")return null;let t=e.trim().toLowerCase();return t.startsWith("#")&&(t=t.slice(1)),!Ku.test(t)||Nu.test(t)?null:t}function zw(e,t,r){let n=Se(r);return queryOptions({queryKey:u.accounts.checkFavoriteTag(e??"",n??""),enabled:!!e&&!!t&&n!==null,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");if(n===null)return false;let i=await h()(d.privateApiHost+"/private-api/favorite-tags-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,tag:n})});if(!i.ok)throw new Error(`[SDK][Accounts][FavoriteTags] \u2013 favorite-tags-check failed with status ${i.status}: ${i.statusText}`);let s=await i.json();if(typeof s!="boolean")throw new Error(`[SDK][Accounts][FavoriteTags] \u2013 favorite-tags-check returned invalid type: expected boolean, got ${typeof s}`);return s}})}function Zw(e,t){return queryOptions({enabled:!!e&&!!t,queryKey:u.accounts.recoveries(e),queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts] Missing username or access token");return (await h()(d.privateApiHost+"/private-api/recoveries",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function ob(e){return queryOptions({enabled:!!e,queryKey:u.accounts.pendingRecovery(e),queryFn:()=>y("database_api.find_change_recovery_account_requests",{accounts:[e]})})}function pb(e,t=50){return queryOptions({queryKey:u.accounts.reputations(e,t),enabled:!!e,queryFn:async()=>!e||!et(e)?[]:y("condenser_api.get_account_reputations",[e,t])})}var K=oe.operations,Qo={transfers:[K.transfer,K.transfer_to_savings,K.transfer_from_savings,K.cancel_transfer_from_savings,K.fill_transfer_from_savings,K.recurrent_transfer,K.fill_recurrent_transfer,K.escrow_transfer],"market-orders":[K.fill_convert_request,K.fill_order,K.fill_collateralized_convert_request,K.limit_order_create2,K.limit_order_create,K.limit_order_cancel],interests:[K.interest],"stake-operations":[K.return_vesting_delegation,K.withdraw_vesting,K.transfer_to_vesting,K.set_withdraw_vesting_route,K.update_proposal_votes,K.fill_vesting_withdraw,K.account_witness_proxy,K.delegate_vesting_shares],rewards:[K.author_reward,K.curation_reward,K.producer_reward,K.claim_reward_balance,K.comment_benefactor_reward,K.liquidity_reward,K.proposal_pay]},Vu=Array.from(new Set(Object.values(Qo).flat()));function ju(e){return e.block*1e7+e.trx_in_block*100+e.op_pos}function Lu(e){return e.replace(/_operation$/,"")}function $u(e){return typeof e=="object"&&e!==null&&"nai"in e&&"amount"in e&&"precision"in e}function Wu(e){if(!$u(e))return e;let t=T(e),r=$t[e.nai]??"UNKNOWN";return `${t.amount.toFixed(e.precision)} ${r}`}function Gu(e){let t={};for(let[r,n]of Object.entries(e))t[r]=Wu(n);return t}function _b(e,t=20,r=""){let n=r?Qo[r]:Vu;return infiniteQueryOptions({queryKey:u.accounts.transactions(e??"",r,t),initialPageParam:null,queryFn:async({pageParam:o,signal:i})=>{if(!e)return {entries:[],currentPage:0};let s=async m=>{let f={"account-name":e,"operation-types":n.join(","),"page-size":t};return m!==null&&(f.page=m),await te("hafah","/accounts/{account-name}/operations",f,void 0,void 0,i)},a=m=>m.operations_result.map(f=>{let g=Lu(f.op.type);return {...Gu(f.op.value),num:ju(f),type:g,timestamp:f.timestamp,trx_id:f.trx_id}}),c=await s(o),p=a(c),l=o??c.total_pages;if(o===null&&p.length1)try{let m=await s(c.total_pages-1);p=[...p,...a(m)],l=c.total_pages-1;}catch(m){if(i?.aborted)throw m}return {entries:p,currentPage:l}},getNextPageParam:o=>{let i=o.currentPage-1;return i>=1?i:void 0}})}function Ab(){return queryOptions({queryKey:u.accounts.bots(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/public/bots",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch bots: ${e.status}`);return e.json()},refetchOnMount:true,staleTime:1/0})}function Sb(e){return infiniteQueryOptions({queryKey:u.accounts.referrals(e),initialPageParam:{maxId:void 0},queryFn:async({pageParam:t})=>{let{maxId:r}=t??{},n=B.getValidatedBaseUrl(),o=new URL(`/private-api/referrals/${e}`,n);r!==void 0&&o.searchParams.set("max_id",r.toString());let i=await fetch(o.toString(),{method:"GET",headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`Failed to fetch referrals: ${i.status}`);return i.json()},getNextPageParam:t=>{let r=t?.[t.length-1]?.id;return typeof r=="number"?{maxId:r}:void 0}})}function kb(e){return queryOptions({queryKey:u.accounts.referralsStats(e),queryFn:async()=>{let t=await fetch(d.privateApiHost+`/private-api/referrals/${e}/stats`,{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch referral stats: ${t.status}`);let r=await t.json();if(!r)throw new Error("No Referrals for this user!");return {total:r.total??0,rewarded:r.rewarded??0}}})}function Kb(e,t,r){let{followType:n="blog",limit:o=100,enabled:i=true}=r??{};return infiniteQueryOptions({queryKey:u.accounts.friends(e,t,n,o),initialPageParam:{startFollowing:""},enabled:i,refetchOnMount:true,queryFn:async({pageParam:s})=>{let{startFollowing:a}=s,l=(await y(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,a===""?null:a,n,o])).map(g=>t==="following"?g.following:g.follower);return (await y("bridge.get_profiles",{accounts:l,observer:void 0})??[]).map(g=>({name:g.name,reputation:g.reputation,active:g.active}))},getNextPageParam:s=>s&&s.length===o?{startFollowing:s[s.length-1].name}:void 0})}var ec=30;function Ub(e,t,r){return queryOptions({queryKey:u.accounts.searchFriends(e,t,r),refetchOnMount:false,enabled:false,queryFn:async()=>{if(!r)return [];let n=r.slice(0,-1),s=(await y(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,n,"blog",1e3])).map(c=>t==="following"?c.following:c.follower).filter(c=>c.toLowerCase().includes(r.toLowerCase())).slice(0,ec);return (await y("bridge.get_profiles",{accounts:s,observer:void 0}))?.map(c=>({name:c.name,full_name:c.metadata.profile?.name||"",reputation:c.reputation,active:c.active}))??[]}})}function $b(e=20){return infiniteQueryOptions({queryKey:u.posts.trendingTags(),queryFn:async({pageParam:{afterTag:t}})=>y("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!n.name.startsWith("hive-")).map(n=>n.name)),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length>0?{afterTag:t[t.length-1]}:void 0,staleTime:3600*1e3})}function Xb(e=250){return infiniteQueryOptions({queryKey:u.posts.trendingTagsWithStats(e),queryFn:async({pageParam:{afterTag:t}})=>y("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!To(n.name))),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length?{afterTag:t[t.length-1].name}:void 0,staleTime:1/0})}function tt(e,t){return queryOptions({queryKey:u.posts.fragments(e),queryFn:async()=>t?(await h()(d.privateApiHost+"/private-api/fragments",{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json():[],enabled:!!e&&!!t})}function rv(e,t,r=10){return infiniteQueryOptions({queryKey:u.posts.fragmentsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/fragments?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch fragments: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function sv(e="feed"){return queryOptions({queryKey:u.posts.promoted(e),queryFn:async()=>{let t=B.getValidatedBaseUrl(),r=new URL("/private-api/promoted-entries",t);return e==="waves"&&r.searchParams.append("short_content","1"),await(await h()(r.toString(),{method:"GET",headers:{"Content-Type":"application/json"}})).json()}})}function lv(e){return queryOptions({queryKey:u.posts.entryActiveVotes(e?.author,e?.permlink),queryFn:async()=>y("condenser_api.get_active_votes",[e?.author,e?.permlink]),enabled:!!e})}function yv(e,t,r){return queryOptions({queryKey:u.posts.userPostVote(e,t,r),queryFn:async()=>(await y("database_api.list_votes",{start:[e,t,r],limit:1,order:"by_voter_comment"}))?.votes?.[0]||null,enabled:!!e&&!!t&&!!r})}function vv(e,t){return queryOptions({queryKey:u.posts.content(e,t),enabled:!!e&&!!t,queryFn:async()=>y("condenser_api.get_content",[e,t])})}function Sv(e,t){return queryOptions({queryKey:u.posts.contentReplies(e,t),enabled:!!e&&!!t,queryFn:async()=>y("condenser_api.get_content_replies",{author:e,permlink:t})})}function Tv(e,t){return queryOptions({queryKey:u.posts.postHeader(e,t),queryFn:async()=>y("bridge.get_post_header",{author:e,permlink:t}),initialData:null})}function ne(e){return Array.isArray(e)?e.map(t=>Uo(t)):Uo(e)}function Uo(e){if(!e)return e;let t=`@${e.author}/${e.permlink}`;return d.dmcaPatterns.includes(t)||d.dmcaPatternRegexes.some(n=>n.test(t))?{...e,body:"This post is not available due to a copyright/fraudulent claim.",title:""}:e}async function Ho(e,t,r){try{let n=await Ht("bridge.get_post",{author:e,permlink:t,observer:r},1);if(n&&typeof n=="object"&&n.author===e&&n.permlink===t)return n}catch{}return null}function Vo(e,t,r="",n){let o=t?.trim(),i=`/@${e}/${o??""}`;return queryOptions({queryKey:u.posts.entry(i),queryFn:async()=>{if(!o||o==="undefined")return null;let s=await y("bridge.get_post",{author:e,permlink:o,observer:r});if(!s){let c=await Ho(e,o,r);if(!c)return null;let p=n!==void 0?{...c,num:n}:c;return ne(p)}let a=n!==void 0?{...s,num:n}:s;return ne(a)},enabled:!!e&&!!t&&t.trim()!==""&&t.trim()!=="undefined"})}function ae(e,t,r){return y(`bridge.${e}`,t,void 0,void 0,r)}async function jo(e,t,r,n){let{json_metadata:o}=e;if(o?.original_author&&o?.original_permlink&&o.tags?.[0]==="cross-post")try{let i=await dc(o.original_author,o.original_permlink,t,r,n);return i?{...e,original_entry:i,num:r}:e}catch{return e}return {...e,num:r}}async function Lo(e,t,r){let n=e.map(ht),o=await Promise.all(n.map(i=>jo(i,t,void 0,r)));return ne(o)}async function $o(e,t="",r="",n=20,o="",i="",s){let a=await ae("get_ranked_posts",{sort:e,start_author:t,start_permlink:r,limit:n,tag:o,observer:i},s);return Array.isArray(a)?Lo(a,i,s):(a!=null&&console.warn(`[SDK] get_ranked_posts returned ${typeof a} instead of an array for sort=${e}; treating as no results.`),null)}async function Mr(e,t,r="",n="",o=20,i="",s){if(d.dmcaAccounts.includes(t))return [];let a=await ae("get_account_posts",{sort:e,account:t,start_author:r,start_permlink:n,limit:o,observer:i},s);return Array.isArray(a)?Lo(a,i,s):(a!=null&&console.warn(`[SDK] get_account_posts returned ${typeof a} instead of an array for account=${t}, sort=${e}; treating as no results.`),null)}function ht(e){let t={...e,active_votes:Array.isArray(e.active_votes)?[...e.active_votes]:[],beneficiaries:Array.isArray(e.beneficiaries)?[...e.beneficiaries]:[],blacklists:Array.isArray(e.blacklists)?[...e.blacklists]:[],replies:Array.isArray(e.replies)?[...e.replies]:[],stats:e.stats?{...e.stats}:null},r=["author","title","body","created","category","permlink","url","updated"];for(let n of r)t[n]==null&&(t[n]="");return t.author_reputation==null&&(t.author_reputation=0),t.children==null&&(t.children=0),t.depth==null&&(t.depth=0),t.net_rshares==null&&(t.net_rshares=0),t.payout==null&&(t.payout=0),t.percent_hbd==null&&(t.percent_hbd=0),t.stats||(t.stats={flag_weight:0,gray:false,hide:false,total_votes:0}),t.author_payout_value==null&&(t.author_payout_value="0.000 HBD"),t.curator_payout_value==null&&(t.curator_payout_value="0.000 HBD"),t.max_accepted_payout==null&&(t.max_accepted_payout="1000000.000 HBD"),t.payout_at==null&&(t.payout_at=""),t.pending_payout_value==null&&(t.pending_payout_value="0.000 HBD"),t.promoted==null&&(t.promoted="0.000 HBD"),t.is_paidout==null&&(t.is_paidout=false),t}async function dc(e="",t="",r="",n,o){let i=await ae("get_post",{author:e,permlink:t,observer:r},o);if(i){let s=ht(i),a=await jo(s,r,n,o);return ne(a)}}async function $v(e="",t=""){let r=await ae("get_post_header",{author:e,permlink:t});return r&&ht(r)}async function Wo(e,t,r){let n=await ae("get_discussion",{author:e,permlink:t,observer:r||e});if(n){let o={};for(let[i,s]of Object.entries(n))o[i]=ht(s);return o}return n}async function Go(e,t=""){return ae("get_community",{name:e,observer:t})}async function Wv(e="",t=100,r,n="rank",o=""){return ae("list_communities",{last:e,limit:t,query:r,sort:n,observer:o})}async function zo(e){let t=await ae("normalize_post",{post:e});return t&&ht(t)}async function Gv(e){return ae("list_all_subscriptions",{account:e})}async function zv(e){return ae("list_subscribers",{community:e})}async function Jv(e,t){return ae("get_relationship_between_accounts",[e,t])}async function zt(e,t){return ae("get_profiles",{accounts:e,observer:t})}var Yo=(o=>(o.trending="trending",o.author_reputation="author_reputation",o.votes="votes",o.created="created",o))(Yo||{});function Br(e){let t=e.match(/^(\d+\.?\d*)\s*([A-Z]+)$/);return t?{amount:parseFloat(t[1]),symbol:t[2]}:{amount:0,symbol:""}}function mc(e,t,r){let n=l=>Br(l.pending_payout_value).amount+Br(l.author_payout_value).amount+Br(l.curator_payout_value).amount,o=l=>l.net_rshares<0,i=l=>e.json_metadata?.pinned_reply===`${l.author}/${l.permlink}`,s={trending:(l,m)=>{if(o(l))return 1;if(o(m))return -1;let f=n(l),g=n(m);return f!==g?g-f:0},author_reputation:(l,m)=>{let f=l.author_reputation,g=m.author_reputation;return f>g?-1:f{let f=l.children,g=m.children;return f>g?-1:f{if(o(l))return 1;if(o(m))return -1;let f=Date.parse(l.created),g=Date.parse(m.created);return f>g?-1:fi(l)),p=a[c];return c>=0&&(a.splice(c,1),a.unshift(p)),a}function Xo(e,t="created",r=true,n){let o=n||d.defaultObserver;return queryOptions({queryKey:u.posts.discussions(e?.author,e?.permlink,t,o),queryFn:async()=>{if(!e)return [];let i=await y("bridge.get_discussion",{author:e.author,permlink:e.permlink,observer:o}),s=i?Array.from(Object.values(i)):[];return ne(s)},enabled:r&&!!e,select:i=>mc(e,i,t),structuralSharing:(i,s)=>{if(!i||!s)return s;let a=i.filter(l=>l.is_optimistic===true),c=new Set(s.map(l=>`${l.author}/${l.permlink}`)),p=a.filter(l=>!c.has(`${l.author}/${l.permlink}`));return p.length>0?[...s,...p]:s}})}function nA(e,t,r,n=true){let o=r||d.defaultObserver;return queryOptions({queryKey:u.posts.discussion(e,t,o),enabled:n&&!!e&&!!t,queryFn:async()=>Wo(e,t,o)})}function pA(e,t="posts",r=20,n="",o=true){return infiniteQueryOptions({queryKey:u.posts.accountPosts(e??"",t,r,n),enabled:!!e&&o,initialPageParam:{author:void 0,permlink:void 0,hasNextPage:true},queryFn:async({pageParam:i,signal:s})=>{if(!i?.hasNextPage||!e)return [];let a=await Mr(t,e,i.author??"",i.permlink??"",r,n,s);return ne(a??[])},getNextPageParam:i=>{let s=i?.[i.length-1],a=(i?.length??0)===r;if(a)return {author:s?.author,permlink:s?.permlink,hasNextPage:a}}})}function lA(e,t="posts",r="",n="",o=20,i="",s=true){return queryOptions({queryKey:u.posts.accountPostsPage(e??"",t,r,n,o,i),enabled:!!e&&s,queryFn:async({signal:a}={})=>{if(!e)return [];let c=await Mr(t,e,r,n,o,i,a);return ne(c??[])}})}var Zo=new Map;function _c(e){let t=Zo.get(e);return t||(t=r=>({...r,pages:r.pages.map(n=>wc(n,e))}),Zo.set(e,t)),t}function wc(e,t){let r=e.filter(i=>i.stats?.is_pinned),n=e.filter(i=>!i.stats?.is_pinned);if(t==="hot")return [...r,...n];let o=[...n].sort((i,s)=>new Date(s.created).getTime()-new Date(i.created).getTime());return [...r,...o]}function wA(e,t,r=20,n="",o=true,i={}){return infiniteQueryOptions({queryKey:u.posts.postsRanked(e,t,r,n),queryFn:async({pageParam:s,signal:a})=>{let c=t;d.dmcaTagRegexes.some(l=>l.test(t))&&(c="");let p=await y("bridge.get_ranked_posts",{sort:e,start_author:s.author,start_permlink:s.permlink,limit:r,tag:c,observer:n},void 0,void 0,a);if(p==null)return [];if(!Array.isArray(p))throw new Error(`[SDK] get_ranked_posts returned ${typeof p} for sort=${e}`);return ne(p)},select:_c(e),enabled:o,initialPageParam:{author:void 0,permlink:void 0},getNextPageParam:s=>{let a=s?.[s.length-1];if(a)return {author:a.author,permlink:a.permlink}}})}function bA(e,t="",r="",n=20,o="",i="",s=true){return queryOptions({queryKey:u.posts.postsRankedPage(e,t,r,n,o,i),enabled:s,queryFn:async({signal:a}={})=>{let c=o;d.dmcaTagRegexes.some(l=>l.test(o))&&(c="");let p=await $o(e,t,r,n,c,i,a);return ne(p??[])}})}function OA(e,t,r=200){return queryOptions({queryKey:u.posts.reblogs(e??"",r),queryFn:async()=>(await y("condenser_api.get_blog_entries",[e??t,0,r])).filter(o=>o.author!==t&&!o.reblogged_on.startsWith("1970-")).map(o=>({author:o.author,permlink:o.permlink})),enabled:!!e})}function kA(e,t){return queryOptions({queryKey:u.posts.rebloggedBy(e??"",t??""),queryFn:async()=>{if(!e||!t)return [];let r=await y("condenser_api.get_reblogged_by",[e,t]);return Array.isArray(r)?r:[]},enabled:!!e&&!!t})}function IA(e,t){return queryOptions({queryKey:u.posts.schedules(e),queryFn:async()=>{if(!e||!t)return [];let n=await h()(d.privateApiHost+"/private-api/schedules",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch schedules: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function DA(e,t,r=10){return infiniteQueryOptions({queryKey:u.posts.schedulesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/schedules?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch schedules: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function BA(e,t){return queryOptions({queryKey:u.posts.drafts(e),queryFn:async()=>{if(!e||!t)return [];let n=await h()(d.privateApiHost+"/private-api/drafts",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch drafts: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function QA(e,t,r=10){return infiniteQueryOptions({queryKey:u.posts.draftsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/drafts?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch drafts: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}async function ti(e){let r=await h()(d.privateApiHost+"/private-api/images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch images: ${r.status}`);return r.json()}function jA(e,t){return queryOptions({queryKey:u.posts.images(e),queryFn:async()=>!e||!t?[]:ti(t),enabled:!!e&&!!t})}function LA(e,t){return queryOptions({queryKey:u.posts.galleryImages(e),queryFn:async()=>!e||!t?[]:ti(t),enabled:!!e&&!!t})}function $A(e,t,r=10){return infiniteQueryOptions({queryKey:u.posts.imagesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/images?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch images: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function JA(e,t,r=false){return queryOptions({queryKey:u.posts.commentHistory(e,t,r),queryFn:async({signal:n})=>{let o=await fetch(d.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:t,onlyMeta:r?"1":""}),signal:n});if(!o.ok)throw new Error(`Failed to fetch comment history: ${o.status}`);return o.json()},enabled:!!e&&!!t})}function Rc(e,t){let r=e?.trim(),n=t?.trim();if(!r||!n)throw new Error("Invalid entry path: author and permlink are required");let o=r.replace(/^@+/,""),i=n.replace(/^\/+/,"");if(!o||!i)throw new Error("Invalid entry path: author and permlink cannot be empty after normalization");return `@${o}/${i}`}function eP(e,t){let r=t?.trim(),n=e?.trim(),o=!!n&&!!r&&r!=="undefined",i=o?Rc(n,r):"";return queryOptions({queryKey:u.posts.deletedEntry(i),queryFn:async({signal:s})=>{let a=await fetch(d.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:r||""}),signal:s});if(!a.ok)throw new Error(`Failed to fetch comment history: ${a.status}`);return a.json()},select:s=>{if(!s?.list?.[0])return null;let{body:a,title:c,tags:p}=s.list[0];return {body:a,title:c,tags:p}},enabled:o})}function oP(e,t,r=true){return queryOptions({queryKey:u.posts.tips(e,t),queryFn:async()=>{let n=`/private-api/post-tips/${encodeURIComponent(e)}/${encodeURIComponent(t)}`,o=await fetch(d.privateApiHost+n,{method:"GET",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch post tips: ${o.status}`);return o.json()},enabled:!!e&&!!t&&r,staleTime:60*1e3})}function Tc(e,t){return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,host:t}}function Fc(e){return {...e,id:e.id??e.post_id}}function _e(e,t){if(!e)return null;let r=e.container??e,n=Tc(r,t),o=e.parent?Fc(e.parent):void 0;return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,max_accepted_payout:e.max_accepted_payout||"1000000.000 HBD",pending_payout_value:e.pending_payout_value||"0.000 HBD",author_payout_value:e.author_payout_value||"0.000 HBD",curator_payout_value:e.curator_payout_value||"0.000 HBD",host:t,container:n,parent:o}}function qc(e){return Array.isArray(e)?e:[]}async function ri(e){let t=Xo(e,"created",true),r=await d.queryClient.fetchQuery(t),n=qc(r);if(n.length<=1)return [];let o=n.filter(({parent_author:s,parent_permlink:a})=>s===e.author&&a===e.permlink);return o.length===0?[]:o.filter(s=>!s.stats?.gray)}function ni(e,t,r){return e.length===0?[]:e.map(n=>{let o=e.find(i=>i.author===n.parent_author&&i.permlink===n.parent_permlink&&i.author!==r);return {...n,id:n.post_id,host:r,container:t,parent:o}}).filter(n=>n.container.post_id!==n.post_id).sort((n,o)=>new Date(o.created).getTime()-new Date(n.created).getTime())}var Kc=20;function oi(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,following:e.following?.trim().toLowerCase()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Kc}}async function ii({containers:e,tag:t,following:r,author:n,observer:o,limit:i},s,a){let c=B.getValidatedBaseUrl(),p=new URL("/private-api/waves/feed",c);p.searchParams.set("limit",String(i)),s&&p.searchParams.set("cursor",s),e.forEach(f=>p.searchParams.append("container",f)),t&&p.searchParams.set("tag",t),r&&p.searchParams.set("following",r),n&&p.searchParams.set("author",n),o&&p.searchParams.set("observer",o);let l=await fetch(p.toString(),{method:"GET",signal:a});if(!l.ok)throw new Error(`Failed to fetch waves feed: ${l.status}`);let m=await l.json();return !Array.isArray(m)||m.length===0?[]:m.map(f=>{let g=_e(f,f.host??"");return g?{...g,_cursor:f._cursor}:null}).filter(f=>!!f)}function dP(e={}){let t=oi(e),{containers:r,tag:n,following:o,author:i,observer:s,limit:a}=t;return infiniteQueryOptions({queryKey:u.posts.wavesFeed({containers:r,tag:n,following:o,author:i,observer:s,limit:a}),initialPageParam:void 0,queryFn:({pageParam:c,signal:p})=>ii(t,c,p),getNextPageParam:c=>{if(!(c.lengthii(t,void 0,c)})}var Mc=20;function Bc(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Mc}}async function Qc({containers:e,tag:t,author:r,observer:n,limit:o},i,s){let a=B.getValidatedBaseUrl(),c=new URL("/private-api/waves/shorts",a);c.searchParams.set("limit",String(o)),i&&c.searchParams.set("cursor",i),e.forEach(m=>c.searchParams.append("container",m)),t&&c.searchParams.set("tag",t),r&&c.searchParams.set("author",r),n&&c.searchParams.set("observer",n);let p=await fetch(c.toString(),{method:"GET",signal:s});if(!p.ok)throw new Error(`Failed to fetch shorts feed: ${p.status}`);let l=await p.json();return !Array.isArray(l)||l.length===0?[]:l.map(m=>{let f=_e(m,m.host??"");return f?{...f,active_votes:f.active_votes??[],video:m.video,_cursor:m._cursor}:null}).filter(m=>!!m)}function _P(e={}){let t=Bc(e),{containers:r,tag:n,author:o,observer:i,limit:s}=t;return infiniteQueryOptions({queryKey:u.posts.shortsFeed({containers:r,tag:n,author:o,observer:i,limit:s}),initialPageParam:void 0,queryFn:({pageParam:a,signal:c})=>Qc(t,a,c),getNextPageParam:a=>{if(!(a.length(l.id=l.post_id,l.host=e,l));for(let l of c){if(i&&l.post_id===i){i=void 0;continue}if(o+=1,l.stats?.gray){r=l.author,n=l.permlink;continue}let m;try{m=await ri(l);}catch(f){console.error("[SDK] getThreads get_discussion error:",f),r=l.author,n=l.permlink;continue}if(m.length===0){r=l.author,n=l.permlink;continue}return {entries:ni(m,l,e)}}let p=c[c.length-1];if(!p)return null;r=p.author,n=p.permlink;}return null}function OP(e){return infiniteQueryOptions({queryKey:u.posts.wavesByHost(e),initialPageParam:void 0,queryFn:async({pageParam:t})=>{let r=await jc(e,t);return r?r.entries:[]},getNextPageParam:t=>t?.[0]?.container})}var $c=40;function kP(e,t,r=$c){return infiniteQueryOptions({queryKey:u.posts.wavesByTag(e,t),initialPageParam:void 0,queryFn:async({signal:n})=>{try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/tags",o);i.searchParams.set("container",e),i.searchParams.set("tag",t);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves by tag: ${s.status}`);return (await s.json()).slice(0,r).map(p=>_e(p,e)).filter(p=>!!p).sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves by tag",o),[]}},getNextPageParam:()=>{}})}function DP(e,t){let r=t?.trim().toLowerCase();return infiniteQueryOptions({queryKey:u.posts.wavesFollowing(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/following",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves following feed: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let c=a.map(p=>_e(p,e)).filter(p=>!!p);return c.length===0?[]:c.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves following feed",o),[]}},getNextPageParam:()=>{}})}function BP(e,t=24){let r=e?.trim()||void 0;return queryOptions({queryKey:u.posts.wavesTrendingTags(r??"",t),queryFn:async({signal:n})=>{try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/trending/tags",o);r&&i.searchParams.set("container",r),i.searchParams.set("hours",t.toString());let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves trending tags: ${s.status}`);return (await s.json()).map(({tag:c,posts:p})=>({tag:c,posts:p}))}catch(o){return console.error("[SDK] Failed to fetch waves trending tags",o),[]}}})}function jP(e,t){let r=t?.trim().toLowerCase();return infiniteQueryOptions({queryKey:u.posts.wavesByAccount(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/account",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves for account: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let c=a.map(p=>_e(p,e)).filter(p=>!!p);return c.length===0?[]:c.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){throw console.error("[SDK] Failed to fetch waves for account",o),o}},getNextPageParam:()=>{}})}function GP(e){return queryOptions({queryKey:u.posts.wavesTrendingAuthors(e),queryFn:async({signal:t})=>{try{let r=B.getValidatedBaseUrl(),n=new URL("/private-api/waves/trending/authors",r);n.searchParams.set("container",e);let o=await fetch(n.toString(),{method:"GET",signal:t});if(!o.ok)throw new Error(`Failed to fetch waves trending authors: ${o.status}`);return (await o.json()).map(({author:s,posts:a})=>({author:s,posts:a}))}catch(r){throw console.error("[SDK] Failed to fetch waves trending authors",r),r}}})}function ZP(e,t=true){return queryOptions({queryKey:u.posts.normalize(e?.author??"",e?.permlink??""),enabled:t&&!!e,queryFn:async()=>zo(e)})}function Zc(e){return !!e&&typeof e=="object"&&"author"in e&&"permlink"in e&&"active_votes"in e}function si(e){let t=new Date(e);return (new Date().getTime()-t.getTime())/(1e3*60*60*24)}function a0(e,t){let{limit:r=20,filters:n=[],dayLimit:o=7}=t??{};return infiniteQueryOptions({queryKey:u.accounts.voteHistory(e,r),initialPageParam:{start:-1},queryFn:async({pageParam:i})=>{let{start:s}=i,a=await y("condenser_api.get_account_history",[e,s,r,...n]),p=a.map(([f,g])=>({...g.op[1],num:f,timestamp:g.timestamp})).filter(f=>f.voter===e&&f.weight!==0&&si(f.timestamp)<=o),l=[];for(let f of p){let g=await d.queryClient.fetchQuery(Vo(f.author,f.permlink));Zc(g)&&l.push(g);}let[m]=a;return {lastDate:m?si(m[1].timestamp):0,lastItemFetched:m?m[0]:s,entries:l}},getNextPageParam:i=>({start:i.lastItemFetched})})}function d0(e,t,r=true){return queryOptions({queryKey:u.accounts.profiles(e,t??""),enabled:r&&e.length>0,queryFn:async()=>zt(e,t)})}function _0(e,t="HIVE",r=200){return infiniteQueryOptions({queryKey:u.wallet.balanceHistory(e??"",t,r),initialPageParam:null,queryFn:async({pageParam:n,signal:o})=>{if(!e)return {entries:[],currentPage:0};let i={"account-name":e,"coin-type":t,"page-size":r,direction:"desc"};n!==null&&(i.page=n);let s=await te("balance","/accounts/{account-name}/balance-history",i,void 0,void 0,o);return {entries:s.operations_result,currentPage:n??s.total_pages}},getNextPageParam:n=>{let o=n.currentPage-1;return o>=1?o:void 0},enabled:!!e})}function P0(e,t="HIVE",r="yearly"){return queryOptions({queryKey:u.wallet.aggregatedHistory(e??"",t,r),queryFn:async()=>e?await te("balance","/accounts/{account-name}/aggregated-history",{"account-name":e,"coin-type":t,granularity:r}):[],enabled:!!e,staleTime:6e4})}function C0(){return queryOptions({queryKey:u.accounts.proMembers(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/pro-members",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch pro members: ${e.status}`);return e.json()},staleTime:300*1e3})}function E0(e){return new Set((e??[]).map(t=>t.toLowerCase()))}function I0(e,t,r){let n=useQueryClient(),{data:o}=useQuery(M(e));return v(["accounts","update"],e,i=>{let s=Ko(n.getQueryData(M(e).queryKey),o);if(!s)throw new Error("[SDK][Accounts] \u2013 cannot update not existing account");return [["account_update2",{account:e,json_metadata:"",extensions:[],posting_json_metadata:No({existingPostingJsonMetadata:s.posting_json_metadata,profile:i.profile,tokens:i.tokens})}]]},async(i,s)=>{n.setQueryData(M(e).queryKey,a=>{if(!a)return a;let c=JSON.parse(JSON.stringify(a));return c.profile=Nr({existingProfile:Do(a),profile:s.profile,tokens:s.tokens}),c}),await S(t?.adapter,r,[u.accounts.full(e)]);},t,void 0,{broadcastMode:r,onMutate:async()=>{if(e)try{await n.fetchQuery({...M(e),staleTime:0});}catch{}}})}function B0(e,t,r,n,o){return useMutation({mutationKey:["accounts","relation","update",e,t],mutationFn:async i=>{let s=Bo(e,t);await w().prefetchQuery(s);let a=w().getQueryData(s.queryKey);return await Eo(e,"follow",["follow",{follower:e,following:t,what:[...i==="toggle-ignore"&&!a?.ignores?["ignore"]:[],...i==="toggle-follow"&&!a?.follows?["blog"]:[]]}],r),{...a,ignores:i==="toggle-ignore"?!a?.ignores:a?.ignores,follows:i==="toggle-follow"?!a?.follows:a?.follows}},onError:o,onSuccess(i){n(i),w().setQueryData(u.accounts.relations(e,t),i),t&&w().invalidateQueries(M(t));}})}function Qr(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildVoteOp] Missing required parameters");if(n<-1e4||n>1e4)throw new Error("[SDK][buildVoteOp] Weight must be between -10000 and 10000");return ["vote",{voter:e,author:t,permlink:r,weight:n}]}function Ve(e,t,r,n,o,i,s){let a=[];if(e||a.push("author"),t||a.push("permlink"),n===void 0&&a.push("parentPermlink"),i||a.push("body"),a.length>0)throw new Error(`[SDK][buildCommentOp] Missing required parameters: ${a.join(", ")}`);return ["comment",{parent_author:r,parent_permlink:n,author:e,permlink:t,title:o,body:i,json_metadata:JSON.stringify(s)}]}function je(e,t,r,n,o,i,s){if(!e||!t)throw new Error("[SDK][buildCommentOptionsOp] Missing required parameters");return ["comment_options",{author:e,permlink:t,max_accepted_payout:r,percent_hbd:n,allow_votes:o,allow_curation_rewards:i,extensions:s}]}function Ur(e,t){if(!e||!t)throw new Error("[SDK][buildDeleteCommentOp] Missing required parameters");return ["delete_comment",{author:e,permlink:t}]}function Hr(e,t,r,n=false){if(!e||!t||!r)throw new Error("[SDK][buildReblogOp] Missing required parameters");let o={account:e,author:t,permlink:r};return n&&(o.delete="delete"),["custom_json",{id:"follow",json:JSON.stringify(["reblog",o]),required_auths:[],required_posting_auths:[e]}]}function Le(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferOp] Missing required parameters");return ["transfer",{from:e,to:t,amount:r,memo:n||""}]}function ap(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiTransferOps] Missing required parameters");return t.trim().split(/[\s,]+/).filter(Boolean).map(i=>Le(e,i.trim(),r,n))}function up(e,t,r,n,o,i){if(!e||!t||!r)throw new Error("[SDK][buildRecurrentTransferOp] Missing required parameters");if(o<24)throw new Error("[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours");return ["recurrent_transfer",{from:e,to:t,amount:r,memo:n||"",recurrence:o,executions:i,extensions:[]}]}function rt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferToSavingsOp] Missing required parameters");return ["transfer_to_savings",{from:e,to:t,amount:r,memo:n||""}]}function $e(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildTransferFromSavingsOp] Missing required parameters");return ["transfer_from_savings",{from:e,to:t,amount:r,memo:n||"",request_id:o}]}function ai(e,t){if(!e||t===void 0)throw new Error("[SDK][buildCancelTransferFromSavingsOp] Missing required parameters");return ["cancel_transfer_from_savings",{from:e,request_id:t}]}function _t(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildClaimInterestOps] Missing required parameters");return [$e(e,t,r,n,o),ai(e,o)]}function wt(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildTransferToVestingOp] Missing required parameters");return ["transfer_to_vesting",{from:e,to:t,amount:r}]}function bt(e,t){if(!e||!t)throw new Error("[SDK][buildWithdrawVestingOp] Missing required parameters");return ["withdraw_vesting",{account:e,vesting_shares:t}]}function vt(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildDelegateVestingSharesOp] Missing required parameters");return ["delegate_vesting_shares",{delegator:e,delegatee:t,vesting_shares:r}]}function At(e,t,r,n){if(!e||!t||r===void 0)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters");if(r<0||r>1e4)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000");return ["set_withdraw_vesting_route",{from_account:e,to_account:t,percent:r,auto_vest:n}]}function Pt(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildConvertOp] Missing required parameters");return ["convert",{owner:e,amount:t,requestid:r}]}function Vr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildCollateralizedConvertOp] Missing required parameters");return ["collateralized_convert",{owner:e,amount:t,requestid:r}]}function We(e,t,r,n="tokens"){return ["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:JSON.stringify({contractName:n,contractAction:t,contractPayload:r})}]}function jr(e,t){return ["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:JSON.stringify(t.map(r=>({symbol:r})))}]}function Lr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildDelegateRcOp] Missing required parameters");let n=t.includes(",")?t.split(",").map(o=>o.trim()):[t];return ["custom_json",{id:"rc",json:JSON.stringify(["delegate_rc",{from:e,delegatees:n,max_rc:r}]),required_auths:[],required_posting_auths:[e]}]}function $r(e,t){if(!e||!t)throw new Error("[SDK][buildFollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["blog"]}]),required_auths:[],required_posting_auths:[e]}]}function Jt(e,t){if(!e||!t)throw new Error("[SDK][buildUnfollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:[]}]),required_auths:[],required_posting_auths:[e]}]}function cp(e,t){if(!e||!t)throw new Error("[SDK][buildIgnoreOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["ignore"]}]),required_auths:[],required_posting_auths:[e]}]}function pp(e,t){if(!e||!t)throw new Error("[SDK][buildUnignoreOp] Missing required parameters");return Jt(e,t)}function Wr(e,t){if(!e)throw new Error("[SDK][buildSetLastReadOps] Missing required parameters");let r=t||new Date().toISOString().split(".")[0],n=["custom_json",{id:"notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}],o=["custom_json",{id:"ecency_notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}];return [n,o]}function Gr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildWitnessVoteOp] Missing required parameters");return ["account_witness_vote",{account:e,witness:t,approve:r}]}function zr(e,t){if(!e||t===void 0)throw new Error("[SDK][buildWitnessProxyOp] Missing required parameters");return ["account_witness_proxy",{account:e,proxy:t}]}function Jr(e,t){if(!e||!t.receiver||!t.subject||!t.permlink||!t.start||!t.end||!t.dailyPay)throw new Error("[SDK][buildProposalCreateOp] Missing required parameters");let r=new Date(t.start),n=new Date(t.end);if(r.toString()==="Invalid Date"||n.toString()==="Invalid Date")throw new Error("[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings");return ["create_proposal",{creator:e,receiver:t.receiver,start_date:t.start,end_date:t.end,daily_pay:t.dailyPay,subject:t.subject,permlink:t.permlink,extensions:[]}]}function Yr(e,t,r){if(!e||!t||t.length===0||r===void 0)throw new Error("[SDK][buildProposalVoteOp] Missing required parameters");return ["update_proposal_votes",{voter:e,proposal_ids:t,approve:r,extensions:[]}]}function lp(e,t){if(!e||!t||t.length===0)throw new Error("[SDK][buildRemoveProposalOp] Missing required parameters");return ["remove_proposal",{proposal_owner:e,proposal_ids:t,extensions:[]}]}function dp(e,t,r,n,o){if(e==null||typeof e!="number"||!t||!r||!n||!o)throw new Error("[SDK][buildUpdateProposalOp] Missing required parameters");return ["update_proposal",{proposal_id:e,creator:t,daily_pay:r,subject:n,permlink:o,extensions:[]}]}function Xr(e,t){if(!e||!t)throw new Error("[SDK][buildSubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["subscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function Zr(e,t){if(!e||!t)throw new Error("[SDK][buildUnsubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["unsubscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function en(e,t,r,n){if(!e||!t||!r||!n)throw new Error(`[SDK][buildSetRoleOp] Missing required parameters: username=${e}, community=${t}, account=${r}, role=${n}`);return ["custom_json",{id:"community",json:JSON.stringify(["setRole",{community:t,account:r,role:n}]),required_auths:[],required_posting_auths:[e]}]}function tn(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildUpdateCommunityOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["updateProps",{community:t,props:r}]),required_auths:[],required_posting_auths:[e]}]}function rn(e,t,r,n,o){if(!e||!t||!r||!n||o===void 0)throw new Error("[SDK][buildPinPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"pinPost":"unpinPost",{community:t,account:r,permlink:n}]),required_auths:[],required_posting_auths:[e]}]}function nn(e,t,r,n,o,i){if(!e||!t||!r||!n||i===void 0)throw new Error("[SDK][buildMutePostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([i?"mutePost":"unmutePost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}function mp(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildMuteUserOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"muteUser":"unmuteUser",{community:t,account:r,notes:n}]),required_auths:[],required_posting_auths:[e]}]}function fp(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildFlagPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["flagPost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}var ui=(r=>(r.Buy="buy",r.Sell="sell",r))(ui||{}),ci=(r=>(r.EMPTY="",r.SWAP="9",r))(ci||{});function Xt(e,t,r,n,o,i){if(!e||!t||!r||!o||i===void 0)throw new Error("[SDK][buildLimitOrderCreateOp] Missing required parameters");return ["limit_order_create",{owner:e,orderid:i,amount_to_sell:t,min_to_receive:r,fill_or_kill:n,expiration:o}]}function Yt(e,t=3){return e.toFixed(t)}function gp(e,t,r,n,o=""){if(!e||n===void 0||!Number.isFinite(t)||t<=0||!Number.isFinite(r)||r<=0)throw new Error("[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters");let i=new Date(Date.now());i.setDate(i.getDate()+27);let s=i.toISOString().split(".")[0],a=+`${o}${Math.floor(Date.now()/1e3).toString().slice(2)}`,c=n==="buy"?`${Yt(t,3)} HBD`:`${Yt(t,3)} HIVE`,p=n==="buy"?`${Yt(r,3)} HIVE`:`${Yt(r,3)} HBD`;return Xt(e,c,p,false,s,a)}function on(e,t){if(!e||t===void 0)throw new Error("[SDK][buildLimitOrderCancelOp] Missing required parameters");return ["limit_order_cancel",{owner:e,orderid:t}]}function sn(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildClaimRewardBalanceOp] Missing required parameters");return ["claim_reward_balance",{account:e,reward_hive:t,reward_hbd:r,reward_vests:n}]}function yp(e,t,r,n,o,i){if(!e||!o)throw new Error("[SDK][buildAccountUpdateOp] Missing required parameters");return ["account_update",{account:e,owner:t,active:r,posting:n,memo_key:o,json_metadata:i}]}function hp(e,t,r,n){if(!e||r===void 0)throw new Error("[SDK][buildAccountUpdate2Op] Missing required parameters");return ["account_update2",{account:e,json_metadata:t||"",posting_json_metadata:r,extensions:n||[]}]}function an(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildAccountCreateOp] Missing required parameters");let o={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},i={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},s={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["account_create",{creator:e,new_account_name:t,owner:o,active:i,posting:s,memo_key:r.memoPublicKey,json_metadata:"",fee:n}]}function un(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCreateClaimedAccountOp] Missing required parameters");let n={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},o={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},i={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["create_claimed_account",{creator:e,new_account_name:t,owner:n,active:o,posting:i,memo_key:r.memoPublicKey,json_metadata:"",extensions:[]}]}function cn(e,t){if(!e||!t)throw new Error("[SDK][buildClaimAccountOp] Missing required parameters");return ["claim_account",{creator:e,fee:t,extensions:[]}]}function pn(e,t,r,n,o,i){if(!e||!t||!r||!o)throw new Error("[SDK][buildGrantPostingPermissionOp] Missing required parameters");let s=t.account_auths.findIndex(([p])=>p===r),a=[...t.account_auths];s>=0?a[s]=[r,n]:a.push([r,n]);let c={...t,account_auths:a};return c.account_auths.sort((p,l)=>p[0]>l[0]?1:-1),["account_update",{account:e,posting:c,memo_key:o,json_metadata:i}]}function _p(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildRevokePostingPermissionOp] Missing required parameters");let i={...t,account_auths:t.account_auths.filter(([s])=>s!==r)};return ["account_update",{account:e,posting:i,memo_key:n,json_metadata:o}]}function wp(e,t,r=[]){if(!e||!t)throw new Error("[SDK][buildChangeRecoveryAccountOp] Missing required parameters");return ["change_recovery_account",{account_to_recover:e,new_recovery_account:t,extensions:r}]}function bp(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRequestAccountRecoveryOp] Missing required parameters");return ["request_account_recovery",{recovery_account:e,account_to_recover:t,new_owner_authority:r,extensions:n}]}function vp(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRecoverAccountOp] Missing required parameters");return ["recover_account",{account_to_recover:e,new_owner_authority:t,recent_owner_authority:r,extensions:n}]}function ln(e,t,r){if(!e||!t||!Number.isFinite(r))throw new Error("[SDK][buildBoostPlusOp] Missing required parameters");return ["custom_json",{id:"ecency_boost_plus",json:JSON.stringify({user:e,account:t,duration:r}),required_auths:[e],required_posting_auths:[]}]}function dn(e,t){if(!e||!Number.isInteger(t)||t<=0)throw new Error("[SDK][buildRcDelegationOp] Missing or invalid parameters");return ["custom_json",{id:"ecency_rc_delegation",json:JSON.stringify({user:e,duration:t}),required_auths:[e],required_posting_auths:[]}]}function mn(e,t,r,n){if(!e||!t||!r||!Number.isFinite(n))throw new Error("[SDK][buildPromoteOp] Missing required parameters");return ["custom_json",{id:"ecency_promote",json:JSON.stringify({user:e,author:t,permlink:r,duration:n}),required_auths:[e],required_posting_auths:[]}]}var Ap=["quality","underrated","newcomer","other"];function fn(e,t,r,n="quality"){if(!e||!t||!r)throw new Error("[SDK][buildCurationRecommendOp] Missing required parameters");if(!Ap.includes(n))throw new Error("[SDK][buildCurationRecommendOp] Unknown reason");return ["custom_json",{id:"ecency_curation",json:JSON.stringify({v:1,op:"recommend",author:t,permlink:r,reason:n}),required_auths:[],required_posting_auths:[e]}]}function gn(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCurationUnrecommendOp] Missing required parameters");return ["custom_json",{id:"ecency_curation",json:JSON.stringify({v:1,op:"unrecommend",author:t,permlink:r}),required_auths:[],required_posting_auths:[e]}]}function nt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildPointTransferOp] Missing required parameters");let o=r.replace(/POINTS\b/,"POINT");return ["custom_json",{id:"ecency_point_transfer",json:JSON.stringify({sender:e,receiver:t,amount:o,memo:n||""}),required_auths:[e],required_posting_auths:[]}]}function Pp(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiPointTransferOps] Missing required parameters");let o=t.trim().split(/[\s,]+/).filter(Boolean);if(o.length===0)throw new Error("[SDK][buildMultiPointTransferOps] Missing valid destinations");return o.map(i=>nt(e,i.trim(),r,n))}function yn(e){if(!e)throw new Error("[SDK][buildCommunityRegistrationOp] Missing required parameters");return ["custom_json",{id:"ecency_registration",json:JSON.stringify({name:e}),required_auths:[e],required_posting_auths:[]}]}function xp(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildActiveCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[e],required_posting_auths:[]}]}function Op(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildPostingCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[],required_posting_auths:[e]}]}function sx(e,t,r){return v(["accounts","follow"],e,({following:n})=>[$r(e,n)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.relations(e,o.following),u.accounts.full(o.following),u.accounts.followCount(o.following),u.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function px(e,t,r){return v(["accounts","unfollow"],e,({following:n})=>[Jt(e,n)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.relations(e,o.following),u.accounts.full(o.following),u.accounts.followCount(o.following),u.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function fx(e,t,r,n){return useMutation({mutationKey:["accounts","bookmarks","add",e],mutationFn:async({author:o,permlink:i})=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/bookmarks-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:o,permlink:i,code:t})})).json()},onSuccess:()=>{r(),w().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function _x(e,t,r,n){return useMutation({mutationKey:["accounts","bookmarks","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/bookmarks-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({id:o,code:t})})).json()},onSuccess:()=>{r(),w().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function Ax(e,t,r,n){return useMutation({mutationKey:["accounts","favorites","add",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/favorites-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})})).json()},onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favorites(e)}),s.invalidateQueries({queryKey:u.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavorite(e,i)});},onError:n})}function Cx(e,t,r,n){return useMutation({mutationKey:["accounts","favorites","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");let s=await h()(d.privateApiHost+"/private-api/favorites-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})});if(!s.ok)throw new Error(`Failed to delete favorite: ${s.status}`);return s.json()},onMutate:async o=>{if(!e)return;let i=w(),s=u.accounts.favorites(e),a=u.accounts.favoritesInfinite(e),c=u.accounts.checkFavorite(e,o);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a}),i.cancelQueries({queryKey:c})]);let p=i.getQueryData(s);p&&i.setQueryData(s,p.filter(g=>g.account!==o));let l=i.getQueryData(c);i.setQueryData(c,false);let m=i.getQueriesData({queryKey:a}),f=new Map(m);for(let[g,_]of m)_&&i.setQueryData(g,{..._,pages:_.pages.map(A=>({...A,data:A.data.filter(x=>x.account!==o)}))});return {previousList:p,previousInfinite:f,previousCheck:l}},onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favorites(e)}),s.invalidateQueries({queryKey:u.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavorite(e,i)});},onError:(o,i,s)=>{let a=w();if(s?.previousList&&a.setQueryData(u.accounts.favorites(e),s.previousList),s?.previousInfinite)for(let[c,p]of s.previousInfinite)a.setQueryData(c,p);s?.previousCheck!==void 0&&a.setQueryData(u.accounts.checkFavorite(e,i),s.previousCheck),n(o);}})}async function pi(e,t,r,n){if(!t||!r)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");let o=Se(n);if(o===null)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 invalid tag");let s=await h()(d.privateApiHost+"/private-api/"+e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({tag:o,code:r})});if(!s.ok)throw new Error(`Failed to ${e==="favorite-tags-add"?"add":"delete"} favorite tag: ${s.status}`);return await s.json()}function li(e,t,r){return pi("favorite-tags-add",e,t,r)}function di(e,t,r){return pi("favorite-tags-delete",e,t,r)}function Kx(e,t,r,n){return useMutation({mutationKey:["accounts","favorite-tags","add",e],mutationFn:o=>li(e,t,o),onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favoriteTags(e)}),s.invalidateQueries({queryKey:u.accounts.favoriteTagsInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavoriteTag(e,Se(i)??i)});},onError:n})}function Fp(e,t,r,n){let o=i=>{let s=w();s.invalidateQueries({queryKey:u.accounts.favoriteTags(e)}),s.invalidateQueries({queryKey:u.accounts.favoriteTagsInfinite(e)}),i&&s.invalidateQueries({queryKey:u.accounts.checkFavoriteTag(e,i)});};return {mutationKey:["accounts","favorite-tags","delete",e],mutationFn:i=>di(e,t,i),onMutate:async i=>{let s=Se(i);if(!e||s===null)return;let a=w(),c=u.accounts.favoriteTags(e),p=u.accounts.favoriteTagsInfinite(e),l=u.accounts.checkFavoriteTag(e,s);await Promise.all([a.cancelQueries({queryKey:c}),a.cancelQueries({queryKey:p}),a.cancelQueries({queryKey:l})]);let m=a.getQueryData(c);m&&a.setQueryData(c,m.filter(A=>A.tag!==s));let f=a.getQueryData(l);a.setQueryData(l,false);let g=a.getQueriesData({queryKey:p}),_=new Map(g);for(let[A,x]of g)x&&a.setQueryData(A,{...x,pages:x.pages.map(C=>({...C,data:C.data.filter(F=>F.tag!==s)}))});return {normalized:s,previousList:m,previousInfinite:_,previousCheck:f}},onSuccess:(i,s)=>{r(),o(Se(s)??void 0);},onError:(i,s,a)=>{let c=w();if(a){a.previousList&&c.setQueryData(u.accounts.favoriteTags(e),a.previousList);for(let[l,m]of a.previousInfinite)c.setQueryData(l,m);let p=u.accounts.checkFavoriteTag(e,a.normalized);a.previousCheck!==void 0?c.setQueryData(p,a.previousCheck):c.removeQueries({queryKey:p,exact:true});}o(a?.normalized),n(i);}}}function Lx(e,t,r,n){return useMutation(Fp(e,t,r,n))}function Dp(e,t){let r=new Map;return e.forEach(([n,o])=>{r.set(n.toString(),o);}),t.forEach(([n,o])=>{r.set(n.toString(),o);}),Array.from(r.entries()).sort(([n],[o])=>n.localeCompare(o)).map(([n,o])=>[n,o])}function mi(e,t){let{data:r}=useQuery(M(e));return useMutation({mutationKey:["accounts","keys-update",e],mutationFn:async({keys:n,keepCurrent:o=false,currentKey:i,keysToRevoke:s=[],keysToRevokeByAuthority:a={}})=>{if(n.length===0)throw new Error("[SDK][Update password] \u2013 no new keys provided");if(!r)throw new Error("[SDK][Update password] \u2013 cannot update keys for anon user");let c=p=>{let l=JSON.parse(JSON.stringify(r[p])),f=[...a[p]||[],...a[p]===void 0?s:[]],g=o?l.key_auths.filter(([_])=>!f.includes(_.toString())):[];return l.key_auths=Dp(g,n.map((_,A)=>[_[p].createPublic().toString(),A+1])),l};return ee([["account_update",{account:e,json_metadata:r.json_metadata,owner:c("owner"),active:c("active"),posting:c("posting"),memo_key:n[0].memo_key.createPublic().toString()}]],i)},...t})}function tO(e,t){let{data:r}=useQuery(M(e)),{mutateAsync:n}=mi(e);return useMutation({mutationKey:["accounts","password-update",e],mutationFn:async({newPassword:o,currentPassword:i,keepCurrent:s})=>{if(!r)throw new Error("[SDK][Update password] \u2013 cannot update password for anon user");let a=U.fromLogin(e,i,"owner");return n({currentKey:a,keepCurrent:s,keys:[{owner:U.fromLogin(e,o,"owner"),active:U.fromLogin(e,o,"active"),posting:U.fromLogin(e,o,"posting"),memo_key:U.fromLogin(e,o,"memo")}]})},...t})}function aO(e,t,r){let n=useQueryClient(),{data:o}=useQuery(M(e));return useMutation({mutationKey:["accounts","revoke-posting",o?.name],mutationFn:async({accountName:i,type:s,key:a})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot revoke posting for anonymous user");let c=JSON.parse(JSON.stringify(o.posting));c.account_auths=c.account_auths.filter(([l])=>l!==i);let p={account:o.name,posting:c,memo_key:o.memo_key,json_metadata:o.json_metadata};if(s==="key"&&a)return ee([["account_update",p]],a);if(s==="keychain"){if(!r?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return r.adapter.broadcastWithKeychain(o.name,[["account_update",p]],"active")}else return !t.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing."),Co.sendOperation(["account_update",p],t.hsCallbackUrl?{callback:t.hsCallbackUrl}:{},()=>{})},onError:t.onError,onSuccess:(i,s,a)=>{t.onSuccess?.(i,s,a),n.setQueryData(M(e).queryKey,c=>({...c,posting:{...c?.posting,account_auths:c?.posting?.account_auths?.filter(([p])=>p!==s.accountName)??[]}}));}})}function fO(e,t,r,n){let{data:o}=useQuery(M(e));return useMutation({mutationKey:["accounts","recovery",o?.name],mutationFn:async({accountName:i,type:s,key:a,email:c})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot change recovery for anonymous user");let p={account_to_recover:o.name,new_recovery_account:i,extensions:[]};if(s==="ecency"){if(!t)throw new Error("[SDK][Accounts] \u2013 missing access token");let m=await h()(d.privateApiHost+"/private-api/recoveries-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,email:c,publicKeys:[...o.owner.key_auths,...o.active.key_auths,...o.posting.key_auths,o.memo_key]})});if(!m.ok)throw new Error(`[SDK][Accounts] Failed to add recovery: ${m.status}`);return m}else {if(s==="key"&&a)return ee([["change_recovery_account",p]],a);if(s==="keychain"){if(!n?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return n.adapter.broadcastWithKeychain(o.name,[["change_recovery_account",p]],"owner")}else return !r.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing."),Co.sendOperation(["change_recovery_account",p],r.hsCallbackUrl?{callback:r.hsCallbackUrl}:{},()=>{})}},onError:r.onError,onSuccess:r.onSuccess})}function yO(e,t){let r=e.key_auths.filter(([o])=>!t.has(String(o))).reduce((o,[,i])=>o+i,0),n=(e.account_auths??[]).reduce((o,[,i])=>o+i,0);return r+n>=e.weight_threshold}function fi(e,t){let r=new Set(t.map(s=>s.toString())),n=s=>s.key_auths.some(([a])=>r.has(String(a))),o=s=>{let a=JSON.parse(JSON.stringify(s));return a.key_auths=a.key_auths.filter(([c])=>!r.has(c.toString())),a},i=n(e.owner);return {account:e.name,json_metadata:e.json_metadata,owner:i?o(e.owner):void 0,active:o(e.active),posting:o(e.posting),memo_key:e.memo_key}}function AO(e,t){let{data:r}=useQuery(M(e));return useMutation({mutationKey:["accounts","revoke-key",r?.name],mutationFn:async({currentKey:n,revokingKey:o})=>{if(!r)throw new Error("[SDK][Revoke key] \u2013 cannot update keys for anon user");let i=Array.isArray(o)?o:[o],s=fi(r,i);return ee([["account_update",s]],n)},...t})}function SO(e,t,r){return v(["accounts","claimAccount"],e,({creator:n,fee:o="0.000 HIVE"})=>[cn(n,o)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(o.creator)]);},t,"active",{broadcastMode:r})}function kO(e,t,r){return v(["accounts","grant-posting-permission"],e,n=>[pn(e,n.currentPosting,n.grantedAccount,n.weightThreshold,n.memoKey,n.jsonMetadata)],async()=>{await S(t?.adapter,r,[u.accounts.full(e)]);},t,"active",{broadcastMode:r})}function IO(e,t,r){return v(["accounts","create"],e,n=>[n.useClaimed?un(e,n.newAccountName,n.keys):an(e,n.newAccountName,n.keys,n.fee)],async()=>{await S(t?.adapter,r,[u.accounts.full(e)]);},t,"active",{broadcastMode:r})}var hn=300*60*24,Wp=1e4,Gp=5e7;function gi(e){let t=T(e.vesting_shares).amount,r=T(e.received_vesting_shares).amount,n=T(e.delegated_vesting_shares).amount,o=T(e.vesting_withdraw_rate).amount,i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t+r-n-s}function zp(e,t,r){let n=e*1e6;return (t*r/1e4/50+1)*n/1e4}function Jp(e){if(Number.isFinite(e.lastHardfork))return e.lastHardfork>=28;let[t="0",r="0"]=(e.currentHardforkVersion??"0.0.0").split(".");return Number(t)>1||Number(t)===1&&Number(r)>=28}function Yp(e,t,r){let n=t.votePowerReserveRate||Number(t.raw?.globalDynamic?.vote_power_reserve_rate??0);if(!Number.isFinite(n)||n<=0)return 0;let o=gi(e);if(!Number.isFinite(o)||o<=0)return 0;let i=o*1e6,s=Math.ceil(i*r*60*60*24/Wp/(n*hn)),a=Ir(e),c=Math.min(a.current_mana,a.max_mana);return !Number.isFinite(c)||s>c?0:Math.max(s-Gp,0)}function Xp(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;if(Jp(t))return Yp(e,t,n);let o=0;try{if(o=gi(e),!Number.isFinite(o))return 0}catch{return 0}return zp(o,r,n)}function MO(e){return Ir(e).percentage/100}function BO(e){if(!Number.isFinite(e))throw new TypeError("Voting power must be a finite number");if(e<0||e>100)throw new RangeError("Voting power must be between 0 and 100");return (100-e)*100*hn/1e4}function QO(e){let t=parseFloat(e.vesting_shares)+parseFloat(e.received_vesting_shares)-parseFloat(e.delegated_vesting_shares),r=Math.floor(Date.now()/1e3)-e.downvote_manabar.last_update_time,n=t*1e6/4;if(n<=0)return 0;let o=parseFloat(e.downvote_manabar.current_mana.toString())+r*n/hn;o>n&&(o=n);let i=o*100/n;return isNaN(i)?0:i>100?100:i}function UO(e){let{curation_rewards:t,posting_rewards:r}=e;if(t===void 0||r===void 0)return null;let n=t+r,o=T(e.vesting_shares).amount-T(e.delegated_vesting_shares).amount;return !Number.isFinite(n)||!Number.isFinite(o)||o<=0?null:n/o}function HO(e){return jt(e).percentage/100}function VO(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;let{fundRecentClaims:o,fundRewardBalance:i,base:s,quote:a}=t;if(!Number.isFinite(o)||!Number.isFinite(i)||!Number.isFinite(s)||!Number.isFinite(a)||o===0||a===0)return 0;let c=Xp(e,t,r,n);return Number.isFinite(c)?c/o*i*(s/a):0}var Zp={vote:"posting",comment:"posting",delete_comment:"posting",comment_options:"posting",claim_reward_balance:"posting",cancel_transfer_from_savings:"active",collateralized_convert:"active",convert:"active",delegate_vesting_shares:"active",recurrent_transfer:"active",set_withdraw_vesting_route:"active",transfer:"active",transfer_from_savings:"active",transfer_to_savings:"active",transfer_to_vesting:"active",withdraw_vesting:"active",limit_order_create:"active",limit_order_cancel:"active",account_update:"active",account_update2:"active",claim_account:"active",create_claimed_account:"active",account_witness_proxy:"active",account_witness_vote:"active",remove_proposal:"active",update_proposal_votes:"active",change_recovery_account:"owner",request_account_recovery:"owner",recover_account:"owner",reset_account:"owner",set_reset_account:"owner"};function el(e){let t=e[0],r=e[1];if(t!=="custom_json")throw new Error("Operation is not a custom_json operation");let n=r;return n.required_auths&&n.required_auths.length>0?"active":(n.required_posting_auths&&n.required_posting_auths.length>0,"posting")}function tl(e){let t=e[0];if(t!=="create_proposal"&&t!=="update_proposal")throw new Error("Operation is not a proposal operation");return "active"}function rl(e){let t=e[0];return t==="custom_json"?el(e):t==="create_proposal"||t==="update_proposal"?tl(e):Zp[t]??"posting"}function LO(e){let t="posting";for(let r of e){let n=rl(r);if(n==="owner")return "owner";n==="active"&&t==="posting"&&(t="active");}return t}function JO(e){return useMutation({mutationKey:["operations","sign",e],mutationFn:({operation:t,keyOrSeed:r})=>{if(!e)throw new Error("[Operations][Sign] \u2013 cannot sign op with anon user");let n;return r.split(" ").length===12?n=U.fromLogin(e,r,"active"):Po(r)?n=U.fromString(r):n=U.from(r),ee([t],n)}})}function ZO(e,t,r="active"){return useMutation({mutationKey:["operations","sign-keychain",e],mutationFn:({operation:n})=>{if(!e)throw new Error("[SDK][Keychain] \u2013\xA0cannot sign operation with anon user");if(!t?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Keychain] \u2013 missing keychain broadcaster");return t.adapter.broadcastWithKeychain(e,[n],r)}})}function nS(e="/"){return useMutation({mutationKey:["operations","sign-hivesigner",e],mutationFn:async({operation:t})=>Co.sendOperation(t,{callback:e},()=>{})})}function aS(){return queryOptions({queryKey:["operations","chain-properties"],queryFn:async()=>await y("condenser_api.get_chain_properties",[])})}function yi(e,t,r){return {...e,...t??{},title:r.title,body:r.body}}function hi(e,t){return {...e??{},title:t.title,body:t.body}}function gS(e,t){return useMutation({mutationKey:["posts","add-fragment",e],mutationFn:async({title:r,body:n})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let i=await h()(d.privateApiHost+"/private-api/fragments-add",{method:"POST",body:JSON.stringify({code:t,title:r,body:n}),headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`[SDK][Posts] Failed to add fragment: ${i.status}`);return i.json()},onSuccess(r,n){let o=w(),i=hi(r,n);o.setQueryData(tt(e,t).queryKey,s=>[i,...s??[]]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map((a,c)=>c===0?{...a,data:[i,...a.data]}:a)});}})}function AS(e,t){return useMutation({mutationKey:["posts","edit-fragment",e],mutationFn:async({fragmentId:r,title:n,body:o})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let s=await h()(d.privateApiHost+"/private-api/fragments-update",{method:"POST",body:JSON.stringify({code:t,id:r,title:n,body:o}),headers:{"Content-Type":"application/json"}});if(!s.ok)throw new Error(`[SDK][Posts] Failed to update fragment: ${s.status}`);return s.json()},onSuccess(r,n){let o=w(),i=s=>yi(s,r,n);o.setQueryData(tt(e,t).queryKey,s=>s?.map(a=>a.id===n.fragmentId?i(a):a)??[]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map(a=>({...a,data:a.data.map(c=>c.id===n.fragmentId?i(c):c)}))});}})}function ES(e,t){return useMutation({mutationKey:["posts","remove-fragment",e],mutationFn:async({fragmentId:r})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let o=await h()(d.privateApiHost+"/private-api/fragments-delete",{method:"POST",body:JSON.stringify({code:t,id:r}),headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`[SDK][Posts] Failed to delete fragment: ${o.status}`);return o},onSuccess(r,n){let o=w();o.setQueryData(tt(e,t).queryKey,i=>[...i??[]].filter(({id:s})=>s!==n.fragmentId)),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},i=>i&&{...i,pages:i.pages.map(s=>({...s,data:s.data.filter(a=>a.id!==n.fragmentId)}))});}})}async function G(e){if(!e.ok){let r;try{r=await e.json();}catch{r=void 0;}let n=new Error(`Request failed with status ${e.status}`);throw n.status=e.status,n.data=r,n}let t=await e.text();if(!t||t.trim()==="")return "";try{return JSON.parse(t)}catch(r){return console.warn("[SDK] Failed to parse JSON response:",r,"Response:",t),""}}async function TS(e,t,r,n){let i=await h()(d.privateApiHost+"/private-api/account-create",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,email:t,referral:r,captcha_token:n})}),s=await G(i);return {status:i.status,data:s}}async function FS(e){let r=await h()(d.privateApiHost+"/private-api/subscribe",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e})}),n=await G(r);return {status:r.status,data:n}}async function qS(e,t,r="",n=""){let o={code:e,ty:t};r&&(o.bl=r),n&&(o.tx=n);let s=await h()(d.privateApiHost+"/private-api/usr-activity",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});await G(s);}async function IS(e,t,r=null,n=null){let o={code:e};t&&(o.filter=t),r&&(o.since=r),n&&(o.user=n);let s=await h()(d.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});return G(s)}async function DS(e,t,r,n,o,i){let s={code:e,username:t,token:i,system:r,allows_notify:n,notify_types:o},c=await h()(d.privateApiHost+"/private-api/register-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return G(c)}async function KS(e,t,r){let n={code:e,username:t,token:r},i=await h()(d.privateApiHost+"/private-api/detail-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}async function _i(e,t){let r={code:e};t&&(r.id=t);let o=await h()(d.privateApiHost+"/private-api/notifications/mark",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function wi(e,t){let r={code:e,url:t},o=await h()(d.privateApiHost+"/private-api/images-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}var ll="https://i.ecency.com";async function bi(e,t,r){let n=h(),o=new FormData;o.append("file",e);let i=await n(`${ll}/hs/${t}`,{method:"POST",body:o,signal:r});return G(i)}async function NS(e,t,r,n){let o=h(),i=new FormData;i.append("file",e);let s=await o(`${d.imageHost}/${t}/${r}`,{method:"POST",body:i,signal:n});return G(s)}async function vi(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/images-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Ai(e,t,r,n,o){let i={code:e,title:t,body:r,tags:n,meta:o},a=await h()(d.privateApiHost+"/private-api/drafts-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return G(a)}async function Pi(e,t,r,n,o,i){let s={code:e,id:t,title:r,body:n,tags:o,meta:i},c=await h()(d.privateApiHost+"/private-api/drafts-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return G(c)}async function xi(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/drafts-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Oi(e,t,r,n,o,i,s,a){let c={code:e,permlink:t,title:r,body:n,meta:o,schedule:s,reblog:a};i&&(c.options=i);let l=await h()(d.privateApiHost+"/private-api/schedules-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)});return G(l)}async function Si(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/schedules-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Ci(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/schedules-move",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function MS(e,t,r){let n={code:e,author:t,permlink:r},i=await h()(d.privateApiHost+"/private-api/promoted-post",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}async function BS(e,t,r){let n={username:e,email:t,friend:r},i=await h()(d.privateApiHost+"/private-api/account-create-friend",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}function jS(e,t,r,n){return useMutation({mutationKey:["posts","drafts","add",e],mutationFn:async({title:o,body:i,tags:s,meta:a})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addDraft");return Ai(t,o,i,s,a)},onSuccess:o=>{r?.();let i=w();o?.drafts?i.setQueryData(u.posts.drafts(e),o.drafts):i.invalidateQueries({queryKey:u.posts.drafts(e)}),i.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:n})}function zS(e,t,r,n){return useMutation({mutationKey:["posts","drafts","update",e],mutationFn:async({draftId:o,title:i,body:s,tags:a,meta:c})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for updateDraft");return Pi(t,o,i,s,a,c)},onSuccess:()=>{r?.();let o=w();o.invalidateQueries({queryKey:u.posts.drafts(e)}),o.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:n})}function tC(e,t,r,n){return useMutation({mutationKey:["posts","drafts","delete",e],mutationFn:async({draftId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteDraft");return xi(t,o)},onMutate:async({draftId:o})=>{if(!e)return;let i=w(),s=u.posts.drafts(e),a=u.posts.draftsInfinite(e);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a})]);let c=i.getQueryData(s);c&&i.setQueryData(s,c.filter(m=>m._id!==o));let p=i.getQueriesData({queryKey:a}),l=new Map(p);for(let[m,f]of p)f&&i.setQueryData(m,{...f,pages:f.pages.map(g=>({...g,data:g.data.filter(_=>_._id!==o)}))});return {previousList:c,previousInfinite:l}},onSuccess:()=>{r?.();let o=w();o.invalidateQueries({queryKey:u.posts.drafts(e)}),o.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:(o,i,s)=>{let a=w();if(s?.previousList&&a.setQueryData(u.posts.drafts(e),s.previousList),s?.previousInfinite)for(let[c,p]of s.previousInfinite)a.setQueryData(c,p);n?.(o);}})}function sC(e,t,r,n){return useMutation({mutationKey:["posts","schedules","add",e],mutationFn:async({permlink:o,title:i,body:s,meta:a,options:c,schedule:p,reblog:l})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addSchedule");return Oi(t,o,i,s,a,c,p,l)},onSuccess:()=>{r?.(),w().invalidateQueries({queryKey:u.posts.schedules(e)});},onError:n})}function lC(e,t,r,n){return useMutation({mutationKey:["posts","schedules","delete",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteSchedule");return Si(t,o)},onSuccess:o=>{r?.();let i=w();o?i.setQueryData(u.posts.schedules(e),o):i.invalidateQueries({queryKey:u.posts.schedules(e)});},onError:n})}function yC(e,t,r,n){return useMutation({mutationKey:["posts","schedules","move",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for moveSchedule");return Ci(t,o)},onSuccess:o=>{r?.();let i=w();o?i.setQueryData(u.posts.schedules(e),o):i.invalidateQueries({queryKey:u.posts.schedules(e)}),i.invalidateQueries({queryKey:u.posts.drafts(e)});},onError:n})}function vC(e,t,r,n){return useMutation({mutationKey:["posts","images","add",e],mutationFn:async({url:o,code:i})=>{let s=i??t;if(!e||!s)throw new Error("[SDK][Posts] \u2013 missing auth for addImage");return wi(s,o)},onSuccess:()=>{r?.(),w().invalidateQueries({queryKey:u.posts.images(e)});},onError:n})}function SC(e,t,r,n){return useMutation({mutationKey:["posts","images","delete",e],mutationFn:async({imageId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteImage");return vi(t,o)},onSuccess:(o,i)=>{r?.();let s=w(),{imageId:a}=i;s.setQueryData(["posts","images",e],c=>c?.filter(p=>p._id!==a)),s.setQueriesData({queryKey:["posts","images","infinite",e]},c=>c&&{...c,pages:c.pages.map(p=>({...p,data:p.data.filter(l=>l._id!==a)}))});},onError:n})}function kC(e,t){return useMutation({mutationKey:["posts","images","upload"],mutationFn:async({file:r,token:n,signal:o})=>bi(r,n,o),onSuccess:e,onError:t})}function er(e,t){return `/@${e}/${t}`}function vl(e,t,r){return (r??w()).getQueryData(u.posts.entry(er(e,t)))}function Al(e,t){(t??w()).setQueryData(u.posts.entry(er(e.author,e.permlink)),e);}function Zt(e,t,r,n){let o=n??w(),i=er(e,t),s=o.getQueryData(u.posts.entry(i));if(!s)return;let a=r(s);return o.setQueryData(u.posts.entry(i),a),s}var Ge;(a=>{function e(c,p,l,m,f){Zt(c,p,g=>({...g,active_votes:l,stats:{...g.stats||{gray:false,hide:false,flag_weight:0,total_votes:0},total_votes:l.length,flag_weight:g.stats?.flag_weight||0},total_votes:l.length,payout:m,pending_payout_value:String(m)}),f);}a.updateVotes=e;function t(c,p,l,m){Zt(c,p,f=>({...f,reblogs:l}),m);}a.updateReblogsCount=t;function r(c,p,l,m){Zt(c,p,f=>({...f,children:l}),m);}a.updateRepliesCount=r;function n(c,p,l,m){Zt(p,l,f=>({...f,children:f.children+1,replies:[c,...f.replies]}),m);}a.addReply=n;function o(c,p){c.forEach(l=>Al(l,p));}a.updateEntries=o;function i(c,p,l){(l??w()).invalidateQueries({queryKey:u.posts.entry(er(c,p))});}a.invalidateEntry=i;function s(c,p,l){return vl(c,p,l)}a.getEntry=s;})(Ge||={});function Pl(e,t,r){let n=e.some(o=>o.voter===t);return r!==0?n:!n}function xl(e,t,r){let n=Ge.getEntry(t.author,t.permlink,r);if(!n?.active_votes||Pl(n.active_votes,e,t.weight))return;let o=[...n.active_votes.filter(s=>s.voter!==e),...t.weight!==0?[{rshares:t.weight,voter:e}]:[]],i=n.payout+(t.estimated??0);Ge.updateVotes(t.author,t.permlink,o,i,r);}function NC(e,t,r){return v(["posts","vote"],e,({author:n,permlink:o,weight:i})=>[Qr(e,n,o,i)],async(n,o)=>{xl(e,o);let i=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&i&&t.adapter.recordActivity(120,i,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let s=()=>{t.adapter.invalidateQueries([u.posts.entry(`/@${o.author}/${o.permlink}`),u.accounts.full(e)]);};(r??"async")==="async"?setTimeout(s,4e3):s();}},t,"posting",{broadcastMode:r??"async"})}function HC(e,t,r){return v(["posts","reblog"],e,({author:n,permlink:o,deleteReblog:i})=>[Hr(e,n,o,i??false)],async(n,o)=>{let i=Ge.getEntry(o.author,o.permlink);if(i){let p=Math.max(0,(i.reblogs??0)+(o.deleteReblog?-1:1));Ge.updateReblogsCount(o.author,o.permlink,p);}let s=n?.id??n?.tx_id;t?.adapter?.recordActivity&&s&&t.adapter.recordActivity(130,s,n?.block_num).catch(()=>{});let a=()=>{w().invalidateQueries({queryKey:u.posts.accountPostsBlogPrefix(e)}),t?.adapter?.invalidateQueries&&t.adapter.invalidateQueries([u.posts.entry(`/@${o.author}/${o.permlink}`),u.posts.rebloggedBy(o.author,o.permlink)]);};(r??"async")==="async"?setTimeout(a,4e3):a();},t,"posting",{broadcastMode:r??"async"})}function Ol(e){return e.isUpdate?null:e.parentAuthor?110:100}function $C(e,t,r){return v(["posts","comment"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((f,g)=>f.account.localeCompare(g.account));l.push([0,{beneficiaries:m.map(f=>({account:f.account,weight:f.weight}))}]);}o.push(je(n.author,n.permlink,i,s,a,c,l));}return o},async(n,o)=>{let i=!o.parentAuthor,s=Ol(o),a=n?.id??n?.tx_id;if(s!==null&&t?.adapter?.recordActivity&&a&&t.adapter.recordActivity(s,a,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let c=[u.accounts.full(e),u.resourceCredits.account(e)];if(!i){c.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let p=o.rootAuthor||o.parentAuthor,l=o.rootPermlink||o.parentPermlink;c.push({predicate:m=>{let f=m.queryKey;return Array.isArray(f)&&f[0]==="posts"&&f[1]==="discussions"&&f[2]===p&&f[3]===l}});}await t.adapter.invalidateQueries(c);}},t,"posting",{broadcastMode:r})}function zC(e,t,r,n){let o=n??w(),i=o.getQueriesData({predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="discussions"&&a[2]===t&&a[3]===r}});for(let[s,a]of i)a&&o.setQueryData(s,[e,...a]);}function Ei(e,t,r,n,o){let i=o??w(),s=new Map,a=i.getQueriesData({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===r&&p[3]===n}});for(let[c,p]of a)p&&(s.set(c,p),i.setQueryData(c,p.filter(l=>l.author!==e||l.permlink!==t)));return s}function Ri(e,t){let r=t??w();for(let[n,o]of e)r.setQueryData(n,o);}function JC(e,t,r,n){let o=n??w(),i=`/@${e}/${t}`,s=o.getQueryData(u.posts.entry(i));return s&&o.setQueryData(u.posts.entry(i),{...s,...r}),s}function YC(e,t,r,n){let o=n??w(),i=`/@${e}/${t}`;o.setQueryData(u.posts.entry(i),r);}function rE(e,t,r){return v(["posts","deleteComment"],e,({author:n,permlink:o})=>[Ur(n,o)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.accounts.full(e)];if(o.parentAuthor&&o.parentPermlink){i.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}});}await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r,onMutate:async n=>{let o=n.rootAuthor||n.parentAuthor,i=n.rootPermlink||n.parentPermlink;return o&&i?{snapshots:Ei(n.author,n.permlink,o,i)}:{}},onError:(n,o,i)=>{let{snapshots:s}=i??{};s&&Ri(s);}})}function sE(e,t,r){return v(["posts","cross-post"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,"",n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true}=n.options;o.push(je(n.author,n.permlink,i,s,a,c,[]));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.accounts.full(e),{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.parentPermlink}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"async"})}function pE(e,t,r){return v(["posts","update-reply"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((f,g)=>f.account.localeCompare(g.account));l.push([0,{beneficiaries:m.map(f=>({account:f.account,weight:f.weight}))}]);}o.push(je(n.author,n.permlink,i,s,a,c,l));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.resourceCredits.account(e)];i.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}}),await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r})}function fE(e,t,r){return v(["ecency","promote"],e,({author:n,permlink:o,duration:i})=>[mn(e,n,o,i)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...u.posts._promotedPrefix],[...u.points._prefix(e)],u.posts.entry(`/@${o.author}/${o.permlink}`)]);},t,"active",{broadcastMode:r})}var Sl=[3e3,3e3,3e3],Cl=e=>new Promise(t=>setTimeout(t,e));async function El(e,t){return y("condenser_api.get_content",[e,t])}async function Rl(e,t,r=0,n){let o=n?.delays??Sl,i;try{i=await El(e,t);}catch{i=void 0;}if(i||r>=o.length)return;let s=o[r];return s>0&&await Cl(s),Rl(e,t,r+1,n)}var ot={};kt(ot,{useRecordActivity:()=>_n});function Tl(){return typeof window<"u"&&window.location?{url:window.location.href,domain:window.location.host}:{url:"",domain:""}}function _n(e,t,r){return useMutation({mutationKey:["analytics",t],mutationFn:async()=>{if(!t)throw new Error("[SDK][Analytics] \u2013 no activity type provided");let n=h(),o=Tl(),i=r?.url??o.url,s=r?.domain??o.domain;try{await n(d.plausibleHost+"/api/event",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:t,url:i,domain:s,props:{username:e}})});}catch{}}})}function xE(e){return queryOptions({queryKey:["analytics","discover-leaderboard",e],queryFn:async({signal:t})=>{let r=await fetch(d.privateApiHost+`/private-api/leaderboard/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch leaderboard: ${r.status}`);return r.json()}})}function RE(e){return queryOptions({queryKey:["analytics","discover-curation",e],queryFn:async({signal:t})=>{let r=await fetch(d.privateApiHost+`/private-api/curation/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch curation data: ${r.status}`);let n=await r.json(),o=n.map(s=>s.account),i=await y("condenser_api.get_accounts",[o]);for(let s=0;sa.efficiency-s.efficiency),n}})}function qE(e,t=[],r=["visitors","pageviews","visit_duration"],n){let o=[...t].sort(),i=[...r].sort();return queryOptions({queryKey:["analytics","page-stats",e,o,i,n],queryFn:async({signal:s})=>{let a=await fetch(d.privateApiHost+"/api/stats",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,date_range:n}),signal:s});if(!a.ok)throw new Error(`Failed to fetch page stats: ${a.status}`);return a.json()},enabled:!!e,staleTime:0})}var tr="threespeakfund",BE=1100;function Dl(e){return /https?:\/\/([a-z0-9-]+\.)*3speak\.tv\/embed[?/]/i.test(e)}function QE(e,t){if(!Dl(t))return e;let r=e.find(n=>n.account===tr);return r&&r.weight===1100?e:r?e.map(n=>n.account===tr?{...n,weight:1100}:n):[...e,{account:tr,weight:1100}]}function UE(e){return e===tr}var vn={};kt(vn,{getAccountTokenQueryOptions:()=>bn,getAccountVideosQueryOptions:()=>Ul});var wn={};kt(wn,{getDecodeMemoQueryOptions:()=>Ml});function Ml(e,t,r){return queryOptions({queryKey:["integrations","hivesigner","decode-memo",e],queryFn:async()=>{if(r)return new Co.Client({accessToken:r}).decode(t)}})}var ki={queries:wn};function bn(e,t){return queryOptions({queryKey:["integrations","3speak","authenticate",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let n=await h()(`https://studio.3speak.tv/mobile/login?username=${e}&hivesigner=true`,{headers:{"Content-Type":"application/json"}}),o=ki.queries.getDecodeMemoQueryOptions(e,(await n.json()).memo,t);await w().prefetchQuery(o);let{memoDecoded:i}=w().getQueryData(o.queryKey);return i.replace("#","")}})}function Ul(e,t){return queryOptions({queryKey:["integrations","3speak","videos",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let r=bn(e,t);await w().prefetchQuery(r);let n=w().getQueryData(r.queryKey);if(!n)throw new Error("[SDK][Integrations][3Speak] \u2013 missing account token");return await(await h()("https://studio.3speak.tv/mobile/api/my-videos",{headers:{"Content-Type":"application/json",Authorization:`Bearer ${n}`}})).json()}})}var oR={queries:vn};function pR(e){return queryOptions({queryKey:["integrations","hiveposh","links",e],retry:false,queryFn:async()=>{try{let r=await h()(`https://hiveposh.com/api/v0/linked-accounts/${e}`,{headers:{"Content-Type":"application/json"}});if(r.status===400&&(await r.json().catch(()=>({})))?.message==="User Not Connected"||!r.ok)return null;let n=await r.json();return {twitter:{username:n.twitter_username,profile:n.twitter_profile},reddit:{username:n.reddit_username,profile:n.reddit_profile}}}catch{return null}}})}function fR({url:e,dimensions:t=[],metrics:r=["visitors","pageviews","visit_duration"],filterBy:n="event:page",dateRange:o,enabled:i=true}){return queryOptions({queryKey:["integrations","plausible",e,t,r,n,o],queryFn:async()=>{let a=await h()(`${d.privateApiHost}/api/stats`,{method:"POST",body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,filterBy:n,...o?{date_range:o}:{}}),headers:{"Content-Type":"application/json"}});if(!a.ok)throw new Error(`Failed to fetch Plausible stats: ${a.status}`);return await a.json()},enabled:!!e&&i,retry:1})}function _R(){return queryOptions({queryKey:["resource-credits","stats"],queryFn:async()=>(await y("rc_api.get_rc_stats",{})).rc_stats})}function AR(e){return queryOptions({queryKey:["resource-credits","account",e],queryFn:async()=>(await y("rc_api.find_rc_accounts",{accounts:[e]})).rc_accounts,enabled:!!e})}function CR(){return queryOptions({queryKey:u.resourceCredits.resourceParams(),staleTime:1440*60*1e3,gcTime:1/0,queryFn:async()=>await y("rc_api.get_resource_params",{})})}var rr=["resource_history_bytes","resource_new_accounts","resource_market_bytes","resource_state_bytes","resource_execution_time"];var Wl=11,Gl=65,zl=16,it=e=>BigInt(typeof e=="string"?e:Math.trunc(e));function An(e,t,r,n){if(r<=0||n<=0)return 0;let o=it(e.coeff_a),i=it(e.coeff_b),s=it(e.shift),a=it(n)*o>>s;a+=1n,a*=it(r);let c=i+(t>0?it(t):0n);return c===0n?0:Number(a/c+1n)}function Pn({transactionBytes:e,permlinkLength:t,signatures:r=1,beneficiaries:n=0,hasCommentOptions:o=false},i){let s=i.resource_state_bytes,a=i.resource_execution_time;return {resource_history_bytes:e,resource_new_accounts:0,resource_market_bytes:0,resource_state_bytes:s.comment_base_size+s.comment_permlink_char_size*t+s.transaction_base_size+s.comment_beneficiaries_member_size*n,resource_execution_time:a.comment_time+a.transaction_time+a.verify_authority_time*r+(o?a.comment_options_time:0)}}var we=e=>{let t=yt(e);return he(t)+t},Jl=e=>1+we(e.parent_author)+we(e.parent_permlink)+we(e.author)+we(e.permlink)+we(e.title)+we(e.body)+we(e.json_metadata),Yl=(e,t)=>{let r=t.beneficiaries??[],n=1+we(e.author)+we(e.permlink)+zl+2+2;return n+=he(r.length>0?1:0),r.length>0&&(n+=1+he(r.length),r.forEach(o=>{n+=we(o.account)+2;})),n};function xn({op:e,options:t,signatures:r=1}){let n=[Jl(e)];return t&&n.push(Yl(e,t)),Wl+he(n.length)+n.reduce((o,i)=>o+i,0)+he(r)+Gl*r}var Xl={ready:false,cost:0,transactionBytes:0,breakdown:[]};function FR({op:e,options:t,rcParams:r,rcStats:n,signatures:o=1}){if(!r?.resource_params||!r.size_info||!n?.pool||!n.share)return Xl;let i=xn({op:e,options:t,signatures:o}),s=Pn({transactionBytes:i,permlinkLength:yt(e.permlink),signatures:o,beneficiaries:t?.beneficiaries?.length??0,hasCommentOptions:!!t},r.size_info),a=Number(n.regen),c=0,p=[];return rr.forEach((l,m)=>{let f=r.resource_params[l],g=Number(n.pool[m]??0),_=Number(n.share[m]??0);if(!f||_<=0)return;let A=s[l]*Number(f.resource_dynamics_params.resource_unit??1),x=Number(BigInt(a)*BigInt(_)/10000n),C=An(f.price_curve_params,g,A,x);c+=C,p.push({resource:l,usage:A,cost:C});}),{ready:true,cost:c,transactionBytes:i,breakdown:p}}function On(e,t,r){let n=Number(r.regen),o=0,i=[];return rr.forEach((s,a)=>{let c=t.resource_params[s],p=Number(r.pool[a]??0),l=Number(r.share[a]??0);if(!c||l<=0)return;let m=e[s]*Number(c.resource_dynamics_params.resource_unit??1),f=Number(BigInt(n)*BigInt(l)/10000n),g=An(c.price_curve_params,p,m,f);o+=g,i.push({resource:s,usage:m,cost:g});}),{cost:o,breakdown:i}}var Zl=11,ed=65,Sn=e=>{let t=yt(e);return he(t)+t},td=()=>({resource_history_bytes:0,resource_new_accounts:0,resource_market_bytes:0,resource_state_bytes:0,resource_execution_time:0});function Ti(e,t=1){let r=1+Sn(e.voter)+Sn(e.author)+Sn(e.permlink)+2;return Zl+he(1)+r+he(t)+ed*t}function Fi({transactionBytes:e,signatures:t=1},r){let n=r.resource_state_bytes,o=r.resource_execution_time;return {...td(),resource_history_bytes:e,resource_state_bytes:n.vote_size+n.transaction_base_size,resource_execution_time:o.vote_time+o.transaction_time+o.verify_authority_time*t}}var qi={ready:false,currentMana:0,maxMana:0,avgCost:0,cost:0,transactionBytes:0,estimatedCost:0,willLikelyFail:false,deficit:0,remaining:0};function VR({rcAccount:e,rcStats:t,rcParams:r,operation:n,payload:o,fallback:i="minimal",buffer:s=1.2}){if(!e||!t?.ops)return qi;let{current_mana:a,max_mana:c}=jt(e),p=rd(n,o,i,r,t);if(!p)return {...qi,currentMana:a,maxMana:c};let{cost:l,transactionBytes:m}=p,f=Number.isFinite(s)&&s>0?s:1.2,g=l*f,_=a0?{cost:r,transactionBytes:0}:null}var od={author:"aaaaaaaaaa",permlink:"aaaaaaaaaaaaaaaaaaaa",parent_author:"",parent_permlink:"hive-100000",title:"",body:"",json_metadata:"{}"},id={voter:"aaaaaaaaaa",author:"aaaaaaaaaa",permlink:"aaaaaaaaaaaaaaaaaaaa"};function WR(e,t,r){return queryOptions({queryKey:["games","status-check",r,e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/get-game",{method:"POST",body:JSON.stringify({game_type:r,code:t}),headers:{"Content-Type":"application/json"}})).json()}})}async function ud(e,t,r){let o=await h()(d.privateApiHost+"/private-api/post-game",{method:"POST",body:JSON.stringify({game_type:t,code:e,key:r}),headers:{"Content-Type":"application/json"}}),i=(o.headers.get("content-type")??"").split(";")[0].trim().toLowerCase(),s=await o.text();if(!o.ok){let a=s&&i.includes("json")?`: ${s.slice(0,200)}`:"";throw new Error(`[SDK][Games] \u2013 failed with status ${o.status}${a}`)}if(!i.includes("json"))throw new Error(`[SDK][Games] \u2013 expected JSON but received "${i||"empty"}" response (status ${o.status})`);try{return JSON.parse(s)}catch{throw new Error(`[SDK][Games] \u2013 malformed JSON response (status ${o.status})`)}}function XR(e,t,r,n){let{mutateAsync:o}=_n(e,"spin-rolled");return useMutation({mutationKey:["games","post",r,e],mutationFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return ud(t,r,n)},onSuccess(){o();}})}function rk(e){let t=e?.replace("@","");return queryOptions({queryKey:u.quests.status(t),enabled:!!t,queryFn:async()=>{if(!t)throw new Error("[SDK][Quests] \u2013 username wasn't provided");let n=await h()(d.privateApiHost+"/private-api/quests",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:t})});if(!n.ok)throw new Error(`Failed to fetch quests: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:true})}var pd=[{id:"checkin",tier:"daily",goal:1,i18nKey:"checkin",icon:"check-circle"},{id:"post",tier:"daily",goal:1,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"daily",goal:3,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"daily",goal:10,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"daily",goal:1,i18nKey:"reblog",icon:"repeat"},{id:"spin",tier:"daily",goal:1,i18nKey:"spin",icon:"gift"},{id:"post",tier:"weekly",goal:5,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"weekly",goal:15,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"weekly",goal:50,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"weekly",goal:5,i18nKey:"reblog",icon:"repeat"},{id:"post",tier:"monthly",goal:20,i18nKey:"post",icon:"pencil"}];function ok(e,t){return pd.find(r=>r.tier===e&&r.id===t)}var ld=25;function dd(e){return Array.from((e??"").replace(/https?:\/\/\S+/g,"")).length}function ik(e){return dd(e)>ld}var sk=300,ak=2;function gd(){return typeof crypto<"u"&&typeof crypto.randomUUID=="function"?crypto.randomUUID():`${Date.now()}-${Math.random().toString(36).slice(2)}`}async function yd(e){let r=await h()(d.privateApiHost+"/private-api/streak-freeze/buy",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e,idempotency_key:gd()})});if(!r.ok){let n;try{n=await r.json();}catch{}let o=n?.message??`Failed to buy streak freeze: ${r.status}`,i=new Error(o);throw i.status=r.status,i.data=n,i}return await r.json()}function lk(e,t){let r=useQueryClient(),n=e?.replace("@","");return useMutation({mutationKey:["streak-freeze","buy",n],mutationFn:async()=>{if(!n||!t)throw new Error("[SDK][StreakFreeze] \u2013 missing auth");return yd(t)},onSuccess(){n&&r.invalidateQueries({queryKey:u.points._prefix(n)});},onSettled(){n&&r.invalidateQueries({queryKey:u.quests.status(n)});}})}function gk(e,t,r){return v(["communities","subscribe"],e,({community:n})=>[Xr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.subscriptions(e),[...u.communities.singlePrefix(o.community)],u.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"async"})}function wk(e,t,r){return v(["communities","unsubscribe"],e,({community:n})=>[Zr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.subscriptions(e),[...u.communities.singlePrefix(o.community)],u.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"sync"})}function Pk(e,t,r){return v(["communities","mutePost"],e,({community:n,author:o,permlink:i,notes:s,mute:a})=>[nn(e,n,o,i,s,a)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.posts.entry(`/@${o.author}/${o.permlink}`),["community","single",o.community],{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.community}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"sync"})}function Ck(e,t,r,n){return v(["communities","set-role",e],t,({account:o,role:i})=>[en(t,e,o,i)],async(o,i)=>{w().setQueriesData({queryKey:u.communities.singlePrefix(e)},a=>{if(!a)return a;let c=[...a.team??[]],p=c.findIndex(([l])=>l===i.account);return p>=0?c[p]=[c[p][0],i.role,c[p][2]??""]:c.push([i.account,i.role,""]),{...a,team:c}}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...u.communities.singlePrefix(e)],u.communities.context(i.account,e)]);},r,"posting",{broadcastMode:n??"async"})}function Tk(e,t,r,n){return v(["communities","update",e],t,o=>[tn(t,e,o)],async(o,i)=>{w().setQueriesData({queryKey:u.communities.singlePrefix(e)},a=>a&&{...a,...i}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...u.communities.singlePrefix(e)]]);},r,"posting",{broadcastMode:n??"async"})}function Dk(e,t,r){return v(["communities","registerRewards"],e,({name:n})=>[yn(n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...u.communities.singlePrefix(o.name)],[...u.points._prefix(e)]]);},t,"active",{broadcastMode:r})}function Bk(e,t,r){return v(["communities","pin-post"],e,({community:n,account:o,permlink:i,pin:s})=>[rn(e,n,o,i,s)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.posts.entry(`/@${o.account}/${o.permlink}`),[...u.communities.singlePrefix(o.community)]]);},t,"posting",{broadcastMode:r??"async"})}function jk(e,t,r=100,n=void 0,o=true){return queryOptions({queryKey:u.communities.list(e,t??"",r),enabled:o,queryFn:async()=>{let i=await y("bridge.list_communities",{last:"",limit:r,sort:e==="hot"?"rank":e,query:t||null,observer:n});return i?e==="hot"?i.sort(()=>Math.random()-.5):i:[]}})}function zk(e,t){return queryOptions({queryKey:u.communities.context(e,t),enabled:!!e&&!!t,queryFn:async()=>{let r=await y("bridge.get_community_context",{account:e,name:t});return {role:r?.role??"guest",subscribed:r?.subscribed??false}}})}function eT(e,t="",r=true){return queryOptions({queryKey:u.communities.single(e,t),enabled:r&&!!e,queryFn:async()=>Go(e??"",t)})}var Ii=100;async function Di(e,t){return await y("bridge.list_subscribers",{community:e,limit:Ii,...t?{last:t}:{}})??[]}function sT(e){return queryOptions({queryKey:u.communities.subscribers(e),queryFn:async()=>Di(e,null),staleTime:6e4})}function aT(e){return infiniteQueryOptions({queryKey:u.communities.subscribersInfinite(e),initialPageParam:null,queryFn:async({pageParam:t})=>Di(e,t),getNextPageParam:t=>t?.length>=Ii?t[t.length-1]?.[0]??null:null,staleTime:6e4})}function mT(e,t){return infiniteQueryOptions({queryKey:u.communities.accountNotifications(e,t),initialPageParam:null,queryFn:async({pageParam:r})=>await y("bridge.account_notifications",{account:e,limit:t,last_id:r??void 0})??[],getNextPageParam:r=>r?.length>=t?r[r.length-1].id:null})}function hT(){return queryOptions({queryKey:u.communities.rewarded(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/rewarded-communities",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch rewarded communities: ${e.status}`);return e.json()}})}var xd=(s=>(s.OWNER="owner",s.ADMIN="admin",s.MOD="mod",s.MEMBER="member",s.GUEST="guest",s.MUTED="muted",s))(xd||{}),wT={owner:["admin","mod","member","guest","muted"],admin:["mod","member","guest","muted"],mod:["member","guest","muted"]};function vT(e,t){return e.startsWith("hive-3")||t===3?"Council":e.startsWith("hive-2")||t===2?"Journal":"Topic"}function AT({communityType:e,userRole:t,subscribed:r}){let n=t==="muted"?false:e==="Topic"?true:["owner","admin","mod","member"].includes(t),o=(()=>{if(t==="muted")return false;switch(e){case "Topic":return true;case "Journal":return t!=="guest"||r;case "Council":return n}})(),i=["owner","admin","mod"].includes(t);return {canPost:n,canComment:o,isModerator:i}}function ST(e,t){return queryOptions({queryKey:u.notifications.unreadCount(e),queryFn:async()=>t?(await(await fetch(`${d.privateApiHost}/private-api/notifications/unread`,{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json()).count:0,enabled:!!e&&!!t,initialData:0,refetchInterval:6e4})}function kT(e,t,r=void 0){return infiniteQueryOptions({queryKey:u.notifications.list(e,r),queryFn:async({pageParam:n})=>{if(!t)return [];let o={code:t,filter:r,since:n,user:void 0},i=await fetch(d.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});if(!i.ok)return [];try{return await i.json()}catch{return []}},enabled:!!e&&!!t,initialPageParam:"",getNextPageParam:n=>n?.[n.length-1]?.id??"",refetchOnMount:true})}var Cd=(_=>(_.VOTES="rvotes",_.MENTIONS="mentions",_.FAVORITES="nfavorites",_.BOOKMARKS="nbookmarks",_.FOLLOWS="follows",_.REPLIES="replies",_.REBLOGS="reblogs",_.TRANSFERS="transfers",_.DELEGATIONS="delegations",_.PAYOUTS="payouts",_.SCHEDULED_PUBLISHED="scheduled_published",_.ACCOUNT_UPDATES="account_updates",_.WEEKLY_EARNINGS="weekly_earnings",_.TAGS="tags",_))(Cd||{});var Ed=(A=>(A[A.VOTE=1]="VOTE",A[A.MENTION=2]="MENTION",A[A.FOLLOW=3]="FOLLOW",A[A.COMMENT=4]="COMMENT",A[A.RE_BLOG=5]="RE_BLOG",A[A.TRANSFERS=6]="TRANSFERS",A[A.DELEGATIONS=10]="DELEGATIONS",A[A.FAVORITES=13]="FAVORITES",A[A.BOOKMARKS=15]="BOOKMARKS",A[A.PAYOUTS=19]="PAYOUTS",A[A.ACCOUNT_UPDATE=20]="ACCOUNT_UPDATE",A[A.WEEKLY_EARNINGS=21]="WEEKLY_EARNINGS",A[A.SCHEDULED_PUBLISHED=22]="SCHEDULED_PUBLISHED",A[A.TAGS=23]="TAGS",A.ALLOW_NOTIFY="ALLOW_NOTIFY",A))(Ed||{}),Ki=[1,2,3,4,5,6,10,13,15,19,20,21,22,23],Rd=(n=>(n.ALL="All",n.UNREAD="Unread",n.READ="Read",n))(Rd||{});function NT(e,t,r){return queryOptions({queryKey:u.notifications.settings(e),queryFn:async()=>{let n=e+"-web";if(!t)throw new Error("Missing access token");let o=await fetch(d.privateApiHost+"/private-api/detail-device",{body:JSON.stringify({code:t,username:e,token:n}),method:"POST",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch notification settings: ${o.status}`);return o.json()},enabled:!!e&&!!t,refetchOnMount:false,initialData:()=>({status:0,system:"web",allows_notify:0,notify_types:r?[]:[...Ki]})})}function UT(){return queryOptions({queryKey:u.notifications.announcements(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/announcements",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch announcements: ${e.status}`);return await e.json()||[]},staleTime:36e5})}function LT(e){return queryOptions({queryKey:u.notifications.spotlights(),queryFn:async()=>{let t=await fetch(d.privateApiHost+"/private-api/spotlights",{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch spotlights: ${t.status}`);return await t.json()||[]},staleTime:36e5})}function Id(e,t){return {...e,read:!t||t===e.id?1:e.read}}function Ni(e){return typeof e=="object"&&e!==null&&"pages"in e&&"pageParams"in e&&Array.isArray(e.pages)}function XT(e,t,r,n){let o=w();return useMutation({mutationKey:["notifications","mark-read",e],mutationFn:async({id:i})=>{if(!e||!t){process.env.NODE_ENV!=="production"&&console.warn("[SDK][Notifications] \u2013 missing auth for markNotifications");return}return _i(t,i)},onMutate:async({id:i})=>{if(!e||!t)return {previousData:[]};await o.cancelQueries({queryKey:u.notifications._prefix});let s=[],a=o.getQueriesData({queryKey:u.notifications._prefix,predicate:l=>{let m=l.state.data;return Ni(m)}});a.forEach(([l,m])=>{if(m&&Ni(m)){s.push([l,m]);let f={...m,pages:m.pages.map(g=>g.map(_=>Id(_,i)))};o.setQueryData(l,f);}});let c=u.notifications.unreadCount(e),p=o.getQueryData(c);return typeof p=="number"&&p>0&&(s.push([c,p]),i?a.some(([,m])=>m?.pages.some(f=>f.some(g=>g.id===i&&g.read===0)))&&o.setQueryData(c,p-1):o.setQueryData(c,0)),{previousData:s}},onSuccess:i=>{let s=typeof i=="object"&&i!==null?i.unread:void 0;typeof s=="number"&&o.setQueryData(u.notifications.unreadCount(e),s),r?.(s);},onError:(i,s,a)=>{a?.previousData&&a.previousData.forEach(([c,p])=>{o.setQueryData(c,p);}),n?.(i);},onSettled:()=>{o.invalidateQueries({queryKey:u.notifications._prefix});}})}function rF(e,t,r){return v(["notifications","set-last-read"],e,({date:n})=>Wr(e,n),async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.notifications.unreadCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function sF(e){return queryOptions({queryKey:["proposals","proposal",e],queryFn:async()=>{let r=(await y("condenser_api.find_proposals",[[e]]))[0];return new Date(r.start_date)=new Date?r.status="active":new Date(r.end_date){let t=(await y("database_api.list_proposals",{start:[-1],limit:500,order:"by_total_votes",order_direction:"descending",status:"all"})).proposals,r=t.filter(o=>o.status==="expired");return [...t.filter(o=>o.status!=="expired"),...r]}})}function yF(e,t,r){return infiniteQueryOptions({queryKey:["proposals","votes",e,t,r],initialPageParam:t,refetchOnMount:true,staleTime:0,queryFn:async({pageParam:n})=>{let s=(await y("condenser_api.list_proposal_votes",[[e,n??t],r,"by_proposal_voter"])).filter(l=>l.proposal?.proposal_id===e).map(l=>({id:l.id,voter:l.voter})),a=await y("condenser_api.get_accounts",[s.map(l=>l.voter)]),c=Gt(a);return s.map(l=>({...l,voterAccount:c.find(m=>l.voter===m.name)}))},getNextPageParam:n=>n?.[n.length-1]?.voter??void 0})}function bF(e){return queryOptions({queryKey:["proposals","votes","by-user",e],enabled:!!e&&e!=="",staleTime:60*1e3,queryFn:async()=>!e||e===""?[]:((await y("database_api.list_proposal_votes",{start:[e],limit:1e3,order:"by_voter_proposal",order_direction:"ascending",status:"votable"})).proposal_votes||[]).filter(n=>n.voter===e)})}function xF(e,t,r){return v(["proposals","vote"],e,({proposalIds:n,approve:o})=>[Yr(e,n,o)],async n=>{try{let o=n?.id??n?.tx_id;t?.adapter?.recordActivity&&o&&t.adapter.recordActivity(150,o,n?.block_num).catch(i=>{console.debug("[SDK][Proposals][useProposalVote] recordActivity failed",{activityType:150,blockNum:n?.block_num,transactionId:o,error:i});}),t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.proposals.list(),u.proposals.votesByUser(e)]);}catch(o){console.warn("[useProposalVote] Post-broadcast side-effect failed:",o);}},t,"active",{broadcastMode:r})}function EF(e,t,r){return v(["proposals","create"],e,n=>[Jr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.proposals.list()]);},t,"active",{broadcastMode:r})}function FF(e,t=50){return infiniteQueryOptions({queryKey:["wallet","vesting-delegations",e,t],initialPageParam:"",queryFn:async({pageParam:r})=>{let n=r?t+1:t,o=await y("condenser_api.get_vesting_delegations",[e,r||"",n]);return r&&o.length>0&&o[0]?.delegatee===r?o.slice(1,t+1):o},getNextPageParam:r=>!r||r.lengthte("balance","/accounts/{account-name}/delegations",{"account-name":e},void 0,void 0,t)})}function BF(e){return queryOptions({queryKey:["wallet","vesting-delegation-expirations",e],queryFn:async()=>e?(await y("database_api.find_vesting_delegation_expirations",{account:e})).delegations:[],enabled:!!e})}function VF(e){return queryOptions({queryKey:["wallet","conversion-requests",e],queryFn:()=>y("condenser_api.get_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function WF(e){return queryOptions({queryKey:["wallet","collateralized-conversion-requests",e],queryFn:()=>y("condenser_api.get_collateralized_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function YF(e){return queryOptions({queryKey:["wallet","savings-withdraw",e],queryFn:()=>y("condenser_api.get_savings_withdraw_from",[e]),select:t=>t.sort((r,n)=>r.request_id-n.request_id)})}function tq(e){return queryOptions({queryKey:["wallet","withdraw-routes",e],queryFn:()=>y("condenser_api.get_withdraw_routes",[e,"outgoing"])})}function iq(e){return queryOptions({queryKey:["wallet","open-orders",e],queryFn:()=>y("condenser_api.get_open_orders",[e]),select:t=>t.sort((r,n)=>r.orderid-n.orderid),enabled:!!e})}function pq(e,t=100){return infiniteQueryOptions({queryKey:["wallet","outgoing-rc-delegations",e,t],initialPageParam:null,queryFn:async({pageParam:r})=>{let o=(await y("rc_api.list_rc_direct_delegations",{start:[e,r??""],limit:t}).then(i=>i)).rc_direct_delegations||[];return r&&(o=o.filter(i=>i.to!==r)),o},getNextPageParam:r=>r.length===t?r[r.length-1].to:null})}function fq(e){return queryOptions({queryKey:["wallet","incoming-rc",e],enabled:!!e,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] - Missing username for incoming RC");let r=await h()(`${d.privateApiHost}/private-api/received-rc/${e}`);if(!r.ok)throw new Error(`Failed to fetch incoming RC: ${r.status}`);return r.json()}})}function zd(e){let r=(String(e).replace(/\D/g,"")||"0").padStart(7,"0");return `${r.slice(0,-6).replace(/^0+(?=\d)/,"")}.${r.slice(-6)} VESTS`}function or(e,t){return (t?.incoming_delegations??[]).map(r=>({delegator:r.delegator,raw:BigInt(String(r.amount).replace(/\D/g,"")||"0")})).sort((r,n)=>r.raw===n.raw?0:r.raw>n.raw?-1:1).map(({delegator:r,raw:n})=>({delegatee:e,delegator:r,vesting_shares:zd(n)}))}function vq(e){return queryOptions({queryKey:u.wallet.receivedVestingShares(e),enabled:!!e,queryFn:async()=>or(e,await w().fetchQuery({...nr(e),staleTime:6e4}))})}function Oq(e){return queryOptions({queryKey:["wallet","recurrent-transfers",e],queryFn:()=>y("condenser_api.find_recurrent_transfers",[e]),enabled:!!e})}function me(e){if(typeof e=="string"){let t=e.trim();return t.length>0?t:void 0}}function ue(e){if(typeof e=="number"&&Number.isFinite(e))return e;if(typeof e=="string"){let t=e.trim();if(!t)return;let r=Number.parseFloat(t);if(Number.isFinite(r))return r;let o=t.replace(/,/g,"").match(/[-+]?\d+(?:\.\d+)?/);if(o){let i=Number.parseFloat(o[0]);if(Number.isFinite(i))return i}}}function Zd(e){if(!e||typeof e!="object")return;let t=e;return {name:me(t.name)??"",symbol:me(t.symbol)??"",layer:me(t.layer)??"hive",balance:ue(t.balance)??0,fiatRate:ue(t.fiatRate)??0,currency:me(t.currency)??"usd",precision:ue(t.precision)??3,address:me(t.address),error:me(t.error),pendingRewards:ue(t.pendingRewards),pendingRewardsFiat:ue(t.pendingRewardsFiat),liquid:ue(t.liquid),liquidFiat:ue(t.liquidFiat),savings:ue(t.savings),savingsFiat:ue(t.savingsFiat),staked:ue(t.staked),stakedFiat:ue(t.stakedFiat),iconUrl:me(t.iconUrl),actions:t.actions??[],extraData:t.extraData??[],apr:ue(t.apr)}}function em(e){if(!e||typeof e!="object")return [];let t=[e],r=e;r.data&&typeof r.data=="object"&&t.push(r.data),r.result&&typeof r.result=="object"&&t.push(r.result),r.portfolio&&typeof r.portfolio=="object"&&t.push(r.portfolio);for(let n of t){if(Array.isArray(n))return n;if(n&&typeof n=="object")for(let o of ["wallets","tokens","assets","items","portfolio","balances"]){let i=n[o];if(Array.isArray(i))return i}}return []}function tm(e){if(!e||typeof e!="object")return;let t=e;return me(t.username)??me(t.name)??me(t.account)}function Mi(e,t="usd",r=true){return queryOptions({queryKey:["wallet","portfolio","v2",e,r?"only-enabled":"all",t],enabled:!!e,staleTime:6e4,refetchInterval:12e4,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] \u2013 username is required");let n=`${B.getValidatedBaseUrl()}/wallet-api/portfolio-v2`,o=await fetch(n,{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({username:e,onlyEnabled:r,currency:t})});if(!o.ok)throw new Error(`[SDK][Wallet] \u2013 Portfolio request failed (${o.status})`);let i=await o.json(),s=em(i).map(a=>Zd(a)).filter(a=>!!a).filter(a=>a.layer!=="spk");if(!s.length)throw new Error("[SDK][Wallet] \u2013 Portfolio payload contained no tokens");return {username:tm(i)??e,currency:me(i?.fiatCurrency??i?.currency)?.toUpperCase(),wallets:s}}})}function ir(e){return queryOptions({queryKey:["assets","hive","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(Oe().queryKey),r=w().getQueryData(M(e).queryKey),n=await y("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??"");if(!r)return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:0};let i=T(r.balance).amount,s=T(r.savings_balance).amount;return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:i+s,parts:[{name:"current",balance:i},{name:"savings",balance:s}]}}})}function Bi(e){return queryOptions({queryKey:["assets","hbd","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(M(e).queryKey),r=w().getQueryData(Oe().queryKey),n=1;return t?{name:"HBD",title:"Hive Dollar",price:n,accountBalance:T(t.hbd_balance).amount+T(t?.savings_hbd_balance).amount,apr:((r?.hbdInterestRate??0)/100).toFixed(3),parts:[{name:"current",balance:T(t.hbd_balance).amount},{name:"savings",balance:T(t.savings_hbd_balance).amount}]}:{name:"HBD",title:"Hive Dollar",price:n,accountBalance:0}}})}function im(e){let c=9.5-(e.headBlock-7e6)/25e4*.01;c<.95&&(c=.95);let p=e.vestingRewardPercent/1e4,l=e.virtualSupply,m=e.totalVestingFund;return (l*c*p/m).toFixed(3)}function Qi(e){return queryOptions({queryKey:["assets","hive-power","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(Oe().queryKey),r=w().getQueryData(M(e).queryKey);if(!t||!r)return {name:"HP",title:"Hive Power",price:0,accountBalance:0};let n=await y("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??""),i=Number.isFinite(o)?o:t.base/t.quote,s=T(r.vesting_shares).amount,a=T(r.delegated_vesting_shares).amount,c=T(r.received_vesting_shares).amount,p=T(r.vesting_withdraw_rate).amount,l=Math.max((Number(r.to_withdraw)-Number(r.withdrawn))/1e6,0),m=Fo(r.next_vesting_withdrawal)?0:Math.min(p,l),f=+Ze(s,t.hivePerMVests).toFixed(3),g=+Ze(a,t.hivePerMVests).toFixed(3),_=+Ze(c,t.hivePerMVests).toFixed(3),A=+Ze(l,t.hivePerMVests).toFixed(3),x=+Ze(m,t.hivePerMVests).toFixed(3),C=Math.max(f-A,0),F=Math.max(f-g,0);return {name:"HP",title:"Hive Power",price:i,accountBalance:+C.toFixed(3),apr:im(t),parts:[{name:"hp_balance",balance:f},{name:"available",balance:+F.toFixed(3)},{name:"outgoing_delegations",balance:g},{name:"incoming_delegations",balance:_},...A>0?[{name:"pending_power_down",balance:+A.toFixed(3)}]:[],...x>0&&x!==A?[{name:"next_power_down",balance:+x.toFixed(3)}]:[]]}}})}var N=oe.operations,Cn={transfers:[N.transfer,N.transfer_to_savings,N.transfer_from_savings,N.cancel_transfer_from_savings,N.recurrent_transfer,N.fill_recurrent_transfer,N.escrow_transfer,N.fill_recurrent_transfer],"market-orders":[N.fill_convert_request,N.fill_order,N.fill_collateralized_convert_request,N.limit_order_create2,N.limit_order_create,N.limit_order_cancel],interests:[N.interest],"stake-operations":[N.return_vesting_delegation,N.withdraw_vesting,N.transfer_to_vesting,N.set_withdraw_vesting_route,N.update_proposal_votes,N.fill_vesting_withdraw,N.account_witness_proxy,N.delegate_vesting_shares],rewards:[N.author_reward,N.curation_reward,N.producer_reward,N.claim_reward_balance,N.comment_benefactor_reward,N.liquidity_reward,N.proposal_pay],"":[]};var Jq=Object.keys(oe.operations);var Ui=oe.operations,Zq=Ui,eI=Object.entries(Ui).reduce((e,[t,r])=>(e[r]=t,e),{});var Hi=oe.operations;function am(e){return Object.prototype.hasOwnProperty.call(Hi,e)}function xt(e){let t=Array.isArray(e)?e:[e],r=t.includes(""),n=Array.from(new Set(t.filter(a=>a!=null&&a!==""))),o=r||n.length===0?"all":n.map(a=>a.toString()).sort().join("|"),i=new Set;r||n.forEach(a=>{if(a in Cn){Cn[a].forEach(c=>i.add(c));return}am(a)&&i.add(Hi[a]);});let s=pm(Array.from(i));return {filterKey:o,filterArgs:s}}function En(e){let t=Array.isArray(e)?e:[e];return new Set(t.filter(r=>r!=null&&r!==""))}function um(e){if(!e?.length)return;let t=Number(e[0]?.num??0);return Number.isFinite(t)&&t>0?t-1:void 0}function cm(e,t){return !Number.isFinite(e)||e<0?t:Math.min(t,e+1)}function pm(e){let t=0n,r=0n;return e.forEach(n=>{n<64?t|=1n<(await y("condenser_api.get_account_history",[e,s,cm(Number(s),t),...n])).map(c=>({num:c[0],type:c[1].op[0],timestamp:c[1].timestamp,trx_id:c[1].trx_id,...c[1].op[1]})),select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(c=>c.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return T(p.hive_payout).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return T(p.amount).symbol==="HIVE";case "transfer_from_savings":case "fill_transfer_from_savings":return T(p.amount).symbol==="HIVE";case "fill_recurrent_transfer":let m=T(p.amount);return ["HIVE"].includes(m.symbol);case "claim_reward_balance":return T(p.reward_hive).amount>0;case "curation_reward":case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":return true;case "limit_order_create2":return true;default:return i.has(p.type)}}))})})}function lI(e,t=20,r=[]){let{filterKey:n}=xt(r),o=En(r);return infiniteQueryOptions({...sr(e,t,r),queryKey:["assets","hbd","transactions",e,t,n],select:({pages:i,pageParams:s})=>({pageParams:s,pages:i.map(a=>a.filter(c=>{switch(c.type){case "author_reward":case "comment_benefactor_reward":return T(c.hbd_payout).amount>0;case "claim_reward_balance":return T(c.reward_hbd).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return T(c.amount).symbol==="HBD";case "transfer_from_savings":case "fill_transfer_from_savings":return T(c.amount).symbol==="HBD";case "fill_recurrent_transfer":let m=T(c.amount);return ["HBD"].includes(m.symbol);case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":case "proposal_pay":case "interest":return true;case "limit_order_create2":return true;default:return o.has(c.type)}}))})})}function yI(e,t=20,r=[]){let{filterKey:n}=xt(r),o=new Set(Array.isArray(r)?r:[r]),i=o.has("")||o.size===0;return infiniteQueryOptions({...sr(e,t,r),queryKey:["assets","hive-power","transactions",e,t,n],select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(c=>c.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return T(p.vesting_payout).amount>0;case "claim_reward_balance":return T(p.reward_vests).amount>0;case "transfer_to_vesting":return true;case "transfer":case "transfer_to_savings":case "recurrent_transfer":return ["VESTS","HP"].includes(T(p.amount).symbol);case "fill_recurrent_transfer":let f=T(p.amount);return ["VESTS","HP"].includes(f.symbol);case "curation_reward":case "withdraw_vesting":case "delegate_vesting_shares":case "fill_vesting_withdraw":case "return_vesting_delegation":case "producer_reward":case "set_withdraw_vesting_route":return true;default:return i||o.has(p.type)}}))})})}function Vi(e){let t=r=>r.toString().padStart(2,"0");return `${e.getFullYear()}-${t(e.getMonth()+1)}-${t(e.getDate())}T${t(e.getHours())}:${t(e.getMinutes())}:${t(e.getSeconds())}`}function Rn(e,t){return new Date(e.getTime()-t*1e3)}function bI(e=86400){return infiniteQueryOptions({queryKey:["assets","hive","metrics",e],queryFn:async({pageParam:[t,r]})=>(await y("condenser_api.get_market_history",[e,Vi(t),Vi(r)])).map(({hive:o,non_hive:i,open:s})=>({close:i.close/o.close,open:i.open/o.open,low:i.low/o.low,high:i.high/o.high,volume:o.volume,time:new Date(s)})),initialPageParam:[Rn(new Date,Math.max(100*e,28800)),new Date],getNextPageParam:(t,r,[n])=>[Rn(n,Math.max(100*e,28800)),Rn(n,e)]})}function xI(e){return queryOptions({queryKey:["assets","hive","withdrawal-routes",e],queryFn:()=>y("condenser_api.get_withdraw_routes",[e,"outgoing"]),enabled:!!e})}function EI(e,t=50){return queryOptions({queryKey:["assets","hive-power","delegates",e],enabled:!!e,queryFn:()=>y("condenser_api.get_vesting_delegations",[e,"",t])})}function II(e){return queryOptions({queryKey:u.assets.hivePowerDelegatings(e),enabled:!!e,queryFn:async()=>or(e,await w().fetchQuery({...nr(e),staleTime:6e4}))})}function MI(e=500){return queryOptions({queryKey:["market","order-book",e],queryFn:()=>y("condenser_api.get_order_book",[e])})}function HI(){return queryOptions({queryKey:["market","statistics"],queryFn:()=>y("condenser_api.get_ticker",[])})}function $I(e,t,r){let n=o=>o.toISOString().replace(/\.\d{3}Z$/,"");return queryOptions({queryKey:["market","history",e,t.getTime(),r.getTime()],queryFn:()=>y("condenser_api.get_market_history",[e,n(t),n(r)])})}function JI(){return queryOptions({queryKey:["market","hive-hbd-stats"],queryFn:async()=>{let e=await y("condenser_api.get_ticker",[]),t=new Date,r=new Date(t.getTime()-864e5),n=s=>s.toISOString().replace(/\.\d{3}Z$/,""),o=await y("condenser_api.get_market_history",[86400,n(r),n(t)]);return {price:+e.latest,close:o[0]?o[0].non_hive.open/o[0].hive.open:0,high:o[0]?o[0].non_hive.high/o[0].hive.high:0,low:o[0]?o[0].non_hive.low/o[0].hive.low:0,percent:o[0]?100-o[0].non_hive.open/o[0].hive.open*100/+e.latest:0,totalFromAsset:e.hive_volume.split(" ")[0],totalToAsset:e.hbd_volume.split(" ")[0]}}})}function eD(e,t,r,n){return queryOptions({queryKey:["market","data",e,t,r,n],queryFn:async({signal:o})=>{let i=h(),s=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,a=await i(s,{signal:o});if(!a.ok)throw new Error(`Failed to fetch market data: ${a.status}`);return a.json()}})}function ji(e){return e.toISOString().replace(/\.\d{3}Z$/,"")}function oD(e=1e3,t,r){let n=r??new Date,o=t??new Date(n.getTime()-600*60*1e3);return queryOptions({queryKey:["market","trade-history",e,o.getTime(),n.getTime()],queryFn:()=>y("condenser_api.get_trade_history",[ji(o),ji(n),e])})}function uD(){return queryOptions({queryKey:["market","feed-history"],queryFn:async()=>{try{return await y("condenser_api.get_feed_history",[])}catch(e){throw e}}})}function dD(){return queryOptions({queryKey:["market","current-median-history-price"],queryFn:async()=>{try{return await y("condenser_api.get_current_median_history_price",[])}catch(e){throw e}}})}function yD(e,t,r){return v(["market","limit-order-create"],e,n=>[Xt(e,n.amountToSell,n.minToReceive,n.fillOrKill,n.expiration,n.orderId)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function bD(e,t,r){return v(["market","limit-order-cancel"],e,({orderId:n})=>[on(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}async function Ot(e){let t=await e.json();if(!e.ok){let r=new Error(`Request failed with status ${e.status}`);throw r.status=e.status,r.data=t,r}return t}async function PD(e,t,r,n){let o=h(),i=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,s=await o(i);return Ot(s)}async function Li(e){if(e==="hbd")return 1;let t=h(),r=`https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${e}`,n=await t(r);return (await Ot(n)).hive_dollar[e]}async function xD(e,t){let n=await h()(d.privateApiHost+`/private-api/market-data/${e==="hbd"?"usd":e}/${t}`);return Ot(n)}async function OD(){let t=await h()(d.privateApiHost+"/private-api/market-data/latest");return Ot(t)}async function SD(){let t=await h()("https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd");return Ot(t)}var Om={"Content-type":"application/json"};async function Sm(e){let t=h(),r=B.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-api`,{method:"POST",body:JSON.stringify(e),headers:Om});if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 request failed with ${n.status}`);return (await n.json()).result}async function De(e,t){try{return await Sm(e)}catch{return t}}async function RD(e,t=50){let r={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:e},limit:t,offset:0},id:1},[n,o]=await Promise.all([De({...r,params:{...r.params,table:"buyBook",indexes:[{index:"price",descending:true}]}},[]),De({...r,params:{...r.params,table:"sellBook",indexes:[{index:"price",descending:false}]}},[])]),i=a=>a.sort((c,p)=>{let l=Number(c.price??0);return Number(p.price??0)-l}),s=a=>a.sort((c,p)=>{let l=Number(c.price??0),m=Number(p.price??0);return l-m});return {buy:i(n),sell:s(o)}}async function kD(e,t=50){return De({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"tradesHistory",query:{symbol:e},limit:t,offset:0,indexes:[{index:"timestamp",descending:true}]},id:1},[])}async function TD(e,t,r=100){let n={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:t,account:e},limit:r,offset:0},id:1},[o,i]=await Promise.all([De({...n,params:{...n.params,table:"buyBook",indexes:[{index:"timestamp",descending:true}]}},[]),De({...n,params:{...n.params,table:"sellBook",indexes:[{index:"timestamp",descending:true}]}},[])]),s=(p,l)=>(Number(p||0)*Number(l||0)).toFixed(8),a=o.map(p=>({id:p.txId,type:"buy",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:p.tokensLocked??s(p.quantity,p.price),timestamp:Number(p.timestamp??0)})),c=i.map(p=>({id:p.txId,type:"sell",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:s(p.quantity,p.price),timestamp:Number(p.timestamp??0)}));return [...a,...c].sort((p,l)=>l.timestamp-p.timestamp)}async function Cm(e,t){if(Array.isArray(e)&&e.length===0)return [];let r=Array.isArray(e)?{symbol:{$in:e}}:e?{symbol:e}:{};return De({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"metrics",query:{...r,...t?{account:t}:{}}},id:1},[])}async function st(e,t){return Cm(t,e)}async function ar(e){return De({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"balances",query:{account:e}},id:1},[])}async function ur(e){return De({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"tokens",query:{symbol:{$in:e}}},id:2},[])}async function $i(e,t,r,n){let o=h(),i=B.getValidatedBaseUrl(),s=new URL("/private-api/engine-account-history",i);s.searchParams.set("account",e),s.searchParams.set("symbol",t),s.searchParams.set("limit",r.toString()),s.searchParams.set("offset",n.toString());let a=await o(s.toString(),{method:"GET",headers:{"Content-type":"application/json"}});if(!a.ok)throw new Error(`[SDK][HiveEngine] \u2013 account history failed with ${a.status}`);return await a.json()}async function Wi(e,t="daily"){let r=h(),n=B.getValidatedBaseUrl(),o=new URL("/private-api/engine-chart-api",n);o.searchParams.set("symbol",e),o.searchParams.set("interval",t);let i=await r(o.toString(),{headers:{"Content-type":"application/json"}});if(!i.ok)throw new Error(`[SDK][HiveEngine] \u2013 chart failed with ${i.status}`);return await i.json()}async function Gi(e){let t=h(),r=B.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-reward-api/${e}?hive=1`);if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 rewards failed with ${n.status}`);return await n.json()}function cr(e){return queryOptions({queryKey:["assets","hive-engine","balances",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>ar(e)})}function MD(){return queryOptions({queryKey:["assets","hive-engine","markets"],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>st()})}function zi(e){return queryOptions({queryKey:["assets","hive-engine","metadata-list",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>ur(e)})}function LD(e,t,r=20){return infiniteQueryOptions({queryKey:["assets","hive-engine",t,"transactions",e],enabled:!!t&&!!e,initialPageParam:0,queryFn:async({pageParam:n})=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");return $i(e,t,r,n)},getNextPageParam:(n,o,i)=>(n?.length??0)===r?i+r:void 0,getPreviousPageParam:(n,o,i)=>i>0?i-r:void 0})}function zD(e,t="daily"){return queryOptions({queryKey:["assets","hive-engine",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>Wi(e,t)})}function ZD(e){return queryOptions({queryKey:["assets","hive-engine","unclaimed",e],staleTime:6e4,refetchInterval:9e4,enabled:!!e,queryFn:async()=>{try{let t=await Gi(e);return Object.values(t).filter(({pending_token:r})=>r>0)}catch{return []}}})}function Ji(e,t){return queryOptions({queryKey:["assets","hive-engine","all-tokens",e,t],queryFn:async()=>st(e,t)})}function at(e,t=void 0){let r={fractionDigits:3,prefix:"",suffix:""};t&&(r={...r,...t});let{fractionDigits:n,prefix:o,suffix:i}=r,s="";o&&(s+=o+" ");let a=Math.abs(parseFloat(e.toString()))<1e-4?0:e,c=typeof a=="string"?parseFloat(a):a;return s+=c.toLocaleString("en-US",{minimumFractionDigits:n,maximumFractionDigits:n,useGrouping:true}),i&&(s+=" "+i),s}var pr=class{symbol;name;icon;precision;stakingEnabled;delegationEnabled;balance;stake;stakedBalance;delegationsIn;delegationsOut;usdValue;constructor(t){this.symbol=t.symbol,this.name=t.name||"",this.icon=t.icon||"",this.precision=t.precision||0,this.stakingEnabled=t.stakingEnabled||false,this.delegationEnabled=t.delegationEnabled||false,this.balance=parseFloat(t.balance)||0,this.stake=parseFloat(t.stake)||0,this.delegationsIn=parseFloat(t.delegationsIn)||0,this.delegationsOut=parseFloat(t.delegationsOut)||0,this.stakedBalance=this.stake+this.delegationsIn-this.delegationsOut,this.usdValue=t.usdValue;}hasDelegations=()=>this.delegationEnabled?this.delegationsIn>0&&this.delegationsOut>0:false;delegations=()=>this.hasDelegations()?`(${at(this.stake,{fractionDigits:this.precision})} + ${at(this.delegationsIn,{fractionDigits:this.precision})} - ${at(this.delegationsOut,{fractionDigits:this.precision})})`:"";staked=()=>this.stakingEnabled?this.stakedBalance<1e-4?this.stakedBalance.toString():at(this.stakedBalance,{fractionDigits:this.precision}):"-";balanced=()=>this.balance<1e-4?this.balance.toString():at(this.balance,{fractionDigits:this.precision})};function pK(e,t,r){return queryOptions({queryKey:["assets","hive-engine","balances-with-usd",e,t,r],queryFn:async()=>{if(!e)throw new Error("[HiveEngine] No account in a balances query");let n=await ar(e),o=await ur(n.map(p=>p.symbol)),i=t?t.base/t.quote:0,s=Array.isArray(r)?r:[],a=n.map(p=>p.symbol).filter(p=>p!=="SWAP.HIVE"&&!s.some(l=>l.symbol===p)),c=[...s,...a.length?await st(void 0,a):[]];return n.map(p=>{let l=o.find(x=>x.symbol===p.symbol),m;if(l?.metadata)try{m=JSON.parse(l.metadata);}catch{m=void 0;}let f=c.find(x=>x.symbol===p.symbol),g=Number(f?.lastPrice??"0"),_=Number(p.balance),A=p.symbol==="SWAP.HIVE"?i*_:g===0?0:Number((g*i*_).toFixed(10));return new pr({symbol:p.symbol,name:l?.name??p.symbol,icon:m?.icon??"",precision:l?.precision??0,stakingEnabled:l?.stakingEnabled??false,delegationEnabled:l?.delegationEnabled??false,balance:p.balance,stake:p.stake,delegationsIn:p.delegationsIn,delegationsOut:p.delegationsOut,usdValue:A})})},enabled:!!e})}function Yi(e,t){return queryOptions({queryKey:["assets","hive-engine",t,"general-info",e],enabled:!!t&&!!e,staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");let r=w(),n=ir(e);await r.prefetchQuery(n);let o=r.getQueryData(n.queryKey),i=await r.ensureQueryData(zi([t])),s=await r.ensureQueryData(cr(e)),a=await r.ensureQueryData(Ji(void 0,t)),c=i?.find(x=>x.symbol===t),p=s?.find(x=>x.symbol===t),m=+(a?.find(x=>x.symbol===t)?.lastPrice??"0"),f=parseFloat(p?.balance??"0"),g=parseFloat(p?.stake??"0"),_=parseFloat(p?.pendingUnstake??"0"),A=[{name:"liquid",balance:f},{name:"staked",balance:g}];return _>0&&A.push({name:"unstaking",balance:_}),{name:t,title:c?.name??"",price:m===0?0:Number(m*(o?.price??0)),accountBalance:f+g,layer:"ENGINE",parts:A}}})}function St(e,t=0){return queryOptions({queryKey:["points",e,t],queryFn:async()=>{if(!e)throw new Error("Get points query \u2013 username wasn't provided");let r=e.replace("@",""),n=await fetch(d.privateApiHost+"/private-api/points",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r})});if(!n.ok)throw new Error(`Failed to fetch points: ${n.status}`);let o=await n.json(),i=await fetch(d.privateApiHost+"/private-api/point-list",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r,type:t})});if(!i.ok)throw new Error(`Failed to fetch point transactions: ${i.status}`);let s=await i.json();return {points:o.points,uPoints:o.unclaimed_points,transactions:s}},staleTime:3e4,refetchOnMount:true,enabled:!!e})}function Xi(e){return queryOptions({queryKey:["assets","points","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>(await w().prefetchQuery(St(e)),{name:"POINTS",title:"Ecency Points",price:.002,accountBalance:+(w().getQueryData(St(e).queryKey)?.points??0)})})}function EK(e,t){return queryOptions({queryKey:["assets","points","transactions",e,t],queryFn:async()=>(await(await fetch(`${d.privateApiHost}/private-api/point-list`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,type:t??0})})).json()).map(({created:o,type:i,amount:s,id:a,sender:c,receiver:p,memo:l})=>({created:new Date(o),type:i,results:[{amount:parseFloat(s),asset:"POINTS"}],id:a,from:c??void 0,to:p??void 0,memo:l??void 0}))})}function QK(e,t,r={refetch:false}){let n=w(),o=r.currency??"usd",i=async p=>(r.refetch?await n.fetchQuery(p):await n.prefetchQuery(p),n.getQueryData(p.queryKey)),s=async p=>{if(!p||o==="usd")return p;try{let l=await Li(o);return {...p,price:p.price*l}}catch(l){return console.warn(`Failed to convert price from USD to ${o}:`,l),p}},a=Mi(e,o,true),c=async()=>{try{let l=(await n.fetchQuery(a)).wallets.find(f=>f.symbol.toUpperCase()===t.toUpperCase());if(!l)return;let m=[];if(l.liquid!==void 0&&l.liquid!==null&&m.push({name:"liquid",balance:l.liquid}),l.staked!==void 0&&l.staked!==null&&l.staked>0&&m.push({name:"staked",balance:l.staked}),l.savings!==void 0&&l.savings!==null&&l.savings>0&&m.push({name:"savings",balance:l.savings}),l.extraData&&Array.isArray(l.extraData))for(let f of l.extraData){if(!f||typeof f!="object")continue;let g=f.dataKey,_=f.value;if(typeof _=="string"){let x=_.replace(/,/g,"").match(/[+-]?\s*(\d+(?:\.\d+)?)/);if(x){let C=Math.abs(Number.parseFloat(x[1]));g==="delegated_hive_power"?m.push({name:"outgoing_delegations",balance:C}):g==="received_hive_power"?m.push({name:"incoming_delegations",balance:C}):g==="powering_down_hive_power"&&m.push({name:"pending_power_down",balance:C});}}}return {name:l.symbol,title:l.name,price:l.fiatRate,accountBalance:l.balance,apr:l.apr?.toString(),layer:l.layer,pendingRewards:l.pendingRewards,parts:m}}catch{return}};return queryOptions({queryKey:["ecency-wallets","asset-info",e,t,o],queryFn:async()=>{let p=await c();if(p&&p.price>0)return p;let l;if(t==="HIVE")l=await i(ir(e));else if(t==="HP")l=await i(Qi(e));else if(t==="HBD")l=await i(Bi(e));else if(t==="POINTS")l=await i(Xi(e));else if((await n.ensureQueryData(cr(e))).some(f=>f.symbol===t))l=await i(Yi(e,t));else {if(p)return p;throw new Error(`[SDK][Wallet] \u2013 unrecognized asset "${t}"`)}if(p&&l&&l.price>0){let m=await s(l);return {...p,price:m.price}}return await s(l)}})}var Um=(C=>(C.Transfer="transfer",C.TransferToSavings="transfer-saving",C.WithdrawFromSavings="withdraw-saving",C.Delegate="delegate",C.PowerUp="power-up",C.PowerDown="power-down",C.WithdrawRoutes="withdraw-routes",C.ClaimInterest="claim-interest",C.Swap="swap",C.Convert="convert",C.Gift="gift",C.Promote="promote",C.Claim="claim",C.Buy="buy",C.Stake="stake",C.Unstake="unstake",C.Undelegate="undelegate",C))(Um||{});function $K(e,t,r){return v(["wallet","transfer"],e,n=>[Le(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function YK(e,t,r){return v(["wallet","transfer-point"],e,n=>[nt(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function rN(e,t,r){return v(["wallet","delegate-vesting-shares"],e,n=>[vt(e,n.delegatee,n.vestingShares)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.delegatee),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function aN(e,t,r){return v(["wallet","set-withdraw-vesting-route"],e,n=>[At(e,n.toAccount,n.percent,n.autoVest)],async(n,o)=>{await S(t?.adapter,r,[u.wallet.withdrawRoutes(e),u.accounts.full(e),u.accounts.full(o.toAccount)]);},t,"active",{broadcastMode:r})}function lN(e,t,r){return v(["wallet","transfer-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"transfer",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity,memo:n.memo}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"ssc-mainnet-hive",json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function yN(e,t,r){return v(["wallet","transfer-to-savings"],e,n=>[rt(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function vN(e,t,r){return v(["wallet","transfer-from-savings"],e,n=>[$e(e,n.to,n.amount,n.memo,n.requestId)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function SN(e,t,r){return v(["wallet","transfer-to-vesting"],e,n=>[wt(e,n.to,n.amount)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function TN(e,t,r){return v(["wallet","withdraw-vesting"],e,n=>[bt(e,n.vestingShares)],async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function KN(e,t,r){return v(["wallet","convert"],e,n=>[n.collateralized?Vr(e,n.amount,n.requestId):Pt(e,n.amount,n.requestId)],async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function UN(e,t,r){return v(["wallet","claim-interest"],e,n=>_t(e,n.to,n.amount,n.memo,n.requestId),async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}var Hm=5e3,lr=new Map;function $N(e,t,r){return v(["wallet","claim-rewards"],e,n=>[sn(e,n.rewardHive,n.rewardHbd,n.rewardVests)],()=>{let n=e??"__anonymous__",o=[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e],u.assets.hiveGeneralInfo(e),u.assets.hbdGeneralInfo(e),u.assets.hivePowerGeneralInfo(e)],i=lr.get(n);i&&(clearTimeout(i),lr.delete(n));let s=setTimeout(async()=>{try{let a=w(),p=(await Promise.allSettled(o.map(l=>a.invalidateQueries({queryKey:l})))).filter(l=>l.status==="rejected");p.length>0&&console.error("[SDK][Wallet][useClaimRewards] delayed invalidation rejected",{username:e,rejectedCount:p.length,rejected:p});}catch(a){console.error("[SDK][Wallet][useClaimRewards] delayed invalidation failed",{username:e,error:a});}finally{lr.delete(n);}},Hm);lr.set(n,s);},t,"posting",{broadcastMode:r})}function JN(e,t,r){return v(["wallet","delegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"delegate",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function eM(e,t,r){return v(["wallet","undelegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"undelegate",contractPayload:{symbol:n.symbol,from:n.from,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function oM(e,t,r){return v(["wallet","stake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"stake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function uM(e,t,r){return v(["wallet","unstake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"unstake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function dM(e,t,r){return v(["wallet","claim-engine-rewards"],e,n=>{let o=JSON.stringify(n.tokens.map(i=>({symbol:i})));return [["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"posting",{broadcastMode:r})}function yM(e,t,r){return v(["wallet","engine-market-order"],e,n=>{let o,i;n.action==="cancel"?(i="cancel",o={type:n.orderType,id:n.orderId}):(i=n.action,o={symbol:n.symbol,quantity:n.quantity,price:n.price});let s=JSON.stringify({contractName:"market",contractAction:i,contractPayload:o});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:s}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Vm(e,t,r){let{from:n,to:o="",amount:i="",memo:s=""}=r,a=r.request_id??Date.now()>>>0;switch(e){case "HIVE":switch(t){case "transfer":return [Le(n,o,i,s)];case "transfer-saving":return [rt(n,o,i,s)];case "withdraw-saving":return [$e(n,o,i,s,a)];case "power-up":return [wt(n,o,i)]}break;case "HBD":switch(t){case "transfer":return [Le(n,o,i,s)];case "transfer-saving":return [rt(n,o,i,s)];case "withdraw-saving":return [$e(n,o,i,s,a)];case "claim-interest":return _t(n,o,i,s,a);case "convert":return [Pt(n,i,Math.floor(Date.now()/1e3))]}break;case "HP":switch(t){case "power-down":return [bt(n,i)];case "delegate":return [vt(n,o,i)];case "withdraw-routes":return [At(r.from_account??n,r.to_account??o,r.percent??0,r.auto_vest??false)]}break;case "POINTS":if(t==="transfer"||t==="gift")return [nt(n,o,i,s)];break}return null}function jm(e,t,r){let{from:n,to:o="",amount:i=""}=r,s=typeof i=="string"&&i.includes(" ")?i.split(" ")[0]:String(i);switch(t){case "transfer":return [We(n,"transfer",{symbol:e,to:o,quantity:s,memo:r.memo??""})];case "stake":return [We(n,"stake",{symbol:e,to:o,quantity:s})];case "unstake":return [We(n,"unstake",{symbol:e,to:o,quantity:s})];case "delegate":return [We(n,"delegate",{symbol:e,to:o,quantity:s})];case "undelegate":return [We(n,"undelegate",{symbol:e,from:o,quantity:s})];case "claim":return [jr(n,[e])]}return null}function Lm(e){return e==="claim"?"posting":"active"}function AM(e,t,r,n,o){let{mutateAsync:i}=ot.useRecordActivity(e,r);return v(["ecency-wallets",t,r],e,s=>{let a=Vm(t,r,s);if(a)return a;let c=jm(t,r,s);if(c)return c;throw new Error(`[SDK][Wallet] \u2013 no operation builder for asset="${t}" operation="${r}"`)},()=>{i();let s=[];s.push(["ecency-wallets","asset-info",e,t]),t==="HIVE"&&s.push(["ecency-wallets","asset-info",e,"HP"]),s.push(["wallet","portfolio","v2",e]),setTimeout(()=>{s.forEach(a=>{w().invalidateQueries({queryKey:a});});},5e3);},n,Lm(r),{broadcastMode:o})}function SM(e,t,r){return v(["wallet","delegate-rc"],e,({to:n,maxRc:o})=>[Lr(e,n,o)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),u.resourceCredits.account(e),u.resourceCredits.account(o.to)]);},t,"active",{broadcastMode:r})}function kM(e,t,r){return v(["witnesses","vote"],e,({witness:n,approve:o})=>[Gr(e,n,o)],async()=>{try{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.witnesses.votes(e)]);}catch(n){console.warn("[useWitnessVote] Post-broadcast side-effect failed:",n);}},t,"active",{broadcastMode:r})}function IM(e,t,r){return v(["witnesses","proxy"],e,({proxy:n})=>[zr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.witnesses.proxy()]);},t,"active",{broadcastMode:r})}function Wm(e){return {owner:e.witness_name,total_missed:e.missed_blocks,url:e.url,props:{account_creation_fee:`${(e.account_creation_fee/1e3).toFixed(3)} HIVE`,account_subsidy_budget:0,maximum_block_size:e.block_size},hbd_exchange_rate:{base:`${e.price_feed.toFixed(3)} HBD`},available_witness_account_subsidies:0,running_version:e.version,signing_key:e.signing_key,last_hbd_exchange_update:e.feed_updated_at,rank:e.rank,vests:e.vests,voters_num:e.voters_num,voters_num_daily_change:e.voters_num_daily_change,price_feed:e.price_feed,hbd_interest_rate:e.hbd_interest_rate,last_confirmed_block_num:e.last_confirmed_block_num}}function QM(e){return infiniteQueryOptions({queryKey:u.witnesses.list(e),initialPageParam:1,queryFn:async({pageParam:t})=>(await te("hafbe","/witnesses",{"page-size":e,page:t})).witnesses.map(Wm),getNextPageParam:(t,r,n)=>t.length===e?n+1:void 0})}function UM(e,t,r,n="vests",o="desc"){return queryOptions({queryKey:u.witnesses.voters(e,t,r,n,o),queryFn:async({signal:i})=>await te("hafbe","/witnesses/{witness-name}/voters",{"witness-name":e,"page-size":r,page:t,sort:n,direction:o},void 0,void 0,i),enabled:!!e,staleTime:6e4})}function HM(e){return queryOptions({queryKey:u.witnesses.voterCount(e),queryFn:async()=>await te("hafbe","/witnesses/{witness-name}/voters/count",{"witness-name":e}),enabled:!!e,staleTime:6e4})}var Gm=(_=>(_[_.CHECKIN=10]="CHECKIN",_[_.LOGIN=20]="LOGIN",_[_.CHECKIN_EXTRA=30]="CHECKIN_EXTRA",_[_.POST=100]="POST",_[_.COMMENT=110]="COMMENT",_[_.VOTE=120]="VOTE",_[_.REBLOG=130]="REBLOG",_[_.DELEGATION=150]="DELEGATION",_[_.REFERRAL=160]="REFERRAL",_[_.COMMUNITY=170]="COMMUNITY",_[_.TRANSFER_SENT=998]="TRANSFER_SENT",_[_.TRANSFER_INCOMING=999]="TRANSFER_INCOMING",_[_.MINTED=991]="MINTED",_[_.BURNED=997]="BURNED",_))(Gm||{});async function Jm(e,t){if(!e)throw new Error("[SDK][Points][Claim] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][Points][Claim] \u2013 access token wasn't found");let n=await h()(d.privateApiHost+"/private-api/points-claim",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})}),o=(n.headers.get("content-type")??"").split(";")[0].trim().toLowerCase(),i=await n.text();if(!n.ok){if(n.status===406)try{return JSON.parse(i)}catch{return {message:i,code:n.status}}let s=i&&o.includes("json")?`: ${i.slice(0,200)}`:"";throw new Error(`[SDK][Points][Claim] \u2013 failed with status ${n.status}${s}`)}if(!o.includes("json"))throw new Error(`[SDK][Points][Claim] \u2013 expected JSON but received "${o||"empty"}" response (status ${n.status})`);try{return JSON.parse(i)}catch{throw new Error(`[SDK][Points][Claim] \u2013 malformed JSON response (status ${n.status})`)}}function zM(e,t,r,n){let{mutateAsync:o}=ot.useRecordActivity(e,"points-claimed");return useMutation({mutationFn:()=>Jm(e,t),onError:n,onSuccess:()=>{o(),w().setQueryData(St(e).queryKey,i=>i&&{...i,points:(parseFloat(i.points)+parseFloat(i.uPoints)).toFixed(3),uPoints:"0"}),r?.();}})}var es=/(^|\s)author:([^\s]+)/g,ts=/(^|\s)type:([^\s]+)/g,rs=/(^|\s)category:([^\s]+)/g,ns=/(^|\s)tag:([^\s]+)/g;var is=(n=>(n.ALL="",n.POST="post",n.COMMENT="comment",n))(is||{}),YM=5,XM=100;function ss(e){return e.trim().split(/\s+/)[0]??""}function Ym(e){return ss(e).replace(/^@+/,"").toLowerCase()}function Xm(e){return ss(e).replace(/^#+/,"").toLowerCase()}function Zm(e){let t=new Set;return e.split(/[\s,]+/).map(r=>r.replace(/^#+/,"").toLowerCase()).filter(r=>r===""||t.has(r)?false:(t.add(r),true))}function ZM({search:e="",author:t="",type:r="",category:n="",tags:o=[]}){let i=e.trim().replace(/\s+/g," "),s=Ym(t),a=Xm(n),c=Zm(Array.isArray(o)?o.join(","):o),p=[i];return s&&p.push(`author:${s}`),r&&p.push(`type:${r}`),a&&p.push(`category:${a}`),c.length>0&&p.push(`tag:${c.join(",")}`),{q:p.filter(l=>l!=="").join(" "),search:i,author:s,type:r,category:a,tags:c}}var os=class{query="";search="";author="";type="";category="";tags=[];constructor(t){this.query=t,this.search=t,this.grabAuthor(),this.grabType(),this.grabCategory(),this.grabTags(),this.grabSearch();}grab=t=>{let r=[...this.query.matchAll(t)];return r.length>0?r[0][2].trim():""};grabAuthor=()=>{this.author=this.grab(es);};grabType=()=>{let t=this.grab(ts);Object.values(is).includes(t)&&(this.type=t);};grabCategory=()=>{this.category=this.grab(rs);};grabTags=()=>{let t=new Set;this.tags=[...this.query.matchAll(ns)].flatMap(r=>r[2].split(",")).map(r=>r.trim()).filter(r=>r===""||t.has(r)?false:(t.add(r),true));};grabSearch=()=>{for([es,ts,rs,ns].forEach(t=>{this.search=this.search.replace(t,"$1");});this.search.indexOf(" ")!==-1;)this.search=this.search.replace(" "," ");this.search=this.search.trim();}};async function Ce(e,t){let n=await(async()=>{let o;try{o=await e.text();}catch{return}if(o!=="")try{return JSON.parse(o)}catch{return e.ok?void 0:o}})();if(!e.ok){let o=new Error(`Request failed with status ${e.status}`);throw o.status=e.status,o.data=n,o}if(n===void 0||t!==void 0&&!t(n))throw new Error("Response body was empty, invalid JSON, or not the expected shape");return n}function Ke(e){return typeof e=="object"&&e!==null&&Array.isArray(e.results)}var tf=isServer?0:3;function Ct(e,t){let{status:r}=t,n=r===408||r===429;return r!==void 0&&r>=400&&r<500&&!n?false:e{let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let c=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(a),signal:Pe(xe,s)});return Ce(c,Ke)},retry:Ct})}function pB(e,t,r=true){return infiniteQueryOptions({queryKey:u.search.controversialRising(e,t),initialPageParam:{sid:void 0,hasNextPage:true},queryFn:async({pageParam:n,signal:o})=>{if(!n.hasNextPage)return {hits:0,took:0,results:[]};let i,s=new Date;switch(t){case "today":i=new Date(s.getTime()-1440*60*1e3);break;case "week":i=new Date(s.getTime()-10080*60*1e3);break;case "month":i=new Date(s.getTime()-720*60*60*1e3);break;case "year":i=new Date(s.getTime()-365*24*60*60*1e3);break;default:i=void 0;}let a="* type:post",c=e==="rising"?"children":e,p=i?i.toISOString().split(".")[0]:void 0,l="0",m=t==="today"?50:200,f={q:a,sort:c,hide_low:l};p&&(f.since=p),n.sid&&(f.scroll_id=n.sid),(f.votes=m);let g=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(f),signal:Pe(xe,o)});return Ce(g,Ke)},getNextPageParam:n=>({sid:n?.scroll_id,hasNextPage:n.results.length>0}),enabled:r,retry:Ct})}async function fB(e,t,r,n,o,i,s){let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let p=await h()(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(a),signal:Pe(xe,s)});return Ce(p,Ke)}async function as(e,t,r=xe){let o=await h()(d.privateApiHost+"/search-api/similar",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(e),signal:Pe(r,t)});return Ce(o,Ke)}async function gB(e,t){let n=await h()(d.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify({q:e}),signal:Pe(xe,t)}),o=await Ce(n,Array.isArray);return o?.length>0?o:[e]}var sf=4368*60*60*1e3,af=4,uf=3e3,cf=2e3,pf=4e3,bB=2;function lf(e,t){return e.replace(/!\[[^\]]*\]\([^)]*\)/g," ").replace(/\[([^\]]*)\]\([^)]*\)/g,"$1").replace(/<[^>]+>/g," ").replace(/https?:\/\/\S+/g," ").replace(/\s+/g," ").trim().slice(0,t)}function df(e){let t=5381;for(let r=0;r>>0).toString(36)}function vB(e){let t=e.title??"",r=e.json_metadata?.tags,n=(Array.isArray(r)?r:[]).filter(s=>typeof s=="string"&&s!==""),o=lf(e.body??"",uf),i=df(`${t}|${n.join(",")}|${o}`);return queryOptions({queryKey:u.search.similarEntries(e.author,e.permlink,i),queryFn:async({signal:s})=>{let a=new Date(Date.now()-sf).toISOString().slice(0,19),c=await as({author:e.author,permlink:e.permlink,title:t,body:o,tags:n,since:a},s,typeof window>"u"?cf:pf),p=[],l=new Set;for(let m of c.results){if(p.length>=af)break;m.permlink!==e.permlink&&(m.tags??[]).indexOf("nsfw")===-1&&(l.has(m.author)||(l.add(m.author),p.push(m)));}return p},staleTime:300*1e3,retry:false})}function CB(e,t=5){let r=e.trim();return queryOptions({queryKey:u.search.account(r,t),queryFn:async()=>{let n=await y("condenser_api.lookup_accounts",[r,t]);return n.length===0?[]:zt(n)},enabled:!!r})}function FB(e,t=10){let r=e.trim();return queryOptions({queryKey:u.search.topics(r,t),queryFn:async()=>(await y("condenser_api.get_trending_tags",[r,t+1])).map(o=>o.name).filter(o=>o!==""&&!o.startsWith("hive-")).slice(0,t),enabled:!!r})}function MB(e,t,r,n,o,i){return infiniteQueryOptions({queryKey:u.search.api(e,t,r,n,o,i),queryFn:async({pageParam:s,signal:a})=>{let c={q:e,sort:t,hide_low:r};n&&(c.since=n),s&&(c.scroll_id=s),o!==void 0&&(c.votes=o),i&&(c.include_nsfw=1);let p=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(c),signal:Pe(xe,a)});return Ce(p,Ke)},initialPageParam:void 0,getNextPageParam:s=>s?.scroll_id,enabled:!!e,retry:Ct})}function HB(e){return queryOptions({queryKey:["search","path",e],queryFn:async()=>{let t=await fetch(d.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify({q:e})});if(!t.ok)throw new Error(`Search path failed: ${t.status}`);let r=await t.json();return r?.length>0?r:[e]}})}async function _f(e){let r=await h()(d.privateApiHost+"/private-api/support-settings",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let n;try{n=await r.json();}catch{}let o=n?.message??`Failed to fetch support settings: ${r.status}`,i=new Error(o);throw i.status=r.status,i.data=n,i}return await r.json()}function $B(e,t){let r=e?.replace("@","");return queryOptions({queryKey:u.support.settings(r),queryFn:()=>{if(!t)throw new Error("[SDK][Support] missing auth");return _f(t)},enabled:!!r&&!!t})}async function vf(e,t){let n=await h()(d.privateApiHost+"/private-api/support-settings-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e,beneficiary_percent:t.beneficiary_percent,curation_percent:t.curation_percent})});if(!n.ok){let o;try{o=await n.json();}catch{}let i=o?.message??`Failed to update support settings: ${n.status}`,s=new Error(i);throw s.status=n.status,s.data=o,s}return await n.json()}function Af(e,t,r){return e.setQueryData(u.support.settings(t),r),e.invalidateQueries({queryKey:u.support.settings(t)})}function YB(e,t){let r=useQueryClient(),n=e?.replace("@","");return useMutation({mutationKey:["support","settings-update",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Support] missing auth");return vf(t,o)},onSuccess(o){n&&Af(r,n,o);}})}function tQ(e){return queryOptions({queryKey:["promotions","boost-plus-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(d.privateApiHost+"/private-api/boost-plus-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch boost plus prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function iQ(e){return queryOptions({queryKey:["promotions","rc-delegation-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(d.privateApiHost+"/private-api/rc-delegation-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch RC delegation prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function cQ(e,t){return queryOptions({queryKey:["promotions","rc-delegation-active",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(d.privateApiHost+"/private-api/rc-delegation-active",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,username:e})});if(!r.ok)throw new Error(`Failed to fetch RC delegation active: ${r.status}`);let n=await r.json();return n&&n.expires&&n.user?{user:n.user,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function mQ(e){return queryOptions({queryKey:["promotions","promote-price"],queryFn:async()=>{let t=await fetch(d.privateApiHost+"/private-api/promote-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch promote prices: ${t.status}`);return await t.json()},enabled:!!e})}function hQ(e,t){return queryOptions({queryKey:["promotions","boost-plus-accounts",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(d.privateApiHost+"/private-api/boosted-plus-account",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:e})});if(!r.ok)throw new Error(`Failed to fetch boost plus account prices: ${r.status}`);let n=await r.json();return n?{account:n.account,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function vQ(e,t,r){return v(["promotions","boost-plus"],e,({account:n,duration:o})=>[ln(e,n,o)],async(n,{account:o})=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.promotions.boostPlusAccounts(o)]);},t,"active",{broadcastMode:r})}function OQ(e,t,r){return v(["promotions","rc-delegation"],e,({duration:n})=>[dn(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.resourceCredits.account(e),["promotions","rc-delegation-active",e]]);},t,"active",{broadcastMode:r})}async function EQ(e){let r=await h()(d.privateApiHost+"/auth-api/hs-token-refresh",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let o;try{o=await r.json();}catch{o=void 0;}let i=new Error(`Failed to refresh token: ${r.status}`);throw i.status=r.status,i.data=o,i}return await r.json()}var Rf="https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt";function FQ(){return queryOptions({queryKey:u.badActors.list(),queryFn:async({signal:e})=>{let t=await fetch(Rf,{signal:e});if(!t.ok)throw new Error(`Failed to fetch bad actors list: ${t.status}`);let r=await t.text();return new Set(r.split(` +import {useQuery,useInfiniteQuery,useMutation,QueryClient,queryOptions,infiniteQueryOptions,useQueryClient,isServer}from'@tanstack/react-query';import {hexToBytes,bytesToHex}from'@noble/hashes/utils.js';import {ripemd160}from'@noble/hashes/legacy.js';import Mn from'bs58';import {secp256k1}from'@noble/curves/secp256k1.js';import {sha256,sha512}from'@noble/hashes/sha2.js';import {cbc}from'@noble/ciphers/aes.js';import Co from'hivesigner';var Is=Object.defineProperty;var kt=(e,t)=>{for(var r in t)Is(e,r,{get:t[r],enumerable:true});};var Tt=new ArrayBuffer(0),Ft=null,qt=null;function Ds(){return Ft||(typeof TextEncoder<"u"?Ft=new TextEncoder:Ft={encode(e){let t=[];for(let r=0;r>6,128|n&63);else if(n>=55296&&n<=56319&&r+1>18,128|n>>12&63,128|n>>6&63,128|n&63);}else t.push(224|n>>12,128|n>>6&63,128|n&63);}return new Uint8Array(t)}}),Ft}function Tn(){return qt||(typeof TextDecoder<"u"?qt=new TextDecoder:qt={decode(e){let t=e instanceof ArrayBuffer?new Uint8Array(e):new Uint8Array(e.buffer,e.byteOffset,e.byteLength),r="";for(let n=0;n>10),56320+(i&1023)));}return r}}),qt}var D=class e{static LITTLE_ENDIAN=true;static BIG_ENDIAN=false;static DEFAULT_CAPACITY=16;static DEFAULT_ENDIAN=e.BIG_ENDIAN;buffer;view;offset;markedOffset;limit;littleEndian;constructor(t=e.DEFAULT_CAPACITY,r=e.DEFAULT_ENDIAN){this.buffer=t===0?Tt:new ArrayBuffer(t),this.view=t===0?new DataView(Tt):new DataView(this.buffer),this.offset=0,this.markedOffset=-1,this.limit=t,this.littleEndian=r;}static allocate(t,r){return new e(t,r)}static concat(t,r){let n=0;for(let a=0;a0&&(n.buffer=t.buffer,n.offset=t.byteOffset,n.limit=t.byteOffset+t.byteLength,n.view=new DataView(t.buffer));else if(t instanceof ArrayBuffer)n=new e(0,r),t.byteLength>0&&(n.buffer=t,n.offset=0,n.limit=t.byteLength,n.view=t.byteLength>0?new DataView(t):new DataView(Tt));else if(Array.isArray(t))n=new e(t.length,r),n.limit=t.length,new Uint8Array(n.buffer).set(t);else throw TypeError("Illegal buffer");return n}writeBytes(t,r){return this.append(t,r)}writeInt8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setInt8(r,t),n&&(this.offset+=1),this}writeByte(t,r){return this.writeInt8(t,r)}writeUint8(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+1>this.buffer.byteLength&&this.resize(r+1),this.view.setUint8(r,t),n&&(this.offset+=1),this}writeUInt8(t,r){return this.writeUint8(t,r)}readUint8(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint8(t);return r&&(this.offset+=1),n}readUInt8(t){return this.readUint8(t)}writeInt16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setInt16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeShort(t,r){return this.writeInt16(t,r)}writeUint16(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+2>this.buffer.byteLength&&this.resize(r+2),this.view.setUint16(r,t,this.littleEndian),n&&(this.offset+=2),this}writeUInt16(t,r){return this.writeUint16(t,r)}writeInt32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setInt32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeInt(t,r){return this.writeInt32(t,r)}writeUint32(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,r+4>this.buffer.byteLength&&this.resize(r+4),this.view.setUint32(r,t,this.littleEndian),n&&(this.offset+=4),this}writeUInt32(t,r){return this.writeUint32(t,r)}readUint32(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getUint32(t,this.littleEndian);return r&&(this.offset+=4),n}readUInt32=this.readUint32;append(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o;return t instanceof e?(o=new Uint8Array(t.buffer,t.offset,t.limit-t.offset),t.offset+=o.length):t instanceof Uint8Array?o=t:t instanceof ArrayBuffer?o=new Uint8Array(t):o=new Uint8Array(t),o.length<=0?this:(r+o.length>this.buffer.byteLength&&this.resize(r+o.length),new Uint8Array(this.buffer).set(o,r),n&&(this.offset+=o.length),this)}clone(t){let r=new e(0,this.littleEndian);return t?(r.buffer=new ArrayBuffer(this.buffer.byteLength),new Uint8Array(r.buffer).set(new Uint8Array(this.buffer)),r.view=new DataView(r.buffer)):(r.buffer=this.buffer,r.view=this.view),r.offset=this.offset,r.markedOffset=this.markedOffset,r.limit=this.limit,r}copy(t,r){if(t===void 0&&(t=this.offset),r===void 0&&(r=this.limit),t===r)return new e(0,this.littleEndian);let n=r-t,o=new e(n,this.littleEndian);return o.offset=0,o.limit=n,new Uint8Array(o.buffer).set(new Uint8Array(this.buffer).subarray(t,r),0),o}copyTo(t,r,n,o){let i=typeof r>"u",s=typeof n>"u";r=i?t.offset:r,n=s?this.offset:n,o=o===void 0?this.limit:o;let a=o-n;return a===0?t:(t.ensureCapacity(r+a),new Uint8Array(t.buffer).set(new Uint8Array(this.buffer).subarray(n,o),r),s&&(this.offset+=a),i&&(t.offset+=a),this)}ensureCapacity(t){let r=this.buffer.byteLength;return rt?r:t):this}flip(){return this.limit=this.offset,this.offset=0,this}resize(t){if(this.buffer.byteLength"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigInt64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeLong(t,r){return this.writeInt64(t,r)}readInt64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigInt64(t,this.littleEndian);return r&&(this.offset+=8),n}readLong(t){return this.readInt64(t)}writeUint64(t,r){let n=typeof r>"u";return n?r=this.offset:r=r,typeof t=="number"&&(t=BigInt(t)),r+8>this.buffer.byteLength&&this.resize(r+8),this.view.setBigUint64(r,t,this.littleEndian),n&&(this.offset+=8),this}writeUInt64(t,r){return this.writeUint64(t,r)}readUint64(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=this.view.getBigUint64(t,this.littleEndian);return r&&(this.offset+=8),n}readUInt64(t){return this.readUint64(t)}toBuffer(t){let r=this.offset,n=this.limit;return !t&&r===0&&n===this.buffer.byteLength?this.buffer:r===n?Tt:this.buffer.slice(r,n)}toArrayBuffer(t){return this.toBuffer(t)}writeVarint32(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=this.calculateVarint32(t);for(r+o>this.buffer.byteLength&&this.resize(r+o),t>>>=0;t>=128;)this.view.setUint8(r++,t&127|128),t>>>=7;return this.view.setUint8(r++,t),n?(this.offset=r,this):o}readVarint32(t){let r=typeof t>"u";typeof t>"u"&&(t=this.offset);let n=0,o=0,i;do i=this.view.getUint8(t++),n<5&&(o|=(i&127)<<7*n),++n;while((i&128)!==0);return o|=0,r?(this.offset=t,o):{value:o,length:n}}calculateVarint32(t){return t=t>>>0,t<128?1:t<16384?2:t<1<<21?3:t<1<<28?4:5}writeVString(t,r){let n=typeof r>"u",o=n?this.offset:r,i=Ds().encode(t),s=i.length,a=this.calculateVarint32(s);return o+a+s>this.buffer.byteLength&&this.resize(o+a+s),this.writeVarint32(s,o),o+=a,new Uint8Array(this.buffer).set(i,o),o+=s,n?(this.offset=o,this):o-(r||0)}readVString(t){let r=typeof t>"u";r?t=this.offset:t=t;let n=t,o=this.readVarint32(t),i=o.value,s=o.length;t+=s;let a=Tn().decode(new Uint8Array(this.buffer,t,i));return t+=i,r?(this.offset=t,a):{string:a,length:t-n}}readUTF8String(t,r){let n=typeof r>"u";n?r=this.offset:r=r;let o=Tn().decode(new Uint8Array(this.buffer,r,t));return n?(this.offset+=t,o):{string:o,length:t}}};var O={nodes:["https://api.hive.blog","https://api.deathwing.me","https://api.openhive.network","https://api.syncad.com","https://rpc.mahdiyari.info"],restNodes:["https://api.hive.blog","https://rpc.mahdiyari.info","https://api.syncad.com","https://hiveapi.actifit.io","https://api.c0ff33a.uk"],restNodesByApi:{hivesense:["https://api.hive.blog","https://api.syncad.com"]},userAgent:"ecency-sdk",chain_id:"beeab0de00000000000000000000000000000000000000000000000000000000",address_prefix:"STM",timeout:5e3,broadcastTimeout:15e3,retry:5,resilience:{adaptiveTimeout:true,adaptiveTimeoutFloorMs:2e3,adaptiveTimeoutFactor:4,hedge:false,hedgeDelayFloorMs:750,hedgeDelayFactor:2,hedgeBucketCapacity:10,hedgeRefillPerSuccess:.1,totalBudgetFactor:2}},Fn=["bridge.get_ranked_posts","bridge.get_account_posts","bridge.get_post","bridge.get_discussion","bridge.get_profile","bridge.get_profiles","bridge.get_community","bridge.list_communities","condenser_api.get_accounts","condenser_api.get_content","condenser_api.get_dynamic_global_properties","condenser_api.get_trending_tags"],It=null,yr=e=>{if(e===null){It=null;return}if(!e||typeof e!="object")return;let t=typeof e.url=="string"?e.url.trim():"";if(!/^https?:\/\//i.test(t))return;let r={};if(e.headers&&typeof e.headers=="object")for(let[s,a]of Object.entries(e.headers))typeof a=="string"&&a&&!/[\u0000-\u001f\u007f]/.test(a)&&!/[\u0000-\u001f\u007f]/.test(s)&&(r[s]=a);let n=typeof e.timeoutMs=="number"&&Number.isFinite(e.timeoutMs)&&e.timeoutMs>0?e.timeoutMs:2e3,o=e.methods===void 0?[...Fn]:Array.isArray(e.methods)?e.methods.filter(s=>typeof s=="string"&&s.includes(".")):[];if(o.length===0)return;let i=(s,a)=>typeof s=="number"&&Number.isFinite(s)&&s>0?s:a;It={url:t,headers:r,timeoutMs:n,methods:o,failureThreshold:Math.floor(i(e.failureThreshold,3)),cooldownMs:i(e.cooldownMs,1e4),methodSet:new Set(o)};},hr=e=>Array.isArray(e)?[...new Set(e.filter(t=>typeof t=="string").map(t=>t.trim().replace(/\/+$/,"")).filter(t=>t.length>0&&/^https?:\/\/.+/.test(t)))]:[],_r=e=>{let t=hr(e);t.length&&(O.nodes=t);},wr=e=>{let t=hr(e);t.length&&(O.restNodes=t);},br=e=>{if(!e||typeof e!="object")return;let t={...O.restNodesByApi};for(let[r,n]of Object.entries(e)){let o=hr(n);o.length?t[r]=o:delete t[r];}O.restNodesByApi=t;},vr=e=>{if(typeof e!="string")return;let t=e.trim();!t||/[\u0000-\u001f\u007f]/.test(t)||(O.userAgent=t);},Ar=e=>{if(!e||typeof e!="object")return;let t=O.resilience,r=o=>typeof o=="boolean",n=o=>typeof o=="number"&&Number.isFinite(o)&&o>0;r(e.adaptiveTimeout)&&(t.adaptiveTimeout=e.adaptiveTimeout),n(e.adaptiveTimeoutFloorMs)&&(t.adaptiveTimeoutFloorMs=Math.max(e.adaptiveTimeoutFloorMs,2e3)),n(e.adaptiveTimeoutFactor)&&(t.adaptiveTimeoutFactor=e.adaptiveTimeoutFactor),r(e.hedge)&&(t.hedge=e.hedge),n(e.hedgeDelayFloorMs)&&(t.hedgeDelayFloorMs=e.hedgeDelayFloorMs),n(e.hedgeDelayFactor)&&(t.hedgeDelayFactor=e.hedgeDelayFactor),n(e.hedgeBucketCapacity)&&(t.hedgeBucketCapacity=e.hedgeBucketCapacity),n(e.hedgeRefillPerSuccess)&&(t.hedgeRefillPerSuccess=Math.min(e.hedgeRefillPerSuccess,1)),n(e.totalBudgetFactor)&&(t.totalBudgetFactor=Math.max(e.totalBudgetFactor,1));};var Re=class e{data;recovery;compressed;constructor(t,r,n){this.data=t,this.recovery=r,this.compressed=n??true;}static from(t){if(typeof t=="string"){let r=hexToBytes(t),n=parseInt(bytesToHex(r.subarray(0,1)),16)-31,o=true;n<0&&(o=false,n=n+4);let i=r.subarray(1);return new e(i,n,o)}else throw new Error("Expected string for data")}toBuffer(){let t=new Uint8Array(65).fill(0);return this.compressed?t[0]=this.recovery+31&255:t[0]=this.recovery+27&255,t.set(this.data,1),t}customToString(){return bytesToHex(this.toBuffer())}toString(){return this.customToString()}getPublicKey(t){if(t instanceof Uint8Array&&t.length!==32||typeof t=="string"&&t.length!==64)throw new Error("Expected a valid sha256 hash as message");typeof t=="string"&&(t=hexToBytes(t));let r=secp256k1.Signature.fromBytes(this.data,"compact"),n=new secp256k1.Signature(r.r,r.s,this.recovery);return new Y(n.recoverPublicKey(t).toBytes())}};var Y=class e{key;prefix;constructor(t,r){this.key=t,this.prefix=r??O.address_prefix;}static fromString(t){let r=O.address_prefix;if(typeof t!="string"||t.length<=r.length)throw new Error("Invalid public key");let n=t.slice(0,r.length);if(n!==r)throw new Error(`Public key must start with ${r}`);let o;try{o=Mn.decode(t.slice(r.length));}catch{throw new Error("Invalid public key encoding")}if(o.length!==37)throw new Error("Invalid public key length");let i=o.subarray(0,33),s=o.subarray(33,37),a=ripemd160(i).subarray(0,4);if(!Ns(s,a))throw new Error("Public key checksum mismatch");try{secp256k1.Point.fromBytes(i);}catch{throw new Error("Invalid public key")}return new e(i,n)}static from(t){return t instanceof e?t:e.fromString(t)}verify(t,r){return typeof r=="string"&&(r=Re.from(r)),secp256k1.verify(r.data,t,this.key,{prehash:false,format:"compact"})}toString(){return Ks(this.key,this.prefix)}toJSON(){return this.toString()}inspect(){return `PublicKey: ${this.toString()}`}},Ks=(e,t)=>{let r=ripemd160(e);return t+Mn.encode(new Uint8Array([...e,...r.subarray(0,4)]))},Ns=(e,t)=>{if(e.byteLength!==t.byteLength)return false;for(let r=0;r{throw new Error("Void can not be serialized")},b=(e,t)=>{e.writeVString(t);},Qs=(e,t)=>{e.writeInt16(t);},Qn=(e,t)=>{e.writeInt64(t);},Bn=(e,t)=>{e.writeUint8(t);},pe=(e,t)=>{e.writeUint16(t);},X=(e,t)=>{e.writeUint32(t);},Un=(e,t)=>{e.writeUint64(t);},be=(e,t)=>{e.writeByte(t?1:0);},Hn=e=>(t,r)=>{let[n,o]=r;t.writeVarint32(n),e[n](t,o);},I=(e,t)=>{let r=Dt.from(t),n=r.getPrecision();e.writeInt64(Math.round(r.amount*Math.pow(10,n))),e.writeUint8(n);for(let o=0;o<7;o++)e.writeUint8(r.symbol.charCodeAt(o)||0);},ke=(e,t)=>{e.writeUint32(Math.floor(new Date(t+"Z").getTime()/1e3));},ye=(e,t)=>{t===null||typeof t=="string"&&t.slice(-39)==="1111111111111111111111111111111114T1Anm"?e.append(new Uint8Array(33).fill(0)):e.append(Y.from(t).key);},Vn=(e=null)=>(t,r)=>{r=Kt.from(r);let n=r.buffer.length;if(e){if(n!==e)throw new Error(`Unable to serialize binary. Expected ${e} bytes, got ${n}`)}else t.writeVarint32(n);t.append(r.buffer);},jn=Vn(),Pr=(e,t)=>(r,n)=>{r.writeVarint32(n.length);for(let[o,i]of n)e(r,o),t(r,i);},V=e=>(t,r)=>{t.writeVarint32(r.length);for(let n of r)e(t,n);},le=e=>(t,r)=>{for(let[n,o]of e)try{o(t,r[n]);}catch(i){throw i.message=`${n}: ${i.message}`,i}},Me=e=>(t,r)=>{r!==void 0?(t.writeByte(1),e(t,r)):t.writeByte(0);},W=le([["weight_threshold",X],["account_auths",Pr(b,pe)],["key_auths",Pr(ye,pe)]]),Us=le([["account",b],["weight",pe]]),xr=le([["base",I],["quote",I]]),Hs=le([["account_creation_fee",I],["maximum_block_size",X],["hbd_interest_rate",pe]]),k=(e,t)=>{let r=le(t);return (n,o)=>{n.writeVarint32(e),r(n,o);}},E={};E.account_create=k(R.account_create,[["fee",I],["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b]]);E.account_create_with_delegation=k(R.account_create_with_delegation,[["fee",I],["delegation",I],["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b],["extensions",V(se)]]);E.account_update=k(R.account_update,[["account",b],["owner",Me(W)],["active",Me(W)],["posting",Me(W)],["memo_key",ye],["json_metadata",b]]);E.account_witness_proxy=k(R.account_witness_proxy,[["account",b],["proxy",b]]);E.account_witness_vote=k(R.account_witness_vote,[["account",b],["witness",b],["approve",be]]);E.cancel_transfer_from_savings=k(R.cancel_transfer_from_savings,[["from",b],["request_id",X]]);E.change_recovery_account=k(R.change_recovery_account,[["account_to_recover",b],["new_recovery_account",b],["extensions",V(se)]]);E.claim_account=k(R.claim_account,[["creator",b],["fee",I],["extensions",V(se)]]);E.claim_reward_balance=k(R.claim_reward_balance,[["account",b],["reward_hive",I],["reward_hbd",I],["reward_vests",I]]);E.comment=k(R.comment,[["parent_author",b],["parent_permlink",b],["author",b],["permlink",b],["title",b],["body",b],["json_metadata",b]]);E.comment_options=k(R.comment_options,[["author",b],["permlink",b],["max_accepted_payout",I],["percent_hbd",pe],["allow_votes",be],["allow_curation_rewards",be],["extensions",V(Hn([le([["beneficiaries",V(Us)]])]))]]);E.convert=k(R.convert,[["owner",b],["requestid",X],["amount",I]]);E.create_claimed_account=k(R.create_claimed_account,[["creator",b],["new_account_name",b],["owner",W],["active",W],["posting",W],["memo_key",ye],["json_metadata",b],["extensions",V(se)]]);E.custom=k(R.custom,[["required_auths",V(b)],["id",pe],["data",jn]]);E.custom_json=k(R.custom_json,[["required_auths",V(b)],["required_posting_auths",V(b)],["id",b],["json",b]]);E.decline_voting_rights=k(R.decline_voting_rights,[["account",b],["decline",be]]);E.delegate_vesting_shares=k(R.delegate_vesting_shares,[["delegator",b],["delegatee",b],["vesting_shares",I]]);E.delete_comment=k(R.delete_comment,[["author",b],["permlink",b]]);E.escrow_approve=k(R.escrow_approve,[["from",b],["to",b],["agent",b],["who",b],["escrow_id",X],["approve",be]]);E.escrow_dispute=k(R.escrow_dispute,[["from",b],["to",b],["agent",b],["who",b],["escrow_id",X]]);E.escrow_release=k(R.escrow_release,[["from",b],["to",b],["agent",b],["who",b],["receiver",b],["escrow_id",X],["hbd_amount",I],["hive_amount",I]]);E.escrow_transfer=k(R.escrow_transfer,[["from",b],["to",b],["hbd_amount",I],["hive_amount",I],["escrow_id",X],["agent",b],["fee",I],["json_meta",b],["ratification_deadline",ke],["escrow_expiration",ke]]);E.feed_publish=k(R.feed_publish,[["publisher",b],["exchange_rate",xr]]);E.limit_order_cancel=k(R.limit_order_cancel,[["owner",b],["orderid",X]]);E.limit_order_create=k(R.limit_order_create,[["owner",b],["orderid",X],["amount_to_sell",I],["min_to_receive",I],["fill_or_kill",be],["expiration",ke]]);E.limit_order_create2=k(R.limit_order_create2,[["owner",b],["orderid",X],["amount_to_sell",I],["exchange_rate",xr],["fill_or_kill",be],["expiration",ke]]);E.recover_account=k(R.recover_account,[["account_to_recover",b],["new_owner_authority",W],["recent_owner_authority",W],["extensions",V(se)]]);E.request_account_recovery=k(R.request_account_recovery,[["recovery_account",b],["account_to_recover",b],["new_owner_authority",W],["extensions",V(se)]]);E.reset_account=k(R.reset_account,[["reset_account",b],["account_to_reset",b],["new_owner_authority",W]]);E.set_reset_account=k(R.set_reset_account,[["account",b],["current_reset_account",b],["reset_account",b]]);E.set_withdraw_vesting_route=k(R.set_withdraw_vesting_route,[["from_account",b],["to_account",b],["percent",pe],["auto_vest",be]]);E.transfer=k(R.transfer,[["from",b],["to",b],["amount",I],["memo",b]]);E.transfer_from_savings=k(R.transfer_from_savings,[["from",b],["request_id",X],["to",b],["amount",I],["memo",b]]);E.transfer_to_savings=k(R.transfer_to_savings,[["from",b],["to",b],["amount",I],["memo",b]]);E.transfer_to_vesting=k(R.transfer_to_vesting,[["from",b],["to",b],["amount",I]]);E.vote=k(R.vote,[["voter",b],["author",b],["permlink",b],["weight",Qs]]);E.withdraw_vesting=k(R.withdraw_vesting,[["account",b],["vesting_shares",I]]);E.witness_update=k(R.witness_update,[["owner",b],["url",b],["block_signing_key",ye],["props",Hs],["fee",I]]);E.witness_set_properties=k(R.witness_set_properties,[["owner",b],["props",Pr(b,jn)],["extensions",V(se)]]);E.account_update2=k(R.account_update2,[["account",b],["owner",Me(W)],["active",Me(W)],["posting",Me(W)],["memo_key",Me(ye)],["json_metadata",b],["posting_json_metadata",b],["extensions",V(se)]]);E.create_proposal=k(R.create_proposal,[["creator",b],["receiver",b],["start_date",ke],["end_date",ke],["daily_pay",I],["subject",b],["permlink",b],["extensions",V(se)]]);E.update_proposal_votes=k(R.update_proposal_votes,[["voter",b],["proposal_ids",V(Qn)],["approve",be],["extensions",V(se)]]);E.remove_proposal=k(R.remove_proposal,[["proposal_owner",b],["proposal_ids",V(Qn)],["extensions",V(se)]]);var Vs=le([["end_date",ke]]);E.update_proposal=k(R.update_proposal,[["proposal_id",Un],["creator",b],["daily_pay",I],["subject",b],["permlink",b],["extensions",V(Hn([se,Vs]))]]);E.collateralized_convert=k(R.collateralized_convert,[["owner",b],["requestid",X],["amount",I]]);E.recurrent_transfer=k(R.recurrent_transfer,[["from",b],["to",b],["amount",I],["memo",b],["recurrence",pe],["executions",pe],["extensions",V(le([["type",Bn],["value",le([["pair_id",Bn]])]]))]]);var js=(e,t)=>{let r=E[t[0]];if(!r)throw new Error(`No serializer for operation: ${t[0]}`);try{r(e,t[1]);}catch(n){throw n.message=`${t[0]}: ${n.message}`,n}},Ls=le([["ref_block_num",pe],["ref_block_prefix",X],["expiration",ke],["operations",V(js)],["extensions",V(b)]]),$s=le([["from",ye],["to",ye],["nonce",Un],["check",X],["encrypted",Vn()]]),de={Asset:I,Memo:$s,Price:xr,PublicKey:ye,String:b,Transaction:Ls,UInt16:pe,UInt32:X};var lt=e=>new Promise(t=>setTimeout(t,e));var Jn=(()=>{try{return !(typeof navigator<"u"&&navigator.product==="ReactNative")&&typeof process<"u"&&process.versions!=null&&process.versions.node!=null}catch{return false}})();function Rr(){return Jn?{"User-Agent":O.userAgent}:{}}var Fe={served:0,fallback:0,skipped:0,fallbackByReason:{status:0,rpcerror:0,timeout:0,transport:0,validate:0,parse:0}},qe=class extends Error{constructor(r,n){super(n);this.reason=r;}reason},Ln=e=>e instanceof Error?e.message:typeof e=="string"?e:String(e),Nt=0,$n=0;async function Ws(e,t,r,n,o,i){let s=t.indexOf(".");if(s<=0||s===t.length-1)throw new qe("transport",`method without an api prefix: ${t}`);let{signal:a,cleanup:c}=Tr(Math.min(e.timeoutMs,n)),{signal:p,cleanup:l}=Ut(a,o);try{let m;try{m=await fetch(e.url,{method:"POST",body:JSON.stringify({api:t.slice(0,s),method:t.slice(s+1),params:r}),headers:{"Content-Type":"application/json",...Rr(),...e.headers},signal:p});}catch(g){throw o?.aborted?g:new qe(a.aborted?"timeout":"transport",Ln(g))}if(m.status!==200){try{await m.body?.cancel();}catch{}let g=m.status===502&&(m.headers.get("x-ssr-cache")??"").toUpperCase()==="RPCERROR";throw new qe(g?"rpcerror":"status",g?"proxy relayed a node error":`proxy answered ${m.status}`)}let f;try{f=await m.json();}catch(g){throw o?.aborted?g:new qe(a.aborted?"timeout":"parse",Ln(g))}if(i&&!i(f))throw new qe("validate","proxy result rejected by validator");return f}finally{c(),l();}}var Z=class extends Error{name="RPCError";data;code;stack=void 0;constructor(t){super(t.message),this.code=t.code,"data"in t&&(this.data=t.data);}},Be=class extends Error{node;rateLimitMs;isRateLimit;constructor(t,r,n={}){super(r),this.node=t,this.rateLimitMs=n.rateLimitMs??0,this.isRateLimit=n.isRateLimit??false;}};function Yn(e){if(!e)return 0;let t=Number(e);if(Number.isFinite(t))return t>0?t*1e3:0;let r=Date.parse(e);if(Number.isFinite(r)){let n=r-Date.now();return n>0?n:0}return 0}var Gs=["ECONNREFUSED","ENOTFOUND","EHOSTUNREACH","EAI_AGAIN"],zs=["Failed to fetch","NetworkError when attempting to fetch","Load failed","fetch failed"];function Js(e){if(!e)return "";let t=[String(e.name||""),String(e.message||""),String(e.code||"")],r=e.cause;for(let n=0;r&&n<5;n++)t.push(String(r.code||""),String(r.message||"")),r=r.cause;return t.join(" ")}function Ys(e){if(!e)return false;if(e instanceof Be)return true;if(e instanceof Z)return false;let t=Js(e);return !!(Gs.some(r=>t.includes(r))||zs.some(r=>t.includes(r))||e instanceof SyntaxError||/Unexpected token|JSON\.parse|Unexpected end of JSON/i.test(t))}function Or(e,t){return !!(e===-32603||e<=-32e3&&e>=-32099||e===-32601||e===-32602&&/unable to parse|endpoint data|internal/i.test(t))}function Xn(e){let t=e.indexOf(".");return t>0?e.slice(0,t):e}var Xs=1e4,Zs=6e4,ea=12e4,Wn=2,Gn=6e4,zn=12e4,ta=30,dt=.3,Sr=3,mt=5*6e4,Zn=6e4,eo=1e3,to=2e3,Bt=class{health=new Map;getOrCreate(t){let r=this.health.get(t);return r||(r={consecutiveFailures:0,lastFailureTime:0,rateLimitedUntil:0,rateLimitStreak:0,lastRateLimitAt:0,apiFailures:new Map,headBlock:0,headBlockUpdatedAt:0,ewmaLatencyMs:void 0,latencySampleCount:0,latencyUpdatedAt:0,lastProbeAt:Date.now(),apiLatency:new Map},this.health.set(t,r)),r}recordSuccess(t,r,n,o){let i=this.getOrCreate(t);if(i.consecutiveFailures=0,i.rateLimitStreak=0,r){let s=i.apiFailures.get(r);(!s||!(s.defective&&s.cooldownUntil>Date.now()))&&i.apiFailures.delete(r);}typeof n=="number"&&Number.isFinite(n)&&n>=0&&this.recordLatency(i,n,o??r);}recordSlowFailure(t,r,n){!Number.isFinite(r)||r=Sr&&o-i.updatedAt<=mt?i.ewmaMs:void 0}return this.isLatencyUsable(n,o)?n.ewmaLatencyMs:void 0}recordCensoredLatency(t,r,n){!Number.isFinite(r)||r<50||this.recordLatency(this.getOrCreate(t),r,n);}recordLatency(t,r,n){let o=Date.now();if(t.latencyUpdatedAt>0&&o-t.latencyUpdatedAt>mt&&(t.ewmaLatencyMs=void 0,t.latencySampleCount=0,t.apiLatency.clear()),t.ewmaLatencyMs=t.ewmaLatencyMs===void 0?r:dt*r+(1-dt)*t.ewmaLatencyMs,t.latencySampleCount++,t.latencyUpdatedAt=o,n!==void 0){let i=t.apiLatency.get(n);!i||o-i.updatedAt>mt?t.apiLatency.set(n,{ewmaMs:r,sampleCount:1,updatedAt:o}):(i.ewmaMs=dt*r+(1-dt)*i.ewmaMs,i.sampleCount++,i.updatedAt=o);}}recordFailure(t,r){let n=this.getOrCreate(t);if(r){let o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};(i.cooldownUntil>0&&i.cooldownUntil<=o||i.lastFailureTime>0&&o-i.lastFailureTime>3e4)&&(i.count=0,i.cooldownUntil=0),i.count++,i.lastFailureTime=o,i.count>=Wn&&(i.cooldownUntil=o+Gn),n.apiFailures.set(r,i);}else n.consecutiveFailures++,n.lastFailureTime=Date.now();}recordDefectiveResponse(t,r){let n=this.getOrCreate(t),o=Date.now(),i=n.apiFailures.get(r)??{count:0,cooldownUntil:0,lastFailureTime:0};i.count=Math.max(i.count+1,Wn),i.lastFailureTime=o,i.cooldownUntil=o+Gn,i.defective=true,n.apiFailures.set(r,i);}recordRateLimit(t,r){let n=this.getOrCreate(t),o=Date.now();n.rateLimitStreak>0&&o-n.lastRateLimitAt>ea&&(n.rateLimitStreak=0);let i=typeof r=="number"&&Number.isFinite(r)&&r>0,s=i?r:Math.min(Xs*2**n.rateLimitStreak,Zs);i||n.rateLimitStreak++,n.lastRateLimitAt=o,n.rateLimitedUntil=i?o+s:Math.max(n.rateLimitedUntil,o+s),n.consecutiveFailures++,n.lastFailureTime=o;}recordHeadBlock(t,r){if(!r||!Number.isFinite(r))return;let n=this.getOrCreate(t);n.headBlock=r,n.headBlockUpdatedAt=Date.now();}consensusHeadBlock(){let t=Date.now(),r=[];for(let n of this.health.values())n.headBlock>0&&t-n.headBlockUpdatedAt<=zn&&r.push(n.headBlock);return r.length<2?0:(r.sort((n,o)=>n-o),r[Math.floor((r.length-1)/2)])}isNodeHealthy(t,r){let n=this.health.get(t);if(!n)return true;let o=Date.now();if(n.rateLimitedUntil>o||n.consecutiveFailures>=3&&o-n.lastFailureTime<3e4)return false;if(r){let s=n.apiFailures.get(r);if(s&&s.cooldownUntil>o)return false}let i=this.consensusHeadBlock();return !(i>0&&n.headBlock>0&&o-n.headBlockUpdatedAt<=zn&&i-n.headBlock>ta)}getOrderedNodes(t,r){let n=[],o=[];for(let c of t)this.isNodeHealthy(c,r)?n.push(c):o.push(c);if(n.length<=1)return [...n,...o];let i=Date.now(),s=n.map((c,p)=>({node:c,i:p,score:this.scoreNode(c,i)})).sort((c,p)=>c.score-p.score||c.i-p.i).map(c=>c.node),a=this.pickReprobeCandidate(n,i);return a&&s[0]!==a?[a,...s.filter(c=>c!==a),...o]:[...s,...o]}isLatencyUsable(t,r){return !!t&&t.ewmaLatencyMs!==void 0&&t.latencySampleCount>=Sr&&r-t.latencyUpdatedAt<=mt}scoreNode(t,r){let n=this.health.get(t);return this.isLatencyUsable(n,r)?n.ewmaLatencyMs:eo}pickReprobeCandidate(t,r){let n=r-Zn,o,i=1/0;for(let s of t){let a=this.getOrCreate(s),c=Math.max(a.latencyUpdatedAt,a.lastProbeAt);c<=n&&c=1-1e-9?(this.tokens-=1,true):false}refill(){this.clamp(),this.tokens=Math.min(O.resilience.hedgeBucketCapacity,this.tokens+O.resilience.hedgeRefillPerSuccess);}clamp(){this.tokens>O.resilience.hedgeBucketCapacity&&(this.tokens=O.resilience.hedgeBucketCapacity);}get available(){return this.tokens}reset(t=O.resilience.hedgeBucketCapacity){this.tokens=t;}},Er=new Cr;function Qt(e,t,r,n,o){let i=O.resilience;if(!i.adaptiveTimeout||o)return n;let s=e.getUsableLatencyMs(t,r);return s===void 0?n:Math.ceil(Math.min(n,Math.max(i.adaptiveTimeoutFloorMs,i.adaptiveTimeoutFactor*s)))}function kr(e,t,r,n){r instanceof Be?r.isRateLimit?e.recordRateLimit(t,r.rateLimitMs||void 0):e.recordFailure(t,n):r instanceof Z?e.recordFailure(t,n):e.recordFailure(t);}function ro(e,t,r,n){if(!n||typeof n!="object"||!r.includes("get_dynamic_global_properties"))return;let o=n.head_block_number;typeof o=="number"&&e.recordHeadBlock(t,o);}function ra(){if(typeof DOMException<"u")return new DOMException("The operation was aborted due to timeout","TimeoutError");let e=new Error("The operation was aborted due to timeout");return e.name="TimeoutError",e}function Tr(e){if(e=Math.ceil(e),typeof AbortSignal.timeout=="function")return {signal:AbortSignal.timeout(e),cleanup:()=>{}};let t=new AbortController,r=setTimeout(()=>t.abort(ra()),e);return {signal:t.signal,cleanup:()=>clearTimeout(r)}}function Ut(e,t){if(!t)return {signal:e,cleanup:()=>{}};if(typeof AbortSignal.any=="function")return {signal:AbortSignal.any([e,t]),cleanup:()=>{}};let r=new AbortController;if(e.aborted)return r.abort(e.reason),{signal:r.signal,cleanup:()=>{}};if(t.aborted)return r.abort(t.reason),{signal:r.signal,cleanup:()=>{}};let n=()=>r.abort(e.reason),o=()=>r.abort(t.reason);e.addEventListener("abort",n,{once:true}),t.addEventListener("abort",o,{once:true});let i=()=>{e.removeEventListener("abort",n),t.removeEventListener("abort",o);};return {signal:r.signal,cleanup:i}}var ft=async(e,t,r,n=O.timeout,o=false,i)=>{let s=Math.floor(Math.random()*1e8),a={jsonrpc:"2.0",method:t,params:r,id:s},{signal:c,cleanup:p}=Tr(n),{signal:l,cleanup:m}=Ut(c,i),f=()=>{p(),m();};try{let g=await fetch(e,{method:"POST",body:JSON.stringify(a),headers:{"Content-Type":"application/json",...Rr()},signal:l});if(g.status===429)throw new Be(e,"HTTP 429 Rate Limited",{rateLimitMs:Yn(g.headers.get("Retry-After")),isRateLimit:!0});if(g.status>=500&&g.status<600)throw new Be(e,`HTTP ${g.status} from ${e}`);let _=await g.json();if(!_||typeof _.id>"u"||_.id!==s||_.jsonrpc!=="2.0")throw new Error("JSONRPC id mismatch");if("result"in _)return _.result;if("error"in _){let A=_.error;throw "message"in A&&"code"in A?new Z(A):_.error}throw _}catch(g){if(g instanceof Z||g instanceof Be||i?.aborted)throw g;if(o)return ft(e,t,r,n,false,i);throw g}finally{f();}};function Mt(){return lt(50+Math.random()*50)}function na(e){let{method:t,params:r,api:n,primary:o,hedgePool:i,callerTimeout:s,explicitTimeout:a,deadlineAt:c,externalSignal:p,onHedgeFired:l,validate:m}=e;return new Promise((f,g)=>{let _=false,A=0,x=false,C=false,F,ce,Ee=0,P=[],H=$=>{if(!_){_=true,ce!==void 0&&(clearTimeout(ce),ce=void 0);for(let q of P)q.signal.aborted||q.abort();$();}},L=($,q)=>{A++;let ge=new AbortController;P.push(ge);let pt=Ut(ge.signal,p),qs=Qt(j,$,t,s,a),gr=Date.now();q||(Ee=gr),ft($,t,r,qs,false,pt.signal).then(ie=>{if(pt.cleanup(),A--,q||(C=true),!_){if(m&&!m(ie)){if(j.recordDefectiveResponse($,n),F=new Error(`[hive-tx] response validation failed for ${t} from ${$}`),!q&&!x){H(()=>g(F));return}A===0&&H(()=>g(F));return}j.recordSuccess($,n,Date.now()-gr,t),ro(j,$,t,ie),q?C||j.recordCensoredLatency(o,Date.now()-Ee,t):x||Er.refill(),H(()=>f(ie));}}).catch(ie=>{if(pt.cleanup(),A--,q||(C=true),!_){if(p?.aborted){H(()=>g(ie));return}if(ie instanceof Z&&!Or(ie.code,ie.message)){H(()=>g(ie));return}if(kr(j,$,ie,n),j.recordSlowFailure($,Date.now()-gr,t),F=ie,!q&&!x){H(()=>g(ie));return}A===0&&H(()=>g(F));}});};L(o,false);let Q=j.getUsableLatencyMs(o,t)??0,J=Qt(j,o,t,s,a),z=Math.min(Math.max(O.resilience.hedgeDelayFloorMs,O.resilience.hedgeDelayFactor*Q),.8*J);ce=setTimeout(()=>{if(ce=void 0,_||p?.aborted||Date.now()>=c)return;let $=i.filter(ge=>j.isNodeHealthy(ge,n));if($.length===0)return;let q=$[Math.floor(Math.random()*$.length)];Er.trySpend()&&(x=true,l(q),L(q,true));},z);})}var y=async(e,t=[],r,n=O.retry,o,i)=>{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an array");if(O.nodes.length===0)throw new Error("config.nodes is empty");let s=r!==void 0,a=r??O.timeout,c=Xn(e),p=It;if(p&&Jn&&p.methodSet.has(e))if(Date.now()<$n)Fe.skipped++;else try{let g=await Ws(p,e,t,a,o,i);return Fe.served++,Nt=0,g}catch(g){if(o?.aborted)throw g;Fe.fallback++;let _=g instanceof qe?g.reason:"transport";Fe.fallbackByReason[_]=(Fe.fallbackByReason[_]??0)+1,_==="rpcerror"?Nt=0:++Nt>=p.failureThreshold&&($n=Date.now()+p.cooldownMs,Nt=0);}let l=Date.now()+O.resilience.totalBudgetFactor*a,m=new Set,f;for(let g=0;g<=n&&!(g>0&&Date.now()>=l);g++){let _=j.getOrderedNodes(O.nodes,c),A=_.find(F=>!m.has(F));A||(m.clear(),A=_[0]),m.add(A);let x=[];if(O.resilience.hedge&&j.getUsableLatencyMs(A,e)!==void 0&&(x=_.filter(F=>!m.has(F)&&j.isNodeHealthy(F,c)).slice(0,3)),x.length>0)try{return await na({method:e,params:t,api:c,primary:A,hedgePool:x,callerTimeout:a,explicitTimeout:s,deadlineAt:l,externalSignal:o,onHedgeFired:F=>m.add(F),validate:i})}catch(F){if(F instanceof Z&&!Or(F.code,F.message)||o?.aborted)throw F;f=F,g{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an array");if(O.nodes.length===0)throw new Error("config.nodes is empty");let o=Xn(e),i=new Set,s;for(let a=0;a!i.has(l));if(!p)break;if(i.add(p),n?.aborted)throw new Error("Aborted");try{let l=await ft(p,e,t,r,!1,n);return j.recordSuccess(p,o),l}catch(l){if(l instanceof Z||n?.aborted||(kr(j,p,l,o),s=l,!Ys(l)))throw l}}throw s},oa={balance:"/balance-api",hafah:"/hafah-api",hafbe:"/hafbe-api",hivemind:"/hivemind-api",hivesense:"/hivesense-api",reputation:"/reputation-api","nft-tracker":"/nft-tracker-api",hafsql:"/hafsql",status:"/status-api"};async function te(e,t,r,n,o=O.retry,i){if(!Array.isArray(O.restNodes))throw new Error("config.restNodes is not an array");if(O.restNodes.length===0)throw new Error("config.restNodes is empty");let s=n!==void 0,a=n??O.timeout,c=Date.now()+O.resilience.totalBudgetFactor*a,p=`${e}:${t}`,l=O.restNodesByApi?.[e]?.length?O.restNodesByApi[e]:O.restNodes,m=new Set,f,g=false;for(let _=0;_<=o&&!(_>0&&Date.now()>=c);_++){let A=Te.getOrderedNodes(l,e),x=A.find(q=>!m.has(q));x||(m.clear(),x=A[0]),m.add(x);let C=x+oa[e],F=t,ce=r||{},Ee=new Set;Object.entries(ce).forEach(([q,ge])=>{F.includes(`{${q}}`)&&(F=F.replace(`{${q}}`,encodeURIComponent(String(ge))),Ee.add(q));});let P=new URL(C+F);if(Object.entries(ce).forEach(([q,ge])=>{Ee.has(q)||(Array.isArray(ge)?ge.forEach(pt=>P.searchParams.append(q,String(pt))):P.searchParams.set(q,String(ge)));}),i?.aborted)throw new Error("Aborted");g=false;let{signal:H,cleanup:L}=Tr(Qt(Te,x,p,a,s)),{signal:Q,cleanup:J}=Ut(H,i),z=()=>{L(),J();},$=Date.now();try{let q=await fetch(P.toString(),{signal:Q,headers:Rr()});if(q.status===404)throw new Error("HTTP 404 - Hint: can happen on wrong params");if(q.status===429)throw Te.recordRateLimit(x,Yn(q.headers.get("Retry-After"))||void 0),g=!0,new Error(`HTTP 429 Rate Limited by ${x}`);if(q.status===503)throw Te.recordFailure(x,e),g=!0,new Error(`HTTP 503 Service Unavailable from ${x}`);if(!q.ok)throw Te.recordFailure(x,e),g=!0,new Error(`HTTP ${q.status} from ${x}`);return Te.recordSuccess(x,e,Date.now()-$,p),q.json()}catch(q){if(q?.message?.includes("HTTP 404")||i?.aborted)throw q;g||Te.recordFailure(x,e),Te.recordSlowFailure(x,Date.now()-$,p),f=q,_{if(!Array.isArray(O.nodes))throw new Error("config.nodes is not an Array");if(r>O.nodes.length)throw new Error("quorum > config.nodes.length");let i=(c=>{let p=[...c];for(let l=p.length-1;l>0;l--){let m=Math.floor(Math.random()*(l+1));[p[l],p[m]]=[p[m],p[l]];}return p})(O.nodes),s=Math.min(r,i.length),a=[];for(;s>0&&i.length>0;){let c=i.splice(0,s),p=[],l=[];for(let f=0;fl.push(g)).catch(()=>{}));await Promise.all(p),a.push(...l);let m=ia(a,r);if(m)return m;if(s=Math.min(r,i.length),s===0)throw new Error("No more nodes available.")}throw new Error("Couldn't reach quorum.")};function ia(e,t){let r=new Map;for(let o of e){let i=JSON.stringify(o);r.has(i)||r.set(i,[]),r.get(i).push(o);}let n=Array.from(r.values()).find(o=>o.length>=t);return n?n[0]:null}var aa=hexToBytes(O.chain_id),Qe=class e{transaction;expiration=6e4;txId;constructor(t){t?.transaction&&(t.transaction instanceof e?(this.transaction=t.transaction.transaction,this.expiration=t.transaction.expiration):this.transaction=t.transaction,this.transaction&&!Array.isArray(this.transaction.signatures)&&(this.transaction.signatures=[]),this.txId=this.digest().txId),t?.expiration&&(this.expiration=t.expiration);}async addOperation(t,r){this.transaction||await this.createTransaction(this.expiration),this.transaction.operations.push([t,r]);}sign(t){if(!this.transaction)throw new Error("First create a transaction by .addOperation()");if(this.transaction){let{digest:r,txId:n}=this.digest();Array.isArray(t)||(t=[t]);for(let o of t){let i=o.sign(r);this.transaction.signatures.push(i.customToString());}return this.txId=n,this.transaction}else throw new Error("No transaction to sign")}async broadcast(t=false){if(!this.transaction)throw new Error("Attempted to broadcast an empty transaction. Add operations by .addOperation()");if(this.transaction.signatures.length===0)throw new Error("Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)");try{await Ye("condenser_api.broadcast_transaction",[this.transaction]);}catch(i){if(!(i instanceof Z&&i.message.includes("Duplicate transaction check failed")))throw i}if(this.txId||(this.txId=this.digest().txId),!t)return {tx_id:this.txId,status:"unknown"};let r=60;await lt(1e3);let n=await this.checkStatus(),o=1;for(;n?.status!=="within_irreversible_block"&&n?.status!=="expired_irreversible"&&n?.status!=="too_old"&&o{let r=await y("condenser_api.get_dynamic_global_properties",[]),n=hexToBytes(r.head_block_id),o=Number(new Uint32Array(n.buffer,n.byteOffset+4,1)[0]),i=new Date(Date.now()+t).toISOString().slice(0,-5);this.transaction={expiration:i,extensions:[],operations:[],ref_block_num:r.head_block_number&65535,ref_block_prefix:o,signatures:[]};}};var uo=new Uint8Array([128]),U=class e{key;constructor(t){this.key=t;try{secp256k1.getPublicKey(t);}catch{throw new Error("invalid private key")}}static from(t){return typeof t=="string"?e.fromString(t):new e(t)}static fromString(t){return new e(la(t).subarray(1))}static fromSeed(t){if(typeof t=="string")if(/^[0-9a-fA-F]+$/.test(t))t=hexToBytes(t);else {let n=[];for(let o=0;o>6,128|i&63);else if(i>=55296&&i<=56319&&o+1>18,128|i>>12&63,128|i>>6&63,128|i&63);}else n.push(224|i>>12,128|i>>6&63,128|i&63);}t=new Uint8Array(n);}return new e(sha256(t))}static fromLogin(t,r,n="active"){let o=t+n+r;return e.fromSeed(o)}sign(t){let r=secp256k1.sign(t,this.key,{extraEntropy:true,format:"recovered",prehash:false}),n=parseInt(bytesToHex(r.subarray(0,1)),16);return Re.from((n+31).toString(16)+bytesToHex(r.subarray(1)))}createPublic(t){return new Y(secp256k1.getPublicKey(this.key),t)}toString(){return pa(new Uint8Array([...uo,...this.key]))}inspect(){let t=this.toString();return `PrivateKey: ${t.slice(0,6)}...${t.slice(-6)}`}getSharedSecret(t){let r=secp256k1.getSharedSecret(this.key,t.key);return sha512(r.subarray(1))}static randomKey(){return new e(secp256k1.keygen().secretKey)}},co=e=>sha256(sha256(e)),pa=e=>{let t=co(e);return Mn.encode(new Uint8Array([...e,...t.slice(0,4)]))},la=e=>{let t=Mn.decode(e);if(!so(t.slice(0,1),uo))throw new Error("Private key network id mismatch");let r=t.slice(-4),n=t.slice(0,-4),o=co(n).slice(0,4);if(!so(r,o))throw new Error("Private key checksum mismatch");return n},so=(e,t)=>{if(e===t)return true;if(e.byteLength!==t.byteLength)return false;let r=e.byteLength,n=0;for(;nfo(e,t,n,r),mo=(e,t,r,n,o)=>fo(e,t,r,n,o).message,fo=(e,t,r,n,o)=>{let i=r,s=e.getSharedSecret(t),a=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);a.writeUint64(i),a.append(s),a.flip();let c=sha512(new Uint8Array(a.toBuffer())),p=c.subarray(32,48),l=c.subarray(0,32),m=sha256(c).subarray(0,4),f=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);f.append(m),f.flip();let g=f.readUint32();if(o!==void 0){if(g!==o)throw new Error("Invalid key");n=ga(n,l,p);}else n=ya(n,l,p);return {nonce:i,message:n,checksum:g}},ga=(e,t,r)=>{let n=e;return n=cbc(t,r).decrypt(n),n},ya=(e,t,r)=>{let n=e;return n=cbc(t,r).encrypt(n),n},qr=null,ha=()=>{if(qr===null){let r=secp256k1.utils.randomSecretKey();qr=r[0]<<8|r[1];}let e=BigInt(Date.now()),t=++qr%65536;return e=e<{let t=Pa(e,33);return new Y(t)},wa=e=>e.readUint64(),ba=e=>e.readUint32(),va=e=>{let t=e.readVarint32(),r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())},Aa=e=>t=>{let r={},n=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);n.append(t),n.flip();for(let[o,i]of e)try{r[o]=i(n);}catch(s){throw s.message=`${o}: ${s.message}`,s}return r};function Pa(e,t){if(e){let r=e.copy(e.offset,e.offset+t);return e.skip(t),new Uint8Array(r.toBuffer())}else throw Error("No buffer found on first parameter")}var xa=Aa([["from",go],["to",go],["nonce",wa],["check",ba],["encrypted",va]]),yo={Memo:xa};var _o=(e,t,r,n)=>{if(!r.startsWith("#"))return r;r=r.substring(1),bo(),e=vo(e),t=Oa(t);let o=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);o.writeVString(r);let i=new Uint8Array(o.copy(0,o.offset).toBuffer()),{nonce:s,message:a,checksum:c}=lo(e,t,i,n),p=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);de.Memo(p,{check:c,encrypted:a,from:e.createPublic(),nonce:s,to:t}),p.flip();let l=new Uint8Array(p.toBuffer());return "#"+Mn.encode(l)},wo=(e,t)=>{if(!t.startsWith("#"))return t;t=t.substring(1),bo(),e=vo(e);let r=yo.Memo(Mn.decode(t)),{from:n,to:o,nonce:i,check:s,encrypted:a}=r,p=e.createPublic().toString()===new Y(n.key).toString()?new Y(o.key):new Y(n.key);r=mo(e,p,i,a,s);let l=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);return l.append(r),l.flip(),"#"+l.readVString()},Vt,bo=()=>{if(Vt===void 0){let e;Vt=true;try{let t="5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw",n=_o(t,"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA","#memo\u7231");e=wo(t,n);}finally{Vt=e==="#memo\u7231";}}if(Vt===false)throw new Error("This environment does not support encryption.")},vo=e=>typeof e=="string"?U.fromString(e):e,Oa=e=>typeof e=="string"?Y.fromString(e):e,Ao={decode:wo,encode:_o};var oe={};kt(oe,{buildWitnessSetProperties:()=>Ta,makeBitMaskFilter:()=>Ra,operations:()=>Ea,validateUsername:()=>Ca});var Ca=e=>{let t="Account name should ";if(!e)return t+"not be empty.";let r=e.length;if(r<3)return t+"be longer.";if(r>16)return t+"be shorter.";/\./.test(e)&&(t="Each account segment should ");let n=e.split("."),o=n.length;for(let i=0;ie.reduce(ka,[BigInt(0),BigInt(0)]).map(t=>t!==BigInt(0)?t.toString():null),ka=([e,t],r)=>r<64?[e|BigInt(1)<{let r={extensions:[],owner:e,props:[]};for(let n of Object.keys(t)){if(t[n]===void 0)continue;let o;switch(n){case "key":case "new_signing_key":o=de.PublicKey;break;case "account_subsidy_budget":case "account_subsidy_decay":case "maximum_block_size":o=de.UInt32;break;case "hbd_interest_rate":o=de.UInt16;break;case "url":o=de.String;break;case "hbd_exchange_rate":o=de.Price;break;case "account_creation_fee":o=de.Asset;break;default:throw new Error(`Unknown witness prop: ${n}`)}r.props.push([n,Fa(o,t[n])]);}return r.props.sort((n,o)=>n[0].localeCompare(o[0])),["witness_set_properties",r]},Fa=(e,t)=>{let r=new D(D.DEFAULT_CAPACITY,D.LITTLE_ENDIAN);return e(r,t),r.flip(),bytesToHex(new Uint8Array(r.toBuffer()))};function zy(e){let t;if(typeof e=="string"){let r=[];for(let n=0;n>6,128|o&63);else if(o>=55296&&o<=56319&&n+1>18,128|o>>12&63,128|o>>6&63,128|o&63);}else r.push(224|o>>12,128|o>>6&63,128|o&63);}t=new Uint8Array(r);}else t=e;return sha256(t)}function Po(e){try{return U.fromString(e),!0}catch{return false}}async function ee(e,t){let r=new Qe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),Ye("condenser_api.broadcast_transaction_synchronous",[r.transaction])}async function xo(e,t){let r=new Qe;for(let n of e)await r.addOperation(n[0],n[1]);return r.sign(t),r.broadcast(false)}var Ia=432e3;function Oo(e,t){let r=Date.now()/1e3-t.last_update_time,n=Number(t.current_mana)+r*e/Ia,o=Math.round(n/e*1e4);return !isFinite(o)||o<0?o=0:o>1e4&&(o=1e4),{current_mana:n,max_mana:e,percentage:o}}function Da(e){let t=parseFloat(e.vesting_shares),r=parseFloat(e.delegated_vesting_shares),n=parseFloat(e.received_vesting_shares),o=parseFloat(e.vesting_withdraw_rate),i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t-s-r+n}function Ir(e){let t=Da(e)*1e6;return Oo(t,e.voting_manabar)}function jt(e){return Oo(Number(e.max_rc),e.rc_manabar)}var So=(c=>(c.COMMON="common",c.INFO="info",c.INSUFFICIENT_RESOURCE_CREDITS="insufficient_resource_credits",c.MISSING_AUTHORITY="missing_authority",c.TOKEN_EXPIRED="token_expired",c.NETWORK="network",c.TIMEOUT="timeout",c.VALIDATION="validation",c))(So||{});function Xe(e){let t=e?.error_description?String(e.error_description):"",r=e?.message?String(e.message):"",n=e?.error?String(e.error):"",o=t||r||String(e||""),i=a=>!!(n&&a.test(n)||t&&a.test(t)||r&&a.test(r)||o&&a.test(o));if(i(/please wait to transact/i)||i(/insufficient rc/i)||i(/rc mana|rc account|resource credits/i))return {message:"Insufficient Resource Credits. Please wait or power up.",type:"insufficient_resource_credits",originalError:e};if(i(/you may only post once every/i))return {message:"Please wait before posting again (minimum 3 second interval between comments).",type:"common",originalError:e};if(i(/your current vote on this comment is identical/i))return {message:"You have already voted with the same weight.",type:"info",originalError:e};if(i(/must claim something/i))return {message:"You must claim rewards before performing this action.",type:"info",originalError:e};if(i(/cannot claim that much vests/i))return {message:"Cannot claim that amount. Please check your pending rewards.",type:"info",originalError:e};if(i(/cannot delete a comment with net positive/i))return {message:"Cannot delete a comment with positive votes.",type:"info",originalError:e};if(i(/children == 0/i))return {message:"Cannot delete a comment with replies.",type:"common",originalError:e};if(i(/comment_cashout/i))return {message:"Cannot modify a comment that has already been paid out.",type:"common",originalError:e};if(i(/votes evaluating for comment that is paid out is forbidden/i))return {message:"Cannot vote on posts that have already been paid out.",type:"common",originalError:e};if(i(/no (active|owner|posting|memo) key available/i))return {message:"Key not available. Please provide your key to sign this operation.",type:"missing_authority",originalError:e};if(i(/missing (required )?active authority/i))return {message:"Missing active authority. This operation requires your active key.",type:"missing_authority",originalError:e};if(i(/missing (required )?owner authority/i))return {message:"Missing owner authority. This operation requires your owner key.",type:"missing_authority",originalError:e};if(i(/missing (required )?posting authority/i))return {message:"Missing posting authority. Please check your login method.",type:"missing_authority",originalError:e};if(n==="invalid_grant"||n==="unauthorized_access"||i(/token expired/i)||i(/invalid token/i)||i(/\bunauthorized\b/i)||i(/\bforbidden\b/i))return {message:"Authentication token expired. Please log in again.",type:"token_expired",originalError:e};if(i(/has already reblogged/i)||i(/already reblogged this post/i))return {message:"You have already reblogged this post.",type:"info",originalError:e};if(i(/duplicate transaction/i))return {message:"This transaction has already been processed.",type:"info",originalError:e};if(i(/econnrefused/i)||i(/connection refused/i)||i(/failed to fetch/i)||i(/\bnetwork[-\s]?(request|error|timeout|unreachable|down|failed)\b/i))return {message:"Network error. Please check your connection and try again.",type:"network",originalError:e};if(i(/timeout/i)||i(/timed out/i))return {message:"Request timed out. Please try again.",type:"timeout",originalError:e};if(i(/account.*does not exist/i)||i(/account not found/i))return {message:"Account not found. Please check the username.",type:"validation",originalError:e};if(i(/invalid memo key/i))return {message:"Invalid memo key. Cannot encrypt message.",type:"validation",originalError:e};if(i(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i))return {message:"Insufficient funds for this transaction.",type:"validation",originalError:e};if(i(/\b(invalid|validation)\b/i))return {message:(e?.message||o).substring(0,150)||"Validation error occurred",type:"validation",originalError:e};if(e?.error_description&&typeof e.error_description=="string")return {message:e.error_description.substring(0,150),type:"common",originalError:e};if(e?.message&&typeof e.message=="string")return {message:e.message.substring(0,150),type:"common",originalError:e};let s;return typeof e=="object"&&e!==null?e.error_description?s=String(e.error_description):e.code?s=`Error code: ${e.code}`:o&&o!=="[object Object]"?s=o.substring(0,150):s="Unknown error occurred":s=o.substring(0,150)||"Unknown error occurred",{message:s,type:"common",originalError:e}}function Ka(e){let t=Xe(e);return [t.message,t.type]}function ve(e){let{type:t}=Xe(e);return t==="missing_authority"||t==="token_expired"}function Na(e){let{type:t}=Xe(e);return t==="insufficient_resource_credits"}function Ma(e){let{type:t}=Xe(e);return t==="info"}function Ba(e){let{type:t}=Xe(e);return t==="network"||t==="timeout"}async function Ae(e,t,r,n,o="posting",i,s,a="async"){let c=n?.adapter;switch(e){case "key":{if(!c)throw new Error("No adapter provided for key-based auth");let p=i;if(p===void 0)switch(o){case "owner":if(c.getOwnerKey)p=await c.getOwnerKey(t);else throw new Error("Owner key not supported by adapter. Owner operations (like account recovery) require master password login or manual key entry.");break;case "active":c.getActiveKey&&(p=await c.getActiveKey(t));break;case "memo":if(c.getMemoKey)p=await c.getMemoKey(t);else throw new Error("Memo key not supported by adapter. Use memo encryption methods instead.");break;default:p=await c.getPostingKey(t);break}if(!p)throw new Error(`No ${o} key available for ${t}`);let l=U.fromString(p);return a==="async"?await xo(r,l):await ee(r,l)}case "hiveauth":{if(!c?.broadcastWithHiveAuth)throw new Error("HiveAuth not supported by adapter");return await c.broadcastWithHiveAuth(t,r,o)}case "hivesigner":{if(!c)throw new Error("No adapter provided for HiveSigner auth");if(o!=="posting"){if(c.broadcastWithHiveSigner)return await c.broadcastWithHiveSigner(t,r,o);throw new Error(`HiveSigner access token cannot sign ${o} operations. No platform broadcast available.`)}let p=s!==void 0?s:await c.getAccessToken(t);if(p)try{return (await new Co.Client({accessToken:p}).broadcast(r)).result}catch(l){if(c.broadcastWithHiveSigner&&ve(l))return await c.broadcastWithHiveSigner(t,r,o);throw l}if(c.broadcastWithHiveSigner)return await c.broadcastWithHiveSigner(t,r,o);throw new Error(`No access token available for ${t}`)}case "keychain":{if(!c?.broadcastWithKeychain)throw new Error("Keychain not supported by adapter");return await c.broadcastWithKeychain(t,r,o)}case "custom":{if(!n?.broadcast)throw new Error("No custom broadcast function provided");return await n.broadcast(r,o)}default:throw new Error(`Unknown auth method: ${e}`)}}async function Ua(e,t,r,n="posting",o="async"){let i=r?.adapter;if(i?.getLoginType){let l=await i.getLoginType(e,n);if(l){let m=i.hasPostingAuthorization?await i.hasPostingAuthorization(e):false;if(n==="posting"&&m&&l==="key")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to key:",f);}if(n==="posting"&&m&&l==="keychain")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to keychain/snap:",f);}if(n==="posting"&&m&&l==="hiveauth")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(f){if(!ve(f))throw f;console.warn("[SDK] HiveSigner token auth failed, falling back to HiveAuth:",f);}try{return await Ae(l,e,t,r,n,void 0,void 0,o)}catch(f){if(ve(f)&&i.showAuthUpgradeUI&&(n==="posting"||n==="active")){let g=t.length>0?t[0][0]:"unknown",_=await i.showAuthUpgradeUI(n,g);if(!_)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await Ae(_,e,t,r,n,void 0,void 0,o)}throw f}}if(n==="posting")try{return await Ae("hivesigner",e,t,r,n,void 0,void 0,o)}catch(m){if(ve(m)&&i.showAuthUpgradeUI){let f=t.length>0?t[0][0]:"unknown",g=await i.showAuthUpgradeUI(n,f);if(!g)throw new Error(`No login type available for ${e}. Please log in again.`);return await Ae(g,e,t,r,n,void 0,void 0,o)}throw m}else if(n==="active"&&i.showAuthUpgradeUI){let m=t.length>0?t[0][0]:"unknown",f=await i.showAuthUpgradeUI(n,m);if(!f)throw new Error(`Operation requires ${n} authority. User declined alternate auth.`);return await Ae(f,e,t,r,n,void 0,void 0,o)}}let s=r?.fallbackChain??["key","hiveauth","hivesigner","keychain","custom"],a=new Map;for(let l of s)try{let m=!1,f="",g,_;switch(l){case "key":if(!i)m=!0,f="No adapter provided";else {let A;switch(n){case "owner":i.getOwnerKey&&(A=await i.getOwnerKey(e));break;case "active":i.getActiveKey&&(A=await i.getActiveKey(e));break;case "memo":i.getMemoKey&&(A=await i.getMemoKey(e));break;default:A=await i.getPostingKey(e);break}A?g=A:(m=!0,f=`No ${n} key available`);}break;case "hiveauth":i?.broadcastWithHiveAuth||(m=!0,f="HiveAuth not supported by adapter");break;case "hivesigner":if(!i)m=!0,f="No adapter provided";else {let A=await i.getAccessToken(e);A&&(_=A);}break;case "keychain":i?.broadcastWithKeychain||(m=!0,f="Keychain not supported by adapter");break;case "custom":r?.broadcast||(m=!0,f="No custom broadcast function provided");break}if(m){a.set(l,new Error(`Skipped: ${f}`));continue}return await Ae(l,e,t,r,n,g,_,o)}catch(m){if(a.set(l,m),!ve(m))throw m}if(!Array.from(a.values()).some(l=>!l.message.startsWith("Skipped:"))){let l=Array.from(a.entries()).map(([m,f])=>`${m}: ${f.message}`).join(", ");throw new Error(`[SDK][Broadcast] No auth methods attempted for ${e}. ${l}`)}let p=Array.from(a.entries()).map(([l,m])=>`${l}: ${m.message}`).join(", ");throw new Error(`[SDK][Broadcast] All auth methods failed for ${e}. Errors: ${p}`)}function v(e=[],t,r,n=()=>{},o,i="posting",s){let a=s?.broadcastMode??"async";return useMutation({onSuccess:n,onMutate:s?.onMutate,onError:s?.onError,onSettled:s?.onSettled,mutationKey:[...e,t],mutationFn:async c=>{if(!t)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let p=r(c);try{if(o?.enableFallback!==!1&&o?.adapter)return await Ua(t,p,o,i,a);if(o?.broadcast)return await o.broadcast(p,i);let l=o?.postingKey;if(l){if(i!=="posting")throw new Error(`[SDK][Broadcast] Legacy auth only supports posting authority, but '${i}' was requested. Use AuthContextV2 with an adapter for ${i} operations.`);let f=U.fromString(l);return await ee(p,f)}let m=o?.accessToken;if(m)return (await new Co.Client({accessToken:m}).broadcast(p)).result;throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}catch(l){throw l instanceof Z?new Error(l.message):l}}})}async function Eo(e,t,r,n){if(!e)throw new Error("[Core][Broadcast] Attempted to call broadcast API with anon user");let o={id:t,required_auths:[],required_posting_auths:[e],json:JSON.stringify(r)};if(n?.broadcast)return n.broadcast([["custom_json",o]],"posting");let i=n?.postingKey;if(i){let c=U.fromString(i);return ee([["custom_json",o]],c)}let s=n?.accessToken;if(s)return (await new Co.Client({accessToken:s}).customJson([],[e],t,JSON.stringify(r))).result;let a=n?.adapter;if(a){let c=[["custom_json",o]];if(n?.loginType==="keychain"&&a.broadcastWithKeychain)return a.broadcastWithKeychain(e,c,"posting");if(n?.loginType==="hiveauth"&&a.broadcastWithHiveAuth)return a.broadcastWithHiveAuth(e,c,"posting")}throw new Error("[SDK][Broadcast] \u2013 cannot broadcast w/o posting key or token")}var lh=4e3;function S(e,t,r){if(e?.invalidateQueries){if(t==="sync")return e.invalidateQueries(r);setTimeout(()=>e.invalidateQueries?.(r),4e3);}}function Pe(e,t){let r=AbortSignal.timeout(e);if(!t)return r;if(typeof AbortSignal.any=="function")return AbortSignal.any([t,r]);let n=new AbortController,o=()=>{let i=t.aborted?t.reason:r.reason;n.abort(i),t.removeEventListener("abort",o),r.removeEventListener("abort",o);};return t.aborted?n.abort(t.reason):r.aborted?n.abort(r.reason):(t.addEventListener("abort",o,{once:true}),r.addEventListener("abort",o,{once:true})),n.signal}var Ue=(()=>{try{return process.env?.NODE_ENV==="development"}catch{return false}})(),ja=()=>{try{return process.env?.VITE_HELIUS_API_KEY}catch{return}},xe=1e4,Ro=120*1e3,Lt,La;function $a(){return Lt?Lt():La??=new QueryClient}var d={privateApiHost:"https://ecency.com",newsletterHost:void 0,defaultObserver:"ecency",clientId:"ecency-sdk",imageHost:"https://i.ecency.com",get hiveNodes(){return O.nodes},heliusApiKey:ja(),get queryClient(){return $a()},set queryClient(e){Lt=()=>e;},pollsApiHost:"https://poll.ecency.com",plausibleHost:"https://pl.ecency.com",dmcaAccounts:[],dmcaTags:[],dmcaPatterns:[],dmcaTagRegexes:[],dmcaPatternRegexes:[],_dmcaInitialized:false},B;(Ee=>{function e(P){d.queryClient=P;}Ee.setQueryClient=e;function t(P){Lt=P;}Ee.setQueryClientResolver=t;function r(P){d.privateApiHost=P;}Ee.setPrivateApiHost=r;function n(P){d.newsletterHost=P;}Ee.setNewsletterHost=n;function o(P){d.clientId=P;}Ee.setClientId=o;function i(P){if(typeof P!="string"||P.trim()==="")throw new Error("setDefaultObserver requires a non-empty Hive account. There is no empty-string opt-out; observer resolution would fall back to the post author while caching under an empty key.");d.defaultObserver=P;}Ee.setDefaultObserver=i;function s(){return d.privateApiHost?d.privateApiHost:typeof window<"u"&&window.location?.origin?window.location.origin:"https://ecency.com"}Ee.getValidatedBaseUrl=s;function a(P){d.pollsApiHost=P;}Ee.setPollsApiHost=a;function c(P){d.imageHost=P;}Ee.setImageHost=c;function p(P){_r(P);}Ee.setHiveNodes=p;function l(P){wr(P);}Ee.setRestNodes=l;function m(P){br(P);}Ee.setRestNodesByApi=m;function f(P){vr(P);}Ee.setUserAgent=f;function g(P){Ar(P);}Ee.setResilience=g;function _(P){yr(P);}Ee.setServerRpcProxy=_;function A(){return Fe}Ee.getServerRpcProxyStats=A;function x(P){if(/(\([^)]*[*+{][^)]*\))[*+{]/.test(P))return {safe:false,reason:"nested quantifiers detected"};if(/\([^|)]*\|[^)]*\)[*+{]/.test(P))return {safe:false,reason:"alternation with quantifier (potential overlap)"};if(/\([^)]*[*+][^)]*\)[*+]/.test(P))return {safe:false,reason:"repeated quantifiers (catastrophic backtracking risk)"};if(/\.\*\.\*/.test(P)||/\.\+\.\+/.test(P))return {safe:false,reason:"multiple greedy quantifiers on wildcards"};let H=/\.?\{(\d+),(\d+)\}/g,L;for(;(L=H.exec(P))!==null;){let[,Q,J]=L;if(parseInt(J,10)-parseInt(Q,10)>1e3)return {safe:false,reason:`excessive range: {${Q},${J}}`}}return {safe:true}}function C(P){let H=["a".repeat(50)+"x","ab".repeat(50)+"x","x".repeat(100),"aaa".repeat(30)+"bbb".repeat(30)+"x"],L=5;for(let Q of H){let J=Date.now();try{P.test(Q);let z=Date.now()-J;if(z>L)return {safe:!1,reason:`runtime test exceeded ${L}ms (took ${z}ms on input length ${Q.length})`}}catch(z){return {safe:false,reason:`runtime test threw error: ${z}`}}}return {safe:true}}function F(P,H=200){try{if(!P)return Ue&&console.warn("[SDK] DMCA pattern rejected: empty pattern"),null;if(P.length>H)return Ue&&console.warn(`[SDK] DMCA pattern rejected: length ${P.length} exceeds max ${H} - pattern: ${P.substring(0,50)}...`),null;let L=x(P);if(!L.safe)return Ue&&console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${L.reason}) - pattern: ${P.substring(0,50)}...`),null;let Q;try{Q=new RegExp(P);}catch(z){return Ue&&console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${P.substring(0,50)}...`,z),null}let J=C(Q);return J.safe?Q:(Ue&&console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${J.reason}) - pattern: ${P.substring(0,50)}...`),null)}catch(L){return Ue&&console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${P.substring(0,50)}...`,L),null}}function ce(P={}){let H=z=>Array.isArray(z)?z.filter($=>typeof $=="string"):[],L=P||{},Q={accounts:H(L.accounts),tags:H(L.tags),patterns:H(L.posts)};d.dmcaAccounts=Q.accounts,d.dmcaTags=Q.tags,d.dmcaPatterns=Q.patterns,d.dmcaTagRegexes=Q.tags.map(z=>F(z)).filter(z=>z!==null),d.dmcaPatternRegexes=[];let J=Q.tags.length-d.dmcaTagRegexes.length;!d._dmcaInitialized&&Ue&&(console.log("[SDK] DMCA configuration loaded:"),console.log(` - Accounts: ${Q.accounts.length}`),console.log(` - Tag patterns: ${d.dmcaTagRegexes.length}/${Q.tags.length} compiled (${J} rejected)`),console.log(` - Post patterns: ${Q.patterns.length} (using exact string matching)`),J>0&&console.warn(`[SDK] ${J} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`)),d._dmcaInitialized=true;}Ee.setDmcaLists=ce;})(B||={});function Ph(){return new QueryClient({defaultOptions:{queries:{refetchOnWindowFocus:false,refetchOnMount:false}}})}var w=()=>d.queryClient,Ja;(s=>{function e(a){return w().getQueryData(a)}s.getQueryData=e;function t(a){return w().getQueryData(a)}s.getInfiniteQueryData=t;async function r(a){return await w().prefetchQuery(a),e(a.queryKey)}s.prefetchQuery=r;async function n(a){return await w().prefetchInfiniteQuery(a),t(a.queryKey)}s.prefetchInfiniteQuery=n;function o(a){return {prefetch:()=>r(a),getData:()=>e(a.queryKey),useClientQuery:()=>useQuery(a),fetchAndGet:()=>w().fetchQuery(a)}}s.generateClientServerQuery=o;function i(a){return {prefetch:()=>n(a),getData:()=>t(a.queryKey),useClientQuery:()=>useInfiniteQuery(a),fetchAndGet:()=>w().fetchInfiniteQuery(a)}}s.generateClientServerInfiniteQuery=i;})(Ja||={});function Oh(e){return btoa(JSON.stringify(e))}function Sh(e){let t=atob(e);if(t[0]==="{")return JSON.parse(t)}var ko=(n=>(n.HIVE="HIVE",n.HBD="HBD",n.VESTS="VESTS",n))(ko||{}),$t=(e=>(e["@@000000021"]="HIVE",e["@@000000013"]="HBD",e["@@000000037"]="VESTS",e))($t||{});function T(e){if(typeof e=="string"){let t=e.split(" ");return {amount:parseFloat(t[0]),symbol:ko[t[1]]}}else return {amount:parseFloat(e.amount.toString())/Math.pow(10,e.precision),symbol:$t[e.nai]}}var Dr;function h(){if(!Dr){if(typeof globalThis.fetch!="function")throw new Error("[Ecency][SDK] - global fetch is not available");Dr=globalThis.fetch.bind(globalThis);}return Dr}function To(e){return typeof e=="string"?/^hive-\d+$/.test(e):false}function Ya(e){return e&&typeof e=="object"&&"data"in e&&"pagination"in e&&Array.isArray(e.data)}function re(e,t){return Ya(e)?e:{data:Array.isArray(e)?e:[],pagination:{total:Array.isArray(e)?e.length:0,limit:t,offset:0,has_next:false}}}function Ze(e,t){return e/1e6*t}function Fo(e){return e===void 0?true:parseInt(e.split("-")[0],10)<1980}var qo=60*1e3;function Oe(){return queryOptions({queryKey:u.core.dynamicProps(),refetchInterval:qo,staleTime:qo,queryFn:async({signal:e})=>{let[t,r,n,o,i]=await Promise.all([y("condenser_api.get_dynamic_global_properties",[],void 0,void 0,e),y("condenser_api.get_feed_history",[],void 0,void 0,e),y("condenser_api.get_chain_properties",[],void 0,void 0,e),y("condenser_api.get_reward_fund",["post"],void 0,void 0,e),y("database_api.get_hardfork_properties",{},void 0,void 0,e).catch(()=>({current_hardfork_version:"1.28.0",last_hardfork:28}))]),s=T(t.total_vesting_shares).amount,a=T(t.total_vesting_fund_hive).amount,c=0;Number.isFinite(s)&&s!==0&&Number.isFinite(a)&&(c=a/s*1e6);let p=T(r.current_median_history.base).amount,l=T(r.current_median_history.quote).amount,m=parseFloat(o.recent_claims),f=T(o.reward_balance).amount,g=Number(t.vote_power_reserve_rate??0),_=o.author_reward_curve??"linear",A=Number(o.content_constant??0),x=String(i.current_hardfork_version??"0.0.0"),C=Number(i.last_hardfork??0),F=t.hbd_print_rate,ce=t.hbd_interest_rate,Ee=t.head_block_number,P=a,H=s,L=T(t.virtual_supply).amount,Q=t.vesting_reward_percent||0,J=n.account_creation_fee;return {hivePerMVests:c,base:p,quote:l,fundRecentClaims:m,fundRewardBalance:f,votePowerReserveRate:g,authorRewardCurve:_,contentConstant:A,currentHardforkVersion:x,lastHardfork:C,hbdPrintRate:F,hbdInterestRate:ce,headBlock:Ee,totalVestingFund:P,totalVestingShares:H,virtualSupply:L,vestingRewardPercent:Q,accountCreationFee:J,raw:{globalDynamic:t,feedHistory:r,chainProps:n,rewardFund:o,hardforkProps:i}}}})}function Hh(e="post"){return queryOptions({queryKey:u.core.rewardFund(e),queryFn:()=>y("condenser_api.get_reward_fund",[e])})}function Ie(...e){let t=e.length;for(;t>0&&e[t-1]===void 0;)t--;return e.slice(0,t)}var u={posts:{entry:e=>["posts","entry",e],postHeader:(e,t)=>["posts","post-header",e,t],content:(e,t)=>["posts","content",e,t],contentReplies:(e,t)=>["posts","content-replies",e,t],accountPosts:(e,t,r,n)=>["posts","account-posts",e,t,r,n],accountPostsPage:(e,t,r,n,o,i)=>["posts","account-posts-page",e,t,r,n,o,i],userPostVote:(e,t,r)=>["posts","user-vote",e,t,r],reblogs:(e,t)=>["posts","reblogs",e,t],entryActiveVotes:(e,t)=>["posts","entry-active-votes",e,t],rebloggedBy:(e,t)=>["posts","reblogged-by",e,t],tips:(e,t)=>["posts","tips",e,t],normalize:(e,t)=>["posts","normalize",e,t],drafts:e=>["posts","drafts",e],draftsInfinite:(e,t)=>Ie("posts","drafts","infinite",e,t),schedules:e=>["posts","schedules",e],schedulesInfinite:(e,t)=>Ie("posts","schedules","infinite",e,t),fragments:e=>["posts","fragments",e],fragmentsInfinite:(e,t)=>Ie("posts","fragments","infinite",e,t),images:e=>["posts","images",e],galleryImages:e=>["posts","gallery-images",e],imagesInfinite:(e,t)=>Ie("posts","images","infinite",e,t),promoted:e=>["posts","promoted",e],_promotedPrefix:["posts","promoted"],accountPostsBlogPrefix:e=>["posts","account-posts",e,"blog"],postsRanked:(e,t,r,n)=>["posts","posts-ranked",e,t,r,n],postsRankedPage:(e,t,r,n,o,i)=>["posts","posts-ranked-page",e,t,r,n,o,i],discussions:(e,t,r,n)=>["posts","discussions",e,t,r,n],discussion:(e,t,r)=>["posts","discussion",e,t,r],deletedEntry:e=>["posts","deleted-entry",e],commentHistory:(e,t,r)=>["posts","comment-history",e,t,r],trendingTags:()=>["posts","trending-tags"],trendingTagsWithStats:e=>["posts","trending-tags","stats",e],wavesFeed:(e={})=>["posts","waves","feed",e.tag??"",e.following??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],shortsFeed:(e={})=>["posts","waves","shorts",e.tag??"",e.author??"",e.observer??"",e.limit??0,[...e.containers??[]].sort().join(",")],wavesByHost:e=>["posts","waves","by-host",e],wavesByTag:(e,t)=>["posts","waves","by-tag",e,t],wavesFollowing:(e,t)=>["posts","waves","following",e,t],wavesTrendingTags:(e,t)=>["posts","waves","trending-tags",e,t],wavesByAccount:(e,t)=>["posts","waves","by-account",e,t],wavesTrendingAuthors:e=>["posts","waves","trending-authors",e],_prefix:["posts"]},accounts:{full:e=>["get-account-full",e],list:(...e)=>["accounts","list",...e],friends:(e,t,r,n)=>["accounts","friends",e,t,r,n],searchFriends:(e,t,r)=>["accounts","friends","search",e,t,r],subscriptions:e=>["accounts","subscriptions",e],followCount:e=>["accounts","follow-count",e],recoveries:e=>["accounts","recoveries",e],pendingRecovery:e=>["accounts","recoveries",e,"pending-request"],checkWalletPending:(e,t)=>["accounts","check-wallet-pending",e,t],mutedUsers:e=>["accounts","muted-users",e],following:(e,t,r,n)=>["accounts","following",e,t,r,n],followers:(e,t,r,n)=>["accounts","followers",e,t,r,n],search:(e,t)=>["accounts","search",e,t],profiles:(e,t)=>["accounts","profiles",e,t],lookup:(e,t)=>["accounts","lookup",e,t],transactions:(e,t,r)=>["accounts","transactions",e,t,r],favorites:e=>["accounts","favorites",e],favoritesInfinite:(e,t)=>Ie("accounts","favorites","infinite",e,t),checkFavorite:(e,t)=>["accounts","favorites","check",e,t],favoriteTags:e=>["accounts","favorite-tags",e],favoriteTagsInfinite:(e,t)=>Ie("accounts","favorite-tags","infinite",e,t),checkFavoriteTag:(e,t)=>["accounts","favorite-tags","check",e,t],relations:(e,t)=>["accounts","relations",e,t],bots:()=>["accounts","bots"],voteHistory:(e,t)=>["accounts","vote-history",e,t],reputations:(e,t)=>["accounts","reputations",e,t],bookmarks:e=>["accounts","bookmarks",e],bookmarksInfinite:(e,t)=>Ie("accounts","bookmarks","infinite",e,t),referrals:e=>["accounts","referrals",e],referralsStats:e=>["accounts","referrals-stats",e],proMembers:()=>["accounts","pro-members"],_prefix:["accounts"]},notifications:{announcements:()=>["notifications","announcements"],spotlights:()=>["notifications","spotlights"],list:(e,t)=>["notifications",e,t],unreadCount:e=>["notifications","unread",e],settings:e=>["notifications","settings",e],_prefix:["notifications"]},core:{rewardFund:e=>["core","reward-fund",e],dynamicProps:()=>["core","dynamic-props"],chainProperties:()=>["core","chain-properties"],_prefix:["core"]},communities:{single:(e,t)=>["community","single",e,t],singlePrefix:e=>["community","single",e],context:(e,t)=>["community","context",e,t],rewarded:()=>["communities","rewarded"],list:(e,t,r)=>["communities","list",e,t,r],subscribers:e=>["communities","subscribers",e],subscribersInfinite:e=>["communities","subscribers","infinite",e],accountNotifications:(e,t)=>["communities","account-notifications",e,t]},proposals:{list:()=>["proposals","list"],proposal:e=>["proposals","proposal",e],votes:(e,t,r)=>["proposals","votes",e,t,r],votesPrefix:e=>["proposals","votes",e],votesByUser:e=>["proposals","votes","by-user",e]},search:{topics:(e,t)=>["search","topics",e,t],path:e=>["search","path",e],account:(e,t)=>["search","account",e,t],results:(e,t,r,n,o,i)=>["search",e,t,typeof r=="string"?r==="1"||r==="true":r,n,o,i],controversialRising:(e,t)=>["search","controversial-rising",e,t],similarEntries:(e,t,r)=>r?["search","similar-entries",e,t,r]:["search","similar-entries",e,t],api:(e,t,r,n,o,i)=>Ie("search","api",e,t,r,n,o,i)},witnesses:{list:e=>["witnesses","list",e],votes:e=>["witnesses","votes",e],proxy:()=>["witnesses","proxy"],voters:(e,t,r,n,o)=>["witnesses","voters",e,t,r,n,o],voterCount:e=>["witnesses","voter-count",e]},wallet:{outgoingRcDelegations:(e,t)=>["wallet","outgoing-rc-delegations",e,t],vestingDelegations:(e,t)=>["wallet","vesting-delegations",e,t],withdrawRoutes:e=>["wallet","withdraw-routes",e],incomingRc:e=>["wallet","incoming-rc",e],conversionRequests:e=>["wallet","conversion-requests",e],receivedVestingShares:e=>["wallet","received-vesting-shares",e],savingsWithdraw:e=>["wallet","savings-withdraw",e],openOrders:e=>["wallet","open-orders",e],collateralizedConversionRequests:e=>["wallet","collateralized-conversion-requests",e],recurrentTransfers:e=>["wallet","recurrent-transfers",e],balanceHistory:(e,t,r)=>["wallet","balance-history",e,t,r],aggregatedHistory:(e,t,r)=>r===void 0?["wallet","aggregated-history",e,t]:["wallet","aggregated-history",e,t,r],portfolio:(e,t,r)=>["wallet","portfolio","v2",e,t,r]},assets:{hiveGeneralInfo:e=>["assets","hive","general-info",e],hiveTransactions:(e,t,r)=>["assets","hive","transactions",e,t,r],hiveWithdrawalRoutes:e=>["assets","hive","withdrawal-routes",e],hiveMetrics:e=>["assets","hive","metrics",e],hbdGeneralInfo:e=>["assets","hbd","general-info",e],hbdTransactions:(e,t,r)=>["assets","hbd","transactions",e,t,r],hivePowerGeneralInfo:e=>["assets","hive-power","general-info",e],hivePowerDelegates:e=>["assets","hive-power","delegates",e],hivePowerDelegatings:e=>["assets","hive-power","delegatings",e],hivePowerTransactions:(e,t,r)=>["assets","hive-power","transactions",e,t,r],pointsGeneralInfo:e=>["assets","points","general-info",e],pointsTransactions:(e,t)=>["assets","points","transactions",e,t],ecencyAssetInfo:(e,t,r)=>["ecency-wallets","asset-info",e,t,r]},market:{statistics:()=>["market","statistics"],orderBook:e=>["market","order-book",e],history:(e,t,r)=>["market","history",e,t,r],feedHistory:()=>["market","feed-history"],hiveHbdStats:()=>["market","hive-hbd-stats"],data:(e,t,r,n)=>["market","data",e,t,r,n],tradeHistory:(e,t,r)=>["market","trade-history",e,t,r],currentMedianHistoryPrice:()=>["market","current-median-history-price"]},analytics:{discoverCuration:e=>["analytics","discover-curation",e],pageStats:(e,t,r,n)=>["analytics","page-stats",e,t,r,n],discoverLeaderboard:e=>["analytics","discover-leaderboard",e]},promotions:{promotePrice:()=>["promotions","promote-price"],boostPlusPrices:()=>["promotions","boost-plus-prices"],boostPlusAccounts:e=>["promotions","boost-plus-accounts",e]},resourceCredits:{account:e=>["resource-credits","account",e],stats:()=>["resource-credits","stats"],resourceParams:()=>["resource-credits","resource-params"]},points:{points:(e,t)=>["points",e,t],_prefix:e=>["points",e]},polls:{details:(e,t)=>["polls","details",e,t],vote:(e,t)=>e&&t?["polls","vote",e,t]:["polls","vote"],_prefix:["polls"]},operations:{chainProperties:()=>["operations","chain-properties"]},games:{statusCheck:(e,t)=>["games","status-check",e,t]},quests:{status:e=>["quests","status",e]},newsletter:{subscriptions:e=>["newsletter","subscriptions",e],sender:(e,t,r)=>["newsletter","sender",e,t,r],issues:(e,t,r)=>["newsletter","issues",e,t,r],posts:(e,t,r,n)=>["newsletter","posts",e,t,r,n],_prefix:["newsletter"]},support:{settings:e=>["support","settings",e],_prefix:["support"]},badActors:{list:()=>["bad-actors","list"],_prefix:["bad-actors"]},curation:{feed:(e={})=>["curation","feed",e],rosterFeed:(e,t={})=>["curation","roster-feed",e,t],status:()=>["curation","status"],roster:()=>["curation","roster"],rosterAdmin:e=>["curation","roster-admin",e],rosterAdminPrefix:()=>["curation","roster-admin"],recommendations:(e={})=>["curation","recommendations",e],_recommendationsPrefix:["curation","recommendations"],post:(e,t)=>["curation","post",e,t],recommender:e=>["curation","recommender",e],recommend:()=>["curation","recommend"],_prefix:["curation"]},ai:{prices:()=>["ai","prices"],assistPrices:e=>["ai","assist-prices",e],transcribePrice:e=>["ai","transcribe-price",e],images:e=>["ai","images",e],_prefix:["ai"]}};function yt(e){if(typeof TextEncoder<"u")return new TextEncoder().encode(e).length;let t=0;for(let r=0;r=55296&&n<=56319&&r+1>>=7;while(r>0);return t}function Gh(e){return queryOptions({queryKey:u.ai.prices(),queryFn:async()=>{let r=await h()(d.privateApiHost+"/private-api/ai-generate-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch AI generation prices: ${r.status}`);return await r.json()},staleTime:3e5,enabled:!!e})}function Xh(e,t){return queryOptions({queryKey:u.ai.images(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI image history: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:"always",enabled:!!e&&!!t})}function r_(e,t){return queryOptions({queryKey:u.ai.assistPrices(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-assist-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI assist prices: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function s_(e,t){return queryOptions({queryKey:u.ai.transcribePrice(e),queryFn:async()=>{let n=await h()(d.privateApiHost+"/private-api/ai-transcribe-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch AI transcribe price: ${n.status}`);return await n.json()},staleTime:6e4,enabled:!!t})}function iu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function su(e){w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.images(e)});}function p_(e,t){return useMutation({mutationKey:["ai","generate-image"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][GenerateImage] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][GenerateImage] \u2013 access token wasn't found");let o=await h()(d.privateApiHost+"/private-api/ai-generate-image",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,us:e,prompt:r.prompt,aspect_ratio:r.aspect_ratio??"1:1",power:r.power??1,idempotency_key:r.idempotency_key??iu()})});if(!o.ok){let s=await o.text(),a={};try{a=JSON.parse(s);}catch{}let c=new Error(`[SDK][AI][GenerateImage] \u2013 failed with status ${o.status}${s?`: ${s}`:""}`);throw c.status=o.status,c.data=a,c}if(o.status===202){let s={};try{s=await o.json();}catch{}let a=new Error("[SDK][AI][GenerateImage] \u2013 delivery pending");throw a.status=202,a.data=s,a}return await o.json()},onSuccess:()=>{e&&su(e);}})}function uu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function f_(e,t){return useMutation({mutationKey:["ai","assist"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Assist] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][AI][Assist] \u2013 access token wasn't found");let o=await h()(d.privateApiHost+"/private-api/ai-assist",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:r.code??t,us:e,action:r.action,text:r.text,idempotency_key:uu()})});if(!o.ok){let i=await o.text(),s={};try{s=JSON.parse(i);}catch{}let a=new Error(`[SDK][AI][Assist] \u2013 failed with status ${o.status}${i?`: ${i}`:""}`);throw a.status=o.status,a.data=s,a}return await o.json()},onSuccess:r=>{e&&(r.cost>0&&w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.assistPrices(e)}));}})}function pu(){if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return crypto.randomUUID();let e=new Uint8Array(16);if(typeof crypto<"u"&&typeof crypto.getRandomValues=="function")crypto.getRandomValues(e);else for(let t=0;tt.toString(16).padStart(2,"0")).join("")}function __(e,t){return useMutation({mutationKey:["ai","transcribe"],mutationFn:async r=>{if(!e)throw new Error("[SDK][AI][Transcribe] \u2013 username wasn't provided");let n=r.code??t;if(!n)throw new Error("[SDK][AI][Transcribe] \u2013 access token wasn't found");let o=new FormData;o.append("code",n),o.append("duration_ms",String(Math.round(r.durationMs))),o.append("idempotency_key",r.idempotency_key??pu()),o.append("audio",r.audio,r.fileName??"clip.webm");let s=await h()(d.privateApiHost+"/private-api/ai-transcribe",{method:"POST",body:o});if(!s.ok){let a=await s.text(),c={};try{c=JSON.parse(a);}catch{}throw Object.assign(new Error(`[SDK][AI][Transcribe] \u2013 failed with status ${s.status}${a?`: ${a}`:""}`),{status:s.status,data:c})}return await s.json()},onSuccess:r=>{e&&(r.cost>0&&w().invalidateQueries({queryKey:u.points._prefix(e)}),w().invalidateQueries({queryKey:u.ai.transcribePrice(e)}));}})}function Kr(e){return !e.posting_json_metadata&&!e.json_metadata}function du(e){return e?Object.values(e).some(t=>typeof t=="string"?t.length>0:t!=null):false}function M(e){return queryOptions({queryKey:u.accounts.full(e),queryFn:async({signal:t})=>{if(!e)return null;let[r,n]=await Promise.all([y("condenser_api.get_accounts",[[e]],void 0,void 0,t,p=>Array.isArray(p)),y("bridge.get_profile",{account:e},void 0,void 0,t).catch(p=>{if(t?.aborted)throw p;return null})]);if(!r?.[0])return null;let o=r[0];if(Kr(o)&&du(n?.metadata?.profile)){let p=await y("condenser_api.get_accounts",[[e]],void 0,void 0,t,l=>Array.isArray(l)&&(!l[0]||!Kr(l[0])));if(p[0]&&!Kr(p[0]))o=p[0];else throw new Error(`[SDK][Accounts] \u2013 inconsistent account row for ${e}: empty json metadata while hivemind profile is populated`)}let i=He(o.posting_json_metadata),s=n?.stats,a=s?{account:o.name,follower_count:s.followers??0,following_count:s.following??0}:void 0,c=n?.reputation??0;return {name:o.name,owner:o.owner,active:o.active,posting:o.posting,memo_key:o.memo_key,post_count:o.post_count,created:o.created,posting_json_metadata:o.posting_json_metadata,last_vote_time:o.last_vote_time,last_post:o.last_post,json_metadata:o.json_metadata,reward_hive_balance:o.reward_hive_balance,reward_hbd_balance:o.reward_hbd_balance,reward_vesting_hive:o.reward_vesting_hive,reward_vesting_balance:o.reward_vesting_balance,balance:o.balance,hbd_balance:o.hbd_balance,savings_balance:o.savings_balance,savings_hbd_balance:o.savings_hbd_balance,savings_hbd_last_interest_payment:o.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:o.savings_hbd_seconds_last_update,savings_hbd_seconds:o.savings_hbd_seconds,next_vesting_withdrawal:o.next_vesting_withdrawal,pending_claimed_accounts:o.pending_claimed_accounts,vesting_shares:o.vesting_shares,delegated_vesting_shares:o.delegated_vesting_shares,received_vesting_shares:o.received_vesting_shares,vesting_withdraw_rate:o.vesting_withdraw_rate,to_withdraw:o.to_withdraw,withdrawn:o.withdrawn,curation_rewards:o.curation_rewards===void 0?void 0:Number(o.curation_rewards),posting_rewards:o.posting_rewards===void 0?void 0:Number(o.posting_rewards),witness_votes:o.witness_votes,proxy:o.proxy,recovery_account:o.recovery_account,proxied_vsf_votes:o.proxied_vsf_votes,voting_manabar:o.voting_manabar,voting_power:o.voting_power,downvote_manabar:o.downvote_manabar,follow_stats:a,reputation:c,profile:i}},enabled:!!e,staleTime:6e4})}var mu=new Set(["__proto__","constructor","prototype"]);function Wt(e){if(!e||typeof e!="object"||Array.isArray(e))return false;let t=Object.getPrototypeOf(e);return t===null||t===Object.prototype}function Io(e,t){let r={...e};for(let n of Object.keys(t)){if(mu.has(n))continue;let o=t[n],i=r[n];Wt(o)&&Wt(i)?r[n]=Io(i,o):r[n]=o;}return r}function fu(e){if(!(!e||!Array.isArray(e)))return e.map(({meta:t,...r})=>{if(!t||typeof t!="object")return {...r,meta:t};let{privateKey:n,username:o,...i}=t;return {...r,meta:i}})}function He(e){if(!e)return {};try{let t=JSON.parse(e);if(t&&typeof t=="object"&&t.profile&&typeof t.profile=="object")return t.profile}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata:",t,{length:e?.length??0});}return {}}function Do(e){return He(e?.posting_json_metadata)}function Ko(e,t){if(!e)return t;if(!t)return e;let r=Object.keys(He(e.posting_json_metadata)).length;return Object.keys(He(t.posting_json_metadata)).length>r?t:e}function gu(e){if(!e)return {};try{let t=JSON.parse(e);if(Wt(t))return t}catch(t){console.warn("[SDK] Failed to parse posting_json_metadata root:",t,{length:e?.length??0});}return {}}function No({existingPostingJsonMetadata:e,profile:t,tokens:r}){let n=gu(e),o=Wt(n.profile)?n.profile:{},i=Nr({existingProfile:o,profile:t,tokens:r});return JSON.stringify({...n,profile:i})}function Nr({existingProfile:e,profile:t,tokens:r}){let{tokens:n,version:o,...i}=t??{},s=Io(e??{},i);return s.tokens&&!Array.isArray(s.tokens)&&(s.tokens=void 0),r!==void 0?s.tokens=r&&r.length>0?r:[]:n!==void 0&&(s.tokens=n),s.tokens=fu(s.tokens),s.version=2,s}function Gt(e){return e.map(t=>{let r={name:t.name,owner:t.owner,active:t.active,posting:t.posting,memo_key:t.memo_key,post_count:t.post_count,created:t.created,reputation:t.reputation,posting_json_metadata:t.posting_json_metadata,last_vote_time:t.last_vote_time,last_post:t.last_post,json_metadata:t.json_metadata,reward_hive_balance:t.reward_hive_balance,reward_hbd_balance:t.reward_hbd_balance,reward_vesting_hive:t.reward_vesting_hive,reward_vesting_balance:t.reward_vesting_balance,balance:t.balance,hbd_balance:t.hbd_balance,savings_balance:t.savings_balance,savings_hbd_balance:t.savings_hbd_balance,savings_hbd_last_interest_payment:t.savings_hbd_last_interest_payment,savings_hbd_seconds_last_update:t.savings_hbd_seconds_last_update,savings_hbd_seconds:t.savings_hbd_seconds,next_vesting_withdrawal:t.next_vesting_withdrawal,pending_claimed_accounts:t.pending_claimed_accounts,vesting_shares:t.vesting_shares,delegated_vesting_shares:t.delegated_vesting_shares,received_vesting_shares:t.received_vesting_shares,vesting_withdraw_rate:t.vesting_withdraw_rate,to_withdraw:t.to_withdraw,withdrawn:t.withdrawn,witness_votes:t.witness_votes,proxy:t.proxy,recovery_account:t.recovery_account,proxied_vsf_votes:t.proxied_vsf_votes,voting_manabar:t.voting_manabar,voting_power:t.voting_power,downvote_manabar:t.downvote_manabar},n=He(t.posting_json_metadata);if(!n||Object.keys(n).length===0)try{let o=JSON.parse(t.json_metadata||"{}");o.profile&&(n=o.profile);}catch{}return (!n||Object.keys(n).length===0)&&(n={about:"",cover_image:"",location:"",name:"",profile_image:"",website:""}),{...r,profile:n}})}function yu(e){return new TextEncoder().encode(e).length}function et(e){return e?yu(e)<=16:false}function I_(e){return queryOptions({queryKey:u.accounts.list(...e),enabled:e.length>0,queryFn:async()=>{let t=e.filter(et);if(t.length===0)return [];let r=await y("condenser_api.get_accounts",[t],void 0,void 0,void 0,n=>Array.isArray(n));return Gt(r??[])}})}function B_(e){return queryOptions({queryKey:u.accounts.followCount(e),queryFn:()=>y("condenser_api.get_follow_count",[e])})}function j_(e,t,r="blog",n=100){return queryOptions({queryKey:u.accounts.followers(e,t,r,n),queryFn:()=>y("condenser_api.get_followers",[e,t,r,n]),enabled:!!e})}function z_(e,t,r="blog",n=100){return queryOptions({queryKey:u.accounts.following(e,t,r,n),queryFn:()=>y("condenser_api.get_following",[e,t,r,n]),enabled:!!e})}var Mo=1e3,Au=20;function ew(e){return queryOptions({queryKey:u.accounts.mutedUsers(e),queryFn:async()=>{let t=[],r="";for(let n=0;ns.following);if(i[0]===r&&(i=i.slice(1)),!i.length||(t.push(...i),o.lengthet(e)?y("condenser_api.lookup_accounts",[e,t]):[],enabled:!!e,staleTime:1/0})}function lw(e,t=5,r=[]){return queryOptions({queryKey:u.accounts.search(e,r),enabled:!!e,queryFn:async()=>(await y("condenser_api.lookup_accounts",[e,t])).filter(o=>r.length>0?!r.includes(o):true)})}var Su=new Set(["ownerPublicKey","activePublicKey","postingPublicKey","memoPublicKey"]);function gw(e,t){return queryOptions({queryKey:u.accounts.checkWalletPending(e,t??null),queryFn:async()=>{if(!e||!t)return {exist:false};let n=await h()(d.privateApiHost+"/private-api/wallets",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,code:t})});if(!n.ok)return {exist:false};let o=await n.json(),i=Array.isArray(o)?o.flatMap(s=>{if(!s||typeof s!="object")return [];let a=s,c=typeof a.token=="string"?a.token:void 0;if(!c)return [];let p=a.meta&&typeof a.meta=="object"?{...a.meta}:{},l={},m=typeof a.address=="string"&&a.address?a.address:void 0,g=(typeof a.status=="number"?a.status===3:void 0)??false;m&&(l.address=m),l.show=g;let _={symbol:c,currency:c,address:m,show:g,type:"CHAIN",meta:l},A=[];for(let[x,C]of Object.entries(p))typeof x=="string"&&(Su.has(x)||typeof C!="string"||!C||/^[A-Z0-9]{2,10}$/.test(x)&&A.push({symbol:x,currency:x,address:C,show:g,type:"CHAIN",meta:{address:C,show:g}}));return [_,...A]}):[];return {exist:i.length>0,tokens:i.length?i:void 0,wallets:i.length?i:void 0}},refetchOnMount:true})}function Bo(e,t){return queryOptions({queryKey:u.accounts.relations(e,t),enabled:!!e&&!!t,refetchOnMount:false,refetchInterval:36e5,queryFn:async()=>{let r={follows:false,ignores:false,blacklists:false,follows_muted:false,follows_blacklists:false};return !e||!t?r:await y("bridge.get_relationship_between_accounts",[e,t])??r}})}function xw(e){return queryOptions({queryKey:u.accounts.subscriptions(e),enabled:!!e,queryFn:async({signal:t})=>await y("bridge.list_all_subscriptions",{account:e},void 0,void 0,t)??[]})}function Ew(e,t){return queryOptions({queryKey:u.accounts.bookmarks(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Bookmarks] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/bookmarks",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Rw(e,t,r=10){return infiniteQueryOptions({queryKey:u.accounts.bookmarksInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch bookmarks: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function qw(e,t){return queryOptions({queryKey:u.accounts.favorites(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/favorites",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function Iw(e,t,r=10){return infiniteQueryOptions({queryKey:u.accounts.favoritesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/favorites?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorites: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function Mw(e,t,r){return queryOptions({queryKey:u.accounts.checkFavorite(e,r),enabled:!!e&&!!t&&!!r,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][Favorites] \u2013 missing auth");if(!r)throw new Error("[SDK][Accounts][Favorites] \u2013 no target username");let o=await h()(d.privateApiHost+"/private-api/favorites-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:r})});if(!o.ok)throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check failed with status ${o.status}: ${o.statusText}`);let i=await o.json();if(typeof i!="boolean")throw new Error(`[SDK][Accounts][Favorites] \u2013 favorites-check returned invalid type: expected boolean, got ${typeof i}`);return i}})}function Hw(e,t){return queryOptions({queryKey:u.accounts.favoriteTags(e),enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");let n=await h()(d.privateApiHost+"/private-api/favorite-tags",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch favorite tags: ${n.status}`);return await n.json()}})}function Vw(e,t,r=10){return infiniteQueryOptions({queryKey:u.accounts.favoriteTagsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/favorite-tags?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch favorite tags: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}var Ku=/^[a-z0-9-]{1,32}$/,Nu=/^hive-\d+$/;function Se(e){if(typeof e!="string")return null;let t=e.trim().toLowerCase();return t.startsWith("#")&&(t=t.slice(1)),!Ku.test(t)||Nu.test(t)?null:t}function zw(e,t,r){let n=Se(r);return queryOptions({queryKey:u.accounts.checkFavoriteTag(e??"",n??""),enabled:!!e&&!!t&&n!==null,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");if(n===null)return false;let i=await h()(d.privateApiHost+"/private-api/favorite-tags-check",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,tag:n})});if(!i.ok)throw new Error(`[SDK][Accounts][FavoriteTags] \u2013 favorite-tags-check failed with status ${i.status}: ${i.statusText}`);let s=await i.json();if(typeof s!="boolean")throw new Error(`[SDK][Accounts][FavoriteTags] \u2013 favorite-tags-check returned invalid type: expected boolean, got ${typeof s}`);return s}})}function Zw(e,t){return queryOptions({enabled:!!e&&!!t,queryKey:u.accounts.recoveries(e),queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Accounts] Missing username or access token");return (await h()(d.privateApiHost+"/private-api/recoveries",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})})).json()}})}function ob(e){return queryOptions({enabled:!!e,queryKey:u.accounts.pendingRecovery(e),queryFn:()=>y("database_api.find_change_recovery_account_requests",{accounts:[e]})})}function pb(e,t=50){return queryOptions({queryKey:u.accounts.reputations(e,t),enabled:!!e,queryFn:async()=>!e||!et(e)?[]:y("condenser_api.get_account_reputations",[e,t])})}var K=oe.operations,Qo={transfers:[K.transfer,K.transfer_to_savings,K.transfer_from_savings,K.cancel_transfer_from_savings,K.fill_transfer_from_savings,K.recurrent_transfer,K.fill_recurrent_transfer,K.escrow_transfer],"market-orders":[K.fill_convert_request,K.fill_order,K.fill_collateralized_convert_request,K.limit_order_create2,K.limit_order_create,K.limit_order_cancel],interests:[K.interest],"stake-operations":[K.return_vesting_delegation,K.withdraw_vesting,K.transfer_to_vesting,K.set_withdraw_vesting_route,K.update_proposal_votes,K.fill_vesting_withdraw,K.account_witness_proxy,K.delegate_vesting_shares],rewards:[K.author_reward,K.curation_reward,K.producer_reward,K.claim_reward_balance,K.comment_benefactor_reward,K.liquidity_reward,K.proposal_pay]},Vu=Array.from(new Set(Object.values(Qo).flat()));function ju(e){return e.block*1e7+e.trx_in_block*100+e.op_pos}function Lu(e){return e.replace(/_operation$/,"")}function $u(e){return typeof e=="object"&&e!==null&&"nai"in e&&"amount"in e&&"precision"in e}function Wu(e){if(!$u(e))return e;let t=T(e),r=$t[e.nai]??"UNKNOWN";return `${t.amount.toFixed(e.precision)} ${r}`}function Gu(e){let t={};for(let[r,n]of Object.entries(e))t[r]=Wu(n);return t}function _b(e,t=20,r=""){let n=r?Qo[r]:Vu;return infiniteQueryOptions({queryKey:u.accounts.transactions(e??"",r,t),initialPageParam:null,queryFn:async({pageParam:o,signal:i})=>{if(!e)return {entries:[],currentPage:0};let s=async m=>{let f={"account-name":e,"operation-types":n.join(","),"page-size":t};return m!==null&&(f.page=m),await te("hafah","/accounts/{account-name}/operations",f,void 0,void 0,i)},a=m=>m.operations_result.map(f=>{let g=Lu(f.op.type);return {...Gu(f.op.value),num:ju(f),type:g,timestamp:f.timestamp,trx_id:f.trx_id}}),c=await s(o),p=a(c),l=o??c.total_pages;if(o===null&&p.length1)try{let m=await s(c.total_pages-1);p=[...p,...a(m)],l=c.total_pages-1;}catch(m){if(i?.aborted)throw m}return {entries:p,currentPage:l}},getNextPageParam:o=>{let i=o.currentPage-1;return i>=1?i:void 0}})}function Ab(){return queryOptions({queryKey:u.accounts.bots(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/public/bots",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch bots: ${e.status}`);return e.json()},refetchOnMount:true,staleTime:1/0})}function Sb(e){return infiniteQueryOptions({queryKey:u.accounts.referrals(e),initialPageParam:{maxId:void 0},queryFn:async({pageParam:t})=>{let{maxId:r}=t??{},n=B.getValidatedBaseUrl(),o=new URL(`/private-api/referrals/${e}`,n);r!==void 0&&o.searchParams.set("max_id",r.toString());let i=await fetch(o.toString(),{method:"GET",headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`Failed to fetch referrals: ${i.status}`);return i.json()},getNextPageParam:t=>{let r=t?.[t.length-1]?.id;return typeof r=="number"?{maxId:r}:void 0}})}function kb(e){return queryOptions({queryKey:u.accounts.referralsStats(e),queryFn:async()=>{let t=await fetch(d.privateApiHost+`/private-api/referrals/${e}/stats`,{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch referral stats: ${t.status}`);let r=await t.json();if(!r)throw new Error("No Referrals for this user!");return {total:r.total??0,rewarded:r.rewarded??0}}})}function Kb(e,t,r){let{followType:n="blog",limit:o=100,enabled:i=true}=r??{};return infiniteQueryOptions({queryKey:u.accounts.friends(e,t,n,o),initialPageParam:{startFollowing:""},enabled:i,refetchOnMount:true,queryFn:async({pageParam:s})=>{let{startFollowing:a}=s,l=(await y(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,a===""?null:a,n,o])).map(g=>t==="following"?g.following:g.follower);return (await y("bridge.get_profiles",{accounts:l,observer:void 0})??[]).map(g=>({name:g.name,reputation:g.reputation,active:g.active}))},getNextPageParam:s=>s&&s.length===o?{startFollowing:s[s.length-1].name}:void 0})}var ec=30;function Ub(e,t,r){return queryOptions({queryKey:u.accounts.searchFriends(e,t,r),refetchOnMount:false,enabled:false,queryFn:async()=>{if(!r)return [];let n=r.slice(0,-1),s=(await y(`condenser_api.${t==="following"?"get_following":"get_followers"}`,[e,n,"blog",1e3])).map(c=>t==="following"?c.following:c.follower).filter(c=>c.toLowerCase().includes(r.toLowerCase())).slice(0,ec);return (await y("bridge.get_profiles",{accounts:s,observer:void 0}))?.map(c=>({name:c.name,full_name:c.metadata.profile?.name||"",reputation:c.reputation,active:c.active}))??[]}})}function $b(e=20){return infiniteQueryOptions({queryKey:u.posts.trendingTags(),queryFn:async({pageParam:{afterTag:t}})=>y("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!n.name.startsWith("hive-")).map(n=>n.name)),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length>0?{afterTag:t[t.length-1]}:void 0,staleTime:3600*1e3})}function Xb(e=250){return infiniteQueryOptions({queryKey:u.posts.trendingTagsWithStats(e),queryFn:async({pageParam:{afterTag:t}})=>y("condenser_api.get_trending_tags",[t,e]).then(r=>r.filter(n=>n.name!=="").filter(n=>!To(n.name))),initialPageParam:{afterTag:""},getNextPageParam:t=>t?.length?{afterTag:t[t.length-1].name}:void 0,staleTime:1/0})}function tt(e,t){return queryOptions({queryKey:u.posts.fragments(e),queryFn:async()=>t?(await h()(d.privateApiHost+"/private-api/fragments",{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json():[],enabled:!!e&&!!t})}function rv(e,t,r=10){return infiniteQueryOptions({queryKey:u.posts.fragmentsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/fragments?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch fragments: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function sv(e="feed"){return queryOptions({queryKey:u.posts.promoted(e),queryFn:async()=>{let t=B.getValidatedBaseUrl(),r=new URL("/private-api/promoted-entries",t);return e==="waves"&&r.searchParams.append("short_content","1"),await(await h()(r.toString(),{method:"GET",headers:{"Content-Type":"application/json"}})).json()}})}function lv(e){return queryOptions({queryKey:u.posts.entryActiveVotes(e?.author,e?.permlink),queryFn:async()=>y("condenser_api.get_active_votes",[e?.author,e?.permlink]),enabled:!!e})}function yv(e,t,r){return queryOptions({queryKey:u.posts.userPostVote(e,t,r),queryFn:async()=>(await y("database_api.list_votes",{start:[e,t,r],limit:1,order:"by_voter_comment"}))?.votes?.[0]||null,enabled:!!e&&!!t&&!!r})}function vv(e,t){return queryOptions({queryKey:u.posts.content(e,t),enabled:!!e&&!!t,queryFn:async()=>y("condenser_api.get_content",[e,t])})}function Sv(e,t){return queryOptions({queryKey:u.posts.contentReplies(e,t),enabled:!!e&&!!t,queryFn:async()=>y("condenser_api.get_content_replies",{author:e,permlink:t})})}function Tv(e,t){return queryOptions({queryKey:u.posts.postHeader(e,t),queryFn:async()=>y("bridge.get_post_header",{author:e,permlink:t}),initialData:null})}function ne(e){return Array.isArray(e)?e.map(t=>Uo(t)):Uo(e)}function Uo(e){if(!e)return e;let t=`@${e.author}/${e.permlink}`;return d.dmcaPatterns.includes(t)||d.dmcaPatternRegexes.some(n=>n.test(t))?{...e,body:"This post is not available due to a copyright/fraudulent claim.",title:""}:e}async function Ho(e,t,r){try{let n=await Ht("bridge.get_post",{author:e,permlink:t,observer:r},1);if(n&&typeof n=="object"&&n.author===e&&n.permlink===t)return n}catch{}return null}function Vo(e,t,r="",n){let o=t?.trim(),i=`/@${e}/${o??""}`;return queryOptions({queryKey:u.posts.entry(i),queryFn:async()=>{if(!o||o==="undefined")return null;let s=await y("bridge.get_post",{author:e,permlink:o,observer:r});if(!s){let c=await Ho(e,o,r);if(!c)return null;let p=n!==void 0?{...c,num:n}:c;return ne(p)}let a=n!==void 0?{...s,num:n}:s;return ne(a)},enabled:!!e&&!!t&&t.trim()!==""&&t.trim()!=="undefined"})}function ae(e,t,r){return y(`bridge.${e}`,t,void 0,void 0,r)}async function jo(e,t,r,n){let{json_metadata:o}=e;if(o?.original_author&&o?.original_permlink&&o.tags?.[0]==="cross-post")try{let i=await dc(o.original_author,o.original_permlink,t,r,n);return i?{...e,original_entry:i,num:r}:e}catch{return e}return {...e,num:r}}async function Lo(e,t,r){let n=e.map(ht),o=await Promise.all(n.map(i=>jo(i,t,void 0,r)));return ne(o)}async function $o(e,t="",r="",n=20,o="",i="",s){let a=await ae("get_ranked_posts",{sort:e,start_author:t,start_permlink:r,limit:n,tag:o,observer:i},s);return Array.isArray(a)?Lo(a,i,s):(a!=null&&console.warn(`[SDK] get_ranked_posts returned ${typeof a} instead of an array for sort=${e}; treating as no results.`),null)}async function Mr(e,t,r="",n="",o=20,i="",s){if(d.dmcaAccounts.includes(t))return [];let a=await ae("get_account_posts",{sort:e,account:t,start_author:r,start_permlink:n,limit:o,observer:i},s);return Array.isArray(a)?Lo(a,i,s):(a!=null&&console.warn(`[SDK] get_account_posts returned ${typeof a} instead of an array for account=${t}, sort=${e}; treating as no results.`),null)}function ht(e){let t={...e,active_votes:Array.isArray(e.active_votes)?[...e.active_votes]:[],beneficiaries:Array.isArray(e.beneficiaries)?[...e.beneficiaries]:[],blacklists:Array.isArray(e.blacklists)?[...e.blacklists]:[],replies:Array.isArray(e.replies)?[...e.replies]:[],stats:e.stats?{...e.stats}:null},r=["author","title","body","created","category","permlink","url","updated"];for(let n of r)t[n]==null&&(t[n]="");return t.author_reputation==null&&(t.author_reputation=0),t.children==null&&(t.children=0),t.depth==null&&(t.depth=0),t.net_rshares==null&&(t.net_rshares=0),t.payout==null&&(t.payout=0),t.percent_hbd==null&&(t.percent_hbd=0),t.stats||(t.stats={flag_weight:0,gray:false,hide:false,total_votes:0}),t.author_payout_value==null&&(t.author_payout_value="0.000 HBD"),t.curator_payout_value==null&&(t.curator_payout_value="0.000 HBD"),t.max_accepted_payout==null&&(t.max_accepted_payout="1000000.000 HBD"),t.payout_at==null&&(t.payout_at=""),t.pending_payout_value==null&&(t.pending_payout_value="0.000 HBD"),t.promoted==null&&(t.promoted="0.000 HBD"),t.is_paidout==null&&(t.is_paidout=false),t}async function dc(e="",t="",r="",n,o){let i=await ae("get_post",{author:e,permlink:t,observer:r},o);if(i){let s=ht(i),a=await jo(s,r,n,o);return ne(a)}}async function $v(e="",t=""){let r=await ae("get_post_header",{author:e,permlink:t});return r&&ht(r)}async function Wo(e,t,r){let n=await ae("get_discussion",{author:e,permlink:t,observer:r||e});if(n){let o={};for(let[i,s]of Object.entries(n))o[i]=ht(s);return o}return n}async function Go(e,t=""){return ae("get_community",{name:e,observer:t})}async function Wv(e="",t=100,r,n="rank",o=""){return ae("list_communities",{last:e,limit:t,query:r,sort:n,observer:o})}async function zo(e){let t=await ae("normalize_post",{post:e});return t&&ht(t)}async function Gv(e){return ae("list_all_subscriptions",{account:e})}async function zv(e){return ae("list_subscribers",{community:e})}async function Jv(e,t){return ae("get_relationship_between_accounts",[e,t])}async function zt(e,t){return ae("get_profiles",{accounts:e,observer:t})}var Yo=(o=>(o.trending="trending",o.author_reputation="author_reputation",o.votes="votes",o.created="created",o))(Yo||{});function Br(e){let t=e.match(/^(\d+\.?\d*)\s*([A-Z]+)$/);return t?{amount:parseFloat(t[1]),symbol:t[2]}:{amount:0,symbol:""}}function mc(e,t,r){let n=l=>Br(l.pending_payout_value).amount+Br(l.author_payout_value).amount+Br(l.curator_payout_value).amount,o=l=>l.net_rshares<0,i=l=>e.json_metadata?.pinned_reply===`${l.author}/${l.permlink}`,s={trending:(l,m)=>{if(o(l))return 1;if(o(m))return -1;let f=n(l),g=n(m);return f!==g?g-f:0},author_reputation:(l,m)=>{let f=l.author_reputation,g=m.author_reputation;return f>g?-1:f{let f=l.children,g=m.children;return f>g?-1:f{if(o(l))return 1;if(o(m))return -1;let f=Date.parse(l.created),g=Date.parse(m.created);return f>g?-1:fi(l)),p=a[c];return c>=0&&(a.splice(c,1),a.unshift(p)),a}function Xo(e,t="created",r=true,n){let o=n||d.defaultObserver;return queryOptions({queryKey:u.posts.discussions(e?.author,e?.permlink,t,o),queryFn:async()=>{if(!e)return [];let i=await y("bridge.get_discussion",{author:e.author,permlink:e.permlink,observer:o}),s=i?Array.from(Object.values(i)):[];return ne(s)},enabled:r&&!!e,select:i=>mc(e,i,t),structuralSharing:(i,s)=>{if(!i||!s)return s;let a=i.filter(l=>l.is_optimistic===true),c=new Set(s.map(l=>`${l.author}/${l.permlink}`)),p=a.filter(l=>!c.has(`${l.author}/${l.permlink}`));return p.length>0?[...s,...p]:s}})}function nA(e,t,r,n=true){let o=r||d.defaultObserver;return queryOptions({queryKey:u.posts.discussion(e,t,o),enabled:n&&!!e&&!!t,queryFn:async()=>Wo(e,t,o)})}function pA(e,t="posts",r=20,n="",o=true){return infiniteQueryOptions({queryKey:u.posts.accountPosts(e??"",t,r,n),enabled:!!e&&o,initialPageParam:{author:void 0,permlink:void 0,hasNextPage:true},queryFn:async({pageParam:i,signal:s})=>{if(!i?.hasNextPage||!e)return [];let a=await Mr(t,e,i.author??"",i.permlink??"",r,n,s);return ne(a??[])},getNextPageParam:i=>{let s=i?.[i.length-1],a=(i?.length??0)===r;if(a)return {author:s?.author,permlink:s?.permlink,hasNextPage:a}}})}function lA(e,t="posts",r="",n="",o=20,i="",s=true){return queryOptions({queryKey:u.posts.accountPostsPage(e??"",t,r,n,o,i),enabled:!!e&&s,queryFn:async({signal:a}={})=>{if(!e)return [];let c=await Mr(t,e,r,n,o,i,a);return ne(c??[])}})}var Zo=new Map;function _c(e){let t=Zo.get(e);return t||(t=r=>({...r,pages:r.pages.map(n=>wc(n,e))}),Zo.set(e,t)),t}function wc(e,t){let r=e.filter(i=>i.stats?.is_pinned),n=e.filter(i=>!i.stats?.is_pinned);if(t==="hot")return [...r,...n];let o=[...n].sort((i,s)=>new Date(s.created).getTime()-new Date(i.created).getTime());return [...r,...o]}function wA(e,t,r=20,n="",o=true,i={}){return infiniteQueryOptions({queryKey:u.posts.postsRanked(e,t,r,n),queryFn:async({pageParam:s,signal:a})=>{let c=t;d.dmcaTagRegexes.some(l=>l.test(t))&&(c="");let p=await y("bridge.get_ranked_posts",{sort:e,start_author:s.author,start_permlink:s.permlink,limit:r,tag:c,observer:n},void 0,void 0,a);if(p==null)return [];if(!Array.isArray(p))throw new Error(`[SDK] get_ranked_posts returned ${typeof p} for sort=${e}`);return ne(p)},select:_c(e),enabled:o,initialPageParam:{author:void 0,permlink:void 0},getNextPageParam:s=>{let a=s?.[s.length-1];if(a)return {author:a.author,permlink:a.permlink}}})}function bA(e,t="",r="",n=20,o="",i="",s=true){return queryOptions({queryKey:u.posts.postsRankedPage(e,t,r,n,o,i),enabled:s,queryFn:async({signal:a}={})=>{let c=o;d.dmcaTagRegexes.some(l=>l.test(o))&&(c="");let p=await $o(e,t,r,n,c,i,a);return ne(p??[])}})}function OA(e,t,r=200){return queryOptions({queryKey:u.posts.reblogs(e??"",r),queryFn:async()=>(await y("condenser_api.get_blog_entries",[e??t,0,r])).filter(o=>o.author!==t&&!o.reblogged_on.startsWith("1970-")).map(o=>({author:o.author,permlink:o.permlink})),enabled:!!e})}function kA(e,t){return queryOptions({queryKey:u.posts.rebloggedBy(e??"",t??""),queryFn:async()=>{if(!e||!t)return [];let r=await y("condenser_api.get_reblogged_by",[e,t]);return Array.isArray(r)?r:[]},enabled:!!e&&!!t})}function IA(e,t){return queryOptions({queryKey:u.posts.schedules(e),queryFn:async()=>{if(!e||!t)return [];let n=await h()(d.privateApiHost+"/private-api/schedules",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch schedules: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function DA(e,t,r=10){return infiniteQueryOptions({queryKey:u.posts.schedulesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/schedules?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch schedules: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function BA(e,t){return queryOptions({queryKey:u.posts.drafts(e),queryFn:async()=>{if(!e||!t)return [];let n=await h()(d.privateApiHost+"/private-api/drafts",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!n.ok)throw new Error(`Failed to fetch drafts: ${n.status}`);return n.json()},enabled:!!e&&!!t})}function QA(e,t,r=10){return infiniteQueryOptions({queryKey:u.posts.draftsInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/drafts?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch drafts: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}async function ti(e){let r=await h()(d.privateApiHost+"/private-api/images",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok)throw new Error(`Failed to fetch images: ${r.status}`);return r.json()}function jA(e,t){return queryOptions({queryKey:u.posts.images(e),queryFn:async()=>!e||!t?[]:ti(t),enabled:!!e&&!!t})}function LA(e,t){return queryOptions({queryKey:u.posts.galleryImages(e),queryFn:async()=>!e||!t?[]:ti(t),enabled:!!e&&!!t})}function $A(e,t,r=10){return infiniteQueryOptions({queryKey:u.posts.imagesInfinite(e,r),queryFn:async({pageParam:n=0})=>{if(!e||!t)return {data:[],pagination:{total:0,limit:r,offset:0,has_next:false}};let i=await h()(`${d.privateApiHost}/private-api/images?format=wrapped&offset=${n}&limit=${r}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})});if(!i.ok)throw new Error(`Failed to fetch images: ${i.status}`);let s=await i.json();return re(s,r)},initialPageParam:0,getNextPageParam:n=>{if(n.pagination.has_next)return n.pagination.offset+n.pagination.limit},enabled:!!e&&!!t})}function JA(e,t,r=false){return queryOptions({queryKey:u.posts.commentHistory(e,t,r),queryFn:async({signal:n})=>{let o=await fetch(d.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:t,onlyMeta:r?"1":""}),signal:n});if(!o.ok)throw new Error(`Failed to fetch comment history: ${o.status}`);return o.json()},enabled:!!e&&!!t})}function Rc(e,t){let r=e?.trim(),n=t?.trim();if(!r||!n)throw new Error("Invalid entry path: author and permlink are required");let o=r.replace(/^@+/,""),i=n.replace(/^\/+/,"");if(!o||!i)throw new Error("Invalid entry path: author and permlink cannot be empty after normalization");return `@${o}/${i}`}function eP(e,t){let r=t?.trim(),n=e?.trim(),o=!!n&&!!r&&r!=="undefined",i=o?Rc(n,r):"";return queryOptions({queryKey:u.posts.deletedEntry(i),queryFn:async({signal:s})=>{let a=await fetch(d.privateApiHost+"/private-api/comment-history",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:e,permlink:r||""}),signal:s});if(!a.ok)throw new Error(`Failed to fetch comment history: ${a.status}`);return a.json()},select:s=>{if(!s?.list?.[0])return null;let{body:a,title:c,tags:p}=s.list[0];return {body:a,title:c,tags:p}},enabled:o})}function oP(e,t,r=true){return queryOptions({queryKey:u.posts.tips(e,t),queryFn:async()=>{let n=`/private-api/post-tips/${encodeURIComponent(e)}/${encodeURIComponent(t)}`,o=await fetch(d.privateApiHost+n,{method:"GET",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch post tips: ${o.status}`);return o.json()},enabled:!!e&&!!t&&r,staleTime:60*1e3})}function Tc(e,t){return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,host:t}}function Fc(e){return {...e,id:e.id??e.post_id}}function _e(e,t){if(!e)return null;let r=e.container??e,n=Tc(r,t),o=e.parent?Fc(e.parent):void 0;return {...e,id:e.id??e.post_id,created:e.created??e.timestamp,max_accepted_payout:e.max_accepted_payout||"1000000.000 HBD",pending_payout_value:e.pending_payout_value||"0.000 HBD",author_payout_value:e.author_payout_value||"0.000 HBD",curator_payout_value:e.curator_payout_value||"0.000 HBD",host:t,container:n,parent:o}}function qc(e){return Array.isArray(e)?e:[]}async function ri(e){let t=Xo(e,"created",true),r=await d.queryClient.fetchQuery(t),n=qc(r);if(n.length<=1)return [];let o=n.filter(({parent_author:s,parent_permlink:a})=>s===e.author&&a===e.permlink);return o.length===0?[]:o.filter(s=>!s.stats?.gray)}function ni(e,t,r){return e.length===0?[]:e.map(n=>{let o=e.find(i=>i.author===n.parent_author&&i.permlink===n.parent_permlink&&i.author!==r);return {...n,id:n.post_id,host:r,container:t,parent:o}}).filter(n=>n.container.post_id!==n.post_id).sort((n,o)=>new Date(o.created).getTime()-new Date(n.created).getTime())}var Kc=20;function oi(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,following:e.following?.trim().toLowerCase()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Kc}}async function ii({containers:e,tag:t,following:r,author:n,observer:o,limit:i},s,a){let c=B.getValidatedBaseUrl(),p=new URL("/private-api/waves/feed",c);p.searchParams.set("limit",String(i)),s&&p.searchParams.set("cursor",s),e.forEach(f=>p.searchParams.append("container",f)),t&&p.searchParams.set("tag",t),r&&p.searchParams.set("following",r),n&&p.searchParams.set("author",n),o&&p.searchParams.set("observer",o);let l=await fetch(p.toString(),{method:"GET",signal:a});if(!l.ok)throw new Error(`Failed to fetch waves feed: ${l.status}`);let m=await l.json();return !Array.isArray(m)||m.length===0?[]:m.map(f=>{let g=_e(f,f.host??"");return g?{...g,_cursor:f._cursor}:null}).filter(f=>!!f)}function dP(e={}){let t=oi(e),{containers:r,tag:n,following:o,author:i,observer:s,limit:a}=t;return infiniteQueryOptions({queryKey:u.posts.wavesFeed({containers:r,tag:n,following:o,author:i,observer:s,limit:a}),initialPageParam:void 0,queryFn:({pageParam:c,signal:p})=>ii(t,c,p),getNextPageParam:c=>{if(!(c.lengthii(t,void 0,c)})}var Mc=20;function Bc(e){return {containers:e.containers??[],tag:e.tag?.trim()||void 0,author:e.author?.trim().toLowerCase()||void 0,observer:e.observer?.trim().toLowerCase()||void 0,limit:e.limit??Mc}}async function Qc({containers:e,tag:t,author:r,observer:n,limit:o},i,s){let a=B.getValidatedBaseUrl(),c=new URL("/private-api/waves/shorts",a);c.searchParams.set("limit",String(o)),i&&c.searchParams.set("cursor",i),e.forEach(m=>c.searchParams.append("container",m)),t&&c.searchParams.set("tag",t),r&&c.searchParams.set("author",r),n&&c.searchParams.set("observer",n);let p=await fetch(c.toString(),{method:"GET",signal:s});if(!p.ok)throw new Error(`Failed to fetch shorts feed: ${p.status}`);let l=await p.json();return !Array.isArray(l)||l.length===0?[]:l.map(m=>{let f=_e(m,m.host??"");return f?{...f,active_votes:f.active_votes??[],video:m.video,_cursor:m._cursor}:null}).filter(m=>!!m)}function _P(e={}){let t=Bc(e),{containers:r,tag:n,author:o,observer:i,limit:s}=t;return infiniteQueryOptions({queryKey:u.posts.shortsFeed({containers:r,tag:n,author:o,observer:i,limit:s}),initialPageParam:void 0,queryFn:({pageParam:a,signal:c})=>Qc(t,a,c),getNextPageParam:a=>{if(!(a.length(l.id=l.post_id,l.host=e,l));for(let l of c){if(i&&l.post_id===i){i=void 0;continue}if(o+=1,l.stats?.gray){r=l.author,n=l.permlink;continue}let m;try{m=await ri(l);}catch(f){console.error("[SDK] getThreads get_discussion error:",f),r=l.author,n=l.permlink;continue}if(m.length===0){r=l.author,n=l.permlink;continue}return {entries:ni(m,l,e)}}let p=c[c.length-1];if(!p)return null;r=p.author,n=p.permlink;}return null}function OP(e){return infiniteQueryOptions({queryKey:u.posts.wavesByHost(e),initialPageParam:void 0,queryFn:async({pageParam:t})=>{let r=await jc(e,t);return r?r.entries:[]},getNextPageParam:t=>t?.[0]?.container})}var $c=40;function kP(e,t,r=$c){return infiniteQueryOptions({queryKey:u.posts.wavesByTag(e,t),initialPageParam:void 0,queryFn:async({signal:n})=>{try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/tags",o);i.searchParams.set("container",e),i.searchParams.set("tag",t);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves by tag: ${s.status}`);return (await s.json()).slice(0,r).map(p=>_e(p,e)).filter(p=>!!p).sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves by tag",o),[]}},getNextPageParam:()=>{}})}function DP(e,t){let r=t?.trim().toLowerCase();return infiniteQueryOptions({queryKey:u.posts.wavesFollowing(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/following",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",headers:{"Content-Type":"application/json"},signal:n});if(!s.ok)throw new Error(`Failed to fetch waves following feed: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let c=a.map(p=>_e(p,e)).filter(p=>!!p);return c.length===0?[]:c.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){return console.error("[SDK] Failed to fetch waves following feed",o),[]}},getNextPageParam:()=>{}})}function BP(e,t=24){let r=e?.trim()||void 0;return queryOptions({queryKey:u.posts.wavesTrendingTags(r??"",t),queryFn:async({signal:n})=>{try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/trending/tags",o);r&&i.searchParams.set("container",r),i.searchParams.set("hours",t.toString());let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves trending tags: ${s.status}`);return (await s.json()).map(({tag:c,posts:p})=>({tag:c,posts:p}))}catch(o){return console.error("[SDK] Failed to fetch waves trending tags",o),[]}}})}function jP(e,t){let r=t?.trim().toLowerCase();return infiniteQueryOptions({queryKey:u.posts.wavesByAccount(e,r??""),enabled:!!r,initialPageParam:void 0,queryFn:async({signal:n})=>{if(!r)return [];try{let o=B.getValidatedBaseUrl(),i=new URL("/private-api/waves/account",o);i.searchParams.set("container",e),i.searchParams.set("username",r);let s=await fetch(i.toString(),{method:"GET",signal:n});if(!s.ok)throw new Error(`Failed to fetch waves for account: ${s.status}`);let a=await s.json();if(!Array.isArray(a)||a.length===0)return [];let c=a.map(p=>_e(p,e)).filter(p=>!!p);return c.length===0?[]:c.sort((p,l)=>new Date(l.created).getTime()-new Date(p.created).getTime())}catch(o){throw console.error("[SDK] Failed to fetch waves for account",o),o}},getNextPageParam:()=>{}})}function GP(e){return queryOptions({queryKey:u.posts.wavesTrendingAuthors(e),queryFn:async({signal:t})=>{try{let r=B.getValidatedBaseUrl(),n=new URL("/private-api/waves/trending/authors",r);n.searchParams.set("container",e);let o=await fetch(n.toString(),{method:"GET",signal:t});if(!o.ok)throw new Error(`Failed to fetch waves trending authors: ${o.status}`);return (await o.json()).map(({author:s,posts:a})=>({author:s,posts:a}))}catch(r){throw console.error("[SDK] Failed to fetch waves trending authors",r),r}}})}function ZP(e,t=true){return queryOptions({queryKey:u.posts.normalize(e?.author??"",e?.permlink??""),enabled:t&&!!e,queryFn:async()=>zo(e)})}function Zc(e){return !!e&&typeof e=="object"&&"author"in e&&"permlink"in e&&"active_votes"in e}function si(e){let t=new Date(e);return (new Date().getTime()-t.getTime())/(1e3*60*60*24)}function a0(e,t){let{limit:r=20,filters:n=[],dayLimit:o=7}=t??{};return infiniteQueryOptions({queryKey:u.accounts.voteHistory(e,r),initialPageParam:{start:-1},queryFn:async({pageParam:i})=>{let{start:s}=i,a=await y("condenser_api.get_account_history",[e,s,r,...n]),p=a.map(([f,g])=>({...g.op[1],num:f,timestamp:g.timestamp})).filter(f=>f.voter===e&&f.weight!==0&&si(f.timestamp)<=o),l=[];for(let f of p){let g=await d.queryClient.fetchQuery(Vo(f.author,f.permlink));Zc(g)&&l.push(g);}let[m]=a;return {lastDate:m?si(m[1].timestamp):0,lastItemFetched:m?m[0]:s,entries:l}},getNextPageParam:i=>({start:i.lastItemFetched})})}function d0(e,t,r=true){return queryOptions({queryKey:u.accounts.profiles(e,t??""),enabled:r&&e.length>0,queryFn:async()=>zt(e,t)})}function _0(e,t="HIVE",r=200){return infiniteQueryOptions({queryKey:u.wallet.balanceHistory(e??"",t,r),initialPageParam:null,queryFn:async({pageParam:n,signal:o})=>{if(!e)return {entries:[],currentPage:0};let i={"account-name":e,"coin-type":t,"page-size":r,direction:"desc"};n!==null&&(i.page=n);let s=await te("balance","/accounts/{account-name}/balance-history",i,void 0,void 0,o);return {entries:s.operations_result,currentPage:n??s.total_pages}},getNextPageParam:n=>{let o=n.currentPage-1;return o>=1?o:void 0},enabled:!!e})}function P0(e,t="HIVE",r="yearly"){return queryOptions({queryKey:u.wallet.aggregatedHistory(e??"",t,r),queryFn:async()=>e?await te("balance","/accounts/{account-name}/aggregated-history",{"account-name":e,"coin-type":t,granularity:r}):[],enabled:!!e,staleTime:6e4})}function C0(){return queryOptions({queryKey:u.accounts.proMembers(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/pro-members",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch pro members: ${e.status}`);return e.json()},staleTime:300*1e3})}function E0(e){return new Set((e??[]).map(t=>t.toLowerCase()))}function I0(e,t,r){let n=useQueryClient(),{data:o}=useQuery(M(e));return v(["accounts","update"],e,i=>{let s=Ko(n.getQueryData(M(e).queryKey),o);if(!s)throw new Error("[SDK][Accounts] \u2013 cannot update not existing account");return [["account_update2",{account:e,json_metadata:"",extensions:[],posting_json_metadata:No({existingPostingJsonMetadata:s.posting_json_metadata,profile:i.profile,tokens:i.tokens})}]]},async(i,s)=>{n.setQueryData(M(e).queryKey,a=>{if(!a)return a;let c=JSON.parse(JSON.stringify(a));return c.profile=Nr({existingProfile:Do(a),profile:s.profile,tokens:s.tokens}),c}),await S(t?.adapter,r,[u.accounts.full(e)]);},t,void 0,{broadcastMode:r,onMutate:async()=>{if(e)try{await n.fetchQuery({...M(e),staleTime:0});}catch{}}})}function B0(e,t,r,n,o){return useMutation({mutationKey:["accounts","relation","update",e,t],mutationFn:async i=>{let s=Bo(e,t);await w().prefetchQuery(s);let a=w().getQueryData(s.queryKey);return await Eo(e,"follow",["follow",{follower:e,following:t,what:[...i==="toggle-ignore"&&!a?.ignores?["ignore"]:[],...i==="toggle-follow"&&!a?.follows?["blog"]:[]]}],r),{...a,ignores:i==="toggle-ignore"?!a?.ignores:a?.ignores,follows:i==="toggle-follow"?!a?.follows:a?.follows}},onError:o,onSuccess(i){n(i),w().setQueryData(u.accounts.relations(e,t),i),t&&w().invalidateQueries(M(t));}})}function Qr(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildVoteOp] Missing required parameters");if(n<-1e4||n>1e4)throw new Error("[SDK][buildVoteOp] Weight must be between -10000 and 10000");return ["vote",{voter:e,author:t,permlink:r,weight:n}]}function Ve(e,t,r,n,o,i,s){let a=[];if(e||a.push("author"),t||a.push("permlink"),n===void 0&&a.push("parentPermlink"),i||a.push("body"),a.length>0)throw new Error(`[SDK][buildCommentOp] Missing required parameters: ${a.join(", ")}`);return ["comment",{parent_author:r,parent_permlink:n,author:e,permlink:t,title:o,body:i,json_metadata:JSON.stringify(s)}]}function je(e,t,r,n,o,i,s){if(!e||!t)throw new Error("[SDK][buildCommentOptionsOp] Missing required parameters");return ["comment_options",{author:e,permlink:t,max_accepted_payout:r,percent_hbd:n,allow_votes:o,allow_curation_rewards:i,extensions:s}]}function Ur(e,t){if(!e||!t)throw new Error("[SDK][buildDeleteCommentOp] Missing required parameters");return ["delete_comment",{author:e,permlink:t}]}function Hr(e,t,r,n=false){if(!e||!t||!r)throw new Error("[SDK][buildReblogOp] Missing required parameters");let o={account:e,author:t,permlink:r};return n&&(o.delete="delete"),["custom_json",{id:"follow",json:JSON.stringify(["reblog",o]),required_auths:[],required_posting_auths:[e]}]}function Le(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferOp] Missing required parameters");return ["transfer",{from:e,to:t,amount:r,memo:n||""}]}function ap(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiTransferOps] Missing required parameters");return t.trim().split(/[\s,]+/).filter(Boolean).map(i=>Le(e,i.trim(),r,n))}function up(e,t,r,n,o,i){if(!e||!t||!r)throw new Error("[SDK][buildRecurrentTransferOp] Missing required parameters");if(o<24)throw new Error("[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours");return ["recurrent_transfer",{from:e,to:t,amount:r,memo:n||"",recurrence:o,executions:i,extensions:[]}]}function rt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildTransferToSavingsOp] Missing required parameters");return ["transfer_to_savings",{from:e,to:t,amount:r,memo:n||""}]}function $e(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildTransferFromSavingsOp] Missing required parameters");return ["transfer_from_savings",{from:e,to:t,amount:r,memo:n||"",request_id:o}]}function ai(e,t){if(!e||t===void 0)throw new Error("[SDK][buildCancelTransferFromSavingsOp] Missing required parameters");return ["cancel_transfer_from_savings",{from:e,request_id:t}]}function _t(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildClaimInterestOps] Missing required parameters");return [$e(e,t,r,n,o),ai(e,o)]}function wt(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildTransferToVestingOp] Missing required parameters");return ["transfer_to_vesting",{from:e,to:t,amount:r}]}function bt(e,t){if(!e||!t)throw new Error("[SDK][buildWithdrawVestingOp] Missing required parameters");return ["withdraw_vesting",{account:e,vesting_shares:t}]}function vt(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildDelegateVestingSharesOp] Missing required parameters");return ["delegate_vesting_shares",{delegator:e,delegatee:t,vesting_shares:r}]}function At(e,t,r,n){if(!e||!t||r===void 0)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters");if(r<0||r>1e4)throw new Error("[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000");return ["set_withdraw_vesting_route",{from_account:e,to_account:t,percent:r,auto_vest:n}]}function Pt(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildConvertOp] Missing required parameters");return ["convert",{owner:e,amount:t,requestid:r}]}function Vr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildCollateralizedConvertOp] Missing required parameters");return ["collateralized_convert",{owner:e,amount:t,requestid:r}]}function We(e,t,r,n="tokens"){return ["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:JSON.stringify({contractName:n,contractAction:t,contractPayload:r})}]}function jr(e,t){return ["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:JSON.stringify(t.map(r=>({symbol:r})))}]}function Lr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildDelegateRcOp] Missing required parameters");let n=t.includes(",")?t.split(",").map(o=>o.trim()):[t];return ["custom_json",{id:"rc",json:JSON.stringify(["delegate_rc",{from:e,delegatees:n,max_rc:r}]),required_auths:[],required_posting_auths:[e]}]}function $r(e,t){if(!e||!t)throw new Error("[SDK][buildFollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["blog"]}]),required_auths:[],required_posting_auths:[e]}]}function Jt(e,t){if(!e||!t)throw new Error("[SDK][buildUnfollowOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:[]}]),required_auths:[],required_posting_auths:[e]}]}function cp(e,t){if(!e||!t)throw new Error("[SDK][buildIgnoreOp] Missing required parameters");return ["custom_json",{id:"follow",json:JSON.stringify(["follow",{follower:e,following:t,what:["ignore"]}]),required_auths:[],required_posting_auths:[e]}]}function pp(e,t){if(!e||!t)throw new Error("[SDK][buildUnignoreOp] Missing required parameters");return Jt(e,t)}function Wr(e,t){if(!e)throw new Error("[SDK][buildSetLastReadOps] Missing required parameters");let r=t||new Date().toISOString().split(".")[0],n=["custom_json",{id:"notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}],o=["custom_json",{id:"ecency_notify",json:JSON.stringify(["setLastRead",{date:r}]),required_auths:[],required_posting_auths:[e]}];return [n,o]}function Gr(e,t,r){if(!e||!t||r===void 0)throw new Error("[SDK][buildWitnessVoteOp] Missing required parameters");return ["account_witness_vote",{account:e,witness:t,approve:r}]}function zr(e,t){if(!e||t===void 0)throw new Error("[SDK][buildWitnessProxyOp] Missing required parameters");return ["account_witness_proxy",{account:e,proxy:t}]}function Jr(e,t){if(!e||!t.receiver||!t.subject||!t.permlink||!t.start||!t.end||!t.dailyPay)throw new Error("[SDK][buildProposalCreateOp] Missing required parameters");let r=new Date(t.start),n=new Date(t.end);if(r.toString()==="Invalid Date"||n.toString()==="Invalid Date")throw new Error("[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings");return ["create_proposal",{creator:e,receiver:t.receiver,start_date:t.start,end_date:t.end,daily_pay:t.dailyPay,subject:t.subject,permlink:t.permlink,extensions:[]}]}function Yr(e,t,r){if(!e||!t||t.length===0||r===void 0)throw new Error("[SDK][buildProposalVoteOp] Missing required parameters");return ["update_proposal_votes",{voter:e,proposal_ids:t,approve:r,extensions:[]}]}function lp(e,t){if(!e||!t||t.length===0)throw new Error("[SDK][buildRemoveProposalOp] Missing required parameters");return ["remove_proposal",{proposal_owner:e,proposal_ids:t,extensions:[]}]}function dp(e,t,r,n,o){if(e==null||typeof e!="number"||!t||!r||!n||!o)throw new Error("[SDK][buildUpdateProposalOp] Missing required parameters");return ["update_proposal",{proposal_id:e,creator:t,daily_pay:r,subject:n,permlink:o,extensions:[]}]}function Xr(e,t){if(!e||!t)throw new Error("[SDK][buildSubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["subscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function Zr(e,t){if(!e||!t)throw new Error("[SDK][buildUnsubscribeOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["unsubscribe",{community:t}]),required_auths:[],required_posting_auths:[e]}]}function en(e,t,r,n){if(!e||!t||!r||!n)throw new Error(`[SDK][buildSetRoleOp] Missing required parameters: username=${e}, community=${t}, account=${r}, role=${n}`);return ["custom_json",{id:"community",json:JSON.stringify(["setRole",{community:t,account:r,role:n}]),required_auths:[],required_posting_auths:[e]}]}function tn(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildUpdateCommunityOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["updateProps",{community:t,props:r}]),required_auths:[],required_posting_auths:[e]}]}function rn(e,t,r,n,o){if(!e||!t||!r||!n||o===void 0)throw new Error("[SDK][buildPinPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"pinPost":"unpinPost",{community:t,account:r,permlink:n}]),required_auths:[],required_posting_auths:[e]}]}function nn(e,t,r,n,o,i){if(!e||!t||!r||!n||i===void 0)throw new Error("[SDK][buildMutePostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([i?"mutePost":"unmutePost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}function mp(e,t,r,n,o){if(!e||!t||!r||o===void 0)throw new Error("[SDK][buildMuteUserOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify([o?"muteUser":"unmuteUser",{community:t,account:r,notes:n}]),required_auths:[],required_posting_auths:[e]}]}function fp(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildFlagPostOp] Missing required parameters");return ["custom_json",{id:"community",json:JSON.stringify(["flagPost",{community:t,account:r,permlink:n,notes:o}]),required_auths:[],required_posting_auths:[e]}]}var ui=(r=>(r.Buy="buy",r.Sell="sell",r))(ui||{}),ci=(r=>(r.EMPTY="",r.SWAP="9",r))(ci||{});function Xt(e,t,r,n,o,i){if(!e||!t||!r||!o||i===void 0)throw new Error("[SDK][buildLimitOrderCreateOp] Missing required parameters");return ["limit_order_create",{owner:e,orderid:i,amount_to_sell:t,min_to_receive:r,fill_or_kill:n,expiration:o}]}function Yt(e,t=3){return e.toFixed(t)}function gp(e,t,r,n,o=""){if(!e||n===void 0||!Number.isFinite(t)||t<=0||!Number.isFinite(r)||r<=0)throw new Error("[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters");let i=new Date(Date.now());i.setDate(i.getDate()+27);let s=i.toISOString().split(".")[0],a=+`${o}${Math.floor(Date.now()/1e3).toString().slice(2)}`,c=n==="buy"?`${Yt(t,3)} HBD`:`${Yt(t,3)} HIVE`,p=n==="buy"?`${Yt(r,3)} HIVE`:`${Yt(r,3)} HBD`;return Xt(e,c,p,false,s,a)}function on(e,t){if(!e||t===void 0)throw new Error("[SDK][buildLimitOrderCancelOp] Missing required parameters");return ["limit_order_cancel",{owner:e,orderid:t}]}function sn(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildClaimRewardBalanceOp] Missing required parameters");return ["claim_reward_balance",{account:e,reward_hive:t,reward_hbd:r,reward_vests:n}]}function yp(e,t,r,n,o,i){if(!e||!o)throw new Error("[SDK][buildAccountUpdateOp] Missing required parameters");return ["account_update",{account:e,owner:t,active:r,posting:n,memo_key:o,json_metadata:i}]}function hp(e,t,r,n){if(!e||r===void 0)throw new Error("[SDK][buildAccountUpdate2Op] Missing required parameters");return ["account_update2",{account:e,json_metadata:t||"",posting_json_metadata:r,extensions:n||[]}]}function an(e,t,r,n){if(!e||!t||!r||!n)throw new Error("[SDK][buildAccountCreateOp] Missing required parameters");let o={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},i={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},s={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["account_create",{creator:e,new_account_name:t,owner:o,active:i,posting:s,memo_key:r.memoPublicKey,json_metadata:"",fee:n}]}function un(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCreateClaimedAccountOp] Missing required parameters");let n={weight_threshold:1,account_auths:[],key_auths:[[r.ownerPublicKey,1]]},o={weight_threshold:1,account_auths:[],key_auths:[[r.activePublicKey,1]]},i={weight_threshold:1,account_auths:[["ecency.app",1]],key_auths:[[r.postingPublicKey,1]]};return ["create_claimed_account",{creator:e,new_account_name:t,owner:n,active:o,posting:i,memo_key:r.memoPublicKey,json_metadata:"",extensions:[]}]}function cn(e,t){if(!e||!t)throw new Error("[SDK][buildClaimAccountOp] Missing required parameters");return ["claim_account",{creator:e,fee:t,extensions:[]}]}function pn(e,t,r,n,o,i){if(!e||!t||!r||!o)throw new Error("[SDK][buildGrantPostingPermissionOp] Missing required parameters");let s=t.account_auths.findIndex(([p])=>p===r),a=[...t.account_auths];s>=0?a[s]=[r,n]:a.push([r,n]);let c={...t,account_auths:a};return c.account_auths.sort((p,l)=>p[0]>l[0]?1:-1),["account_update",{account:e,posting:c,memo_key:o,json_metadata:i}]}function _p(e,t,r,n,o){if(!e||!t||!r||!n)throw new Error("[SDK][buildRevokePostingPermissionOp] Missing required parameters");let i={...t,account_auths:t.account_auths.filter(([s])=>s!==r)};return ["account_update",{account:e,posting:i,memo_key:n,json_metadata:o}]}function wp(e,t,r=[]){if(!e||!t)throw new Error("[SDK][buildChangeRecoveryAccountOp] Missing required parameters");return ["change_recovery_account",{account_to_recover:e,new_recovery_account:t,extensions:r}]}function bp(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRequestAccountRecoveryOp] Missing required parameters");return ["request_account_recovery",{recovery_account:e,account_to_recover:t,new_owner_authority:r,extensions:n}]}function vp(e,t,r,n=[]){if(!e||!t||!r)throw new Error("[SDK][buildRecoverAccountOp] Missing required parameters");return ["recover_account",{account_to_recover:e,new_owner_authority:t,recent_owner_authority:r,extensions:n}]}function ln(e,t,r){if(!e||!t||!Number.isFinite(r))throw new Error("[SDK][buildBoostPlusOp] Missing required parameters");return ["custom_json",{id:"ecency_boost_plus",json:JSON.stringify({user:e,account:t,duration:r}),required_auths:[e],required_posting_auths:[]}]}function dn(e,t){if(!e||!Number.isInteger(t)||t<=0)throw new Error("[SDK][buildRcDelegationOp] Missing or invalid parameters");return ["custom_json",{id:"ecency_rc_delegation",json:JSON.stringify({user:e,duration:t}),required_auths:[e],required_posting_auths:[]}]}function mn(e,t,r,n){if(!e||!t||!r||!Number.isFinite(n))throw new Error("[SDK][buildPromoteOp] Missing required parameters");return ["custom_json",{id:"ecency_promote",json:JSON.stringify({user:e,author:t,permlink:r,duration:n}),required_auths:[e],required_posting_auths:[]}]}var Ap=["quality","underrated","newcomer","other"];function fn(e,t,r,n="quality"){if(!e||!t||!r)throw new Error("[SDK][buildCurationRecommendOp] Missing required parameters");if(!Ap.includes(n))throw new Error("[SDK][buildCurationRecommendOp] Unknown reason");return ["custom_json",{id:"ecency_curation",json:JSON.stringify({v:1,op:"recommend",author:t,permlink:r,reason:n}),required_auths:[],required_posting_auths:[e]}]}function gn(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildCurationUnrecommendOp] Missing required parameters");return ["custom_json",{id:"ecency_curation",json:JSON.stringify({v:1,op:"unrecommend",author:t,permlink:r}),required_auths:[],required_posting_auths:[e]}]}function nt(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildPointTransferOp] Missing required parameters");let o=r.replace(/POINTS\b/,"POINT");return ["custom_json",{id:"ecency_point_transfer",json:JSON.stringify({sender:e,receiver:t,amount:o,memo:n||""}),required_auths:[e],required_posting_auths:[]}]}function Pp(e,t,r,n){if(!e||!t||!r)throw new Error("[SDK][buildMultiPointTransferOps] Missing required parameters");let o=t.trim().split(/[\s,]+/).filter(Boolean);if(o.length===0)throw new Error("[SDK][buildMultiPointTransferOps] Missing valid destinations");return o.map(i=>nt(e,i.trim(),r,n))}function yn(e){if(!e)throw new Error("[SDK][buildCommunityRegistrationOp] Missing required parameters");return ["custom_json",{id:"ecency_registration",json:JSON.stringify({name:e}),required_auths:[e],required_posting_auths:[]}]}function xp(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildActiveCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[e],required_posting_auths:[]}]}function Op(e,t,r){if(!e||!t||!r)throw new Error("[SDK][buildPostingCustomJsonOp] Missing required parameters");return ["custom_json",{id:t,json:JSON.stringify(r),required_auths:[],required_posting_auths:[e]}]}function sx(e,t,r){return v(["accounts","follow"],e,({following:n})=>[$r(e,n)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.relations(e,o.following),u.accounts.full(o.following),u.accounts.followCount(o.following),u.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function px(e,t,r){return v(["accounts","unfollow"],e,({following:n})=>[Jt(e,n)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.relations(e,o.following),u.accounts.full(o.following),u.accounts.followCount(o.following),u.accounts.followCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function fx(e,t,r,n){return useMutation({mutationKey:["accounts","bookmarks","add",e],mutationFn:async({author:o,permlink:i})=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/bookmarks-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({author:o,permlink:i,code:t})})).json()},onSuccess:()=>{r(),w().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function _x(e,t,r,n){return useMutation({mutationKey:["accounts","bookmarks","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Bookmarks] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/bookmarks-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({id:o,code:t})})).json()},onSuccess:()=>{r(),w().invalidateQueries({queryKey:["accounts","bookmarks",e]});},onError:n})}function Ax(e,t,r,n){return useMutation({mutationKey:["accounts","favorites","add",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");return (await h()(d.privateApiHost+"/private-api/favorites-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})})).json()},onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favorites(e)}),s.invalidateQueries({queryKey:u.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavorite(e,i)});},onError:n})}function Cx(e,t,r,n){return useMutation({mutationKey:["accounts","favorites","delete",e],mutationFn:async o=>{if(!e||!t)throw new Error("[SDK][Account][Favorites] \u2013 missing auth");let s=await h()(d.privateApiHost+"/private-api/favorites-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({account:o,code:t})});if(!s.ok)throw new Error(`Failed to delete favorite: ${s.status}`);return s.json()},onMutate:async o=>{if(!e)return;let i=w(),s=u.accounts.favorites(e),a=u.accounts.favoritesInfinite(e),c=u.accounts.checkFavorite(e,o);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a}),i.cancelQueries({queryKey:c})]);let p=i.getQueryData(s);p&&i.setQueryData(s,p.filter(g=>g.account!==o));let l=i.getQueryData(c);i.setQueryData(c,false);let m=i.getQueriesData({queryKey:a}),f=new Map(m);for(let[g,_]of m)_&&i.setQueryData(g,{..._,pages:_.pages.map(A=>({...A,data:A.data.filter(x=>x.account!==o)}))});return {previousList:p,previousInfinite:f,previousCheck:l}},onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favorites(e)}),s.invalidateQueries({queryKey:u.accounts.favoritesInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavorite(e,i)});},onError:(o,i,s)=>{let a=w();if(s?.previousList&&a.setQueryData(u.accounts.favorites(e),s.previousList),s?.previousInfinite)for(let[c,p]of s.previousInfinite)a.setQueryData(c,p);s?.previousCheck!==void 0&&a.setQueryData(u.accounts.checkFavorite(e,i),s.previousCheck),n(o);}})}async function pi(e,t,r,n){if(!t||!r)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 missing auth");let o=Se(n);if(o===null)throw new Error("[SDK][Accounts][FavoriteTags] \u2013 invalid tag");let s=await h()(d.privateApiHost+"/private-api/"+e,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({tag:o,code:r})});if(!s.ok)throw new Error(`Failed to ${e==="favorite-tags-add"?"add":"delete"} favorite tag: ${s.status}`);return await s.json()}function li(e,t,r){return pi("favorite-tags-add",e,t,r)}function di(e,t,r){return pi("favorite-tags-delete",e,t,r)}function Kx(e,t,r,n){return useMutation({mutationKey:["accounts","favorite-tags","add",e],mutationFn:o=>li(e,t,o),onSuccess:(o,i)=>{r();let s=w();s.invalidateQueries({queryKey:u.accounts.favoriteTags(e)}),s.invalidateQueries({queryKey:u.accounts.favoriteTagsInfinite(e)}),s.invalidateQueries({queryKey:u.accounts.checkFavoriteTag(e,Se(i)??i)});},onError:n})}function Fp(e,t,r,n){let o=i=>{let s=w();s.invalidateQueries({queryKey:u.accounts.favoriteTags(e)}),s.invalidateQueries({queryKey:u.accounts.favoriteTagsInfinite(e)}),i&&s.invalidateQueries({queryKey:u.accounts.checkFavoriteTag(e,i)});};return {mutationKey:["accounts","favorite-tags","delete",e],mutationFn:i=>di(e,t,i),onMutate:async i=>{let s=Se(i);if(!e||s===null)return;let a=w(),c=u.accounts.favoriteTags(e),p=u.accounts.favoriteTagsInfinite(e),l=u.accounts.checkFavoriteTag(e,s);await Promise.all([a.cancelQueries({queryKey:c}),a.cancelQueries({queryKey:p}),a.cancelQueries({queryKey:l})]);let m=a.getQueryData(c);m&&a.setQueryData(c,m.filter(A=>A.tag!==s));let f=a.getQueryData(l);a.setQueryData(l,false);let g=a.getQueriesData({queryKey:p}),_=new Map(g);for(let[A,x]of g)x&&a.setQueryData(A,{...x,pages:x.pages.map(C=>({...C,data:C.data.filter(F=>F.tag!==s)}))});return {normalized:s,previousList:m,previousInfinite:_,previousCheck:f}},onSuccess:(i,s)=>{r(),o(Se(s)??void 0);},onError:(i,s,a)=>{let c=w();if(a){a.previousList&&c.setQueryData(u.accounts.favoriteTags(e),a.previousList);for(let[l,m]of a.previousInfinite)c.setQueryData(l,m);let p=u.accounts.checkFavoriteTag(e,a.normalized);a.previousCheck!==void 0?c.setQueryData(p,a.previousCheck):c.removeQueries({queryKey:p,exact:true});}o(a?.normalized),n(i);}}}function Lx(e,t,r,n){return useMutation(Fp(e,t,r,n))}function Dp(e,t){let r=new Map;return e.forEach(([n,o])=>{r.set(n.toString(),o);}),t.forEach(([n,o])=>{r.set(n.toString(),o);}),Array.from(r.entries()).sort(([n],[o])=>n.localeCompare(o)).map(([n,o])=>[n,o])}function mi(e,t){let{data:r}=useQuery(M(e));return useMutation({mutationKey:["accounts","keys-update",e],mutationFn:async({keys:n,keepCurrent:o=false,currentKey:i,keysToRevoke:s=[],keysToRevokeByAuthority:a={}})=>{if(n.length===0)throw new Error("[SDK][Update password] \u2013 no new keys provided");if(!r)throw new Error("[SDK][Update password] \u2013 cannot update keys for anon user");let c=p=>{let l=JSON.parse(JSON.stringify(r[p])),f=[...a[p]||[],...a[p]===void 0?s:[]],g=o?l.key_auths.filter(([_])=>!f.includes(_.toString())):[];return l.key_auths=Dp(g,n.map((_,A)=>[_[p].createPublic().toString(),A+1])),l};return ee([["account_update",{account:e,json_metadata:r.json_metadata,owner:c("owner"),active:c("active"),posting:c("posting"),memo_key:n[0].memo_key.createPublic().toString()}]],i)},...t})}function tO(e,t){let{data:r}=useQuery(M(e)),{mutateAsync:n}=mi(e);return useMutation({mutationKey:["accounts","password-update",e],mutationFn:async({newPassword:o,currentPassword:i,keepCurrent:s})=>{if(!r)throw new Error("[SDK][Update password] \u2013 cannot update password for anon user");let a=U.fromLogin(e,i,"owner");return n({currentKey:a,keepCurrent:s,keys:[{owner:U.fromLogin(e,o,"owner"),active:U.fromLogin(e,o,"active"),posting:U.fromLogin(e,o,"posting"),memo_key:U.fromLogin(e,o,"memo")}]})},...t})}function aO(e,t,r){let n=useQueryClient(),{data:o}=useQuery(M(e));return useMutation({mutationKey:["accounts","revoke-posting",o?.name],mutationFn:async({accountName:i,type:s,key:a})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot revoke posting for anonymous user");let c=JSON.parse(JSON.stringify(o.posting));c.account_auths=c.account_auths.filter(([l])=>l!==i);let p={account:o.name,posting:c,memo_key:o.memo_key,json_metadata:o.json_metadata};if(s==="key"&&a)return ee([["account_update",p]],a);if(s==="keychain"){if(!r?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return r.adapter.broadcastWithKeychain(o.name,[["account_update",p]],"active")}else return !t.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing."),Co.sendOperation(["account_update",p],t.hsCallbackUrl?{callback:t.hsCallbackUrl}:{},()=>{})},onError:t.onError,onSuccess:(i,s,a)=>{t.onSuccess?.(i,s,a),n.setQueryData(M(e).queryKey,c=>({...c,posting:{...c?.posting,account_auths:c?.posting?.account_auths?.filter(([p])=>p!==s.accountName)??[]}}));}})}function fO(e,t,r,n){let{data:o}=useQuery(M(e));return useMutation({mutationKey:["accounts","recovery",o?.name],mutationFn:async({accountName:i,type:s,key:a,email:c})=>{if(!o)throw new Error("[SDK][Accounts] \u2013\xA0cannot change recovery for anonymous user");let p={account_to_recover:o.name,new_recovery_account:i,extensions:[]};if(s==="ecency"){if(!t)throw new Error("[SDK][Accounts] \u2013 missing access token");let m=await h()(d.privateApiHost+"/private-api/recoveries-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,email:c,publicKeys:[...o.owner.key_auths,...o.active.key_auths,...o.posting.key_auths,o.memo_key]})});if(!m.ok)throw new Error(`[SDK][Accounts] Failed to add recovery: ${m.status}`);return m}else {if(s==="key"&&a)return ee([["change_recovery_account",p]],a);if(s==="keychain"){if(!n?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Accounts] \u2013 missing keychain broadcaster");return n.adapter.broadcastWithKeychain(o.name,[["change_recovery_account",p]],"owner")}else return !r.hsCallbackUrl&&process.env.NODE_ENV==="development"&&console.warn("[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing."),Co.sendOperation(["change_recovery_account",p],r.hsCallbackUrl?{callback:r.hsCallbackUrl}:{},()=>{})}},onError:r.onError,onSuccess:r.onSuccess})}function yO(e,t){let r=e.key_auths.filter(([o])=>!t.has(String(o))).reduce((o,[,i])=>o+i,0),n=(e.account_auths??[]).reduce((o,[,i])=>o+i,0);return r+n>=e.weight_threshold}function fi(e,t){let r=new Set(t.map(s=>s.toString())),n=s=>s.key_auths.some(([a])=>r.has(String(a))),o=s=>{let a=JSON.parse(JSON.stringify(s));return a.key_auths=a.key_auths.filter(([c])=>!r.has(c.toString())),a},i=n(e.owner);return {account:e.name,json_metadata:e.json_metadata,owner:i?o(e.owner):void 0,active:o(e.active),posting:o(e.posting),memo_key:e.memo_key}}function AO(e,t){let{data:r}=useQuery(M(e));return useMutation({mutationKey:["accounts","revoke-key",r?.name],mutationFn:async({currentKey:n,revokingKey:o})=>{if(!r)throw new Error("[SDK][Revoke key] \u2013 cannot update keys for anon user");let i=Array.isArray(o)?o:[o],s=fi(r,i);return ee([["account_update",s]],n)},...t})}function SO(e,t,r){return v(["accounts","claimAccount"],e,({creator:n,fee:o="0.000 HIVE"})=>[cn(n,o)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(o.creator)]);},t,"active",{broadcastMode:r})}function kO(e,t,r){return v(["accounts","grant-posting-permission"],e,n=>[pn(e,n.currentPosting,n.grantedAccount,n.weightThreshold,n.memoKey,n.jsonMetadata)],async()=>{await S(t?.adapter,r,[u.accounts.full(e)]);},t,"active",{broadcastMode:r})}function IO(e,t,r){return v(["accounts","create"],e,n=>[n.useClaimed?un(e,n.newAccountName,n.keys):an(e,n.newAccountName,n.keys,n.fee)],async()=>{await S(t?.adapter,r,[u.accounts.full(e)]);},t,"active",{broadcastMode:r})}var hn=300*60*24,Wp=1e4,Gp=5e7;function gi(e){let t=T(e.vesting_shares).amount,r=T(e.received_vesting_shares).amount,n=T(e.delegated_vesting_shares).amount,o=T(e.vesting_withdraw_rate).amount,i=(Number(e.to_withdraw)-Number(e.withdrawn))/1e6,s=Math.min(o,i);return t+r-n-s}function zp(e,t,r){let n=e*1e6;return (t*r/1e4/50+1)*n/1e4}function Jp(e){if(Number.isFinite(e.lastHardfork))return e.lastHardfork>=28;let[t="0",r="0"]=(e.currentHardforkVersion??"0.0.0").split(".");return Number(t)>1||Number(t)===1&&Number(r)>=28}function Yp(e,t,r){let n=t.votePowerReserveRate||Number(t.raw?.globalDynamic?.vote_power_reserve_rate??0);if(!Number.isFinite(n)||n<=0)return 0;let o=gi(e);if(!Number.isFinite(o)||o<=0)return 0;let i=o*1e6,s=Math.ceil(i*r*60*60*24/Wp/(n*hn)),a=Ir(e),c=Math.min(a.current_mana,a.max_mana);return !Number.isFinite(c)||s>c?0:Math.max(s-Gp,0)}function Xp(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;if(Jp(t))return Yp(e,t,n);let o=0;try{if(o=gi(e),!Number.isFinite(o))return 0}catch{return 0}return zp(o,r,n)}function MO(e){return Ir(e).percentage/100}function BO(e){if(!Number.isFinite(e))throw new TypeError("Voting power must be a finite number");if(e<0||e>100)throw new RangeError("Voting power must be between 0 and 100");return (100-e)*100*hn/1e4}function QO(e){let t=parseFloat(e.vesting_shares)+parseFloat(e.received_vesting_shares)-parseFloat(e.delegated_vesting_shares),r=Math.floor(Date.now()/1e3)-e.downvote_manabar.last_update_time,n=t*1e6/4;if(n<=0)return 0;let o=parseFloat(e.downvote_manabar.current_mana.toString())+r*n/hn;o>n&&(o=n);let i=o*100/n;return isNaN(i)?0:i>100?100:i}function UO(e){let{curation_rewards:t,posting_rewards:r}=e;if(t===void 0||r===void 0)return null;let n=t+r,o=T(e.vesting_shares).amount-T(e.delegated_vesting_shares).amount;return !Number.isFinite(n)||!Number.isFinite(o)||o<=0?null:n/o}function HO(e){return jt(e).percentage/100}function VO(e,t,r,n=1e4){if(!Number.isFinite(r)||!Number.isFinite(n))return 0;let{fundRecentClaims:o,fundRewardBalance:i,base:s,quote:a}=t;if(!Number.isFinite(o)||!Number.isFinite(i)||!Number.isFinite(s)||!Number.isFinite(a)||o===0||a===0)return 0;let c=Xp(e,t,r,n);return Number.isFinite(c)?c/o*i*(s/a):0}var Zp={vote:"posting",comment:"posting",delete_comment:"posting",comment_options:"posting",claim_reward_balance:"posting",cancel_transfer_from_savings:"active",collateralized_convert:"active",convert:"active",delegate_vesting_shares:"active",recurrent_transfer:"active",set_withdraw_vesting_route:"active",transfer:"active",transfer_from_savings:"active",transfer_to_savings:"active",transfer_to_vesting:"active",withdraw_vesting:"active",limit_order_create:"active",limit_order_cancel:"active",account_update:"active",account_update2:"active",claim_account:"active",create_claimed_account:"active",account_witness_proxy:"active",account_witness_vote:"active",remove_proposal:"active",update_proposal_votes:"active",change_recovery_account:"owner",request_account_recovery:"owner",recover_account:"owner",reset_account:"owner",set_reset_account:"owner"};function el(e){let t=e[0],r=e[1];if(t!=="custom_json")throw new Error("Operation is not a custom_json operation");let n=r;return n.required_auths&&n.required_auths.length>0?"active":(n.required_posting_auths&&n.required_posting_auths.length>0,"posting")}function tl(e){let t=e[0];if(t!=="create_proposal"&&t!=="update_proposal")throw new Error("Operation is not a proposal operation");return "active"}function rl(e){let t=e[0];return t==="custom_json"?el(e):t==="create_proposal"||t==="update_proposal"?tl(e):Zp[t]??"posting"}function LO(e){let t="posting";for(let r of e){let n=rl(r);if(n==="owner")return "owner";n==="active"&&t==="posting"&&(t="active");}return t}function JO(e){return useMutation({mutationKey:["operations","sign",e],mutationFn:({operation:t,keyOrSeed:r})=>{if(!e)throw new Error("[Operations][Sign] \u2013 cannot sign op with anon user");let n;return r.split(" ").length===12?n=U.fromLogin(e,r,"active"):Po(r)?n=U.fromString(r):n=U.from(r),ee([t],n)}})}function ZO(e,t,r="active"){return useMutation({mutationKey:["operations","sign-keychain",e],mutationFn:({operation:n})=>{if(!e)throw new Error("[SDK][Keychain] \u2013\xA0cannot sign operation with anon user");if(!t?.adapter?.broadcastWithKeychain)throw new Error("[SDK][Keychain] \u2013 missing keychain broadcaster");return t.adapter.broadcastWithKeychain(e,[n],r)}})}function nS(e="/"){return useMutation({mutationKey:["operations","sign-hivesigner",e],mutationFn:async({operation:t})=>Co.sendOperation(t,{callback:e},()=>{})})}function aS(){return queryOptions({queryKey:["operations","chain-properties"],queryFn:async()=>await y("condenser_api.get_chain_properties",[])})}function yi(e,t,r){return {...e,...t??{},title:r.title,body:r.body}}function hi(e,t){return {...e??{},title:t.title,body:t.body}}function gS(e,t){return useMutation({mutationKey:["posts","add-fragment",e],mutationFn:async({title:r,body:n})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let i=await h()(d.privateApiHost+"/private-api/fragments-add",{method:"POST",body:JSON.stringify({code:t,title:r,body:n}),headers:{"Content-Type":"application/json"}});if(!i.ok)throw new Error(`[SDK][Posts] Failed to add fragment: ${i.status}`);return i.json()},onSuccess(r,n){let o=w(),i=hi(r,n);o.setQueryData(tt(e,t).queryKey,s=>[i,...s??[]]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map((a,c)=>c===0?{...a,data:[i,...a.data]}:a)});}})}function AS(e,t){return useMutation({mutationKey:["posts","edit-fragment",e],mutationFn:async({fragmentId:r,title:n,body:o})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let s=await h()(d.privateApiHost+"/private-api/fragments-update",{method:"POST",body:JSON.stringify({code:t,id:r,title:n,body:o}),headers:{"Content-Type":"application/json"}});if(!s.ok)throw new Error(`[SDK][Posts] Failed to update fragment: ${s.status}`);return s.json()},onSuccess(r,n){let o=w(),i=s=>yi(s,r,n);o.setQueryData(tt(e,t).queryKey,s=>s?.map(a=>a.id===n.fragmentId?i(a):a)??[]),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},s=>s&&{...s,pages:s.pages.map(a=>({...a,data:a.data.map(c=>c.id===n.fragmentId?i(c):c)}))});}})}function ES(e,t){return useMutation({mutationKey:["posts","remove-fragment",e],mutationFn:async({fragmentId:r})=>{if(!t)throw new Error("[SDK][Posts] Missing access token");let o=await h()(d.privateApiHost+"/private-api/fragments-delete",{method:"POST",body:JSON.stringify({code:t,id:r}),headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`[SDK][Posts] Failed to delete fragment: ${o.status}`);return o},onSuccess(r,n){let o=w();o.setQueryData(tt(e,t).queryKey,i=>[...i??[]].filter(({id:s})=>s!==n.fragmentId)),o.setQueriesData({queryKey:["posts","fragments","infinite",e]},i=>i&&{...i,pages:i.pages.map(s=>({...s,data:s.data.filter(a=>a.id!==n.fragmentId)}))});}})}async function G(e){if(!e.ok){let r;try{r=await e.json();}catch{r=void 0;}let n=new Error(`Request failed with status ${e.status}`);throw n.status=e.status,n.data=r,n}let t=await e.text();if(!t||t.trim()==="")return "";try{return JSON.parse(t)}catch(r){return console.warn("[SDK] Failed to parse JSON response:",r,"Response:",t),""}}async function TS(e,t,r,n){let i=await h()(d.privateApiHost+"/private-api/account-create",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,email:t,referral:r,captcha_token:n})}),s=await G(i);return {status:i.status,data:s}}async function FS(e){let r=await h()(d.privateApiHost+"/private-api/subscribe",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e})}),n=await G(r);return {status:r.status,data:n}}async function qS(e,t,r="",n=""){let o={code:e,ty:t};r&&(o.bl=r),n&&(o.tx=n);let s=await h()(d.privateApiHost+"/private-api/usr-activity",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});await G(s);}async function IS(e,t,r=null,n=null){let o={code:e};t&&(o.filter=t),r&&(o.since=r),n&&(o.user=n);let s=await h()(d.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});return G(s)}async function DS(e,t,r,n,o,i){let s={code:e,username:t,token:i,system:r,allows_notify:n,notify_types:o},c=await h()(d.privateApiHost+"/private-api/register-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return G(c)}async function KS(e,t,r){let n={code:e,username:t,token:r},i=await h()(d.privateApiHost+"/private-api/detail-device",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}async function _i(e,t){let r={code:e};t&&(r.id=t);let o=await h()(d.privateApiHost+"/private-api/notifications/mark",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function wi(e,t){let r={code:e,url:t},o=await h()(d.privateApiHost+"/private-api/images-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}var ll="https://i.ecency.com";async function bi(e,t,r){let n=h(),o=new FormData;o.append("file",e);let i=await n(`${ll}/hs/${t}`,{method:"POST",body:o,signal:r});return G(i)}async function NS(e,t,r,n){let o=h(),i=new FormData;i.append("file",e);let s=await o(`${d.imageHost}/${t}/${r}`,{method:"POST",body:i,signal:n});return G(s)}async function vi(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/images-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Ai(e,t,r,n,o){let i={code:e,title:t,body:r,tags:n,meta:o},a=await h()(d.privateApiHost+"/private-api/drafts-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return G(a)}async function Pi(e,t,r,n,o,i){let s={code:e,id:t,title:r,body:n,tags:o,meta:i},c=await h()(d.privateApiHost+"/private-api/drafts-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(s)});return G(c)}async function xi(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/drafts-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Oi(e,t,r,n,o,i,s,a){let c={code:e,permlink:t,title:r,body:n,meta:o,schedule:s,reblog:a};i&&(c.options=i);let l=await h()(d.privateApiHost+"/private-api/schedules-add",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)});return G(l)}async function Si(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/schedules-delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function Ci(e,t){let r={code:e,id:t},o=await h()(d.privateApiHost+"/private-api/schedules-move",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)});return G(o)}async function MS(e,t,r){let n={code:e,author:t,permlink:r},i=await h()(d.privateApiHost+"/private-api/promoted-post",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}async function BS(e,t,r){let n={username:e,email:t,friend:r},i=await h()(d.privateApiHost+"/private-api/account-create-friend",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(n)});return G(i)}function jS(e,t,r,n){return useMutation({mutationKey:["posts","drafts","add",e],mutationFn:async({title:o,body:i,tags:s,meta:a})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addDraft");return Ai(t,o,i,s,a)},onSuccess:o=>{r?.();let i=w();o?.drafts?i.setQueryData(u.posts.drafts(e),o.drafts):i.invalidateQueries({queryKey:u.posts.drafts(e)}),i.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:n})}function zS(e,t,r,n){return useMutation({mutationKey:["posts","drafts","update",e],mutationFn:async({draftId:o,title:i,body:s,tags:a,meta:c})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for updateDraft");return Pi(t,o,i,s,a,c)},onSuccess:()=>{r?.();let o=w();o.invalidateQueries({queryKey:u.posts.drafts(e)}),o.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:n})}function tC(e,t,r,n){return useMutation({mutationKey:["posts","drafts","delete",e],mutationFn:async({draftId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteDraft");return xi(t,o)},onMutate:async({draftId:o})=>{if(!e)return;let i=w(),s=u.posts.drafts(e),a=u.posts.draftsInfinite(e);await Promise.all([i.cancelQueries({queryKey:s}),i.cancelQueries({queryKey:a})]);let c=i.getQueryData(s);c&&i.setQueryData(s,c.filter(m=>m._id!==o));let p=i.getQueriesData({queryKey:a}),l=new Map(p);for(let[m,f]of p)f&&i.setQueryData(m,{...f,pages:f.pages.map(g=>({...g,data:g.data.filter(_=>_._id!==o)}))});return {previousList:c,previousInfinite:l}},onSuccess:()=>{r?.();let o=w();o.invalidateQueries({queryKey:u.posts.drafts(e)}),o.invalidateQueries({queryKey:u.posts.draftsInfinite(e)});},onError:(o,i,s)=>{let a=w();if(s?.previousList&&a.setQueryData(u.posts.drafts(e),s.previousList),s?.previousInfinite)for(let[c,p]of s.previousInfinite)a.setQueryData(c,p);n?.(o);}})}function sC(e,t,r,n){return useMutation({mutationKey:["posts","schedules","add",e],mutationFn:async({permlink:o,title:i,body:s,meta:a,options:c,schedule:p,reblog:l})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for addSchedule");return Oi(t,o,i,s,a,c,p,l)},onSuccess:()=>{r?.(),w().invalidateQueries({queryKey:u.posts.schedules(e)});},onError:n})}function lC(e,t,r,n){return useMutation({mutationKey:["posts","schedules","delete",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteSchedule");return Si(t,o)},onSuccess:o=>{r?.();let i=w();o?i.setQueryData(u.posts.schedules(e),o):i.invalidateQueries({queryKey:u.posts.schedules(e)});},onError:n})}function yC(e,t,r,n){return useMutation({mutationKey:["posts","schedules","move",e],mutationFn:async({id:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for moveSchedule");return Ci(t,o)},onSuccess:o=>{r?.();let i=w();o?i.setQueryData(u.posts.schedules(e),o):i.invalidateQueries({queryKey:u.posts.schedules(e)}),i.invalidateQueries({queryKey:u.posts.drafts(e)});},onError:n})}function vC(e,t,r,n){return useMutation({mutationKey:["posts","images","add",e],mutationFn:async({url:o,code:i})=>{let s=i??t;if(!e||!s)throw new Error("[SDK][Posts] \u2013 missing auth for addImage");return wi(s,o)},onSuccess:()=>{r?.(),w().invalidateQueries({queryKey:u.posts.images(e)});},onError:n})}function SC(e,t,r,n){return useMutation({mutationKey:["posts","images","delete",e],mutationFn:async({imageId:o})=>{if(!e||!t)throw new Error("[SDK][Posts] \u2013 missing auth for deleteImage");return vi(t,o)},onSuccess:(o,i)=>{r?.();let s=w(),{imageId:a}=i;s.setQueryData(["posts","images",e],c=>c?.filter(p=>p._id!==a)),s.setQueriesData({queryKey:["posts","images","infinite",e]},c=>c&&{...c,pages:c.pages.map(p=>({...p,data:p.data.filter(l=>l._id!==a)}))});},onError:n})}function kC(e,t){return useMutation({mutationKey:["posts","images","upload"],mutationFn:async({file:r,token:n,signal:o})=>bi(r,n,o),onSuccess:e,onError:t})}function er(e,t){return `/@${e}/${t}`}function vl(e,t,r){return (r??w()).getQueryData(u.posts.entry(er(e,t)))}function Al(e,t){(t??w()).setQueryData(u.posts.entry(er(e.author,e.permlink)),e);}function Zt(e,t,r,n){let o=n??w(),i=er(e,t),s=o.getQueryData(u.posts.entry(i));if(!s)return;let a=r(s);return o.setQueryData(u.posts.entry(i),a),s}var Ge;(a=>{function e(c,p,l,m,f){Zt(c,p,g=>({...g,active_votes:l,stats:{...g.stats||{gray:false,hide:false,flag_weight:0,total_votes:0},total_votes:l.length,flag_weight:g.stats?.flag_weight||0},total_votes:l.length,payout:m,pending_payout_value:String(m)}),f);}a.updateVotes=e;function t(c,p,l,m){Zt(c,p,f=>({...f,reblogs:l}),m);}a.updateReblogsCount=t;function r(c,p,l,m){Zt(c,p,f=>({...f,children:l}),m);}a.updateRepliesCount=r;function n(c,p,l,m){Zt(p,l,f=>({...f,children:f.children+1,replies:[c,...f.replies]}),m);}a.addReply=n;function o(c,p){c.forEach(l=>Al(l,p));}a.updateEntries=o;function i(c,p,l){(l??w()).invalidateQueries({queryKey:u.posts.entry(er(c,p))});}a.invalidateEntry=i;function s(c,p,l){return vl(c,p,l)}a.getEntry=s;})(Ge||={});function Pl(e,t,r){let n=e.some(o=>o.voter===t);return r!==0?n:!n}function xl(e,t,r){let n=Ge.getEntry(t.author,t.permlink,r);if(!n?.active_votes||Pl(n.active_votes,e,t.weight))return;let o=[...n.active_votes.filter(s=>s.voter!==e),...t.weight!==0?[{rshares:t.weight,voter:e}]:[]],i=n.payout+(t.estimated??0);Ge.updateVotes(t.author,t.permlink,o,i,r);}function NC(e,t,r){return v(["posts","vote"],e,({author:n,permlink:o,weight:i})=>[Qr(e,n,o,i)],async(n,o)=>{xl(e,o);let i=n?.id??n?.tx_id;if(t?.adapter?.recordActivity&&i&&t.adapter.recordActivity(120,i,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let s=()=>{t.adapter.invalidateQueries([u.posts.entry(`/@${o.author}/${o.permlink}`),u.accounts.full(e)]);};(r??"async")==="async"?setTimeout(s,4e3):s();}},t,"posting",{broadcastMode:r??"async"})}function HC(e,t,r){return v(["posts","reblog"],e,({author:n,permlink:o,deleteReblog:i})=>[Hr(e,n,o,i??false)],async(n,o)=>{let i=Ge.getEntry(o.author,o.permlink);if(i){let p=Math.max(0,(i.reblogs??0)+(o.deleteReblog?-1:1));Ge.updateReblogsCount(o.author,o.permlink,p);}let s=n?.id??n?.tx_id;t?.adapter?.recordActivity&&s&&t.adapter.recordActivity(130,s,n?.block_num).catch(()=>{});let a=()=>{w().invalidateQueries({queryKey:u.posts.accountPostsBlogPrefix(e)}),t?.adapter?.invalidateQueries&&t.adapter.invalidateQueries([u.posts.entry(`/@${o.author}/${o.permlink}`),u.posts.rebloggedBy(o.author,o.permlink)]);};(r??"async")==="async"?setTimeout(a,4e3):a();},t,"posting",{broadcastMode:r??"async"})}function Ol(e){return e.isUpdate?null:e.parentAuthor?110:100}function $C(e,t,r){return v(["posts","comment"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((f,g)=>f.account.localeCompare(g.account));l.push([0,{beneficiaries:m.map(f=>({account:f.account,weight:f.weight}))}]);}o.push(je(n.author,n.permlink,i,s,a,c,l));}return o},async(n,o)=>{let i=!o.parentAuthor,s=Ol(o),a=n?.id??n?.tx_id;if(s!==null&&t?.adapter?.recordActivity&&a&&t.adapter.recordActivity(s,a,n?.block_num).catch(()=>{}),t?.adapter?.invalidateQueries){let c=[u.accounts.full(e),u.resourceCredits.account(e)];if(!i){c.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let p=o.rootAuthor||o.parentAuthor,l=o.rootPermlink||o.parentPermlink;c.push({predicate:m=>{let f=m.queryKey;return Array.isArray(f)&&f[0]==="posts"&&f[1]==="discussions"&&f[2]===p&&f[3]===l}});}await t.adapter.invalidateQueries(c);}},t,"posting",{broadcastMode:r})}function zC(e,t,r,n){let o=n??w(),i=o.getQueriesData({predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="discussions"&&a[2]===t&&a[3]===r}});for(let[s,a]of i)a&&o.setQueryData(s,[e,...a]);}function Ei(e,t,r,n,o){let i=o??w(),s=new Map,a=i.getQueriesData({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===r&&p[3]===n}});for(let[c,p]of a)p&&(s.set(c,p),i.setQueryData(c,p.filter(l=>l.author!==e||l.permlink!==t)));return s}function Ri(e,t){let r=t??w();for(let[n,o]of e)r.setQueryData(n,o);}function JC(e,t,r,n){let o=n??w(),i=`/@${e}/${t}`,s=o.getQueryData(u.posts.entry(i));return s&&o.setQueryData(u.posts.entry(i),{...s,...r}),s}function YC(e,t,r,n){let o=n??w(),i=`/@${e}/${t}`;o.setQueryData(u.posts.entry(i),r);}function rE(e,t,r){return v(["posts","deleteComment"],e,({author:n,permlink:o})=>[Ur(n,o)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.accounts.full(e)];if(o.parentAuthor&&o.parentPermlink){i.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}});}await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r,onMutate:async n=>{let o=n.rootAuthor||n.parentAuthor,i=n.rootPermlink||n.parentPermlink;return o&&i?{snapshots:Ei(n.author,n.permlink,o,i)}:{}},onError:(n,o,i)=>{let{snapshots:s}=i??{};s&&Ri(s);}})}function sE(e,t,r){return v(["posts","cross-post"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,"",n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true}=n.options;o.push(je(n.author,n.permlink,i,s,a,c,[]));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.accounts.full(e),{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.parentPermlink}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"async"})}function pE(e,t,r){return v(["posts","update-reply"],e,n=>{let o=[];if(o.push(Ve(n.author,n.permlink,n.parentAuthor,n.parentPermlink,n.title,n.body,n.jsonMetadata)),n.options){let{maxAcceptedPayout:i="1000000.000 HBD",percentHbd:s=1e4,allowVotes:a=true,allowCurationRewards:c=true,beneficiaries:p=[]}=n.options,l=[];if(p.length>0){let m=[...p].sort((f,g)=>f.account.localeCompare(g.account));l.push([0,{beneficiaries:m.map(f=>({account:f.account,weight:f.weight}))}]);}o.push(je(n.author,n.permlink,i,s,a,c,l));}return o},async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.resourceCredits.account(e)];i.push(u.posts.entry(`/@${o.parentAuthor}/${o.parentPermlink}`));let s=o.rootAuthor||o.parentAuthor,a=o.rootPermlink||o.parentPermlink;i.push({predicate:c=>{let p=c.queryKey;return Array.isArray(p)&&p[0]==="posts"&&p[1]==="discussions"&&p[2]===s&&p[3]===a}}),await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r})}function fE(e,t,r){return v(["ecency","promote"],e,({author:n,permlink:o,duration:i})=>[mn(e,n,o,i)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...u.posts._promotedPrefix],[...u.points._prefix(e)],u.posts.entry(`/@${o.author}/${o.permlink}`)]);},t,"active",{broadcastMode:r})}var Sl=[3e3,3e3,3e3],Cl=e=>new Promise(t=>setTimeout(t,e));async function El(e,t){return y("condenser_api.get_content",[e,t])}async function Rl(e,t,r=0,n){let o=n?.delays??Sl,i;try{i=await El(e,t);}catch{i=void 0;}if(i||r>=o.length)return;let s=o[r];return s>0&&await Cl(s),Rl(e,t,r+1,n)}var ot={};kt(ot,{useRecordActivity:()=>_n});function Tl(){return typeof window<"u"&&window.location?{url:window.location.href,domain:window.location.host}:{url:"",domain:""}}function _n(e,t,r){return useMutation({mutationKey:["analytics",t],mutationFn:async()=>{if(!t)throw new Error("[SDK][Analytics] \u2013 no activity type provided");let n=h(),o=Tl(),i=r?.url??o.url,s=r?.domain??o.domain;try{await n(d.plausibleHost+"/api/event",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:t,url:i,domain:s,props:{username:e}})});}catch{}}})}function xE(e){return queryOptions({queryKey:["analytics","discover-leaderboard",e],queryFn:async({signal:t})=>{let r=await fetch(d.privateApiHost+`/private-api/leaderboard/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch leaderboard: ${r.status}`);return r.json()}})}function RE(e){return queryOptions({queryKey:["analytics","discover-curation",e],queryFn:async({signal:t})=>{let r=await fetch(d.privateApiHost+`/private-api/curation/${e}`,{signal:t});if(!r.ok)throw new Error(`Failed to fetch curation data: ${r.status}`);let n=await r.json(),o=n.map(s=>s.account),i=await y("condenser_api.get_accounts",[o]);for(let s=0;sa.efficiency-s.efficiency),n}})}function qE(e,t=[],r=["visitors","pageviews","visit_duration"],n){let o=[...t].sort(),i=[...r].sort();return queryOptions({queryKey:["analytics","page-stats",e,o,i,n],queryFn:async({signal:s})=>{let a=await fetch(d.privateApiHost+"/api/stats",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,date_range:n}),signal:s});if(!a.ok)throw new Error(`Failed to fetch page stats: ${a.status}`);return a.json()},enabled:!!e,staleTime:0})}var tr="threespeakfund",BE=1100;function Dl(e){return /https?:\/\/([a-z0-9-]+\.)*3speak\.tv\/embed[?/]/i.test(e)}function QE(e,t){if(!Dl(t))return e;let r=e.find(n=>n.account===tr);return r&&r.weight===1100?e:r?e.map(n=>n.account===tr?{...n,weight:1100}:n):[...e,{account:tr,weight:1100}]}function UE(e){return e===tr}var vn={};kt(vn,{getAccountTokenQueryOptions:()=>bn,getAccountVideosQueryOptions:()=>Ul});var wn={};kt(wn,{getDecodeMemoQueryOptions:()=>Ml});function Ml(e,t,r){return queryOptions({queryKey:["integrations","hivesigner","decode-memo",e],queryFn:async()=>{if(r)return new Co.Client({accessToken:r}).decode(t)}})}var ki={queries:wn};function bn(e,t){return queryOptions({queryKey:["integrations","3speak","authenticate",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let n=await h()(`https://studio.3speak.tv/mobile/login?username=${e}&hivesigner=true`,{headers:{"Content-Type":"application/json"}}),o=ki.queries.getDecodeMemoQueryOptions(e,(await n.json()).memo,t);await w().prefetchQuery(o);let{memoDecoded:i}=w().getQueryData(o.queryKey);return i.replace("#","")}})}function Ul(e,t){return queryOptions({queryKey:["integrations","3speak","videos",e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Integrations][3Speak] \u2013\xA0anon user");let r=bn(e,t);await w().prefetchQuery(r);let n=w().getQueryData(r.queryKey);if(!n)throw new Error("[SDK][Integrations][3Speak] \u2013 missing account token");return await(await h()("https://studio.3speak.tv/mobile/api/my-videos",{headers:{"Content-Type":"application/json",Authorization:`Bearer ${n}`}})).json()}})}var oR={queries:vn};function pR(e){return queryOptions({queryKey:["integrations","hiveposh","links",e],retry:false,queryFn:async()=>{try{let r=await h()(`https://hiveposh.com/api/v0/linked-accounts/${e}`,{headers:{"Content-Type":"application/json"}});if(r.status===400&&(await r.json().catch(()=>({})))?.message==="User Not Connected"||!r.ok)return null;let n=await r.json();return {twitter:{username:n.twitter_username,profile:n.twitter_profile},reddit:{username:n.reddit_username,profile:n.reddit_profile}}}catch{return null}}})}function fR({url:e,dimensions:t=[],metrics:r=["visitors","pageviews","visit_duration"],filterBy:n="event:page",dateRange:o,enabled:i=true}){return queryOptions({queryKey:["integrations","plausible",e,t,r,n,o],queryFn:async()=>{let a=await h()(`${d.privateApiHost}/api/stats`,{method:"POST",body:JSON.stringify({metrics:r,url:encodeURIComponent(e),dimensions:t,filterBy:n,...o?{date_range:o}:{}}),headers:{"Content-Type":"application/json"}});if(!a.ok)throw new Error(`Failed to fetch Plausible stats: ${a.status}`);return await a.json()},enabled:!!e&&i,retry:1})}function _R(){return queryOptions({queryKey:["resource-credits","stats"],queryFn:async()=>(await y("rc_api.get_rc_stats",{})).rc_stats})}function AR(e){return queryOptions({queryKey:["resource-credits","account",e],queryFn:async()=>(await y("rc_api.find_rc_accounts",{accounts:[e]})).rc_accounts,enabled:!!e})}function CR(){return queryOptions({queryKey:u.resourceCredits.resourceParams(),staleTime:1440*60*1e3,gcTime:1/0,queryFn:async()=>await y("rc_api.get_resource_params",{})})}var rr=["resource_history_bytes","resource_new_accounts","resource_market_bytes","resource_state_bytes","resource_execution_time"];var Wl=11,Gl=65,zl=16,it=e=>BigInt(typeof e=="string"?e:Math.trunc(e));function An(e,t,r,n){if(r<=0||n<=0)return 0;let o=it(e.coeff_a),i=it(e.coeff_b),s=it(e.shift),a=it(n)*o>>s;a+=1n,a*=it(r);let c=i+(t>0?it(t):0n);return c===0n?0:Number(a/c+1n)}function Pn({transactionBytes:e,permlinkLength:t,signatures:r=1,beneficiaries:n=0,hasCommentOptions:o=false},i){let s=i.resource_state_bytes,a=i.resource_execution_time;return {resource_history_bytes:e,resource_new_accounts:0,resource_market_bytes:0,resource_state_bytes:s.comment_base_size+s.comment_permlink_char_size*t+s.transaction_base_size+s.comment_beneficiaries_member_size*n,resource_execution_time:a.comment_time+a.transaction_time+a.verify_authority_time*r+(o?a.comment_options_time:0)}}var we=e=>{let t=yt(e);return he(t)+t},Jl=e=>1+we(e.parent_author)+we(e.parent_permlink)+we(e.author)+we(e.permlink)+we(e.title)+we(e.body)+we(e.json_metadata),Yl=(e,t)=>{let r=t.beneficiaries??[],n=1+we(e.author)+we(e.permlink)+zl+2+2;return n+=he(r.length>0?1:0),r.length>0&&(n+=1+he(r.length),r.forEach(o=>{n+=we(o.account)+2;})),n};function xn({op:e,options:t,signatures:r=1}){let n=[Jl(e)];return t&&n.push(Yl(e,t)),Wl+he(n.length)+n.reduce((o,i)=>o+i,0)+he(r)+Gl*r}var Xl={ready:false,cost:0,transactionBytes:0,breakdown:[]};function FR({op:e,options:t,rcParams:r,rcStats:n,signatures:o=1}){if(!r?.resource_params||!r.size_info||!n?.pool||!n.share)return Xl;let i=xn({op:e,options:t,signatures:o}),s=Pn({transactionBytes:i,permlinkLength:yt(e.permlink),signatures:o,beneficiaries:t?.beneficiaries?.length??0,hasCommentOptions:!!t},r.size_info),a=Number(n.regen),c=0,p=[];return rr.forEach((l,m)=>{let f=r.resource_params[l],g=Number(n.pool[m]??0),_=Number(n.share[m]??0);if(!f||_<=0)return;let A=s[l]*Number(f.resource_dynamics_params.resource_unit??1),x=Number(BigInt(a)*BigInt(_)/10000n),C=An(f.price_curve_params,g,A,x);c+=C,p.push({resource:l,usage:A,cost:C});}),{ready:true,cost:c,transactionBytes:i,breakdown:p}}function On(e,t,r){let n=Number(r.regen),o=0,i=[];return rr.forEach((s,a)=>{let c=t.resource_params[s],p=Number(r.pool[a]??0),l=Number(r.share[a]??0);if(!c||l<=0)return;let m=e[s]*Number(c.resource_dynamics_params.resource_unit??1),f=Number(BigInt(n)*BigInt(l)/10000n),g=An(c.price_curve_params,p,m,f);o+=g,i.push({resource:s,usage:m,cost:g});}),{cost:o,breakdown:i}}var Zl=11,ed=65,Sn=e=>{let t=yt(e);return he(t)+t},td=()=>({resource_history_bytes:0,resource_new_accounts:0,resource_market_bytes:0,resource_state_bytes:0,resource_execution_time:0});function Ti(e,t=1){let r=1+Sn(e.voter)+Sn(e.author)+Sn(e.permlink)+2;return Zl+he(1)+r+he(t)+ed*t}function Fi({transactionBytes:e,signatures:t=1},r){let n=r.resource_state_bytes,o=r.resource_execution_time;return {...td(),resource_history_bytes:e,resource_state_bytes:n.vote_size+n.transaction_base_size,resource_execution_time:o.vote_time+o.transaction_time+o.verify_authority_time*t}}var qi={ready:false,currentMana:0,maxMana:0,avgCost:0,cost:0,transactionBytes:0,estimatedCost:0,willLikelyFail:false,deficit:0,remaining:0};function VR({rcAccount:e,rcStats:t,rcParams:r,operation:n,payload:o,fallback:i="minimal",buffer:s=1.2}){if(!e||!t?.ops)return qi;let{current_mana:a,max_mana:c}=jt(e),p=rd(n,o,i,r,t);if(!p)return {...qi,currentMana:a,maxMana:c};let{cost:l,transactionBytes:m}=p,f=Number.isFinite(s)&&s>0?s:1.2,g=l*f,_=a0?{cost:r,transactionBytes:0}:null}var od={author:"aaaaaaaaaa",permlink:"aaaaaaaaaaaaaaaaaaaa",parent_author:"",parent_permlink:"hive-100000",title:"",body:"",json_metadata:"{}"},id={voter:"aaaaaaaaaa",author:"aaaaaaaaaa",permlink:"aaaaaaaaaaaaaaaaaaaa"};function WR(e,t,r){return queryOptions({queryKey:["games","status-check",r,e],enabled:!!e&&!!t,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return await(await h()(d.privateApiHost+"/private-api/get-game",{method:"POST",body:JSON.stringify({game_type:r,code:t}),headers:{"Content-Type":"application/json"}})).json()}})}async function ud(e,t,r){let o=await h()(d.privateApiHost+"/private-api/post-game",{method:"POST",body:JSON.stringify({game_type:t,code:e,key:r}),headers:{"Content-Type":"application/json"}}),i=(o.headers.get("content-type")??"").split(";")[0].trim().toLowerCase(),s=await o.text();if(!o.ok){let a=s&&i.includes("json")?`: ${s.slice(0,200)}`:"";throw new Error(`[SDK][Games] \u2013 failed with status ${o.status}${a}`)}if(!i.includes("json"))throw new Error(`[SDK][Games] \u2013 expected JSON but received "${i||"empty"}" response (status ${o.status})`);try{return JSON.parse(s)}catch{throw new Error(`[SDK][Games] \u2013 malformed JSON response (status ${o.status})`)}}function XR(e,t,r,n){let{mutateAsync:o}=_n(e,"spin-rolled");return useMutation({mutationKey:["games","post",r,e],mutationFn:async()=>{if(!e||!t)throw new Error("[SDK][Games] \u2013 missing auth");return ud(t,r,n)},onSuccess(){o();}})}function rk(e){let t=e?.replace("@","");return queryOptions({queryKey:u.quests.status(t),enabled:!!t,queryFn:async()=>{if(!t)throw new Error("[SDK][Quests] \u2013 username wasn't provided");let n=await h()(d.privateApiHost+"/private-api/quests",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:t})});if(!n.ok)throw new Error(`Failed to fetch quests: ${n.status}`);return await n.json()},staleTime:3e4,refetchOnMount:true})}var pd=[{id:"checkin",tier:"daily",goal:1,i18nKey:"checkin",icon:"check-circle"},{id:"post",tier:"daily",goal:1,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"daily",goal:3,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"daily",goal:10,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"daily",goal:1,i18nKey:"reblog",icon:"repeat"},{id:"spin",tier:"daily",goal:1,i18nKey:"spin",icon:"gift"},{id:"post",tier:"weekly",goal:5,i18nKey:"post",icon:"pencil"},{id:"comment",tier:"weekly",goal:15,i18nKey:"comment",icon:"comment"},{id:"vote",tier:"weekly",goal:50,i18nKey:"vote",icon:"chevron-up-circle"},{id:"reblog",tier:"weekly",goal:5,i18nKey:"reblog",icon:"repeat"},{id:"post",tier:"monthly",goal:20,i18nKey:"post",icon:"pencil"}];function ok(e,t){return pd.find(r=>r.tier===e&&r.id===t)}var ld=25;function dd(e){return Array.from((e??"").replace(/https?:\/\/\S+/g,"")).length}function ik(e){return dd(e)>ld}var sk=300,ak=2;function gd(){return typeof crypto<"u"&&typeof crypto.randomUUID=="function"?crypto.randomUUID():`${Date.now()}-${Math.random().toString(36).slice(2)}`}async function yd(e){let r=await h()(d.privateApiHost+"/private-api/streak-freeze/buy",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e,idempotency_key:gd()})});if(!r.ok){let n;try{n=await r.json();}catch{}let o=n?.message??`Failed to buy streak freeze: ${r.status}`,i=new Error(o);throw i.status=r.status,i.data=n,i}return await r.json()}function lk(e,t){let r=useQueryClient(),n=e?.replace("@","");return useMutation({mutationKey:["streak-freeze","buy",n],mutationFn:async()=>{if(!n||!t)throw new Error("[SDK][StreakFreeze] \u2013 missing auth");return yd(t)},onSuccess(){n&&r.invalidateQueries({queryKey:u.points._prefix(n)});},onSettled(){n&&r.invalidateQueries({queryKey:u.quests.status(n)});}})}function gk(e,t,r){return v(["communities","subscribe"],e,({community:n})=>[Xr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.subscriptions(e),[...u.communities.singlePrefix(o.community)],u.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"async"})}function wk(e,t,r){return v(["communities","unsubscribe"],e,({community:n})=>[Zr(e,n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.subscriptions(e),[...u.communities.singlePrefix(o.community)],u.communities.context(e,o.community)]);},t,"posting",{broadcastMode:r??"sync"})}function Pk(e,t,r){return v(["communities","mutePost"],e,({community:n,author:o,permlink:i,notes:s,mute:a})=>[nn(e,n,o,i,s,a)],async(n,o)=>{if(t?.adapter?.invalidateQueries){let i=[u.posts.entry(`/@${o.author}/${o.permlink}`),["community","single",o.community],{predicate:s=>{let a=s.queryKey;return Array.isArray(a)&&a[0]==="posts"&&a[1]==="posts-ranked"&&a[3]===o.community}}];await t.adapter.invalidateQueries(i);}},t,"posting",{broadcastMode:r??"sync"})}function Ck(e,t,r,n){return v(["communities","set-role",e],t,({account:o,role:i})=>[en(t,e,o,i)],async(o,i)=>{w().setQueriesData({queryKey:u.communities.singlePrefix(e)},a=>{if(!a)return a;let c=[...a.team??[]],p=c.findIndex(([l])=>l===i.account);return p>=0?c[p]=[c[p][0],i.role,c[p][2]??""]:c.push([i.account,i.role,""]),{...a,team:c}}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...u.communities.singlePrefix(e)],u.communities.context(i.account,e)]);},r,"posting",{broadcastMode:n??"async"})}function Tk(e,t,r,n){return v(["communities","update",e],t,o=>[tn(t,e,o)],async(o,i)=>{w().setQueriesData({queryKey:u.communities.singlePrefix(e)},a=>a&&{...a,...i}),r?.adapter?.invalidateQueries&&await r.adapter.invalidateQueries([[...u.communities.singlePrefix(e)]]);},r,"posting",{broadcastMode:n??"async"})}function Dk(e,t,r){return v(["communities","registerRewards"],e,({name:n})=>[yn(n)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([[...u.communities.singlePrefix(o.name)],[...u.points._prefix(e)]]);},t,"active",{broadcastMode:r})}function Bk(e,t,r){return v(["communities","pin-post"],e,({community:n,account:o,permlink:i,pin:s})=>[rn(e,n,o,i,s)],async(n,o)=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.posts.entry(`/@${o.account}/${o.permlink}`),[...u.communities.singlePrefix(o.community)]]);},t,"posting",{broadcastMode:r??"async"})}function jk(e,t,r=100,n=void 0,o=true){return queryOptions({queryKey:u.communities.list(e,t??"",r),enabled:o,queryFn:async()=>{let i=await y("bridge.list_communities",{last:"",limit:r,sort:e==="hot"?"rank":e,query:t||null,observer:n});return i?e==="hot"?i.sort(()=>Math.random()-.5):i:[]}})}function zk(e,t){return queryOptions({queryKey:u.communities.context(e,t),enabled:!!e&&!!t,queryFn:async()=>{let r=await y("bridge.get_community_context",{account:e,name:t});return {role:r?.role??"guest",subscribed:r?.subscribed??false}}})}function eT(e,t="",r=true){return queryOptions({queryKey:u.communities.single(e,t),enabled:r&&!!e,queryFn:async()=>Go(e??"",t)})}var Ii=100;async function Di(e,t){return await y("bridge.list_subscribers",{community:e,limit:Ii,...t?{last:t}:{}})??[]}function sT(e){return queryOptions({queryKey:u.communities.subscribers(e),queryFn:async()=>Di(e,null),staleTime:6e4})}function aT(e){return infiniteQueryOptions({queryKey:u.communities.subscribersInfinite(e),initialPageParam:null,queryFn:async({pageParam:t})=>Di(e,t),getNextPageParam:t=>t?.length>=Ii?t[t.length-1]?.[0]??null:null,staleTime:6e4})}function mT(e,t){return infiniteQueryOptions({queryKey:u.communities.accountNotifications(e,t),initialPageParam:null,queryFn:async({pageParam:r})=>await y("bridge.account_notifications",{account:e,limit:t,last_id:r??void 0})??[],getNextPageParam:r=>r?.length>=t?r[r.length-1].id:null})}function hT(){return queryOptions({queryKey:u.communities.rewarded(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/rewarded-communities",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch rewarded communities: ${e.status}`);return e.json()}})}var xd=(s=>(s.OWNER="owner",s.ADMIN="admin",s.MOD="mod",s.MEMBER="member",s.GUEST="guest",s.MUTED="muted",s))(xd||{}),wT={owner:["admin","mod","member","guest","muted"],admin:["mod","member","guest","muted"],mod:["member","guest","muted"]};function vT(e,t){return e.startsWith("hive-3")||t===3?"Council":e.startsWith("hive-2")||t===2?"Journal":"Topic"}function AT({communityType:e,userRole:t,subscribed:r}){let n=t==="muted"?false:e==="Topic"?true:["owner","admin","mod","member"].includes(t),o=(()=>{if(t==="muted")return false;switch(e){case "Topic":return true;case "Journal":return t!=="guest"||r;case "Council":return n}})(),i=["owner","admin","mod"].includes(t);return {canPost:n,canComment:o,isModerator:i}}function ST(e,t){return queryOptions({queryKey:u.notifications.unreadCount(e),queryFn:async()=>{if(!t)throw new Error("Missing access token");return (await(await fetch(`${d.privateApiHost}/private-api/notifications/unread`,{method:"POST",body:JSON.stringify({code:t}),headers:{"Content-Type":"application/json"}})).json()).count},enabled:!!e&&!!t,placeholderData:0,refetchInterval:6e4})}function kT(e,t,r=void 0){return infiniteQueryOptions({queryKey:u.notifications.list(e,r),queryFn:async({pageParam:n})=>{if(!t)return [];let o={code:t,filter:r,since:n,user:void 0},i=await fetch(d.privateApiHost+"/private-api/notifications",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(o)});if(!i.ok)return [];try{return await i.json()}catch{return []}},enabled:!!e&&!!t,initialPageParam:"",getNextPageParam:n=>n?.[n.length-1]?.id??"",refetchOnMount:true})}var Cd=(_=>(_.VOTES="rvotes",_.MENTIONS="mentions",_.FAVORITES="nfavorites",_.BOOKMARKS="nbookmarks",_.FOLLOWS="follows",_.REPLIES="replies",_.REBLOGS="reblogs",_.TRANSFERS="transfers",_.DELEGATIONS="delegations",_.PAYOUTS="payouts",_.SCHEDULED_PUBLISHED="scheduled_published",_.ACCOUNT_UPDATES="account_updates",_.WEEKLY_EARNINGS="weekly_earnings",_.TAGS="tags",_))(Cd||{});var Ed=(A=>(A[A.VOTE=1]="VOTE",A[A.MENTION=2]="MENTION",A[A.FOLLOW=3]="FOLLOW",A[A.COMMENT=4]="COMMENT",A[A.RE_BLOG=5]="RE_BLOG",A[A.TRANSFERS=6]="TRANSFERS",A[A.DELEGATIONS=10]="DELEGATIONS",A[A.FAVORITES=13]="FAVORITES",A[A.BOOKMARKS=15]="BOOKMARKS",A[A.PAYOUTS=19]="PAYOUTS",A[A.ACCOUNT_UPDATE=20]="ACCOUNT_UPDATE",A[A.WEEKLY_EARNINGS=21]="WEEKLY_EARNINGS",A[A.SCHEDULED_PUBLISHED=22]="SCHEDULED_PUBLISHED",A[A.TAGS=23]="TAGS",A.ALLOW_NOTIFY="ALLOW_NOTIFY",A))(Ed||{}),Ki=[1,2,3,4,5,6,10,13,15,19,20,21,22,23],Rd=(n=>(n.ALL="All",n.UNREAD="Unread",n.READ="Read",n))(Rd||{});function NT(e,t,r){return queryOptions({queryKey:u.notifications.settings(e),queryFn:async()=>{let n=e+"-web";if(!t)throw new Error("Missing access token");let o=await fetch(d.privateApiHost+"/private-api/detail-device",{body:JSON.stringify({code:t,username:e,token:n}),method:"POST",headers:{"Content-Type":"application/json"}});if(!o.ok)throw new Error(`Failed to fetch notification settings: ${o.status}`);return o.json()},enabled:!!e&&!!t,refetchOnMount:false,initialData:()=>({status:0,system:"web",allows_notify:0,notify_types:r?[]:[...Ki]})})}function UT(){return queryOptions({queryKey:u.notifications.announcements(),queryFn:async()=>{let e=await fetch(d.privateApiHost+"/private-api/announcements",{method:"GET",headers:{"Content-Type":"application/json"}});if(!e.ok)throw new Error(`Failed to fetch announcements: ${e.status}`);return await e.json()||[]},staleTime:36e5})}function LT(e){return queryOptions({queryKey:u.notifications.spotlights(),queryFn:async()=>{let t=await fetch(d.privateApiHost+"/private-api/spotlights",{method:"GET",headers:{"Content-Type":"application/json"}});if(!t.ok)throw new Error(`Failed to fetch spotlights: ${t.status}`);return await t.json()||[]},staleTime:36e5})}function Id(e,t){return {...e,read:!t||t===e.id?1:e.read}}function Ni(e){return typeof e=="object"&&e!==null&&"pages"in e&&"pageParams"in e&&Array.isArray(e.pages)}function XT(e,t,r,n){let o=w();return useMutation({mutationKey:["notifications","mark-read",e],mutationFn:async({id:i})=>{if(!e||!t){process.env.NODE_ENV!=="production"&&console.warn("[SDK][Notifications] \u2013 missing auth for markNotifications");return}return _i(t,i)},onMutate:async({id:i})=>{if(!e||!t)return {previousData:[]};await o.cancelQueries({queryKey:u.notifications._prefix});let s=[],a=o.getQueriesData({queryKey:u.notifications._prefix,predicate:l=>{let m=l.state.data;return Ni(m)}});a.forEach(([l,m])=>{if(m&&Ni(m)){s.push([l,m]);let f={...m,pages:m.pages.map(g=>g.map(_=>Id(_,i)))};o.setQueryData(l,f);}});let c=u.notifications.unreadCount(e),p=o.getQueryData(c);return typeof p=="number"&&p>0&&(s.push([c,p]),i?a.some(([,m])=>m?.pages.some(f=>f.some(g=>g.id===i&&g.read===0)))&&o.setQueryData(c,p-1):o.setQueryData(c,0)),{previousData:s}},onSuccess:i=>{let s=typeof i=="object"&&i!==null?i.unread:void 0;typeof s=="number"&&o.setQueryData(u.notifications.unreadCount(e),s),r?.(s);},onError:(i,s,a)=>{a?.previousData&&a.previousData.forEach(([c,p])=>{o.setQueryData(c,p);}),n?.(i);},onSettled:()=>{o.invalidateQueries({queryKey:u.notifications._prefix});}})}function rF(e,t,r){return v(["notifications","set-last-read"],e,({date:n})=>Wr(e,n),async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.notifications.unreadCount(e)]);},t,"posting",{broadcastMode:r??"async"})}function sF(e){return queryOptions({queryKey:["proposals","proposal",e],queryFn:async()=>{let r=(await y("condenser_api.find_proposals",[[e]]))[0];return new Date(r.start_date)=new Date?r.status="active":new Date(r.end_date){let t=(await y("database_api.list_proposals",{start:[-1],limit:500,order:"by_total_votes",order_direction:"descending",status:"all"})).proposals,r=t.filter(o=>o.status==="expired");return [...t.filter(o=>o.status!=="expired"),...r]}})}function yF(e,t,r){return infiniteQueryOptions({queryKey:["proposals","votes",e,t,r],initialPageParam:t,refetchOnMount:true,staleTime:0,queryFn:async({pageParam:n})=>{let s=(await y("condenser_api.list_proposal_votes",[[e,n??t],r,"by_proposal_voter"])).filter(l=>l.proposal?.proposal_id===e).map(l=>({id:l.id,voter:l.voter})),a=await y("condenser_api.get_accounts",[s.map(l=>l.voter)]),c=Gt(a);return s.map(l=>({...l,voterAccount:c.find(m=>l.voter===m.name)}))},getNextPageParam:n=>n?.[n.length-1]?.voter??void 0})}function bF(e){return queryOptions({queryKey:["proposals","votes","by-user",e],enabled:!!e&&e!=="",staleTime:60*1e3,queryFn:async()=>!e||e===""?[]:((await y("database_api.list_proposal_votes",{start:[e],limit:1e3,order:"by_voter_proposal",order_direction:"ascending",status:"votable"})).proposal_votes||[]).filter(n=>n.voter===e)})}function xF(e,t,r){return v(["proposals","vote"],e,({proposalIds:n,approve:o})=>[Yr(e,n,o)],async n=>{try{let o=n?.id??n?.tx_id;t?.adapter?.recordActivity&&o&&t.adapter.recordActivity(150,o,n?.block_num).catch(i=>{console.debug("[SDK][Proposals][useProposalVote] recordActivity failed",{activityType:150,blockNum:n?.block_num,transactionId:o,error:i});}),t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.proposals.list(),u.proposals.votesByUser(e)]);}catch(o){console.warn("[useProposalVote] Post-broadcast side-effect failed:",o);}},t,"active",{broadcastMode:r})}function EF(e,t,r){return v(["proposals","create"],e,n=>[Jr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.proposals.list()]);},t,"active",{broadcastMode:r})}function FF(e,t=50){return infiniteQueryOptions({queryKey:["wallet","vesting-delegations",e,t],initialPageParam:"",queryFn:async({pageParam:r})=>{let n=r?t+1:t,o=await y("condenser_api.get_vesting_delegations",[e,r||"",n]);return r&&o.length>0&&o[0]?.delegatee===r?o.slice(1,t+1):o},getNextPageParam:r=>!r||r.lengthte("balance","/accounts/{account-name}/delegations",{"account-name":e},void 0,void 0,t)})}function BF(e){return queryOptions({queryKey:["wallet","vesting-delegation-expirations",e],queryFn:async()=>e?(await y("database_api.find_vesting_delegation_expirations",{account:e})).delegations:[],enabled:!!e})}function VF(e){return queryOptions({queryKey:["wallet","conversion-requests",e],queryFn:()=>y("condenser_api.get_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function WF(e){return queryOptions({queryKey:["wallet","collateralized-conversion-requests",e],queryFn:()=>y("condenser_api.get_collateralized_conversion_requests",[e]),select:t=>t.sort((r,n)=>r.requestid-n.requestid)})}function YF(e){return queryOptions({queryKey:["wallet","savings-withdraw",e],queryFn:()=>y("condenser_api.get_savings_withdraw_from",[e]),select:t=>t.sort((r,n)=>r.request_id-n.request_id)})}function tq(e){return queryOptions({queryKey:["wallet","withdraw-routes",e],queryFn:()=>y("condenser_api.get_withdraw_routes",[e,"outgoing"])})}function iq(e){return queryOptions({queryKey:["wallet","open-orders",e],queryFn:()=>y("condenser_api.get_open_orders",[e]),select:t=>t.sort((r,n)=>r.orderid-n.orderid),enabled:!!e})}function pq(e,t=100){return infiniteQueryOptions({queryKey:["wallet","outgoing-rc-delegations",e,t],initialPageParam:null,queryFn:async({pageParam:r})=>{let o=(await y("rc_api.list_rc_direct_delegations",{start:[e,r??""],limit:t}).then(i=>i)).rc_direct_delegations||[];return r&&(o=o.filter(i=>i.to!==r)),o},getNextPageParam:r=>r.length===t?r[r.length-1].to:null})}function fq(e){return queryOptions({queryKey:["wallet","incoming-rc",e],enabled:!!e,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] - Missing username for incoming RC");let r=await h()(`${d.privateApiHost}/private-api/received-rc/${e}`);if(!r.ok)throw new Error(`Failed to fetch incoming RC: ${r.status}`);return r.json()}})}function zd(e){let r=(String(e).replace(/\D/g,"")||"0").padStart(7,"0");return `${r.slice(0,-6).replace(/^0+(?=\d)/,"")}.${r.slice(-6)} VESTS`}function or(e,t){return (t?.incoming_delegations??[]).map(r=>({delegator:r.delegator,raw:BigInt(String(r.amount).replace(/\D/g,"")||"0")})).sort((r,n)=>r.raw===n.raw?0:r.raw>n.raw?-1:1).map(({delegator:r,raw:n})=>({delegatee:e,delegator:r,vesting_shares:zd(n)}))}function vq(e){return queryOptions({queryKey:u.wallet.receivedVestingShares(e),enabled:!!e,queryFn:async()=>or(e,await w().fetchQuery({...nr(e),staleTime:6e4}))})}function Oq(e){return queryOptions({queryKey:["wallet","recurrent-transfers",e],queryFn:()=>y("condenser_api.find_recurrent_transfers",[e]),enabled:!!e})}function me(e){if(typeof e=="string"){let t=e.trim();return t.length>0?t:void 0}}function ue(e){if(typeof e=="number"&&Number.isFinite(e))return e;if(typeof e=="string"){let t=e.trim();if(!t)return;let r=Number.parseFloat(t);if(Number.isFinite(r))return r;let o=t.replace(/,/g,"").match(/[-+]?\d+(?:\.\d+)?/);if(o){let i=Number.parseFloat(o[0]);if(Number.isFinite(i))return i}}}function Zd(e){if(!e||typeof e!="object")return;let t=e;return {name:me(t.name)??"",symbol:me(t.symbol)??"",layer:me(t.layer)??"hive",balance:ue(t.balance)??0,fiatRate:ue(t.fiatRate)??0,currency:me(t.currency)??"usd",precision:ue(t.precision)??3,address:me(t.address),error:me(t.error),pendingRewards:ue(t.pendingRewards),pendingRewardsFiat:ue(t.pendingRewardsFiat),liquid:ue(t.liquid),liquidFiat:ue(t.liquidFiat),savings:ue(t.savings),savingsFiat:ue(t.savingsFiat),staked:ue(t.staked),stakedFiat:ue(t.stakedFiat),iconUrl:me(t.iconUrl),actions:t.actions??[],extraData:t.extraData??[],apr:ue(t.apr)}}function em(e){if(!e||typeof e!="object")return [];let t=[e],r=e;r.data&&typeof r.data=="object"&&t.push(r.data),r.result&&typeof r.result=="object"&&t.push(r.result),r.portfolio&&typeof r.portfolio=="object"&&t.push(r.portfolio);for(let n of t){if(Array.isArray(n))return n;if(n&&typeof n=="object")for(let o of ["wallets","tokens","assets","items","portfolio","balances"]){let i=n[o];if(Array.isArray(i))return i}}return []}function tm(e){if(!e||typeof e!="object")return;let t=e;return me(t.username)??me(t.name)??me(t.account)}function Mi(e,t="usd",r=true){return queryOptions({queryKey:["wallet","portfolio","v2",e,r?"only-enabled":"all",t],enabled:!!e,staleTime:6e4,refetchInterval:12e4,queryFn:async()=>{if(!e)throw new Error("[SDK][Wallet] \u2013 username is required");let n=`${B.getValidatedBaseUrl()}/wallet-api/portfolio-v2`,o=await fetch(n,{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({username:e,onlyEnabled:r,currency:t})});if(!o.ok)throw new Error(`[SDK][Wallet] \u2013 Portfolio request failed (${o.status})`);let i=await o.json(),s=em(i).map(a=>Zd(a)).filter(a=>!!a).filter(a=>a.layer!=="spk");if(!s.length)throw new Error("[SDK][Wallet] \u2013 Portfolio payload contained no tokens");return {username:tm(i)??e,currency:me(i?.fiatCurrency??i?.currency)?.toUpperCase(),wallets:s}}})}function ir(e){return queryOptions({queryKey:["assets","hive","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(Oe().queryKey),r=w().getQueryData(M(e).queryKey),n=await y("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??"");if(!r)return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:0};let i=T(r.balance).amount,s=T(r.savings_balance).amount;return {name:"HIVE",title:"Hive",price:Number.isFinite(o)?o:t?t.base/t.quote:0,accountBalance:i+s,parts:[{name:"current",balance:i},{name:"savings",balance:s}]}}})}function Bi(e){return queryOptions({queryKey:["assets","hbd","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(M(e).queryKey),r=w().getQueryData(Oe().queryKey),n=1;return t?{name:"HBD",title:"Hive Dollar",price:n,accountBalance:T(t.hbd_balance).amount+T(t?.savings_hbd_balance).amount,apr:((r?.hbdInterestRate??0)/100).toFixed(3),parts:[{name:"current",balance:T(t.hbd_balance).amount},{name:"savings",balance:T(t.savings_hbd_balance).amount}]}:{name:"HBD",title:"Hive Dollar",price:n,accountBalance:0}}})}function im(e){let c=9.5-(e.headBlock-7e6)/25e4*.01;c<.95&&(c=.95);let p=e.vestingRewardPercent/1e4,l=e.virtualSupply,m=e.totalVestingFund;return (l*c*p/m).toFixed(3)}function Qi(e){return queryOptions({queryKey:["assets","hive-power","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{await w().prefetchQuery(Oe()),await w().prefetchQuery(M(e));let t=w().getQueryData(Oe().queryKey),r=w().getQueryData(M(e).queryKey);if(!t||!r)return {name:"HP",title:"Hive Power",price:0,accountBalance:0};let n=await y("condenser_api.get_ticker",[]).catch(()=>{}),o=Number.parseFloat(n?.latest??""),i=Number.isFinite(o)?o:t.base/t.quote,s=T(r.vesting_shares).amount,a=T(r.delegated_vesting_shares).amount,c=T(r.received_vesting_shares).amount,p=T(r.vesting_withdraw_rate).amount,l=Math.max((Number(r.to_withdraw)-Number(r.withdrawn))/1e6,0),m=Fo(r.next_vesting_withdrawal)?0:Math.min(p,l),f=+Ze(s,t.hivePerMVests).toFixed(3),g=+Ze(a,t.hivePerMVests).toFixed(3),_=+Ze(c,t.hivePerMVests).toFixed(3),A=+Ze(l,t.hivePerMVests).toFixed(3),x=+Ze(m,t.hivePerMVests).toFixed(3),C=Math.max(f-A,0),F=Math.max(f-g,0);return {name:"HP",title:"Hive Power",price:i,accountBalance:+C.toFixed(3),apr:im(t),parts:[{name:"hp_balance",balance:f},{name:"available",balance:+F.toFixed(3)},{name:"outgoing_delegations",balance:g},{name:"incoming_delegations",balance:_},...A>0?[{name:"pending_power_down",balance:+A.toFixed(3)}]:[],...x>0&&x!==A?[{name:"next_power_down",balance:+x.toFixed(3)}]:[]]}}})}var N=oe.operations,Cn={transfers:[N.transfer,N.transfer_to_savings,N.transfer_from_savings,N.cancel_transfer_from_savings,N.recurrent_transfer,N.fill_recurrent_transfer,N.escrow_transfer,N.fill_recurrent_transfer],"market-orders":[N.fill_convert_request,N.fill_order,N.fill_collateralized_convert_request,N.limit_order_create2,N.limit_order_create,N.limit_order_cancel],interests:[N.interest],"stake-operations":[N.return_vesting_delegation,N.withdraw_vesting,N.transfer_to_vesting,N.set_withdraw_vesting_route,N.update_proposal_votes,N.fill_vesting_withdraw,N.account_witness_proxy,N.delegate_vesting_shares],rewards:[N.author_reward,N.curation_reward,N.producer_reward,N.claim_reward_balance,N.comment_benefactor_reward,N.liquidity_reward,N.proposal_pay],"":[]};var Jq=Object.keys(oe.operations);var Ui=oe.operations,Zq=Ui,eI=Object.entries(Ui).reduce((e,[t,r])=>(e[r]=t,e),{});var Hi=oe.operations;function am(e){return Object.prototype.hasOwnProperty.call(Hi,e)}function xt(e){let t=Array.isArray(e)?e:[e],r=t.includes(""),n=Array.from(new Set(t.filter(a=>a!=null&&a!==""))),o=r||n.length===0?"all":n.map(a=>a.toString()).sort().join("|"),i=new Set;r||n.forEach(a=>{if(a in Cn){Cn[a].forEach(c=>i.add(c));return}am(a)&&i.add(Hi[a]);});let s=pm(Array.from(i));return {filterKey:o,filterArgs:s}}function En(e){let t=Array.isArray(e)?e:[e];return new Set(t.filter(r=>r!=null&&r!==""))}function um(e){if(!e?.length)return;let t=Number(e[0]?.num??0);return Number.isFinite(t)&&t>0?t-1:void 0}function cm(e,t){return !Number.isFinite(e)||e<0?t:Math.min(t,e+1)}function pm(e){let t=0n,r=0n;return e.forEach(n=>{n<64?t|=1n<(await y("condenser_api.get_account_history",[e,s,cm(Number(s),t),...n])).map(c=>({num:c[0],type:c[1].op[0],timestamp:c[1].timestamp,trx_id:c[1].trx_id,...c[1].op[1]})),select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(c=>c.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return T(p.hive_payout).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return T(p.amount).symbol==="HIVE";case "transfer_from_savings":case "fill_transfer_from_savings":return T(p.amount).symbol==="HIVE";case "fill_recurrent_transfer":let m=T(p.amount);return ["HIVE"].includes(m.symbol);case "claim_reward_balance":return T(p.reward_hive).amount>0;case "curation_reward":case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":return true;case "limit_order_create2":return true;default:return i.has(p.type)}}))})})}function lI(e,t=20,r=[]){let{filterKey:n}=xt(r),o=En(r);return infiniteQueryOptions({...sr(e,t,r),queryKey:["assets","hbd","transactions",e,t,n],select:({pages:i,pageParams:s})=>({pageParams:s,pages:i.map(a=>a.filter(c=>{switch(c.type){case "author_reward":case "comment_benefactor_reward":return T(c.hbd_payout).amount>0;case "claim_reward_balance":return T(c.reward_hbd).amount>0;case "transfer":case "transfer_to_savings":case "transfer_to_vesting":case "recurrent_transfer":return T(c.amount).symbol==="HBD";case "transfer_from_savings":case "fill_transfer_from_savings":return T(c.amount).symbol==="HBD";case "fill_recurrent_transfer":let m=T(c.amount);return ["HBD"].includes(m.symbol);case "cancel_transfer_from_savings":case "fill_order":case "limit_order_create":case "limit_order_cancel":case "fill_convert_request":case "fill_collateralized_convert_request":case "proposal_pay":case "interest":return true;case "limit_order_create2":return true;default:return o.has(c.type)}}))})})}function yI(e,t=20,r=[]){let{filterKey:n}=xt(r),o=new Set(Array.isArray(r)?r:[r]),i=o.has("")||o.size===0;return infiniteQueryOptions({...sr(e,t,r),queryKey:["assets","hive-power","transactions",e,t,n],select:({pages:s,pageParams:a})=>({pageParams:a,pages:s.map(c=>c.filter(p=>{switch(p.type){case "author_reward":case "comment_benefactor_reward":return T(p.vesting_payout).amount>0;case "claim_reward_balance":return T(p.reward_vests).amount>0;case "transfer_to_vesting":return true;case "transfer":case "transfer_to_savings":case "recurrent_transfer":return ["VESTS","HP"].includes(T(p.amount).symbol);case "fill_recurrent_transfer":let f=T(p.amount);return ["VESTS","HP"].includes(f.symbol);case "curation_reward":case "withdraw_vesting":case "delegate_vesting_shares":case "fill_vesting_withdraw":case "return_vesting_delegation":case "producer_reward":case "set_withdraw_vesting_route":return true;default:return i||o.has(p.type)}}))})})}function Vi(e){let t=r=>r.toString().padStart(2,"0");return `${e.getFullYear()}-${t(e.getMonth()+1)}-${t(e.getDate())}T${t(e.getHours())}:${t(e.getMinutes())}:${t(e.getSeconds())}`}function Rn(e,t){return new Date(e.getTime()-t*1e3)}function bI(e=86400){return infiniteQueryOptions({queryKey:["assets","hive","metrics",e],queryFn:async({pageParam:[t,r]})=>(await y("condenser_api.get_market_history",[e,Vi(t),Vi(r)])).map(({hive:o,non_hive:i,open:s})=>({close:i.close/o.close,open:i.open/o.open,low:i.low/o.low,high:i.high/o.high,volume:o.volume,time:new Date(s)})),initialPageParam:[Rn(new Date,Math.max(100*e,28800)),new Date],getNextPageParam:(t,r,[n])=>[Rn(n,Math.max(100*e,28800)),Rn(n,e)]})}function xI(e){return queryOptions({queryKey:["assets","hive","withdrawal-routes",e],queryFn:()=>y("condenser_api.get_withdraw_routes",[e,"outgoing"]),enabled:!!e})}function EI(e,t=50){return queryOptions({queryKey:["assets","hive-power","delegates",e],enabled:!!e,queryFn:()=>y("condenser_api.get_vesting_delegations",[e,"",t])})}function II(e){return queryOptions({queryKey:u.assets.hivePowerDelegatings(e),enabled:!!e,queryFn:async()=>or(e,await w().fetchQuery({...nr(e),staleTime:6e4}))})}function MI(e=500){return queryOptions({queryKey:["market","order-book",e],queryFn:()=>y("condenser_api.get_order_book",[e])})}function HI(){return queryOptions({queryKey:["market","statistics"],queryFn:()=>y("condenser_api.get_ticker",[])})}function $I(e,t,r){let n=o=>o.toISOString().replace(/\.\d{3}Z$/,"");return queryOptions({queryKey:["market","history",e,t.getTime(),r.getTime()],queryFn:()=>y("condenser_api.get_market_history",[e,n(t),n(r)])})}function JI(){return queryOptions({queryKey:["market","hive-hbd-stats"],queryFn:async()=>{let e=await y("condenser_api.get_ticker",[]),t=new Date,r=new Date(t.getTime()-864e5),n=s=>s.toISOString().replace(/\.\d{3}Z$/,""),o=await y("condenser_api.get_market_history",[86400,n(r),n(t)]);return {price:+e.latest,close:o[0]?o[0].non_hive.open/o[0].hive.open:0,high:o[0]?o[0].non_hive.high/o[0].hive.high:0,low:o[0]?o[0].non_hive.low/o[0].hive.low:0,percent:o[0]?100-o[0].non_hive.open/o[0].hive.open*100/+e.latest:0,totalFromAsset:e.hive_volume.split(" ")[0],totalToAsset:e.hbd_volume.split(" ")[0]}}})}function eD(e,t,r,n){return queryOptions({queryKey:["market","data",e,t,r,n],queryFn:async({signal:o})=>{let i=h(),s=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,a=await i(s,{signal:o});if(!a.ok)throw new Error(`Failed to fetch market data: ${a.status}`);return a.json()}})}function ji(e){return e.toISOString().replace(/\.\d{3}Z$/,"")}function oD(e=1e3,t,r){let n=r??new Date,o=t??new Date(n.getTime()-600*60*1e3);return queryOptions({queryKey:["market","trade-history",e,o.getTime(),n.getTime()],queryFn:()=>y("condenser_api.get_trade_history",[ji(o),ji(n),e])})}function uD(){return queryOptions({queryKey:["market","feed-history"],queryFn:async()=>{try{return await y("condenser_api.get_feed_history",[])}catch(e){throw e}}})}function dD(){return queryOptions({queryKey:["market","current-median-history-price"],queryFn:async()=>{try{return await y("condenser_api.get_current_median_history_price",[])}catch(e){throw e}}})}function yD(e,t,r){return v(["market","limit-order-create"],e,n=>[Xt(e,n.amountToSell,n.minToReceive,n.fillOrKill,n.expiration,n.orderId)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function bD(e,t,r){return v(["market","limit-order-cancel"],e,({orderId:n})=>[on(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.wallet.openOrders(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}async function Ot(e){let t=await e.json();if(!e.ok){let r=new Error(`Request failed with status ${e.status}`);throw r.status=e.status,r.data=t,r}return t}async function PD(e,t,r,n){let o=h(),i=`https://api.coingecko.com/api/v3/coins/${e}/market_chart/range?vs_currency=${t}&from=${r}&to=${n}`,s=await o(i);return Ot(s)}async function Li(e){if(e==="hbd")return 1;let t=h(),r=`https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${e}`,n=await t(r);return (await Ot(n)).hive_dollar[e]}async function xD(e,t){let n=await h()(d.privateApiHost+`/private-api/market-data/${e==="hbd"?"usd":e}/${t}`);return Ot(n)}async function OD(){let t=await h()(d.privateApiHost+"/private-api/market-data/latest");return Ot(t)}async function SD(){let t=await h()("https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd");return Ot(t)}var Om={"Content-type":"application/json"};async function Sm(e){let t=h(),r=B.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-api`,{method:"POST",body:JSON.stringify(e),headers:Om});if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 request failed with ${n.status}`);return (await n.json()).result}async function De(e,t){try{return await Sm(e)}catch{return t}}async function RD(e,t=50){let r={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:e},limit:t,offset:0},id:1},[n,o]=await Promise.all([De({...r,params:{...r.params,table:"buyBook",indexes:[{index:"price",descending:true}]}},[]),De({...r,params:{...r.params,table:"sellBook",indexes:[{index:"price",descending:false}]}},[])]),i=a=>a.sort((c,p)=>{let l=Number(c.price??0);return Number(p.price??0)-l}),s=a=>a.sort((c,p)=>{let l=Number(c.price??0),m=Number(p.price??0);return l-m});return {buy:i(n),sell:s(o)}}async function kD(e,t=50){return De({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"tradesHistory",query:{symbol:e},limit:t,offset:0,indexes:[{index:"timestamp",descending:true}]},id:1},[])}async function TD(e,t,r=100){let n={jsonrpc:"2.0",method:"find",params:{contract:"market",query:{symbol:t,account:e},limit:r,offset:0},id:1},[o,i]=await Promise.all([De({...n,params:{...n.params,table:"buyBook",indexes:[{index:"timestamp",descending:true}]}},[]),De({...n,params:{...n.params,table:"sellBook",indexes:[{index:"timestamp",descending:true}]}},[])]),s=(p,l)=>(Number(p||0)*Number(l||0)).toFixed(8),a=o.map(p=>({id:p.txId,type:"buy",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:p.tokensLocked??s(p.quantity,p.price),timestamp:Number(p.timestamp??0)})),c=i.map(p=>({id:p.txId,type:"sell",account:p.account,symbol:p.symbol,quantity:p.quantity,price:p.price,total:s(p.quantity,p.price),timestamp:Number(p.timestamp??0)}));return [...a,...c].sort((p,l)=>l.timestamp-p.timestamp)}async function Cm(e,t){if(Array.isArray(e)&&e.length===0)return [];let r=Array.isArray(e)?{symbol:{$in:e}}:e?{symbol:e}:{};return De({jsonrpc:"2.0",method:"find",params:{contract:"market",table:"metrics",query:{...r,...t?{account:t}:{}}},id:1},[])}async function st(e,t){return Cm(t,e)}async function ar(e){return De({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"balances",query:{account:e}},id:1},[])}async function ur(e){return De({jsonrpc:"2.0",method:"find",params:{contract:"tokens",table:"tokens",query:{symbol:{$in:e}}},id:2},[])}async function $i(e,t,r,n){let o=h(),i=B.getValidatedBaseUrl(),s=new URL("/private-api/engine-account-history",i);s.searchParams.set("account",e),s.searchParams.set("symbol",t),s.searchParams.set("limit",r.toString()),s.searchParams.set("offset",n.toString());let a=await o(s.toString(),{method:"GET",headers:{"Content-type":"application/json"}});if(!a.ok)throw new Error(`[SDK][HiveEngine] \u2013 account history failed with ${a.status}`);return await a.json()}async function Wi(e,t="daily"){let r=h(),n=B.getValidatedBaseUrl(),o=new URL("/private-api/engine-chart-api",n);o.searchParams.set("symbol",e),o.searchParams.set("interval",t);let i=await r(o.toString(),{headers:{"Content-type":"application/json"}});if(!i.ok)throw new Error(`[SDK][HiveEngine] \u2013 chart failed with ${i.status}`);return await i.json()}async function Gi(e){let t=h(),r=B.getValidatedBaseUrl(),n=await t(`${r}/private-api/engine-reward-api/${e}?hive=1`);if(!n.ok)throw new Error(`[SDK][HiveEngine] \u2013 rewards failed with ${n.status}`);return await n.json()}function cr(e){return queryOptions({queryKey:["assets","hive-engine","balances",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>ar(e)})}function MD(){return queryOptions({queryKey:["assets","hive-engine","markets"],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>st()})}function zi(e){return queryOptions({queryKey:["assets","hive-engine","metadata-list",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>ur(e)})}function LD(e,t,r=20){return infiniteQueryOptions({queryKey:["assets","hive-engine",t,"transactions",e],enabled:!!t&&!!e,initialPageParam:0,queryFn:async({pageParam:n})=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");return $i(e,t,r,n)},getNextPageParam:(n,o,i)=>(n?.length??0)===r?i+r:void 0,getPreviousPageParam:(n,o,i)=>i>0?i-r:void 0})}function zD(e,t="daily"){return queryOptions({queryKey:["assets","hive-engine",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>Wi(e,t)})}function ZD(e){return queryOptions({queryKey:["assets","hive-engine","unclaimed",e],staleTime:6e4,refetchInterval:9e4,enabled:!!e,queryFn:async()=>{try{let t=await Gi(e);return Object.values(t).filter(({pending_token:r})=>r>0)}catch{return []}}})}function Ji(e,t){return queryOptions({queryKey:["assets","hive-engine","all-tokens",e,t],queryFn:async()=>st(e,t)})}function at(e,t=void 0){let r={fractionDigits:3,prefix:"",suffix:""};t&&(r={...r,...t});let{fractionDigits:n,prefix:o,suffix:i}=r,s="";o&&(s+=o+" ");let a=Math.abs(parseFloat(e.toString()))<1e-4?0:e,c=typeof a=="string"?parseFloat(a):a;return s+=c.toLocaleString("en-US",{minimumFractionDigits:n,maximumFractionDigits:n,useGrouping:true}),i&&(s+=" "+i),s}var pr=class{symbol;name;icon;precision;stakingEnabled;delegationEnabled;balance;stake;stakedBalance;delegationsIn;delegationsOut;usdValue;constructor(t){this.symbol=t.symbol,this.name=t.name||"",this.icon=t.icon||"",this.precision=t.precision||0,this.stakingEnabled=t.stakingEnabled||false,this.delegationEnabled=t.delegationEnabled||false,this.balance=parseFloat(t.balance)||0,this.stake=parseFloat(t.stake)||0,this.delegationsIn=parseFloat(t.delegationsIn)||0,this.delegationsOut=parseFloat(t.delegationsOut)||0,this.stakedBalance=this.stake+this.delegationsIn-this.delegationsOut,this.usdValue=t.usdValue;}hasDelegations=()=>this.delegationEnabled?this.delegationsIn>0&&this.delegationsOut>0:false;delegations=()=>this.hasDelegations()?`(${at(this.stake,{fractionDigits:this.precision})} + ${at(this.delegationsIn,{fractionDigits:this.precision})} - ${at(this.delegationsOut,{fractionDigits:this.precision})})`:"";staked=()=>this.stakingEnabled?this.stakedBalance<1e-4?this.stakedBalance.toString():at(this.stakedBalance,{fractionDigits:this.precision}):"-";balanced=()=>this.balance<1e-4?this.balance.toString():at(this.balance,{fractionDigits:this.precision})};function pK(e,t,r){return queryOptions({queryKey:["assets","hive-engine","balances-with-usd",e,t,r],queryFn:async()=>{if(!e)throw new Error("[HiveEngine] No account in a balances query");let n=await ar(e),o=await ur(n.map(p=>p.symbol)),i=t?t.base/t.quote:0,s=Array.isArray(r)?r:[],a=n.map(p=>p.symbol).filter(p=>p!=="SWAP.HIVE"&&!s.some(l=>l.symbol===p)),c=[...s,...a.length?await st(void 0,a):[]];return n.map(p=>{let l=o.find(x=>x.symbol===p.symbol),m;if(l?.metadata)try{m=JSON.parse(l.metadata);}catch{m=void 0;}let f=c.find(x=>x.symbol===p.symbol),g=Number(f?.lastPrice??"0"),_=Number(p.balance),A=p.symbol==="SWAP.HIVE"?i*_:g===0?0:Number((g*i*_).toFixed(10));return new pr({symbol:p.symbol,name:l?.name??p.symbol,icon:m?.icon??"",precision:l?.precision??0,stakingEnabled:l?.stakingEnabled??false,delegationEnabled:l?.delegationEnabled??false,balance:p.balance,stake:p.stake,delegationsIn:p.delegationsIn,delegationsOut:p.delegationsOut,usdValue:A})})},enabled:!!e})}function Yi(e,t){return queryOptions({queryKey:["assets","hive-engine",t,"general-info",e],enabled:!!t&&!!e,staleTime:6e4,refetchInterval:9e4,queryFn:async()=>{if(!t||!e)throw new Error("[SDK][HiveEngine] \u2013 token or username missed");let r=w(),n=ir(e);await r.prefetchQuery(n);let o=r.getQueryData(n.queryKey),i=await r.ensureQueryData(zi([t])),s=await r.ensureQueryData(cr(e)),a=await r.ensureQueryData(Ji(void 0,t)),c=i?.find(x=>x.symbol===t),p=s?.find(x=>x.symbol===t),m=+(a?.find(x=>x.symbol===t)?.lastPrice??"0"),f=parseFloat(p?.balance??"0"),g=parseFloat(p?.stake??"0"),_=parseFloat(p?.pendingUnstake??"0"),A=[{name:"liquid",balance:f},{name:"staked",balance:g}];return _>0&&A.push({name:"unstaking",balance:_}),{name:t,title:c?.name??"",price:m===0?0:Number(m*(o?.price??0)),accountBalance:f+g,layer:"ENGINE",parts:A}}})}function St(e,t=0){return queryOptions({queryKey:["points",e,t],queryFn:async()=>{if(!e)throw new Error("Get points query \u2013 username wasn't provided");let r=e.replace("@",""),n=await fetch(d.privateApiHost+"/private-api/points",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r})});if(!n.ok)throw new Error(`Failed to fetch points: ${n.status}`);let o=await n.json(),i=await fetch(d.privateApiHost+"/private-api/point-list",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:r,type:t})});if(!i.ok)throw new Error(`Failed to fetch point transactions: ${i.status}`);let s=await i.json();return {points:o.points,uPoints:o.unclaimed_points,transactions:s}},staleTime:3e4,refetchOnMount:true,enabled:!!e})}function Xi(e){return queryOptions({queryKey:["assets","points","general-info",e],staleTime:6e4,refetchInterval:9e4,queryFn:async()=>(await w().prefetchQuery(St(e)),{name:"POINTS",title:"Ecency Points",price:.002,accountBalance:+(w().getQueryData(St(e).queryKey)?.points??0)})})}function EK(e,t){return queryOptions({queryKey:["assets","points","transactions",e,t],queryFn:async()=>(await(await fetch(`${d.privateApiHost}/private-api/point-list`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:e,type:t??0})})).json()).map(({created:o,type:i,amount:s,id:a,sender:c,receiver:p,memo:l})=>({created:new Date(o),type:i,results:[{amount:parseFloat(s),asset:"POINTS"}],id:a,from:c??void 0,to:p??void 0,memo:l??void 0}))})}function QK(e,t,r={refetch:false}){let n=w(),o=r.currency??"usd",i=async p=>(r.refetch?await n.fetchQuery(p):await n.prefetchQuery(p),n.getQueryData(p.queryKey)),s=async p=>{if(!p||o==="usd")return p;try{let l=await Li(o);return {...p,price:p.price*l}}catch(l){return console.warn(`Failed to convert price from USD to ${o}:`,l),p}},a=Mi(e,o,true),c=async()=>{try{let l=(await n.fetchQuery(a)).wallets.find(f=>f.symbol.toUpperCase()===t.toUpperCase());if(!l)return;let m=[];if(l.liquid!==void 0&&l.liquid!==null&&m.push({name:"liquid",balance:l.liquid}),l.staked!==void 0&&l.staked!==null&&l.staked>0&&m.push({name:"staked",balance:l.staked}),l.savings!==void 0&&l.savings!==null&&l.savings>0&&m.push({name:"savings",balance:l.savings}),l.extraData&&Array.isArray(l.extraData))for(let f of l.extraData){if(!f||typeof f!="object")continue;let g=f.dataKey,_=f.value;if(typeof _=="string"){let x=_.replace(/,/g,"").match(/[+-]?\s*(\d+(?:\.\d+)?)/);if(x){let C=Math.abs(Number.parseFloat(x[1]));g==="delegated_hive_power"?m.push({name:"outgoing_delegations",balance:C}):g==="received_hive_power"?m.push({name:"incoming_delegations",balance:C}):g==="powering_down_hive_power"&&m.push({name:"pending_power_down",balance:C});}}}return {name:l.symbol,title:l.name,price:l.fiatRate,accountBalance:l.balance,apr:l.apr?.toString(),layer:l.layer,pendingRewards:l.pendingRewards,parts:m}}catch{return}};return queryOptions({queryKey:["ecency-wallets","asset-info",e,t,o],queryFn:async()=>{let p=await c();if(p&&p.price>0)return p;let l;if(t==="HIVE")l=await i(ir(e));else if(t==="HP")l=await i(Qi(e));else if(t==="HBD")l=await i(Bi(e));else if(t==="POINTS")l=await i(Xi(e));else if((await n.ensureQueryData(cr(e))).some(f=>f.symbol===t))l=await i(Yi(e,t));else {if(p)return p;throw new Error(`[SDK][Wallet] \u2013 unrecognized asset "${t}"`)}if(p&&l&&l.price>0){let m=await s(l);return {...p,price:m.price}}return await s(l)}})}var Um=(C=>(C.Transfer="transfer",C.TransferToSavings="transfer-saving",C.WithdrawFromSavings="withdraw-saving",C.Delegate="delegate",C.PowerUp="power-up",C.PowerDown="power-down",C.WithdrawRoutes="withdraw-routes",C.ClaimInterest="claim-interest",C.Swap="swap",C.Convert="convert",C.Gift="gift",C.Promote="promote",C.Claim="claim",C.Buy="buy",C.Stake="stake",C.Unstake="unstake",C.Undelegate="undelegate",C))(Um||{});function $K(e,t,r){return v(["wallet","transfer"],e,n=>[Le(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function YK(e,t,r){return v(["wallet","transfer-point"],e,n=>[nt(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function rN(e,t,r){return v(["wallet","delegate-vesting-shares"],e,n=>[vt(e,n.delegatee,n.vestingShares)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.delegatee),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function aN(e,t,r){return v(["wallet","set-withdraw-vesting-route"],e,n=>[At(e,n.toAccount,n.percent,n.autoVest)],async(n,o)=>{await S(t?.adapter,r,[u.wallet.withdrawRoutes(e),u.accounts.full(e),u.accounts.full(o.toAccount)]);},t,"active",{broadcastMode:r})}function lN(e,t,r){return v(["wallet","transfer-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"transfer",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity,memo:n.memo}});return [["custom_json",{required_auths:[e],required_posting_auths:[],id:"ssc-mainnet-hive",json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function yN(e,t,r){return v(["wallet","transfer-to-savings"],e,n=>[rt(e,n.to,n.amount,n.memo)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function vN(e,t,r){return v(["wallet","transfer-from-savings"],e,n=>[$e(e,n.to,n.amount,n.memo,n.requestId)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function SN(e,t,r){return v(["wallet","transfer-to-vesting"],e,n=>[wt(e,n.to,n.amount)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function TN(e,t,r){return v(["wallet","withdraw-vesting"],e,n=>[bt(e,n.vestingShares)],async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function KN(e,t,r){return v(["wallet","convert"],e,n=>[n.collateralized?Vr(e,n.amount,n.requestId):Pt(e,n.amount,n.requestId)],async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function UN(e,t,r){return v(["wallet","claim-interest"],e,n=>_t(e,n.to,n.amount,n.memo,n.requestId),async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}var Hm=5e3,lr=new Map;function $N(e,t,r){return v(["wallet","claim-rewards"],e,n=>[sn(e,n.rewardHive,n.rewardHbd,n.rewardVests)],()=>{let n=e??"__anonymous__",o=[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e],u.assets.hiveGeneralInfo(e),u.assets.hbdGeneralInfo(e),u.assets.hivePowerGeneralInfo(e)],i=lr.get(n);i&&(clearTimeout(i),lr.delete(n));let s=setTimeout(async()=>{try{let a=w(),p=(await Promise.allSettled(o.map(l=>a.invalidateQueries({queryKey:l})))).filter(l=>l.status==="rejected");p.length>0&&console.error("[SDK][Wallet][useClaimRewards] delayed invalidation rejected",{username:e,rejectedCount:p.length,rejected:p});}catch(a){console.error("[SDK][Wallet][useClaimRewards] delayed invalidation failed",{username:e,error:a});}finally{lr.delete(n);}},Hm);lr.set(n,s);},t,"posting",{broadcastMode:r})}function JN(e,t,r){return v(["wallet","delegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"delegate",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function eM(e,t,r){return v(["wallet","undelegate-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"undelegate",contractPayload:{symbol:n.symbol,from:n.from,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function oM(e,t,r){return v(["wallet","stake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"stake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function uM(e,t,r){return v(["wallet","unstake-engine-token"],e,n=>{let o=JSON.stringify({contractName:"tokens",contractAction:"unstake",contractPayload:{symbol:n.symbol,to:n.to,quantity:n.quantity}});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function dM(e,t,r){return v(["wallet","claim-engine-rewards"],e,n=>{let o=JSON.stringify(n.tokens.map(i=>({symbol:i})));return [["custom_json",{id:"scot_claim_token",required_auths:[],required_posting_auths:[e],json:o}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"posting",{broadcastMode:r})}function yM(e,t,r){return v(["wallet","engine-market-order"],e,n=>{let o,i;n.action==="cancel"?(i="cancel",o={type:n.orderType,id:n.orderId}):(i=n.action,o={symbol:n.symbol,quantity:n.quantity,price:n.price});let s=JSON.stringify({contractName:"market",contractAction:i,contractPayload:o});return [["custom_json",{id:"ssc-mainnet-hive",required_auths:[e],required_posting_auths:[],json:s}]]},async()=>{await S(t?.adapter,r,[u.accounts.full(e),["ecency-wallets","asset-info",e],["wallet","portfolio","v2",e]]);},t,"active",{broadcastMode:r})}function Vm(e,t,r){let{from:n,to:o="",amount:i="",memo:s=""}=r,a=r.request_id??Date.now()>>>0;switch(e){case "HIVE":switch(t){case "transfer":return [Le(n,o,i,s)];case "transfer-saving":return [rt(n,o,i,s)];case "withdraw-saving":return [$e(n,o,i,s,a)];case "power-up":return [wt(n,o,i)]}break;case "HBD":switch(t){case "transfer":return [Le(n,o,i,s)];case "transfer-saving":return [rt(n,o,i,s)];case "withdraw-saving":return [$e(n,o,i,s,a)];case "claim-interest":return _t(n,o,i,s,a);case "convert":return [Pt(n,i,Math.floor(Date.now()/1e3))]}break;case "HP":switch(t){case "power-down":return [bt(n,i)];case "delegate":return [vt(n,o,i)];case "withdraw-routes":return [At(r.from_account??n,r.to_account??o,r.percent??0,r.auto_vest??false)]}break;case "POINTS":if(t==="transfer"||t==="gift")return [nt(n,o,i,s)];break}return null}function jm(e,t,r){let{from:n,to:o="",amount:i=""}=r,s=typeof i=="string"&&i.includes(" ")?i.split(" ")[0]:String(i);switch(t){case "transfer":return [We(n,"transfer",{symbol:e,to:o,quantity:s,memo:r.memo??""})];case "stake":return [We(n,"stake",{symbol:e,to:o,quantity:s})];case "unstake":return [We(n,"unstake",{symbol:e,to:o,quantity:s})];case "delegate":return [We(n,"delegate",{symbol:e,to:o,quantity:s})];case "undelegate":return [We(n,"undelegate",{symbol:e,from:o,quantity:s})];case "claim":return [jr(n,[e])]}return null}function Lm(e){return e==="claim"?"posting":"active"}function AM(e,t,r,n,o){let{mutateAsync:i}=ot.useRecordActivity(e,r);return v(["ecency-wallets",t,r],e,s=>{let a=Vm(t,r,s);if(a)return a;let c=jm(t,r,s);if(c)return c;throw new Error(`[SDK][Wallet] \u2013 no operation builder for asset="${t}" operation="${r}"`)},()=>{i();let s=[];s.push(["ecency-wallets","asset-info",e,t]),t==="HIVE"&&s.push(["ecency-wallets","asset-info",e,"HP"]),s.push(["wallet","portfolio","v2",e]),setTimeout(()=>{s.forEach(a=>{w().invalidateQueries({queryKey:a});});},5e3);},n,Lm(r),{broadcastMode:o})}function SM(e,t,r){return v(["wallet","delegate-rc"],e,({to:n,maxRc:o})=>[Lr(e,n,o)],async(n,o)=>{await S(t?.adapter,r,[u.accounts.full(e),u.accounts.full(o.to),u.resourceCredits.account(e),u.resourceCredits.account(o.to)]);},t,"active",{broadcastMode:r})}function kM(e,t,r){return v(["witnesses","vote"],e,({witness:n,approve:o})=>[Gr(e,n,o)],async()=>{try{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.witnesses.votes(e)]);}catch(n){console.warn("[useWitnessVote] Post-broadcast side-effect failed:",n);}},t,"active",{broadcastMode:r})}function IM(e,t,r){return v(["witnesses","proxy"],e,({proxy:n})=>[zr(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.witnesses.proxy()]);},t,"active",{broadcastMode:r})}function Wm(e){return {owner:e.witness_name,total_missed:e.missed_blocks,url:e.url,props:{account_creation_fee:`${(e.account_creation_fee/1e3).toFixed(3)} HIVE`,account_subsidy_budget:0,maximum_block_size:e.block_size},hbd_exchange_rate:{base:`${e.price_feed.toFixed(3)} HBD`},available_witness_account_subsidies:0,running_version:e.version,signing_key:e.signing_key,last_hbd_exchange_update:e.feed_updated_at,rank:e.rank,vests:e.vests,voters_num:e.voters_num,voters_num_daily_change:e.voters_num_daily_change,price_feed:e.price_feed,hbd_interest_rate:e.hbd_interest_rate,last_confirmed_block_num:e.last_confirmed_block_num}}function QM(e){return infiniteQueryOptions({queryKey:u.witnesses.list(e),initialPageParam:1,queryFn:async({pageParam:t})=>(await te("hafbe","/witnesses",{"page-size":e,page:t})).witnesses.map(Wm),getNextPageParam:(t,r,n)=>t.length===e?n+1:void 0})}function UM(e,t,r,n="vests",o="desc"){return queryOptions({queryKey:u.witnesses.voters(e,t,r,n,o),queryFn:async({signal:i})=>await te("hafbe","/witnesses/{witness-name}/voters",{"witness-name":e,"page-size":r,page:t,sort:n,direction:o},void 0,void 0,i),enabled:!!e,staleTime:6e4})}function HM(e){return queryOptions({queryKey:u.witnesses.voterCount(e),queryFn:async()=>await te("hafbe","/witnesses/{witness-name}/voters/count",{"witness-name":e}),enabled:!!e,staleTime:6e4})}var Gm=(_=>(_[_.CHECKIN=10]="CHECKIN",_[_.LOGIN=20]="LOGIN",_[_.CHECKIN_EXTRA=30]="CHECKIN_EXTRA",_[_.POST=100]="POST",_[_.COMMENT=110]="COMMENT",_[_.VOTE=120]="VOTE",_[_.REBLOG=130]="REBLOG",_[_.DELEGATION=150]="DELEGATION",_[_.REFERRAL=160]="REFERRAL",_[_.COMMUNITY=170]="COMMUNITY",_[_.TRANSFER_SENT=998]="TRANSFER_SENT",_[_.TRANSFER_INCOMING=999]="TRANSFER_INCOMING",_[_.MINTED=991]="MINTED",_[_.BURNED=997]="BURNED",_))(Gm||{});async function Jm(e,t){if(!e)throw new Error("[SDK][Points][Claim] \u2013 username wasn't provided");if(!t)throw new Error("[SDK][Points][Claim] \u2013 access token wasn't found");let n=await h()(d.privateApiHost+"/private-api/points-claim",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t})}),o=(n.headers.get("content-type")??"").split(";")[0].trim().toLowerCase(),i=await n.text();if(!n.ok){if(n.status===406)try{return JSON.parse(i)}catch{return {message:i,code:n.status}}let s=i&&o.includes("json")?`: ${i.slice(0,200)}`:"";throw new Error(`[SDK][Points][Claim] \u2013 failed with status ${n.status}${s}`)}if(!o.includes("json"))throw new Error(`[SDK][Points][Claim] \u2013 expected JSON but received "${o||"empty"}" response (status ${n.status})`);try{return JSON.parse(i)}catch{throw new Error(`[SDK][Points][Claim] \u2013 malformed JSON response (status ${n.status})`)}}function zM(e,t,r,n){let{mutateAsync:o}=ot.useRecordActivity(e,"points-claimed");return useMutation({mutationFn:()=>Jm(e,t),onError:n,onSuccess:()=>{o(),w().setQueryData(St(e).queryKey,i=>i&&{...i,points:(parseFloat(i.points)+parseFloat(i.uPoints)).toFixed(3),uPoints:"0"}),r?.();}})}var es=/(^|\s)author:([^\s]+)/g,ts=/(^|\s)type:([^\s]+)/g,rs=/(^|\s)category:([^\s]+)/g,ns=/(^|\s)tag:([^\s]+)/g;var is=(n=>(n.ALL="",n.POST="post",n.COMMENT="comment",n))(is||{}),YM=5,XM=100;function ss(e){return e.trim().split(/\s+/)[0]??""}function Ym(e){return ss(e).replace(/^@+/,"").toLowerCase()}function Xm(e){return ss(e).replace(/^#+/,"").toLowerCase()}function Zm(e){let t=new Set;return e.split(/[\s,]+/).map(r=>r.replace(/^#+/,"").toLowerCase()).filter(r=>r===""||t.has(r)?false:(t.add(r),true))}function ZM({search:e="",author:t="",type:r="",category:n="",tags:o=[]}){let i=e.trim().replace(/\s+/g," "),s=Ym(t),a=Xm(n),c=Zm(Array.isArray(o)?o.join(","):o),p=[i];return s&&p.push(`author:${s}`),r&&p.push(`type:${r}`),a&&p.push(`category:${a}`),c.length>0&&p.push(`tag:${c.join(",")}`),{q:p.filter(l=>l!=="").join(" "),search:i,author:s,type:r,category:a,tags:c}}var os=class{query="";search="";author="";type="";category="";tags=[];constructor(t){this.query=t,this.search=t,this.grabAuthor(),this.grabType(),this.grabCategory(),this.grabTags(),this.grabSearch();}grab=t=>{let r=[...this.query.matchAll(t)];return r.length>0?r[0][2].trim():""};grabAuthor=()=>{this.author=this.grab(es);};grabType=()=>{let t=this.grab(ts);Object.values(is).includes(t)&&(this.type=t);};grabCategory=()=>{this.category=this.grab(rs);};grabTags=()=>{let t=new Set;this.tags=[...this.query.matchAll(ns)].flatMap(r=>r[2].split(",")).map(r=>r.trim()).filter(r=>r===""||t.has(r)?false:(t.add(r),true));};grabSearch=()=>{for([es,ts,rs,ns].forEach(t=>{this.search=this.search.replace(t,"$1");});this.search.indexOf(" ")!==-1;)this.search=this.search.replace(" "," ");this.search=this.search.trim();}};async function Ce(e,t){let n=await(async()=>{let o;try{o=await e.text();}catch{return}if(o!=="")try{return JSON.parse(o)}catch{return e.ok?void 0:o}})();if(!e.ok){let o=new Error(`Request failed with status ${e.status}`);throw o.status=e.status,o.data=n,o}if(n===void 0||t!==void 0&&!t(n))throw new Error("Response body was empty, invalid JSON, or not the expected shape");return n}function Ke(e){return typeof e=="object"&&e!==null&&Array.isArray(e.results)}var tf=isServer?0:3;function Ct(e,t){let{status:r}=t,n=r===408||r===429;return r!==void 0&&r>=400&&r<500&&!n?false:e{let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let c=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(a),signal:Pe(xe,s)});return Ce(c,Ke)},retry:Ct})}function pB(e,t,r=true){return infiniteQueryOptions({queryKey:u.search.controversialRising(e,t),initialPageParam:{sid:void 0,hasNextPage:true},queryFn:async({pageParam:n,signal:o})=>{if(!n.hasNextPage)return {hits:0,took:0,results:[]};let i,s=new Date;switch(t){case "today":i=new Date(s.getTime()-1440*60*1e3);break;case "week":i=new Date(s.getTime()-10080*60*1e3);break;case "month":i=new Date(s.getTime()-720*60*60*1e3);break;case "year":i=new Date(s.getTime()-365*24*60*60*1e3);break;default:i=void 0;}let a="* type:post",c=e==="rising"?"children":e,p=i?i.toISOString().split(".")[0]:void 0,l="0",m=t==="today"?50:200,f={q:a,sort:c,hide_low:l};p&&(f.since=p),n.sid&&(f.scroll_id=n.sid),(f.votes=m);let g=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(f),signal:Pe(xe,o)});return Ce(g,Ke)},getNextPageParam:n=>({sid:n?.scroll_id,hasNextPage:n.results.length>0}),enabled:r,retry:Ct})}async function fB(e,t,r,n,o,i,s){let a={q:e,sort:t,hide_low:r};n&&(a.since=n),o&&(a.scroll_id=o),i&&(a.votes=i);let p=await h()(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(a),signal:Pe(xe,s)});return Ce(p,Ke)}async function as(e,t,r=xe){let o=await h()(d.privateApiHost+"/search-api/similar",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(e),signal:Pe(r,t)});return Ce(o,Ke)}async function gB(e,t){let n=await h()(d.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify({q:e}),signal:Pe(xe,t)}),o=await Ce(n,Array.isArray);return o?.length>0?o:[e]}var sf=4368*60*60*1e3,af=4,uf=3e3,cf=2e3,pf=4e3,bB=2;function lf(e,t){return e.replace(/!\[[^\]]*\]\([^)]*\)/g," ").replace(/\[([^\]]*)\]\([^)]*\)/g,"$1").replace(/<[^>]+>/g," ").replace(/https?:\/\/\S+/g," ").replace(/\s+/g," ").trim().slice(0,t)}function df(e){let t=5381;for(let r=0;r>>0).toString(36)}function vB(e){let t=e.title??"",r=e.json_metadata?.tags,n=(Array.isArray(r)?r:[]).filter(s=>typeof s=="string"&&s!==""),o=lf(e.body??"",uf),i=df(`${t}|${n.join(",")}|${o}`);return queryOptions({queryKey:u.search.similarEntries(e.author,e.permlink,i),queryFn:async({signal:s})=>{let a=new Date(Date.now()-sf).toISOString().slice(0,19),c=await as({author:e.author,permlink:e.permlink,title:t,body:o,tags:n,since:a},s,typeof window>"u"?cf:pf),p=[],l=new Set;for(let m of c.results){if(p.length>=af)break;m.permlink!==e.permlink&&(m.tags??[]).indexOf("nsfw")===-1&&(l.has(m.author)||(l.add(m.author),p.push(m)));}return p},staleTime:300*1e3,retry:false})}function CB(e,t=5){let r=e.trim();return queryOptions({queryKey:u.search.account(r,t),queryFn:async()=>{let n=await y("condenser_api.lookup_accounts",[r,t]);return n.length===0?[]:zt(n)},enabled:!!r})}function FB(e,t=10){let r=e.trim();return queryOptions({queryKey:u.search.topics(r,t),queryFn:async()=>(await y("condenser_api.get_trending_tags",[r,t+1])).map(o=>o.name).filter(o=>o!==""&&!o.startsWith("hive-")).slice(0,t),enabled:!!r})}function MB(e,t,r,n,o,i){return infiniteQueryOptions({queryKey:u.search.api(e,t,r,n,o,i),queryFn:async({pageParam:s,signal:a})=>{let c={q:e,sort:t,hide_low:r};n&&(c.since=n),s&&(c.scroll_id=s),o!==void 0&&(c.votes=o),i&&(c.include_nsfw=1);let p=await fetch(d.privateApiHost+"/search-api/search",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify(c),signal:Pe(xe,a)});return Ce(p,Ke)},initialPageParam:void 0,getNextPageParam:s=>s?.scroll_id,enabled:!!e,retry:Ct})}function HB(e){return queryOptions({queryKey:["search","path",e],queryFn:async()=>{let t=await fetch(d.privateApiHost+"/search-api/search-path",{method:"POST",headers:{"Content-Type":"application/json","X-Ecency-Client":d.clientId},body:JSON.stringify({q:e})});if(!t.ok)throw new Error(`Search path failed: ${t.status}`);let r=await t.json();return r?.length>0?r:[e]}})}async function _f(e){let r=await h()(d.privateApiHost+"/private-api/support-settings",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let n;try{n=await r.json();}catch{}let o=n?.message??`Failed to fetch support settings: ${r.status}`,i=new Error(o);throw i.status=r.status,i.data=n,i}return await r.json()}function $B(e,t){let r=e?.replace("@","");return queryOptions({queryKey:u.support.settings(r),queryFn:()=>{if(!t)throw new Error("[SDK][Support] missing auth");return _f(t)},enabled:!!r&&!!t})}async function vf(e,t){let n=await h()(d.privateApiHost+"/private-api/support-settings-update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e,beneficiary_percent:t.beneficiary_percent,curation_percent:t.curation_percent})});if(!n.ok){let o;try{o=await n.json();}catch{}let i=o?.message??`Failed to update support settings: ${n.status}`,s=new Error(i);throw s.status=n.status,s.data=o,s}return await n.json()}function Af(e,t,r){return e.setQueryData(u.support.settings(t),r),e.invalidateQueries({queryKey:u.support.settings(t)})}function YB(e,t){let r=useQueryClient(),n=e?.replace("@","");return useMutation({mutationKey:["support","settings-update",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Support] missing auth");return vf(t,o)},onSuccess(o){n&&Af(r,n,o);}})}function tQ(e){return queryOptions({queryKey:["promotions","boost-plus-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(d.privateApiHost+"/private-api/boost-plus-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch boost plus prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function iQ(e){return queryOptions({queryKey:["promotions","rc-delegation-prices"],queryFn:async()=>{if(!e)return [];let t=await fetch(d.privateApiHost+"/private-api/rc-delegation-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch RC delegation prices: ${t.status}`);return await t.json()},staleTime:1/0,enabled:!!e})}function cQ(e,t){return queryOptions({queryKey:["promotions","rc-delegation-active",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(d.privateApiHost+"/private-api/rc-delegation-active",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,username:e})});if(!r.ok)throw new Error(`Failed to fetch RC delegation active: ${r.status}`);let n=await r.json();return n&&n.expires&&n.user?{user:n.user,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function mQ(e){return queryOptions({queryKey:["promotions","promote-price"],queryFn:async()=>{let t=await fetch(d.privateApiHost+"/private-api/promote-price",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!t.ok)throw new Error(`Failed to fetch promote prices: ${t.status}`);return await t.json()},enabled:!!e})}function hQ(e,t){return queryOptions({queryKey:["promotions","boost-plus-accounts",e],queryFn:async()=>{if(!t||!e)return null;let r=await fetch(d.privateApiHost+"/private-api/boosted-plus-account",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:t,account:e})});if(!r.ok)throw new Error(`Failed to fetch boost plus account prices: ${r.status}`);let n=await r.json();return n?{account:n.account,expires:new Date(n.expires)}:null},enabled:!!e&&!!t})}function vQ(e,t,r){return v(["promotions","boost-plus"],e,({account:n,duration:o})=>[ln(e,n,o)],async(n,{account:o})=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.promotions.boostPlusAccounts(o)]);},t,"active",{broadcastMode:r})}function OQ(e,t,r){return v(["promotions","rc-delegation"],e,({duration:n})=>[dn(e,n)],async()=>{t?.adapter?.invalidateQueries&&await t.adapter.invalidateQueries([u.accounts.full(e),u.resourceCredits.account(e),["promotions","rc-delegation-active",e]]);},t,"active",{broadcastMode:r})}async function EQ(e){let r=await h()(d.privateApiHost+"/auth-api/hs-token-refresh",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({code:e})});if(!r.ok){let o;try{o=await r.json();}catch{o=void 0;}let i=new Error(`Failed to refresh token: ${r.status}`);throw i.status=r.status,i.data=o,i}return await r.json()}var Rf="https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt";function FQ(){return queryOptions({queryKey:u.badActors.list(),queryFn:async({signal:e})=>{let t=await fetch(Rf,{signal:e});if(!t.ok)throw new Error(`Failed to fetch bad actors list: ${t.status}`);let r=await t.text();return new Set(r.split(` `).filter(Boolean))},staleTime:1440*60*1e3,gcTime:1/0})}var IQ=1.1,kf=(r=>(r.NUMBER_OF_VOTES="number_of_votes",r.TOKENS="tokens",r))(kf||{});function DQ(e){return e?e.map((t,r)=>({choice_num:r+1,choice_text:t,votes:{total_votes:0,hive_hp:0,hive_proxied_hp:0,hive_hp_incl_proxied:0}})):[]}function qf(e){let t=e.poll_choices??[],r=e.poll_voters??[],n=e.poll_stats,o=t.map(a=>{let c=a.votes;return {choice_num:a.choice_num??0,choice_text:a.choice_text??"",votes:c?{total_votes:c.total_votes??0,hive_hp:c.hive_hp,hive_proxied_hp:c.hive_proxied_hp,hive_hp_incl_proxied:c.hive_hp_incl_proxied??null}:void 0}}),i=r.map(a=>({name:a.name??"",choices:a.choices??[],hive_hp:a.hive_hp,hive_proxied_hp:a.hive_proxied_hp,hive_hp_incl_proxied:a.hive_hp_incl_proxied})),s=n?{total_voting_accounts_num:n.total_voting_accounts_num??0,total_hive_hp:n.total_hive_hp,total_hive_proxied_hp:n.total_hive_proxied_hp,total_hive_hp_incl_proxied:n.total_hive_hp_incl_proxied??null}:void 0;return {author:e.author??"",permlink:e.permlink??"",question:e.question??"",poll_choices:o,poll_voters:i,poll_stats:s,poll_trx_id:e.poll_trx_id??"",status:e.status??"",end_time:e.end_time??"",preferred_interpretation:e.preferred_interpretation??"number_of_votes",max_choices_voted:e.max_choices_voted??1,filter_account_age_days:e.filter_account_age_days??0,protocol_version:e.protocol_version??0,created:e.created??"",post_title:e.post_title??"",post_body:e.post_body??"",parent_permlink:e.parent_permlink??"",tags:e.tags??[],image:e.image??[],token:e.token,community_membership:e.community_membership,allow_vote_changes:e.allow_vote_changes,ui_hide_res_until_voted:e.ui_hide_res_until_voted??false,platform:e.platform}}function QQ(e,t){return queryOptions({queryKey:u.polls.details(e??"",t??""),enabled:!!e&&!!t,gcTime:isServer?Ro:1800*1e3,queryFn:async()=>{if(!e||!t)throw new Error("[SDK][Polls] \u2013 missing author or permlink");let r=h(),n=`${d.pollsApiHost}/rpc/poll?author=eq.${encodeURIComponent(e)}&permlink=eq.${encodeURIComponent(t)}`,o=await r(n);if(!o.ok)throw new Error(`[SDK][Polls] \u2013 fetch failed: ${o.status}`);let i=await o.json();if(!Array.isArray(i)||!i[0])throw new Error("[SDK][Polls] \u2013 no poll data found");return qf(i[0])}})}function VQ(e,t,r){return v(u.polls.vote(),e??"",({pollTrxId:n,choices:o})=>{if(!e)throw new Error("[SDK][Polls] Cannot vote without an authenticated username");return [["custom_json",{id:"polls",required_auths:[],required_posting_auths:[e],json:JSON.stringify({poll:n,action:"vote",choices:o})}]]},void 0,t,"posting",{broadcastMode:r??"async"})}var If=-1e10,Df=5,Kf=30;var us=e=>Math.abs(e)>0&&Math.abs(e)<=100;function cs(e){if(typeof e=="number"&&us(e)||typeof e=="string"&&(e=Number(e),us(e)))return Math.floor(e);if(e===0)return 25;let t=false;e<0&&(t=true);let r=Math.log10(Math.abs(e));return r=Math.max(r-9,0),r<0&&(r=0),t&&(r*=-1),r=r*9+25,Math.floor(r)}var Nf=["ecency.com","ecency.app","hive.blog","hive.io","hiveblocks.com","peakd.com","snapie.io","hivesuite.app","leofinance.io","inleo.io","3speak.tv","d.buzz","waivio.com"],Mf=["imgur.com","images.hive.blog","files.peakd.com","i.ecency.com","images.ecency.com","steemitimages.com","cdn.steemitimages.com","media.giphy.com"],Bf=/\.(jpe?g|png|gif|webp|svg|bmp|avif)(\?|#|$)/i,Qf=/(?:https?:)?\/\/[^\s)<>"'\]]+/gi,Uf=/[.,;:!?'"]+$/;function Hf(e){let t=/^(?:https?:)?\/\/([^/?#]+)/i.exec(e);return t?t[1].toLowerCase().replace(/^www\./,""):""}function Vf(e){let t=e.replace(Uf,"");if(Bf.test(t))return false;let r=Hf(t);if(!r.includes("."))return false;let n=o=>r===o||r.endsWith("."+o);return !(Nf.some(n)||Mf.some(n))}function ps(e){if(!e)return false;let t=e.match(Qf);return t?t.some(Vf):false}var jf=(n=>(n.MOD_MUTED="mod_muted",n.DOWNVOTED="downvoted",n.LOW_TRUST="low_trust",n))(jf||{});function Lf(e){return e?.stats?.total_votes??e?.active_votes?.length??0}function $f(e,t){return (e??0)<-1e10&&t>=5}function Wf(e){let t=e?.author_reputation;return t==null?false:cs(t)<30&&ps(e?.body)}function JQ(e,t){return !!e&&!!t?.includes(e)}function YQ(e){return e?e.stats?.gray||e.stats?.hide?"mod_muted":$f(e.net_rshares,Lf(e))?"downvoted":Wf(e)?"low_trust":null:null}var ut=class extends Error{constructor(r,n,o){super(r);this.status=n;this.data=o;}status;data},Et=class extends ut{constructor(r,n,o,i,s){super(r,n,s);this.code=o;this.taken=i;}code;taken};function Ne(e){return `${d.newsletterHost??d.privateApiHost}/api/newsletter${e}`}async function ze(e){let t=await e.json().catch(()=>{});if(!e.ok)throw new ut(t?.error||`Request failed (${e.status})`,e.status,t);if(!t||typeof t!="object")throw new ut(`Unexpected response (${e.status})`,e.status);return t}async function ls(e,t){let n=await h()(Ne("/subscribe"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({...e,...t?{code:t}:{}})});return ze(n)}async function ds(e){let r=await h()(Ne("/subscriptions"),{headers:{"X-HS-Token":e}});return (await ze(r)).subscriptions??[]}async function ms(e,t){let n=await h()(Ne(`/subscriptions/${encodeURIComponent(e)}`),{method:"DELETE",headers:{"X-HS-Token":t}});await ze(n);}async function fs(e,t){let n=await h()(Ne("/unsubscribe-all"),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:e,code:t})});await ze(n);}async function gs(e,t,r){let o=await h()(Ne(`/sender?type=${e}&target=${encodeURIComponent(t)}`),{headers:{"X-HS-Token":r}});return ze(o)}async function ys(e,t,r){let o=await h()(Ne(`/issues?type=${e}&target=${encodeURIComponent(t)}`),{headers:{"X-HS-Token":r}});return (await ze(o)).issues??[]}async function hs(e,t,r,n=20){let i=await h()(Ne(`/posts?type=${e}&target=${encodeURIComponent(t)}&limit=${n}`),{headers:{"X-HS-Token":r}});return (await ze(i)).posts??[]}async function _s(e,t,r){let o=await h()(Ne(e),{method:"POST",headers:{"Content-Type":"application/json","X-HS-Token":r},body:JSON.stringify(t)}),i=await o.json().catch(()=>{});if(!o.ok)throw new Et(i?.error||`Request failed (${o.status})`,o.status,i?.code,i?.taken,i);if(!i||typeof i!="object")throw new Et(`Unexpected response (${o.status})`,o.status);return i}function ws(e,t){return _s("/send/preview",e,t)}function bs(e,t){return _s("/send",e,t)}function sU(e,t){let r=e?.replace("@","");return queryOptions({queryKey:u.newsletter.subscriptions(r),enabled:!!r&&!!t,queryFn:async()=>{if(!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return ds(t)},staleTime:6e4,retry:false})}function lU(e,t,r,n){let o=r?.replace("@","");return queryOptions({queryKey:u.newsletter.sender(e,t,o),enabled:!!o&&!!n&&!!t,queryFn:async()=>{if(!n)throw new Error("[SDK][Newsletter] \u2013 missing auth");return gs(e,t,n)},staleTime:5*6e4})}function yU(e,t,r,n){let o=r?.replace("@","");return queryOptions({queryKey:u.newsletter.issues(e,t,o),enabled:!!o&&!!n&&!!t,queryFn:async()=>{if(!n)throw new Error("[SDK][Newsletter] \u2013 missing auth");return ys(e,t,n)},staleTime:6e4})}function vU(e,t,r,n,o=20){let i=r?.replace("@","");return queryOptions({queryKey:u.newsletter.posts(e,t,i,o),enabled:!!i&&!!n&&!!t,queryFn:async()=>{if(!n)throw new Error("[SDK][Newsletter] \u2013 missing auth");return hs(e,t,n,o)},staleTime:6e4})}function SU(e,t){let r=useQueryClient(),n=e?.replace("@","");return useMutation({mutationKey:["newsletter","subscribe",n],mutationFn:o=>ls(o,t),onSuccess(){n&&r.invalidateQueries({queryKey:u.newsletter.subscriptions(n)});}})}function TU(e,t){let r=useQueryClient(),n=e?.replace("@","");return useMutation({mutationKey:["newsletter","leave",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return ms(o,t)},onSuccess(o,i){r.setQueryData(u.newsletter.subscriptions(n),s=>(s??[]).filter(a=>a.id!==i));}})}function KU(e,t){let r=useQueryClient(),n=e?.replace("@","");return useMutation({mutationKey:["newsletter","unsubscribe-all",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return fs(o,t)},onSuccess(o,i){r.setQueryData(u.newsletter.subscriptions(n),s=>(s??[]).filter(a=>a.email.toLowerCase()!==i.toLowerCase()));}})}function UU(e,t){let r=e?.replace("@","");return useMutation({mutationKey:["newsletter","send-preview",r],mutationFn:async n=>{if(!r||!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return ws(n,t)}})}function HU(e,t){let r=useQueryClient(),n=e?.replace("@","");return useMutation({mutationKey:["newsletter","send",n],mutationFn:async o=>{if(!n||!t)throw new Error("[SDK][Newsletter] \u2013 missing auth");return bs(o,t)},onSuccess(o,i){r.invalidateQueries({queryKey:u.newsletter.issues(i.type,i.target,n)}),r.invalidateQueries({queryKey:u.newsletter.sender(i.type,i.target,n)});}})}var jU=["quality","underrated","newcomer","other"],LU=["queue","newest","unique","random"],$U=["queue","latest","new-authors","recommended","curated","all","excluded"],WU=["all","ecency","peakd","other"],GU=["12h","full","half","eighth","locked","all"],zU=["reviewed","snoozed","flagged","noted"],JU=["plagiarism","ai_slop","recycled","image_only","tag_abuse","farming","nsfw_untagged","other"];function XU(e){return !!e?.spaminator||!!e?.abuser}function ZU(e){return !!e?.ignorelist||!!e?.abuser||!!e?.blocked_tag||!!e?.nsfw||!!e?.patch_body||!!e?.negative_rep||!!e?.deleted}function ig(e,t){let r=`@${e}/${t}`;return d.dmcaPatterns.includes(r)||d.dmcaPatternRegexes.some(n=>n.test(r))}function sg(e){if(!e||!ig(e.author,e.permlink))return e;let t={...e,title:""};return "summary"in t&&(t.summary=null),"first_image"in t&&(t.first_image=null),t}function dr(e){let t=false,r=e.pages.map(n=>{let o=false,i=n.items.map(s=>{let a=sg(s);return a!==s&&(o=true),a});return o?(t=true,{...n,items:i}):n});return t?{...e,pages:r}:e}var ag="/private-api/curation-desk",Je=class extends Error{status;data;constructor(t,r,n){super(t),this.name="CurationApiError",this.status=r,this.data=n;}};function Rt(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}var mr=e=>Rt(e)&&Array.isArray(e.items),As=e=>Rt(e)&&Array.isArray(e.curators),ug=e=>Rt(e)&&Array.isArray(e.recommenders),cg=e=>Rt(e)&&"vp"in e,pg=["window_days","recommended","curated","dismissed","withdrawn","precision"],lg=e=>Rt(e)&&pg.every(t=>typeof e[t]=="number")&&typeof e.trusted=="boolean";async function Ps(e,t,r){if(!e.ok){let i;try{i=await e.json();}catch{i=void 0;}throw new Je(`Failed to ${t}: ${e.status}`,e.status,i)}let n=e.headers?.get?.("content-type")??"";if(n&&!n.includes("json"))throw new Je(`Unexpected response for ${t}`,e.status);let o;try{o=await e.json();}catch{throw new Je(`Unexpected response for ${t}`,e.status)}if(r&&!r(o))throw new Je(`Unexpected response for ${t}`,e.status);return o}var dg=/^hive-\d{5,6}$/,mg=/^[a-z0-9]{8,16}$/,fg=new Set(["hide_curated","hide_reviewed","hide_snoozed"]),xs=["sort","seed","view","app","community","window","rep_min","rep_max","min_words","max_words","has_images","new_authors","recommended","flagged","hide_curated","hide_reviewed","hide_snoozed","limit"];function fr(e={}){let t=e,r={};for(let n of xs){let o=t[n];if(o==null||o==="")continue;if(typeof o=="boolean"){fg.has(n)?o||(r[n]="0"):o&&(r[n]="1");continue}if(typeof o=="number"){if(!Number.isFinite(o))continue;r[n]=String(Math.trunc(o));continue}let i=String(o);(n==="app"||n==="window")&&i==="all"||n==="community"&&!dg.test(i)||n==="seed"&&!mg.test(i)||(r[n]=i);}return r.sort!=="random"&&delete r.seed,r}function gg(e,t){let r=new URLSearchParams;for(let o of xs)e[o]!==void 0&&r.set(o,e[o]);t&&r.set("cursor",t);let n=r.toString();return n?`?${n}`:""}function Os(e){return `${d.privateApiHost}${ag}${e}`}var yg=new Set(["localhost","127.0.0.1","::1","[::1]"]);function hg(e){let t=d.privateApiHost||"",r=typeof window<"u"?window.location?.href:void 0,n;try{n=r?new URL(t,r):new URL(t);}catch{return}if(n.protocol!=="https:"&&!(n.protocol==="http:"&&yg.has(n.hostname)))throw new Je(`Refusing to ${e} over an insecure connection`,0)}async function ct(e,t,r,n){let i=await h()(Os(e),{method:"GET",signal:r});return Ps(i,t,n)}async function fe(e,t,r,n,o,i){if(!t)throw new Error("[SDK][Curation] missing auth");hg(n);let a=await h()(Os(e),{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({...r,code:t}),redirect:"error",signal:o});return Ps(a,n,i)}function Ss(e,t,r){return ct(`/feed${gg(fr(e),t)}`,"fetch curation feed",r,mr)}function Cs(e){return ct("/status","fetch curation status",e,cg)}function Es(e){return ct("/roster","fetch curation roster",e,As)}function Rs(e,t,r){let n=new URLSearchParams;e.sort&&n.set("sort",e.sort),e.limit&&n.set("limit",String(e.limit)),t&&n.set("cursor",t);let o=n.toString();return ct(`/recommendations${o?`?${o}`:""}`,"fetch curation recommendations",r,mr)}function ks(e,t){return ct(`/recommender/${encodeURIComponent(e)}`,"fetch recommender stats",t,lg)}function Ts(e,t,r){return ct(`/post/${encodeURIComponent(e)}/${encodeURIComponent(t)}`,"fetch curation post",r,ug)}function oH(e,t,r,n){let o={...fr(t)};return r&&(o.cursor=r),fe("/roster-feed",e,o,"fetch roster feed",n,mr)}function iH(e,t,r){return fe("/tick",e,{since:t.since,need:t.need.slice(0,100),visible:t.visible.slice(0,100)},"tick",r)}function Fs(e,t){return fe("/roster-list",e,{},"list roster",t,As)}function sH(e,t){let{curator:r,role:n,rules:o,note:i}=t;if(!r||!n)throw new Error("[SDK][Curation] roster set needs a curator and a role");let s={curator:r,role:n};return o&&(s.rules=o),i!==void 0&&(s.note=i),fe("/roster-set",e,s,"set curator")}function aH(e,t){if(!t)throw new Error("[SDK][Curation] roster retire needs a curator");return fe("/roster-retire",e,{curator:t},"retire curator")}function uH(e,t){let{author:r,permlink:n,state:o,reason:i,note:s,snooze_until:a,lane:c}=t;if(!r||!n||!o)throw new Error("[SDK][Curation] mark needs author, permlink and state");let p={author:r,permlink:n,state:o};return i&&(p.reason=i),s&&(p.note=s),a&&(p.snooze_until=a),c&&(p.lane=c),fe("/mark",e,p,"set mark")}function cH(e,t){if(!t.author||!t.permlink)throw new Error("[SDK][Curation] mark-clear needs author and permlink");return fe("/mark-clear",e,{author:t.author,permlink:t.permlink},"clear mark")}function pH(e,t={},r){let n={};return t.state&&(n.state=t.state),t.cursor&&(n.cursor=t.cursor),t.limit&&(n.limit=t.limit),fe("/marks",e,n,"fetch my marks",r,mr)}function lH(e,t){if(!Number.isFinite(t.post_id)||!t.action)throw new Error("[SDK][Curation] cursor needs post_id and action");let r={post_id:t.post_id,action:t.action};return t.reason&&(r.reason=t.reason),fe("/cursor",e,r,"move cursor")}var _g=/^[0-9a-f]{40}$/;function dH(e,t){let{author:r,permlink:n,trx_id:o,ua_class:i}=t;if(!r||!n||!i)throw new Error("[SDK][Curation] recommend-meta needs author, permlink and ua_class");let s={author:r,permlink:n,ua_class:i};return typeof o=="string"&&_g.test(o)&&(s.trx_id=o),fe("/recommend-meta",e,s,"send recommendation meta")}function mH(e,t){if(!t.author||!t.permlink||!t.action)throw new Error("[SDK][Curation] recommendation-dismiss needs author, permlink and action");return fe("/recommendation-dismiss",e,{author:t.author,permlink:t.permlink,action:t.action},"dismiss recommendation")}var bg=25,vg=1e4;function kn(e,t){let r=new Set,n=false,o=e.pages.map(i=>{let s=i.items.filter(a=>{let c=t(a);return r.has(c)?(n=true,false):(r.add(c),true)});return s.length===i.items.length?i:{...i,items:s}});return n?{...e,pages:o}:e}function Ag(e){return kn(e,t=>t.post_id)}function Pg(e){return dr(Ag(e))}function wH(e={}){let t=e.limit??bg,r=fr({...e,limit:t});return infiniteQueryOptions({queryKey:u.curation.feed(r),initialPageParam:void 0,queryFn:({pageParam:n,signal:o})=>Ss({...e,limit:t},n,o),getNextPageParam:n=>!n||n.items.lengthCs(e),staleTime:15e3})}function RH(){return queryOptions({queryKey:u.curation.roster(),queryFn:({signal:e})=>Es(e),staleTime:6e5})}function IH(e,t){return queryOptions({queryKey:u.curation.rosterAdmin(e),queryFn:({signal:r})=>Fs(t,r),enabled:!!e&&!!t,staleTime:6e4})}var Eg=25;function UH(e={}){let t=e.sort??"unique",r=e.limit??Eg,n={sort:t,limit:String(r)};return infiniteQueryOptions({queryKey:u.curation.recommendations(n),initialPageParam:void 0,queryFn:({pageParam:o,signal:i})=>Rs({sort:t,limit:r},o,i),getNextPageParam:o=>!o||o.items.lengthdr(kn(o,i=>`${i.author}/${i.permlink}`)),staleTime:1e4})}var kg=/^[a-z0-9.-]{3,16}$/,Tg=/^[a-z0-9-]{1,255}$/;function $H(e,t){let r=kg.test(e)&&Tg.test(t);return queryOptions({queryKey:u.curation.post(e,t),queryFn:({signal:n})=>{if(!r)throw new Error("[SDK][Curation] invalid author or permlink");return Ts(e,t,n)},enabled:r,staleTime:15e3})}var qg=/^[a-z0-9.-]{3,16}$/;function YH(e){let t=qg.test(e??"");return queryOptions({queryKey:u.curation.recommender(e),queryFn:({signal:r})=>{if(!t)throw new Error("[SDK][Curation] invalid recommender username");return ks(e,r)},enabled:t,staleTime:6e4})}function r1(e){if(!e||typeof e!="object")return null;let t=e,r=typeof t.tx_id=="string"?t.tx_id:typeof t.id=="string"?t.id:null;return r&&/^[0-9a-f]{40}$/.test(r)?r:null}function n1(e,t,r){return v(u.curation.recommend(),e,n=>[n.withdraw?gn(e,n.author,n.permlink):fn(e,n.author,n.permlink,n.reason)],async(n,o)=>{await S(t?.adapter,r,[u.curation.post(o.author,o.permlink),[...u.curation._recommendationsPrefix]]);},t,"posting",{broadcastMode:r})}/** * @license bytebuffer.ts (c) 2015 Daniel Wirtz * Backing buffer: ArrayBuffer, Accessor: DataView diff --git a/packages/sdk/dist/node/index.mjs.map b/packages/sdk/dist/node/index.mjs.map index 6a88c37be1..41bd460fbf 100644 --- a/packages/sdk/dist/node/index.mjs.map +++ b/packages/sdk/dist/node/index.mjs.map @@ -1 +1 @@ -{"version":3,"sources":["../../src/hive-tx/helpers/ByteBuffer.ts","../../src/hive-tx/config.ts","../../src/hive-tx/helpers/Signature.ts","../../src/hive-tx/helpers/PublicKey.ts","../../src/hive-tx/helpers/Asset.ts","../../src/hive-tx/helpers/HexBuffer.ts","../../src/hive-tx/helpers/serializer.ts","../../src/hive-tx/helpers/sleep.ts","../../src/hive-tx/helpers/call.ts","../../src/hive-tx/Transaction.ts","../../src/hive-tx/helpers/PrivateKey.ts","../../src/hive-tx/helpers/aes.ts","../../src/hive-tx/helpers/deserializer.ts","../../src/hive-tx/helpers/memo.ts","../../src/hive-tx/helpers/utils.ts","../../src/modules/core/hive-tx.ts","../../src/modules/core/errors/chain-errors.ts","../../src/modules/core/mutations/use-broadcast-mutation.ts","../../src/modules/core/mutations/broadcast-json.ts","../../src/modules/core/mutations/invalidate-after-broadcast.ts","../../src/modules/core/abort-signal.ts","../../src/modules/core/config.ts","../../src/modules/core/queries-manager.ts","../../src/modules/core/utils/decoder-encoder.ts","../../src/modules/core/utils/parse-asset.ts","../../src/modules/core/utils/get-bound-fetch.ts","../../src/modules/core/utils/is-community.ts","../../src/modules/core/utils/pagination-helpers.ts","../../src/modules/core/utils/vests-to-hp.ts","../../src/modules/core/utils/is-empty-date.ts","../../src/modules/core/queries/get-dynamic-props-query-options.ts","../../src/modules/core/queries/get-reward-fund-query-options.ts","../../src/modules/core/query-keys.ts","../../src/modules/core/utf8.ts","../../src/modules/ai/queries/get-ai-generate-price-query-options.ts","../../src/modules/ai/queries/get-ai-images-query-options.ts","../../src/modules/ai/queries/get-ai-assist-price-query-options.ts","../../src/modules/ai/queries/get-ai-transcribe-price-query-options.ts","../../src/modules/ai/mutations/use-generate-image.ts","../../src/modules/ai/mutations/use-ai-assist.ts","../../src/modules/ai/mutations/use-ai-transcribe.ts","../../src/modules/accounts/queries/get-account-full-query-options.ts","../../src/modules/accounts/utils/profile-metadata.ts","../../src/modules/accounts/utils/parse-accounts.ts","../../src/modules/accounts/utils/account-name-query.ts","../../src/modules/accounts/queries/get-accounts-query-options.ts","../../src/modules/accounts/queries/get-follow-count-query-options.ts","../../src/modules/accounts/queries/get-followers-query-options.ts","../../src/modules/accounts/queries/get-following-query-options.ts","../../src/modules/accounts/queries/get-muted-users-query-options.ts","../../src/modules/accounts/queries/lookup-accounts-query-options.ts","../../src/modules/accounts/queries/search-accounts-by-username-query-options.ts","../../src/modules/accounts/queries/check-username-wallets-pending-query-options.ts","../../src/modules/accounts/queries/get-relationship-between-accounts-query-options.ts","../../src/modules/accounts/queries/get-account-subscriptions-query-options.ts","../../src/modules/accounts/queries/get-bookmarks-query-options.ts","../../src/modules/accounts/queries/get-favorites-query-options.ts","../../src/modules/accounts/queries/check-favorite-query-options.ts","../../src/modules/accounts/queries/get-favorite-tags-query-options.ts","../../src/modules/accounts/utils/normalize-tag.ts","../../src/modules/accounts/queries/get-favorite-tag-check-query-options.ts","../../src/modules/accounts/queries/get-account-recoveries-query-options.ts","../../src/modules/accounts/queries/get-account-pending-recovery-query-options.ts","../../src/modules/accounts/queries/get-account-reputations-query-options.ts","../../src/modules/accounts/queries/get-transactions-infinite-query-options.ts","../../src/modules/accounts/queries/get-bots-query-options.ts","../../src/modules/accounts/queries/get-referrals-infinite-query-options.ts","../../src/modules/accounts/queries/get-referrals-stats-query-options.ts","../../src/modules/accounts/queries/get-friends-infinite-query-options.ts","../../src/modules/accounts/queries/get-search-friends-query-options.ts","../../src/modules/posts/queries/get-trending-tags-query-options.ts","../../src/modules/posts/queries/get-trending-tags-with-stats-query-options.ts","../../src/modules/posts/queries/get-fragments-query-options.ts","../../src/modules/posts/queries/get-promoted-posts-query-options.ts","../../src/modules/posts/queries/get-entry-active-votes-query-options.ts","../../src/modules/posts/queries/get-user-post-vote-query-options.ts","../../src/modules/posts/queries/get-content-query-options.ts","../../src/modules/posts/queries/get-content-replies-query-options.ts","../../src/modules/posts/queries/get-post-header-query-options.ts","../../src/modules/posts/utils/filter-dmca-entries.ts","../../src/modules/bridge/verify-on-alternate-node.ts","../../src/modules/posts/queries/get-post-query-options.ts","../../src/modules/bridge/requests.ts","../../src/modules/posts/queries/get-discussions-query-options.ts","../../src/modules/posts/queries/get-account-posts-query-options.ts","../../src/modules/posts/queries/get-posts-ranked-query-options.ts","../../src/modules/posts/queries/get-reblogs-query-options.ts","../../src/modules/posts/queries/get-reblogged-by-query-options.ts","../../src/modules/posts/queries/get-schedules-query-options.ts","../../src/modules/posts/queries/get-drafts-query-options.ts","../../src/modules/posts/queries/get-images-query-options.ts","../../src/modules/posts/queries/get-comment-history-query-options.ts","../../src/modules/posts/queries/get-deleted-entry-query-options.ts","../../src/modules/posts/queries/get-post-tips-query-options.ts","../../src/modules/posts/utils/waves-helpers.ts","../../src/modules/posts/queries/get-waves-feed-query-options.ts","../../src/modules/posts/queries/get-shorts-feed-query-options.ts","../../src/modules/posts/queries/get-waves-by-host-query-options.ts","../../src/modules/posts/queries/get-waves-by-tag-query-options.ts","../../src/modules/posts/queries/get-waves-following-query-options.ts","../../src/modules/posts/queries/get-waves-trending-tags-query-options.ts","../../src/modules/posts/queries/get-waves-by-account-query-options.ts","../../src/modules/posts/queries/get-waves-trending-authors-query-options.ts","../../src/modules/posts/queries/get-normalize-post-query-options.ts","../../src/modules/accounts/queries/get-account-vote-history-infinite-query-options.ts","../../src/modules/accounts/queries/get-profiles-query-options.ts","../../src/modules/accounts/queries/get-balance-history-query-options.ts","../../src/modules/accounts/queries/get-aggregated-balance-query-options.ts","../../src/modules/accounts/queries/get-pro-members-query-options.ts","../../src/modules/accounts/mutations/use-account-update.ts","../../src/modules/accounts/mutations/use-account-relations-update.ts","../../src/modules/operations/builders/content.ts","../../src/modules/operations/builders/wallet.ts","../../src/modules/operations/builders/social.ts","../../src/modules/operations/builders/governance.ts","../../src/modules/operations/builders/community.ts","../../src/modules/operations/builders/market.ts","../../src/modules/operations/builders/account.ts","../../src/modules/operations/builders/ecency.ts","../../src/modules/accounts/mutations/use-follow.ts","../../src/modules/accounts/mutations/use-unfollow.ts","../../src/modules/accounts/mutations/bookmarks/use-account-bookmark-add.ts","../../src/modules/accounts/mutations/bookmarks/use-account-bookmark-delete.ts","../../src/modules/accounts/mutations/favorites/use-account-favorite-add.ts","../../src/modules/accounts/mutations/favorites/use-account-favorite-delete.ts","../../src/modules/accounts/mutations/favorite-tags/requests.ts","../../src/modules/accounts/mutations/favorite-tags/use-favorite-tag-add.ts","../../src/modules/accounts/mutations/favorite-tags/use-favorite-tag-delete.ts","../../src/modules/accounts/mutations/use-account-update-key-auths.ts","../../src/modules/accounts/mutations/use-account-update-password.ts","../../src/modules/accounts/mutations/use-account-revoke-posting.ts","../../src/modules/accounts/mutations/use-account-update-recovery.ts","../../src/modules/accounts/mutations/build-revoke-keys-op.ts","../../src/modules/accounts/mutations/use-account-revoke-key.ts","../../src/modules/accounts/mutations/use-claim-account.ts","../../src/modules/accounts/mutations/use-grant-posting-permission.ts","../../src/modules/accounts/mutations/use-create-account.ts","../../src/modules/accounts/utils/account-power.ts","../../src/modules/operations/authority-map.ts","../../src/modules/operations/mutations/sign-operation-by-key.ts","../../src/modules/operations/mutations/sign-operation-by-keychain.ts","../../src/modules/operations/mutations/sign-operation-by-hivesigner.ts","../../src/modules/operations/queries/get-chain-properties-query-options.ts","../../src/modules/posts/utils/fragment-cache-helpers.ts","../../src/modules/posts/mutations/add-fragment.ts","../../src/modules/posts/mutations/edit-fragment.ts","../../src/modules/posts/mutations/remove-fragment.ts","../../src/modules/private-api/requests.ts","../../src/modules/posts/mutations/use-add-draft.ts","../../src/modules/posts/mutations/use-update-draft.ts","../../src/modules/posts/mutations/use-delete-draft.ts","../../src/modules/posts/mutations/use-add-schedule.ts","../../src/modules/posts/mutations/use-delete-schedule.ts","../../src/modules/posts/mutations/use-move-schedule.ts","../../src/modules/posts/mutations/use-add-image.ts","../../src/modules/posts/mutations/use-delete-image.ts","../../src/modules/posts/mutations/use-upload-image.ts","../../src/modules/posts/cache/entries-cache-management.ts","../../src/modules/posts/mutations/use-vote.ts","../../src/modules/posts/mutations/use-reblog.ts","../../src/modules/posts/mutations/use-comment.ts","../../src/modules/posts/cache/discussions-cache-utils.ts","../../src/modules/posts/mutations/use-delete-comment.ts","../../src/modules/posts/mutations/use-cross-post.ts","../../src/modules/posts/mutations/use-update-reply.ts","../../src/modules/posts/mutations/use-promote.ts","../../src/modules/posts/utils/validate-post-creating.ts","../../src/modules/analytics/mutations/index.ts","../../src/modules/analytics/mutations/use-record-activity.ts","../../src/modules/analytics/queries/get-discover-leaderboard-query-options.ts","../../src/modules/analytics/queries/get-discover-curation-query-options.ts","../../src/modules/analytics/queries/get-page-stats-query-options.ts","../../src/modules/integrations/3speak/functions/beneficiary.ts","../../src/modules/integrations/3speak/queries/index.ts","../../src/modules/integrations/hivesigner/queries/index.ts","../../src/modules/integrations/hivesigner/queries/get-decode-memo-query-options.ts","../../src/modules/integrations/hivesigner/index.ts","../../src/modules/integrations/3speak/queries/get-account-token-query-options.ts","../../src/modules/integrations/3speak/queries/get-account-videos-query-options.ts","../../src/modules/integrations/3speak/index.ts","../../src/modules/integrations/hiveposh/queries/get-hiveposh-links-query-options.ts","../../src/modules/integrations/plausible/queries/get-stats-query-options.ts","../../src/modules/resource-credits/queries/get-rc-stats-query-options.ts","../../src/modules/resource-credits/queries/get-account-rc-query-options.ts","../../src/modules/resource-credits/queries/get-rc-resource-params-query-options.ts","../../src/modules/resource-credits/types/resource-params.ts","../../src/modules/resource-credits/utils/estimate-comment-rc-cost.ts","../../src/modules/resource-credits/utils/price-rc-usage.ts","../../src/modules/resource-credits/utils/count-operation-usage.ts","../../src/modules/resource-credits/utils/estimate-rc-precheck.ts","../../src/modules/games/queries/game-status-check-query-options.ts","../../src/modules/games/mutations/game-claim.ts","../../src/modules/quests/queries/get-quests-query-options.ts","../../src/modules/quests/catalog.ts","../../src/modules/quests/mutations/buy-streak-freeze.ts","../../src/modules/communities/mutations/use-subscribe-community.ts","../../src/modules/communities/mutations/use-unsubscribe-community.ts","../../src/modules/communities/mutations/use-mute-post.ts","../../src/modules/communities/mutations/use-set-community-role.ts","../../src/modules/communities/mutations/use-update-community.ts","../../src/modules/communities/mutations/use-register-community-rewards.ts","../../src/modules/communities/mutations/use-pin-post.ts","../../src/modules/communities/queries/get-communities-query-options.ts","../../src/modules/communities/queries/get-community-context-query-options.ts","../../src/modules/communities/queries/get-community-query-options.ts","../../src/modules/communities/queries/get-community-subscribers-query-options.ts","../../src/modules/communities/queries/get-account-notifications-infinite-query-options.ts","../../src/modules/communities/queries/get-rewarded-communities-query-options.ts","../../src/modules/communities/types/community.ts","../../src/modules/communities/utils/index.ts","../../src/modules/notifications/queries/get-notifications-unread-count-query-options.ts","../../src/modules/notifications/queries/get-notifications-infinite-query-options.ts","../../src/modules/notifications/enums/notification-filter.ts","../../src/modules/notifications/enums/notify-types.ts","../../src/modules/notifications/queries/get-notifications-settings-query-options.ts","../../src/modules/notifications/queries/get-announcements-query-options.ts","../../src/modules/notifications/queries/get-spotlights-query-options.ts","../../src/modules/notifications/mutations/use-mark-notifications-read.ts","../../src/modules/notifications/mutations/use-set-last-read.ts","../../src/modules/proposals/queries/get-proposal-query-options.ts","../../src/modules/proposals/queries/get-proposals-query-options.ts","../../src/modules/proposals/queries/get-proposal-votes-query-options.ts","../../src/modules/proposals/queries/get-user-proposal-votes-query-options.ts","../../src/modules/proposals/mutations/use-proposal-vote.ts","../../src/modules/proposals/mutations/use-proposal-create.ts","../../src/modules/wallet/queries/get-vesting-delegations-query-options.ts","../../src/modules/wallet/queries/get-account-delegations-query-options.ts","../../src/modules/wallet/queries/get-vesting-delegation-expirations-query-options.ts","../../src/modules/wallet/queries/get-conversion-requests-query-options.ts","../../src/modules/wallet/queries/get-collateralized-conversion-requests-query-options.ts","../../src/modules/wallet/queries/get-savings-withdraw-from-query-options.ts","../../src/modules/wallet/queries/get-withdraw-routes-query-options.ts","../../src/modules/wallet/queries/get-open-orders-query-options.ts","../../src/modules/wallet/queries/get-outgoing-rc-delegations-infinite-query-options.ts","../../src/modules/wallet/queries/get-incoming-rc-query-options.ts","../../src/modules/wallet/utils/received-vesting-shares.ts","../../src/modules/wallet/queries/get-received-vesting-shares-query-options.ts","../../src/modules/wallet/queries/get-recurrent-transfers-query-options.ts","../../src/modules/wallet/queries/get-portfolio-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-general-info-query-options.ts","../../src/modules/wallet/queries/get-hbd-asset-general-info-query-options.ts","../../src/modules/wallet/queries/get-hive-power-asset-general-info-query-options.ts","../../src/modules/wallet/consts/hive-account-operation-groups.ts","../../src/modules/wallet/consts/hive-operation-list.ts","../../src/modules/wallet/consts/hive-operation-orders.ts","../../src/modules/wallet/queries/get-hive-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hbd-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hive-power-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-metric-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-withdrawal-routes-query-options.ts","../../src/modules/wallet/queries/get-hive-power-delegates-query-options.ts","../../src/modules/wallet/queries/get-hive-power-delegatings-query-options.ts","../../src/modules/market/queries/get-order-book-query-options.ts","../../src/modules/market/queries/get-market-statistics-query-options.ts","../../src/modules/market/queries/get-market-history-query-options.ts","../../src/modules/market/queries/get-hive-hbd-stats-query-options.ts","../../src/modules/market/queries/get-market-data-query-options.ts","../../src/modules/market/queries/get-trade-history-query-options.ts","../../src/modules/market/queries/get-feed-history-query-options.ts","../../src/modules/market/queries/get-current-median-history-price-query-options.ts","../../src/modules/market/mutations/use-limit-order-create.ts","../../src/modules/market/mutations/use-limit-order-cancel.ts","../../src/modules/market/requests.ts","../../src/modules/hive-engine/requests.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-balances-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-market-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-metadata-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-transactions-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-metrics-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-unclaimed-rewards-query-options.ts","../../src/modules/hive-engine/queries/get-all-hive-engine-tokens-query-options.ts","../../src/modules/hive-engine/utils/formatted-number.ts","../../src/modules/hive-engine/utils/hive-engine-token.ts","../../src/modules/hive-engine/queries/get-hive-engine-balances-with-usd-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-general-info-query-options.ts","../../src/modules/points/queries/get-points-query-options.ts","../../src/modules/points/queries/get-points-asset-general-info-query-options.ts","../../src/modules/points/queries/get-points-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-account-wallet-asset-info-query-options.ts","../../src/modules/wallet/types/asset-operation.ts","../../src/modules/wallet/mutations/use-transfer.ts","../../src/modules/wallet/mutations/use-transfer-point.ts","../../src/modules/wallet/mutations/use-delegate-vesting-shares.ts","../../src/modules/wallet/mutations/use-set-withdraw-vesting-route.ts","../../src/modules/wallet/mutations/use-transfer-engine-token.ts","../../src/modules/wallet/mutations/use-transfer-to-savings.ts","../../src/modules/wallet/mutations/use-transfer-from-savings.ts","../../src/modules/wallet/mutations/use-transfer-to-vesting.ts","../../src/modules/wallet/mutations/use-withdraw-vesting.ts","../../src/modules/wallet/mutations/use-convert.ts","../../src/modules/wallet/mutations/use-claim-interest.ts","../../src/modules/wallet/mutations/use-claim-rewards.ts","../../src/modules/wallet/mutations/use-delegate-engine-token.ts","../../src/modules/wallet/mutations/use-undelegate-engine-token.ts","../../src/modules/wallet/mutations/use-stake-engine-token.ts","../../src/modules/wallet/mutations/use-unstake-engine-token.ts","../../src/modules/wallet/mutations/use-claim-engine-rewards.ts","../../src/modules/wallet/mutations/use-engine-market-order.ts","../../src/modules/wallet/mutations/use-wallet-operation.ts","../../src/modules/wallet/mutations/use-delegate-rc.ts","../../src/modules/witnesses/mutations/use-witness-vote.ts","../../src/modules/witnesses/mutations/use-witness-proxy.ts","../../src/modules/witnesses/queries/get-witnesses-query-options.ts","../../src/modules/points/types/point-transaction-type.ts","../../src/modules/points/mutations/use-claim-points.ts","../../src/modules/search/query-builder.ts","../../src/modules/search/parse-json-response.ts","../../src/modules/search/retry-policy.ts","../../src/modules/search/queries/get-search-query-options.ts","../../src/modules/search/requests.ts","../../src/modules/search/queries/get-similar-entries-query-options.ts","../../src/modules/search/queries/get-search-account-query-options.ts","../../src/modules/search/queries/get-search-topics-query-options.ts","../../src/modules/search/queries/get-search-api-infinite-query-options.ts","../../src/modules/search/queries/get-search-path-query-options.ts","../../src/modules/support/queries/get-support-settings-query-options.ts","../../src/modules/support/mutations/update-support-settings.ts","../../src/modules/promotions/queries/get-boost-plus-prices-query-options.ts","../../src/modules/promotions/queries/get-rc-delegation-prices-query-options.ts","../../src/modules/promotions/queries/get-rc-delegation-active-query-options.ts","../../src/modules/promotions/queries/get-promote-price-query-options.ts","../../src/modules/promotions/queries/get-boost-plus-account-prices-query-options.ts","../../src/modules/promotions/mutations/use-boost-plus.ts","../../src/modules/promotions/mutations/use-rc-delegation.ts","../../src/modules/auth/requests.ts","../../src/modules/bad-actors/queries/get-bad-actors-query-options.ts","../../src/modules/polls/types/poll.ts","../../src/modules/polls/queries/get-poll-query-options.ts","../../src/modules/polls/mutations/use-poll-vote.ts","../../src/modules/moderation/constants.ts","../../src/modules/moderation/account-reputation.ts","../../src/modules/moderation/external-links.ts","../../src/modules/moderation/content-moderation.ts","../../src/modules/newsletter/errors.ts","../../src/modules/newsletter/api.ts","../../src/modules/newsletter/queries/get-digest-subscriptions-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-sender-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-issues-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-posts-query-options.ts","../../src/modules/newsletter/mutations/use-subscribe-digest.ts","../../src/modules/newsletter/mutations/use-leave-digest.ts","../../src/modules/newsletter/mutations/use-unsubscribe-all-digests.ts","../../src/modules/newsletter/mutations/use-send-newsletter-issue.ts","../../src/modules/curation/types.ts","../../src/modules/curation/flags.ts","../../src/modules/curation/dmca.ts","../../src/modules/curation/requests.ts","../../src/modules/curation/queries/get-curation-feed-infinite-query-options.ts","../../src/modules/curation/queries/get-curation-status-query-options.ts","../../src/modules/curation/queries/get-curation-roster-query-options.ts","../../src/modules/curation/queries/get-curation-roster-admin-query-options.ts","../../src/modules/curation/queries/get-curation-recommendations-infinite-query-options.ts","../../src/modules/curation/queries/get-curation-post-query-options.ts","../../src/modules/curation/queries/get-curation-recommender-query-options.ts","../../src/modules/curation/mutations/use-curation-recommend.ts"],"names":["EMPTY_BUFFER","_encoder","_decoder","getEncoder","s","utf8","i","c","next","getDecoder","b","bytes","result","byte","codePoint","ByteBuffer","_ByteBuffer","capacity","littleEndian","buffers","buf","bb","view","offset","buffer","source","value","relative","src","copy","begin","end","target","targetOffset","sourceOffset","sourceLimit","targetRelative","len","current","length","forceCopy","limit","size","str","currentOffset","encoded","lenVarintSize","start","lenResult","lenValue","lenLength","config","DEFAULT_SERVER_RPC_PROXY_METHODS","serverRpcProxy","setServerRpcProxy","opts","url","headers","k","v","timeoutMs","methods","m","pos","fallback","sanitizeNodeList","nodes","n","setNodes","validNodes","setRestNodes","valid","setRestNodesByApi","map","api","list","setUserAgent","ua","setResilience","r","bool","Signature","_Signature","data","recovery","compressed","string","temp","hexToBytes","bytesToHex","message","sig","secp256k1","PublicKey","_PublicKey","key","prefix","wif","expectedPrefix","bs58","checksum","expectedChecksum","ripemd160","isUint8ArrayEqual","signature","encodePublic","a","Asset","_Asset","amount","symbol","expectedSymbol","amountString","HexBuffer","_HexBuffer","OPERATION_IDS","VoidSerializer","StringSerializer","Int16Serializer","Int64Serializer","UInt8Serializer","UInt16Serializer","UInt32Serializer","UInt64Serializer","BooleanSerializer","StaticVariantSerializer","itemSerializers","id","item","AssetSerializer","asset","precision","DateSerializer","PublicKeySerializer","BinarySerializer","VariableBinarySerializer","FlatMapSerializer","keySerializer","valueSerializer","ArraySerializer","itemSerializer","ObjectSerializer","keySerializers","serializer","error","OptionalSerializer","AuthoritySerializer","BeneficiarySerializer","PriceSerializer","ChainPropertiesSerializer","OperationDataSerializer","operationId","definitions","objectSerializer","OperationSerializers","ProposalUpdateSerializer","OperationSerializer","operation","TransactionSerializer","EncryptedMemoSerializer","Serializer","sleep","ms","resolve","isNodeRuntime","serverIdentityHeaders","rpcProxyStats","ProxyMiss","reason","errorMessage","proxyConsecutiveMisses","proxyOpenUntil","proxyRpcCall","proxy","method","params","callerTimeoutMs","externalSignal","validate","dot","tSignal","cleanupTimeout","createTimeoutSignal","signal","cleanupMerge","mergeSignals","res","e","relayed","RPCError","rpcError","NodeError","node","parseRetryAfterMs","header","secs","dateMs","delta","PRE_CONNECTION_ERRORS","BROWSER_NETWORK_ERRORS","flattenErrorText","parts","cause","depth","isBroadcastSafeToRetry","text","code","msg","isNodeLevelRPCError","apiOf","RATE_LIMIT_BASE_MS","RATE_LIMIT_MAX_MS","RATE_LIMIT_STREAK_RESET_MS","MAX_API_FAILURES_BEFORE_COOLDOWN","API_COOLDOWN_MS","HEAD_BLOCK_MAX_AGE_MS","STALE_BLOCK_THRESHOLD","LATENCY_EWMA_ALPHA","LATENCY_MIN_SAMPLES","LATENCY_MAX_AGE_MS","LATENCY_REPROBE_MS","LATENCY_UNPROVEN_PRIOR_MS","LATENCY_SLOW_FAILURE_MS","NodeHealthTracker","h","durationMs","profileKey","apiFail","now","p","elapsedMs","existing","retryAfterMs","hasHeader","cooldown","blockNum","recent","best","healthy","unhealthy","ordered","d","probe","threshold","cand","candTouch","touch","rpcHealthTracker","restHealthTracker","HedgeBudget","tokens","rpcHedgeBudget","adaptiveAttemptTimeout","tracker","callerTimeout","explicit","ewma","recordError","tryRecordHeadBlock","block","createTimeoutReason","err","controller","timer","primary","secondary","onPrimaryAbort","onSecondaryAbort","cleanup","jsonRPCCall","timeout","shouldRetry","body","jitterDelay","hedgedRpcAttempt","hedgePool","explicitTimeout","deadlineAt","onHedgeFired","reject","done","pendingLegs","hedgeFired","primarySettled","lastError","hedgeTimer","primaryStart","controllers","finish","settle","startLeg","isHedge","merged","legTimeout","primaryWindow","delay","live","callRPC","retry","ceiling","served","deadline","triedInRound","attempt","orderedNodes","callStart","callRPCBroadcast","triedNodes","apiMethods","callREST","endpoint","restProfileKey","apiNodes","alreadyRecorded","baseUrl","path","paramObj","processedPathParams","restSignal","restCleanup","restCallStart","response","callWithQuorum","quorum","allNodes","arr","j","currentBatchSize","allResults","batchNodes","promises","batchResults","consensusResult","findConsensus","results","resultGroups","consensusGroup","group","chainId","Transaction","_Transaction","options","operationName","operationBody","keys","digest","txId","checkStatus","maxPollAttempts","status","transactionData","sha256","expiration","props","refBlockPrefix","expirationIso","NETWORK_ID","PrivateKey","_PrivateKey","decodePrivate","seed","username","password","role","rv","encodePrivate","publicKey","sha512","doubleSha256","input","encodedKey","checksumVerify","encrypt","privateKey","nonce","uniqueNonce","crypt","decrypt","nonceL","S","ebuf","encryptionKey","iv","tag","check","cbuf","check32","cryptoJsDecrypt","cryptoJsEncrypt","messageBuffer","AESCBC","uniqueNonceEntropy","randomPrivateKey","long","entropy","PublicKeyDeserializer","fixedBuf","UInt64Deserializer","UInt32Deserializer","BinaryDeserializer","bCopy","BufferDeserializer","keyDeserializers","obj","deserializer","EncryptedMemoDeserializer","Deserializer","encode","memo","testNonce","checkEncryption","toPrivateObj","toPublicObj","mbuf","memoBuffer","mbuf2","decode","from","to","encrypted","otherpub","encodeTest","plaintext","cyphertext","o","Memo","utils_exports","__export","buildWitnessSetProperties","makeBitMaskFilter","operations","validateUsername","suffix","ref","label","allowedOperations","reduceFunction","low","high","allowedOperation","owner","type","serialize","nobleSha256","isWif","broadcastOperations","ops","tx","op","broadcastOperationsAsync","MANA_REGENERATION_SECONDS","calculateManabar","maxMana","manabar","currentMana","percentage","getVests","account","vests","delegated","received","withdrawRate","alreadyWithdrawn","withdrawVests","calculateVPMana","calculateRCMana","rcAccount","ErrorType","parseChainError","errorDescription","errorCode","errorString","testPattern","pattern","formatError","parsed","shouldTriggerAuthFallback","isResourceCreditsError","isInfoError","isNetworkError","broadcastWithMethod","auth","authority","fetchedKey","fetchedToken","broadcastMode","adapter","token","hs","tokenError","broadcastWithFallback","loginType","hasPostingAuth","selectedMethod","hsError","chain","errors","shouldSkip","skipReason","prefetchedKey","prefetchedToken","skipReasons","errorMessages","useBroadcastMutation","mutationKey","onSuccess","useMutation","payload","postingKey","accessToken","broadcastJson","jjson","BROADCAST_INCLUSION_DELAY_MS","invalidateAfterBroadcast","withTimeoutSignal","timeoutSignal","ac","onAbort","isDevelopment","getHeliusApiKey","INTERNAL_API_TIMEOUT_MS","SERVER_GC_TIME_MS","queryClientResolver","fallbackQueryClient","resolveQueryClient","QueryClient","CONFIG","client","ConfigManager","setQueryClient","setQueryClientResolver","setPrivateApiHost","host","setNewsletterHost","setClientId","clientId","setDefaultObserver","observer","getValidatedBaseUrl","setPollsApiHost","setImageHost","setHiveNodes","userAgent","getServerRpcProxyStats","analyzeRedosRisk","unboundedRange","match","min","max","testRegexPerformance","regex","adversarialInputs","maxExecutionTime","duration","safeCompileRegex","maxLength","staticAnalysis","compileErr","runtimeTest","setDmcaLists","lists","coerceList","resolved","rejectedTagCount","makeQueryClient","getQueryClient","EcencyQueriesManager","getQueryData","queryKey","getInfiniteQueryData","prefetchQuery","prefetchInfiniteQuery","generateClientServerQuery","useQuery","generateClientServerInfiniteQuery","useInfiniteQuery","encodeObj","decodeObj","dataToParse","Symbol","NaiMap","parseAsset","sval","sp","cachedFetch","getBoundFetch","isCommunity","isWrappedResponse","normalizeToWrappedResponse","vestsToHp","hivePerMVests","isEmptyDate","DYNAMIC_PROPS_REFRESH_MS","getDynamicPropsQueryOptions","queryOptions","QueryKeys","rawGlobalDynamic","rawFeedHistory","rawChainProps","rawRewardFund","rawHardforkProps","totalVestingSharesAmount","totalVestingFundAmount","base","quote","fundRecentClaims","fundRewardBalance","votePowerReserveRate","authorRewardCurve","contentConstant","currentHardforkVersion","lastHardfork","hbdPrintRate","hbdInterestRate","headBlock","totalVestingFund","totalVestingShares","virtualSupply","vestingRewardPercent","accountCreationFee","getRewardFundQueryOptions","fundName","entryPath","author","permlink","filter","startAuthor","startPermlink","activeUsername","sort","order","onlyMeta","hours","usernames","following","mode","followType","query","follower","startFollowing","startFollower","excludeList","accounts","targetUsername","reference","name","communityName","proposalId","voter","q","hideLow","since","scrollId","votes","what","content","includeNsfw","witness","page","pageSize","direction","user","coinType","granularity","onlyEnabled","currency","filterKey","bucketSeconds","seconds","startDate","endDate","coin","vsCurrency","fromTs","toTs","dimensions","metrics","dateRange","gameType","utf8ByteLength","varintByteLength","count","remaining","getAiGeneratePriceQueryOptions","getAiImagesQueryOptions","getAiAssistPriceQueryOptions","getAiTranscribePriceQueryOptions","makeIdempotencyKey","invalidateGenerateImageCaches","useGenerateImage","pendingData","useAiAssist","useAiTranscribe","form","isMetadataStripped","hasProfileValues","profile","getAccountFullQueryOptions","bridgeProfile","rows","chainAccount","reread","parseProfileMetadata","stats","follow_stats","reputationValue","DENIED_KEYS","isPlainObject","proto","deepMerge","srcVal","tgtVal","sanitizeTokens","meta","rest","safeMeta","postingJsonMetadata","extractAccountProfile","pickRicherMetadataSnapshot","preferred","preferredKeys","parsePostingMetadataRoot","buildPostingJsonMetadata","existingPostingJsonMetadata","root","existingProfile","mergedProfile","buildProfileMetadata","profileTokens","_ignoredVersion","profileRest","metadata","parseAccounts","rawAccounts","x","jsonMetadata","accountNameByteLength","isQueryableAccountName","getAccountsQueryOptions","queryable","getFollowCountQueryOptions","getFollowersQueryOptions","getFollowingQueryOptions","MUTED_USERS_PAGE_SIZE","MUTED_USERS_MAX_PAGES","getMutedUsersQueryOptions","muted","names","lookupAccountsQueryOptions","getSearchAccountsByUsernameQueryOptions","RESERVED_META_KEYS","checkUsernameWalletsPendingQueryOptions","wallets","walletItem","sanitizedMeta","address","showFlag","baseCandidate","metaTokenCandidates","metaSymbol","metaValue","getRelationshipBetweenAccountsQueryOptions","getAccountSubscriptionsQueryOptions","getBookmarksQueryOptions","getBookmarksInfiniteQueryOptions","infiniteQueryOptions","pageParam","json","lastPage","getFavoritesQueryOptions","getFavoritesInfiniteQueryOptions","checkFavoriteQueryOptions","getFavoriteTagsQueryOptions","getFavoriteTagsInfiniteQueryOptions","TAG_PATTERN","COMMUNITY_PATTERN","normalizeTag","raw","getFavoriteTagCheckQueryOptions","normalized","getAccountRecoveriesQueryOptions","getAccountPendingRecoveryQueryOptions","getAccountReputationsQueryOptions","ACCOUNT_OPERATION_GROUPS","ALL_ACCOUNT_OPERATIONS","deriveNum","entry","normalizeOpType","restType","isNaiAsset","naiToString","normalizeOpValue","getTransactionsInfiniteQueryOptions","operationTypes","fetchPage","toEntries","entries","currentPage","chained","nextPage","getBotsQueryOptions","getReferralsInfiniteQueryOptions","maxId","nextMaxId","getReferralsStatsQueryOptions","getFriendsInfiniteQueryOptions","enabled","accountNames","SEARCH_LIMIT","getSearchFriendsQueryOptions","getTrendingTagsQueryOptions","afterTag","tags","getTrendingTagsWithStatsQueryOptions","getFragmentsQueryOptions","getFragmentsInfiniteQueryOptions","getPromotedPostsQuery","getEntryActiveVotesQueryOptions","getUserPostVoteQueryOptions","getContentQueryOptions","getContentRepliesQueryOptions","getPostHeaderQueryOptions","filterDmcaEntry","entryOrEntries","applyFilter","verifyPostOnAlternateNode","getPostQueryOptions","num","cleanPermlink","verified","verifiedEntry","bridgeApiCall","resolvePost","post","resp","getPost","resolvePosts","posts","validatedPosts","validateEntry","getPostsRanked","start_author","start_permlink","getAccountPosts","newEntry","requiredStringProps","prop","validatedEntry","getPostHeader","getDiscussion","validatedResp","getCommunity","getCommunities","last","normalizePost","getSubscriptions","getSubscribers","community","getRelationshipBetweenAccounts","getProfiles","SortOrder","sortDiscussions","discussion","allPayout","absNegative","isPinned","sortOrders","_a","_b","keyA","keyB","sorted","pinnedIndex","pinned","getDiscussionsQueryOptions","resolvedObserver","oldData","newData","optimisticEntries","fetchedPermlinks","missingOptimistic","opt","getDiscussionQueryOptions","getAccountPostsInfiniteQueryOptions","hasNextPage","getAccountPostsQueryOptions","displaySelects","displaySelect","select","orderForDisplay","byCreated","getPostsRankedInfiniteQueryOptions","_options","sanitizedTag","getPostsRankedQueryOptions","getReblogsQueryOptions","getRebloggedByQueryOptions","getSchedulesQueryOptions","getSchedulesInfiniteQueryOptions","getDraftsQueryOptions","getDraftsInfiniteQueryOptions","fetchUserImages","getImagesQueryOptions","getGalleryImagesQueryOptions","getImagesInfiniteQueryOptions","getCommentHistoryQueryOptions","makeEntryPath","cleanAuthor","normalizedAuthor","normalizedPermlink","getDeletedEntryQueryOptions","isValid","history","title","getPostTipsQueryOptions","isEnabled","normalizeContainer","normalizeParent","normalizeWaveEntryFromApi","containerSource","container","parent","toEntryArray","getVisibleFirstLevelThreadItems","discussionItemsRaw","discussionItems","firstLevelItems","parent_author","parent_permlink","mapThreadItemsToWaveEntries","items","DEFAULT_FEED_LIMIT","normalizeParams","fetchWavesFeedPage","containers","cursor","row","getWavesFeedQueryOptions","getWavesLatestFeedQueryOptions","fetchShortsFeedPage","getShortsFeedQueryOptions","THREAD_CONTAINER_BATCH_SIZE","MAX_CONTAINERS_TO_SCAN","getThreads","scannedContainers","skipContainerId","rpcParams","normalizedContainers","visibleItems","lastContainer","getWavesByHostQueryOptions","DEFAULT_TAG_FEED_LIMIT","getWavesByTagQueryOptions","getWavesFollowingQueryOptions","normalizedUsername","flattened","getWavesTrendingTagsQueryOptions","getWavesByAccountQueryOptions","getWavesTrendingAuthorsQueryOptions","getNormalizePostQueryOptions","isEntry","getDays","createdDate","past","getAccountVoteHistoryInfiniteQueryOptions","filters","dayLimit","historyObj","filtered","firstHistory","getProfilesQueryOptions","getBalanceHistoryInfiniteQueryOptions","getAggregatedBalanceQueryOptions","getProMembersQueryOptions","proMembersSet","members","useAccountUpdate","queryClient","useQueryClient","_data","variables","useAccountRelationsUpdate","onError","kind","relationsQuery","actualRelation","buildVoteOp","weight","buildCommentOp","parentAuthor","parentPermlink","missing","buildCommentOptionsOp","maxAcceptedPayout","percentHbd","allowVotes","allowCurationRewards","extensions","buildDeleteCommentOp","buildReblogOp","deleteReblog","buildTransferOp","buildMultiTransferOps","destinations","dest","buildRecurrentTransferOp","recurrence","executions","buildTransferToSavingsOp","buildTransferFromSavingsOp","requestId","buildCancelTransferFromSavingsOp","buildClaimInterestOps","buildTransferToVestingOp","buildWithdrawVestingOp","vestingShares","buildDelegateVestingSharesOp","delegator","delegatee","buildSetWithdrawVestingRouteOp","fromAccount","toAccount","percent","autoVest","buildConvertOp","buildCollateralizedConvertOp","buildEngineOp","contractAction","contractPayload","contractName","buildEngineClaimOp","buildDelegateRcOp","delegatees","maxRc","delegateeArray","buildFollowOp","buildUnfollowOp","buildIgnoreOp","buildUnignoreOp","buildSetLastReadOps","date","lastReadDate","notifyOp","ecencyNotifyOp","buildWitnessVoteOp","approve","buildWitnessProxyOp","buildProposalCreateOp","creator","buildProposalVoteOp","proposalIds","buildRemoveProposalOp","proposalOwner","buildUpdateProposalOp","dailyPay","subject","buildSubscribeOp","buildUnsubscribeOp","buildSetRoleOp","buildUpdateCommunityOp","buildPinPostOp","pin","buildMutePostOp","notes","mute","buildMuteUserOp","buildFlagPostOp","BuySellTransactionType","OrderIdPrefix","buildLimitOrderCreateOp","amountToSell","minToReceive","fillOrKill","orderId","formatNumber","decimals","buildLimitOrderCreateOpWithType","orderType","idPrefix","expirationStr","formattedAmountToSell","formattedMinToReceive","buildLimitOrderCancelOp","buildClaimRewardBalanceOp","rewardHive","rewardHbd","rewardVests","buildAccountUpdateOp","active","posting","memoKey","buildAccountUpdate2Op","buildAccountCreateOp","newAccountName","fee","buildCreateClaimedAccountOp","buildClaimAccountOp","buildGrantPostingPermissionOp","currentPosting","grantedAccount","weightThreshold","existingIndex","acc","newAccountAuths","newPosting","buildRevokePostingPermissionOp","revokedAccount","buildChangeRecoveryAccountOp","accountToRecover","newRecoveryAccount","buildRequestAccountRecoveryOp","recoveryAccount","newOwnerAuthority","buildRecoverAccountOp","recentOwnerAuthority","buildBoostPlusOp","buildRcDelegationOp","buildPromoteOp","CURATION_REASONS","buildCurationRecommendOp","recommender","buildCurationUnrecommendOp","buildPointTransferOp","sender","receiver","normalizedAmount","buildMultiPointTransferOps","destArray","buildCommunityRegistrationOp","buildActiveCustomJsonOp","buildPostingCustomJsonOp","useFollow","_result","useUnfollow","useBookmarkAdd","useBookmarkDelete","bookmarkId","useAccountFavoriteAdd","qc","useAccountFavoriteDelete","listKey","infinitePrefix","checkKey","previousList","f","previousCheck","infiniteQueries","previousInfinite","context","favoriteTagRequest","route","addFavoriteTagRequest","deleteFavoriteTagRequest","useFavoriteTagAdd","favoriteTagDeleteMutationOptions","invalidateAll","_tag","useFavoriteTagDelete","dedupeAndSortKeyAuths","additions","useAccountUpdateKeyAuths","accountData","keepCurrent","currentKey","keysToRevoke","keysToRevokeByAuthority","prepareAuth","keyName","allKeysToRevoke","existingKeys","values","useAccountUpdatePassword","updateKeys","newPassword","currentPassword","useAccountRevokePosting","accountName","ctx","useAccountUpdateRecovery","email","canRevokeFromAuthority","revokingKeyStrs","remainingWeight","sum","accountWeight","buildRevokeKeysOp","revokingKeys","hasAnyKeyInAuth","clone","needsOwnerUpdate","useAccountRevokeKey","revokingKey","useClaimAccount","useGrantPostingPermission","useCreateAccount","HIVE_VOTING_MANA_REGENERATION_SECONDS","HIVE_100_PERCENT","HIVE_VOTE_DUST_THRESHOLD","getEffectiveVests","vesting","vestsToRshares","votingPowerValue","votePerc","hasStableVoteHardfork","dynamicProps","major","minor","stableVoteRshares","reserveRate","effectiveVests","usedMana","mana","votingRshares","totalVests","votingPower","powerRechargeTime","power","downVotingPower","totalShares","elapsed","currentManaPerc","rewardsToStakeRatio","curation","rewards","ownVests","rcPower","votingValue","rShares","OPERATION_AUTHORITY_MAP","getCustomJsonAuthority","customJsonOp","opType","customJson","getProposalAuthority","proposalOp","getOperationAuthority","getRequiredAuthority","highestAuthority","useSignOperationByKey","keyOrSeed","useSignOperationByKeychain","keyType","useSignOperationByHivesigner","callbackUri","getChainPropertiesQueryOptions","applyFragmentUpdate","vars","buildAddedFragment","useAddFragment","newFragment","index","useEditFragment","fragmentId","applyUpdate","fragment","useRemoveFragment","parseJsonResponse","errorData","signUp","referral","captchaToken","subscribeEmail","usrActivity","ty","bl","getNotifications","saveNotificationSetting","system","allows_notify","notify_types","getNotificationSetting","markNotifications","addImage","UPLOAD_HOST","uploadImage","file","fetchApi","formData","uploadImageWithSignature","deleteImage","imageId","addDraft","updateDraft","draftId","deleteDraft","addSchedule","schedule","reblog","deleteSchedule","moveSchedule","getPromotedPost","onboardEmail","friend","dataBody","useAddDraft","useUpdateDraft","useDeleteDraft","_variables","useAddSchedule","useDeleteSchedule","useMoveSchedule","useAddImage","nextCode","effectiveCode","useDeleteImage","prev","img","useUploadImage","getEntryFromCache","setEntryInCache","mutateEntry","updater","updated","EntriesCacheManagement","updateVotes","payout","updateReblogsCount","updateRepliesCount","addReply","reply","updateEntries","invalidateEntry","getEntry","isVoteAlreadyReflected","activeVotes","hasVoterRecord","applyVoteCacheUpdate","newVotes","newPayout","useVote","doInvalidate","useReblog","newCount","invalidate","resolveContentActivityType","useComment","beneficiaries","sortedBeneficiaries","isPost","activityType","queriesToInvalidate","discussionsAuthor","discussionsPermlink","addOptimisticDiscussionEntry","rootAuthor","rootPermlink","queries","removeOptimisticDiscussionEntry","snapshots","restoreDiscussionSnapshots","updateEntryInCache","updates","previous","restoreEntryInCache","useDeleteComment","_error","useCrossPost","useUpdateReply","usePromote","DEFAULT_VALIDATE_POST_DELAYS","getContent","validatePostCreating","attempts","delays","waitMs","mutations_exports","useRecordActivity","getLocationInfo","locationInfo","domain","getDiscoverLeaderboardQueryOptions","getDiscoverCurationQueryOptions","accountsResponse","element","curator","receivedVestingShares","delegatedVestingShares","vestingWithdrawRate","effectiveVest","getPageStatsQueryOptions","sortedDimensions","sortedMetrics","THREESPEAK_BENEFICIARY_ACCOUNT","THREESPEAK_BENEFICIARY_WEIGHT","hasThreeSpeakEmbed","enforceThreeSpeakBeneficiary","isThreeSpeakBeneficiary","queries_exports","getAccountTokenQueryOptions","getAccountVideosQueryOptions","getDecodeMemoQueryOptions","HiveSignerIntegration","memoQueryOptions","memoDecoded","tokenQueryOptions","ThreeSpeakIntegration","getHivePoshLinksQueryOptions","getStatsQueryOptions","filterBy","getRcStatsQueryOptions","getAccountRcQueryOptions","getRcResourceParamsQueryOptions","RC_RESOURCE_NAMES","TRANSACTION_HEADER_BYTES","SIGNATURE_BYTES","ASSET_BYTES","big","computeResourceCost","curve","pool","resourceCount","regenShare","coeffA","coeffB","shift","denom","countCommentResourceUsage","transactionBytes","permlinkLength","signatures","hasCommentOptions","sizeInfo","state","exec","stringFieldBytes","commentOperationBytes","commentOptionsBytes","estimateCommentTransactionBytes","EMPTY","estimateCommentRcCost","rcParams","rcStats","usage","regen","cost","breakdown","share","scaled","resourceCost","priceRcUsage","emptyUsage","estimateVoteTransactionBytes","operationBytes","countVoteResourceUsage","estimateRcPrecheck","priced","priceOperation","safeBuffer","estimatedCost","willLikelyFail","average","averageCost","MINIMAL_VOTE","MINIMAL_COMMENT","getGameStatusCheckQueryOptions","gameClaimRequest","contentType","detail","useGameClaim","recordActivity","getQuestsQueryOptions","QUEST_CATALOG","getQuestCatalogEntry","tier","QUEST_MIN_CONTENT_LENGTH","measureQuestContentLength","earnsQuestContentCredit","STREAK_FREEZE_PRICE","STREAK_FREEZE_MAX_OWNED","genIdempotencyKey","buyStreakFreezeRequest","useBuyStreakFreeze","useSubscribeCommunity","useUnsubscribeCommunity","useMutePost","useSetCommunityRole","team","idx","useUpdateCommunity","useRegisterCommunityRewards","usePinPost","getCommunitiesQueryOptions","getCommunityContextQueryOptions","getCommunityQueryOptions","SUBSCRIBERS_PAGE_SIZE","fetchSubscribersPage","getCommunitySubscribersQueryOptions","getCommunitySubscribersInfiniteQueryOptions","getAccountNotificationsInfiniteQueryOptions","getRewardedCommunitiesQueryOptions","ROLES","roleMap","getCommunityType","type_id","getCommunityPermissions","communityType","userRole","subscribed","canPost","canComment","isModerator","getNotificationsUnreadCountQueryOptions","getNotificationsInfiniteQueryOptions","NotificationFilter","NotifyTypes","ALL_NOTIFY_TYPES","NotificationViewType","getNotificationsSettingsQueryOptions","initialMuted","getAnnouncementsQueryOptions","getSpotlightsQueryOptions","_accessToken","markNotificationRead","isInfiniteData","useMarkNotificationsRead","previousData","updatedData","unreadKey","currentUnread","unreadCount","useSetLastRead","getProposalQueryOptions","proposal","getProposalsQueryOptions","proposals","expired","getProposalVotesInfiniteQueryOptions","getUserProposalVotesQueryOptions","vote","useProposalVote","useProposalCreate","getVestingDelegationsQueryOptions","fetchLimit","getAccountDelegationsQueryOptions","getVestingDelegationExpirationsQueryOptions","getConversionRequestsQueryOptions","getCollateralizedConversionRequestsQueryOptions","getSavingsWithdrawFromQueryOptions","getWithdrawRoutesQueryOptions","getOpenOrdersQueryOptions","getOutgoingRcDelegationsInfiniteQueryOptions","delegations","delegation","getIncomingRcQueryOptions","rawVestsToAsset","padded","toReceivedVestingShares","getReceivedVestingSharesQueryOptions","getRecurrentTransfersQueryOptions","normalizeString","trimmed","normalizeNumber","direct","parseToken","rawToken","extractTokens","record","resolveUsername","getPortfolioQueryOptions","getHiveAssetGeneralInfoQueryOptions","marketTicker","marketPrice","liquidBalance","savingsBalance","getHbdAssetGeneralInfoQueryOptions","price","getAPR","currentInflationRate","totalVestingFunds","getHivePowerAssetGeneralInfoQueryOptions","delegatedVests","receivedVests","withdrawRateVests","remainingToWithdrawVests","nextWithdrawalVests","hpBalance","outgoingDelegationsHp","incomingDelegationsHp","pendingPowerDownHp","nextPowerDownHp","totalBalance","availableHp","HIVE_ACCOUNT_OPERATION_GROUPS","HIVE_OPERATION_LIST","operationOrders","HIVE_OPERATION_ORDERS","HIVE_OPERATION_NAME_BY_ID","isHiveOperationName","resolveHiveOperationFilters","rawValues","hasAll","uniqueValues","operationIds","filterArgs","collectRequestedOperations","getNextAccountHistoryPageParam","oldest","resolveAccountHistoryLimit","getHiveAssetTransactionsQueryOptions","requestedOperations","pages","pageParams","getHbdAssetTransactionsQueryOptions","getHivePowerAssetTransactionsQueryOptions","userSelectedOperations","hasAllFilter","formatDate","pad","subtractSeconds","getHiveAssetMetricQueryOptions","hive","non_hive","open","_","__","prevStartDate","getHiveAssetWithdrawalRoutesQueryOptions","getHivePowerDelegatesInfiniteQueryOptions","getHivePowerDelegatingsQueryOptions","getOrderBookQueryOptions","getMarketStatisticsQueryOptions","getMarketHistoryQueryOptions","getHiveHbdStatsQueryOptions","oneDayAgo","dayChange","getMarketDataQueryOptions","getTradeHistoryQueryOptions","getFeedHistoryQueryOptions","getCurrentMedianHistoryPriceQueryOptions","useLimitOrderCreate","useLimitOrderCancel","getMarketData","getCurrencyRate","cur","getCurrencyTokenRate","getCurrencyRates","getHivePrice","ENGINE_RPC_HEADERS","engineRpc","engineRpcSafe","getHiveEngineOrderBook","baseParams","buy","sell","sortByPriceDesc","left","sortByPriceAsc","right","getHiveEngineTradeHistory","getHiveEngineOpenOrders","buyRaw","sellRaw","formatTotal","quantity","getHiveEngineMetrics","symbolQuery","getHiveEngineTokensMarket","getHiveEngineTokensBalances","getHiveEngineTokensMetadata","getHiveEngineTokenTransactions","getHiveEngineTokenMetrics","interval","getHiveEngineUnclaimedRewards","getHiveEngineTokensBalancesQueryOptions","getHiveEngineTokensMarketQueryOptions","getHiveEngineTokensMetadataQueryOptions","getHiveEngineTokenTransactionsQueryOptions","_allPages","lastPageParam","_firstPage","firstPageParam","getHiveEngineTokensMetricsQueryOptions","getHiveEngineUnclaimedRewardsQueryOptions","pending_token","getAllHiveEngineTokensQueryOptions","formattedNumber","fractionDigits","out","av","HiveEngineToken","getHiveEngineBalancesWithUsdQueryOptions","allTokens","balances","t","pricePerHive","providedMetrics","unpricedSymbols","balance","metric","tokenMetadata","lastPrice","balanceAmount","usdValue","getHiveEngineTokenGeneralInfoQueryOptions","hiveQuery","hiveData","metadataList","balanceList","marketList","stakedBalance","unstakingBalance","getPointsQueryOptions","pointsResponse","points","transactionsResponse","transactions","getPointsAssetGeneralInfoQueryOptions","getPointsAssetTransactionsQueryOptions","created","getAccountWalletAssetInfoQueryOptions","fetchQuery","qo","convertPriceToUserCurrency","assetInfo","conversionRate","portfolioQuery","getPortfolioAssetInfo","assetItem","extraItem","dataKey","numValue","portfolioAssetInfo","converted","AssetOperation","useTransfer","useTransferPoint","useDelegateVestingShares","useSetWithdrawVestingRoute","useTransferEngineToken","useTransferToSavings","useTransferFromSavings","useTransferToVesting","useWithdrawVesting","useConvert","useClaimInterest","CLAIM_REWARDS_INVALIDATION_DELAY_MS","pendingInvalidationTimers","useClaimRewards","timerKey","keysToInvalidate","existingTimer","rejected","useDelegateEngineToken","useUndelegateEngineToken","useStakeEngineToken","useUnstakeEngineToken","useClaimEngineRewards","useEngineMarketOrder","buildHiveOperations","buildEngineOperations","getWalletOperationAuthority","useWalletOperation","hiveOps","engineOps","useDelegateRc","useWitnessVote","useWitnessProxy","mapRestWitness","w","getWitnessesInfiniteQueryOptions","getWitnessVotersPageQueryOptions","getWitnessVoterCountQueryOptions","PointTransactionType","claimPointsRequest","useClaimPoints","author_re","type_re","category_re","tag_re","SearchType","MAX_SEARCH_TAGS","MAX_SEARCH_QUERY_LENGTH","firstToken","normalizeSearchAuthor","normalizeSearchCategory","normalizeSearchTags","seen","buildSearchQuery","search","category","normalizedSearch","normalizedCategory","normalizedTags","part","SearchQuery","_query","re","matches","isSearchResponse","MAX_RETRIES","isServer","searchRetryPolicy","failureCount","isTransient","searchQueryOptions","scroll_id","getControversialRisingInfiniteQueryOptions","sinceDate","similar","searchPath","SIMILAR_ENTRIES_SINCE_MS","SIMILAR_ENTRIES_TARGET","SIMILAR_ENTRIES_BODY_LIMIT","SIMILAR_ENTRIES_SSR_TIMEOUT_MS","SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS","SIMILAR_ENTRIES_MIN_RENDER","toMltExcerpt","fingerprint","getSimilarEntriesQueryOptions","rawTags","contentKey","collected","seenAuthors","getSearchAccountQueryOptions","getSearchTopicsQueryOptions","getSearchApiInfiniteQueryOptions","getSearchPathQueryOptions","getSupportSettingsRequest","getSupportSettingsQueryOptions","updateSupportSettingsRequest","applySupportSettingsUpdate","useUpdateSupportSettings","getBoostPlusPricesQueryOptions","getRcDelegationPricesQueryOptions","getRcDelegationActiveQueryOptions","responseData","getPromotePriceQueryOptions","getBoostPlusAccountPricesQueryOptions","useBoostPlus","useRcDelegation","hsTokenRenew","BAD_ACTORS_URL","getBadActorsQueryOptions","POLLS_PROTOCOL_VERSION","PollPreferredInterpretation","mapMetaChoicesToPollChoices","metaChoices","choice","normalizePoll","pollChoices","pollVoters","rawStats","choices","voters","getPollQueryOptions","usePollVote","pollTrxId","HIDDEN_POST_RSHARES_THRESHOLD","HIDDEN_POST_MIN_VOTES","LOW_TRUST_REPUTATION_THRESHOLD","isHumanReadable","accountReputation","neg","reputationLevel","INTERNAL_HOSTS","IMAGE_HOSTS","IMAGE_EXT_RE","URL_RE","TRAILING_PUNCT_RE","hostOf","isExternalPromoLink","rawUrl","hasExternalLink","ContentModerationReason","countVotes","isHiddenPost","netRshares","activeVotesLength","isLowTrustSeoPost","reputation","isAuthorMuted","mutedAuthors","getContentModerationReason","NewsletterApiError","NewsletterSendRefusedError","taken","newsletterUrl","parse","subscribeDigestRequest","getDigestSubscriptionsRequest","leaveDigestRequest","unsubscribeAllDigestsRequest","getNewsletterSenderRequest","getNewsletterIssuesRequest","getNewsletterPostsRequest","postSend","request","previewNewsletterSendRequest","sendNewsletterIssueRequest","getDigestSubscriptionsQueryOptions","getNewsletterSenderQueryOptions","getNewsletterIssuesQueryOptions","getNewsletterPostsQueryOptions","useSubscribeDigest","useLeaveDigest","useUnsubscribeAllDigests","usePreviewNewsletterIssue","useSendNewsletterIssue","CURATION_SORTS","CURATION_VIEWS","CURATION_APPS","CURATION_WINDOWS","CURATION_MARK_STATES","CURATION_FLAG_REASONS","isOnAbuseList","flags","isExcludedByFlags","isDmcaCurationPath","maskDmcaCurationRow","masked","maskDmcaCurationPages","changed","pageChanged","ROUTE","CurationApiError","isRecord","hasItems","hasCurators","hasRecommenders","isStatus","SCORECARD_COUNTS","isRecommenderStats","COMMUNITY_RE","SEED_RE","DEFAULT_TRUE","PARAM_ORDER","normalizeCurationParams","toQuery","LOOPBACK_HOSTS","assertCredentialTransport","getJson","postJson","fetchCurationFeedPage","fetchCurationStatus","fetchCurationRoster","fetchCurationRecommendationsPage","fetchCurationRecommenderStats","fetchCurationPost","curationRosterFeedRequest","curationTickRequest","curationRosterListRequest","curationRosterSetRequest","rules","note","curationRosterRetireRequest","curationMarkRequest","snooze_until","lane","curationMarkClearRequest","curationMyMarksRequest","curationCursorRequest","TRX_ID_RE","curationRecommendMetaRequest","trx_id","ua_class","curationDismissRecoRequest","CURATION_FEED_PAGE_SIZE","CURATION_FEED_STALE_MS","dedupePagesBy","keyOf","dedupeCurationPages","selectCurationFeedPages","getCurationFeedInfiniteQueryOptions","getCurationStatusQueryOptions","getCurationRosterQueryOptions","getCurationRosterAdminQueryOptions","CURATION_RECOMMENDATIONS_PAGE_SIZE","getCurationRecommendationsInfiniteQueryOptions","ACCOUNT_RE","PERMLINK_RE","getCurationPostQueryOptions","getCurationRecommenderQueryOptions","normalizeBroadcastTrxId","useCurationRecommend"],"mappings":"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","file":"index.mjs","sourcesContent":["/**\n * @license bytebuffer.ts (c) 2015 Daniel Wirtz \n * Backing buffer: ArrayBuffer, Accessor: DataView\n * Released under the Apache License, Version 2.0\n * see: https://github.com/dcodeIO/bytebuffer.ts for details\n * modified by @xmcl/bytebuffer\n * And customized for hive-tx\n */\n\nconst EMPTY_BUFFER = new ArrayBuffer(0)\n\n// Lazy-init to avoid crashing on runtimes that lack TextEncoder/TextDecoder\n// (notably React Native with Hermes). Falls back to manual UTF-8 encode/decode.\nlet _encoder: { encode(s: string): Uint8Array } | null = null\nlet _decoder: { decode(b: BufferSource): string } | null = null\n\nfunction getEncoder(): { encode(s: string): Uint8Array } {\n if (!_encoder) {\n if (typeof TextEncoder !== 'undefined') {\n _encoder = new TextEncoder()\n } else {\n _encoder = {\n encode(s: string): Uint8Array {\n // Manual UTF-8 encode fallback\n const utf8: number[] = []\n for (let i = 0; i < s.length; i++) {\n let c = s.charCodeAt(i)\n if (c < 0x80) {\n utf8.push(c)\n } else if (c < 0x800) {\n utf8.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f))\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < s.length) {\n const next = s.charCodeAt(++i)\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff)\n utf8.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n } else {\n utf8.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n }\n }\n return new Uint8Array(utf8)\n },\n }\n }\n }\n return _encoder\n}\n\nfunction getDecoder(): { decode(b: BufferSource): string } {\n if (!_decoder) {\n if (typeof TextDecoder !== 'undefined') {\n _decoder = new TextDecoder()\n } else {\n _decoder = {\n decode(b: BufferSource): string {\n const bytes = b instanceof ArrayBuffer ? new Uint8Array(b) : new Uint8Array((b as ArrayBufferView).buffer, (b as ArrayBufferView).byteOffset, (b as ArrayBufferView).byteLength)\n let result = ''\n for (let i = 0; i < bytes.length; ) {\n const byte = bytes[i]\n let codePoint: number\n if (byte < 0x80) { codePoint = byte; i += 1 }\n else if ((byte & 0xe0) === 0xc0) { codePoint = ((byte & 0x1f) << 6) | (bytes[i + 1] & 0x3f); i += 2 }\n else if ((byte & 0xf0) === 0xe0) { codePoint = ((byte & 0x0f) << 12) | ((bytes[i + 1] & 0x3f) << 6) | (bytes[i + 2] & 0x3f); i += 3 }\n else { codePoint = ((byte & 0x07) << 18) | ((bytes[i + 1] & 0x3f) << 12) | ((bytes[i + 2] & 0x3f) << 6) | (bytes[i + 3] & 0x3f); i += 4 }\n if (codePoint <= 0xffff) { result += String.fromCharCode(codePoint) }\n else { codePoint -= 0x10000; result += String.fromCharCode(0xd800 + (codePoint >> 10), 0xdc00 + (codePoint & 0x3ff)) }\n }\n return result\n },\n }\n }\n }\n return _decoder\n}\n\nexport class ByteBuffer {\n static LITTLE_ENDIAN = true\n static BIG_ENDIAN = false\n static DEFAULT_CAPACITY = 16\n static DEFAULT_ENDIAN = ByteBuffer.BIG_ENDIAN\n\n buffer: ArrayBufferLike\n view: DataView\n offset: number\n markedOffset: number\n limit: number\n littleEndian: boolean\n\n constructor(\n capacity: number = ByteBuffer.DEFAULT_CAPACITY,\n littleEndian: boolean = ByteBuffer.DEFAULT_ENDIAN\n ) {\n this.buffer = capacity === 0 ? EMPTY_BUFFER : new ArrayBuffer(capacity)\n this.view = capacity === 0 ? new DataView(EMPTY_BUFFER) : new DataView(this.buffer)\n this.offset = 0\n this.markedOffset = -1\n this.limit = capacity\n this.littleEndian = littleEndian\n }\n\n static allocate(capacity?: number, littleEndian?: boolean): ByteBuffer {\n return new ByteBuffer(capacity, littleEndian)\n }\n\n static concat(\n buffers: Array,\n littleEndian?: boolean\n ): ByteBuffer {\n let capacity = 0\n for (let i = 0; i < buffers.length; ++i) {\n const buf = buffers[i]\n if (buf instanceof ByteBuffer) {\n capacity += buf.limit - buf.offset\n } else if (buf instanceof Uint8Array) {\n capacity += buf.length\n } else if (buf instanceof ArrayBuffer) {\n capacity += buf.byteLength\n } else if (Array.isArray(buf)) {\n capacity += buf.length\n } else {\n throw TypeError('Illegal buffer')\n }\n }\n\n if (capacity === 0) {\n return new ByteBuffer(0, littleEndian)\n }\n\n const bb = new ByteBuffer(capacity, littleEndian)\n const view = new Uint8Array(bb.buffer)\n let offset = 0\n\n for (let i = 0; i < buffers.length; ++i) {\n let buf = buffers[i]\n if (buf instanceof ByteBuffer) {\n view.set(new Uint8Array(buf.buffer, buf.offset, buf.limit - buf.offset), offset)\n offset += buf.limit - buf.offset\n } else if (buf instanceof Uint8Array) {\n view.set(buf, offset)\n offset += buf.length\n } else if (buf instanceof ArrayBuffer) {\n view.set(new Uint8Array(buf), offset)\n offset += buf.byteLength\n } else {\n // Array\n view.set(buf as number[], offset)\n offset += (buf as number[]).length\n }\n }\n\n bb.limit = bb.offset = offset\n bb.offset = 0\n return bb\n }\n\n static wrap(\n buffer: ByteBuffer | ArrayBuffer | Uint8Array | number[],\n littleEndian?: boolean\n ): ByteBuffer {\n if (buffer instanceof ByteBuffer) {\n const bb = buffer.clone()\n bb.markedOffset = -1\n return bb\n }\n\n let bb: ByteBuffer\n if (buffer instanceof Uint8Array) {\n bb = new ByteBuffer(0, littleEndian)\n if (buffer.length > 0) {\n bb.buffer = buffer.buffer\n bb.offset = buffer.byteOffset\n bb.limit = buffer.byteOffset + buffer.byteLength\n bb.view = new DataView(buffer.buffer)\n }\n } else if (buffer instanceof ArrayBuffer) {\n bb = new ByteBuffer(0, littleEndian)\n if (buffer.byteLength > 0) {\n bb.buffer = buffer\n bb.offset = 0\n bb.limit = buffer.byteLength\n bb.view = buffer.byteLength > 0 ? new DataView(buffer) : new DataView(EMPTY_BUFFER)\n }\n } else if (Array.isArray(buffer)) {\n bb = new ByteBuffer(buffer.length, littleEndian)\n bb.limit = buffer.length\n new Uint8Array(bb.buffer).set(buffer)\n } else {\n throw TypeError('Illegal buffer')\n }\n\n return bb\n }\n\n writeBytes(\n source: ByteBuffer | ArrayBuffer | Uint8Array | number[],\n offset?: number\n ): ByteBuffer {\n return this.append(source, offset)\n }\n\n writeInt8(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 1 > this.buffer.byteLength) {\n this.resize(offset + 1)\n }\n\n this.view.setInt8(offset, value)\n\n if (relative) this.offset += 1\n return this\n }\n\n writeByte(value: number, offset?: number): ByteBuffer {\n return this.writeInt8(value, offset)\n }\n\n writeUint8(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 1 > this.buffer.byteLength) {\n this.resize(offset + 1)\n }\n\n this.view.setUint8(offset, value)\n\n if (relative) this.offset += 1\n return this\n }\n\n writeUInt8(value: number, offset?: number): ByteBuffer {\n return this.writeUint8(value, offset)\n }\n\n readUint8(offset?: number): number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getUint8(offset)\n if (relative) this.offset += 1\n return value\n }\n\n readUInt8(offset?: number): number {\n return this.readUint8(offset)\n }\n\n writeInt16(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 2 > this.buffer.byteLength) {\n this.resize(offset + 2)\n }\n\n this.view.setInt16(offset, value, this.littleEndian)\n\n if (relative) this.offset += 2\n return this\n }\n\n writeShort(value: number, offset?: number): ByteBuffer {\n return this.writeInt16(value, offset)\n }\n\n writeUint16(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 2 > this.buffer.byteLength) {\n this.resize(offset + 2)\n }\n\n this.view.setUint16(offset, value, this.littleEndian)\n\n if (relative) this.offset += 2\n return this\n }\n\n writeUInt16(value: number, offset?: number): ByteBuffer {\n return this.writeUint16(value, offset)\n }\n\n writeInt32(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 4 > this.buffer.byteLength) {\n this.resize(offset + 4)\n }\n\n this.view.setInt32(offset, value, this.littleEndian)\n\n if (relative) this.offset += 4\n return this\n }\n\n writeInt(value: number, offset?: number): ByteBuffer {\n return this.writeInt32(value, offset)\n }\n\n writeUint32(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 4 > this.buffer.byteLength) {\n this.resize(offset + 4)\n }\n\n this.view.setUint32(offset, value, this.littleEndian)\n\n if (relative) this.offset += 4\n return this\n }\n\n writeUInt32(value: number, offset?: number): ByteBuffer {\n return this.writeUint32(value, offset)\n }\n\n readUint32(offset?: number): number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getUint32(offset, this.littleEndian)\n if (relative) {\n this.offset += 4\n }\n return value\n }\n\n readUInt32 = this.readUint32\n\n append(source: ByteBuffer | ArrayBuffer | Uint8Array | number[], offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n let src: Uint8Array\n if (source instanceof ByteBuffer) {\n src = new Uint8Array(source.buffer, source.offset, source.limit - source.offset)\n source.offset += src.length\n } else if (source instanceof Uint8Array) {\n src = source\n } else if (source instanceof ArrayBuffer) {\n src = new Uint8Array(source)\n } else {\n src = new Uint8Array(source)\n }\n\n if (src.length <= 0) return this\n\n if (offset + src.length > this.buffer.byteLength) {\n this.resize(offset + src.length)\n }\n\n new Uint8Array(this.buffer).set(src, offset)\n\n if (relative) this.offset += src.length\n return this\n }\n\n clone(copy?: boolean): ByteBuffer {\n const bb = new ByteBuffer(0, this.littleEndian)\n if (copy) {\n bb.buffer = new ArrayBuffer(this.buffer.byteLength)\n new Uint8Array(bb.buffer).set(new Uint8Array(this.buffer))\n bb.view = new DataView(bb.buffer)\n } else {\n bb.buffer = this.buffer\n bb.view = this.view\n }\n bb.offset = this.offset\n bb.markedOffset = this.markedOffset\n bb.limit = this.limit\n return bb\n }\n\n copy(begin?: number, end?: number): ByteBuffer {\n if (begin === undefined) begin = this.offset\n if (end === undefined) end = this.limit\n\n if (begin === end) {\n return new ByteBuffer(0, this.littleEndian)\n }\n\n const capacity = end - begin\n const bb = new ByteBuffer(capacity, this.littleEndian)\n bb.offset = 0\n bb.limit = capacity\n\n new Uint8Array(bb.buffer).set(new Uint8Array(this.buffer).subarray(begin, end), 0)\n return bb\n }\n\n copyTo(\n target: ByteBuffer,\n targetOffset?: number,\n sourceOffset?: number,\n sourceLimit?: number\n ): ByteBuffer {\n const targetRelative = typeof targetOffset === 'undefined'\n const relative = typeof sourceOffset === 'undefined'\n targetOffset = targetRelative ? target.offset : targetOffset!\n sourceOffset = relative ? this.offset : sourceOffset!\n sourceLimit = sourceLimit === undefined ? this.limit : sourceLimit\n\n const len = sourceLimit - sourceOffset\n if (len === 0) return target\n\n target.ensureCapacity(targetOffset + len)\n new Uint8Array(target.buffer).set(\n new Uint8Array(this.buffer).subarray(sourceOffset, sourceLimit),\n targetOffset\n )\n\n if (relative) this.offset += len\n if (targetRelative) target.offset += len\n return this\n }\n\n ensureCapacity(capacity: number): ByteBuffer {\n let current = this.buffer.byteLength\n if (current < capacity) {\n return this.resize((current *= 2) > capacity ? current : capacity)\n }\n return this\n }\n\n flip(): ByteBuffer {\n this.limit = this.offset\n this.offset = 0\n return this\n }\n\n resize(capacity: number): ByteBuffer {\n if (this.buffer.byteLength < capacity) {\n const buffer = new ArrayBuffer(capacity)\n new Uint8Array(buffer).set(new Uint8Array(this.buffer))\n this.buffer = buffer\n this.view = new DataView(buffer)\n }\n return this\n }\n\n skip(length: number): ByteBuffer {\n this.offset += length\n return this\n }\n\n writeInt64(value: number | bigint, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (typeof value === 'number') value = BigInt(value)\n\n if (offset + 8 > this.buffer.byteLength) {\n this.resize(offset + 8)\n }\n\n this.view.setBigInt64(offset, value, this.littleEndian)\n\n if (relative) this.offset += 8\n return this\n }\n\n writeLong(value: number | bigint, offset?: number): ByteBuffer {\n return this.writeInt64(value, offset)\n }\n\n readInt64(offset?: number): bigint {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getBigInt64(offset, this.littleEndian)\n if (relative) this.offset += 8\n return value\n }\n\n readLong(offset?: number): bigint {\n return this.readInt64(offset)\n }\n\n writeUint64(value: number | bigint, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (typeof value === 'number') value = BigInt(value)\n\n if (offset + 8 > this.buffer.byteLength) {\n this.resize(offset + 8)\n }\n\n this.view.setBigUint64(offset, value, this.littleEndian)\n\n if (relative) this.offset += 8\n return this\n }\n\n writeUInt64(value: number | bigint, offset?: number): ByteBuffer {\n return this.writeUint64(value, offset)\n }\n\n readUint64(offset?: number): bigint {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getBigUint64(offset, this.littleEndian)\n if (relative) this.offset += 8\n return value\n }\n\n readUInt64(offset?: number): bigint {\n return this.readUint64(offset)\n }\n\n toBuffer(forceCopy?: boolean): ArrayBufferLike {\n const offset = this.offset\n const limit = this.limit\n if (!forceCopy && offset === 0 && limit === this.buffer.byteLength) {\n return this.buffer\n }\n if (offset === limit) return EMPTY_BUFFER\n return this.buffer.slice(offset, limit)\n }\n\n toArrayBuffer(forceCopy?: boolean): ArrayBufferLike {\n return this.toBuffer(forceCopy)\n }\n\n writeVarint32(value: number, offset?: number): ByteBuffer | number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const size = this.calculateVarint32(value)\n if (offset + size > this.buffer.byteLength) {\n this.resize(offset + size)\n }\n\n value >>>= 0\n while (value >= 0x80) {\n this.view.setUint8(offset++, (value & 0x7f) | 0x80)\n value >>>= 7\n }\n this.view.setUint8(offset++, value)\n\n if (relative) {\n this.offset = offset\n return this\n }\n return size\n }\n\n readVarint32(offset?: number): number | { value: number; length: number } {\n const relative = typeof offset === 'undefined'\n if (typeof offset === 'undefined') {\n offset = this.offset\n }\n let c = 0\n let value = 0 >>> 0\n let b: number\n do {\n b = this.view.getUint8(offset++)\n if (c < 5) {\n value |= (b & 0x7f) << (7 * c)\n }\n ++c\n } while ((b & 0x80) !== 0)\n value |= 0\n\n if (relative) {\n this.offset = offset\n return value\n }\n return { value, length: c }\n }\n\n calculateVarint32(value: number): number {\n value = value >>> 0\n if (value < 1 << 7) return 1\n else if (value < 1 << 14) return 2\n else if (value < 1 << 21) return 3\n else if (value < 1 << 28) return 4\n else return 5\n }\n\n writeVString(str: string, offset?: number): ByteBuffer | number {\n const relative = typeof offset === 'undefined'\n let currentOffset = relative ? this.offset : offset!\n\n const encoded = getEncoder().encode(str)\n const len = encoded.length\n const lenVarintSize = this.calculateVarint32(len)\n\n if (currentOffset + lenVarintSize + len > this.buffer.byteLength) {\n this.resize(currentOffset + lenVarintSize + len)\n }\n\n this.writeVarint32(len, currentOffset)\n currentOffset += lenVarintSize\n\n new Uint8Array(this.buffer).set(encoded, currentOffset)\n currentOffset += len\n\n if (relative) {\n this.offset = currentOffset\n return this\n }\n return currentOffset - (offset || 0)\n }\n\n readVString(offset?: number): string | { string: string; length: number } {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const start = offset\n const lenResult = this.readVarint32(offset) as { value: number; length: number }\n const lenValue = lenResult.value\n const lenLength = lenResult.length\n\n offset += lenLength\n\n // TextDecoder can take Uint8Array view directly\n const str = getDecoder().decode(new Uint8Array(this.buffer as ArrayBuffer, offset, lenValue))\n offset += lenValue\n\n if (relative) {\n this.offset = offset\n return str\n } else {\n return {\n string: str,\n length: offset - start\n }\n }\n }\n\n readUTF8String(length: number, offset?: number): string | { string: string; length: number } {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n // const strBuffer = this.buffer.slice(offset, end)\n // Faster to view if Shared? No, Decoder takes buffer or view.\n // Making a view is cheap.\n // But DataView vs Uint8Array. TextDecoder takes BufferSource (ArrayBuffer or ArrayBufferView).\n const str = getDecoder().decode(new Uint8Array(this.buffer as ArrayBuffer, offset, length))\n\n if (relative) {\n this.offset += length\n return str\n } else {\n return {\n string: str,\n length\n }\n }\n }\n}\n","import type { APIMethods } from './api-types'\n\n/**\n * Unified configuration for Hive blockchain connectivity.\n * This is the single source of truth for node endpoints, timeouts, and chain settings.\n * Mutate this object directly or use ConfigManager.setHiveNodes() for validated updates.\n */\nexport const config = {\n /**\n * Array of Hive API node endpoints for load balancing and failover.\n */\n /*\n * techcoderx.com is deliberately absent: its condenser_api.get_accounts serves\n * account rows with posting_json_metadata stripped to \"\" while balances and\n * reputation are correct. That is a well-formed result, so it passes shape\n * validation and the health tracker keeps it ranked by latency alone.\n *\n * Wallet token visibility is read entirely from profile.tokens[].meta.show in\n * that metadata, so a stripped row reads as \"this user enabled nothing\" and the\n * wallet silently falls back to HIVE/HP/HBD/Points. getAccountFullQueryOptions\n * cross-checks against the hivemind profile and re-reads, but that guard only\n * fires when hivemind reports profile *values* — an account whose metadata is\n * just `tokens` (no name/about/image) has none, so it would slip through.\n * Keeping the node out of the pool removes the dependency on that guard.\n *\n * Note this is RPC-only: the same host serves full metadata over its REST\n * (hafbe) endpoint, so it remains valid in `restNodes`.\n */\n nodes: [\n 'https://api.hive.blog',\n 'https://api.deathwing.me',\n 'https://api.openhive.network',\n 'https://api.syncad.com',\n 'https://rpc.mahdiyari.info',\n ],\n\n /**\n * Array of Hive API node endpoints that support REST APIs.\n * Note: Without the trailing /\n */\n restNodes: [\n 'https://api.hive.blog',\n 'https://rpc.mahdiyari.info',\n 'https://api.syncad.com',\n 'https://hiveapi.actifit.io',\n 'https://api.c0ff33a.uk'\n ],\n\n /**\n * Per-API REST node override. Some APIs are served by only a subset of\n * nodes; list just those capable hosts here so callREST never burns its\n * (small) retry budget on nodes that 404/503 the API, and a cold start\n * hits a capable node immediately. Any API not listed falls back to\n * `restNodes`. The health tracker still orders *within* this list.\n *\n * hivesense: empirically only ~2 public nodes serve /hivesense-api (the\n * other configured nodes 404/503 it; Ecency's own was decommissioned), so\n * pin them — otherwise the health tracker keeps rediscovering incapable\n * nodes each cooldown and cold starts waste attempts.\n */\n restNodesByApi: {\n hivesense: ['https://api.hive.blog', 'https://api.syncad.com']\n } as Partial>,\n\n /**\n * User-Agent sent on server-side (Node) HTTP requests to Hive nodes.\n *\n * Node's built-in fetch (undici) sends a bare `User-Agent: node` when none is\n * set, which is indistinguishable from any random Node script in node/CDN\n * analytics. A descriptive value lets operators tell their own SSR/server\n * traffic apart from anonymous scrapers. Only applied in Node — browsers\n * forbid overriding User-Agent (it is silently dropped) and React Native sets\n * its own native UA, so client and mobile traffic are untouched. Override via\n * `ConfigManager.setUserAgent()` (or `setUserAgent()` from `@ecency/sdk/hive`).\n */\n userAgent: 'ecency-sdk',\n\n /**\n * The Hive blockchain chain ID for transaction signing and verification.\n */\n chain_id: 'beeab0de00000000000000000000000000000000000000000000000000000000',\n\n /**\n * Address prefix used for public key formatting (STM for mainnet).\n */\n address_prefix: 'STM',\n\n /**\n * Timeout in milliseconds for read API calls (get_content, get_accounts, etc.).\n * Kept short so the health tracker can fail over to another node quickly.\n */\n timeout: 5_000,\n\n /**\n * Timeout in milliseconds for broadcast API calls.\n * Longer than read timeout because broadcast_transaction_synchronous waits\n * for block inclusion, which depends on the 3-second block interval and\n * network conditions.\n */\n broadcastTimeout: 15_000,\n\n /**\n * Number of retry attempts for failed API calls before throwing an error.\n * Total attempts = retry + 1. With ~7 nodes in the list, a budget of 5\n * means callRPC iterates through 6 distinct nodes before giving up, so a\n * single sick node (or two) can't surface as an unhandled error to the\n * caller while the rest of the list is healthy.\n */\n retry: 5,\n\n /**\n * Tail-latency resilience for READ calls. Motivation: on a shared public-node\n * pool a node can slow down or throttle *mid-request*; a fixed `timeout` means\n * the caller only notices after the full window, and under SSR concurrency\n * those stalled renders pile up. Two mechanisms, both scoped to reads only\n * (broadcasts never hedge and keep their fixed `broadcastTimeout`):\n *\n * - Adaptive per-attempt timeout (`adaptiveTimeout`, default ON): when a\n * node has a usable latency profile (EWMA), the per-attempt timeout becomes\n * `min(callerTimeout, max(floorMs, factor × EWMA))` — a node running far\n * above its own baseline is abandoned early and failover starts sooner.\n * Never *raises* the caller's timeout; unprofiled nodes keep it unchanged.\n *\n * - Hedged requests (`hedge`, default OFF — opt in via `setResilience`): if\n * the primary attempt is still pending after `max(hedgeDelayFloorMs,\n * hedgeDelayFactor × EWMA)`, a duplicate request is fired at the next\n * healthy untried node and the first success wins (the loser is aborted).\n * A token bucket (`hedgeBucketCapacity` burst, refilled by\n * `hedgeRefillPerSuccess` per un-hedged success) caps hedges to roughly\n * `hedgeRefillPerSuccess` of traffic, so only the slow tail hedges — and\n * under pool-wide slowness the bucket drains and hedging auto-disables\n * instead of amplifying load into public-node rate limits.\n */\n resilience: {\n adaptiveTimeout: true,\n adaptiveTimeoutFloorMs: 2_000,\n adaptiveTimeoutFactor: 4,\n hedge: false,\n hedgeDelayFloorMs: 750,\n hedgeDelayFactor: 2,\n hedgeBucketCapacity: 10,\n hedgeRefillPerSuccess: 0.1,\n /**\n * Wall-clock budget for one read call across ALL failover attempts, as a\n * multiple of the per-attempt timeout: no NEW attempt starts past\n * `totalBudgetFactor × timeout` (an in-flight attempt still finishes its\n * own window). Bounds the pathological pool-wide-slowness walk — without\n * it a read could hold its caller for (retry+1) × timeout ≈ 30s, which\n * under SSR concurrency is a memory pile-up, the exact incident this\n * feature exists for. Applies to reads only (callRPC / callREST);\n * broadcasts keep their try-each-node-once semantics.\n */\n totalBudgetFactor: 2\n }\n}\n\n/** Shape of the `config.resilience` bag (see its doc comment). */\nexport type ResilienceOptions = typeof config.resilience\n\n/**\n * Server-side read-through proxy for RPC reads (see `setServerRpcProxy`).\n * `methods` is the allowlist the proxy serves; a read outside it goes straight\n * to the node pool as before.\n */\nexport interface ServerRpcProxyOptions {\n /** Absolute URL of the proxy endpoint (POST `{api, method, params}`). */\n url: string\n /** Headers sent with every proxy call (the shared internal secret). */\n headers: Record\n /** Per-call timeout in ms; on expiry the read falls back to the node pool. */\n timeoutMs: number\n /** Fully qualified method names (`bridge.get_post`) the proxy may answer;\n * omitted = DEFAULT_SERVER_RPC_PROXY_METHODS. An empty list is ignored. */\n methods?: string[]\n /**\n * After this many consecutive proxy misses the proxy is skipped for\n * `cooldownMs`, so a proxy that is down costs one failed call per cooldown\n * window rather than one per read. Default 3 / 10s. A served call resets it.\n */\n failureThreshold?: number\n cooldownMs?: number\n}\n\n/** Default allowlist: the reads a server render makes and the proxy caches. */\nexport const DEFAULT_SERVER_RPC_PROXY_METHODS: readonly string[] = [\n 'bridge.get_ranked_posts',\n 'bridge.get_account_posts',\n 'bridge.get_post',\n 'bridge.get_discussion',\n 'bridge.get_profile',\n 'bridge.get_profiles',\n 'bridge.get_community',\n 'bridge.list_communities',\n 'condenser_api.get_accounts',\n 'condenser_api.get_content',\n 'condenser_api.get_dynamic_global_properties',\n 'condenser_api.get_trending_tags'\n]\n\n/**\n * Active proxy configuration, or null (the default: every read goes to the node\n * pool). Lives outside `config` so the browser bundle never carries it; it is\n * only ever consulted under Node.\n */\nexport interface ServerRpcProxyState extends Required {\n methodSet: Set\n}\n\nexport let serverRpcProxy: ServerRpcProxyState | null = null\n\n/**\n * Route allowlisted server-side reads through a read-through cache in front\n * of the node pool. One cache per host answers the reads every renderer\n * process used to make on its own; a miss there is one upstream call shared by\n * every concurrent reader. The proxy is an optimization, never a dependency:\n * any failure (non-200, timeout, transport error, a response the caller's\n * validator rejects) falls straight through to the existing node loop, so the\n * worst case is the latency of a failed proxy call on top of what happens\n * today. Has no effect outside Node. Pass null to switch it off.\n */\nexport const setServerRpcProxy = (opts: ServerRpcProxyOptions | null): void => {\n if (opts === null) {\n serverRpcProxy = null\n return\n }\n if (!opts || typeof opts !== 'object') return\n const url = typeof opts.url === 'string' ? opts.url.trim() : ''\n if (!/^https?:\\/\\//i.test(url)) return\n const headers: Record = {}\n if (opts.headers && typeof opts.headers === 'object') {\n for (const [k, v] of Object.entries(opts.headers)) {\n if (typeof v === 'string' && v && !/[\\u0000-\\u001f\\u007f]/.test(v) && !/[\\u0000-\\u001f\\u007f]/.test(k)) {\n headers[k] = v\n }\n }\n }\n const timeoutMs =\n typeof opts.timeoutMs === 'number' && Number.isFinite(opts.timeoutMs) && opts.timeoutMs > 0\n ? opts.timeoutMs\n : 2_000\n const methods =\n opts.methods === undefined\n ? [...DEFAULT_SERVER_RPC_PROXY_METHODS]\n : Array.isArray(opts.methods)\n ? opts.methods.filter((m): m is string => typeof m === 'string' && m.includes('.'))\n : []\n // Nothing to route through the proxy: keep whatever was configured before.\n if (methods.length === 0) return\n const pos = (v: unknown, fallback: number): number =>\n typeof v === 'number' && Number.isFinite(v) && v > 0 ? v : fallback\n serverRpcProxy = {\n url,\n headers,\n timeoutMs,\n methods,\n failureThreshold: Math.floor(pos(opts.failureThreshold, 3)),\n cooldownMs: pos(opts.cooldownMs, 10_000),\n methodSet: new Set(methods)\n }\n}\n\n/**\n * Validated setter for the Hive RPC node list — replaces `config.nodes`.\n * Trims, drops non-http(s) entries, and de-dupes (order-preserving). A no-op\n * if nothing valid remains, so a bad input can't empty the list.\n *\n * Lives here, in the React-free `hive-tx` core, on purpose: it must be\n * reachable from BOTH the full `@ecency/sdk` entry (via\n * `ConfigManager.setHiveNodes`, which delegates here) and the lean\n * `@ecency/sdk/hive` server/CLI entry — without dragging react-query or the\n * DMCA/ReDoS surface of `ConfigManager` into the lean entry. Within a single\n * bundle this mutates the one `config` instance `callRPC` reads; the\n * cross-bundle single-instance guarantee is a separate (build-level) concern.\n */\n/**\n * Trim, drop non-string / non-http(s), and de-dupe (order-preserving) a node\n * list. Shared by `setNodes` and the REST-node setters below so all three\n * normalize identically.\n */\nconst sanitizeNodeList = (nodes: unknown): string[] =>\n Array.isArray(nodes)\n ? [\n ...new Set(\n nodes\n .filter((n): n is string => typeof n === 'string')\n // Trim, then strip trailing slashes so REST paths concatenate cleanly:\n // `callREST` builds `node + '/status-api'`, and a `https://host/` node would\n // otherwise yield `https://host//status-api`, which several HAF nodes 404.\n // De-dupe AFTER normalizing so `host` and `host/` collapse to one entry.\n .map((n) => n.trim().replace(/\\/+$/, ''))\n .filter((n) => n.length > 0 && /^https?:\\/\\/.+/.test(n))\n )\n ]\n : []\n\nexport const setNodes = (nodes: string[]): void => {\n const validNodes = sanitizeNodeList(nodes)\n if (!validNodes.length) return\n config.nodes = validNodes\n}\n\n/**\n * Validated setter for the REST-API node list — replaces `config.restNodes`.\n * Same shape/guarantees as `setNodes` (trim, drop non-http(s), de-dupe, no-op on\n * empty). Exists because `restNodes` is otherwise baked into the SDK: an app that\n * wants to add/remove a REST host (e.g. drop an own node it is decommissioning, or\n * widen the public pool) previously had to fork + republish the SDK. With this, the\n * REST pool is app-configurable at runtime exactly like the read pool. Lives in the\n * React-free `hive-tx` core so both the full `@ecency/sdk` entry and the lean\n * `@ecency/sdk/hive` entry can reach it.\n */\nexport const setRestNodes = (nodes: string[]): void => {\n const valid = sanitizeNodeList(nodes)\n if (!valid.length) return\n config.restNodes = valid\n}\n\n/**\n * Merge validated per-API REST node overrides into `config.restNodesByApi`.\n * For each entry: a non-empty, valid list pins that API to those hosts; an empty or\n * all-invalid list REMOVES the pin so the API falls back to `restNodes`. Other APIs'\n * existing pins (e.g. the built-in `hivesense`) are preserved. Lets an app pin the\n * APIs it actually uses to known-capable hosts (so `callREST` never burns its small\n * retry budget on a node that 404/503s the API) without an SDK republish.\n */\nexport const setRestNodesByApi = (\n map: Partial>\n): void => {\n if (!map || typeof map !== 'object') return\n const next: Partial> = { ...config.restNodesByApi }\n for (const [api, list] of Object.entries(map)) {\n const valid = sanitizeNodeList(list)\n if (valid.length) {\n next[api as APIMethods] = valid\n } else {\n delete next[api as APIMethods]\n }\n }\n config.restNodesByApi = next\n}\n\n/**\n * Validated setter for the User-Agent sent on server-side (Node) requests.\n * Trims the input and ignores an empty value so a bad input can't blank out the\n * header. Like `setNodes`, it lives in the React-free `hive-tx` core so it is\n * reachable from both the full `@ecency/sdk` entry (via\n * `ConfigManager.setUserAgent`) and the lean `@ecency/sdk/hive` server/CLI entry.\n */\nexport const setUserAgent = (ua: string): void => {\n // Defensive against plain-JS / React Native callers that may pass a non-string\n // despite the `string` type (avoids throwing on `.trim()`).\n if (typeof ua !== 'string') return\n const value = ua.trim()\n // Ignore blank values, and reject control characters (CR, LF, and other\n // C0/DEL controls). An invalid header value would otherwise be stored and make\n // every subsequent fetch throw, and rejecting CR/LF closes a header-injection\n // vector for any caller that builds the UA from untrusted input.\n if (!value || /[\\u0000-\\u001f\\u007f]/.test(value)) return\n config.userAgent = value\n}\n\n/**\n * Validated partial setter for `config.resilience` (adaptive read timeouts +\n * hedged requests — see the field's doc comment). Booleans must be booleans;\n * numeric fields must be finite and positive, with the refill rate additionally\n * capped at 1 so a typo can't turn the tail-hedge into a traffic doubler\n * (refill ≤ 1 ⇒ hedges can never exceed un-hedged successes). Invalid values\n * are ignored field-by-field, so one bad entry can't block the rest. Lives in\n * the React-free `hive-tx` core (like the other setters) so both `@ecency/sdk`\n * (via `ConfigManager.setResilience`) and the lean `@ecency/sdk/hive` entry\n * can reach it.\n */\nexport const setResilience = (opts: Partial): void => {\n if (!opts || typeof opts !== 'object') return\n const r = config.resilience\n const bool = (v: unknown): v is boolean => typeof v === 'boolean'\n const pos = (v: unknown): v is number =>\n typeof v === 'number' && Number.isFinite(v) && v > 0\n if (bool(opts.adaptiveTimeout)) r.adaptiveTimeout = opts.adaptiveTimeout\n // Floor must stay ≥ the tracker's slow-failure recording floor (2s): the\n // safety argument for adaptive timeouts is that an abort at the window IS\n // recorded as a slow sample, growing the EWMA so the window self-corrects\n // upward. A floor below 2s would abort without recording — the window could\n // never converge and a too-tight profile would starve that call forever.\n if (pos(opts.adaptiveTimeoutFloorMs)) {\n r.adaptiveTimeoutFloorMs = Math.max(opts.adaptiveTimeoutFloorMs, 2_000)\n }\n if (pos(opts.adaptiveTimeoutFactor)) r.adaptiveTimeoutFactor = opts.adaptiveTimeoutFactor\n if (bool(opts.hedge)) r.hedge = opts.hedge\n if (pos(opts.hedgeDelayFloorMs)) r.hedgeDelayFloorMs = opts.hedgeDelayFloorMs\n if (pos(opts.hedgeDelayFactor)) r.hedgeDelayFactor = opts.hedgeDelayFactor\n if (pos(opts.hedgeBucketCapacity)) r.hedgeBucketCapacity = opts.hedgeBucketCapacity\n // Refill must stay ≤ 1: at 1 token per success the hedge rate could reach\n // 100% of traffic, defeating the \"tail only\" contract. Cap rather than reject\n // so a caller asking for \"more hedging\" gets the safe maximum.\n if (pos(opts.hedgeRefillPerSuccess)) {\n r.hedgeRefillPerSuccess = Math.min(opts.hedgeRefillPerSuccess, 1)\n }\n // Below 1 the budget could not even cover the configured per-attempt window.\n if (pos(opts.totalBudgetFactor)) {\n r.totalBudgetFactor = Math.max(opts.totalBudgetFactor, 1)\n }\n}\n","import { PublicKey } from './PublicKey'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\nexport class Signature {\n data: Uint8Array\n recovery: number\n private compressed: boolean\n\n /**\n * Creates a new Signature instance.\n * @param data Raw signature data (64 bytes)\n * @param recovery Recovery byte (0-3)\n * @param compressed Whether signature is compressed (default: true)\n */\n constructor(data: Uint8Array, recovery: number, compressed?: boolean) {\n this.data = data\n this.recovery = recovery\n this.compressed = compressed ?? true\n }\n\n /**\n * Creates a Signature from a hex string.\n * @param string 130-character hex string containing signature and recovery data\n * @returns New Signature instance\n * @throws Error if input is not a string\n */\n static from(string: string) {\n if (typeof string === 'string') {\n const temp = hexToBytes(string)\n let recovery = parseInt(bytesToHex(temp.subarray(0, 1)), 16) - 31\n let compressed = true\n // non-compressed signatures have -4\n // https://github.com/bitcoin/bitcoin/blob/95ea54ba089610019a74c1176a2c7c0dba144b1c/src/key.cpp#L257\n if (recovery < 0) {\n compressed = false\n recovery = recovery + 4\n }\n const data = temp.subarray(1)\n return new Signature(data, recovery, compressed)\n } else {\n throw new Error('Expected string for data')\n }\n }\n\n /**\n * Converts signature to 65-byte buffer format.\n * @returns 65-byte buffer containing recovery byte + signature data\n */\n toBuffer() {\n const buffer = new Uint8Array(65).fill(0)\n if (this.compressed) {\n buffer[0] = (this.recovery + 31) & 0xff\n } else {\n buffer[0] = (this.recovery + 27) & 0xff\n }\n buffer.set(this.data, 1)\n return buffer\n }\n\n /**\n * Returns signature as 130-character hex string.\n * @returns Hex string representation of signature\n */\n customToString() {\n return bytesToHex(this.toBuffer())\n }\n\n /**\n * Returns signature as 130-character hex string.\n * Overrides Object.prototype.toString() so that String(sig) and\n * template literals produce the hex representation instead of \"[object Object]\".\n * @returns Hex string representation of signature\n */\n toString() {\n return this.customToString()\n }\n\n /**\n * Recovers the public key from this signature and message.\n * @param message 32-byte message hash (Uint8Array) or 64-character hex string\n * @returns PublicKey that created this signature\n * @throws Error if message is not a valid 32-byte SHA256 hash\n */\n getPublicKey(message: Uint8Array | string): PublicKey {\n if (\n (message instanceof Uint8Array && message.length !== 32) ||\n (typeof message === 'string' && message.length !== 64)\n ) {\n throw new Error('Expected a valid sha256 hash as message')\n }\n if (typeof message === 'string') {\n message = hexToBytes(message)\n }\n const sig = secp256k1.Signature.fromBytes(this.data, 'compact')\n const temp = new secp256k1.Signature(sig.r, sig.s, this.recovery)\n return new PublicKey(temp.recoverPublicKey(message).toBytes())\n }\n}\n","import { ripemd160 } from '@noble/hashes/legacy.js'\nimport bs58 from 'bs58'\nimport { config } from '../config'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { Signature } from './Signature'\n\nexport class PublicKey {\n key: Uint8Array\n prefix: string\n\n /**\n * Creates a new PublicKey instance from raw bytes.\n * @param key Raw public key bytes (33 bytes, compressed format)\n * @param prefix Optional address prefix (defaults to the current config.address_prefix)\n */\n constructor(key: Uint8Array, prefix?: string) {\n this.key = key\n // Read config at call time so runtime mutations to config.address_prefix\n // (e.g. switching to a non-mainnet network) take effect for new instances.\n this.prefix = prefix ?? config.address_prefix\n }\n\n /**\n * Creates a PublicKey from a string representation.\n * The expected prefix is read from config.address_prefix at call time, so\n * consumers can switch networks at runtime.\n * @param wif Public key string (e.g., \"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA\")\n * @returns New PublicKey instance\n * @throws Error if the prefix, length, checksum, or curve point is invalid\n */\n static fromString(wif: string): PublicKey {\n const expectedPrefix = config.address_prefix\n if (typeof wif !== 'string' || wif.length <= expectedPrefix.length) {\n throw new Error('Invalid public key')\n }\n const prefix = wif.slice(0, expectedPrefix.length)\n if (prefix !== expectedPrefix) {\n throw new Error(`Public key must start with ${expectedPrefix}`)\n }\n let buffer: Uint8Array\n try {\n buffer = bs58.decode(wif.slice(expectedPrefix.length))\n } catch {\n throw new Error('Invalid public key encoding')\n }\n // 33-byte compressed secp256k1 point + 4-byte RIPEMD160 checksum\n if (buffer.length !== 37) {\n throw new Error('Invalid public key length')\n }\n const key = buffer.subarray(0, 33)\n const checksum = buffer.subarray(33, 37)\n const expectedChecksum = ripemd160(key).subarray(0, 4)\n if (!isUint8ArrayEqual(checksum, expectedChecksum)) {\n throw new Error('Public key checksum mismatch')\n }\n try {\n secp256k1.Point.fromBytes(key)\n } catch {\n throw new Error('Invalid public key')\n }\n return new PublicKey(key, prefix)\n }\n\n /**\n * Creates a PublicKey from a string or returns the instance if already a PublicKey.\n * @param value Public key string or PublicKey instance\n * @returns New or existing PublicKey instance\n */\n static from(value: string | PublicKey): PublicKey {\n if (value instanceof PublicKey) {\n return value\n } else {\n return PublicKey.fromString(value as string)\n }\n }\n\n /**\n * Verifies a signature against a message hash.\n * @param message 32-byte message hash to verify\n * @param signature Signature to verify\n * @returns True if signature is valid, false otherwise\n */\n verify(message: Uint8Array, signature: Signature | string): boolean {\n if (typeof signature === 'string') {\n signature = Signature.from(signature)\n }\n return secp256k1.verify(signature.data, message, this.key, {\n prehash: false,\n format: 'compact'\n })\n }\n\n /**\n * Returns the public key as a string for storage or transmission.\n * @returns Public key string with prefix (e.g., \"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA\")\n */\n toString(): string {\n return encodePublic(this.key, this.prefix)\n }\n\n /**\n * Returns JSON representation (same as toString()).\n * @returns Public key string\n */\n toJSON(): string {\n return this.toString()\n }\n\n /**\n * Returns a string representation for debugging.\n * @returns Formatted public key string\n */\n inspect(): string {\n return `PublicKey: ${this.toString()}`\n }\n}\n\nconst encodePublic = (key: Uint8Array, prefix: string): string => {\n const checksum = ripemd160(key)\n return prefix + bs58.encode(new Uint8Array([...key, ...checksum.subarray(0, 4)]))\n}\n\nconst isUint8ArrayEqual = (a: Uint8Array, b: Uint8Array): boolean => {\n if (a.byteLength !== b.byteLength) return false\n for (let i = 0; i < a.byteLength; i++) {\n if (a[i] !== b[i]) return false\n }\n return true\n}\n","/** Class representing a hive asset,\n * e.g. `1.000 HIVE` or `12.112233 VESTS`. */\nexport class Asset {\n amount: number\n symbol: string\n\n constructor(amount: number, symbol: string) {\n this.amount = amount\n this.symbol = symbol === 'HIVE' ? 'STEEM' : symbol === 'HBD' ? 'SBD' : symbol\n }\n\n /** Create a new Asset instance from a string, e.g. `42.000 HIVE`. */\n static fromString(string: string, expectedSymbol: string | null = null): Asset {\n const [amountString, symbol] = string.split(' ')\n if (['STEEM', 'VESTS', 'SBD', 'TESTS', 'TBD', 'HIVE', 'HBD'].indexOf(symbol) === -1) {\n throw new Error(`Invalid asset symbol: ${symbol}`)\n }\n if (expectedSymbol && symbol !== expectedSymbol) {\n throw new Error(`Invalid asset, expected symbol: ${expectedSymbol} got: ${symbol}`)\n }\n const amount = Number.parseFloat(amountString)\n if (!Number.isFinite(amount)) {\n throw new Error(`Invalid asset amount: ${amountString}`)\n }\n return new Asset(amount, symbol)\n }\n\n /**\n * Convenience to create new Asset.\n * @param symbol Symbol to use when created from number. Will also be used to validate\n * the asset, throws if the passed value has a different symbol than this.\n */\n static from(value: number | string | Asset, symbol?: string | null): Asset {\n if (value instanceof Asset) {\n if (symbol && value.symbol !== symbol) {\n throw new Error(`Invalid asset, expected symbol: ${symbol} got: ${value.symbol}`)\n }\n return value\n } else if (typeof value === 'number' && Number.isFinite(value)) {\n return new Asset(value, symbol || 'STEEM')\n } else if (typeof value === 'string') {\n return Asset.fromString(value, symbol)\n } else {\n throw new Error(`Invalid asset '${String(value)}'`)\n }\n }\n\n // We convert HIVE & HBD strings to STEEM & SBD because the serialization should be based on STEEM & SBD\n\n /** Return asset precision. */\n getPrecision() {\n switch (this.symbol) {\n case 'TESTS':\n case 'TBD':\n case 'STEEM':\n case 'SBD':\n case 'HBD':\n case 'HIVE':\n return 3\n case 'VESTS':\n return 6\n default:\n return 3\n }\n }\n\n /** Return a string representation of this asset, e.g. `42.000 HIVE`. */\n toString() {\n return `${this.amount.toFixed(this.getPrecision())} ${this.symbol}`\n }\n\n toJSON() {\n return this.toString()\n }\n}\n","import { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\n/** Buffer wrapper that serializes to a hex-encoded string. */\nexport class HexBuffer {\n buffer: Uint8Array\n /** Convenience to create a new HexBuffer, does not copy data if value passed is already a buffer. */\n static from(value: string | Uint8Array | HexBuffer) {\n if (value instanceof HexBuffer) {\n return value\n } else if (value instanceof Uint8Array) {\n return new HexBuffer(value)\n } else if (typeof value === 'string') {\n return new HexBuffer(hexToBytes(value))\n } else {\n return new HexBuffer(new Uint8Array(value))\n }\n }\n\n constructor(buffer: Uint8Array) {\n this.buffer = buffer\n }\n\n toString() {\n return bytesToHex(this.buffer)\n }\n\n toJSON() {\n return this.toString()\n }\n}\n","import { PublicKey } from './PublicKey'\nimport { Asset } from './Asset'\nimport { HexBuffer } from './HexBuffer'\nimport { ByteBuffer } from './ByteBuffer'\nimport { Operation } from '../types'\n\n// Operation ID constants for better maintainability\nconst OPERATION_IDS = {\n vote: 0,\n comment: 1,\n transfer: 2,\n transfer_to_vesting: 3,\n withdraw_vesting: 4,\n limit_order_create: 5,\n limit_order_cancel: 6,\n feed_publish: 7,\n convert: 8,\n account_create: 9,\n account_update: 10,\n witness_update: 11,\n account_witness_vote: 12,\n account_witness_proxy: 13,\n // pow: 14,\n custom: 15,\n // report_over_production: 16,\n delete_comment: 17,\n custom_json: 18,\n comment_options: 19,\n set_withdraw_vesting_route: 20,\n limit_order_create2: 21,\n claim_account: 22,\n create_claimed_account: 23,\n request_account_recovery: 24,\n recover_account: 25,\n change_recovery_account: 26,\n escrow_transfer: 27,\n escrow_dispute: 28,\n escrow_release: 29,\n // pow2: 30,\n escrow_approve: 31,\n transfer_to_savings: 32,\n transfer_from_savings: 33,\n cancel_transfer_from_savings: 34,\n // custom_binary: 35,\n decline_voting_rights: 36,\n reset_account: 37,\n set_reset_account: 38,\n claim_reward_balance: 39,\n delegate_vesting_shares: 40,\n account_create_with_delegation: 41,\n witness_set_properties: 42,\n account_update2: 43,\n create_proposal: 44,\n update_proposal_votes: 45,\n remove_proposal: 46,\n update_proposal: 47,\n collateralized_convert: 48,\n recurrent_transfer: 49\n} as const\n\ntype OperationId = (typeof OPERATION_IDS)[keyof typeof OPERATION_IDS]\n\nconst VoidSerializer = () => {\n throw new Error('Void can not be serialized')\n}\nconst StringSerializer = (buffer: ByteBuffer, data: string) => {\n buffer.writeVString(data)\n}\n\nconst Int16Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeInt16(data)\n}\n\nconst Int64Serializer = (buffer: ByteBuffer, data: number | bigint) => {\n buffer.writeInt64(data)\n}\n\nconst UInt8Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint8(data)\n}\n\nconst UInt16Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint16(data)\n}\n\nconst UInt32Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint32(data)\n}\n\nconst UInt64Serializer = (buffer: ByteBuffer, data: number | bigint) => {\n buffer.writeUint64(data)\n}\n\nconst BooleanSerializer = (buffer: ByteBuffer, data: number | boolean) => {\n buffer.writeByte(data ? 1 : 0)\n}\n\nconst StaticVariantSerializer = (itemSerializers: any) => {\n // return (buffer: ByteBuffer, data: any[]) => {\n // let id = data[0]\n // const item = data[1]\n // // id was/is supposed to be 0 or integer here but seems to have been changed in e.g. comment_options\n // // extensions: [\n // // [\n // // \"comment_payout_beneficiaries\",\n // // {\n // // \"beneficiaries\": [\n // // {\n // // \"account\": \"vimm\",\n // // \"weight\": 1000\n // // }\n // // ]\n // // }\n // // ]\n // // ]\n // // Keep it here just in case\n // // https://gitlab.syncad.com/hive/hive/-/issues/722\n // // \"comment_payout_beneficiaries\" was 0 and at some point it got changed\n // // It should still be serialized as a 0 or an integer\n // // Now the question is, always 0? will need an example transaction to prove otherwise\n // if (typeof id === 'string') {\n // if (id === 'update_proposal_end_date') {\n // id = 1\n // } else {\n // id = 0\n // }\n // }\n // buffer.writeVarint32(id)\n // itemSerializers[id](buffer, item)\n return (buffer: ByteBuffer, data: any) => {\n const [id, item] = data\n buffer.writeVarint32(id)\n itemSerializers[id](buffer, item)\n }\n}\n\n/**\n * Serialize asset.\n * @note This looses precision for amounts larger than 2^53-1/10^precision.\n * Should not be a problem in real-word usage.\n */\nconst AssetSerializer = (buffer: ByteBuffer, data: string | Asset) => {\n const asset = Asset.from(data)\n const precision = asset.getPrecision()\n buffer.writeInt64(Math.round(asset.amount * Math.pow(10, precision)))\n buffer.writeUint8(precision)\n for (let i = 0; i < 7; i++) {\n buffer.writeUint8(asset.symbol.charCodeAt(i) || 0)\n }\n}\n\nconst DateSerializer = (buffer: ByteBuffer, data: string) => {\n buffer.writeUint32(Math.floor(new Date(data + 'Z').getTime() / 1000))\n}\n\nconst PublicKeySerializer = (buffer: ByteBuffer, data: string | PublicKey) => {\n if (\n data === null ||\n (typeof data === 'string' && data.slice(-39) === '1111111111111111111111111111111114T1Anm')\n ) {\n buffer.append(new Uint8Array(33).fill(0))\n } else {\n buffer.append(PublicKey.from(data).key)\n }\n}\n\nconst BinarySerializer = (size: null | number = null) => {\n return (buffer: ByteBuffer, data: string | Uint8Array | HexBuffer) => {\n data = HexBuffer.from(data)\n const len = data.buffer.length\n if (size) {\n if (len !== size) {\n throw new Error(`Unable to serialize binary. Expected ${size} bytes, got ${len}`)\n }\n } else {\n buffer.writeVarint32(len)\n }\n buffer.append(data.buffer)\n }\n}\n\nconst VariableBinarySerializer = BinarySerializer()\n\nconst FlatMapSerializer = (keySerializer: any, valueSerializer: any) => {\n return (buffer: ByteBuffer, data: any) => {\n buffer.writeVarint32(data.length)\n for (const [key, value] of data) {\n keySerializer(buffer, key)\n valueSerializer(buffer, value)\n }\n }\n}\n\nconst ArraySerializer = (itemSerializer: any) => {\n return (buffer: ByteBuffer, data: any[]) => {\n buffer.writeVarint32(data.length)\n for (const item of data) {\n itemSerializer(buffer, item)\n }\n }\n}\n\nconst ObjectSerializer = (keySerializers: any) => {\n return (buffer: ByteBuffer, data: any) => {\n for (const [key, serializer] of keySerializers) {\n try {\n serializer(buffer, data[key])\n } catch (error: any) {\n error.message = `${key}: ${error.message}`\n throw error\n }\n }\n }\n}\n\nconst OptionalSerializer = (valueSerializer: any) => {\n return (buffer: ByteBuffer, data: any | undefined) => {\n if (data !== undefined) {\n buffer.writeByte(1)\n valueSerializer(buffer, data)\n } else {\n buffer.writeByte(0)\n }\n }\n}\n\nconst AuthoritySerializer = ObjectSerializer([\n ['weight_threshold', UInt32Serializer],\n ['account_auths', FlatMapSerializer(StringSerializer, UInt16Serializer)],\n ['key_auths', FlatMapSerializer(PublicKeySerializer, UInt16Serializer)]\n])\n\nconst BeneficiarySerializer = ObjectSerializer([\n ['account', StringSerializer],\n ['weight', UInt16Serializer]\n])\n\nconst PriceSerializer = ObjectSerializer([\n ['base', AssetSerializer],\n ['quote', AssetSerializer]\n])\n\n// const SignedBlockHeaderSerializer = ObjectSerializer([\n// ['previous', BinarySerializer(20)],\n// ['timestamp', DateSerializer],\n// ['witness', StringSerializer],\n// ['transaction_merkle_root', BinarySerializer(20)],\n// ['extensions', ArraySerializer(VoidSerializer)],\n// ['witness_signature', BinarySerializer(65)]\n// ])\n\nconst ChainPropertiesSerializer = ObjectSerializer([\n ['account_creation_fee', AssetSerializer],\n ['maximum_block_size', UInt32Serializer],\n ['hbd_interest_rate', UInt16Serializer]\n])\n\nconst OperationDataSerializer = (operationId: OperationId, definitions: any) => {\n const objectSerializer = ObjectSerializer(definitions)\n return (buffer: ByteBuffer, data: any) => {\n buffer.writeVarint32(operationId)\n objectSerializer(buffer, data)\n }\n}\n\nconst OperationSerializers: Record> = {}\n\nOperationSerializers.account_create = OperationDataSerializer(OPERATION_IDS.account_create, [\n ['fee', AssetSerializer],\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.account_create_with_delegation = OperationDataSerializer(\n OPERATION_IDS.account_create_with_delegation,\n [\n ['fee', AssetSerializer],\n ['delegation', AssetSerializer],\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.account_update = OperationDataSerializer(OPERATION_IDS.account_update, [\n ['account', StringSerializer],\n ['owner', OptionalSerializer(AuthoritySerializer)],\n ['active', OptionalSerializer(AuthoritySerializer)],\n ['posting', OptionalSerializer(AuthoritySerializer)],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.account_witness_proxy = OperationDataSerializer(\n OPERATION_IDS.account_witness_proxy,\n [\n ['account', StringSerializer],\n ['proxy', StringSerializer]\n ]\n)\n\nOperationSerializers.account_witness_vote = OperationDataSerializer(\n OPERATION_IDS.account_witness_vote,\n [\n ['account', StringSerializer],\n ['witness', StringSerializer],\n ['approve', BooleanSerializer]\n ]\n)\n\nOperationSerializers.cancel_transfer_from_savings = OperationDataSerializer(\n OPERATION_IDS.cancel_transfer_from_savings,\n [\n ['from', StringSerializer],\n ['request_id', UInt32Serializer]\n ]\n)\n\nOperationSerializers.change_recovery_account = OperationDataSerializer(\n OPERATION_IDS.change_recovery_account,\n [\n ['account_to_recover', StringSerializer],\n ['new_recovery_account', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.claim_account = OperationDataSerializer(OPERATION_IDS.claim_account, [\n ['creator', StringSerializer],\n ['fee', AssetSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.claim_reward_balance = OperationDataSerializer(\n OPERATION_IDS.claim_reward_balance,\n [\n ['account', StringSerializer],\n ['reward_hive', AssetSerializer],\n ['reward_hbd', AssetSerializer],\n ['reward_vests', AssetSerializer]\n ]\n)\n\nOperationSerializers.comment = OperationDataSerializer(OPERATION_IDS.comment, [\n ['parent_author', StringSerializer],\n ['parent_permlink', StringSerializer],\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['title', StringSerializer],\n ['body', StringSerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.comment_options = OperationDataSerializer(OPERATION_IDS.comment_options, [\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['max_accepted_payout', AssetSerializer],\n ['percent_hbd', UInt16Serializer],\n ['allow_votes', BooleanSerializer],\n ['allow_curation_rewards', BooleanSerializer],\n [\n 'extensions',\n ArraySerializer(\n StaticVariantSerializer([\n ObjectSerializer([['beneficiaries', ArraySerializer(BeneficiarySerializer)]])\n ])\n )\n ]\n])\n\nOperationSerializers.convert = OperationDataSerializer(OPERATION_IDS.convert, [\n ['owner', StringSerializer],\n ['requestid', UInt32Serializer],\n ['amount', AssetSerializer]\n])\n\nOperationSerializers.create_claimed_account = OperationDataSerializer(\n OPERATION_IDS.create_claimed_account,\n [\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.custom = OperationDataSerializer(OPERATION_IDS.custom, [\n ['required_auths', ArraySerializer(StringSerializer)],\n ['id', UInt16Serializer],\n ['data', VariableBinarySerializer]\n])\n\n// Not used on chain\n// OperationSerializers.custom_binary = OperationDataSerializer(OPERATION_IDS.custom_binary, [\n// ['required_owner_auths', ArraySerializer(StringSerializer)],\n// ['required_active_auths', ArraySerializer(StringSerializer)],\n// ['required_posting_auths', ArraySerializer(StringSerializer)],\n// ['required_auths', ArraySerializer(AuthoritySerializer)],\n// ['id', StringSerializer],\n// ['data', VariableBinarySerializer]\n// ])\n\nOperationSerializers.custom_json = OperationDataSerializer(OPERATION_IDS.custom_json, [\n ['required_auths', ArraySerializer(StringSerializer)],\n ['required_posting_auths', ArraySerializer(StringSerializer)],\n ['id', StringSerializer],\n ['json', StringSerializer]\n])\n\nOperationSerializers.decline_voting_rights = OperationDataSerializer(\n OPERATION_IDS.decline_voting_rights,\n [\n ['account', StringSerializer],\n ['decline', BooleanSerializer]\n ]\n)\n\nOperationSerializers.delegate_vesting_shares = OperationDataSerializer(\n OPERATION_IDS.delegate_vesting_shares,\n [\n ['delegator', StringSerializer],\n ['delegatee', StringSerializer],\n ['vesting_shares', AssetSerializer]\n ]\n)\n\nOperationSerializers.delete_comment = OperationDataSerializer(OPERATION_IDS.delete_comment, [\n ['author', StringSerializer],\n ['permlink', StringSerializer]\n])\n\nOperationSerializers.escrow_approve = OperationDataSerializer(OPERATION_IDS.escrow_approve, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['escrow_id', UInt32Serializer],\n ['approve', BooleanSerializer]\n])\n\nOperationSerializers.escrow_dispute = OperationDataSerializer(OPERATION_IDS.escrow_dispute, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['escrow_id', UInt32Serializer]\n])\n\nOperationSerializers.escrow_release = OperationDataSerializer(OPERATION_IDS.escrow_release, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['receiver', StringSerializer],\n ['escrow_id', UInt32Serializer],\n ['hbd_amount', AssetSerializer],\n ['hive_amount', AssetSerializer]\n])\n\nOperationSerializers.escrow_transfer = OperationDataSerializer(OPERATION_IDS.escrow_transfer, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['hbd_amount', AssetSerializer],\n ['hive_amount', AssetSerializer],\n ['escrow_id', UInt32Serializer],\n ['agent', StringSerializer],\n ['fee', AssetSerializer],\n ['json_meta', StringSerializer],\n ['ratification_deadline', DateSerializer],\n ['escrow_expiration', DateSerializer]\n])\n\nOperationSerializers.feed_publish = OperationDataSerializer(OPERATION_IDS.feed_publish, [\n ['publisher', StringSerializer],\n ['exchange_rate', PriceSerializer]\n])\n\nOperationSerializers.limit_order_cancel = OperationDataSerializer(\n OPERATION_IDS.limit_order_cancel,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer]\n ]\n)\n\nOperationSerializers.limit_order_create = OperationDataSerializer(\n OPERATION_IDS.limit_order_create,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer],\n ['amount_to_sell', AssetSerializer],\n ['min_to_receive', AssetSerializer],\n ['fill_or_kill', BooleanSerializer],\n ['expiration', DateSerializer]\n ]\n)\n\nOperationSerializers.limit_order_create2 = OperationDataSerializer(\n OPERATION_IDS.limit_order_create2,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer],\n ['amount_to_sell', AssetSerializer],\n ['exchange_rate', PriceSerializer],\n ['fill_or_kill', BooleanSerializer],\n ['expiration', DateSerializer]\n ]\n)\n\nOperationSerializers.recover_account = OperationDataSerializer(OPERATION_IDS.recover_account, [\n ['account_to_recover', StringSerializer],\n ['new_owner_authority', AuthoritySerializer],\n ['recent_owner_authority', AuthoritySerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\n// Not used on chain\n// OperationSerializers.report_over_production = OperationDataSerializer(\n// OPERATION_IDS.report_over_production,\n// [\n// ['reporter', StringSerializer],\n// ['first_block', SignedBlockHeaderSerializer],\n// ['second_block', SignedBlockHeaderSerializer]\n// ]\n// )\n\nOperationSerializers.request_account_recovery = OperationDataSerializer(\n OPERATION_IDS.request_account_recovery,\n [\n ['recovery_account', StringSerializer],\n ['account_to_recover', StringSerializer],\n ['new_owner_authority', AuthoritySerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.reset_account = OperationDataSerializer(OPERATION_IDS.reset_account, [\n ['reset_account', StringSerializer],\n ['account_to_reset', StringSerializer],\n ['new_owner_authority', AuthoritySerializer]\n])\n\nOperationSerializers.set_reset_account = OperationDataSerializer(OPERATION_IDS.set_reset_account, [\n ['account', StringSerializer],\n ['current_reset_account', StringSerializer],\n ['reset_account', StringSerializer]\n])\n\nOperationSerializers.set_withdraw_vesting_route = OperationDataSerializer(\n OPERATION_IDS.set_withdraw_vesting_route,\n [\n ['from_account', StringSerializer],\n ['to_account', StringSerializer],\n ['percent', UInt16Serializer],\n ['auto_vest', BooleanSerializer]\n ]\n)\n\nOperationSerializers.transfer = OperationDataSerializer(OPERATION_IDS.transfer, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n])\n\nOperationSerializers.transfer_from_savings = OperationDataSerializer(\n OPERATION_IDS.transfer_from_savings,\n [\n ['from', StringSerializer],\n ['request_id', UInt32Serializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n ]\n)\n\nOperationSerializers.transfer_to_savings = OperationDataSerializer(\n OPERATION_IDS.transfer_to_savings,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n ]\n)\n\nOperationSerializers.transfer_to_vesting = OperationDataSerializer(\n OPERATION_IDS.transfer_to_vesting,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer]\n ]\n)\n\nOperationSerializers.vote = OperationDataSerializer(OPERATION_IDS.vote, [\n ['voter', StringSerializer],\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['weight', Int16Serializer]\n])\n\nOperationSerializers.withdraw_vesting = OperationDataSerializer(OPERATION_IDS.withdraw_vesting, [\n ['account', StringSerializer],\n ['vesting_shares', AssetSerializer]\n])\n\nOperationSerializers.witness_update = OperationDataSerializer(OPERATION_IDS.witness_update, [\n ['owner', StringSerializer],\n ['url', StringSerializer],\n ['block_signing_key', PublicKeySerializer],\n ['props', ChainPropertiesSerializer],\n ['fee', AssetSerializer]\n])\n\nOperationSerializers.witness_set_properties = OperationDataSerializer(\n OPERATION_IDS.witness_set_properties,\n [\n ['owner', StringSerializer],\n ['props', FlatMapSerializer(StringSerializer, VariableBinarySerializer)],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.account_update2 = OperationDataSerializer(OPERATION_IDS.account_update2, [\n ['account', StringSerializer],\n ['owner', OptionalSerializer(AuthoritySerializer)],\n ['active', OptionalSerializer(AuthoritySerializer)],\n ['posting', OptionalSerializer(AuthoritySerializer)],\n ['memo_key', OptionalSerializer(PublicKeySerializer)],\n ['json_metadata', StringSerializer],\n ['posting_json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.create_proposal = OperationDataSerializer(OPERATION_IDS.create_proposal, [\n ['creator', StringSerializer],\n ['receiver', StringSerializer],\n ['start_date', DateSerializer],\n ['end_date', DateSerializer],\n ['daily_pay', AssetSerializer],\n ['subject', StringSerializer],\n ['permlink', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.update_proposal_votes = OperationDataSerializer(\n OPERATION_IDS.update_proposal_votes,\n [\n ['voter', StringSerializer],\n ['proposal_ids', ArraySerializer(Int64Serializer)],\n ['approve', BooleanSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.remove_proposal = OperationDataSerializer(OPERATION_IDS.remove_proposal, [\n ['proposal_owner', StringSerializer],\n ['proposal_ids', ArraySerializer(Int64Serializer)],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nconst ProposalUpdateSerializer = ObjectSerializer([['end_date', DateSerializer]])\n\nOperationSerializers.update_proposal = OperationDataSerializer(OPERATION_IDS.update_proposal, [\n ['proposal_id', UInt64Serializer],\n ['creator', StringSerializer],\n ['daily_pay', AssetSerializer],\n ['subject', StringSerializer],\n ['permlink', StringSerializer],\n [\n 'extensions',\n ArraySerializer(StaticVariantSerializer([VoidSerializer, ProposalUpdateSerializer]))\n ]\n])\n\nOperationSerializers.collateralized_convert = OperationDataSerializer(\n OPERATION_IDS.collateralized_convert,\n [\n ['owner', StringSerializer],\n ['requestid', UInt32Serializer],\n ['amount', AssetSerializer]\n ]\n)\n\nOperationSerializers.recurrent_transfer = OperationDataSerializer(\n OPERATION_IDS.recurrent_transfer,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer],\n ['recurrence', UInt16Serializer],\n ['executions', UInt16Serializer],\n [\n 'extensions',\n ArraySerializer(\n ObjectSerializer([\n ['type', UInt8Serializer],\n ['value', ObjectSerializer([['pair_id', UInt8Serializer]])]\n ])\n )\n ]\n ]\n)\n\nconst OperationSerializer = (buffer: ByteBuffer, operation: Operation) => {\n const serializer = OperationSerializers[operation[0]]\n if (!serializer) {\n throw new Error(`No serializer for operation: ${operation[0]}`)\n }\n try {\n serializer(buffer, operation[1])\n } catch (error: any) {\n error.message = `${operation[0]}: ${error.message}`\n throw error\n }\n}\n\nconst TransactionSerializer = ObjectSerializer([\n ['ref_block_num', UInt16Serializer],\n ['ref_block_prefix', UInt32Serializer],\n ['expiration', DateSerializer],\n ['operations', ArraySerializer(OperationSerializer)],\n ['extensions', ArraySerializer(StringSerializer)]\n])\n\nconst EncryptedMemoSerializer = ObjectSerializer([\n ['from', PublicKeySerializer],\n ['to', PublicKeySerializer],\n ['nonce', UInt64Serializer],\n ['check', UInt32Serializer],\n ['encrypted', BinarySerializer()]\n])\n\nexport const Serializer = {\n // Array: ArraySerializer,\n Asset: AssetSerializer,\n // Authority: AuthoritySerializer,\n // Binary: BinarySerializer,\n // Boolean: BooleanSerializer,\n // Date: DateSerializer,\n // FlatMap: FlatMapSerializer,\n // Int16: Int16Serializer,\n // Int32: Int32Serializer,\n // Int64: Int64Serializer,\n // Int8: Int8Serializer,\n Memo: EncryptedMemoSerializer,\n // Object: ObjectSerializer,\n // Operation: OperationSerializer,\n // Optional: OptionalSerializer,\n Price: PriceSerializer,\n PublicKey: PublicKeySerializer,\n // StaticVariant: StaticVariantSerializer,\n String: StringSerializer,\n Transaction: TransactionSerializer,\n UInt16: UInt16Serializer,\n UInt32: UInt32Serializer\n // UInt64: UInt64Serializer,\n // UInt8: UInt8Serializer,\n // Void: VoidSerializer\n}\n","export const sleep = (ms: number): Promise => {\n return new Promise((resolve) => setTimeout(resolve, ms))\n}\n","import { config, serverRpcProxy, type ServerRpcProxyState } from '../config'\nimport { CallResponse } from '../types'\nimport type { APIMethods } from '../api-types'\nimport { sleep } from './sleep'\n\n// ── Server identity (User-Agent) ────────────────────────────────────────────\n\n/**\n * True only when running under Node.js (SSR / server / CLI). Computed once.\n *\n * We attach a descriptive `User-Agent` exclusively here because that is the only\n * place it (a) takes effect and (b) is wanted:\n * - Node's undici fetch otherwise sends a bare `User-Agent: node`, which is\n * indistinguishable from any anonymous script in node/CDN analytics.\n * - Browsers treat `User-Agent` as a forbidden header and silently drop any\n * override, so setting it there is pointless (and we avoid the churn).\n * - React Native sets its own native UA (e.g. the mobile app's own string);\n * overriding it would relabel real mobile traffic, so we explicitly exclude\n * it via `navigator.product === 'ReactNative'`.\n */\nconst isNodeRuntime: boolean = (() => {\n try {\n const isReactNative =\n typeof navigator !== 'undefined' && (navigator as any).product === 'ReactNative'\n return (\n !isReactNative &&\n typeof process !== 'undefined' &&\n process.versions != null &&\n process.versions.node != null\n )\n } catch {\n return false\n }\n})()\n\n/**\n * Headers that identify the caller on server-side requests. Returns the\n * configured `User-Agent` only under Node; an empty object everywhere else so\n * browser and React Native requests are left exactly as they were.\n */\nfunction serverIdentityHeaders(): Record {\n return isNodeRuntime ? { 'User-Agent': config.userAgent } : {}\n}\n\n// ── Server-side read-through proxy ──────────────────────────────────────────\n\n/**\n * Counters for the proxy path, readable by a host's diagnostics (the web\n * tier's event-loop monitor prints them). `served` = answered by the proxy,\n * `fallback` = proxy configured and eligible but the read went to the node\n * pool, with the reason.\n */\nexport const rpcProxyStats = {\n served: 0,\n fallback: 0,\n /** Reads that went straight to the nodes because the breaker was open. */\n skipped: 0,\n fallbackByReason: { status: 0, rpcerror: 0, timeout: 0, transport: 0, validate: 0, parse: 0 } as Record\n}\n\n/**\n * `rpcerror` is a 502 tagged `X-Ssr-Cache: RPCERROR`: the proxy reached a node\n * and relayed the node's own error (a tag or post that does not exist, a bad\n * argument). The read still falls back so the caller sees the node's answer\n * unchanged, but the proxy was healthy, so it does not count toward the\n * breaker; the other reasons do.\n */\ntype ProxyMissReason = 'status' | 'rpcerror' | 'timeout' | 'transport' | 'validate' | 'parse'\n\nclass ProxyMiss extends Error {\n constructor(\n public reason: ProxyMissReason,\n message: string\n ) {\n super(message)\n }\n}\n\nconst errorMessage = (e: unknown): string =>\n e instanceof Error ? e.message : typeof e === 'string' ? e : String(e)\n\n// Breaker: consecutive misses open it for the configured cooldown, a served\n// call closes it. Module state, like the health tracker: one per process.\nlet proxyConsecutiveMisses = 0\nlet proxyOpenUntil = 0\n\n/** Test seam: forget breaker state. */\nexport function resetRpcProxyBreaker(): void {\n proxyConsecutiveMisses = 0\n proxyOpenUntil = 0\n}\n\n/**\n * One proxy call for an eligible read. Resolves with the upstream `result` the\n * proxy served, or throws ProxyMiss; the caller then continues with the node\n * loop exactly as if the proxy did not exist. Never throws anything else,\n * except the caller's own abort.\n */\nasync function proxyRpcCall(\n proxy: ServerRpcProxyState,\n method: string,\n params: unknown,\n callerTimeoutMs: number,\n externalSignal: AbortSignal | undefined,\n validate?: (result: unknown) => boolean\n): Promise {\n const dot = method.indexOf('.')\n if (dot <= 0 || dot === method.length - 1) {\n // Unreachable through setServerRpcProxy (it keeps only dotted names), kept\n // so a future allowlist change fails as a miss rather than a malformed call.\n throw new ProxyMiss('transport', `method without an api prefix: ${method}`)\n }\n // Never wait longer for the proxy than the caller would for one node.\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(\n Math.min(proxy.timeoutMs, callerTimeoutMs)\n )\n const { signal, cleanup: cleanupMerge } = mergeSignals(tSignal, externalSignal)\n try {\n let res: Response\n try {\n res = await fetch(proxy.url, {\n method: 'POST',\n body: JSON.stringify({ api: method.slice(0, dot), method: method.slice(dot + 1), params }),\n headers: { 'Content-Type': 'application/json', ...serverIdentityHeaders(), ...proxy.headers },\n signal\n })\n } catch (e: unknown) {\n if (externalSignal?.aborted) throw e\n throw new ProxyMiss(tSignal.aborted ? 'timeout' : 'transport', errorMessage(e))\n }\n if (res.status !== 200) {\n // Release the connection: an unconsumed body pins a pooled socket.\n try {\n await res.body?.cancel()\n } catch {\n // nothing to release\n }\n const relayed = res.status === 502 && (res.headers.get('x-ssr-cache') ?? '').toUpperCase() === 'RPCERROR'\n throw new ProxyMiss(relayed ? 'rpcerror' : 'status', relayed ? 'proxy relayed a node error' : `proxy answered ${res.status}`)\n }\n let result: unknown\n try {\n result = await res.json()\n } catch (e: unknown) {\n if (externalSignal?.aborted) throw e\n throw new ProxyMiss(tSignal.aborted ? 'timeout' : 'parse', errorMessage(e))\n }\n if (validate && !validate(result)) {\n throw new ProxyMiss('validate', 'proxy result rejected by validator')\n }\n return result as T\n } finally {\n cleanupTimeout()\n cleanupMerge()\n }\n}\n\n// ── Error Types ─────────────────────────────────────────────────────────────\n\nexport class RPCError extends Error {\n name = 'RPCError'\n data?: any\n code: number\n stack: undefined = undefined\n constructor(rpcError: { message: string; code: number; data?: any }) {\n super(rpcError.message)\n this.code = rpcError.code\n if ('data' in rpcError) {\n this.data = rpcError.data\n }\n }\n}\n\n/**\n * Transport-level error thrown by jsonRPCCall for HTTP status errors (429, 503).\n * Carries node identity and rate-limit info so callers can record health\n * exactly once without double-counting.\n */\nclass NodeError extends Error {\n node: string\n /** Explicit server `Retry-After` in ms, or 0 when the 429 carried no usable header. */\n rateLimitMs: number\n /** True for an HTTP 429 regardless of whether a `Retry-After` header was present, so\n * a header-less rate limit is still cooled down (with escalating backoff) rather than\n * mis-recorded as a plain transport failure. */\n isRateLimit: boolean\n constructor(\n node: string,\n message: string,\n opts: { rateLimitMs?: number; isRateLimit?: boolean } = {}\n ) {\n super(message)\n this.node = node\n this.rateLimitMs = opts.rateLimitMs ?? 0\n this.isRateLimit = opts.isRateLimit ?? false\n }\n}\n\n/**\n * Parse an HTTP `Retry-After` header to milliseconds. Supports both forms in the\n * spec: `` (e.g. \"120\") and ``. Returns 0 when the header\n * is absent or unparseable (including a non-numeric junk value or a past date) so the\n * caller falls back to escalating backoff instead of a NaN/negative cooldown.\n */\nfunction parseRetryAfterMs(header: string | null): number {\n if (!header) return 0\n const secs = Number(header)\n if (Number.isFinite(secs)) return secs > 0 ? secs * 1000 : 0\n const dateMs = Date.parse(header)\n if (Number.isFinite(dateMs)) {\n const delta = dateMs - Date.now()\n return delta > 0 ? delta : 0\n }\n return 0\n}\n\n/** Errors that indicate the request definitely never reached the server. */\nconst PRE_CONNECTION_ERRORS = ['ECONNREFUSED', 'ENOTFOUND', 'EHOSTUNREACH', 'EAI_AGAIN']\n\n/** Browser fetch network-failure messages — emitted by Chromium/Firefox/Safari\n * when CORS preflight fails, DNS fails, TLS fails, or the response is blocked.\n * These map to scenarios where retrying the same signed broadcast is safe: the\n * request either never reached the node, or its response was blocked but a\n * re-broadcast of the *same* signed tx will be deduped by Hive (same trx_id). */\nconst BROWSER_NETWORK_ERRORS = [\n 'Failed to fetch', // Chromium\n 'NetworkError when attempting to fetch', // Firefox\n 'Load failed', // Safari\n 'fetch failed' // Node 18+ undici / Bun — also covered via cause chain\n]\n\n/**\n * Concatenate the error's surface text + the messages/codes from up to 5\n * levels of nested `cause`. Node.js fetch wraps connection failures as\n * `TypeError('fetch failed')` with the real `code` (ECONNREFUSED, etc.)\n * nested in the cause chain. Browser fetch failures have no cause but\n * carry their identifier in `message`.\n */\nfunction flattenErrorText(e: any): string {\n if (!e) return ''\n const parts: string[] = [String(e.name || ''), String(e.message || ''), String(e.code || '')]\n let cause = e.cause\n for (let depth = 0; cause && depth < 5; depth++) {\n parts.push(String(cause.code || ''), String(cause.message || ''))\n cause = cause.cause\n }\n return parts.join(' ')\n}\n\n/**\n * Decide whether a broadcast attempt can safely be retried on another node.\n *\n * Safe to retry (same signed tx → Hive dedupes by trx_id at the mempool layer):\n * - Pre-connection failures (ECONNREFUSED, ENOTFOUND, etc.) — request never sent.\n * - Browser fetch network failures (CORS block, TLS error, DNS) — TypeError with\n * a well-known message string.\n * - JSON parse failures — node returned an HTML error page (typical for\n * Cloudflare 1033 tunnel-down / 5xx interstitials), so the request never\n * reached the Hive RPC layer.\n * - NodeError (HTTP 429/5xx surfaced from jsonRPCCall) — already known transient.\n *\n * NOT safe to retry:\n * - RPCError — the node accepted the request and the blockchain rejected it.\n * Retrying on another node would either get the same rejection or accept\n * a different one; surface the original error instead.\n */\nfunction isBroadcastSafeToRetry(e: any): boolean {\n if (!e) return false\n if (e instanceof NodeError) return true\n if (e instanceof RPCError) return false\n\n const text = flattenErrorText(e)\n if (PRE_CONNECTION_ERRORS.some((code) => text.includes(code))) return true\n if (BROWSER_NETWORK_ERRORS.some((msg) => text.includes(msg))) return true\n\n // res.json() against an HTML body (Cloudflare/proxy interstitials) throws\n // SyntaxError. The Hive RPC layer never saw the tx, so failover is safe.\n if (e instanceof SyntaxError) return true\n // Some runtimes surface JSON parse errors as plain Error with this text.\n if (/Unexpected token|JSON\\.parse|Unexpected end of JSON/i.test(text)) return true\n\n return false\n}\n\n// ── Node Health Tracker ─────────────────────────────────────────────────────\n\n/** Node-level health state tracked by NodeHealthTracker. */\ninterface NodeHealth {\n /** Global consecutive-failure counter. Resets on success. */\n consecutiveFailures: number\n /** Timestamp of the most recent failure. Used with the 30s cooldown window. */\n lastFailureTime: number\n /** Epoch ms after which the node is no longer rate-limited. */\n rateLimitedUntil: number\n /** Count of consecutive 429s (no intervening success) with no usable Retry-After.\n * Drives escalating backoff; reset by a success or by RATE_LIMIT_STREAK_RESET_MS. */\n rateLimitStreak: number\n /** Epoch ms of the most recent 429. Used to expire the escalation streak. */\n lastRateLimitAt: number\n /** Per-API failure counters. Some nodes disable specific API plugins; tracking\n * per-API lets us deprioritize a node only for the APIs that fail, not globally.\n * `defective` marks a cooldown set by recordDefectiveResponse (payload\n * validation failure) — unlike ordinary strike cooldowns it survives\n * recordSuccess and only expires on its own. */\n apiFailures: Map<\n string,\n { count: number; cooldownUntil: number; lastFailureTime: number; defective?: boolean }\n >\n /** Most recent head_block_number observed for this node. */\n headBlock: number\n /** Epoch ms when the head_block was recorded. Used to expire stale observations. */\n headBlockUpdatedAt: number\n\n // ── Latency tracking (adaptive ordering) ────────────────────────────────\n /** EWMA of observed round-trip ms. Fed by successful calls AND by slow/timeout\n * failures (so a node that returns 200 in 15s, or aborts at the timeout, is\n * ranked on its real slowness — not treated as merely \"healthy\"). `undefined`\n * until the first sample. */\n ewmaLatencyMs?: number\n /** Number of latency samples folded into the EWMA. Gates \"warmup\": below\n * LATENCY_MIN_SAMPLES the node is unproven and keeps its config-order prior. */\n latencySampleCount: number\n /** Epoch ms of the most recent latency sample. Used for usability expiry and to\n * decide when a node is overdue for an exploratory re-probe. */\n latencyUpdatedAt: number\n /** Epoch ms of the most recent exploratory promotion. Single-flight guard so a\n * burst of concurrent orderings doesn't all re-probe the same stale node. */\n lastProbeAt: number\n\n /**\n * Per-profile-key latency (same EWMA/warmup/expiry rules as the global one).\n * The global EWMA mixes cheap calls (get_accounts ~300ms) with heavy ones\n * (get_account_history, bridge.get_discussion — legitimately seconds), so it\n * ranks nodes fine but is the WRONG baseline for per-attempt deadlines: a\n * profile dominated by cheap calls would abort every legitimately-heavy call.\n * Deadlines/hedge delays therefore key on the FULL method for RPC\n * (\"condenser_api.get_account_history\") and api+endpoint template for REST —\n * an API prefix alone still mixes cheap and heavy methods. Ranking keeps the\n * global profile. Bounded: #nodes × #distinct methods called (code-defined,\n * not user input); fully cleared whenever the node's global profile expires\n * (the global clock advances on every sample, so global-stale ⇒ all stale).\n */\n apiLatency: Map\n}\n\n/**\n * JSON-RPC error codes that indicate the node itself is unhealthy, not that the\n * client sent a bad request. These should trigger failover to another node.\n *\n * Background: Hive nodes fronted by HAF/jussi/drone return HTTP 200 with a\n * JSON-RPC error body when a backing service (hivemind, postgrest, etc.) is down.\n * The HTTP layer looks healthy, so failover never triggers — the caller just gets\n * an error and gives up. This function identifies those node-level errors.\n */\nfunction isNodeLevelRPCError(code: number, message: string): boolean {\n // -32603: Internal error — node is having problems\n if (code === -32603) return true\n // -32000 to -32099: Server error range (implementation-defined server errors)\n if (code <= -32000 && code >= -32099) return true\n // -32601: Method not found — node may be missing this API plugin\n if (code === -32601) return true\n // -32602 with node-sick indicators (vs normal \"invalid params\" from bad client input)\n // e.g. \"Unable to parse endpoint data\" from HAF when a backing service is down\n if (code === -32602 && /unable to parse|endpoint data|internal/i.test(message)) return true\n return false\n}\n\n/** Extract the API prefix from a method name like \"rc_api.find_rc_accounts\" -> \"rc_api\". */\nfunction apiOf(method: string): string {\n const dot = method.indexOf('.')\n return dot > 0 ? method.slice(0, dot) : method\n}\n\n// ── Rate-limit (429) backoff constants ───────────────────────────────────────\n/** Base cooldown applied to a 429 with no usable `Retry-After` header. Matches the\n * previous flat default so first-offence behaviour is unchanged. */\nconst RATE_LIMIT_BASE_MS = 10_000\n/** Ceiling for the escalating header-less cooldown. Prevents a node from being\n * parked far longer than a real public node's throttle window. */\nconst RATE_LIMIT_MAX_MS = 60_000\n/** No 429 from a node for this long ⇒ its escalation streak resets to 0, so an\n * occasional throttle hours apart doesn't compound into a long park. */\nconst RATE_LIMIT_STREAK_RESET_MS = 120_000\n\n/** Per-API failure threshold before the node is deprioritized for that API only. */\nconst MAX_API_FAILURES_BEFORE_COOLDOWN = 2\n/** How long a node stays deprioritized for a specific API after repeated failures. */\nconst API_COOLDOWN_MS = 60_000\n/** How long head_block observations remain valid before being treated as unknown. */\nconst HEAD_BLOCK_MAX_AGE_MS = 120_000\n/** Maximum lag (in blocks) before a node is considered stale relative to the best-known head. */\nconst STALE_BLOCK_THRESHOLD = 30\n\n// ── Adaptive latency-ordering constants ──────────────────────────────────────\n/** EWMA smoothing weight for a new latency sample. 0.3 ⇒ ~5–6 samples to converge;\n * absorbs one-off GC/TLS spikes while still reacting to a real regional shift fast. */\nconst LATENCY_EWMA_ALPHA = 0.3\n/** Samples required before a node's latency is trusted for ranking. Below this the\n * node is \"warming\" and ranks at a neutral prior (config order via tiebreak), so a\n * single fluke never reorders the list and cold start == today's behavior. */\nconst LATENCY_MIN_SAMPLES = 3\n/** How long a latency sample stays usable for ranking. Past this a node reverts to\n * warming. Must be > LATENCY_REPROBE_MS so re-probes keep a busy node's profile fresh. */\nconst LATENCY_MAX_AGE_MS = 5 * 60_000\n/** A healthy node not sampled within this window is overdue for an exploratory\n * re-probe (promoted to front of ONE ordering). This is what lets a demoted node\n * climb back when it recovers — and what profiles a node that organic traffic never\n * reaches. 60s ⇒ ~1 probe/node/min worst case = negligible cost. */\nconst LATENCY_REPROBE_MS = 60_000\n/** Neutral score (ms) for an unproven/warming node: optimistic enough to sit ahead\n * of a proven-slow node (so we explore an unknown before hammering a known-slow one)\n * but behind a proven-fast node. Fixed, so a node makes at most ONE rank transition\n * when it crosses LATENCY_MIN_SAMPLES — no churn. */\nconst LATENCY_UNPROVEN_PRIOR_MS = 1_000\n/** A failed call only feeds a latency penalty if it was actually slow (≥ this). Keeps\n * a genuine timeout / slow-5xx (a far-region node case) visible to the ranker while an\n * instant ECONNREFUSED (a *down* node, handled by consecutiveFailures) is NOT mis-read\n * as \"slow\". The penalty value is the *measured* elapsed, never a static constant. */\nconst LATENCY_SLOW_FAILURE_MS = 2_000\n\n/**\n * Latency-ranking tuning, re-exported as a frozen bag so tests assert behaviour\n * against the real numbers instead of mirroring literals that can silently drift.\n * @internal — not part of the package's public API; for the co-located spec only.\n */\nexport const __LATENCY_TUNING__ = Object.freeze({\n EWMA_ALPHA: LATENCY_EWMA_ALPHA,\n MIN_SAMPLES: LATENCY_MIN_SAMPLES,\n MAX_AGE_MS: LATENCY_MAX_AGE_MS,\n REPROBE_MS: LATENCY_REPROBE_MS,\n UNPROVEN_PRIOR_MS: LATENCY_UNPROVEN_PRIOR_MS,\n SLOW_FAILURE_MS: LATENCY_SLOW_FAILURE_MS\n})\n\n/** @internal Exported for testing only. */\nexport class NodeHealthTracker {\n private health = new Map()\n\n private getOrCreate(node: string): NodeHealth {\n let h = this.health.get(node)\n if (!h) {\n h = {\n consecutiveFailures: 0,\n lastFailureTime: 0,\n rateLimitedUntil: 0,\n rateLimitStreak: 0,\n lastRateLimitAt: 0,\n apiFailures: new Map(),\n headBlock: 0,\n headBlockUpdatedAt: 0,\n ewmaLatencyMs: undefined,\n latencySampleCount: 0,\n latencyUpdatedAt: 0,\n // Stamp the probe clock at creation so a brand-new (never-sampled) node is\n // NOT treated as \"overdue for re-probe\" on its very first ordering pass.\n // With lastProbeAt=0 the re-probe gate (touch <= now - LATENCY_REPROBE_MS)\n // fired immediately, so the 2nd+ ordering on a cold worker promoted unproven\n // nodes ahead of the configured order for no measured reason. Seeding it to\n // \"now\" preserves configured order during warmup; a genuinely slow preferred\n // node is still demoted by its EWMA score (not by epoch-zero exploration),\n // and idle nodes are still re-probed once LATENCY_REPROBE_MS has truly elapsed.\n lastProbeAt: Date.now(),\n apiLatency: new Map()\n }\n this.health.set(node, h)\n }\n return h\n }\n\n recordSuccess(node: string, api?: string, durationMs?: number, profileKey?: string): void {\n const h = this.getOrCreate(node)\n h.consecutiveFailures = 0\n // A success means the node recovered — clear the escalation streak so the next\n // throttle starts from the base cooldown. We deliberately do NOT clear an active\n // rateLimitedUntil window here: under concurrency a success from a request that was\n // already in flight can resolve *after* another request recorded a fresh 429\n // Retry-After, and erasing the window would put a just-throttled node back into\n // rotation early. The window expires on its own (short for header-less; the server's\n // value for an explicit Retry-After).\n h.rateLimitStreak = 0\n if (api) {\n // A successful API call clears that API's failure counter — but never an\n // ACTIVE defective-response cooldown: the \"success\" may itself be an\n // unvalidated read from the same lying node (validated calls are the\n // minority of traffic), and re-admitting it early defeats the decisive\n // penalty. That window expires on its own, like rateLimitedUntil above.\n const apiFail = h.apiFailures.get(api)\n if (!apiFail || !(apiFail.defective && apiFail.cooldownUntil > Date.now())) {\n h.apiFailures.delete(api)\n }\n }\n if (typeof durationMs === 'number' && Number.isFinite(durationMs) && durationMs >= 0) {\n // Latency profiles use the finest key available (full method / endpoint\n // template); the API prefix is only a fallback so bare callers still\n // profile SOMETHING. Failure state above stays per-API on purpose.\n this.recordLatency(h, durationMs, profileKey ?? api)\n }\n }\n\n /**\n * Record a *slow* failed call as a latency signal. The failure counters are\n * updated separately (recordFailure/recordError); this only feeds the EWMA so a\n * node that returns 200-but-too-slow, times out, or returns a slow 5xx is ranked\n * on its real slowness. Callers pass the MEASURED elapsed ms and only call this\n * when the call was genuinely slow (≥ LATENCY_SLOW_FAILURE_MS) — an instant\n * connection failure (a *down* node) must NOT look \"slow\".\n */\n recordSlowFailure(node: string, durationMs: number, profileKey?: string): void {\n if (!Number.isFinite(durationMs) || durationMs < LATENCY_SLOW_FAILURE_MS) return\n this.recordLatency(this.getOrCreate(node), durationMs, profileKey)\n }\n\n /**\n * Usable latency profile (EWMA ms), or `undefined` while unproven or stale.\n * With a `profileKey` (full RPC method / REST api+endpoint template),\n * returns that (node, key) profile ONLY — deliberately no fallback to the\n * mixed global profile, because an average dominated by cheap calls is the\n * wrong deadline baseline for a heavy method (that fallback is exactly the\n * \"2s window starves get_account_history\" failure mode). Without a key,\n * returns the global ranking profile. Both follow the same \"profiled and\n * fresh\" gate as the ranker.\n * @internal\n */\n getUsableLatencyMs(node: string, profileKey?: string): number | undefined {\n const h = this.health.get(node)\n if (!h) return undefined\n const now = Date.now()\n if (profileKey !== undefined) {\n const p = h.apiLatency.get(profileKey)\n return p &&\n p.sampleCount >= LATENCY_MIN_SAMPLES &&\n now - p.updatedAt <= LATENCY_MAX_AGE_MS\n ? p.ewmaMs\n : undefined\n }\n return this.isLatencyUsable(h, now) ? h.ewmaLatencyMs : undefined\n }\n\n /**\n * Censored latency sample for a request that was ABORTED because a hedge\n * completed first while it was still in flight. The elapsed-at-abort is a\n * *lower bound* on the true latency, so folding it in can only move the\n * node's EWMA toward the truth, never below it — which is what lets repeated\n * hedge-wins reorder the pool. Deliberately does NOT touch the failure\n * counters or rate-limit state: the node returned no error, it was merely\n * slow, and treating cancellation as failure would flap `isNodeHealthy`.\n * Callers must NOT record this for a primary that already settled on its own\n * (its outcome was recorded normally; a second sample would be fabricated).\n * Bypasses the `recordSlowFailure` 2s floor (a hedge can win well below it).\n * By construction the elapsed is ≥ the hedge delay, so only a degenerate\n * near-zero epsilon needs rejecting — anything under one LAN round trip is\n * noise, not a latency measurement.\n * @internal\n */\n recordCensoredLatency(node: string, elapsedMs: number, profileKey?: string): void {\n if (!Number.isFinite(elapsedMs) || elapsedMs < 50) return\n this.recordLatency(this.getOrCreate(node), elapsedMs, profileKey)\n }\n\n /**\n * Fold a latency sample into the node's global EWMA (warmup + usability\n * bookkeeping) and, when a profile key is given, into that (node, key)\n * profile — the global one ranks nodes, the keyed one calibrates deadlines.\n */\n private recordLatency(h: NodeHealth, durationMs: number, profileKey?: string): void {\n const now = Date.now()\n // A profile older than the usable window starts fresh, so an idled process\n // re-learns from scratch rather than ranking on hour-old data. Every keyed\n // profile shares this clock (each sample updates both), so global-stale\n // implies every keyed profile is stale too — clear the map rather than\n // leave never-again-read tombstone entries for the life of the process.\n if (h.latencyUpdatedAt > 0 && now - h.latencyUpdatedAt > LATENCY_MAX_AGE_MS) {\n h.ewmaLatencyMs = undefined\n h.latencySampleCount = 0\n h.apiLatency.clear()\n }\n h.ewmaLatencyMs =\n h.ewmaLatencyMs === undefined\n ? durationMs\n : LATENCY_EWMA_ALPHA * durationMs + (1 - LATENCY_EWMA_ALPHA) * h.ewmaLatencyMs\n h.latencySampleCount++\n h.latencyUpdatedAt = now\n\n if (profileKey !== undefined) {\n const p = h.apiLatency.get(profileKey)\n if (!p || now - p.updatedAt > LATENCY_MAX_AGE_MS) {\n h.apiLatency.set(profileKey, { ewmaMs: durationMs, sampleCount: 1, updatedAt: now })\n } else {\n p.ewmaMs = LATENCY_EWMA_ALPHA * durationMs + (1 - LATENCY_EWMA_ALPHA) * p.ewmaMs\n p.sampleCount++\n p.updatedAt = now\n }\n }\n }\n\n recordFailure(node: string, api?: string): void {\n const h = this.getOrCreate(node)\n if (api) {\n // API-specific failure: only update the per-API tracker.\n // This prevents e.g. 3 rc_api failures from marking the node\n // globally unhealthy for condenser_api too.\n const now = Date.now()\n const existing: {\n count: number\n cooldownUntil: number\n lastFailureTime: number\n defective?: boolean\n } = h.apiFailures.get(api) ?? { count: 0, cooldownUntil: 0, lastFailureTime: 0 }\n // Reset counter if previous cooldown expired OR last failure was >30s ago\n // (avoids sticky penalties from sparse failures hours apart)\n if (\n (existing.cooldownUntil > 0 && existing.cooldownUntil <= now) ||\n (existing.lastFailureTime > 0 && now - existing.lastFailureTime > 30_000)\n ) {\n existing.count = 0\n existing.cooldownUntil = 0\n }\n existing.count++\n existing.lastFailureTime = now\n if (existing.count >= MAX_API_FAILURES_BEFORE_COOLDOWN) {\n existing.cooldownUntil = now + API_COOLDOWN_MS\n }\n h.apiFailures.set(api, existing)\n } else {\n // Transport-level failure (no specific API): update global counter\n h.consecutiveFailures++\n h.lastFailureTime = Date.now()\n }\n }\n\n /**\n * A response that failed the caller's payload validation is a decisive,\n * reproducible node fault — the node answered 200 with data the caller KNOWS\n * to be impossible — so it trips the per-API cooldown immediately instead of\n * accruing ordinary strikes. Deliberately its own method rather than\n * recordFailure × N: ordinary strikes are cleared by any success, and a\n * top-ranked lying node keeps recording successes on the unvalidated calls\n * between probes, which would reset its strikes forever and keep it in\n * rotation (observed live). Scope stays per-API: the node may be perfectly\n * healthy for its other API families.\n */\n recordDefectiveResponse(node: string, api: string): void {\n const h = this.getOrCreate(node)\n const now = Date.now()\n const existing: {\n count: number\n cooldownUntil: number\n lastFailureTime: number\n defective?: boolean\n } = h.apiFailures.get(api) ?? { count: 0, cooldownUntil: 0, lastFailureTime: 0 }\n existing.count = Math.max(existing.count + 1, MAX_API_FAILURES_BEFORE_COOLDOWN)\n existing.lastFailureTime = now\n existing.cooldownUntil = now + API_COOLDOWN_MS\n existing.defective = true\n h.apiFailures.set(api, existing)\n }\n\n /**\n * Cool down a rate-limited node. Honors an explicit server `Retry-After`\n * (`retryAfterMs`) exactly — the server told us when to return. With no usable\n * header, applies escalating backoff: BASE, 2×BASE, 4×BASE … capped at\n * RATE_LIMIT_MAX_MS, indexed by the node's consecutive-429 streak (reset by a\n * success or after RATE_LIMIT_STREAK_RESET_MS of quiet). This stops a throttled\n * public node from being re-admitted every 10s and re-hammered under sustained\n * load, which matters most when the fleet's own unlimited node is removed.\n */\n recordRateLimit(node: string, retryAfterMs?: number): void {\n const h = this.getOrCreate(node)\n const now = Date.now()\n // Expire a stale streak so an occasional throttle hours apart doesn't compound.\n if (h.rateLimitStreak > 0 && now - h.lastRateLimitAt > RATE_LIMIT_STREAK_RESET_MS) {\n h.rateLimitStreak = 0\n }\n const hasHeader = typeof retryAfterMs === 'number' && Number.isFinite(retryAfterMs) && retryAfterMs > 0\n const cooldown = hasHeader\n ? retryAfterMs!\n : Math.min(RATE_LIMIT_BASE_MS * 2 ** h.rateLimitStreak, RATE_LIMIT_MAX_MS)\n // Only a header-less 429 advances the escalation streak — an explicit Retry-After is\n // honored exactly and must not compound the header-less backoff (else several\n // Retry-After 429s would push a later header-less 429 straight to the 60s cap).\n if (!hasHeader) h.rateLimitStreak++\n h.lastRateLimitAt = now\n // Explicit Retry-After is honored exactly (the server's current instruction). A\n // header-less cooldown may only move the window FORWARD — it must never truncate a\n // longer window already set, e.g. a node parked for an hour by an explicit\n // Retry-After that is later retried as a last resort and returns a header-less 429\n // must not have its 1h window cut down to the 10s base.\n h.rateLimitedUntil = hasHeader\n ? now + cooldown\n : Math.max(h.rateLimitedUntil, now + cooldown)\n h.consecutiveFailures++\n h.lastFailureTime = now\n }\n\n /** Record an observed head_block_number for this node. */\n recordHeadBlock(node: string, blockNum: number): void {\n if (!blockNum || !Number.isFinite(blockNum)) return\n const h = this.getOrCreate(node)\n h.headBlock = blockNum\n h.headBlockUpdatedAt = Date.now()\n }\n\n /**\n * Consensus head block from recent observations. Uses the median rather than the\n * max to prevent a single bad/misconfigured node from poisoning the reference.\n * A node reporting an inflated head_block won't affect the median unless the\n * majority of nodes agree on that range.\n */\n private consensusHeadBlock(): number {\n const now = Date.now()\n const recent: number[] = []\n for (const h of this.health.values()) {\n if (h.headBlock > 0 && now - h.headBlockUpdatedAt <= HEAD_BLOCK_MAX_AGE_MS) {\n recent.push(h.headBlock)\n }\n }\n if (recent.length < 2) return 0 // Need at least 2 observations to compare\n recent.sort((a, b) => a - b)\n // Median: for even length, use the lower-middle value (conservative)\n return recent[Math.floor((recent.length - 1) / 2)]\n }\n\n /** True if this node is healthy (globally and for the given API if provided). */\n isNodeHealthy(node: string, api?: string): boolean {\n const h = this.health.get(node)\n if (!h) return true // unknown nodes assumed healthy\n const now = Date.now()\n\n // Rate-limited and cooldown hasn't expired\n if (h.rateLimitedUntil > now) return false\n\n // Too many consecutive failures within the last 30 seconds\n if (h.consecutiveFailures >= 3 && now - h.lastFailureTime < 30_000) return false\n\n // Per-API cooldown: node may be healthy overall but missing this API plugin\n if (api) {\n const apiFail = h.apiFailures.get(api)\n if (apiFail && apiFail.cooldownUntil > now) return false\n }\n\n // Head-block staleness: deprioritize nodes lagging behind the consensus head\n const best = this.consensusHeadBlock()\n if (\n best > 0 &&\n h.headBlock > 0 &&\n now - h.headBlockUpdatedAt <= HEAD_BLOCK_MAX_AGE_MS &&\n best - h.headBlock > STALE_BLOCK_THRESHOLD\n ) {\n return false\n }\n\n return true\n }\n\n /**\n * Order nodes best-first: healthy nodes sorted by adaptive latency score, then\n * unhealthy nodes appended. Capability / staleness / rate-limit filtering stays in\n * `isNodeHealthy` and is unchanged — latency only reorders WITHIN the healthy set,\n * and only WITHIN the array it is handed (so it never leaves the configured list).\n *\n * One ordering per pass MAY promote a healthy node overdue for a re-probe (never\n * sampled, or not sampled within LATENCY_REPROBE_MS) to the front — single-flight\n * via `lastProbeAt`. This is what lets a demoted node climb back when it recovers,\n * and profiles a node that organic traffic (always served by a faster peer) never\n * reaches. Cold start: with no profiles, every node scores the neutral prior and the\n * stable config-index tiebreak yields the original order — i.e. today's behavior.\n */\n getOrderedNodes(nodes: string[], api?: string): string[] {\n const healthy: string[] = []\n const unhealthy: string[] = []\n for (const node of nodes) {\n if (this.isNodeHealthy(node, api)) {\n healthy.push(node)\n } else {\n unhealthy.push(node)\n }\n }\n if (healthy.length <= 1) {\n return [...healthy, ...unhealthy]\n }\n const now = Date.now()\n // Every score in THIS pass falls back to config index on ties → a total,\n // transitive order with no memo (so no stale-denominator inversions).\n const ordered = healthy\n .map((node, i) => ({ node, i, score: this.scoreNode(node, now) }))\n .sort((a, b) => a.score - b.score || a.i - b.i)\n .map((d) => d.node)\n const probe = this.pickReprobeCandidate(healthy, now)\n if (probe && ordered[0] !== probe) {\n return [probe, ...ordered.filter((n) => n !== probe), ...unhealthy]\n }\n return [...ordered, ...unhealthy]\n }\n\n /** A node's latency is usable for ranking only if profiled (≥ MIN_SAMPLES) and fresh. */\n private isLatencyUsable(h: NodeHealth | undefined, now: number): boolean {\n return (\n !!h &&\n h.ewmaLatencyMs !== undefined &&\n h.latencySampleCount >= LATENCY_MIN_SAMPLES &&\n now - h.latencyUpdatedAt <= LATENCY_MAX_AGE_MS\n )\n }\n\n /**\n * Ranking score (lower = better). Unproven/warming nodes get a fixed neutral prior\n * so they sit ahead of a proven-slow node but behind a proven-fast one, and make at\n * most one rank transition when they cross MIN_SAMPLES (no churn).\n */\n private scoreNode(node: string, now: number): number {\n const h = this.health.get(node)\n if (!this.isLatencyUsable(h, now)) return LATENCY_UNPROVEN_PRIOR_MS\n return h!.ewmaLatencyMs!\n }\n\n /**\n * At most one healthy node overdue for an exploratory re-probe: never sampled, or\n * neither sampled nor re-probed within LATENCY_REPROBE_MS. Returns the stalest such\n * node and stamps `lastProbeAt` to single-flight it against concurrent orderings.\n *\n * Note: `getOrCreate` here materializes a health entry per node in the passed list.\n * The node list (`config.nodes`/`restNodes`) is treated as effectively static — set\n * once via `setNodes` — so the map is bounded. If a host is ever removed from the\n * list at runtime its stale entry is simply ignored (never re-surfaced) and is a\n * negligible, bounded amount of memory.\n */\n private pickReprobeCandidate(healthy: string[], now: number): string | undefined {\n const threshold = now - LATENCY_REPROBE_MS\n let cand: string | undefined\n let candTouch = Infinity\n for (const n of healthy) {\n const h = this.getOrCreate(n)\n const touch = Math.max(h.latencyUpdatedAt, h.lastProbeAt)\n if (touch <= threshold && touch < candTouch) {\n cand = n\n candTouch = touch\n }\n }\n if (cand) this.getOrCreate(cand).lastProbeAt = now\n return cand\n }\n}\n\n// Exported for the co-located specs only (asserting the call sites' effect on\n// health). Not re-exported by hive-tx/index.ts, so NOT part of the public API.\n// @internal\nexport const rpcHealthTracker = new NodeHealthTracker()\n// @internal\nexport const restHealthTracker = new NodeHealthTracker()\n\n// ── Hedged-request budget ────────────────────────────────────────────────────\n\n/**\n * Token bucket bounding hedged (duplicated) read requests to a fraction of\n * overall traffic. A hedge spends 1 token; every un-hedged success refills\n * `config.resilience.hedgeRefillPerSuccess` (default 0.1 ⇒ steady-state hedge\n * rate ≤ ~9% of successful traffic, with bursts up to `hedgeBucketCapacity`).\n * The self-limiting property this buys: under pool-wide slowness nearly every\n * request wants to hedge while successes (the refills) stagnate, so the bucket\n * drains and hedging auto-disables instead of doubling load into public-node\n * rate limits — the standard hedged-request guard (cf. gRPC's hedging throttle;\n * Dean & Barroso, \"The Tail at Scale\"). One instance per process shared across\n * concurrent calls; plain synchronous mutation is race-free on the JS event\n * loop. Reads config live so runtime tuning via `setResilience` applies.\n * @internal Exported for testing only.\n */\nexport class HedgeBudget {\n private tokens = config.resilience.hedgeBucketCapacity\n\n trySpend(): boolean {\n this.clamp()\n // Epsilon guards fractional-refill float accumulation (10 × 0.1 < 1 in FP64).\n if (this.tokens >= 1 - 1e-9) {\n this.tokens -= 1\n return true\n }\n return false\n }\n\n refill(): void {\n this.clamp()\n this.tokens = Math.min(\n config.resilience.hedgeBucketCapacity,\n this.tokens + config.resilience.hedgeRefillPerSuccess\n )\n }\n\n /** Capacity may be lowered at runtime; never let stored tokens exceed it. */\n private clamp(): void {\n if (this.tokens > config.resilience.hedgeBucketCapacity) {\n this.tokens = config.resilience.hedgeBucketCapacity\n }\n }\n\n /** @internal test hook */\n get available(): number {\n return this.tokens\n }\n\n /** @internal test hook */\n reset(tokens = config.resilience.hedgeBucketCapacity): void {\n this.tokens = tokens\n }\n}\n\n// @internal — exported for the co-located spec only, like the trackers above.\nexport const rpcHedgeBudget = new HedgeBudget()\n\n/**\n * Per-attempt timeout for a read call. A node profiled for THIS profile key\n * (full RPC method / REST api+endpoint template) is given `factor × EWMA` —\n * floored (≥2s) so a moderate spike on a fast call is not cut off, and capped\n * at the caller's ceiling so this can only ever *shorten* the wait. The\n * effect: a node running far above its own baseline for this exact kind of\n * call is abandoned early and failover starts in seconds instead of the full\n * fixed window.\n *\n * Two deliberate exclusions:\n * - `explicit` callers (who passed a timeout argument) keep exactly what they\n * asked for — the documented meaning of the parameter is preserved, and a\n * consumer who knows their call is heavy is never second-guessed.\n * - The profile is per (node, full method) with NO fallback to the node's\n * mixed global EWMA or even the API-prefix average: a baseline dominated by\n * cheap `condenser_api.get_accounts` calls must not set the deadline for a\n * heavy `condenser_api.get_account_history`. An unprofiled (node, method)\n * pair keeps the caller's timeout unchanged (cold start == old behavior).\n */\nfunction adaptiveAttemptTimeout(\n tracker: NodeHealthTracker,\n node: string,\n profileKey: string,\n callerTimeout: number,\n explicit: boolean\n): number {\n const r = config.resilience\n if (!r.adaptiveTimeout || explicit) return callerTimeout\n const ewma = tracker.getUsableLatencyMs(node, profileKey)\n if (ewma === undefined) return callerTimeout\n // EWMAs are fractional, but the result feeds AbortSignal.timeout(), which\n // Node rejects with ERR_OUT_OF_RANGE for non-integer delays (browsers coerce).\n return Math.ceil(\n Math.min(callerTimeout, Math.max(r.adaptiveTimeoutFloorMs, r.adaptiveTimeoutFactor * ewma))\n )\n}\n\n// ── Internal helpers ────────────────────────────────────────────────────────\n\n/** Record a caught error on the health tracker (handles NodeError to avoid double-counting). */\nfunction recordError(tracker: NodeHealthTracker, node: string, e: any, api?: string): void {\n if (e instanceof NodeError) {\n if (e.isRateLimit) {\n // 0 → no usable Retry-After → let recordRateLimit apply escalating backoff.\n tracker.recordRateLimit(node, e.rateLimitMs || undefined)\n } else {\n tracker.recordFailure(node, api)\n }\n } else if (e instanceof RPCError) {\n // RPC-level errors are API-specific (e.g., disabled API)\n tracker.recordFailure(node, api)\n } else {\n // Transport-level failures (DNS, TLS, timeout) affect the whole node\n tracker.recordFailure(node)\n }\n}\n\n/**\n * Passively extract head_block_number from known RPC responses\n * (e.g. `condenser_api.get_dynamic_global_properties`, `database_api.get_dynamic_global_properties`).\n * Silently ignores responses without that shape.\n */\nfunction tryRecordHeadBlock(\n tracker: NodeHealthTracker,\n node: string,\n method: string,\n result: any\n): void {\n if (!result || typeof result !== 'object') return\n if (!method.includes('get_dynamic_global_properties')) return\n const block = (result as any).head_block_number\n if (typeof block === 'number') {\n tracker.recordHeadBlock(node, block)\n }\n}\n\n// ── AbortSignal helpers (browser fallbacks) ─────────────────────────────────\n\n/**\n * Build a TimeoutError \"reason\" for an aborted signal.\n * Prefers the standard `DOMException` when available. Runtimes that ship\n * `AbortController` without `DOMException` (notably React Native / Hermes,\n * old Node < 17) fall back to a plain Error tagged with `name: 'TimeoutError'`\n * — which is what consumers actually check on `signal.reason`.\n */\nfunction createTimeoutReason(): Error {\n if (typeof DOMException !== 'undefined') {\n return new DOMException('The operation was aborted due to timeout', 'TimeoutError')\n }\n const err = new Error('The operation was aborted due to timeout')\n err.name = 'TimeoutError'\n return err\n}\n\n/** AbortSignal.timeout polyfill for pre-Chrome 103 / pre-Safari 16.4.\n * Returns { signal, cleanup } — caller must invoke cleanup() on success\n * to clear the dangling timer. */\nfunction createTimeoutSignal(ms: number): { signal: AbortSignal; cleanup: () => void } {\n // Node's AbortSignal.timeout throws ERR_OUT_OF_RANGE on fractional delays\n // (browsers coerce them), so guard every caller here.\n ms = Math.ceil(ms)\n if (typeof AbortSignal.timeout === 'function') {\n return { signal: AbortSignal.timeout(ms), cleanup: () => {} }\n }\n const controller = new AbortController()\n const timer = setTimeout(() => controller.abort(createTimeoutReason()), ms)\n return { signal: controller.signal, cleanup: () => clearTimeout(timer) }\n}\n\n/** AbortSignal.any polyfill for pre-Chrome 116 / pre-Safari 17.4.\n * Returns { signal, cleanup } — caller must invoke cleanup() on success\n * to remove listeners from the input signals (prevents leaks when the\n * same long-lived signal is reused across many callRPC invocations). */\nfunction mergeSignals(\n primary: AbortSignal,\n secondary?: AbortSignal\n): { signal: AbortSignal; cleanup: () => void } {\n if (!secondary) return { signal: primary, cleanup: () => {} }\n if (typeof AbortSignal.any === 'function') {\n return { signal: AbortSignal.any([primary, secondary]), cleanup: () => {} }\n }\n // Fallback: controller that aborts with the winning signal's reason\n const controller = new AbortController()\n if (primary.aborted) {\n controller.abort(primary.reason)\n return { signal: controller.signal, cleanup: () => {} }\n }\n if (secondary.aborted) {\n controller.abort(secondary.reason)\n return { signal: controller.signal, cleanup: () => {} }\n }\n\n const onPrimaryAbort = () => controller.abort(primary.reason)\n const onSecondaryAbort = () => controller.abort(secondary.reason)\n primary.addEventListener('abort', onPrimaryAbort, { once: true })\n secondary.addEventListener('abort', onSecondaryAbort, { once: true })\n\n const cleanup = () => {\n primary.removeEventListener('abort', onPrimaryAbort)\n secondary.removeEventListener('abort', onSecondaryAbort)\n }\n return { signal: controller.signal, cleanup }\n}\n\n/**\n * Low-level JSON-RPC call to a single node. No failover.\n * Throws RPCError for blockchain rejections, NodeError for HTTP 429/5xx,\n * and generic Error for other transport failures.\n * @param shouldRetry - If true, retries once on the same node for transient errors.\n */\nconst jsonRPCCall = async (\n url: string,\n method: string,\n params: any,\n timeout = config.timeout,\n shouldRetry = false,\n externalSignal?: AbortSignal\n) => {\n const id = Math.floor(Math.random() * 100_000_000)\n const body = {\n jsonrpc: '2.0',\n method,\n params,\n id\n }\n // Merge the per-call timeout with any external abort signal (e.g., SSR\n // request cancellation). Either one firing cancels the fetch.\n // Fallbacks for browsers without AbortSignal.timeout (pre-Chrome 103)\n // or AbortSignal.any (pre-Chrome 116).\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(timeout)\n const { signal, cleanup: cleanupMerge } = mergeSignals(tSignal, externalSignal)\n const cleanup = () => {\n cleanupTimeout()\n cleanupMerge()\n }\n\n try {\n const res = await fetch(url, {\n method: 'POST',\n body: JSON.stringify(body),\n headers: { 'Content-Type': 'application/json', ...serverIdentityHeaders() },\n signal\n })\n\n // Handle HTTP-level errors before parsing JSON.\n // Throw NodeError so callers can record health exactly once.\n if (res.status === 429) {\n throw new NodeError(url, `HTTP 429 Rate Limited`, {\n rateLimitMs: parseRetryAfterMs(res.headers.get('Retry-After')),\n isRateLimit: true\n })\n }\n // Any other 5xx is a node-level failure. Common cases:\n // 502 Bad Gateway — upstream HAF/jussi down\n // 503 Service Unavail — node draining / maintenance\n // 504 Gateway Timeout — slow upstream\n // 520-530 — Cloudflare interstitials (1033 tunnel error → 530)\n // Without this branch, the HTML error-page body would fall into res.json()\n // and throw a generic SyntaxError downstream, making failover guess at\n // whether the request reached the node.\n if (res.status >= 500 && res.status < 600) {\n throw new NodeError(url, `HTTP ${res.status} from ${url}`)\n }\n\n const result = (await res.json()) as CallResponse\n if (\n !result ||\n typeof result.id === 'undefined' ||\n result.id !== id ||\n result.jsonrpc !== '2.0'\n ) {\n throw new Error('JSONRPC id mismatch')\n }\n if ('result' in result) {\n return result.result\n }\n if ('error' in result) {\n const e = result.error\n if ('message' in e && 'code' in e) {\n throw new RPCError(e)\n }\n throw result.error\n }\n // No result and no error?\n throw result\n } catch (e) {\n if (e instanceof RPCError) {\n throw e\n }\n // NodeError should not be retried on the same node - it's an HTTP status issue\n if (e instanceof NodeError) {\n throw e\n }\n if (externalSignal?.aborted) {\n throw e\n }\n if (shouldRetry) {\n return jsonRPCCall(url, method, params, timeout, false, externalSignal)\n }\n throw e\n } finally {\n cleanup()\n }\n}\n\n/** Small jitter delay between failover attempts to prevent thundering herd. */\nfunction jitterDelay(): Promise {\n return sleep(50 + Math.random() * 50)\n}\n\n// ── Hedged read attempt ─────────────────────────────────────────────────────\n\n/**\n * One hedged READ attempt: start the primary node, and if it is still pending\n * after `max(hedgeDelayFloorMs, hedgeDelayFactor × primary EWMA)`, race a\n * duplicate against the next healthy untried node. First success wins and the\n * loser is aborted. Resolution rules (mirroring the sequential path exactly):\n *\n * - External abort (caller cancelled): reject immediately, record nothing.\n * - Authoritative RPCError (non-node-level blockchain rejection) from either\n * leg: an answer, not a fault — abort the other leg, reject immediately.\n * - Failover-class failure: record health for that leg (recordError +\n * recordSlowFailure — identical to the sequential catch); if the other leg\n * is still running, keep waiting on it; when both have failed, reject with\n * the last error so the outer loop continues its normal failover.\n * - Primary fails BEFORE the hedge fires: reject immediately (plain failover —\n * hedging only ever races slowness, never a node that failed fast).\n *\n * Health/budget bookkeeping on a win: winner records a normal success sample;\n * if the hedge won, the primary gets a censored latency sample (elapsed at\n * abort — a lower bound on its true latency) so repeated hedge-wins reorder\n * the pool; if the primary won without the hedge ever firing, the budget\n * refills. An aborted hedge leg records nothing (it was never given a fair\n * run). Broadcasts NEVER go through this path (double-broadcast risk) — it is\n * wired into `callRPC` only.\n */\nfunction hedgedRpcAttempt(opts: {\n method: string\n params: any[] | object\n api: string\n primary: string\n /**\n * Pre-selected healthy untried peers (up to a few, in rank order). The\n * actual hedge target is drawn uniformly at random at FIRE time: with many\n * concurrent callers behind one origin IP, always duplicating to the single\n * next-ranked node would concentrate the whole hedge stream on it and could\n * trip its per-IP rate limit — spreading over the top candidates keeps the\n * same budget bound without a single-target hotspot. Marked tried only if\n * the hedge actually fires.\n */\n hedgePool: string[]\n callerTimeout: number\n /** Caller passed an explicit timeout — adaptive shortening is disabled. */\n explicitTimeout: boolean\n /** The call's wall-clock deadline: a hedge must not START past it (it would\n * be a brand-new request the outer loop itself would refuse to start). */\n deadlineAt: number\n externalSignal?: AbortSignal\n /** Lets the outer loop add the hedge node to its tried-set at fire time. */\n onHedgeFired: (node: string) => void\n /** Caller-supplied payload validation — see callRPC's `validate` param. */\n validate?: (result: unknown) => boolean\n}): Promise {\n const {\n method,\n params,\n api,\n primary,\n hedgePool,\n callerTimeout,\n explicitTimeout,\n deadlineAt,\n externalSignal,\n onHedgeFired,\n validate\n } = opts\n return new Promise((resolve, reject) => {\n let done = false\n let pendingLegs = 0\n let hedgeFired = false\n /** The primary settled on its own (success OR failure). A censored latency\n * sample is only valid for a primary that was still in flight when the\n * hedge won — recording one after the primary already failed would\n * fabricate a second sample for a request whose outcome was recorded. */\n let primarySettled = false\n let lastError: any\n let hedgeTimer: ReturnType | undefined\n let primaryStart = 0\n const controllers: AbortController[] = []\n\n /** Settle exactly once: clear the timer, abort every other in-flight leg\n * (their rejections land behind the `done` guard and are dropped). */\n const finish = (settle: () => void) => {\n if (done) return\n done = true\n if (hedgeTimer !== undefined) {\n clearTimeout(hedgeTimer)\n hedgeTimer = undefined\n }\n for (const c of controllers) {\n if (!c.signal.aborted) c.abort()\n }\n settle()\n }\n\n const startLeg = (node: string, isHedge: boolean) => {\n pendingLegs++\n const controller = new AbortController()\n controllers.push(controller)\n // Merge our cancellation handle with the caller's signal; jsonRPCCall\n // merges the result with its own per-attempt timeout signal.\n const merged = mergeSignals(controller.signal, externalSignal)\n const legTimeout = adaptiveAttemptTimeout(\n rpcHealthTracker,\n node,\n method,\n callerTimeout,\n explicitTimeout\n )\n const start = Date.now()\n if (!isHedge) primaryStart = start\n jsonRPCCall(node, method, params, legTimeout, false, merged.signal)\n .then((res) => {\n merged.cleanup()\n pendingLegs--\n if (!isHedge) primarySettled = true\n if (done) return\n if (validate && !validate(res)) {\n // Well-formed envelope, impossible payload: a node fault the\n // HTTP/JSON-RPC layers cannot see. Same handling as the catch\n // path — record the fault against this node's API health, never\n // record a success for a lie, and let the other leg still win.\n rpcHealthTracker.recordDefectiveResponse(node, api)\n lastError = new Error(\n `[hive-tx] response validation failed for ${method} from ${node}`\n )\n if (!isHedge && !hedgeFired) {\n finish(() => reject(lastError))\n return\n }\n if (pendingLegs === 0) {\n finish(() => reject(lastError))\n }\n return\n }\n rpcHealthTracker.recordSuccess(node, api, Date.now() - start, method)\n tryRecordHeadBlock(rpcHealthTracker, node, method, res)\n if (isHedge) {\n if (!primarySettled) {\n // Primary lost the race while still in flight: censored sample\n // (lower bound of its true latency) so the ranker learns without\n // marking it as failed. A primary that already failed was fully\n // recorded by its own catch — nothing more to record.\n rpcHealthTracker.recordCensoredLatency(primary, Date.now() - primaryStart, method)\n }\n } else if (!hedgeFired) {\n rpcHedgeBudget.refill()\n }\n finish(() => resolve(res as T))\n })\n .catch((e) => {\n merged.cleanup()\n pendingLegs--\n if (!isHedge) primarySettled = true\n if (done) return // aborted loser (or late settle) — already resolved\n if (externalSignal?.aborted) {\n // Caller cancelled — bail without recording (mirrors sequential path).\n finish(() => reject(e))\n return\n }\n if (e instanceof RPCError && !isNodeLevelRPCError(e.code, e.message)) {\n // Authoritative rejection: an answer, not a node fault.\n finish(() => reject(e))\n return\n }\n // Failover-class failure — record exactly as the sequential catch does.\n recordError(rpcHealthTracker, node, e, api)\n rpcHealthTracker.recordSlowFailure(node, Date.now() - start, method)\n lastError = e\n if (!isHedge && !hedgeFired) {\n // Primary failed fast, before the hedge delay: plain failover.\n finish(() => reject(e))\n return\n }\n if (pendingLegs === 0) {\n finish(() => reject(lastError))\n }\n // else: the other leg is still in flight and may still win.\n })\n }\n\n startLeg(primary, false)\n\n // Delay from the primary's per-method profile (the eligibility gate\n // ensured it is usable); a raced expiry just means the floor applies. It is\n // then clamped BELOW the primary's own attempt window: for a heavy API\n // (EWMA > window/hedgeDelayFactor) the un-clamped delay would land past\n // the primary's timeout-abort — which clears this timer — so hedging would\n // silently never fire for exactly the heavy tail it exists to protect.\n // Firing at ~80% of the window keeps the duplicate meaningful (it starts\n // while the primary is still allowed to win) for every profile shape.\n const ewma = rpcHealthTracker.getUsableLatencyMs(primary, method) ?? 0\n const primaryWindow = adaptiveAttemptTimeout(\n rpcHealthTracker,\n primary,\n method,\n callerTimeout,\n explicitTimeout\n )\n const delay = Math.min(\n Math.max(config.resilience.hedgeDelayFloorMs, config.resilience.hedgeDelayFactor * ewma),\n 0.8 * primaryWindow\n )\n hedgeTimer = setTimeout(() => {\n hedgeTimer = undefined\n if (done || externalSignal?.aborted) return\n // Never START a duplicate past the call's wall-clock deadline — it would\n // extend the hold and spend a token on work the outer loop would refuse.\n if (Date.now() >= deadlineAt) return\n // Candidates were selected before the delay elapsed — re-check health at\n // fire time (one may have been rate-limited meanwhile) BEFORE spending a\n // token, so a stale pool costs nothing. Random draw spreads concurrent\n // callers' duplicates across the top candidates (see hedgePool doc).\n const live = hedgePool.filter((n) => rpcHealthTracker.isNodeHealthy(n, api))\n if (live.length === 0) return\n const target = live[Math.floor(Math.random() * live.length)]\n // Budget check at fire time, not arm time: only actual duplicates spend.\n if (!rpcHedgeBudget.trySpend()) return\n hedgeFired = true\n onHedgeFired(target)\n startLeg(target, true)\n }, delay)\n })\n}\n\n// ── Public API: callRPC ─────────────────────────────────────────────────────\n\n/**\n * Makes API calls to Hive blockchain nodes with automatic retry and failover support.\n * Uses per-request retry counters, node health tracking, jitter between retries,\n * and HTTP status awareness (429 rate limiting, 503).\n *\n * If the current node fails, it will automatically try the next healthy node.\n * When all nodes have been tried, wraps around to give earlier nodes another chance\n * until the full retry budget (config.retry) is exhausted.\n * RPCErrors (valid blockchain rejections) are never retried.\n *\n * @param method - The API method name (e.g., 'condenser_api.get_accounts')\n * @param params - Parameters for the API method as array or object\n * @param timeout - Request timeout in milliseconds (default: config.timeout)\n * @param retry - Maximum number of retry attempts (default: config.retry). The\n * wall-clock budget (`config.resilience.totalBudgetFactor` × timeout) may end\n * the failover walk before the retry count is exhausted.\n * @param validate - Optional payload validation. Some nodes return a valid\n * JSON-RPC envelope carrying an impossible payload (e.g. account rows with\n * metadata fields stripped to \"\"), which no transport-level check can catch.\n * When the callback returns false the response is treated as a node fault:\n * recorded against that node's per-API health (repeat offenders get an API\n * cooldown and are deprioritized) and the failover walk continues to the\n * next node instead of returning the lie. Keep validators conservative —\n * reject only payloads the caller KNOWS cannot be correct, or a strict\n * validator turns every node's honest answer into a failover storm.\n * @returns Promise resolving to the API response\n * @throws {RPCError} On blockchain-level errors (bad params, missing authority, etc.)\n * @throws {Error} If all retry attempts fail\n *\n * @example\n * ```typescript\n * import { callRPC } from 'hive-tx'\n *\n * // Get account information\n * const accounts = await callRPC('condenser_api.get_accounts', [['alice']])\n *\n * // Custom timeout and retry settings\n * const data = await callRPC('condenser_api.get_content', ['alice', 'test-post'], 10_000, 5)\n * ```\n */\nexport const callRPC = async (\n method: string,\n params: any[] | object = [],\n timeout?: number,\n retry = config.retry,\n signal?: AbortSignal,\n validate?: (result: unknown) => boolean\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an array')\n }\n if (config.nodes.length === 0) {\n throw new Error('config.nodes is empty')\n }\n // An explicit timeout argument is authoritative: adaptive shortening only\n // applies to callers who left the window to the SDK (timeout === undefined),\n // so `callRPC(m, p, 10_000)` still means \"give each attempt 10s\" exactly.\n const explicitTimeout = timeout !== undefined\n const ceiling = timeout ?? config.timeout\n const api = apiOf(method)\n // Wall-clock budget across ALL failover attempts. Without it the worst case\n // is (retry+1) × timeout ≈ 30s — exactly the render pile-up this feature\n // exists to prevent — whenever the WHOLE pool is slow (adaptive timeouts\n // rise with the EWMAs and hedging self-throttles, both by design). The\n // deadline is checked before each new attempt AND before a hedge fires; an\n // in-flight attempt still finishes its own window, so the true ceiling is\n // deadline + one attempt window (up to ~2× the window if a hedge fired just\n // before the deadline and the attempt then waits out the hedge leg too).\n // Note this budget also bounds callers who passed an explicit `retry`: the\n // wall clock, not the attempt count, is the stronger promise here.\n // Server-side read-through proxy, when configured and the method is on its\n // allowlist: one call, and on any miss the node loop below runs unchanged.\n // It runs BEFORE the node deadline is taken, so a slow proxy costs its own\n // timeout and nothing of the failover budget the nodes get today.\n // Snapshot: the binding can be cleared by the host while this call awaits.\n const proxy = serverRpcProxy\n if (proxy && isNodeRuntime && proxy.methodSet.has(method)) {\n if (Date.now() < proxyOpenUntil) {\n rpcProxyStats.skipped++\n } else {\n try {\n const served = await proxyRpcCall(proxy, method, params, ceiling, signal, validate)\n rpcProxyStats.served++\n proxyConsecutiveMisses = 0\n return served\n } catch (e: unknown) {\n if (signal?.aborted) throw e\n rpcProxyStats.fallback++\n const reason: string = e instanceof ProxyMiss ? e.reason : 'transport'\n rpcProxyStats.fallbackByReason[reason] = (rpcProxyStats.fallbackByReason[reason] ?? 0) + 1\n if (reason === 'rpcerror') {\n // A relayed node error is a healthy proxy answer: it closes the\n // count like a served call. Crawler-made feed URLs produce these in\n // runs, and counting them opened the breaker on a working proxy.\n proxyConsecutiveMisses = 0\n } else if (++proxyConsecutiveMisses >= proxy.failureThreshold) {\n proxyOpenUntil = Date.now() + proxy.cooldownMs\n proxyConsecutiveMisses = 0\n }\n }\n }\n }\n\n const deadline = Date.now() + config.resilience.totalBudgetFactor * ceiling\n\n // Track nodes tried in the current round. When all nodes have been tried,\n // clear the set to allow a second round (wrap-around) using the retry budget.\n const triedInRound = new Set()\n let lastError: any\n\n for (let attempt = 0; attempt <= retry; attempt++) {\n if (attempt > 0 && Date.now() >= deadline) {\n break\n }\n // Re-evaluate node order each attempt so health changes are respected.\n // Pass api so nodes with an API-specific cooldown are deprioritized.\n const orderedNodes = rpcHealthTracker.getOrderedNodes(config.nodes, api)\n // Pick the healthiest untried node. If all tried, start a new round.\n let node = orderedNodes.find((n) => !triedInRound.has(n))\n if (!node) {\n triedInRound.clear()\n node = orderedNodes[0]\n }\n triedInRound.add(node)\n\n // Hedge eligibility for THIS attempt: opted in, the primary has a usable\n // latency profile for this exact method (so the hedge delay is grounded in\n // data — cold starts stay sequential), and healthy untried peers exist.\n let hedgePool: string[] = []\n if (\n config.resilience.hedge &&\n rpcHealthTracker.getUsableLatencyMs(node, method) !== undefined\n ) {\n hedgePool = orderedNodes\n .filter((n) => !triedInRound.has(n) && rpcHealthTracker.isNodeHealthy(n, api))\n .slice(0, 3)\n }\n\n if (hedgePool.length > 0) {\n try {\n // All health/budget recording happens inside the hedged attempt —\n // the catch below must NOT record again (unlike the sequential path).\n return await hedgedRpcAttempt({\n method,\n params,\n api,\n primary: node,\n hedgePool,\n callerTimeout: ceiling,\n explicitTimeout,\n deadlineAt: deadline,\n externalSignal: signal,\n onHedgeFired: (n) => triedInRound.add(n),\n validate\n })\n } catch (e: any) {\n if (e instanceof RPCError && !isNodeLevelRPCError(e.code, e.message)) {\n throw e\n }\n if (signal?.aborted) {\n throw e\n }\n lastError = e\n if (attempt < retry) {\n await jitterDelay()\n }\n continue\n }\n }\n\n const callStart = Date.now()\n try {\n const res = await jsonRPCCall(\n node,\n method,\n params,\n adaptiveAttemptTimeout(rpcHealthTracker, node, method, ceiling, explicitTimeout),\n false,\n signal\n )\n if (validate && !validate(res)) {\n // Well-formed envelope, impossible payload: a node fault the\n // HTTP/JSON-RPC layers cannot see. Count it against this node's API\n // health (never record a success or refill the hedge budget for a\n // lie) and fail over to the next node.\n rpcHealthTracker.recordDefectiveResponse(node, api)\n lastError = new Error(`[hive-tx] response validation failed for ${method} from ${node}`)\n if (attempt < retry) {\n await jitterDelay()\n }\n continue\n }\n rpcHealthTracker.recordSuccess(node, api, Date.now() - callStart, method)\n // An un-hedged success is what earns hedge budget back (see HedgeBudget).\n rpcHedgeBudget.refill()\n tryRecordHeadBlock(rpcHealthTracker, node, method, res)\n return res as T\n } catch (e: any) {\n // RPCErrors: distinguish node-level failures from genuine blockchain rejections.\n // Node-level errors (e.g. -32602 \"Unable to parse endpoint data\" from a sick\n // HAF/jussi backend) should failover; real rejections (bad params, missing\n // authority, etc.) propagate immediately.\n if (e instanceof RPCError) {\n if (!isNodeLevelRPCError(e.code, e.message)) {\n throw e\n }\n // Node-level RPC error — record failure and fall through to failover\n }\n // External abort — stop retrying immediately\n if (signal?.aborted) {\n throw e\n }\n recordError(rpcHealthTracker, node, e, api)\n // A genuinely slow failure (timeout/abort/slow-5xx) is also a latency signal so\n // a node that 200s-but-too-slow or aborts at the timeout is demoted by the\n // ranker, not only by the (transient) failure gate. Measured elapsed, never a\n // constant; recordSlowFailure ignores instant (down-node) failures.\n rpcHealthTracker.recordSlowFailure(node, Date.now() - callStart, method)\n lastError = e\n\n // Add jitter before trying next node\n if (attempt < retry) {\n await jitterDelay()\n }\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callRPC for broadcasts ──────────────────────────────────────\n\n/**\n * Broadcast-safe RPC call. Only retries on pre-connection errors where the\n * request definitively never reached the server (ECONNREFUSED, ENOTFOUND, etc.).\n * On timeouts, HTTP errors, or any ambiguous failure, throws immediately to\n * prevent double-broadcasting transactions.\n *\n * Tries each node once (no wrap-around) since broadcast retries are dangerous.\n *\n * @internal Used by Transaction.broadcast()\n */\nexport const callRPCBroadcast = async (\n method: string,\n params: any[] | object = [],\n timeout = config.broadcastTimeout,\n signal?: AbortSignal\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an array')\n }\n if (config.nodes.length === 0) {\n throw new Error('config.nodes is empty')\n }\n const api = apiOf(method)\n // Track which nodes we've already tried - broadcasts must never retry the same node\n const triedNodes = new Set()\n let lastError: any\n\n for (let attempt = 0; attempt < config.nodes.length; attempt++) {\n // Re-evaluate order each attempt so health changes are respected\n const orderedNodes = rpcHealthTracker.getOrderedNodes(config.nodes, api)\n const node = orderedNodes.find((n) => !triedNodes.has(n))\n if (!node) break\n triedNodes.add(node)\n if (signal?.aborted) {\n throw new Error('Aborted')\n }\n try {\n const res = await jsonRPCCall(node, method, params, timeout, false, signal)\n // Deliberately no latency sample for broadcasts: broadcast_transaction_synchronous\n // blocks for block inclusion (~1.5–3s+) regardless of the node's read speed, so\n // feeding it into the shared read EWMA would wrongly demote a fast node for reads.\n // The same nodes are profiled by callRPC read traffic, so a genuinely slow node is\n // still demoted there.\n rpcHealthTracker.recordSuccess(node, api)\n return res as T\n } catch (e: any) {\n // RPCErrors are valid blockchain rejections - never retry\n if (e instanceof RPCError) {\n throw e\n }\n if (signal?.aborted) {\n throw e\n }\n recordError(rpcHealthTracker, node, e, api)\n lastError = e\n\n // Broadcast safety: only fail over when the request is safe to re-send.\n // `broadcastOperations` signs the tx exactly once and `callRPCBroadcast`\n // reuses that signed payload across nodes, so any case where the next\n // node would dedupe by trx_id is fine. RPCErrors (real blockchain\n // rejections) propagate immediately — see isBroadcastSafeToRetry.\n if (!isBroadcastSafeToRetry(e)) {\n throw e\n }\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callREST ────────────────────────────────────────────────────\n\nconst apiMethods: Record = {\n balance: '/balance-api',\n hafah: '/hafah-api',\n hafbe: '/hafbe-api',\n hivemind: '/hivemind-api',\n hivesense: '/hivesense-api',\n reputation: '/reputation-api',\n 'nft-tracker': '/nft-tracker-api',\n hafsql: '/hafsql',\n status: '/status-api'\n}\n\n/**\n * Makes REST API calls to Hive blockchain REST endpoints with automatic retry and failover support.\n * Uses per-request retry counters, node health tracking, and timeout support.\n * Wraps around the node list to honor the full retry budget.\n *\n * @template Api - The REST API method type (e.g., 'balance', 'hafah', 'hivemind', etc.)\n * @template P - The endpoint path type for the specified API\n *\n * @param api - The REST API method name to call\n * @param endpoint - The specific endpoint path within the API\n * @param params - Optional parameters for path and query string replacement\n * @param timeout - Request timeout in milliseconds (default: config.timeout)\n * @param retry - Number of retry attempts before throwing an error (default:\n * config.retry). The wall-clock budget (`config.resilience.totalBudgetFactor`\n * × timeout) may end the failover walk before the retry count is exhausted.\n *\n * @returns Promise resolving to the API response data with proper typing\n * @throws Error if all retry attempts fail\n *\n * @example\n * ```typescript\n * import { callREST } from 'hive-tx'\n *\n * // Get account balance\n * const balance = await callREST('balance', '/accounts/{account-name}/balances', { \"account-name\": 'alice' })\n *\n * // Custom timeout and retry settings\n * const data = await callREST('status', '/status', undefined, 10_000, 3)\n * ```\n */\nexport async function callREST(\n api: APIMethods,\n endpoint: string,\n params?: Record,\n timeout?: number,\n retry = config.retry,\n signal?: AbortSignal\n): Promise {\n if (!Array.isArray(config.restNodes)) {\n throw new Error('config.restNodes is not an array')\n }\n if (config.restNodes.length === 0) {\n throw new Error('config.restNodes is empty')\n }\n // Same contract as callRPC: an explicit timeout argument is authoritative\n // (no adaptive shortening), and a wall-clock deadline bounds the total\n // failover walk when the whole pool is slow.\n const explicitTimeout = timeout !== undefined\n const ceiling = timeout ?? config.timeout\n const deadline = Date.now() + config.resilience.totalBudgetFactor * ceiling\n // Latency-profile key: api + endpoint TEMPLATE (pre-substitution, so the\n // cardinality is code-defined) — a cheap endpoint's baseline must not set\n // the deadline for a heavy one within the same REST api.\n const restProfileKey = `${api}:${endpoint}`\n // Per-API node override: an API served by only a subset of nodes (e.g.\n // hivesense) uses its own capable-host list so the small retry budget and\n // cold starts aren't wasted on nodes that 404/503 it. Any API without an\n // override (or with an empty one) falls back to the generic restNodes.\n const apiNodes =\n config.restNodesByApi?.[api]?.length\n ? config.restNodesByApi[api]!\n : config.restNodes\n const triedInRound = new Set()\n let lastError: any\n // Track whether the error was already recorded by the HTTP status handler\n let alreadyRecorded = false\n\n for (let attempt = 0; attempt <= retry; attempt++) {\n if (attempt > 0 && Date.now() >= deadline) {\n break\n }\n // Re-evaluate node order each attempt so health changes are respected.\n // Pass api so per-API cooldowns are respected.\n const orderedNodes = restHealthTracker.getOrderedNodes(apiNodes, api)\n let node = orderedNodes.find((n) => !triedInRound.has(n))\n if (!node) {\n triedInRound.clear()\n node = orderedNodes[0]\n }\n triedInRound.add(node)\n const baseUrl = node + apiMethods[api]\n let path = endpoint as string\n const paramObj = params || ({} as Record)\n const processedPathParams = new Set()\n\n // Replace path params ONLY\n Object.entries(paramObj).forEach(([key, value]) => {\n if (path.includes(`{${key}}`)) {\n path = path.replace(`{${key}}`, encodeURIComponent(String(value)))\n processedPathParams.add(key)\n }\n })\n const url = new URL(baseUrl + path)\n // Add ONLY remaining params as query (if any)\n Object.entries(paramObj).forEach(([key, value]) => {\n if (!processedPathParams.has(key)) {\n if (Array.isArray(value)) {\n value.forEach((v) => url.searchParams.append(key, String(v)))\n } else {\n url.searchParams.set(key, String(value))\n }\n }\n })\n\n if (signal?.aborted) {\n throw new Error('Aborted')\n }\n alreadyRecorded = false\n // Adaptive per-attempt timeout (see adaptiveAttemptTimeout): a profiled\n // REST node is abandoned at factor×EWMA instead of the full fixed window.\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(\n adaptiveAttemptTimeout(restHealthTracker, node, restProfileKey, ceiling, explicitTimeout)\n )\n const { signal: restSignal, cleanup: cleanupMerge } = mergeSignals(tSignal, signal)\n const restCleanup = () => { cleanupTimeout(); cleanupMerge() }\n const restCallStart = Date.now()\n try {\n const response = await fetch(url.toString(), {\n signal: restSignal,\n headers: serverIdentityHeaders()\n })\n if (response.status === 404) {\n throw new Error('HTTP 404 - Hint: can happen on wrong params')\n }\n if (response.status === 429) {\n // 0 (no usable Retry-After) → undefined → escalating backoff in recordRateLimit.\n restHealthTracker.recordRateLimit(\n node,\n parseRetryAfterMs(response.headers.get('Retry-After')) || undefined\n )\n alreadyRecorded = true\n throw new Error(`HTTP 429 Rate Limited by ${node}`)\n }\n if (response.status === 503) {\n restHealthTracker.recordFailure(node, api)\n alreadyRecorded = true\n throw new Error(`HTTP 503 Service Unavailable from ${node}`)\n }\n if (!response.ok) {\n restHealthTracker.recordFailure(node, api)\n alreadyRecorded = true\n throw new Error(`HTTP ${response.status} from ${node}`)\n }\n restHealthTracker.recordSuccess(node, api, Date.now() - restCallStart, restProfileKey)\n return response.json() as any\n } catch (e: any) {\n // 404 is not a node issue, don't failover\n if (e?.message?.includes('HTTP 404')) {\n throw e\n }\n // External abort (caller unmounted / React Query cancelled the request) is the\n // client's decision, NOT a node fault. Mirror callRPC: bail before recording any\n // failure or slow-latency sample so a healthy REST node (e.g. an own node) is never\n // demoted by routine navigation/cancellation.\n if (signal?.aborted) {\n throw e\n }\n // Only record if not already recorded by 429/503 handler above\n if (!alreadyRecorded) {\n restHealthTracker.recordFailure(node, api)\n }\n // A slow failure (timeout/abort/slow-5xx — e.g. an own node from a far region) is a\n // latency signal too, so it is demoted by the ranker, not only the failure gate.\n // Measured elapsed; recordSlowFailure floors at LATENCY_SLOW_FAILURE_MS so a fast\n // 404/429 or instant down-node failure is NOT mis-read as \"slow\".\n restHealthTracker.recordSlowFailure(node, Date.now() - restCallStart, restProfileKey)\n lastError = e\n\n if (attempt < retry) {\n await jitterDelay()\n }\n } finally {\n restCleanup()\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callWithQuorum ───────────────────────────────────────────────\n\n/**\n * Make a JSONRPC call with quorum. The method will cross-check the result\n * with `quorum` number of nodes before returning the result.\n * @param method - The API method name (e.g., 'condenser_api.get_accounts')\n * @param params - Parameters for the API method as array or object\n * @param quorum - Default: 2 (recommended)\n */\nexport const callWithQuorum = async (\n method: string,\n params: any[] | object = [],\n quorum = 2,\n signal?: AbortSignal\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an Array')\n }\n if (quorum > config.nodes.length) {\n throw new Error('quorum > config.nodes.length')\n }\n // We call random nodes for better security (Fisher-Yates shuffle)\n const shuffleNodes = (arr: string[]) => {\n const a = [...arr]\n for (let i = a.length - 1; i > 0; i--) {\n const j = Math.floor(Math.random() * (i + 1));\n [a[i], a[j]] = [a[j], a[i]]\n }\n return a\n }\n let allNodes = shuffleNodes(config.nodes)\n let currentBatchSize = Math.min(quorum, allNodes.length)\n let allResults: any[] = []\n while (currentBatchSize > 0 && allNodes.length > 0) {\n // Take next batch of nodes\n const batchNodes = allNodes.splice(0, currentBatchSize)\n const promises: Promise[] = []\n const batchResults: any[] = []\n // Launch batch calls in parallel\n for (let i = 0; i < batchNodes.length; i++) {\n promises.push(\n jsonRPCCall(batchNodes[i], method, params, undefined, true, signal)\n .then((data) => batchResults.push(data))\n .catch(() => {})\n )\n }\n await Promise.all(promises)\n allResults.push(...batchResults)\n // Check for consensus in successful results\n const consensusResult = findConsensus(allResults, quorum)\n if (consensusResult) {\n return consensusResult\n }\n // Prepare next batch\n currentBatchSize = Math.min(quorum, allNodes.length)\n if (currentBatchSize === 0) {\n throw new Error('No more nodes available.')\n }\n }\n throw new Error(\"Couldn't reach quorum.\")\n}\n\nfunction findConsensus(results: any[], quorum: number) {\n const resultGroups = new Map()\n for (const result of results) {\n const key = JSON.stringify(result)\n if (!resultGroups.has(key)) {\n resultGroups.set(key, [])\n }\n resultGroups.get(key)!.push(result)\n }\n const consensusGroup = Array.from(resultGroups.values()).find((group) => group.length >= quorum)\n return consensusGroup ? consensusGroup[0] : null\n}\n","import { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\nimport { PrivateKey } from './helpers/PrivateKey'\nimport {\n OperationName,\n OperationBody,\n TransactionType,\n TransactionStatus,\n BroadcastResult\n} from './types'\nimport { ByteBuffer } from './helpers/ByteBuffer'\nimport { Serializer } from './helpers/serializer'\nimport { sha256 } from '@noble/hashes/sha2.js'\nimport { config } from './config'\nimport { callRPC, callRPCBroadcast, RPCError } from './helpers/call'\nimport { DigestData } from './types'\nimport { sleep } from './helpers/sleep'\n\nconst chainId = hexToBytes(config.chain_id)\n\ninterface TransactionOptions {\n transaction?: TransactionType | Transaction\n /**\n * Transaction expiration in milliseconds (ms) - max 86400000 (24 hours)\n * @default 60_000\n */\n expiration?: number\n}\n\nexport class Transaction {\n transaction?: TransactionType\n\n expiration: number = 60_000\n\n private txId?: string\n\n constructor(options?: TransactionOptions) {\n if (options?.transaction) {\n if (options.transaction instanceof Transaction) {\n this.transaction = options.transaction.transaction\n this.expiration = options.transaction.expiration\n } else {\n this.transaction = options.transaction\n }\n // A transaction built externally (e.g. from a hive-uri signing request)\n // may omit the `signatures` array. sign(), addSignature() and broadcast()\n // all assume it exists, so normalize it here to avoid\n // \"Cannot read property 'push' of undefined\" on sign.\n if (this.transaction && !Array.isArray(this.transaction.signatures)) {\n this.transaction.signatures = []\n }\n this.txId = this.digest().txId\n }\n if (options?.expiration) {\n this.expiration = options.expiration\n }\n }\n\n /**\n * Adds an operation to the transaction. If no transaction exists, creates one first.\n * @template O Operation name type for type safety\n * @param operationName The name/type of the operation to add (e.g., 'transfer', 'vote', 'comment')\n * @param operationBody The operation data/body for the specified operation type\n * @returns Promise that resolves when the operation is added\n * @throws Error if transaction creation fails or global properties cannot be retrieved\n */\n async addOperation(\n operationName: O,\n operationBody: OperationBody\n ): Promise {\n if (!this.transaction) {\n await this.createTransaction(this.expiration)\n }\n this.transaction!.operations.push([operationName, operationBody])\n }\n\n /**\n * Signs the transaction with the provided key(s), supporting both single and multi-signature transactions.\n * For multi-signature, you can sign with all keys at once or sign individually by calling this method multiple times.\n * @param keys Single PrivateKey or array of PrivateKeys to sign the transaction with\n * @returns The signed transaction\n * @throws Error if no transaction exists to sign\n */\n sign(keys: PrivateKey | PrivateKey[]): TransactionType {\n if (!this.transaction) {\n throw new Error('First create a transaction by .addOperation()')\n }\n if (this.transaction) {\n const { digest, txId } = this.digest()\n if (!Array.isArray(keys)) {\n keys = [keys]\n }\n for (const key of keys) {\n const signature = key.sign(digest)\n this.transaction.signatures.push(signature.customToString())\n }\n this.txId = txId\n return this.transaction\n } else {\n throw new Error('No transaction to sign')\n }\n }\n\n /**\n * Broadcasts the signed transaction to the Hive network.\n * Automatically handles retries and duplicate transaction detection.\n * @param checkStatus By default (false) the transaction is not guaranteed to be included in a block.\n * For example the transaction can expire while waiting in mempool.\n * If you pass true here, the function will wait for the transaction to be either included or dropped\n * before returning a result.\n * @returns Promise resolving to broadcast result\n * @throws Error if no transaction exists or transaction is not signed or transaction got rejected\n */\n async broadcast(checkStatus = false): Promise {\n if (!this.transaction) {\n throw new Error(\n 'Attempted to broadcast an empty transaction. Add operations by .addOperation()'\n )\n }\n if (this.transaction.signatures.length === 0) {\n throw new Error(\n 'Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)'\n )\n }\n try {\n await callRPCBroadcast('condenser_api.broadcast_transaction', [this.transaction])\n } catch (e) {\n if (e instanceof RPCError && e.message.includes('Duplicate transaction check failed')) {\n // ignore duplicate transaction error as this can happen when we retry the broadcast\n } else {\n throw e\n }\n }\n if (!this.txId) {\n this.txId = this.digest().txId\n }\n if (!checkStatus) {\n return { tx_id: this.txId, status: 'unknown' }\n }\n // Poll until the transaction reaches a final state or max attempts exceeded.\n // With 60 attempts: delays grow from 1.3s to 19s, total wait ~10 minutes.\n const maxPollAttempts = 60\n await sleep(1000)\n let status = await this.checkStatus()\n let i = 1\n while (\n status?.status !== 'within_irreversible_block' &&\n status?.status !== 'expired_irreversible' &&\n status?.status !== 'too_old' &&\n i < maxPollAttempts\n ) {\n await sleep(1000 + i * 300)\n status = await this.checkStatus()\n i++\n }\n return {\n tx_id: this.txId,\n status: (status?.status ?? 'unknown') as BroadcastResult['status']\n }\n }\n\n /**\n * Returns the transaction digest containing the transaction ID and hash.\n * The digest can be used to verify signatures and for transaction identification.\n * @returns DigestData containing transaction ID and hash\n * @throws Error if no transaction exists\n */\n digest(): DigestData {\n if (!this.transaction) {\n throw new Error('First create a transaction by .addOperation()')\n }\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n const temp = { ...this.transaction }\n try {\n Serializer.Transaction(buffer, temp)\n } catch (cause) {\n throw new Error('Unable to serialize transaction: ' + cause)\n }\n buffer.flip()\n const transactionData = new Uint8Array(buffer.toBuffer())\n const txId = bytesToHex(sha256(transactionData)).slice(0, 40)\n const digest = sha256(new Uint8Array([...chainId, ...transactionData]))\n return { digest, txId }\n }\n\n /**\n * Adds a signature to an already created transaction. Useful when signing with external tools.\n * Multiple signatures can be added one at a time for multi-signature transactions.\n * @param signature The signature string in hex format (must be exactly 130 characters)\n * @returns The transaction with the added signature\n * @throws Error if no transaction exists or signature format is invalid\n */\n addSignature(signature: string): TransactionType {\n if (!this.transaction) {\n throw new Error('First create a transaction by .create(operations)')\n }\n if (typeof signature !== 'string') {\n throw new Error('Signature must be string')\n }\n if (signature.length !== 130) {\n throw new Error('Signature must be 130 characters long')\n }\n this.transaction.signatures.push(signature)\n return this.transaction\n }\n\n /** Get status of this transaction. Usually called internally after broadcasting. */\n async checkStatus(): Promise {\n if (!this.txId) {\n this.txId = this.digest().txId\n }\n return callRPC('transaction_status_api.find_transaction', {\n transaction_id: this.txId,\n expiration: this.transaction?.expiration\n })\n }\n\n /**\n * Creates the transaction structure and initializes it with blockchain data.\n * Retrieves current head block information and sets up reference block data.\n * @private\n * @param expiration Transaction expiration in milliseconds\n */\n private createTransaction = async (expiration: number) => {\n const props = await callRPC('condenser_api.get_dynamic_global_properties', [])\n const bytes = hexToBytes(props.head_block_id)\n const refBlockPrefix = Number(new Uint32Array(bytes.buffer, bytes.byteOffset + 4, 1)[0])\n const expirationIso = new Date(Date.now() + expiration).toISOString().slice(0, -5)\n this.transaction = {\n expiration: expirationIso,\n extensions: [],\n operations: [],\n ref_block_num: props.head_block_number & 0xffff,\n ref_block_prefix: refBlockPrefix,\n signatures: []\n }\n }\n}\n","import bs58 from 'bs58'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { sha256, sha512 } from '@noble/hashes/sha2.js'\nimport { PublicKey } from './PublicKey'\nimport { Signature } from './Signature'\nimport { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\nexport type KeyRole = 'owner' | 'active' | 'posting' | 'memo'\n\nconst NETWORK_ID = new Uint8Array([0x80])\n\n/**\n * ECDSA (secp256k1) private key for signing and encryption operations.\n * Handles key generation, derivation from seeds/passwords, and cryptographic operations.\n *\n * All private keys are stored internally as Uint8Array and can be converted to/from\n * Wallet Import Format (WIF) strings for storage and transmission.\n *\n * @example\n * ```typescript\n * // From WIF string\n * const key = PrivateKey.from('5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw')\n *\n * // Generate random key\n * const randomKey = PrivateKey.randomKey()\n *\n * // From username and password\n * const loginKey = PrivateKey.fromLogin('username', 'password')\n *\n * // Sign a message\n * const signature = key.sign(someHash)\n *\n * // Get public key\n * const pubKey = key.createPublic()\n * ```\n */\nexport class PrivateKey {\n key: Uint8Array\n\n constructor(key: Uint8Array) {\n this.key = key\n try {\n secp256k1.getPublicKey(key)\n } catch (e) {\n throw new Error('invalid private key')\n }\n }\n\n /**\n * Creates a PrivateKey instance from a WIF string or raw Uint8Array.\n * Automatically detects the input type and uses the appropriate method.\n *\n * @param value - WIF formatted string or raw 32-byte key as Uint8Array\n * @returns New PrivateKey instance\n * @throws Error if the key format is invalid\n */\n static from(value: string | Uint8Array): PrivateKey {\n if (typeof value === 'string') {\n return PrivateKey.fromString(value)\n } else {\n return new PrivateKey(value)\n }\n }\n\n /**\n * Creates a PrivateKey from a Wallet Import Format (WIF) encoded string.\n *\n * @param wif - WIF encoded private key string\n * @returns New PrivateKey instance\n * @throws Error if WIF format is invalid or checksum fails\n */\n static fromString(wif: string): PrivateKey {\n return new PrivateKey(decodePrivate(wif).subarray(1))\n }\n\n /**\n * Creates a PrivateKey from a seed string or Uint8Array.\n * The seed is hashed with SHA256 to produce the private key.\n *\n * @param seed - Seed string (converted to bytes) or raw byte array\n * @returns New PrivateKey instance derived from seed\n */\n static fromSeed(seed: string | Uint8Array): PrivateKey {\n if (typeof seed === 'string') {\n const isHex = /^[0-9a-fA-F]+$/.test(seed)\n if (isHex) {\n seed = hexToBytes(seed)\n } else {\n // Convert non-hex string to Uint8Array using UTF-8 encoding\n // Avoid top-level TextEncoder — not available on all runtimes (e.g. Hermes)\n const bytes: number[] = []\n for (let i = 0; i < seed.length; i++) {\n let c = seed.charCodeAt(i)\n if (c < 0x80) {\n bytes.push(c)\n } else if (c < 0x800) {\n bytes.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f))\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < seed.length) {\n const next = seed.charCodeAt(++i)\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff)\n bytes.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n } else {\n bytes.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n }\n }\n seed = new Uint8Array(bytes)\n }\n }\n return new PrivateKey(sha256(seed))\n }\n\n /**\n * Derives a PrivateKey from username, password, and role using Hive's key derivation scheme.\n * This generates the same keys that the Hive wallet uses for login-based keys.\n *\n * @param username - Hive username\n * @param password - Master password (or seed phrase)\n * @param role - Key role ('owner', 'active', 'posting', 'memo')\n * @returns New PrivateKey instance for the specified role\n */\n static fromLogin(username: string, password: string, role: KeyRole = 'active'): PrivateKey {\n const seed = username + role + password\n return PrivateKey.fromSeed(seed)\n }\n\n /**\n * Signs a 32-byte message hash using ECDSA and returns a recoverable signature.\n * The signature includes recovery information to allow public key recovery.\n *\n * @param message - 32-byte message hash to sign (Uint8Array)\n * @returns Signature object containing the signature data\n */\n sign(message: Uint8Array): Signature {\n const rv = secp256k1.sign(message, this.key, {\n extraEntropy: true,\n format: 'recovered',\n prehash: false // prehash does sha256 on the message\n })\n const recovery = parseInt(bytesToHex(rv.subarray(0, 1)), 16)\n return Signature.from((recovery + 31).toString(16) + bytesToHex(rv.subarray(1)))\n }\n\n /**\n * Derives the corresponding public key for this private key.\n *\n * @param prefix - Optional address prefix (defaults to config.address_prefix)\n * @returns PublicKey instance derived from this private key\n */\n createPublic(prefix?: string): PublicKey {\n return new PublicKey(secp256k1.getPublicKey(this.key), prefix)\n }\n\n /**\n * Returns the private key as a Wallet Import Format (WIF) encoded string.\n * This includes network ID and checksum for safe storage/transmission.\n *\n * @returns WIF encoded private key string\n */\n toString(): string {\n return encodePrivate(new Uint8Array([...NETWORK_ID, ...this.key]))\n }\n\n /**\n * Returns a masked representation of the private key for debugging/logging.\n * Shows only the first and last 6 characters to avoid accidental exposure.\n * Use toString() to get the full key for export/serialization.\n *\n * @returns Masked key representation for safe logging\n */\n inspect(): string {\n const key = this.toString()\n return `PrivateKey: ${key.slice(0, 6)}...${key.slice(-6)}`\n }\n\n /**\n * Computes a shared secret using ECDH key exchange for memo encryption.\n * The shared secret is used as a key for AES encryption/decryption.\n *\n * @param publicKey - Other party's public key\n * @returns 64-byte shared secret as Uint8Array\n */\n getSharedSecret(publicKey: PublicKey): Uint8Array {\n const s = secp256k1.getSharedSecret(this.key, publicKey.key)\n // strip the parity byte\n return sha512(s.subarray(1))\n }\n\n /**\n * Generates a new cryptographically secure random private key.\n * Uses the secp256k1 key generation algorithm for security.\n * This method may take up to 250ms due to entropy collection.\n *\n * @returns New randomly generated PrivateKey instance\n */\n static randomKey(): PrivateKey {\n return new PrivateKey(secp256k1.keygen().secretKey)\n }\n}\n\nconst doubleSha256 = (input: Uint8Array) => {\n const dbl = sha256(sha256(input))\n return dbl\n}\n\n/** Encode bs58+doubleSha256-checksum private key. */\nconst encodePrivate = (key: Uint8Array) => {\n // assert.equal(key.readUInt8(0), 0x80, 'private key network id mismatch')\n const checksum = doubleSha256(key)\n return bs58.encode(new Uint8Array([...key, ...checksum.slice(0, 4)]))\n}\n\n/** Decode bs58+doubleSha256-checksum encoded private key. */\nconst decodePrivate = (encodedKey: string) => {\n const buffer = bs58.decode(encodedKey)\n if (!isUint8ArrayEqual(buffer.slice(0, 1), NETWORK_ID)) {\n throw new Error('Private key network id mismatch')\n }\n const checksum = buffer.slice(-4)\n const key = buffer.slice(0, -4)\n const checksumVerify = doubleSha256(key).slice(0, 4)\n if (!isUint8ArrayEqual(checksum, checksumVerify)) {\n throw new Error('Private key checksum mismatch')\n }\n return key\n}\n\nconst isUint8ArrayEqual = (a: Uint8Array, b: Uint8Array) => {\n if (a === b) return true\n if (a.byteLength !== b.byteLength) return false\n const len = a.byteLength\n let i = 0\n while (i < len && a[i] === b[i]) i++\n return i === len\n}\n","import { ByteBuffer } from './ByteBuffer'\nimport { cbc as AESCBC } from '@noble/ciphers/aes.js'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { sha256, sha512 } from '@noble/hashes/sha2.js'\nimport { PrivateKey } from './PrivateKey'\nimport { PublicKey } from './PublicKey'\n\nexport const encrypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n message: Uint8Array,\n nonce: bigint = uniqueNonce()\n) => crypt(privateKey, publicKey, nonce, message)\n\nexport const decrypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n nonce: bigint,\n message: Uint8Array,\n checksum: number\n): Uint8Array => {\n const d = crypt(privateKey, publicKey, nonce, message, checksum)\n return d.message\n}\n\n/**\n * @arg message - Encrypted or plain text message (see checksum)\n * @arg checksum - shared secret checksum (null to encrypt, non-null to decrypt)\n */\nconst crypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n nonce: bigint,\n message: Uint8Array,\n checksum?: number\n): { nonce: bigint; message: Uint8Array; checksum: number } => {\n const nonceL = nonce\n const S = privateKey.getSharedSecret(publicKey)\n let ebuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n ebuf.writeUint64(nonceL)\n ebuf.append(S)\n ebuf.flip()\n\n const encryptionKey = sha512(new Uint8Array(ebuf.toBuffer()))\n const iv = encryptionKey.subarray(32, 48)\n const tag = encryptionKey.subarray(0, 32)\n\n // check if first 64 bit of sha256 hash treated as uint64_t truncated to 32 bits.\n const check = sha256(encryptionKey).subarray(0, 4)\n const cbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n cbuf.append(check)\n cbuf.flip()\n const check32 = cbuf.readUint32()\n if (checksum !== undefined) {\n if (check32 !== checksum) {\n throw new Error('Invalid key')\n }\n message = cryptoJsDecrypt(message, tag, iv)\n } else {\n message = cryptoJsEncrypt(message, tag, iv)\n }\n return { nonce: nonceL, message, checksum: check32 }\n}\n\n/**\n * This method does not use a checksum, the returned data must be validated some other way.\n * @arg {string|Uint8Array} ciphertext - binary format\n * @return {Uint8Array} the decrypted message\n */\nconst cryptoJsDecrypt = (message: Uint8Array, tag: Uint8Array, iv: Uint8Array): Uint8Array => {\n let messageBuffer = message\n const decipher = AESCBC(tag, iv)\n messageBuffer = decipher.decrypt(messageBuffer)\n return messageBuffer\n}\n\n/**\n * This method does not use a checksum, the returned data must be validated some other way.\n * @arg {string|Uint8Array} plaintext - binary format\n * @return {Uint8Array} binary\n */\nexport const cryptoJsEncrypt = (\n message: Uint8Array,\n tag: Uint8Array,\n iv: Uint8Array\n): Uint8Array => {\n let messageBuffer = message\n const cipher = AESCBC(tag, iv)\n messageBuffer = cipher.encrypt(messageBuffer)\n return messageBuffer\n}\n\nlet uniqueNonceEntropy: number | null = null\n\nconst uniqueNonce = (): bigint => {\n if (uniqueNonceEntropy === null) {\n const randomPrivateKey = secp256k1.utils.randomSecretKey()\n uniqueNonceEntropy = (randomPrivateKey[0] << 8) | randomPrivateKey[1]\n }\n let long = BigInt(Date.now())\n const entropy = ++uniqueNonceEntropy % 0x10000\n long = (long << BigInt(16)) | BigInt(entropy)\n return long\n}\n","import { ByteBuffer } from './ByteBuffer'\nimport { PublicKey } from './PublicKey'\n\nconst PublicKeyDeserializer = (buf: ByteBuffer) => {\n const c = fixedBuf(buf, 33)\n return new PublicKey(c)\n}\n\nconst UInt64Deserializer = (b: ByteBuffer) => {\n return b.readUint64()\n}\n\nconst UInt32Deserializer = (b: ByteBuffer) => {\n return b.readUint32()\n}\n\nconst BinaryDeserializer = (b: ByteBuffer) => {\n const len = b.readVarint32()\n const bCopy = b.copy(b.offset, b.offset + len)\n b.skip(len)\n return new Uint8Array(bCopy.toBuffer())\n}\n\nconst BufferDeserializer = (keyDeserializers: any) => (buf: Uint8Array) => {\n const obj: any = {}\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n buffer.append(buf)\n buffer.flip()\n for (const [key, deserializer] of keyDeserializers) {\n try {\n obj[key] = deserializer(buffer)\n } catch (error: any) {\n error.message = `${key}: ${error.message}`\n throw error\n }\n }\n return obj\n}\n\nfunction fixedBuf(b: ByteBuffer, len: number) {\n if (!b) {\n throw Error('No buffer found on first parameter')\n } else {\n const bCopy = b.copy(b.offset, b.offset + len)\n b.skip(len)\n return new Uint8Array(bCopy.toBuffer())\n }\n}\n\nconst EncryptedMemoDeserializer = BufferDeserializer([\n ['from', PublicKeyDeserializer],\n ['to', PublicKeyDeserializer],\n ['nonce', UInt64Deserializer],\n ['check', UInt32Deserializer],\n ['encrypted', BinaryDeserializer]\n])\n\nexport const Deserializer = {\n Memo: EncryptedMemoDeserializer\n}\n","import bs58 from 'bs58'\nimport { ByteBuffer } from './ByteBuffer'\nimport { Serializer } from './serializer'\nimport { PrivateKey } from './PrivateKey'\nimport * as Aes from './aes'\nimport { PublicKey } from './PublicKey'\nimport { Deserializer } from './deserializer'\n\nexport type Memo = {\n /**\n * Encrypts a memo for secure private messaging\n */\n encode(\n privateKey: string | PrivateKey,\n publicKey: string | PublicKey,\n memo: string,\n testNonce?: any\n ): string\n\n /**\n * Decrypts a memo message\n */\n decode(privateKey: string | PrivateKey, memo: string): string\n}\n\n/**\n * Encodes a memo using AES encryption for secure private messaging on Hive.\n * Messages must start with '#' to be encrypted. Plain text messages are returned unchanged.\n *\n * @param privateKey - Sender's private memo key (string WIF format or PrivateKey instance)\n * @param publicKey - Recipient's public memo key (string or PublicKey instance)\n * @param memo - Message to encrypt (must start with '#' for encryption)\n * @param testNonce - Optional nonce for testing (advanced usage)\n * @returns Encrypted memo string prefixed with '#'\n * @throws Error if encryption is not supported in current environment\n */\nconst encode = (\n privateKey: string | PrivateKey,\n publicKey: string | PublicKey,\n memo: string,\n testNonce?: any\n): string => {\n if (!memo.startsWith('#')) {\n return memo\n }\n memo = memo.substring(1)\n checkEncryption()\n privateKey = toPrivateObj(privateKey)\n publicKey = toPublicObj(publicKey)\n const mbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n mbuf.writeVString(memo)\n const memoBuffer = new Uint8Array(mbuf.copy(0, mbuf.offset).toBuffer())\n const { nonce, message, checksum } = Aes.encrypt(privateKey, publicKey, memoBuffer, testNonce)\n const mbuf2 = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n Serializer.Memo(mbuf2, {\n check: checksum,\n encrypted: message,\n from: privateKey.createPublic(),\n nonce,\n to: publicKey\n })\n mbuf2.flip()\n const data = new Uint8Array(mbuf2.toBuffer())\n return '#' + bs58.encode(data)\n}\n\n/**\n * Decrypts an encrypted memo using AES decryption.\n * Messages must start with '#' to be decrypted. Plain text messages are returned unchanged.\n *\n * @param privateKey - Recipient's private memo key (string WIF format or PrivateKey instance)\n * @param memo - Encrypted memo string (must start with '#' for decryption)\n * @returns Decrypted memo content with '#' prefix\n * @throws Error if decryption fails or encryption not supported in current environment\n */\nconst decode = (privateKey: string | PrivateKey, memo: string): string => {\n if (!memo.startsWith('#')) {\n return memo\n }\n memo = memo.substring(1)\n checkEncryption()\n privateKey = toPrivateObj(privateKey)\n // memo = bs58.decode(memo)\n let memoBuffer = Deserializer.Memo(bs58.decode(memo))\n const { from, to, nonce, check, encrypted } = memoBuffer\n const pubkey = privateKey.createPublic().toString()\n const otherpub =\n pubkey === new PublicKey(from.key).toString() ? new PublicKey(to.key) : new PublicKey(from.key)\n memoBuffer = Aes.decrypt(privateKey, otherpub, nonce, encrypted, check)\n const mbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n mbuf.append(memoBuffer)\n mbuf.flip()\n return '#' + mbuf.readVString()\n}\n\nlet encodeTest: boolean | undefined\nconst checkEncryption = () => {\n if (encodeTest === undefined) {\n let plaintext\n encodeTest = true // prevent infinate looping\n try {\n const wif = '5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw'\n const pubkey = 'STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA'\n const cyphertext = encode(wif, pubkey, '#memo爱')\n plaintext = decode(wif, cyphertext)\n } finally {\n encodeTest = plaintext === '#memo爱'\n }\n }\n if (encodeTest === false) {\n throw new Error('This environment does not support encryption.')\n }\n}\n\nconst toPrivateObj = (o: string | PrivateKey): PrivateKey => {\n if (typeof o === 'string') {\n return PrivateKey.fromString(o)\n } else {\n return o\n }\n}\nconst toPublicObj = (o: string | PublicKey): PublicKey => {\n if (typeof o === 'string') {\n return PublicKey.fromString(o)\n } else {\n return o\n }\n}\n\n/**\n * Memo utilities for encrypting and decrypting private messages between Hive users.\n * Uses AES encryption with ECDH key exchange for secure communication.\n *\n * Messages must start with '#' to be encrypted/decrypted.\n * Plain text messages (without '#') are returned unchanged.\n *\n * @example\n * ```typescript\n * import { Memo, PrivateKey, PublicKey } from 'hive-tx'\n *\n * // Encrypt a message\n * const encrypted = Memo.encode(senderPrivateKey, recipientPublicKey, '#Hello World')\n *\n * // Decrypt a message\n * const decrypted = Memo.decode(recipientPrivateKey, encrypted)\n * console.log(decrypted) // '#Hello World'\n * ```\n */\nexport const Memo = {\n decode,\n encode\n}\n","import { Serializer } from './serializer'\nimport { ByteBuffer } from './ByteBuffer'\nimport { PublicKey } from './PublicKey'\nimport { bytesToHex } from '@noble/hashes/utils.js'\n\nexport interface WitnessProps {\n account_creation_fee?: string\n account_subsidy_budget?: number\n account_subsidy_decay?: number\n key: PublicKey | string\n maximum_block_size?: number\n new_signing_key?: PublicKey | string | null\n hbd_exchange_rate?: { base: string; quote: string }\n hbd_interest_rate?: number\n url?: string\n}\n\n/** Return null for a valid username */\nexport const validateUsername = (username: string): null | string => {\n let suffix = 'Account name should '\n if (!username) {\n return suffix + 'not be empty.'\n }\n const length = username.length\n if (length < 3) {\n return suffix + 'be longer.'\n }\n if (length > 16) {\n return suffix + 'be shorter.'\n }\n if (/\\./.test(username)) {\n suffix = 'Each account segment should '\n }\n const ref = username.split('.')\n const len = ref.length\n for (let i = 0; i < len; i++) {\n const label = ref[i]\n if (!/^[a-z]/.test(label)) {\n return suffix + 'start with a lowercase letter.'\n }\n if (!/^[a-z0-9-]*$/.test(label)) {\n return suffix + 'have only lowercase letters, digits, or dashes.'\n }\n if (!/[a-z0-9]$/.test(label)) {\n return suffix + 'end with a lowercase letter or digit.'\n }\n if (label.length < 3) {\n return suffix + 'be longer.'\n }\n }\n return null\n}\n\nexport const operations = {\n vote: 0,\n comment: 1,\n transfer: 2,\n transfer_to_vesting: 3,\n withdraw_vesting: 4,\n limit_order_create: 5,\n limit_order_cancel: 6,\n feed_publish: 7,\n convert: 8,\n account_create: 9,\n account_update: 10,\n witness_update: 11,\n account_witness_vote: 12,\n account_witness_proxy: 13,\n pow: 14,\n custom: 15,\n report_over_production: 16,\n delete_comment: 17,\n custom_json: 18,\n comment_options: 19,\n set_withdraw_vesting_route: 20,\n limit_order_create2: 21,\n claim_account: 22,\n create_claimed_account: 23,\n request_account_recovery: 24,\n recover_account: 25,\n change_recovery_account: 26,\n escrow_transfer: 27,\n escrow_dispute: 28,\n escrow_release: 29,\n pow2: 30,\n escrow_approve: 31,\n transfer_to_savings: 32,\n transfer_from_savings: 33,\n cancel_transfer_from_savings: 34,\n custom_binary: 35,\n decline_voting_rights: 36,\n reset_account: 37,\n set_reset_account: 38,\n claim_reward_balance: 39,\n delegate_vesting_shares: 40,\n account_create_with_delegation: 41,\n witness_set_properties: 42,\n account_update2: 43,\n create_proposal: 44,\n update_proposal_votes: 45,\n remove_proposal: 46,\n update_proposal: 47,\n collateralized_convert: 48,\n recurrent_transfer: 49,\n // virtual ops\n fill_convert_request: 50,\n author_reward: 51,\n curation_reward: 52,\n comment_reward: 53,\n liquidity_reward: 54,\n interest: 55,\n fill_vesting_withdraw: 56,\n fill_order: 57,\n shutdown_witness: 58,\n fill_transfer_from_savings: 59,\n hardfork: 60,\n comment_payout_update: 61,\n return_vesting_delegation: 62,\n comment_benefactor_reward: 63,\n producer_reward: 64,\n clear_null_account_balance: 65,\n proposal_pay: 66,\n sps_fund: 67,\n hardfork_hive: 68,\n hardfork_hive_restore: 69,\n delayed_voting: 70,\n consolidate_treasury_balance: 71,\n effective_comment_vote: 72,\n ineffective_delete_comment: 73,\n sps_convert: 74,\n expired_account_notification: 75,\n changed_recovery_account: 76,\n transfer_to_vesting_completed: 77,\n pow_reward: 78,\n vesting_shares_split: 79,\n account_created: 80,\n fill_collateralized_convert_request: 81,\n system_warning: 82,\n fill_recurrent_transfer: 83,\n failed_recurrent_transfer: 84,\n limit_order_cancelled: 85,\n producer_missed: 86,\n proposal_fee: 87,\n collateralized_convert_immediate_conversion: 88,\n escrow_approved: 89,\n escrow_rejected: 90,\n proxy_cleared: 91,\n declined_voting_rights: 92\n}\n\n/**\n * Make bitmask filter to be used with get_account_history call\n */\nexport const makeBitMaskFilter = (allowedOperations: number[]): [string | null, string | null] => {\n return allowedOperations\n .reduce(reduceFunction, [BigInt(0), BigInt(0)])\n .map((value: bigint) => (value !== BigInt(0) ? value.toString() : null)) as [string | null, string | null]\n}\nconst reduceFunction = (\n [low, high]: [bigint, bigint],\n allowedOperation: number\n): [bigint, bigint] => {\n if (allowedOperation < 64) {\n return [low | (BigInt(1) << BigInt(allowedOperation)), high]\n } else {\n return [low, high | (BigInt(1) << BigInt(allowedOperation - 64))]\n }\n}\n\nexport const buildWitnessSetProperties = (\n owner: string,\n props: WitnessProps\n): ['witness_set_properties', { extensions: never[]; owner: string; props: any }] => {\n const data = {\n extensions: [],\n owner,\n props: []\n }\n for (const key of Object.keys(props)) {\n if ((props as any)[key] === undefined) continue\n let type\n switch (key) {\n case 'key':\n case 'new_signing_key':\n type = Serializer.PublicKey\n break\n case 'account_subsidy_budget':\n case 'account_subsidy_decay':\n case 'maximum_block_size':\n type = Serializer.UInt32\n break\n case 'hbd_interest_rate':\n type = Serializer.UInt16\n break\n case 'url':\n type = Serializer.String\n break\n case 'hbd_exchange_rate':\n type = Serializer.Price\n break\n case 'account_creation_fee':\n type = Serializer.Asset\n break\n default:\n throw new Error(`Unknown witness prop: ${key}`)\n }\n data.props.push([key, serialize(type, props[key])])\n }\n data.props.sort((a: any, b: any) => a[0].localeCompare(b[0]))\n return ['witness_set_properties', data]\n}\n\nconst serialize = (serializer: any, data: any) => {\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n serializer(buffer, data)\n buffer.flip()\n // `props` values must be hex\n return bytesToHex(new Uint8Array(buffer.toBuffer()))\n}\n","/**\n * Re-exports hive-tx APIs and provides helper functions that bridge\n * API differences from the legacy dhive library.\n */\n\nimport {\n PrivateKey,\n Transaction,\n callRPCBroadcast,\n type BroadcastResult,\n} from \"../../hive-tx\";\nimport type { Operation, OperationName, OperationBody } from \"../../hive-tx\";\nimport { sha256 as nobleSha256 } from \"@noble/hashes/sha2.js\";\n\n// ── Re-exports ─────────────────────────────────────────────────────────────\n\nexport {\n Transaction as HiveTxTransaction,\n PrivateKey,\n PublicKey,\n Signature,\n Memo,\n config as hiveTxConfig,\n callRPC,\n callRPCBroadcast,\n callREST,\n callWithQuorum,\n utils as hiveTxUtils,\n} from \"../../hive-tx\";\n\nexport type {\n Operation,\n OperationName,\n OperationBody,\n AssetSymbol,\n BroadcastResult,\n AccountCreateOperation,\n CustomJsonOperation,\n // Referenced in ConfigManager.setResilience's public signature — must be\n // nameable from the main entry, not only from @ecency/sdk/hive.\n ResilienceOptions,\n} from \"../../hive-tx\";\n\n// ── Compat types (matching dhive shapes used throughout the codebase) ──────\n\n/** Compatible with dhive's TransactionConfirmation from broadcast_transaction_synchronous */\nexport interface TransactionConfirmation {\n id: string;\n block_num: number;\n trx_num: number;\n expired: boolean;\n}\n\n/** Authority role type used in key management */\nexport type AuthorityType = \"owner\" | \"active\" | \"posting\" | \"memo\";\n\n/** SMT asset format (NAI representation) used in transaction history */\nexport interface SMTAsset {\n amount: string;\n precision: number;\n nai: string;\n}\n\n/** RC account data from rc_api.find_rc_accounts */\nexport interface RCAccount {\n account: string;\n rc_manabar: {\n current_mana: string | number;\n last_update_time: number;\n };\n max_rc: string | number;\n max_rc_creation_adjustment: {\n amount: string;\n precision: number;\n nai: string;\n };\n delegated_rc: number;\n received_delegated_rc: number;\n}\n\n// ── Helpers ────────────────────────────────────────────────────────────────\n\n/**\n * Compute SHA-256 hash of a string or Uint8Array.\n * Drop-in replacement for dhive's `cryptoUtils.sha256()`.\n */\nexport function sha256(input: string | Uint8Array): Uint8Array {\n let data: Uint8Array;\n if (typeof input === \"string\") {\n // Inline UTF-8 encode — avoids TextEncoder which is unavailable on some\n // runtimes (React Native / Hermes).\n const bytes: number[] = [];\n for (let i = 0; i < input.length; i++) {\n let c = input.charCodeAt(i);\n if (c < 0x80) {\n bytes.push(c);\n } else if (c < 0x800) {\n bytes.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f));\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < input.length) {\n const next = input.charCodeAt(++i);\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff);\n bytes.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f));\n } else {\n bytes.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f));\n }\n }\n data = new Uint8Array(bytes);\n } else {\n data = input;\n }\n return nobleSha256(data);\n}\n\n/** Check if a string is a valid WIF-encoded private key. */\nexport function isWif(key: string): boolean {\n try {\n PrivateKey.fromString(key);\n return true;\n } catch {\n return false;\n }\n}\n\n/**\n * Sign and broadcast operations, returning a dhive-compatible TransactionConfirmation.\n *\n * Uses broadcast_transaction_synchronous so the response includes block_num/trx_num,\n * matching the shape that the rest of the codebase expects from dhive's\n * `client.broadcast.sendOperations()`.\n *\n * @deprecated Prefer {@link broadcastOperationsAsync} (the default for\n * `useBroadcastMutation`); poll `transaction_status_api` if you need block\n * confirmation. Kept only for explicit `broadcastMode: 'sync'` opt-ins.\n */\nexport async function broadcastOperations(\n ops: Operation[],\n key: PrivateKey\n): Promise {\n const tx = new Transaction();\n for (const op of ops) {\n await tx.addOperation(\n op[0] as OperationName,\n op[1] as OperationBody\n );\n }\n tx.sign(key);\n return callRPCBroadcast(\"condenser_api.broadcast_transaction_synchronous\", [\n tx.transaction,\n ]);\n}\n\n/**\n * Sign and broadcast operations without waiting for block inclusion.\n *\n * Uses broadcast_transaction which returns as soon as the node accepts the\n * transaction into its mempool. Transport and RPC errors (network failures,\n * invalid operations, expired transactions) are still thrown immediately -\n * the only thing skipped is the wait for the transaction to appear in a block.\n *\n * Returns { tx_id, status: 'unknown' }. To confirm block inclusion afterward,\n * poll transaction_status_api with the returned tx_id.\n *\n * Prefer this for operations where faster response matters more than\n * immediate confirmation (e.g. votes, reblogs, follows).\n *\n * Use broadcastOperations() when you need block_num/trx_num confirmation\n * (e.g. transfers, account updates, key changes).\n */\nexport async function broadcastOperationsAsync(\n ops: Operation[],\n key: PrivateKey\n): Promise {\n const tx = new Transaction();\n for (const op of ops) {\n await tx.addOperation(\n op[0] as OperationName,\n op[1] as OperationBody\n );\n }\n tx.sign(key);\n return tx.broadcast(false);\n}\n\n// ── Mana calculations (ported from dhive's RCAPI) ──────────────────────────\n\ninterface Manabar {\n current_mana: string | number;\n last_update_time: number;\n}\n\ninterface ManaResult {\n current_mana: number;\n max_mana: number;\n percentage: number;\n}\n\nconst MANA_REGENERATION_SECONDS = 432000; // 5 days\n\nfunction calculateManabar(maxMana: number, manabar: Manabar): ManaResult {\n const delta = Date.now() / 1000 - manabar.last_update_time;\n let currentMana =\n Number(manabar.current_mana) +\n (delta * maxMana) / MANA_REGENERATION_SECONDS;\n let percentage = Math.round((currentMana / maxMana) * 10000);\n if (!isFinite(percentage) || percentage < 0) {\n percentage = 0;\n } else if (percentage > 10000) {\n percentage = 10000;\n }\n return { current_mana: currentMana, max_mana: maxMana, percentage };\n}\n\n/**\n * Get effective vesting shares for an account (matching dhive's getVests).\n * Subtracts delegated, adds received, accounts for pending withdrawals.\n */\nfunction getVests(account: any): number {\n const vests = parseFloat(account.vesting_shares);\n const delegated = parseFloat(account.delegated_vesting_shares);\n const received = parseFloat(account.received_vesting_shares);\n const withdrawRate = parseFloat(account.vesting_withdraw_rate);\n const alreadyWithdrawn =\n (Number(account.to_withdraw) - Number(account.withdrawn)) / 1e6;\n const withdrawVests = Math.min(withdrawRate, alreadyWithdrawn);\n return vests - withdrawVests - delegated + received;\n}\n\n/** Calculate voting power mana (equivalent to dhive client.rc.calculateVPMana) */\nexport function calculateVPMana(account: any): ManaResult {\n const maxMana = getVests(account) * 1e6;\n return calculateManabar(maxMana, account.voting_manabar);\n}\n\n/** Calculate RC mana (equivalent to dhive client.rc.calculateRCMana) */\nexport function calculateRCMana(rcAccount: RCAccount): ManaResult {\n return calculateManabar(\n Number(rcAccount.max_rc),\n rcAccount.rc_manabar\n );\n}\n\n// setHiveTxNodes and initHiveTx removed — config is now unified.\n// Use hiveTxConfig directly or ConfigManager.setHiveNodes().\n","/**\n * Chain error handling utilities\n * Extracted from web's operations.ts and mobile's dhive.ts error handling patterns\n */\n\nexport enum ErrorType {\n COMMON = \"common\",\n INFO = \"info\",\n INSUFFICIENT_RESOURCE_CREDITS = \"insufficient_resource_credits\",\n MISSING_AUTHORITY = \"missing_authority\",\n TOKEN_EXPIRED = \"token_expired\",\n NETWORK = \"network\",\n TIMEOUT = \"timeout\",\n VALIDATION = \"validation\",\n}\n\nexport interface ParsedChainError {\n message: string;\n type: ErrorType;\n originalError?: any;\n}\n\n/**\n * Parses Hive blockchain errors into standardized format.\n * Extracted from web's operations.ts and mobile's dhive.ts error handling.\n *\n * @param error - The error object or string from a blockchain operation\n * @returns Parsed error with user-friendly message and categorized type\n *\n * @example\n * ```typescript\n * try {\n * await vote(...);\n * } catch (error) {\n * const parsed = parseChainError(error);\n * console.log(parsed.message); // \"Insufficient Resource Credits. Please wait or power up.\"\n * console.log(parsed.type); // ErrorType.INSUFFICIENT_RESOURCE_CREDITS\n * }\n * ```\n */\nexport function parseChainError(error: any): ParsedChainError {\n // Extract error strings from various error formats\n // Check both error_description and message independently for pattern matching\n const errorDescription = error?.error_description ? String(error.error_description) : '';\n const errorMessage = error?.message ? String(error.message) : '';\n // HiveSigner throws plain objects like { error: \"unauthorized\", error_description: \"...\" }\n const errorCode = error?.error ? String(error.error) : '';\n const errorString = errorDescription || errorMessage || String(error || '');\n\n // Helper function to test patterns against all error fields\n const testPattern = (pattern: RegExp): boolean => {\n // Check error code first (e.g. HiveSigner's { error: \"unauthorized\" })\n if (errorCode && pattern.test(errorCode)) return true;\n // Check error_description (priority)\n if (errorDescription && pattern.test(errorDescription)) return true;\n // Then check message\n if (errorMessage && pattern.test(errorMessage)) return true;\n // Finally check fallback errorString (handles plain string inputs)\n if (errorString && pattern.test(errorString)) return true;\n return false;\n };\n\n // Resource credits (from both web and mobile patterns)\n if (\n testPattern(/please wait to transact/i) ||\n testPattern(/insufficient rc/i) ||\n testPattern(/rc mana|rc account|resource credits/i)\n ) {\n return {\n message: \"Insufficient Resource Credits. Please wait or power up.\",\n type: ErrorType.INSUFFICIENT_RESOURCE_CREDITS,\n originalError: error,\n };\n }\n\n // Min comment interval (from web operations.ts line 29)\n if (testPattern(/you may only post once every/i)) {\n return {\n message: \"Please wait before posting again (minimum 3 second interval between comments).\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Identical vote (from web operations.ts line 31)\n if (testPattern(/your current vote on this comment is identical/i)) {\n return {\n message: \"You have already voted with the same weight.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Must claim something (from web operations.ts line 33)\n if (testPattern(/must claim something/i)) {\n return {\n message: \"You must claim rewards before performing this action.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Cannot claim that much VESTS (from web operations.ts line 35)\n if (testPattern(/cannot claim that much vests/i)) {\n return {\n message: \"Cannot claim that amount. Please check your pending rewards.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Cannot delete comment with positive votes (from web operations.ts line 42)\n if (testPattern(/cannot delete a comment with net positive/i)) {\n return {\n message: \"Cannot delete a comment with positive votes.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Comment has children (from web operations.ts line 44)\n if (testPattern(/children == 0/i)) {\n return {\n message: \"Cannot delete a comment with replies.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Comment already paid out (from web operations.ts line 46)\n if (testPattern(/comment_cashout/i)) {\n return {\n message: \"Cannot modify a comment that has already been paid out.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Voting on paid out post (from web operations.ts line 48)\n if (testPattern(/votes evaluating for comment that is paid out is forbidden/i)) {\n return {\n message: \"Cannot vote on posts that have already been paid out.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // No key available (SDK internal - from broadcastWithMethod when key not stored)\n if (testPattern(/no (active|owner|posting|memo) key available/i)) {\n return {\n message: \"Key not available. Please provide your key to sign this operation.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing active authority. Hive nodes return \"missing required active\n // authority\"; web operations.ts also throws the short form. Match both so the\n // auth fallback (auth-upgrade dialog) fires instead of misclassifying as a\n // generic chain error.\n if (testPattern(/missing (required )?active authority/i)) {\n return {\n message: \"Missing active authority. This operation requires your active key.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing owner authority (\"missing required owner authority\" or short form)\n if (testPattern(/missing (required )?owner authority/i)) {\n return {\n message: \"Missing owner authority. This operation requires your owner key.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing posting authority (general pattern)\n if (testPattern(/missing (required )?posting authority/i)) {\n return {\n message: \"Missing posting authority. Please check your login method.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Token expired / unauthorized (HiveSigner OAuth2 errors + general patterns)\n // HiveSigner returns: { error: \"invalid_grant\" } for invalid/expired tokens,\n // { error: \"unauthorized_access\" } for IP-based access denial\n if (\n errorCode === 'invalid_grant' ||\n errorCode === 'unauthorized_access' ||\n testPattern(/token expired/i) ||\n testPattern(/invalid token/i) ||\n testPattern(/\\bunauthorized\\b/i) ||\n testPattern(/\\bforbidden\\b/i)\n ) {\n return {\n message: \"Authentication token expired. Please log in again.\",\n type: ErrorType.TOKEN_EXPIRED,\n originalError: error,\n };\n }\n\n // Already reblogged\n if (testPattern(/has already reblogged/i) || testPattern(/already reblogged this post/i)) {\n return {\n message: \"You have already reblogged this post.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Duplicate transaction\n if (testPattern(/duplicate transaction/i)) {\n return {\n message: \"This transaction has already been processed.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Network errors (more specific patterns to avoid false positives)\n if (\n testPattern(/econnrefused/i) ||\n testPattern(/connection refused/i) ||\n testPattern(/failed to fetch/i) ||\n testPattern(/\\bnetwork[-\\s]?(request|error|timeout|unreachable|down|failed)\\b/i)\n ) {\n return {\n message: \"Network error. Please check your connection and try again.\",\n type: ErrorType.NETWORK,\n originalError: error,\n };\n }\n\n // Timeout errors\n if (testPattern(/timeout/i) || testPattern(/timed out/i)) {\n return {\n message: \"Request timed out. Please try again.\",\n type: ErrorType.TIMEOUT,\n originalError: error,\n };\n }\n\n // Account doesn't exist\n if (testPattern(/account.*does not exist/i) || testPattern(/account not found/i)) {\n return {\n message: \"Account not found. Please check the username.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Invalid memo key\n if (testPattern(/invalid memo key/i)) {\n return {\n message: \"Invalid memo key. Cannot encrypt message.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Insufficient funds (require both words in same string to avoid cross-field false positives)\n if (testPattern(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i)) {\n return {\n message: \"Insufficient funds for this transaction.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Generic validation errors (use word boundaries to be more specific)\n if (testPattern(/\\b(invalid|validation)\\b/i)) {\n // Truncate to 150 chars like other branches\n const message = (error?.message || errorString).substring(0, 150) || \"Validation error occurred\";\n return {\n message,\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Default: return original error message\n // Check for error_description first (from web operations.ts line 65-72)\n if (error?.error_description && typeof error.error_description === \"string\") {\n return {\n message: error.error_description.substring(0, 150),\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Then check message field\n if (error?.message && typeof error.message === \"string\") {\n return {\n message: error.message.substring(0, 150),\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Handle plain objects without message property (avoid \"[object Object]\")\n let message: string;\n if (typeof error === 'object' && error !== null) {\n // Check for common error properties\n if (error.error_description) {\n message = String(error.error_description);\n } else if (error.code) {\n message = `Error code: ${error.code}`;\n } else if (errorString && errorString !== '[object Object]') {\n message = errorString.substring(0, 150);\n } else {\n message = \"Unknown error occurred\";\n }\n } else {\n message = errorString.substring(0, 150) || \"Unknown error occurred\";\n }\n\n return {\n message,\n type: ErrorType.COMMON,\n originalError: error,\n };\n}\n\n/**\n * Formats error for display to user.\n * Returns tuple of [message, type] for backward compatibility with existing code.\n *\n * This function maintains compatibility with the old formatError signature from\n * web's operations.ts (line 59-84) and mobile's dhive.ts error handling.\n *\n * @param error - The error object or string\n * @returns Tuple of [user-friendly message, error type]\n *\n * @example\n * ```typescript\n * try {\n * await transfer(...);\n * } catch (error) {\n * const [message, type] = formatError(error);\n * showToast(message, type);\n * }\n * ```\n */\nexport function formatError(error: any): [string, ErrorType] {\n const parsed = parseChainError(error);\n return [parsed.message, parsed.type];\n}\n\n/**\n * Checks if error indicates missing authority and should trigger auth fallback.\n * Used by the SDK's useBroadcastMutation to determine if it should retry with\n * an alternate authentication method.\n *\n * @param error - The error object or string\n * @returns true if auth fallback should be attempted\n *\n * @example\n * ```typescript\n * try {\n * await broadcast(operations);\n * } catch (error) {\n * if (shouldTriggerAuthFallback(error)) {\n * // Try with alternate auth method\n * await broadcastWithHiveAuth(operations);\n * }\n * }\n * ```\n */\nexport function shouldTriggerAuthFallback(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.MISSING_AUTHORITY || type === ErrorType.TOKEN_EXPIRED;\n}\n\n/**\n * Checks if error is a resource credits (RC) error.\n * Useful for showing specific UI feedback about RC issues.\n *\n * @param error - The error object or string\n * @returns true if the error is related to insufficient RC\n *\n * @example\n * ```typescript\n * try {\n * await vote(...);\n * } catch (error) {\n * if (isResourceCreditsError(error)) {\n * showRCWarning(); // Show specific RC education/power up UI\n * }\n * }\n * ```\n */\nexport function isResourceCreditsError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.INSUFFICIENT_RESOURCE_CREDITS;\n}\n\n/**\n * Checks if error is informational (not critical).\n * Informational errors typically don't need retry logic.\n *\n * @param error - The error object or string\n * @returns true if the error is informational\n */\nexport function isInfoError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.INFO;\n}\n\n/**\n * Checks if error is network-related and should be retried.\n *\n * @param error - The error object or string\n * @returns true if the error is network-related\n */\nexport function isNetworkError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.NETWORK || type === ErrorType.TIMEOUT;\n}\n","import {\n useMutation,\n type MutationKey,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { PrivateKey, RPCError } from \"../../../hive-tx\";\nimport type { Operation } from \"../../../hive-tx\";\nimport { broadcastOperations, broadcastOperationsAsync, type TransactionConfirmation } from \"@/modules/core/hive-tx\";\nimport type { BroadcastResult } from \"../../../hive-tx\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { shouldTriggerAuthFallback } from \"@/modules/core/errors\";\nimport type { AuthorityLevel } from \"@/modules/operations/authority-map\";\nimport hs from \"hivesigner\";\n\n/**\n * Broadcast mode controls whether the SDK waits for block inclusion.\n *\n * - `'async'` (default): Uses `broadcast_transaction` — returns once the node\n * accepts the transaction into its mempool. Transport and RPC errors are\n * still thrown immediately; only the block-inclusion wait is skipped.\n *\n * - `'sync'`: Uses `broadcast_transaction_synchronous` — waits for block\n * inclusion and returns `block_num`/`trx_num`. Deprecated; prefer `'async'`\n * and poll `transaction_status_api` if you need block confirmation.\n */\nexport type BroadcastMode = 'sync' | 'async';\n\n/**\n * Broadcasts operations using a specific auth method.\n *\n * @param method - Auth method to use ('key', 'hiveauth', 'hivesigner', 'keychain', 'custom')\n * @param username - Hive username to broadcast for\n * @param ops - Operations to broadcast\n * @param auth - AuthContextV2 with adapter and configuration\n * @param authority - Key authority to use (posting, active, owner, or memo)\n * @param fetchedKey - Optional pre-fetched key to avoid duplicate fetches\n * @param fetchedToken - Optional pre-fetched access token to avoid duplicate fetches\n * @param broadcastMode - Whether to wait for block inclusion ('sync') or just mempool acceptance ('async')\n * @returns Transaction confirmation from the blockchain\n * @throws Error if method is not available or broadcast fails\n */\nasync function broadcastWithMethod(\n method: string,\n username: string,\n ops: Operation[],\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n fetchedKey?: string | null,\n fetchedToken?: string | null,\n broadcastMode: BroadcastMode = 'async'\n): Promise {\n const adapter = auth?.adapter;\n\n switch (method) {\n case 'key': {\n if (!adapter) {\n throw new Error('No adapter provided for key-based auth');\n }\n\n // Use pre-fetched key if provided, otherwise fetch it\n let key: string | null | undefined = fetchedKey;\n\n if (key === undefined) {\n // Key not pre-fetched, fetch it now based on authority\n switch (authority) {\n case 'owner':\n if (adapter.getOwnerKey) {\n key = await adapter.getOwnerKey(username);\n } else {\n throw new Error(\n `Owner key not supported by adapter. Owner operations (like account recovery) ` +\n `require master password login or manual key entry.`\n );\n }\n break;\n\n case 'active':\n if (adapter.getActiveKey) {\n key = await adapter.getActiveKey(username);\n }\n break;\n\n case 'memo':\n if (adapter.getMemoKey) {\n key = await adapter.getMemoKey(username);\n } else {\n throw new Error(\n `Memo key not supported by adapter. Use memo encryption methods instead.`\n );\n }\n break;\n\n case 'posting':\n default:\n key = await adapter.getPostingKey(username);\n break;\n }\n }\n\n if (!key) {\n throw new Error(`No ${authority} key available for ${username}`);\n }\n\n // Attempt broadcast with key\n const privateKey = PrivateKey.fromString(key);\n if (broadcastMode === 'async') {\n return await broadcastOperationsAsync(ops, privateKey);\n }\n return await broadcastOperations(ops, privateKey);\n }\n\n case 'hiveauth': {\n if (!adapter?.broadcastWithHiveAuth) {\n throw new Error('HiveAuth not supported by adapter');\n }\n return await adapter.broadcastWithHiveAuth(username, ops, authority);\n }\n\n case 'hivesigner': {\n if (!adapter) {\n throw new Error('No adapter provided for HiveSigner auth');\n }\n\n // Access tokens only have posting authority — for active/owner/memo ops,\n // go directly to platform-specific HiveSigner broadcast (e.g., redirect to hivesigner.com)\n if (authority !== 'posting') {\n if (adapter.broadcastWithHiveSigner) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n throw new Error(`HiveSigner access token cannot sign ${authority} operations. No platform broadcast available.`);\n }\n\n // Try direct API broadcast with access token first (posting ops only)\n const token = fetchedToken !== undefined\n ? fetchedToken\n : await adapter.getAccessToken(username);\n\n if (token) {\n try {\n const client = new hs.Client({ accessToken: token });\n const response = await client.broadcast(ops);\n return response.result;\n } catch (tokenError) {\n // Token broadcast failed — try platform-specific HiveSigner broadcast\n if (adapter.broadcastWithHiveSigner && shouldTriggerAuthFallback(tokenError)) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n throw tokenError;\n }\n }\n\n // No token available — try platform-specific HiveSigner broadcast\n if (adapter.broadcastWithHiveSigner) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n\n throw new Error(`No access token available for ${username}`);\n }\n\n case 'keychain': {\n if (!adapter?.broadcastWithKeychain) {\n throw new Error('Keychain not supported by adapter');\n }\n return await adapter.broadcastWithKeychain(username, ops, authority);\n }\n\n case 'custom': {\n if (!auth?.broadcast) {\n throw new Error('No custom broadcast function provided');\n }\n return (await auth.broadcast(ops, authority)) as TransactionConfirmation;\n }\n\n default:\n throw new Error(`Unknown auth method: ${method}`);\n }\n}\n\n/**\n * Attempts to broadcast operations using multiple auth methods in fallback chain.\n * Implements sophisticated fallback pattern from mobile app.\n *\n * @param username - Hive username to broadcast for\n * @param ops - Operations to broadcast\n * @param auth - AuthContextV2 with adapter and fallback configuration\n * @param authority - Key authority to use ('posting' | 'active' | 'owner' | 'memo'), defaults to 'posting'\n * @returns Transaction confirmation from the blockchain\n * @throws Error if all auth methods fail or if a non-auth error occurs\n *\n * @remarks\n * **Preferred Behavior (when adapter.getLoginType exists):**\n * - Calls adapter.getLoginType() to determine user's actual auth method\n * - Uses ONLY that method (no fallbacks) - more predictable and faster\n * - If it fails, throws the error immediately\n *\n * **Fallback Behavior (for backward compatibility):**\n * - Tries each auth method in the fallback chain order\n * - Only continues to next method if error is auth-related (missing authority, token expired)\n * - Stops immediately for non-auth errors (RC exhaustion, network errors, validation errors)\n * - Collects all errors and provides detailed failure message\n *\n * @example\n * ```typescript\n * // Preferred: Adapter with getLoginType (single method, no fallbacks)\n * const auth: AuthContextV2 = {\n * adapter: myAdapter, // includes getLoginType()\n * };\n *\n * // Legacy: Explicit fallback chain (tries multiple methods)\n * const auth: AuthContextV2 = {\n * adapter: myAdapter,\n * fallbackChain: ['key', 'hiveauth', 'hivesigner'],\n * };\n * ```\n */\nasync function broadcastWithFallback(\n username: string,\n ops: Operation[],\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n broadcastMode: BroadcastMode = 'async'\n): Promise {\n const adapter = auth?.adapter;\n\n // PREFERRED APPROACH: If adapter provides getLoginType, use smart auth strategy\n // This avoids unnecessary fallback attempts and is more predictable\n if (adapter?.getLoginType) {\n const loginType = await adapter.getLoginType(username, authority);\n\n if (loginType) {\n // SMART AUTH STRATEGY: Optimize based on login type + authority + credentials\n\n // Check if user has granted ecency.app posting authority\n const hasPostingAuth = adapter.hasPostingAuthorization\n ? await adapter.hasPostingAuthorization(username)\n : false;\n\n // OPTIMIZATION: Use HiveSigner token for posting ops when posting auth is granted\n // This is faster than direct key signing or HiveAuth for key-based logins\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'key'\n ) {\n try {\n // Try HiveSigner API first (faster)\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Only fallback if this is an auth-related error\n // Otherwise, rethrow the original error (e.g., network errors, validation errors)\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n // Fallback to direct key signing if token auth method fails\n console.warn('[SDK] HiveSigner token auth failed, falling back to key:', error);\n }\n }\n\n // OPTIMIZATION: Use HiveSigner token for keychain/MetaMask users with posting auth (faster, no popup)\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'keychain'\n ) {\n try {\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n console.warn('[SDK] HiveSigner token auth failed, falling back to keychain/snap:', error);\n }\n }\n\n // OPTIMIZATION: Use HiveSigner token for HiveAuth users with posting auth (faster)\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'hiveauth'\n ) {\n try {\n // Try HiveSigner API first (faster)\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Only fallback if this is an auth-related error\n // Otherwise, rethrow the original error (e.g., network errors, validation errors)\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n // Fallback to HiveAuth if token auth method fails\n console.warn('[SDK] HiveSigner token auth failed, falling back to HiveAuth:', error);\n }\n }\n\n // Use user's actual login method\n try {\n return await broadcastWithMethod(loginType, username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Check if error is due to missing authority (e.g., posting key trying active op)\n if (shouldTriggerAuthFallback(error)) {\n // Show auth upgrade UI if available (only for posting/active operations)\n if (\n adapter.showAuthUpgradeUI &&\n (authority === 'posting' || authority === 'active')\n ) {\n // Guard against empty operations array\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`Operation requires ${authority} authority. User declined alternate auth.`);\n }\n\n // User selected a specific method - delegate to broadcastWithMethod\n // This handles all auth methods (hiveauth, hivesigner, key, keychain, custom, etc.)\n // broadcastWithMethod already contains all necessary validation and method-specific logic\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n }\n\n // Not an auth error, or no upgrade UI available - throw original error\n throw error;\n }\n }\n\n // loginType is null — user's auth method is unknown (e.g., incomplete login data)\n if (authority === 'posting') {\n // For posting ops, try HiveSigner — access token is usually available for all logins\n try {\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (hsError) {\n if (shouldTriggerAuthFallback(hsError) && adapter.showAuthUpgradeUI) {\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`No login type available for ${username}. Please log in again.`);\n }\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n throw hsError;\n }\n } else if (authority === 'active' && adapter.showAuthUpgradeUI) {\n // For active ops, show auth upgrade dialog — no silent fallback possible\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`Operation requires ${authority} authority. User declined alternate auth.`);\n }\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n }\n\n // FALLBACK APPROACH: For backward compatibility, use fallback chain\n // This is only used if adapter doesn't provide getLoginType\n const chain = auth?.fallbackChain ?? ['key', 'hiveauth', 'hivesigner', 'keychain', 'custom'];\n const errors: Map = new Map();\n\n for (const method of chain) {\n try {\n // Check if method is available before attempting\n let shouldSkip = false;\n let skipReason = '';\n let prefetchedKey: string | null | undefined;\n let prefetchedToken: string | null | undefined;\n\n switch (method) {\n case 'key':\n if (!adapter) {\n shouldSkip = true;\n skipReason = 'No adapter provided';\n } else {\n // Pre-fetch key to check availability (will be reused in broadcast)\n let key: string | null | undefined;\n\n switch (authority) {\n case 'owner':\n if (adapter.getOwnerKey) {\n key = await adapter.getOwnerKey(username);\n }\n break;\n case 'active':\n if (adapter.getActiveKey) {\n key = await adapter.getActiveKey(username);\n }\n break;\n case 'memo':\n if (adapter.getMemoKey) {\n key = await adapter.getMemoKey(username);\n }\n break;\n case 'posting':\n default:\n key = await adapter.getPostingKey(username);\n break;\n }\n\n if (!key) {\n shouldSkip = true;\n skipReason = `No ${authority} key available`;\n } else {\n prefetchedKey = key; // Store for reuse\n }\n }\n break;\n case 'hiveauth':\n if (!adapter?.broadcastWithHiveAuth) {\n shouldSkip = true;\n skipReason = 'HiveAuth not supported by adapter';\n }\n break;\n case 'hivesigner':\n if (!adapter) {\n shouldSkip = true;\n skipReason = 'No adapter provided';\n } else {\n // Pre-fetch token if available (will be reused in broadcast)\n const token = await adapter.getAccessToken(username);\n if (token) {\n prefetchedToken = token; // Store for reuse\n }\n // When no token but adapter exists, don't skip —\n // broadcastWithMethod can fall back to adapter.broadcastWithHiveSigner\n }\n break;\n case 'keychain':\n if (!adapter?.broadcastWithKeychain) {\n shouldSkip = true;\n skipReason = 'Keychain not supported by adapter';\n }\n break;\n case 'custom':\n if (!auth?.broadcast) {\n shouldSkip = true;\n skipReason = 'No custom broadcast function provided';\n }\n break;\n }\n\n if (shouldSkip) {\n errors.set(method, new Error(`Skipped: ${skipReason}`));\n continue;\n }\n\n // Method is available, attempt broadcast with pre-fetched credentials\n return await broadcastWithMethod(method, username, ops, auth, authority, prefetchedKey, prefetchedToken, broadcastMode);\n } catch (error) {\n // Record actual error from failed broadcast attempt\n errors.set(method, error as Error);\n\n // Only continue fallback if error suggests trying another method\n if (!shouldTriggerAuthFallback(error)) {\n // If it's not an auth error, throw immediately (e.g., RC error, network error)\n throw error;\n }\n }\n }\n\n // FIX #2: Improved error message distinguishes between skips and real failures\n const hasRealAttempts = Array.from(errors.values()).some(\n error => !error.message.startsWith('Skipped:')\n );\n\n if (!hasRealAttempts) {\n // All methods were skipped (none attempted)\n const skipReasons = Array.from(errors.entries())\n .map(([method, error]) => `${method}: ${error.message}`)\n .join(', ');\n throw new Error(\n `[SDK][Broadcast] No auth methods attempted for ${username}. ${skipReasons}`\n );\n }\n\n // At least one method was attempted but all failed\n const errorMessages = Array.from(errors.entries())\n .map(([method, error]) => `${method}: ${error.message}`)\n .join(', ');\n\n throw new Error(\n `[SDK][Broadcast] All auth methods failed for ${username}. Errors: ${errorMessages}`\n );\n}\n\n/**\n * React Query mutation hook for broadcasting Hive operations.\n * Supports multiple authentication methods with automatic fallback.\n *\n * @template T - Type of the mutation payload\n * @param mutationKey - React Query mutation key for cache management\n * @param username - Hive username (required for broadcast)\n * @param operations - Function that converts payload to Hive operations\n * @param onSuccess - Success callback after broadcast completes\n * @param auth - Authentication context (supports both legacy AuthContext and new AuthContextV2)\n * @param authority - Key authority to use ('posting' | 'active' | 'owner' | 'memo'), defaults to 'posting'\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Authentication Flow:**\n *\n * 1. **With AuthContextV2 + adapter + enableFallback** (recommended for new code):\n * - Tries auth methods in fallbackChain order\n * - Smart fallback: only retries on auth errors, not RC/network errors\n * - Uses platform adapter for storage, UI, and broadcasting\n *\n * 2. **With legacy AuthContext** (backward compatible):\n * - Tries auth.broadcast() first (custom implementation)\n * - Falls back to postingKey if available\n * - Falls back to accessToken (HiveSigner) if available\n * - Throws if no auth method available\n *\n * **Backward Compatibility:**\n * - All existing code using AuthContext will continue to work\n * - AuthContextV2 extends AuthContext, so it's a drop-in replacement\n * - enableFallback defaults to false if no adapter provided\n *\n * @example\n * ```typescript\n * // New pattern with platform adapter and fallback\n * const mutation = useBroadcastMutation(\n * ['vote'],\n * username,\n * (payload) => [voteOperation(payload)],\n * () => console.log('Success!'),\n * {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * },\n * 'posting'\n * );\n *\n * // Legacy pattern (still works)\n * const mutation = useBroadcastMutation(\n * ['vote'],\n * username,\n * (payload) => [voteOperation(payload)],\n * () => console.log('Success!'),\n * { postingKey: 'wif-key' }\n * );\n * ```\n */\nexport function useBroadcastMutation(\n mutationKey: MutationKey = [],\n username: string | undefined,\n operations: (payload: T) => Operation[],\n onSuccess: UseMutationOptions[\"onSuccess\"] = () => {},\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n options?: {\n onMutate?: UseMutationOptions[\"onMutate\"];\n onError?: UseMutationOptions[\"onError\"];\n onSettled?: UseMutationOptions[\"onSettled\"];\n /**\n * Controls whether to wait for block inclusion or just mempool acceptance.\n *\n * - `'async'` (default): Returns after mempool acceptance. Recommended for\n * all operations; errors are still thrown immediately.\n *\n * - `'sync'`: Waits for block inclusion, returns block_num/trx_num.\n * Deprecated; prefer `'async'`.\n */\n broadcastMode?: BroadcastMode;\n }\n) {\n const broadcastMode = options?.broadcastMode ?? 'async';\n\n return useMutation({\n onSuccess,\n onMutate: options?.onMutate,\n onError: options?.onError,\n onSettled: options?.onSettled,\n mutationKey: [...mutationKey, username],\n mutationFn: async (payload: T) => {\n if (!username) {\n throw new Error(\n \"[Core][Broadcast] Attempted to call broadcast API with anon user\"\n );\n }\n\n const ops = operations(payload);\n\n try {\n // New: Try auth methods in fallback chain (if enabled)\n if (auth?.enableFallback !== false && auth?.adapter) {\n return await broadcastWithFallback(username, ops, auth, authority, broadcastMode);\n }\n\n // Legacy behavior: try methods in fixed order (backward compatible)\n if (auth?.broadcast) {\n return await auth.broadcast(ops, authority);\n }\n\n const postingKey = auth?.postingKey;\n if (postingKey) {\n // Legacy auth only supports posting authority\n if (authority !== 'posting') {\n throw new Error(\n `[SDK][Broadcast] Legacy auth only supports posting authority, but '${authority}' was requested. ` +\n `Use AuthContextV2 with an adapter for ${authority} operations.`\n );\n }\n\n const privateKey = PrivateKey.fromString(postingKey);\n\n return await broadcastOperations(\n ops,\n privateKey\n );\n }\n\n const accessToken = auth?.accessToken;\n if (accessToken) {\n const client = new hs.Client({ accessToken });\n const response = await client.broadcast(ops);\n return response.result;\n }\n\n throw new Error(\n \"[SDK][Broadcast] – cannot broadcast w/o posting key or token\"\n );\n } catch (e) {\n if (e instanceof RPCError) {\n // Normalize raw blockchain rejections (missing authority, RC exhaustion,\n // validation failures) from every broadcast path — sync and async — into\n // a plain Error whose message is preserved for downstream classification\n // (formatError), so React Query captures a handled mutation error.\n throw new Error(e.message);\n }\n throw e\n }\n },\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\nimport hs from \"hivesigner\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport async function broadcastJson(\n username: string | undefined,\n id: string,\n payload: T,\n auth?: AuthContextV2\n) {\n if (!username) {\n throw new Error(\n \"[Core][Broadcast] Attempted to call broadcast API with anon user\"\n );\n }\n const jjson = {\n id,\n required_auths: [],\n required_posting_auths: [username],\n json: JSON.stringify(payload),\n };\n\n if (auth?.broadcast) {\n return auth.broadcast([[\"custom_json\", jjson]], \"posting\");\n }\n\n const postingKey = auth?.postingKey;\n if (postingKey) {\n const privateKey = PrivateKey.fromString(postingKey);\n\n return broadcastOperations(\n [[\"custom_json\", jjson]],\n privateKey\n );\n }\n\n // With hivesigner access token\n const accessToken = auth?.accessToken;\n if (accessToken) {\n const response = await new hs.Client({\n accessToken,\n }).customJson([], [username], id, JSON.stringify(payload));\n return response.result;\n }\n\n /*\n * Adapter, as a last resort rather than first.\n *\n * `auth.broadcast` above is the supported caller-supplied path inherited by\n * AuthContextV2, but the web app's `getSdkAuthContext` does not populate it.\n * A Keychain user whose posting key is not stored and who has no HiveSigner\n * token therefore reached the throw below instead of being asked to sign.\n * This is reachable today from follow and unfollow.\n *\n * Placed last on purpose: every branch above already works for the sessions\n * that reach it, and reordering would change which method signs for people\n * it currently serves. This only claims cases that were previously errors.\n */\n const adapter = auth?.adapter;\n if (adapter) {\n const ops: Parameters>[1] =\n [[\"custom_json\", jjson]];\n\n if (auth?.loginType === \"keychain\" && adapter.broadcastWithKeychain) {\n return adapter.broadcastWithKeychain(username, ops, \"posting\");\n }\n if (auth?.loginType === \"hiveauth\" && adapter.broadcastWithHiveAuth) {\n return adapter.broadcastWithHiveAuth(username, ops, \"posting\");\n }\n }\n\n throw new Error(\n \"[SDK][Broadcast] – cannot broadcast w/o posting key or token\"\n );\n}\n","import type { BroadcastMode } from \"./use-broadcast-mutation\";\nimport type { PlatformAdapter } from \"@/modules/core/types\";\n\n/**\n * Delay (ms) before invalidating chain-derived queries after an async\n * broadcast. ~1.3 Hive blocks (3s/block) so the just-broadcast transaction has\n * landed in a block before we refetch — otherwise the refetch returns pre-tx\n * state (e.g. a stale wallet balance).\n */\nexport const BROADCAST_INCLUSION_DELAY_MS = 4000;\n\n/**\n * Invalidate queries after a broadcast, accounting for broadcast mode.\n *\n * - `'sync'`: the transaction already waited for block inclusion, so refetch\n * immediately (returns the adapter's promise so callers may await it).\n * - `'async'` (default) / undefined: the transaction is only in the mempool, so\n * a refetch now would read pre-tx state — defer by ~1 block.\n *\n * No-ops when the adapter can't invalidate.\n */\nexport function invalidateAfterBroadcast(\n adapter: PlatformAdapter | null | undefined,\n broadcastMode: BroadcastMode | undefined,\n keys: any[][]\n): void | Promise {\n if (!adapter?.invalidateQueries) return;\n if (broadcastMode === \"sync\") {\n // Method call (not an extracted reference) so `this` stays bound to adapter.\n return adapter.invalidateQueries(keys);\n }\n setTimeout(() => adapter.invalidateQueries?.(keys), BROADCAST_INCLUSION_DELAY_MS);\n}\n","export function withTimeoutSignal(timeoutMs: number, signal?: AbortSignal): AbortSignal {\n const timeoutSignal = AbortSignal.timeout(timeoutMs);\n if (!signal) return timeoutSignal;\n\n // AbortSignal.any is available in Chrome 116+, Safari 17.4+, Firefox 124+.\n // Fall back to manual AbortController wiring for older browsers.\n if (typeof AbortSignal.any === \"function\") {\n return AbortSignal.any([signal, timeoutSignal]);\n }\n\n const ac = new AbortController();\n const onAbort = () => {\n const reason = signal.aborted ? signal.reason : timeoutSignal.reason;\n ac.abort(reason);\n signal.removeEventListener(\"abort\", onAbort);\n timeoutSignal.removeEventListener(\"abort\", onAbort);\n };\n if (signal.aborted) {\n ac.abort(signal.reason);\n } else if (timeoutSignal.aborted) {\n ac.abort(timeoutSignal.reason);\n } else {\n signal.addEventListener(\"abort\", onAbort, { once: true });\n timeoutSignal.addEventListener(\"abort\", onAbort, { once: true });\n }\n return ac.signal;\n}\n","import { QueryClient } from \"@tanstack/react-query\";\nimport {\n config as hiveTxConfig,\n setNodes as setHiveTxNodes,\n setRestNodes as setHiveTxRestNodes,\n setRestNodesByApi as setHiveTxRestNodesByApi,\n setUserAgent as setHiveTxUserAgent,\n setResilience as setHiveTxResilience,\n setServerRpcProxy as setHiveTxServerRpcProxy,\n rpcProxyStats,\n type ResilienceOptions,\n type ServerRpcProxyOptions,\n} from \"../../hive-tx\";\nimport type { APIMethods } from \"../../hive-tx/api-types\";\n\n// Safe environment variable access for browser builds\n// In browser builds, tsup will replace process.env.* with literal values at compile time\nconst isDevelopment = (() => {\n try {\n return process.env?.NODE_ENV === 'development';\n } catch {\n return false;\n }\n})();\n\nconst getHeliusApiKey = () => {\n try {\n return process.env?.VITE_HELIUS_API_KEY;\n } catch {\n return undefined;\n }\n};\n\n/** Timeout for internal API calls (search, private API). */\nexport const INTERNAL_API_TIMEOUT_MS = 10_000;\n\n/**\n * Ceiling on `gcTime` for any query that runs during SSR.\n *\n * A long window is fine in a browser or native app, where the cache holds one\n * user's data and lives as long as the session. It is not fine in a server\n * renderer: every query schedules a gc timer, a pending timer is a GC root, and\n * `Query` holds the whole `QueryCache` — so one long-lived entry keeps\n * everything else that request cached reachable for its entire window. A server\n * process then settles at roughly `ingest rate × gcTime`, which is how\n * ecency.com's renderers ended up aborting on the old-space cap rather than\n * levelling off (2026-07-26).\n *\n * Two minutes is far longer than any single render, which is the only window a\n * server-side entry has to be reused before it is dehydrated into the payload.\n *\n * Note this bounds SDK queries at the source. `apps/web` additionally clamps\n * every query through `defaultQueryOptions`, which is what protects it from\n * options defined outside the SDK; hosts that do not clamp get the right\n * behaviour from these defaults alone.\n */\nexport const SERVER_GC_TIME_MS = 2 * 60 * 1000;\n\n/**\n * How `CONFIG.queryClient` is resolved.\n *\n * This used to be a plain `queryClient: new QueryClient()` property — a single\n * instance created at module import and shared by every caller for the lifetime\n * of the process. That is correct in a browser (one process, one user) but wrong\n * under SSR, where one process serves every request: each server render wrote its\n * fetched data into that one cache and nothing ever removed it, so the heap grew\n * monotonically until the renderer hit its old-space limit and aborted.\n *\n * A host that renders on the server registers a resolver (see\n * `ConfigManager.setQueryClientResolver`) which returns the *current request's*\n * client, so cached data dies with the request that produced it. Hosts that\n * genuinely want one long-lived client keep using `setQueryClient`, and callers\n * that configure nothing fall back to a lazily created instance.\n *\n * The resolver is consulted on every read rather than cached here on purpose:\n * request scoping is the host's concern, and only the host can know when one\n * request ends and the next begins.\n */\nlet queryClientResolver: (() => QueryClient) | undefined;\n\n/** Created on first use, and only when no resolver has been registered. */\nlet fallbackQueryClient: QueryClient | undefined;\n\nfunction resolveQueryClient(): QueryClient {\n if (queryClientResolver) {\n return queryClientResolver();\n }\n return (fallbackQueryClient ??= new QueryClient());\n}\n\nexport const CONFIG = {\n privateApiHost: \"https://ecency.com\",\n /**\n * Host for the newsletter relay routes (/api/newsletter/*), which live on\n * the WEB origin (Next.js route handlers), not on the private API service.\n * `undefined` falls back to `privateApiHost` (right for mobile, whose one\n * host serves both); the web client pins it to \"\" so newsletter requests\n * stay same-origin on ANY deployment, hostname regardless.\n */\n newsletterHost: undefined as string | undefined,\n /**\n * Observer used for bridge calls when nobody is logged in. The bridge applies\n * this account's mute list to the response, marking muted authors' posts and\n * comments `stats.gray` so clients can dim or collapse them. Anonymous\n * visitors therefore inherit Ecency's moderation instead of seeing an\n * unfiltered firehose. Apps may override via `ConfigManager.setDefaultObserver`,\n * which expects a real account rather than \"\" (see that setter).\n *\n * Note this only *marks* content: the bridge still returns muted authors'\n * posts, so an observer never shortens a feed.\n */\n defaultObserver: \"ecency\",\n /**\n * First-party client identifier sent as the `X-Ecency-Client` header on\n * search/private API requests. Lets the origin distinguish Ecency's own\n * web/mobile/SSR traffic from third-party integrators (who should use the\n * keyed api.hivesearcher.com backend instead of the public proxy). This is\n * a routing marker, not a secret. Apps may override via\n * `ConfigManager.setClientId` (e.g. \"web\" or \"mobile\") for observability.\n */\n clientId: \"ecency-sdk\",\n imageHost: \"https://i.ecency.com\",\n /** Current Hive RPC nodes. Reads from the unified hive-tx config. */\n get hiveNodes(): string[] {\n return hiveTxConfig.nodes;\n },\n heliusApiKey: getHeliusApiKey(),\n /**\n * The React Query client all SDK code reads through `getQueryClient()`.\n * Backed by a resolver so an SSR host can scope it per request — see the\n * `queryClientResolver` note above. Assigning replaces the resolver with one\n * that always returns the assigned client, preserving the previous\n * \"one client, set once\" behaviour for browser and native hosts.\n */\n get queryClient(): QueryClient {\n return resolveQueryClient();\n },\n set queryClient(client: QueryClient) {\n queryClientResolver = () => client;\n },\n pollsApiHost: \"https://poll.ecency.com\",\n plausibleHost: \"https://pl.ecency.com\",\n // DMCA filtering - can be configured by the app\n dmcaAccounts: [] as string[],\n dmcaTags: [] as string[],\n dmcaPatterns: [] as string[],\n // Pre-compiled regex patterns for performance and security\n dmcaTagRegexes: [] as RegExp[],\n dmcaPatternRegexes: [] as RegExp[],\n // Track if DMCA has been initialized to avoid duplicate logs\n _dmcaInitialized: false,\n};\n\ntype DmcaListsInput = {\n accounts?: string[];\n tags?: string[];\n posts?: string[];\n};\n\nexport namespace ConfigManager {\n export function setQueryClient(client: QueryClient) {\n CONFIG.queryClient = client;\n }\n\n /**\n * Register how the SDK should obtain its React Query client, for hosts where\n * a single shared instance is wrong — principally SSR, where one process\n * serves many requests and a shared cache both leaks memory and risks serving\n * one request's data to another.\n *\n * `resolve` is called on every SDK cache access and should return the client\n * belonging to the request currently being handled. In a Next.js App Router\n * host that means wrapping the factory in React's `cache()`, which memoises\n * per request:\n *\n * ```ts\n * ConfigManager.setQueryClientResolver(() => getQueryClient());\n * ```\n *\n * Registering a resolver supersedes any client previously passed to\n * `setQueryClient`; assigning a client afterwards supersedes the resolver.\n */\n export function setQueryClientResolver(resolve: () => QueryClient) {\n queryClientResolver = resolve;\n }\n\n /**\n * Set the private API host\n * @param host - The private API host URL (e.g., \"https://ecency.com\" or \"\" for relative URLs)\n */\n export function setPrivateApiHost(host: string) {\n CONFIG.privateApiHost = host;\n }\n\n /**\n * Set the host for the newsletter relay routes (/api/newsletter/*), or\n * `undefined` to fall back to the private API host. Use \"\" for same-origin\n * relative requests (the web client's case).\n */\n export function setNewsletterHost(host: string | undefined) {\n CONFIG.newsletterHost = host;\n }\n\n /**\n * Set the first-party client identifier sent as the `X-Ecency-Client` header\n * on search/private API requests (e.g. \"web\" or \"mobile\"). Defaults to\n * \"ecency-sdk\". Used by the origin to tell Ecency's own apps apart from\n * third-party integrators.\n * @param clientId - Short client label\n */\n export function setClientId(clientId: string) {\n CONFIG.clientId = clientId;\n }\n\n /**\n * Set the observer used for bridge calls made without a logged-in user.\n * Defaults to \"ecency\"; a third-party integrator should point this at their\n * own moderation account.\n *\n * Must be a real account. An empty value is rejected rather than treated as\n * an opt-out: consumers resolve the observer with `||`, and `getDiscussion`\n * separately falls back to the post author, so \"\" would not disable mute\n * marking. It would silently observe as someone else while being cached under\n * \"\", leaving the request and its cache key describing different things.\n * @param observer - Hive account whose mute list applies to anonymous reads\n * @throws If given an empty or whitespace-only value\n */\n export function setDefaultObserver(observer: string) {\n if (typeof observer !== \"string\" || observer.trim() === \"\") {\n throw new Error(\n \"setDefaultObserver requires a non-empty Hive account. There is no empty-string opt-out; \" +\n \"observer resolution would fall back to the post author while caching under an empty key.\"\n );\n }\n\n CONFIG.defaultObserver = observer;\n }\n\n /**\n * Get a validated base URL for API requests\n * Returns a valid base URL that can be used with new URL(path, baseUrl)\n *\n * Priority:\n * 1. CONFIG.privateApiHost if set (dev/staging or explicit config)\n * 2. window.location.origin if in browser (production with relative URLs)\n * 3. 'https://ecency.com' as fallback for SSR (production default)\n *\n * @returns A valid base URL string\n * @throws Never throws - always returns a valid URL\n */\n export function getValidatedBaseUrl(): string {\n if (CONFIG.privateApiHost) {\n return CONFIG.privateApiHost;\n }\n\n if (typeof window !== 'undefined' && window.location?.origin) {\n return window.location.origin;\n }\n\n // Fallback for SSR when privateApiHost is empty (production case)\n return 'https://ecency.com';\n }\n\n /**\n * Set the polls API host\n * @param host - The polls API host URL (e.g., \"https://poll.ecency.com\")\n */\n export function setPollsApiHost(host: string) {\n CONFIG.pollsApiHost = host;\n }\n\n /**\n * Set the image host\n * @param host - The image host URL (e.g., \"https://i.ecency.com\")\n */\n export function setImageHost(host: string) {\n CONFIG.imageHost = host;\n }\n\n /**\n * Set Hive RPC nodes, replacing the default list.\n * Delegates to the unified hive-tx `setNodes` (single validated setter,\n * shared with the lean `@ecency/sdk/hive` entry) so node configuration is\n * defined in exactly one place.\n * @param nodes - Array of Hive RPC node URLs\n */\n export function setHiveNodes(nodes: string[]) {\n setHiveTxNodes(nodes);\n }\n\n /**\n * Set the REST-API node list, replacing the default `restNodes`. Lets an app\n * add/remove REST hosts at runtime (e.g. drop an own node being decommissioned,\n * or widen the public pool) without forking + republishing the SDK. Delegates to\n * the unified hive-tx `setRestNodes` (validated, shared with `@ecency/sdk/hive`).\n * @param nodes - Array of REST-capable node URLs (without a trailing slash)\n */\n export function setRestNodes(nodes: string[]) {\n setHiveTxRestNodes(nodes);\n }\n\n /**\n * Merge per-API REST node overrides. For each API a non-empty valid list pins it\n * to those hosts (so `callREST` never wastes its retry budget on a node that\n * 404/503s the API); an empty list removes the pin (falls back to `restNodes`).\n * Other APIs' pins (e.g. the built-in `hivesense`) are preserved. Delegates to the\n * unified hive-tx `setRestNodesByApi`.\n * @param map - Partial map of REST API name → capable node URLs\n */\n export function setRestNodesByApi(map: Partial>) {\n setHiveTxRestNodesByApi(map);\n }\n\n /**\n * Set the User-Agent sent on server-side (Node) requests to Hive nodes.\n * Lets an app label its own SSR/server traffic (otherwise Node's fetch sends a\n * bare `node` UA). No effect in browsers (User-Agent is a forbidden header) or\n * React Native (keeps its native UA). Delegates to the unified hive-tx setter.\n * @param userAgent - The User-Agent string (e.g. \"ecency-web-ssr (+https://ecency.com)\")\n */\n export function setUserAgent(userAgent: string) {\n setHiveTxUserAgent(userAgent);\n }\n\n /**\n * Tune read-call tail-latency resilience: adaptive per-attempt timeouts\n * (default on) and hedged requests (default OFF — a duplicate request races\n * the next healthy node when the primary stalls, bounded by a token bucket so\n * only the slow tail hedges and pool-wide slowness self-disables it). Partial:\n * only the fields provided are changed; invalid values are ignored\n * field-by-field. Delegates to the unified hive-tx `setResilience`.\n * @param opts - e.g. `{ hedge: true }` to opt into hedged reads\n */\n export function setResilience(opts: Partial) {\n setHiveTxResilience(opts);\n }\n\n /**\n * Route allowlisted server-side RPC reads through a read-through cache in\n * front of the node pool (one cache per host, shared by every renderer\n * process). An optimization, never a dependency: any proxy failure falls\n * straight through to the node loop. No effect outside Node; null switches\n * it off. Delegates to the unified hive-tx `setServerRpcProxy`.\n * @param opts - `{ url, headers, timeoutMs, methods }` or null\n */\n export function setServerRpcProxy(opts: ServerRpcProxyOptions | null) {\n setHiveTxServerRpcProxy(opts);\n }\n\n /**\n * The live counters of that proxy path: `served` (answered by the proxy),\n * `fallback` with a per-reason breakdown (the read went to the node pool\n * after a proxy failure) and `skipped` (breaker open). The same object the\n * call path increments, exposed here because the root build carries its own\n * copy of the hive-tx internals; a consumer importing `rpcProxyStats` from\n * the `/hive` entry would read a different, never-incremented instance.\n * Read-only by contract: the web tier prints it, nothing resets it.\n */\n export function getServerRpcProxyStats(): Readonly {\n return rpcProxyStats;\n }\n\n /**\n * Static analysis: Check for known ReDoS-vulnerable patterns\n * @param pattern - Raw regex pattern string\n * @returns Object with risk level and reason\n */\n function analyzeRedosRisk(pattern: string): { safe: boolean; reason?: string } {\n // Check 1: Nested quantifiers (e.g., (a+)+, (a*)+, (a{1,})+)\n if (/(\\([^)]*[*+{][^)]*\\))[*+{]/.test(pattern)) {\n return { safe: false, reason: \"nested quantifiers detected\" };\n }\n\n // Check 2: Alternation with overlapping terms (e.g., (a|a)+, (ab|a)+)\n if (/\\([^|)]*\\|[^)]*\\)[*+{]/.test(pattern)) {\n return { safe: false, reason: \"alternation with quantifier (potential overlap)\" };\n }\n\n // Check 3: Catastrophic backtracking patterns (e.g., (a*)*b, (a+)+b)\n if (/\\([^)]*[*+][^)]*\\)[*+]/.test(pattern)) {\n return { safe: false, reason: \"repeated quantifiers (catastrophic backtracking risk)\" };\n }\n\n // Check 4: Greedy quantifiers followed by optional patterns (e.g., .*.*x, .+.+x)\n if (/\\.\\*\\.\\*/.test(pattern) || /\\.\\+\\.\\+/.test(pattern)) {\n return { safe: false, reason: \"multiple greedy quantifiers on wildcards\" };\n }\n\n // Check 5: Unbounded ranges with wildcards (e.g., .{1,999999})\n const unboundedRange = /\\.?\\{(\\d+),(\\d+)\\}/g;\n let match;\n while ((match = unboundedRange.exec(pattern)) !== null) {\n const [, min, max] = match;\n const range = parseInt(max, 10) - parseInt(min, 10);\n if (range > 1000) {\n return { safe: false, reason: `excessive range: {${min},${max}}` };\n }\n }\n\n return { safe: true };\n }\n\n /**\n * Runtime test: Execute regex against adversarial inputs with timeout\n * @param regex - Compiled regex\n * @returns Object indicating if regex passed runtime test\n */\n function testRegexPerformance(regex: RegExp): { safe: boolean; reason?: string } {\n // Test inputs designed to trigger ReDoS in vulnerable patterns\n const adversarialInputs = [\n // Nested quantifier attack\n \"a\".repeat(50) + \"x\",\n // Alternation attack\n \"ab\".repeat(50) + \"x\",\n // Wildcard attack\n \"x\".repeat(100),\n // Mixed attack\n \"aaa\".repeat(30) + \"bbb\".repeat(30) + \"x\",\n ];\n\n const maxExecutionTime = 5; // 5ms hard limit per test\n\n for (const input of adversarialInputs) {\n const start = Date.now();\n try {\n regex.test(input);\n const duration = Date.now() - start;\n\n if (duration > maxExecutionTime) {\n return {\n safe: false,\n reason: `runtime test exceeded ${maxExecutionTime}ms (took ${duration}ms on input length ${input.length})`\n };\n }\n } catch (err) {\n return { safe: false, reason: `runtime test threw error: ${err}` };\n }\n }\n\n return { safe: true };\n }\n\n /**\n * Safely compile a regex pattern with defense-in-depth validation\n * @param pattern - Raw regex pattern string\n * @param maxLength - Maximum allowed pattern length (default 200)\n * @returns Compiled RegExp or null if invalid/unsafe\n */\n function safeCompileRegex(pattern: string, maxLength = 200): RegExp | null {\n // Use the module-level isDevelopment constant\n\n try {\n // Layer 1: Basic validation\n if (!pattern) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: empty pattern`);\n }\n return null;\n }\n\n if (pattern.length > maxLength) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: length ${pattern.length} exceeds max ${maxLength} - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n // Layer 2: Static ReDoS analysis\n const staticAnalysis = analyzeRedosRisk(pattern);\n if (!staticAnalysis.safe) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${staticAnalysis.reason}) - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n // Layer 3: Compilation attempt\n let regex: RegExp;\n try {\n regex = new RegExp(pattern);\n } catch (compileErr) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${pattern.substring(0, 50)}...`, compileErr);\n }\n return null;\n }\n\n // Layer 4: Runtime performance testing\n const runtimeTest = testRegexPerformance(regex);\n if (!runtimeTest.safe) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${runtimeTest.reason}) - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n return regex;\n } catch (err) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${pattern.substring(0, 50)}...`, err);\n }\n return null;\n }\n }\n\n /**\n * Set DMCA filtering lists\n * @param lists - DMCA lists object containing accounts/tags/posts arrays\n */\n export function setDmcaLists(\n lists: DmcaListsInput = {}\n ) {\n const coerceList = (value: unknown): string[] =>\n Array.isArray(value) ? value.filter((item): item is string => typeof item === \"string\") : [];\n\n // Ensure we have a valid object to work with\n const input = lists || {};\n\n const resolved = {\n accounts: coerceList(input.accounts),\n tags: coerceList(input.tags),\n patterns: coerceList(input.posts),\n };\n\n CONFIG.dmcaAccounts = resolved.accounts;\n CONFIG.dmcaTags = resolved.tags;\n CONFIG.dmcaPatterns = resolved.patterns;\n\n // Pre-compile tag regex patterns (tags can be regex)\n CONFIG.dmcaTagRegexes = resolved.tags\n .map((pattern) => safeCompileRegex(pattern))\n .filter((r): r is RegExp => r !== null);\n\n // Post patterns are plain strings for exact matching, not regex\n // No compilation needed - they will be used with simple string comparison\n CONFIG.dmcaPatternRegexes = [];\n\n const rejectedTagCount = resolved.tags.length - CONFIG.dmcaTagRegexes.length;\n\n // Only log once to avoid noise during builds/hot reloads\n // Only show in development mode to avoid cluttering production console\n // Use the module-level isDevelopment constant\n\n if (!CONFIG._dmcaInitialized && isDevelopment) {\n console.log(`[SDK] DMCA configuration loaded:`);\n console.log(` - Accounts: ${resolved.accounts.length}`);\n console.log(` - Tag patterns: ${CONFIG.dmcaTagRegexes.length}/${resolved.tags.length} compiled (${rejectedTagCount} rejected)`);\n console.log(` - Post patterns: ${resolved.patterns.length} (using exact string matching)`);\n\n if (rejectedTagCount > 0) {\n console.warn(`[SDK] ${rejectedTagCount} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`);\n }\n }\n\n CONFIG._dmcaInitialized = true;\n }\n}\n","import {\n InfiniteData,\n QueryClient,\n QueryKey,\n useInfiniteQuery,\n UseInfiniteQueryOptions,\n useQuery,\n UseQueryOptions,\n} from \"@tanstack/react-query\";\nimport { CONFIG } from \"./config\";\n\n/**\n * Builds a client with the SDK's defaults. It is only a factory — request\n * scoping is the host's job, via `ConfigManager.setQueryClientResolver`, since\n * only the host knows where one request ends and the next begins.\n */\nexport function makeQueryClient() {\n return new QueryClient({\n defaultOptions: {\n queries: {\n // With SSR, we usually want to set some default staleTime\n // above 0 to avoid refetching immediately on the client\n // staleTime: 60 * 1000,\n refetchOnWindowFocus: false,\n refetchOnMount: false,\n },\n },\n });\n}\nexport const getQueryClient = () => CONFIG.queryClient;\n\nexport namespace EcencyQueriesManager {\n export function getQueryData(queryKey: QueryKey) {\n const queryClient = getQueryClient();\n return queryClient.getQueryData(queryKey);\n }\n\n export function getInfiniteQueryData(queryKey: QueryKey) {\n const queryClient = getQueryClient();\n return queryClient.getQueryData>(queryKey);\n }\n\n export async function prefetchQuery(options: UseQueryOptions) {\n const queryClient = getQueryClient();\n await queryClient.prefetchQuery(options);\n return getQueryData(options.queryKey);\n }\n\n export async function prefetchInfiniteQuery(\n options: UseInfiniteQueryOptions<\n T,\n Error,\n InfiniteData,\n QueryKey,\n P\n >\n ) {\n const queryClient = getQueryClient();\n await queryClient.prefetchInfiniteQuery(options);\n return getInfiniteQueryData(options.queryKey);\n }\n\n export function generateClientServerQuery(options: UseQueryOptions) {\n return {\n prefetch: () => prefetchQuery(options),\n getData: () => getQueryData(options.queryKey),\n useClientQuery: () => useQuery(options),\n fetchAndGet: () => getQueryClient().fetchQuery(options),\n };\n }\n\n export function generateClientServerInfiniteQuery(\n options: UseInfiniteQueryOptions<\n T,\n Error,\n InfiniteData,\n QueryKey,\n P\n >\n ) {\n return {\n prefetch: () => prefetchInfiniteQuery(options),\n getData: () => getInfiniteQueryData(options.queryKey),\n useClientQuery: () => useInfiniteQuery(options),\n fetchAndGet: () => getQueryClient().fetchInfiniteQuery(options),\n };\n }\n}\n","export function encodeObj(o: any): string {\n return btoa(JSON.stringify(o));\n}\n\nexport function decodeObj(o: any): any {\n let dataToParse = atob(o);\n if (dataToParse[0] !== \"{\") {\n return undefined;\n }\n return JSON.parse(dataToParse);\n}\n","import type { SMTAsset } from \"@/modules/core/hive-tx\";\n\nexport enum Symbol {\n HIVE = \"HIVE\",\n HBD = \"HBD\",\n VESTS = \"VESTS\",\n}\n\nexport enum NaiMap {\n \"@@000000021\" = \"HIVE\",\n \"@@000000013\" = \"HBD\",\n \"@@000000037\" = \"VESTS\",\n}\n\nexport interface Asset {\n amount: number;\n symbol: Symbol;\n}\n\nexport function parseAsset(sval: string | SMTAsset): Asset {\n if (typeof sval === \"string\") {\n const sp = sval.split(\" \");\n return {\n amount: parseFloat(sp[0]),\n // @ts-ignore\n symbol: Symbol[sp[1]],\n };\n } else {\n return {\n amount: parseFloat(sval.amount.toString()) / Math.pow(10, sval.precision),\n // @ts-ignore\n symbol: NaiMap[sval.nai],\n };\n }\n}\n","let cachedFetch: typeof globalThis.fetch | undefined;\n\nexport function getBoundFetch() {\n if (!cachedFetch) {\n if (typeof globalThis.fetch !== \"function\") {\n throw new Error(\"[Ecency][SDK] - global fetch is not available\");\n }\n\n cachedFetch = globalThis.fetch.bind(globalThis);\n }\n\n return cachedFetch;\n}\n","export function isCommunity(value: unknown) {\n return typeof value === \"string\" ? /^hive-\\d+$/.test(value) : false;\n}\n","import { WrappedResponse } from \"../types/pagination\";\n\n/**\n * Type guard to check if response is wrapped with pagination metadata\n */\nexport function isWrappedResponse(response: any): response is WrappedResponse {\n return (\n response &&\n typeof response === \"object\" &&\n \"data\" in response &&\n \"pagination\" in response &&\n Array.isArray(response.data)\n );\n}\n\n/**\n * Normalize response to wrapped format for backwards compatibility\n * If the backend returns old format (array), convert it to wrapped format\n */\nexport function normalizeToWrappedResponse(\n response: T[] | WrappedResponse,\n limit: number\n): WrappedResponse {\n if (isWrappedResponse(response)) {\n return response;\n }\n\n // Old format - just an array\n // Since we don't have pagination metadata, assume no more pages\n return {\n data: Array.isArray(response) ? response : [],\n pagination: {\n total: Array.isArray(response) ? response.length : 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n}\n","export function vestsToHp(vests: number, hivePerMVests: number): number {\n return (vests / 1e6) * hivePerMVests;\n}\n","export function isEmptyDate(s: string | undefined): boolean {\n if (s === undefined) {\n return true;\n }\n\n return parseInt(s.split(\"-\")[0], 10) < 1980;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { DynamicProps } from \"../types\";\nimport { parseAsset } from \"../utils\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n// This query powers wallet/HP/reward math that should stay close to chain state.\n// Keep a short refresh cadence despite the 5 RPC calls.\nconst DYNAMIC_PROPS_REFRESH_MS = 60 * 1000;\n\nexport function getDynamicPropsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.core.dynamicProps(),\n refetchInterval: DYNAMIC_PROPS_REFRESH_MS,\n staleTime: DYNAMIC_PROPS_REFRESH_MS,\n queryFn: async ({ signal }): Promise => {\n // Get raw blockchain data — all five calls are independent, run in parallel.\n // Hardfork properties is wrapped with catch since not all nodes support it.\n const [rawGlobalDynamic, rawFeedHistory, rawChainProps, rawRewardFund, rawHardforkProps] = await Promise.all([\n callRPC(\"condenser_api.get_dynamic_global_properties\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_feed_history\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_chain_properties\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_reward_fund\", [\"post\"], undefined, undefined, signal),\n callRPC(\"database_api.get_hardfork_properties\", {}, undefined, undefined, signal)\n .catch(() => ({ current_hardfork_version: \"1.28.0\", last_hardfork: 28 })),\n ]) as [any, any, any, any, any];\n\n // Calculate derived values for backward compatibility\n // parseAsset handles both string format (\"200905388484 HIVE\") and NAI format ({ amount, nai, precision })\n const totalVestingSharesAmount = parseAsset(rawGlobalDynamic.total_vesting_shares).amount;\n const totalVestingFundAmount = parseAsset(rawGlobalDynamic.total_vesting_fund_hive).amount;\n\n // Guard against division by zero/NaN/Infinity\n let hivePerMVests = 0;\n if (\n Number.isFinite(totalVestingSharesAmount) &&\n totalVestingSharesAmount !== 0 &&\n Number.isFinite(totalVestingFundAmount)\n ) {\n hivePerMVests = (totalVestingFundAmount / totalVestingSharesAmount) * 1e6;\n }\n const base = parseAsset(rawFeedHistory.current_median_history.base).amount;\n const quote = parseAsset(rawFeedHistory.current_median_history.quote).amount;\n const fundRecentClaims = parseFloat(rawRewardFund.recent_claims);\n const fundRewardBalance = parseAsset(rawRewardFund.reward_balance).amount;\n const votePowerReserveRate = Number(rawGlobalDynamic.vote_power_reserve_rate ?? 0);\n const authorRewardCurve = rawRewardFund.author_reward_curve ?? \"linear\";\n const contentConstant = Number(rawRewardFund.content_constant ?? 0);\n const currentHardforkVersion = String(rawHardforkProps.current_hardfork_version ?? \"0.0.0\");\n const lastHardfork = Number(rawHardforkProps.last_hardfork ?? 0);\n const hbdPrintRate = rawGlobalDynamic.hbd_print_rate;\n const hbdInterestRate = rawGlobalDynamic.hbd_interest_rate;\n const headBlock = rawGlobalDynamic.head_block_number;\n const totalVestingFund = totalVestingFundAmount;\n const totalVestingShares = totalVestingSharesAmount;\n const virtualSupply = parseAsset(rawGlobalDynamic.virtual_supply).amount;\n const vestingRewardPercent = rawGlobalDynamic.vesting_reward_percent || 0;\n const accountCreationFee = rawChainProps.account_creation_fee;\n\n return {\n // Backward compatible transformed fields (camelCase, parsed)\n hivePerMVests,\n base,\n quote,\n fundRecentClaims,\n fundRewardBalance,\n votePowerReserveRate,\n authorRewardCurve,\n contentConstant,\n currentHardforkVersion,\n lastHardfork,\n hbdPrintRate,\n hbdInterestRate,\n headBlock,\n totalVestingFund,\n totalVestingShares,\n virtualSupply,\n vestingRewardPercent,\n accountCreationFee,\n\n // Raw blockchain data (snake_case, unparsed) for direct use\n // Includes ALL fields from the blockchain responses\n raw: {\n globalDynamic: rawGlobalDynamic,\n feedHistory: rawFeedHistory,\n chainProps: rawChainProps,\n rewardFund: rawRewardFund,\n hardforkProps: rawHardforkProps,\n },\n } as DynamicProps;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface RewardFund {\n id: number;\n name: string;\n reward_balance: string;\n recent_claims: string;\n last_update: string;\n content_constant: string;\n percent_curation_rewards: number;\n percent_content_rewards: number;\n author_reward_curve: string;\n curation_reward_curve: string;\n}\n\n/**\n * Get reward fund information from the blockchain\n * @param fundName - Name of the reward fund (default: 'post')\n */\nexport function getRewardFundQueryOptions(fundName = \"post\") {\n return queryOptions({\n queryKey: QueryKeys.core.rewardFund(fundName),\n queryFn: () =>\n callRPC(\"condenser_api.get_reward_fund\", [\n fundName,\n ]) as Promise,\n });\n}\n","/**\n * Centralized query key definitions for all SDK queries.\n *\n * These key builders are the single source of truth for React Query cache keys.\n * Both SDK query options and web app consumers should reference these\n * instead of using inline string arrays.\n *\n * @example\n * ```typescript\n * import { QueryKeys } from \"@ecency/sdk\";\n *\n * // In query options\n * queryKey: QueryKeys.posts.entry(`/@${author}/${permlink}`)\n *\n * // In cache invalidation\n * queryClient.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) })\n * ```\n */\n/** Strip trailing undefined values so the key works as a prefix for partialMatchKey */\nfunction key(...parts: unknown[]): unknown[] {\n let end = parts.length;\n while (end > 0 && parts[end - 1] === undefined) {\n end--;\n }\n return parts.slice(0, end);\n}\n\nexport const QueryKeys = {\n // ===========================================================================\n // Posts\n // ===========================================================================\n posts: {\n entry: (entryPath: string) => [\"posts\", \"entry\", entryPath],\n postHeader: (author: string, permlink?: string) =>\n [\"posts\", \"post-header\", author, permlink],\n content: (author: string, permlink: string) =>\n [\"posts\", \"content\", author, permlink],\n contentReplies: (author: string, permlink: string) =>\n [\"posts\", \"content-replies\", author, permlink],\n accountPosts: (\n username: string,\n filter: string,\n limit: number,\n observer: string\n ) => [\"posts\", \"account-posts\", username, filter, limit, observer],\n accountPostsPage: (\n username: string,\n filter: string,\n startAuthor: string,\n startPermlink: string,\n limit: number,\n observer: string\n ) =>\n [\n \"posts\",\n \"account-posts-page\",\n username,\n filter,\n startAuthor,\n startPermlink,\n limit,\n observer,\n ],\n userPostVote: (username: string, author: string, permlink: string) =>\n [\"posts\", \"user-vote\", username, author, permlink],\n reblogs: (username: string, limit: number) =>\n [\"posts\", \"reblogs\", username, limit],\n entryActiveVotes: (author?: string, permlink?: string) =>\n [\"posts\", \"entry-active-votes\", author, permlink],\n rebloggedBy: (author: string, permlink: string) =>\n [\"posts\", \"reblogged-by\", author, permlink],\n tips: (author: string, permlink: string) =>\n [\"posts\", \"tips\", author, permlink],\n normalize: (author: string, permlink: string) =>\n [\"posts\", \"normalize\", author, permlink],\n drafts: (activeUsername?: string) =>\n [\"posts\", \"drafts\", activeUsername],\n draftsInfinite: (activeUsername?: string, limit?: number) =>\n key(\"posts\", \"drafts\", \"infinite\", activeUsername, limit),\n schedules: (activeUsername?: string) =>\n [\"posts\", \"schedules\", activeUsername],\n schedulesInfinite: (activeUsername?: string, limit?: number) =>\n key(\"posts\", \"schedules\", \"infinite\", activeUsername, limit),\n fragments: (username?: string) =>\n [\"posts\", \"fragments\", username],\n fragmentsInfinite: (username?: string, limit?: number) =>\n key(\"posts\", \"fragments\", \"infinite\", username, limit),\n images: (username?: string) => [\"posts\", \"images\", username],\n galleryImages: (activeUsername?: string) =>\n [\"posts\", \"gallery-images\", activeUsername],\n imagesInfinite: (username?: string, limit?: number) =>\n key(\"posts\", \"images\", \"infinite\", username, limit),\n promoted: (type: string) => [\"posts\", \"promoted\", type],\n _promotedPrefix: [\"posts\", \"promoted\"],\n accountPostsBlogPrefix: (username: string) =>\n [\"posts\", \"account-posts\", username, \"blog\"] as const,\n postsRanked: (\n sort: string,\n tag: string,\n limit: number,\n observer: string\n ) => [\"posts\", \"posts-ranked\", sort, tag, limit, observer],\n postsRankedPage: (\n sort: string,\n startAuthor: string,\n startPermlink: string,\n limit: number,\n tag: string,\n observer: string\n ) =>\n [\n \"posts\",\n \"posts-ranked-page\",\n sort,\n startAuthor,\n startPermlink,\n limit,\n tag,\n observer,\n ],\n discussions: (\n author: string,\n permlink: string,\n order: string,\n observer: string\n ) => [\"posts\", \"discussions\", author, permlink, order, observer],\n discussion: (author: string, permlink: string, observer: string) =>\n [\"posts\", \"discussion\", author, permlink, observer],\n deletedEntry: (entryPath: string) =>\n [\"posts\", \"deleted-entry\", entryPath],\n commentHistory: (\n author: string,\n permlink: string,\n onlyMeta: boolean\n ) => [\"posts\", \"comment-history\", author, permlink, onlyMeta],\n trendingTags: () => [\"posts\", \"trending-tags\"],\n trendingTagsWithStats: (limit: number) =>\n [\"posts\", \"trending-tags\", \"stats\", limit],\n wavesFeed: (\n params: {\n containers?: string[];\n tag?: string;\n following?: string;\n author?: string;\n observer?: string;\n limit?: number;\n } = {}\n ) => [\n \"posts\",\n \"waves\",\n \"feed\",\n params.tag ?? \"\",\n params.following ?? \"\",\n params.author ?? \"\",\n params.observer ?? \"\",\n params.limit ?? 0,\n [...(params.containers ?? [])].sort().join(\",\")\n ],\n shortsFeed: (\n params: {\n containers?: string[];\n tag?: string;\n author?: string;\n observer?: string;\n limit?: number;\n } = {}\n ) => [\n \"posts\",\n \"waves\",\n \"shorts\",\n params.tag ?? \"\",\n params.author ?? \"\",\n params.observer ?? \"\",\n params.limit ?? 0,\n [...(params.containers ?? [])].sort().join(\",\")\n ],\n wavesByHost: (host: string) =>\n [\"posts\", \"waves\", \"by-host\", host],\n wavesByTag: (host: string, tag: string) =>\n [\"posts\", \"waves\", \"by-tag\", host, tag],\n wavesFollowing: (host: string, username: string) =>\n [\"posts\", \"waves\", \"following\", host, username],\n wavesTrendingTags: (host: string, hours: number) =>\n [\"posts\", \"waves\", \"trending-tags\", host, hours],\n wavesByAccount: (host: string, username: string) =>\n [\"posts\", \"waves\", \"by-account\", host, username],\n wavesTrendingAuthors: (host: string) =>\n [\"posts\", \"waves\", \"trending-authors\", host],\n _prefix: [\"posts\"],\n },\n\n // ===========================================================================\n // Accounts\n // ===========================================================================\n accounts: {\n full: (username?: string) => [\"get-account-full\", username],\n list: (...usernames: string[]) =>\n [\"accounts\", \"list\", ...usernames],\n friends: (\n following: string,\n mode: string,\n followType: string,\n limit: number\n ) => [\"accounts\", \"friends\", following, mode, followType, limit],\n searchFriends: (username: string, mode: string, query: string) =>\n [\"accounts\", \"friends\", \"search\", username, mode, query],\n subscriptions: (username: string) =>\n [\"accounts\", \"subscriptions\", username],\n followCount: (username: string) =>\n [\"accounts\", \"follow-count\", username],\n recoveries: (username: string) =>\n [\"accounts\", \"recoveries\", username],\n pendingRecovery: (username: string) =>\n [\"accounts\", \"recoveries\", username, \"pending-request\"],\n checkWalletPending: (username: string, code: string | null) =>\n [\"accounts\", \"check-wallet-pending\", username, code],\n mutedUsers: (username: string) =>\n [\"accounts\", \"muted-users\", username],\n following: (\n follower: string,\n startFollowing: string,\n followType: string,\n limit: number\n ) =>\n [\n \"accounts\",\n \"following\",\n follower,\n startFollowing,\n followType,\n limit,\n ],\n followers: (\n following: string,\n startFollower: string,\n followType: string,\n limit: number\n ) =>\n [\n \"accounts\",\n \"followers\",\n following,\n startFollower,\n followType,\n limit,\n ],\n search: (query: string, excludeList?: string[]) =>\n [\"accounts\", \"search\", query, excludeList],\n profiles: (accounts: string[], observer: string) =>\n [\"accounts\", \"profiles\", accounts, observer],\n lookup: (query: string, limit: number) =>\n [\"accounts\", \"lookup\", query, limit],\n transactions: (username: string, group: string, limit: number) =>\n [\"accounts\", \"transactions\", username, group, limit],\n favorites: (activeUsername?: string) =>\n [\"accounts\", \"favorites\", activeUsername],\n favoritesInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"favorites\", \"infinite\", activeUsername, limit),\n checkFavorite: (activeUsername: string, targetUsername: string) =>\n [\n \"accounts\",\n \"favorites\",\n \"check\",\n activeUsername,\n targetUsername,\n ],\n favoriteTags: (activeUsername?: string) =>\n [\"accounts\", \"favorite-tags\", activeUsername],\n favoriteTagsInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"favorite-tags\", \"infinite\", activeUsername, limit),\n checkFavoriteTag: (activeUsername: string, tag: string) =>\n [\"accounts\", \"favorite-tags\", \"check\", activeUsername, tag],\n relations: (reference: string | undefined, target: string | undefined) =>\n [\"accounts\", \"relations\", reference, target],\n bots: () => [\"accounts\", \"bots\"],\n voteHistory: (username: string, limit: number) =>\n [\"accounts\", \"vote-history\", username, limit],\n reputations: (query: string, limit: number) =>\n [\"accounts\", \"reputations\", query, limit],\n bookmarks: (activeUsername?: string) =>\n [\"accounts\", \"bookmarks\", activeUsername],\n bookmarksInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"bookmarks\", \"infinite\", activeUsername, limit),\n referrals: (username: string) =>\n [\"accounts\", \"referrals\", username],\n referralsStats: (username: string) =>\n [\"accounts\", \"referrals-stats\", username],\n proMembers: () => [\"accounts\", \"pro-members\"],\n _prefix: [\"accounts\"],\n },\n\n // ===========================================================================\n // Notifications\n // ===========================================================================\n notifications: {\n announcements: () => [\"notifications\", \"announcements\"],\n spotlights: () => [\"notifications\", \"spotlights\"],\n list: (activeUsername?: string, filter?: string) =>\n [\"notifications\", activeUsername, filter],\n unreadCount: (activeUsername?: string) =>\n [\"notifications\", \"unread\", activeUsername],\n settings: (activeUsername?: string) =>\n [\"notifications\", \"settings\", activeUsername],\n _prefix: [\"notifications\"],\n },\n\n // ===========================================================================\n // Core\n // ===========================================================================\n core: {\n rewardFund: (fundName: string) =>\n [\"core\", \"reward-fund\", fundName],\n dynamicProps: () => [\"core\", \"dynamic-props\"],\n chainProperties: () => [\"core\", \"chain-properties\"],\n _prefix: [\"core\"],\n },\n\n // ===========================================================================\n // Communities\n // ===========================================================================\n communities: {\n single: (name?: string, observer?: string) =>\n [\"community\", \"single\", name, observer],\n /** Prefix key for matching all observer variants of a community */\n singlePrefix: (name: string) =>\n [\"community\", \"single\", name] as const,\n context: (username: string, communityName: string) =>\n [\"community\", \"context\", username, communityName],\n rewarded: () => [\"communities\", \"rewarded\"],\n list: (sort: string, query: string, limit: number) =>\n [\"communities\", \"list\", sort, query, limit],\n subscribers: (communityName: string) =>\n [\"communities\", \"subscribers\", communityName],\n subscribersInfinite: (communityName: string) =>\n [\"communities\", \"subscribers\", \"infinite\", communityName],\n accountNotifications: (account: string, limit: number) =>\n [\"communities\", \"account-notifications\", account, limit],\n },\n\n // ===========================================================================\n // Proposals\n // ===========================================================================\n proposals: {\n list: () => [\"proposals\", \"list\"],\n proposal: (id: number) => [\"proposals\", \"proposal\", id],\n votes: (proposalId: number, voter: string, limit: number) =>\n [\"proposals\", \"votes\", proposalId, voter, limit],\n votesPrefix: (proposalId: number) =>\n [\"proposals\", \"votes\", proposalId] as const,\n votesByUser: (voter: string) =>\n [\"proposals\", \"votes\", \"by-user\", voter],\n },\n\n // ===========================================================================\n // Search\n // ===========================================================================\n search: {\n topics: (q: string, limit: number) => [\"search\", \"topics\", q, limit],\n path: (q: string) => [\"search\", \"path\", q],\n account: (q: string, limit: number) =>\n [\"search\", \"account\", q, limit],\n results: (\n q: string,\n sort: string,\n hideLow: boolean | string,\n since?: string,\n scrollId?: string,\n votes?: number\n ) => {\n const normalizedHideLow = typeof hideLow === \"string\" ? hideLow === \"1\" || hideLow === \"true\" : hideLow;\n return [\"search\", q, sort, normalizedHideLow, since, scrollId, votes] as const;\n },\n controversialRising: (what: string, tag: string) =>\n [\"search\", \"controversial-rising\", what, tag],\n similarEntries: (author: string, permlink: string, content?: string) =>\n content\n ? [\"search\", \"similar-entries\", author, permlink, content]\n : [\"search\", \"similar-entries\", author, permlink],\n api: (\n q: string,\n sort: string,\n hideLow: boolean,\n since?: string,\n votes?: number,\n includeNsfw?: boolean\n ) => key(\"search\", \"api\", q, sort, hideLow, since, votes, includeNsfw),\n },\n\n // ===========================================================================\n // Witnesses\n // ===========================================================================\n witnesses: {\n list: (limit: number) => [\"witnesses\", \"list\", limit],\n votes: (username: string | undefined) => [\"witnesses\", \"votes\", username],\n proxy: () => [\"witnesses\", \"proxy\"],\n voters: (\n witness: string,\n page: number,\n pageSize: number,\n sort: string,\n direction: string\n ) => [\"witnesses\", \"voters\", witness, page, pageSize, sort, direction],\n voterCount: (witness: string) =>\n [\"witnesses\", \"voter-count\", witness],\n },\n\n // ===========================================================================\n // Wallet\n // ===========================================================================\n wallet: {\n outgoingRcDelegations: (username: string, limit: number) =>\n [\"wallet\", \"outgoing-rc-delegations\", username, limit],\n vestingDelegations: (username: string, limit: number) =>\n [\"wallet\", \"vesting-delegations\", username, limit],\n withdrawRoutes: (account: string) =>\n [\"wallet\", \"withdraw-routes\", account],\n incomingRc: (username: string) =>\n [\"wallet\", \"incoming-rc\", username],\n conversionRequests: (account: string) =>\n [\"wallet\", \"conversion-requests\", account],\n receivedVestingShares: (username: string) =>\n [\"wallet\", \"received-vesting-shares\", username],\n savingsWithdraw: (account: string) =>\n [\"wallet\", \"savings-withdraw\", account],\n openOrders: (user: string) =>\n [\"wallet\", \"open-orders\", user],\n collateralizedConversionRequests: (account: string) =>\n [\"wallet\", \"collateralized-conversion-requests\", account],\n recurrentTransfers: (username: string) =>\n [\"wallet\", \"recurrent-transfers\", username],\n balanceHistory: (username: string, coinType: string, pageSize: number) =>\n [\"wallet\", \"balance-history\", username, coinType, pageSize],\n aggregatedHistory: (\n username: string,\n coinType: string,\n granularity?: \"yearly\" | \"monthly\" | \"daily\"\n ) =>\n granularity === undefined\n ? [\"wallet\", \"aggregated-history\", username, coinType]\n : [\"wallet\", \"aggregated-history\", username, coinType, granularity],\n portfolio: (\n username: string,\n onlyEnabled: string,\n currency: string\n ) =>\n [\"wallet\", \"portfolio\", \"v2\", username, onlyEnabled, currency],\n },\n\n // ===========================================================================\n // Assets\n // ===========================================================================\n assets: {\n hiveGeneralInfo: (username: string) =>\n [\"assets\", \"hive\", \"general-info\", username],\n hiveTransactions: (username: string, limit: number, filterKey: string) =>\n [\"assets\", \"hive\", \"transactions\", username, limit, filterKey],\n hiveWithdrawalRoutes: (username: string) =>\n [\"assets\", \"hive\", \"withdrawal-routes\", username],\n hiveMetrics: (bucketSeconds: number) =>\n [\"assets\", \"hive\", \"metrics\", bucketSeconds],\n hbdGeneralInfo: (username: string) =>\n [\"assets\", \"hbd\", \"general-info\", username],\n hbdTransactions: (\n username: string,\n limit: number,\n filterKey: string\n ) => [\"assets\", \"hbd\", \"transactions\", username, limit, filterKey],\n hivePowerGeneralInfo: (username: string) =>\n [\"assets\", \"hive-power\", \"general-info\", username],\n hivePowerDelegates: (username: string) =>\n [\"assets\", \"hive-power\", \"delegates\", username],\n hivePowerDelegatings: (username: string) =>\n [\"assets\", \"hive-power\", \"delegatings\", username],\n hivePowerTransactions: (\n username: string,\n limit: number,\n filterKey: string\n ) =>\n [\n \"assets\",\n \"hive-power\",\n \"transactions\",\n username,\n limit,\n filterKey,\n ],\n pointsGeneralInfo: (username: string) =>\n [\"assets\", \"points\", \"general-info\", username],\n pointsTransactions: (username: string, type: string) =>\n [\"assets\", \"points\", \"transactions\", username, type],\n ecencyAssetInfo: (username: string, asset: string, currency: string) =>\n [\"ecency-wallets\", \"asset-info\", username, asset, currency],\n },\n\n // ===========================================================================\n // Market\n // ===========================================================================\n market: {\n statistics: () => [\"market\", \"statistics\"],\n orderBook: (limit: number) => [\"market\", \"order-book\", limit],\n history: (seconds: number, startDate: number, endDate: number) =>\n [\"market\", \"history\", seconds, startDate, endDate],\n feedHistory: () => [\"market\", \"feed-history\"],\n hiveHbdStats: () => [\"market\", \"hive-hbd-stats\"],\n data: (\n coin: string,\n vsCurrency: string,\n fromTs: number,\n toTs: number\n ) => [\"market\", \"data\", coin, vsCurrency, fromTs, toTs],\n tradeHistory: (limit: number, start: number, end: number) =>\n [\"market\", \"trade-history\", limit, start, end],\n currentMedianHistoryPrice: () =>\n [\"market\", \"current-median-history-price\"],\n },\n\n // ===========================================================================\n // Analytics\n // ===========================================================================\n analytics: {\n discoverCuration: (duration: string) =>\n [\"analytics\", \"discover-curation\", duration],\n pageStats: (\n url: string,\n dimensions: string,\n metrics: string,\n dateRange: string\n ) =>\n [\"analytics\", \"page-stats\", url, dimensions, metrics, dateRange],\n discoverLeaderboard: (duration: string) =>\n [\"analytics\", \"discover-leaderboard\", duration],\n },\n\n // ===========================================================================\n // Promotions\n // ===========================================================================\n promotions: {\n promotePrice: () => [\"promotions\", \"promote-price\"],\n boostPlusPrices: () => [\"promotions\", \"boost-plus-prices\"],\n boostPlusAccounts: (account: string) =>\n [\"promotions\", \"boost-plus-accounts\", account],\n },\n\n // ===========================================================================\n // Resource Credits\n // ===========================================================================\n resourceCredits: {\n account: (username: string) =>\n [\"resource-credits\", \"account\", username],\n stats: () => [\"resource-credits\", \"stats\"],\n resourceParams: () => [\"resource-credits\", \"resource-params\"],\n },\n\n // ===========================================================================\n // Points\n // ===========================================================================\n points: {\n points: (username: string, filter: number) =>\n [\"points\", username, filter],\n _prefix: (username: string) => [\"points\", username],\n },\n\n // ===========================================================================\n // Polls\n // ===========================================================================\n polls: {\n details: (author: string, permlink: string) =>\n [\"polls\", \"details\", author, permlink],\n vote: (author?: string, permlink?: string) =>\n author && permlink\n ? [\"polls\", \"vote\", author, permlink]\n : [\"polls\", \"vote\"],\n _prefix: [\"polls\"],\n },\n\n // ===========================================================================\n // Operations\n // ===========================================================================\n operations: {\n chainProperties: () => [\"operations\", \"chain-properties\"],\n },\n\n // ===========================================================================\n // Games\n // ===========================================================================\n games: {\n statusCheck: (gameType: string, username: string) =>\n [\"games\", \"status-check\", gameType, username],\n },\n\n quests: {\n status: (username: string | undefined) => [\"quests\", \"status\", username],\n },\n\n // ===========================================================================\n // Newsletter (digest subscriptions + sender API)\n // ===========================================================================\n newsletter: {\n subscriptions: (username: string | undefined) => [\n \"newsletter\",\n \"subscriptions\",\n username,\n ],\n sender: (type: string, target: string, username: string | undefined) => [\n \"newsletter\",\n \"sender\",\n type,\n target,\n username,\n ],\n issues: (type: string, target: string, username: string | undefined) => [\n \"newsletter\",\n \"issues\",\n type,\n target,\n username,\n ],\n posts: (\n type: string,\n target: string,\n username: string | undefined,\n limit: number,\n ) => [\"newsletter\", \"posts\", type, target, username, limit],\n _prefix: [\"newsletter\"],\n },\n\n // ===========================================================================\n // Support Ecency\n // ===========================================================================\n support: {\n settings: (username: string | undefined) => [\"support\", \"settings\", username],\n _prefix: [\"support\"],\n },\n\n // ===========================================================================\n // Bad Actors\n // ===========================================================================\n badActors: {\n list: () => [\"bad-actors\", \"list\"],\n _prefix: [\"bad-actors\"],\n },\n\n // ===========================================================================\n // Curation desk\n // ===========================================================================\n curation: {\n /** Public feed; `params` is the normalized (defaults dropped) param map. */\n feed: (params: Record = {}) => [\"curation\", \"feed\", params],\n /** Authed roster feed; every sort and filter value is on the key. */\n rosterFeed: (username: string | undefined, params: Record = {}) => [\n \"curation\",\n \"roster-feed\",\n username,\n params,\n ],\n status: () => [\"curation\", \"status\"],\n roster: () => [\"curation\", \"roster\"],\n /**\n * The admin view of the roster: private, per viewer, never shared with the public key.\n * `rosterAdminPrefix` covers every viewer's copy, because the roster it describes is\n * shared: a write by one admin makes the cached copy of any other one stale.\n */\n rosterAdmin: (username: string | undefined) => [\"curation\", \"roster-admin\", username],\n rosterAdminPrefix: () => [\"curation\", \"roster-admin\"],\n recommendations: (params: Record = {}) => [\n \"curation\",\n \"recommendations\",\n params,\n ],\n _recommendationsPrefix: [\"curation\", \"recommendations\"],\n post: (author: string, permlink: string) => [\"curation\", \"post\", author, permlink],\n /** Route 14: one recommender's 90-day scorecard. */\n recommender: (username: string) => [\"curation\", \"recommender\", username],\n /** Mutation key of the recommend and unrecommend broadcast. */\n recommend: () => [\"curation\", \"recommend\"],\n _prefix: [\"curation\"],\n },\n\n // ===========================================================================\n // AI\n // ===========================================================================\n ai: {\n prices: () => [\"ai\", \"prices\"] as const,\n assistPrices: (username?: string) => [\"ai\", \"assist-prices\", username] as const,\n transcribePrice: (username?: string) => [\"ai\", \"transcribe-price\", username] as const,\n images: (username?: string) => [\"ai\", \"images\", username] as const,\n _prefix: [\"ai\"],\n },\n} as const;\n","/**\n * UTF-8 byte length of a string.\n *\n * `TextEncoder` is missing on some runtimes the SDK ships to (React Native /\n * Hermes), and `String.length` is NOT a substitute: it counts UTF-16 code\n * units, so anything non-ASCII is undercounted. Where that number feeds an RC\n * estimate, undercounting means telling someone a post is affordable when the\n * chain will reject it.\n */\nexport function utf8ByteLength(value: string): number {\n if (typeof TextEncoder !== \"undefined\") {\n return new TextEncoder().encode(value).length;\n }\n\n let bytes = 0;\n for (let i = 0; i < value.length; i++) {\n const c = value.charCodeAt(i);\n if (c < 0x80) {\n bytes += 1;\n } else if (c < 0x800) {\n bytes += 2;\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < value.length) {\n // surrogate pair encodes as four bytes\n i++;\n bytes += 4;\n } else {\n bytes += 3;\n }\n }\n return bytes;\n}\n\n/** Byte length of Hive's unsigned LEB128 varint for `value`. */\nexport function varintByteLength(value: number): number {\n let count = 0;\n let remaining = value;\n do {\n count++;\n remaining >>>= 7;\n } while (remaining > 0);\n return count;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiImagePriceResponse } from \"../types\";\n\nexport function getAiGeneratePriceQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.prices(),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-generate-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI generation prices: ${response.status}`);\n }\n\n return (await response.json()) as AiImagePriceResponse;\n },\n staleTime: 300_000,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiImageHistoryItem } from \"../types\";\n\n/**\n * Per-user AI image generation history (the backend's last 20 successful generations).\n * The backend resolves the user from the validated code, so no username is sent; the\n * key still carries it so each account caches its own history.\n */\nexport function getAiImagesQueryOptions(username: string | undefined, accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.images(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-images\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI image history: ${response.status}`);\n }\n\n return (await response.json()) as AiImageHistoryItem[];\n },\n staleTime: 30_000,\n // This list is a recovery surface: a generation can complete server-side while the\n // client saw only an error, in which case no success-path invalidation ever runs.\n // Every mount of the history view therefore refetches unconditionally, so opening\n // the tab always shows what the server actually delivered.\n refetchOnMount: \"always\",\n enabled: !!username && !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiAssistPrice } from \"../types\";\n\nexport function getAiAssistPriceQueryOptions(username: string | undefined, accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.assistPrices(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-assist-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI assist prices: ${response.status}`);\n }\n\n return (await response.json()) as AiAssistPrice[];\n },\n staleTime: 60_000,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiTranscribePrice } from \"../types\";\n\n/**\n * Dictation pricing. Kept on its own route rather than folded into\n * /private-api/ai-assist-price: that endpoint returns a list of flat-cost actions and\n * shipped clients render every entry as a selectable assist action, so adding a\n * metered one there would surface in older clients as an action they cannot perform.\n *\n * Everything except `free_remaining` is static, so this is cheap to hold and lets the\n * client price a clip locally while the user is still recording.\n */\nexport function getAiTranscribePriceQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.ai.transcribePrice(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-transcribe-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\"\n },\n body: JSON.stringify({ code: accessToken })\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI transcribe price: ${response.status}`);\n }\n\n return (await response.json()) as AiTranscribePrice;\n },\n staleTime: 60_000,\n enabled: !!accessToken\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiGenerationResponse } from \"../types\";\n\nexport interface GenerateImageParams {\n prompt: string;\n aspect_ratio?: string;\n power?: number;\n // Pass a stable key to make a retry recover the same paid generation. If omitted a\n // fresh key is generated per call (only dedupes edge/proxy retries, not user retries).\n idempotency_key?: string;\n}\n\n// Generates a key matching the eepoints validator [A-Za-z0-9_-]{8,64}.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\n// What a completed generation invalidates: the Points balance (it changed) and the\n// per-user generation history (the new image belongs there right away). Exported so the\n// side effect stays unit-testable without rendering the hook.\nexport function invalidateGenerateImageCaches(username: string) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username),\n });\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.images(username),\n });\n}\n\nexport function useGenerateImage(\n username: string | undefined,\n accessToken: string | undefined,\n) {\n return useMutation({\n mutationKey: [\"ai\", \"generate-image\"],\n mutationFn: async (params: GenerateImageParams): Promise => {\n if (!username) {\n throw new Error(\n \"[SDK][AI][GenerateImage] – username wasn't provided\"\n );\n }\n\n if (!accessToken) {\n throw new Error(\n \"[SDK][AI][GenerateImage] – access token wasn't found\"\n );\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/ai-generate-image\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code: accessToken,\n us: username,\n prompt: params.prompt,\n aspect_ratio: params.aspect_ratio ?? \"1:1\",\n power: params.power ?? 1,\n idempotency_key: params.idempotency_key ?? makeIdempotencyKey(),\n }),\n }\n );\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n const err = new Error(\n `[SDK][AI][GenerateImage] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n );\n (err as any).status = response.status;\n (err as any).data = parsed;\n throw err;\n }\n\n // 202 = the prediction is paid for and captured but not yet delivered to our image\n // host. Detect it by HTTP status BEFORE parsing (the body may be present or empty)\n // and surface it as a typed error so the caller can retry with the SAME\n // idempotency_key to fetch it — no second prediction, no second charge.\n if (response.status === 202) {\n let pendingData: Record = {};\n try {\n pendingData = await response.json();\n } catch {\n // empty / non-JSON 202 body is fine — the status alone drives recovery\n }\n const err = new Error(\"[SDK][AI][GenerateImage] – delivery pending\");\n (err as any).status = 202;\n (err as any).data = pendingData;\n throw err;\n }\n\n const data = (await response.json()) as AiGenerationResponse;\n\n return data;\n },\n onSuccess: () => {\n if (username) {\n invalidateGenerateImageCaches(username);\n }\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiAssistResponse } from \"../types\";\n\nexport interface AiAssistParams {\n action: string;\n text: string;\n code?: string;\n}\n\n// Generates a key that matches the eepoints validator [A-Za-z0-9_-]{8,64}.\n// Used to dedupe duplicate POSTs caused by edge/proxy retries — same key on\n// retry returns the cached AI output without re-charging or re-calling Claude.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\nexport function useAiAssist(\n username: string | undefined,\n accessToken: string | undefined,\n) {\n return useMutation({\n mutationKey: [\"ai\", \"assist\"],\n mutationFn: async (params: AiAssistParams): Promise => {\n if (!username) {\n throw new Error(\n \"[SDK][AI][Assist] – username wasn't provided\"\n );\n }\n\n if (!accessToken) {\n throw new Error(\n \"[SDK][AI][Assist] – access token wasn't found\"\n );\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/ai-assist\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code: params.code ?? accessToken,\n us: username,\n action: params.action,\n text: params.text,\n idempotency_key: makeIdempotencyKey(),\n }),\n }\n );\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n const err = new Error(\n `[SDK][AI][Assist] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n );\n (err as any).status = response.status;\n (err as any).data = parsed;\n throw err;\n }\n\n return (await response.json()) as AiAssistResponse;\n },\n onSuccess: (data) => {\n if (username) {\n // Invalidate points cache if cost was charged\n if (data.cost > 0) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username),\n });\n }\n // Invalidate assist prices to refresh free_remaining counts\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.assistPrices(username),\n });\n }\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiTranscribeParams, AiTranscribeResponse } from \"../types\";\n\n// Matches the eepoints validator [A-Za-z0-9_-]{8,64}. Dedupes duplicate POSTs caused\n// by edge/proxy retries -- the same key returns the cached transcript without\n// re-charging or re-calling the vendor.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\n/**\n * Transcribe an audio clip to text, charged per 30 seconds.\n *\n * Sends multipart/form-data rather than JSON because it carries a file. Unlike the\n * other AI mutations the charge is BURNED rather than moved to the treasury, so the\n * points transaction shows up as PointTransactionType.BURNED (997).\n */\nexport function useAiTranscribe(username: string | undefined, accessToken: string | undefined) {\n return useMutation({\n mutationKey: [\"ai\", \"transcribe\"],\n mutationFn: async (params: AiTranscribeParams): Promise => {\n if (!username) {\n throw new Error(\"[SDK][AI][Transcribe] – username wasn't provided\");\n }\n\n // Validate the token actually being sent, not just the bound one. A caller\n // that resolves a fresh token per call (because the bound one can expire\n // during a long recording) legitimately has nothing at hook construction.\n const code = params.code ?? accessToken;\n if (!code) {\n throw new Error(\"[SDK][AI][Transcribe] – access token wasn't found\");\n }\n\n const form = new FormData();\n form.append(\"code\", code);\n // `us` is resolved from the code server-side and is deliberately not sent:\n // upstream burns from whoever it names.\n form.append(\"duration_ms\", String(Math.round(params.durationMs)));\n // Caller-supplied key when there is one. Generating a fresh key per attempt\n // would defeat the dedupe in the one case it exists for: a POST that reached\n // the server whose response was lost. Retrying then would transcribe and\n // charge a second time. Same contract as useGenerateImage.\n form.append(\"idempotency_key\", params.idempotency_key ?? makeIdempotencyKey());\n form.append(\"audio\", params.audio, params.fileName ?? \"clip.webm\");\n\n const fetchApi = getBoundFetch();\n // No Content-Type header: fetch sets it, including the multipart boundary.\n // Setting it by hand drops the boundary and the body becomes unparseable.\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-transcribe\", {\n method: \"POST\",\n body: form\n });\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n // Object.assign rather than `as any` casts: callers need `status` to tell a\n // 402 (out of Points) from a 429 (rate limited) from a 400 (clip too long),\n // and this keeps that shape typed.\n throw Object.assign(\n new Error(\n `[SDK][AI][Transcribe] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n ),\n { status: response.status, data: parsed }\n );\n }\n\n return (await response.json()) as AiTranscribeResponse;\n },\n onSuccess: (data) => {\n if (username) {\n if (data.cost > 0) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username)\n });\n }\n // Refresh free_remaining, which only Pro members ever have above zero.\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.transcribePrice(username)\n });\n }\n }\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport {\n AccountFollowStats,\n FullAccount,\n} from \"../types\";\nimport { parseProfileMetadata } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/** The raw `condenser_api.get_accounts` row — every FullAccount field except the three\n * this query derives separately (follow_stats + reputation from bridge, profile parsed). */\ntype RawAccount = Omit;\n\n/** Minimal shape read from `bridge.get_profile` (hivemind social profile): it carries\n * the reputation score, the follower/following counts and hivemind's parsed\n * (normalized) profile — the latter is used only to cross-validate the chain row. */\ninterface BridgeProfile {\n reputation?: number;\n stats?: { followers?: number; following?: number };\n metadata?: { profile?: Record };\n}\n\n/** True when the chain row carries no account metadata at all. Legitimate for\n * accounts that never set a profile — but combined with a populated hivemind\n * profile it identifies a node serving stripped account rows. */\nfunction isMetadataStripped(account: RawAccount): boolean {\n return !account.posting_json_metadata && !account.json_metadata;\n}\n\n/** True when a hivemind `metadata.profile` object carries at least one real\n * value. Hivemind emits its fixed profile keys with empty strings for\n * accounts without a profile, so key presence alone proves nothing. */\nfunction hasProfileValues(profile?: Record | null): boolean {\n if (!profile) return false;\n return Object.values(profile).some((value) =>\n typeof value === \"string\" ? value.length > 0 : value != null\n );\n}\n\nexport function getAccountFullQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: QueryKeys.accounts.full(username),\n queryFn: async ({ signal }) => {\n if (!username) {\n return null;\n }\n\n // Fetch the chain account (balances/keys/vesting) and the hivemind profile in\n // parallel — both only need the username. bridge.get_profile carries BOTH the\n // follower/following counts and the reputation score, so it replaces the old\n // second-layer condenser_api.get_follow_count RPC *and* the reputation-api REST\n // call: condenser_api.get_accounts no longer returns a usable reputation (it is 0\n // since the hardfork), and there is no reason to make two extra round-trips for\n // data one profile object already carries.\n const [response, bridgeProfile] = await Promise.all([\n callRPC(\n \"condenser_api.get_accounts\",\n [[username]],\n undefined,\n undefined,\n signal,\n // A correct node always answers get_accounts with an array — a null\n // result in a well-formed envelope is a node fault (observed in the\n // wild), so fail over to the next node instead of misreading it as\n // \"account does not exist\".\n (rows) => Array.isArray(rows)\n ),\n callRPC(\n \"bridge.get_profile\",\n { account: username },\n undefined,\n undefined,\n signal\n ).catch((e): BridgeProfile | null => {\n // A caller cancel (aborted signal) must propagate — only genuine RPC/transport\n // failures degrade to reputation 0 / no follow_stats.\n if (signal?.aborted) throw e;\n return null;\n })\n ]);\n if (!response?.[0]) {\n // The account does not exist (e.g. not yet finalized on-chain during\n // signup). Treat absence as a recoverable null instead of throwing, so\n // consumers (useQuery hooks and fetchQuery callers) surface it as empty\n // data rather than an unhandled rejection / error-boundary crash.\n return null;\n }\n\n let chainAccount = response[0];\n\n // Cross-validate the chain row against the hivemind profile fetched in\n // the same query. Some public nodes serve account rows with BOTH\n // metadata fields stripped to \"\" (observed in the wild) while their own\n // hivemind still returns the real profile — and a merge base built from\n // such a row wipes the user's profile on the next partial\n // account_update2. When the row claims \"no metadata\" but hivemind\n // disagrees, re-read once (failover may pick another node) and otherwise\n // fail the query: an error here is recoverable, a poisoned cache entry\n // is not.\n if (\n isMetadataStripped(chainAccount) &&\n hasProfileValues(bridgeProfile?.metadata?.profile)\n ) {\n // The re-read carries a payload validator: a stripped row is treated\n // as a node fault, so the failover walk moves on to other nodes (and\n // repeat offenders earn a per-API health cooldown) instead of asking\n // the same lying node twice.\n const reread = await callRPC(\n \"condenser_api.get_accounts\",\n [[username]],\n undefined,\n undefined,\n signal,\n (rows) =>\n Array.isArray(rows) &&\n (!rows[0] || !isMetadataStripped(rows[0] as RawAccount))\n );\n if (reread[0] && !isMetadataStripped(reread[0])) {\n chainAccount = reread[0];\n } else {\n throw new Error(\n `[SDK][Accounts] – inconsistent account row for ${username}: empty json metadata while hivemind profile is populated`\n );\n }\n }\n\n const profile = parseProfileMetadata(chainAccount.posting_json_metadata);\n\n // bridge.get_profile.stats → follower/following counts; `reputation` is the\n // computed score (e.g. 78.29). accountReputation() floors an in-range score, so\n // it yields the same value the reputation-api used to return. Both degrade to a\n // safe default if the profile call failed.\n const stats = bridgeProfile?.stats;\n const follow_stats: AccountFollowStats | undefined = stats\n ? {\n account: chainAccount.name,\n follower_count: stats.followers ?? 0,\n following_count: stats.following ?? 0\n }\n : undefined;\n const reputationValue: number = bridgeProfile?.reputation ?? 0;\n\n return {\n name: chainAccount.name,\n owner: chainAccount.owner,\n active: chainAccount.active,\n posting: chainAccount.posting,\n memo_key: chainAccount.memo_key,\n post_count: chainAccount.post_count,\n created: chainAccount.created,\n posting_json_metadata: chainAccount.posting_json_metadata,\n last_vote_time: chainAccount.last_vote_time,\n last_post: chainAccount.last_post,\n json_metadata: chainAccount.json_metadata,\n reward_hive_balance: chainAccount.reward_hive_balance,\n reward_hbd_balance: chainAccount.reward_hbd_balance,\n reward_vesting_hive: chainAccount.reward_vesting_hive,\n reward_vesting_balance: chainAccount.reward_vesting_balance,\n balance: chainAccount.balance,\n hbd_balance: chainAccount.hbd_balance,\n savings_balance: chainAccount.savings_balance,\n savings_hbd_balance: chainAccount.savings_hbd_balance,\n savings_hbd_last_interest_payment:\n chainAccount.savings_hbd_last_interest_payment,\n savings_hbd_seconds_last_update:\n chainAccount.savings_hbd_seconds_last_update,\n savings_hbd_seconds: chainAccount.savings_hbd_seconds,\n next_vesting_withdrawal: chainAccount.next_vesting_withdrawal,\n pending_claimed_accounts: chainAccount.pending_claimed_accounts,\n vesting_shares: chainAccount.vesting_shares,\n delegated_vesting_shares: chainAccount.delegated_vesting_shares,\n received_vesting_shares: chainAccount.received_vesting_shares,\n vesting_withdraw_rate: chainAccount.vesting_withdraw_rate,\n to_withdraw: chainAccount.to_withdraw,\n withdrawn: chainAccount.withdrawn,\n // int64 counters. Condenser serves them unquoted, so normalize here in case a\n // node quotes them, but leave an omitted counter undefined: absent is unknown,\n // and coercing it to 0 would understate every ratio derived from it.\n curation_rewards:\n chainAccount.curation_rewards === undefined\n ? undefined\n : Number(chainAccount.curation_rewards),\n posting_rewards:\n chainAccount.posting_rewards === undefined\n ? undefined\n : Number(chainAccount.posting_rewards),\n witness_votes: chainAccount.witness_votes,\n proxy: chainAccount.proxy,\n recovery_account: chainAccount.recovery_account,\n proxied_vsf_votes: chainAccount.proxied_vsf_votes,\n voting_manabar: chainAccount.voting_manabar,\n voting_power: chainAccount.voting_power,\n downvote_manabar: chainAccount.downvote_manabar,\n follow_stats,\n reputation: reputationValue,\n profile,\n } satisfies FullAccount;\n },\n enabled: !!username,\n staleTime: 60000,\n });\n}\n","import { AccountProfile, FullAccount } from \"../types\";\n\nexport type ProfileTokens = AccountProfile[\"tokens\"];\n\nconst DENIED_KEYS = new Set([\"__proto__\", \"constructor\", \"prototype\"]);\n\nfunction isPlainObject(value: unknown): value is Record {\n if (!value || typeof value !== \"object\" || Array.isArray(value)) {\n return false;\n }\n const proto = Object.getPrototypeOf(value);\n return proto === null || proto === Object.prototype;\n}\n\nfunction deepMerge>(target: T, source: Record): T {\n const result = { ...target } as Record;\n for (const key of Object.keys(source)) {\n if (DENIED_KEYS.has(key)) {\n continue;\n }\n const srcVal = source[key];\n const tgtVal = result[key];\n if (isPlainObject(srcVal) && isPlainObject(tgtVal)) {\n result[key] = deepMerge(tgtVal, srcVal);\n } else {\n result[key] = srcVal;\n }\n }\n return result as T;\n}\n\nexport interface BuildProfileMetadataArgs {\n existingProfile?: AccountProfile;\n profile?: Partial | null;\n tokens?: ProfileTokens | null;\n}\n\nfunction sanitizeTokens(\n tokens?: ProfileTokens | null\n): ProfileTokens | undefined {\n // Guard against corrupted data from blockchain where tokens is not an array\n if (!tokens || !Array.isArray(tokens)) {\n return undefined;\n }\n\n return tokens.map(({ meta, ...rest }) => {\n if (!meta || typeof meta !== \"object\") {\n return { ...rest, meta };\n }\n\n const { privateKey, username, ...safeMeta } = meta;\n return { ...rest, meta: safeMeta };\n });\n}\n\nexport function parseProfileMetadata(\n postingJsonMetadata?: string | null\n): AccountProfile {\n if (!postingJsonMetadata) {\n return {} as AccountProfile;\n }\n\n try {\n const parsed = JSON.parse(postingJsonMetadata);\n if (\n parsed &&\n typeof parsed === \"object\" &&\n parsed.profile &&\n typeof parsed.profile === \"object\"\n ) {\n return parsed.profile as AccountProfile;\n }\n } catch (err) {\n console.warn(\"[SDK] Failed to parse posting_json_metadata:\", err, { length: postingJsonMetadata?.length ?? 0 });\n }\n\n return {} as AccountProfile;\n}\n\nexport function extractAccountProfile(\n data?: Pick | null\n): AccountProfile {\n return parseProfileMetadata(data?.posting_json_metadata);\n}\n\n/**\n * Choose between two account snapshots for a posting-metadata merge base.\n * Prefers `preferred` (typically the freshest cache entry) unless `fallback`\n * carries strictly more profile keys — guarding read-modify-write flows\n * against a snapshot whose metadata was served stripped by a misbehaving node\n * while another snapshot still holds the real profile. A partial update must\n * never shrink the profile while any snapshot still knows the full one.\n */\nexport function pickRicherMetadataSnapshot<\n T extends Pick\n>(\n preferred: T | null | undefined,\n fallback: T | null | undefined\n): T | null | undefined {\n if (!preferred) return fallback;\n if (!fallback) return preferred;\n const preferredKeys = Object.keys(\n parseProfileMetadata(preferred.posting_json_metadata)\n ).length;\n const fallbackKeys = Object.keys(\n parseProfileMetadata(fallback.posting_json_metadata)\n ).length;\n return fallbackKeys > preferredKeys ? fallback : preferred;\n}\n\n/**\n * Parse the FULL root object of posting_json_metadata, not just its `profile`\n * key. Returns {} for missing/invalid input or a non-object root.\n *\n * `parseProfileMetadata` intentionally returns only `parsed.profile`; this\n * helper exists so writers can carry forward any sibling top-level keys that\n * live alongside `profile` (data other Hive apps may store there) instead of\n * dropping them on the next update.\n */\nexport function parsePostingMetadataRoot(\n postingJsonMetadata?: string | null\n): Record {\n if (!postingJsonMetadata) {\n return {};\n }\n\n try {\n const parsed = JSON.parse(postingJsonMetadata);\n if (isPlainObject(parsed)) {\n return parsed;\n }\n } catch (err) {\n console.warn(\"[SDK] Failed to parse posting_json_metadata root:\", err, {\n length: postingJsonMetadata?.length ?? 0,\n });\n }\n\n return {};\n}\n\n/**\n * Build the serialized `posting_json_metadata` string for an account_update2\n * operation. It deep-merges the profile (via {@link buildProfileMetadata}) over\n * the account's CURRENT on-chain profile AND preserves any non-`profile`\n * top-level keys present in the existing metadata, so a partial profile update\n * (e.g. only `pinned` or only `tokens`) never clobbers unrelated fields.\n */\nexport function buildPostingJsonMetadata({\n existingPostingJsonMetadata,\n profile,\n tokens,\n}: {\n existingPostingJsonMetadata?: string | null;\n profile?: Partial | null;\n tokens?: ProfileTokens | null;\n}): string {\n const root = parsePostingMetadataRoot(existingPostingJsonMetadata);\n const existingProfile = isPlainObject(root.profile)\n ? (root.profile as AccountProfile)\n : ({} as AccountProfile);\n\n const mergedProfile = buildProfileMetadata({\n existingProfile,\n profile,\n tokens,\n });\n\n return JSON.stringify({ ...root, profile: mergedProfile });\n}\n\nexport function buildProfileMetadata({\n existingProfile,\n profile,\n tokens,\n}: BuildProfileMetadataArgs): AccountProfile {\n const { tokens: profileTokens, version: _ignoredVersion, ...profileRest } =\n profile ?? {};\n\n const metadata = deepMerge(\n (existingProfile ?? {}) as Record,\n profileRest as Record,\n ) as AccountProfile;\n\n // Clean up corrupted tokens data from blockchain before processing\n if (metadata.tokens && !Array.isArray(metadata.tokens)) {\n metadata.tokens = undefined;\n }\n\n // tokens semantics:\n // undefined → no change, fall back to profileTokens from profile partial\n // null or [] → explicitly clear tokens\n // non-empty array → set tokens\n if (tokens !== undefined) {\n // Explicit intent from caller: null or [] clears, non-empty array sets\n metadata.tokens = tokens && tokens.length > 0 ? tokens : [];\n } else if (profileTokens !== undefined) {\n // Fall back to tokens from profile partial (including empty array to clear)\n metadata.tokens = profileTokens;\n }\n\n metadata.tokens = sanitizeTokens(metadata.tokens);\n metadata.version = 2;\n\n return metadata;\n}\n","import { FullAccount, AccountProfile } from \"../types\";\nimport { parseProfileMetadata } from \"./profile-metadata\";\n\n/**\n * Parses raw account data from Hive API into FullAccount type\n * Handles profile metadata extraction from posting_json_metadata or json_metadata\n */\nexport function parseAccounts(rawAccounts: any[]): FullAccount[] {\n return rawAccounts.map((x) => {\n const account: FullAccount = {\n name: x.name,\n owner: x.owner,\n active: x.active,\n posting: x.posting,\n memo_key: x.memo_key,\n post_count: x.post_count,\n created: x.created,\n reputation: x.reputation,\n posting_json_metadata: x.posting_json_metadata,\n last_vote_time: x.last_vote_time,\n last_post: x.last_post,\n json_metadata: x.json_metadata,\n reward_hive_balance: x.reward_hive_balance,\n reward_hbd_balance: x.reward_hbd_balance,\n reward_vesting_hive: x.reward_vesting_hive,\n reward_vesting_balance: x.reward_vesting_balance,\n balance: x.balance,\n hbd_balance: x.hbd_balance,\n savings_balance: x.savings_balance,\n savings_hbd_balance: x.savings_hbd_balance,\n savings_hbd_last_interest_payment: x.savings_hbd_last_interest_payment,\n savings_hbd_seconds_last_update: x.savings_hbd_seconds_last_update,\n savings_hbd_seconds: x.savings_hbd_seconds,\n next_vesting_withdrawal: x.next_vesting_withdrawal,\n pending_claimed_accounts: x.pending_claimed_accounts,\n vesting_shares: x.vesting_shares,\n delegated_vesting_shares: x.delegated_vesting_shares,\n received_vesting_shares: x.received_vesting_shares,\n vesting_withdraw_rate: x.vesting_withdraw_rate,\n to_withdraw: x.to_withdraw,\n withdrawn: x.withdrawn,\n witness_votes: x.witness_votes,\n proxy: x.proxy,\n recovery_account: x.recovery_account,\n proxied_vsf_votes: x.proxied_vsf_votes,\n voting_manabar: x.voting_manabar,\n voting_power: x.voting_power,\n downvote_manabar: x.downvote_manabar,\n };\n\n // Try to parse profile from posting_json_metadata first\n let profile: AccountProfile | undefined = parseProfileMetadata(\n x.posting_json_metadata\n );\n\n // Fallback to json_metadata if posting_json_metadata didn't have a profile\n if (!profile || Object.keys(profile).length === 0) {\n try {\n const jsonMetadata = JSON.parse(x.json_metadata || \"{}\");\n if (jsonMetadata.profile) {\n profile = jsonMetadata.profile;\n }\n } catch (e) {\n // Ignore parsing errors\n }\n }\n\n // Ensure we always have a profile object\n if (!profile || Object.keys(profile).length === 0) {\n profile = {\n about: \"\",\n cover_image: \"\",\n location: \"\",\n name: \"\",\n profile_image: \"\",\n website: \"\",\n };\n }\n\n return { ...account, profile };\n });\n}\n","/**\n * The chain stores an account name in a `fixed_string` of 16 **bytes**, and hived\n * asserts on the byte length while deserialising the argument, before it ever looks\n * an account up. So a name that is too long does not come back as \"no such account\",\n * it comes back as\n *\n * Assert Exception:in_len <= sizeof(data): Input too large: `` (17)\n * for fixed size string: (16)\n *\n * from `lookup_accounts`, `get_accounts` and anything else taking an\n * `account_name_type`, including plain reads.\n */\nconst HIVE_ACCOUNT_NAME_MAX_BYTES = 16;\n\n/**\n * Bytes, not characters. The two differ exactly where this bug lives: `sebastián.bilbao`\n * is 16 characters but 17 bytes, and `вцпк33ппп43` is 11 characters but 18 bytes. Both\n * pass a `.length <= 16` check and both are rejected by the node.\n */\nexport function accountNameByteLength(value: string): number {\n return new TextEncoder().encode(value).length;\n}\n\n/**\n * Whether a value can be sent to a node as an account name (or as the prefix of one,\n * which `lookup_accounts` takes) without tripping the assert above.\n *\n * This is deliberately only a length check. It is not account-name validation: a\n * caller searching for a prefix is allowed to pass something that is not yet a legal\n * name, and a node answers that honestly with no matches. The only thing that must not\n * happen is a request the node refuses to parse.\n */\nexport function isQueryableAccountName(value: string | undefined | null): boolean {\n if (!value) {\n return false;\n }\n\n return accountNameByteLength(value) <= HIVE_ACCOUNT_NAME_MAX_BYTES;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { parseAccounts } from \"../utils/parse-accounts\";\nimport { FullAccount } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\nexport function getAccountsQueryOptions(usernames: string[]) {\n return queryOptions({\n queryKey: QueryKeys.accounts.list(...usernames),\n enabled: usernames.length > 0,\n queryFn: async (): Promise => {\n // One unholdable name asserts the whole batch, so drop those first. They\n // cannot name an existing account, and an empty result is what a caller\n // checking \"does this account exist\" already handles.\n const queryable = usernames.filter(isQueryableAccountName);\n if (queryable.length === 0) {\n return [];\n }\n\n // A correct node always answers get_accounts with an array — a null\n // result in a well-formed envelope is a node fault (observed in the\n // wild), so the validator makes callRPC fail over to the next node\n // instead of resolving with a payload parseAccounts cannot map over.\n const response = (await callRPC(\n \"condenser_api.get_accounts\",\n [queryable],\n undefined,\n undefined,\n undefined,\n (rows) => Array.isArray(rows)\n )) as any[];\n return parseAccounts(response ?? []);\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountFollowStats } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get follow count (followers and following) for an account\n */\nexport function getFollowCountQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.accounts.followCount(username),\n queryFn: () =>\n callRPC(\"condenser_api.get_follow_count\", [\n username,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of accounts following a user\n *\n * @param following - The account being followed\n * @param startFollower - Pagination start point (account name)\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Maximum number of results (default: 100)\n */\nexport function getFollowersQueryOptions(\n following: string | undefined,\n startFollower: string,\n followType = \"blog\",\n limit = 100\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.followers(following!, startFollower, followType, limit),\n queryFn: () =>\n callRPC(\"condenser_api.get_followers\", [\n following,\n startFollower,\n followType,\n limit,\n ]) as Promise,\n enabled: !!following,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of accounts that a user is following\n *\n * @param follower - The account doing the following\n * @param startFollowing - Pagination start point (account name)\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Maximum number of results (default: 100)\n */\nexport function getFollowingQueryOptions(\n follower: string,\n startFollowing: string,\n followType = \"blog\",\n limit = 100\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.following(follower, startFollowing, followType, limit),\n queryFn: () =>\n callRPC(\"condenser_api.get_following\", [\n follower,\n startFollowing,\n followType,\n limit,\n ]) as Promise,\n enabled: !!follower,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/** `condenser_api.get_following` caps a single response at 1000 rows. */\nconst MUTED_USERS_PAGE_SIZE = 1000;\n\n/**\n * Safety valve for the paging loop: 20 pages is 20k muted accounts, far past\n * any real mute list. Bounds the work if a node ever stops advancing the\n * cursor, so a malformed response degrades to a truncated list rather than an\n * endless request loop.\n */\nconst MUTED_USERS_MAX_PAGES = 20;\n\n/**\n * Get the full list of accounts a user has muted.\n *\n * Pages until the list is exhausted instead of taking the first N. That is\n * load-bearing: this result dims muted authors in feeds and collapses their\n * comments (`entry-list-item-muted-content`, `discussion-list`), so a truncated\n * list silently renders muted accounts as though they were never muted.\n *\n * Takes no limit, on purpose. `QueryKeys.accounts.mutedUsers` keys on the\n * username alone, so a limit parameter meant callers requesting different\n * amounts shared one cache entry and whichever mounted first decided how much\n * of the list every other caller saw.\n *\n * @param username - The account whose mute list to fetch\n */\nexport function getMutedUsersQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: QueryKeys.accounts.mutedUsers(username!),\n queryFn: async () => {\n const muted: string[] = [];\n let start = \"\";\n\n for (let page = 0; page < MUTED_USERS_MAX_PAGES; page++) {\n const response = (await callRPC(\"condenser_api.get_following\", [\n username,\n start,\n \"ignore\",\n MUTED_USERS_PAGE_SIZE,\n ])) as Follow[];\n\n if (!response?.length) {\n break;\n }\n\n let names = response.map((user) => user.following);\n\n // `start` is exclusive on Hive, so a page should not repeat the cursor.\n // Drop it defensively anyway: against a node treating `start` as\n // inclusive, this loop would otherwise re-append the same account until\n // it hit the page cap.\n if (names[0] === start) {\n names = names.slice(1);\n }\n\n if (!names.length) {\n break;\n }\n\n muted.push(...names);\n\n if (response.length < MUTED_USERS_PAGE_SIZE) {\n break;\n }\n\n start = names[names.length - 1];\n }\n\n return muted;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\n/**\n * Lookup accounts by username prefix\n *\n * @param query - Username prefix to search for\n * @param limit - Maximum number of results (default: 50)\n */\nexport function lookupAccountsQueryOptions(query: string, limit = 50) {\n return queryOptions({\n queryKey: QueryKeys.accounts.lookup(query, limit),\n queryFn: async (): Promise => {\n // `lower_bound_name` is an account_name_type, so a prefix the chain cannot\n // hold is an assert rather than an empty result. Callers feed this from raw\n // input (the editor's `@` autocomplete hands over whatever follows the `@`,\n // punctuation included), so answer \"nothing matches\" here instead.\n if (!isQueryableAccountName(query)) {\n return [];\n }\n\n return callRPC(\"condenser_api.lookup_accounts\", [\n query,\n limit,\n ]) as Promise;\n },\n enabled: !!query,\n staleTime: Infinity,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchAccountsByUsernameQueryOptions(\n query: string,\n limit = 5,\n excludeList: string[] = []\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.search(query, excludeList),\n enabled: !!query,\n queryFn: async () => {\n const response = (await callRPC(\"condenser_api.lookup_accounts\", [query, limit])) as string[];\n return response.filter((item) =>\n excludeList.length > 0 ? !excludeList.includes(item) : true\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { AccountProfile } from \"../types\";\n\ntype AccountProfileToken = NonNullable[number];\n\nexport type WalletMetadataCandidate = Partial & {\n currency?: string;\n show?: boolean;\n address?: string;\n publicKey?: string;\n privateKey?: string;\n username?: string;\n};\n\nexport interface CheckUsernameWalletsPendingResponse {\n exist: boolean;\n tokens?: WalletMetadataCandidate[];\n wallets?: WalletMetadataCandidate[];\n}\n\nconst RESERVED_META_KEYS = new Set([\n \"ownerPublicKey\",\n \"activePublicKey\",\n \"postingPublicKey\",\n \"memoPublicKey\",\n]);\n\ninterface WalletsEndpointResponseItem {\n token?: unknown;\n address?: unknown;\n status?: unknown;\n meta?: unknown;\n username?: unknown;\n}\n\nexport function checkUsernameWalletsPendingQueryOptions(\n username: string,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.checkWalletPending(username, code ?? null),\n queryFn: async () => {\n if (!username || !code) {\n return { exist: false } satisfies CheckUsernameWalletsPendingResponse;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/wallets\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n username,\n code,\n }),\n }\n );\n\n if (!response.ok) {\n return { exist: false } satisfies CheckUsernameWalletsPendingResponse;\n }\n\n const payload = (await response.json()) as unknown;\n\n const wallets: WalletMetadataCandidate[] = Array.isArray(payload)\n ? payload.flatMap((item) => {\n if (!item || typeof item !== \"object\") {\n return [];\n }\n\n const walletItem = item as WalletsEndpointResponseItem;\n\n const symbol =\n typeof walletItem.token === \"string\"\n ? walletItem.token\n : undefined;\n\n if (!symbol) {\n return [];\n }\n\n const meta: Record =\n walletItem.meta && typeof walletItem.meta === \"object\"\n ? { ...(walletItem.meta as Record) }\n : {};\n\n const sanitizedMeta: Record = {};\n\n const address =\n typeof walletItem.address === \"string\" && walletItem.address\n ? walletItem.address\n : undefined;\n\n const statusShow =\n typeof walletItem.status === \"number\"\n ? walletItem.status === 3\n : undefined;\n\n const showFlag = statusShow ?? false;\n\n if (address) {\n sanitizedMeta.address = address;\n }\n\n sanitizedMeta.show = showFlag;\n\n const baseCandidate = {\n symbol,\n currency: symbol,\n address,\n show: showFlag,\n type: \"CHAIN\",\n meta: sanitizedMeta,\n } satisfies WalletMetadataCandidate;\n\n const metaTokenCandidates: WalletMetadataCandidate[] = [];\n\n for (const [metaSymbol, metaValue] of Object.entries(meta)) {\n if (typeof metaSymbol !== \"string\") {\n continue;\n }\n\n if (RESERVED_META_KEYS.has(metaSymbol)) {\n continue;\n }\n\n if (typeof metaValue !== \"string\" || !metaValue) {\n continue;\n }\n\n if (!/^[A-Z0-9]{2,10}$/.test(metaSymbol)) {\n continue;\n }\n\n metaTokenCandidates.push({\n symbol: metaSymbol,\n currency: metaSymbol,\n address: metaValue,\n show: showFlag,\n type: \"CHAIN\",\n meta: { address: metaValue, show: showFlag },\n });\n }\n\n return [baseCandidate, ...metaTokenCandidates];\n })\n : [];\n\n return {\n exist: wallets.length > 0,\n tokens: wallets.length ? wallets : undefined,\n wallets: wallets.length ? wallets : undefined,\n } satisfies CheckUsernameWalletsPendingResponse;\n },\n refetchOnMount: true,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { AccountRelationship } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getRelationshipBetweenAccountsQueryOptions(\n reference: string | undefined,\n target: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.relations(reference, target),\n enabled: !!reference && !!target,\n refetchOnMount: false,\n refetchInterval: 3_600_000,\n queryFn: async () => {\n const fallback: AccountRelationship = {\n follows: false,\n ignores: false,\n blacklists: false,\n follows_muted: false,\n follows_blacklists: false,\n };\n\n // `enabled` only gates the automatic useQuery run. fetchQuery and\n // prefetchQuery invoke queryFn regardless, so guard here as well rather\n // than sending a missing account name to the RPC and caching the result.\n if (!reference || !target) {\n return fallback;\n }\n\n const result = await callRPC(\"bridge.get_relationship_between_accounts\", [reference, target]);\n return (result ?? fallback) as AccountRelationship;\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype Subscriptions = string[];\n\nexport function getAccountSubscriptionsQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.subscriptions(username!),\n enabled: !!username,\n queryFn: async ({ signal }) => {\n const response = await callRPC(\"bridge.list_all_subscriptions\", {\n account: username,\n }, undefined, undefined, signal);\n return (response ?? []) as Subscriptions;\n },\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountBookmark } from \"../types\";\n\nexport function getBookmarksQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.bookmarks(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Bookmarks] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n return (await response.json()) as AccountBookmark[];\n },\n });\n}\n\nexport function getBookmarksInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.bookmarksInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bookmarks: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountFavorite } from \"../types\";\n\nexport function getFavoritesQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.favorites(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Favorites] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n return (await response.json()) as AccountFavorite[];\n },\n });\n}\n\nexport function getFavoritesInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.favoritesInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/favorites?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch favorites: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\n/**\n * Query options to check if a specific account is in the active user's favorites\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n * @param targetUsername - The username to check if favorited\n * @returns Query options for checking if target is favorited\n */\nexport function checkFavoriteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n targetUsername: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.checkFavorite(activeUsername!, targetUsername!),\n enabled: !!activeUsername && !!code && !!targetUsername,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Favorites] – missing auth\");\n }\n if (!targetUsername) {\n throw new Error(\"[SDK][Accounts][Favorites] – no target username\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-check\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n account: targetUsername,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Accounts][Favorites] – favorites-check failed with status ${response.status}: ${response.statusText}`\n );\n }\n\n const result = await response.json();\n if (typeof result !== \"boolean\") {\n throw new Error(\n `[SDK][Accounts][Favorites] – favorites-check returned invalid type: expected boolean, got ${typeof result}`\n );\n }\n\n return result;\n },\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountFavoriteTag } from \"../types\";\n\n/**\n * The hashtags the active user follows, newest first.\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n */\nexport function getFavoriteTagsQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.favoriteTags(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorite-tags\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to fetch favorite tags: ${response.status}`);\n }\n return (await response.json()) as AccountFavoriteTag[];\n },\n });\n}\n\nexport function getFavoriteTagsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.favoriteTagsInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/favorite-tags?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch favorite tags: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","const TAG_PATTERN = /^[a-z0-9-]{1,32}$/;\nconst COMMUNITY_PATTERN = /^hive-\\d+$/;\n\n/**\n * The one place a followed tag is normalised before it is sent or used as a cache\n * key: trimmed, lowercased, one leading `#` dropped, then validated. Mirrors the\n * server rule exactly, so a value that passes here is stored as-is.\n *\n * Returns null for anything that is not a usable tag, including a community name\n * (`hive-123456`): communities are subscribed to on chain, not followed as tags.\n */\nexport function normalizeTag(raw: unknown): string | null {\n if (typeof raw !== \"string\") {\n return null;\n }\n\n let tag = raw.trim().toLowerCase();\n if (tag.startsWith(\"#\")) {\n tag = tag.slice(1);\n }\n\n if (!TAG_PATTERN.test(tag) || COMMUNITY_PATTERN.test(tag)) {\n return null;\n }\n\n return tag;\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { normalizeTag } from \"../utils/normalize-tag\";\n\n/**\n * Whether the active user follows a hashtag.\n *\n * The tag is normalised here, so `#Photography` and `photography` share one cache\n * entry and one request. A value that is not a usable tag (or a community name)\n * disables the query and reads as \"not followed\".\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n * @param tag - The tag to check, in any spelling\n */\nexport function getFavoriteTagCheckQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n tag: string | undefined\n) {\n const normalized = normalizeTag(tag);\n\n return queryOptions({\n queryKey: QueryKeys.accounts.checkFavoriteTag(activeUsername ?? \"\", normalized ?? \"\"),\n enabled: !!activeUsername && !!code && normalized !== null,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n if (normalized === null) {\n return false;\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorite-tags-check\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n tag: normalized,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Accounts][FavoriteTags] – favorite-tags-check failed with status ${response.status}: ${response.statusText}`\n );\n }\n\n const result = await response.json();\n if (typeof result !== \"boolean\") {\n throw new Error(\n `[SDK][Accounts][FavoriteTags] – favorite-tags-check returned invalid type: expected boolean, got ${typeof result}`\n );\n }\n\n return result;\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { GetRecoveriesEmailResponse } from \"../types\";\n\nexport function getAccountRecoveriesQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n enabled: !!username && !!code,\n queryKey: QueryKeys.accounts.recoveries(username!),\n queryFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Accounts] Missing username or access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/recoveries\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n return response.json() as Promise;\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getAccountPendingRecoveryQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n enabled: !!username,\n queryKey: QueryKeys.accounts.pendingRecovery(username!),\n queryFn: () =>\n callRPC(\"database_api.find_change_recovery_account_requests\", { accounts: [username] }),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountReputation } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\nexport function getAccountReputationsQueryOptions(query: string, limit = 50) {\n return queryOptions({\n queryKey: QueryKeys.accounts.reputations(query, limit),\n enabled: !!query,\n queryFn: async (): Promise => {\n // Same account_name_type argument as lookup_accounts, same assert if the value\n // is longer than the chain can hold.\n if (!query || !isQueryableAccountName(query)) {\n return [];\n }\n\n return callRPC(\"condenser_api.get_account_reputations\", [query, limit]) as Promise;\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { utils } from \"../../../hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Transaction, OperationGroup } from \"../types/transaction\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport { parseAsset, NaiMap } from \"@/modules/core/utils\";\n\nconst ops = utils.operations;\n\nexport const ACCOUNT_OPERATION_GROUPS: Record = {\n transfers: [\n ops.transfer,\n ops.transfer_to_savings,\n ops.transfer_from_savings,\n ops.cancel_transfer_from_savings,\n // The virtual op emitted when a savings withdrawal completes. It used to be a\n // second copy of fill_recurrent_transfer, so a completed savings withdrawal was\n // never returned by the transfers group nor by ALL_ACCOUNT_OPERATIONS.\n ops.fill_transfer_from_savings,\n ops.recurrent_transfer,\n ops.fill_recurrent_transfer,\n ops.escrow_transfer,\n ],\n \"market-orders\": [\n ops.fill_convert_request,\n ops.fill_order,\n ops.fill_collateralized_convert_request,\n ops.limit_order_create2,\n ops.limit_order_create,\n ops.limit_order_cancel,\n ],\n interests: [ops.interest],\n \"stake-operations\": [\n ops.return_vesting_delegation,\n ops.withdraw_vesting,\n ops.transfer_to_vesting,\n ops.set_withdraw_vesting_route,\n ops.update_proposal_votes,\n ops.fill_vesting_withdraw,\n ops.account_witness_proxy,\n ops.delegate_vesting_shares,\n ],\n rewards: [\n ops.author_reward,\n ops.curation_reward,\n ops.producer_reward,\n ops.claim_reward_balance,\n ops.comment_benefactor_reward,\n ops.liquidity_reward,\n ops.proposal_pay,\n ],\n};\n\n/**\n * Every operation any group asks for, de-duplicated. Groups overlap (an op can be\n * meaningful to more than one), and the raw concatenation used to repeat ids in the\n * `operation-types` query string sent to hafah.\n */\nexport const ALL_ACCOUNT_OPERATIONS = Array.from(\n new Set(Object.values(ACCOUNT_OPERATION_GROUPS).flat())\n);\n\ninterface TxPageRaw {\n entries: Transaction[];\n currentPage: number;\n}\n\n/**\n * Cursor for transaction pagination.\n * null = first request (returns newest page, API omits page param).\n * number = specific page to fetch (decrementing for older data).\n */\ntype TxCursor = number | null;\n\ninterface HafahOperation {\n op: {\n type: string;\n value: Record;\n };\n block: number;\n trx_id: string;\n op_pos: number;\n op_type_id: number;\n timestamp: string;\n virtual_op: boolean;\n operation_id: string;\n trx_in_block: number;\n}\n\ninterface HafahResponse {\n total_operations: number;\n total_pages: number;\n operations_result: HafahOperation[];\n}\n\n/**\n * Derive a safe, unique, and chronologically ordered `num` from REST fields.\n *\n * Layout: block * 10_000_000 + trx_in_block * 100 + op_pos\n * - trx_in_block: up to 99_999 (Hive max block size ~65K txs)\n * - op_pos: up to 99 (operations within a single transaction)\n * - Max value: 105_000_000 * 10_000_000 = 1.05e15, within MAX_SAFE_INTEGER (9.007e15)\n */\nfunction deriveNum(entry: HafahOperation): number {\n return entry.block * 10_000_000 + entry.trx_in_block * 100 + entry.op_pos;\n}\n\n/**\n * Strip the `_operation` suffix from the REST API type name\n * to match the Transaction type discriminants (e.g. \"transfer\").\n */\nfunction normalizeOpType(restType: string): string {\n return restType.replace(/_operation$/, \"\");\n}\n\n/**\n * Check if a value is a NAI asset object (e.g. { nai: \"@@000000021\", amount: \"1000\", precision: 3 }).\n */\nfunction isNaiAsset(v: unknown): v is { nai: string; amount: string; precision: number } {\n return typeof v === \"object\" && v !== null && \"nai\" in v && \"amount\" in v && \"precision\" in v;\n}\n\n/**\n * Convert a NAI asset object to a human-readable string like \"1.000 HIVE\".\n * Returns the value unchanged if it's not a NAI object.\n */\nfunction naiToString(v: unknown): unknown {\n if (!isNaiAsset(v)) return v;\n const parsed = parseAsset(v);\n const symbol = NaiMap[v.nai as keyof typeof NaiMap] ?? \"UNKNOWN\";\n return `${parsed.amount.toFixed(v.precision)} ${symbol}`;\n}\n\n/**\n * Convert all NAI asset objects in an operation's value to human-readable strings\n * so downstream renderers that expect \"1.000 HIVE\" don't crash with object values.\n */\nfunction normalizeOpValue(value: Record): Record {\n const result: Record = {};\n for (const [k, v] of Object.entries(value)) {\n result[k] = naiToString(v);\n }\n return result;\n}\n\n/**\n * Get account transaction history with pagination and filtering.\n * Uses the hafah-api REST endpoint for server-side op-type filtering\n * and real pagination metadata.\n *\n * @param username - Account name to get transactions for\n * @param limit - Number of transactions per page\n * @param group - Filter by operation group (transfers, market-orders, etc.)\n */\nexport function getTransactionsInfiniteQueryOptions(\n username?: string,\n limit = 20,\n group: OperationGroup | \"\" = \"\"\n) {\n const operationTypes = group\n ? ACCOUNT_OPERATION_GROUPS[group]\n : ALL_ACCOUNT_OPERATIONS;\n\n return infiniteQueryOptions<\n TxPageRaw,\n Error,\n InfiniteData,\n (string | number)[],\n TxCursor\n >({\n queryKey: QueryKeys.accounts.transactions(username ?? \"\", group, limit),\n initialPageParam: null as TxCursor,\n\n queryFn: async ({ pageParam, signal }: { pageParam: TxCursor; signal?: AbortSignal }) => {\n if (!username) {\n return { entries: [], currentPage: 0 };\n }\n\n const fetchPage = async (page: TxCursor) => {\n const params: Record = {\n \"account-name\": username,\n \"operation-types\": operationTypes.join(\",\"),\n \"page-size\": limit,\n };\n\n // First call: omit page to get newest data\n // Subsequent calls: pass specific page number (decrementing)\n if (page !== null) {\n params.page = page;\n }\n\n return (await callREST(\n \"hafah\",\n \"/accounts/{account-name}/operations\",\n params,\n undefined,\n undefined,\n signal\n )) as HafahResponse;\n };\n\n const toEntries = (response: HafahResponse) =>\n response.operations_result.map((entry) => {\n const type = normalizeOpType(entry.op.type);\n const value = normalizeOpValue(entry.op.value);\n return {\n ...value,\n num: deriveNum(entry),\n type,\n timestamp: entry.timestamp,\n trx_id: entry.trx_id,\n } as Transaction;\n });\n\n const response = await fetchPage(pageParam);\n let entries = toEntries(response);\n let currentPage = pageParam ?? response.total_pages;\n\n // hafah pages oldest-first, so the newest page (what an omitted `page`\n // returns) is the remainder bucket: total_operations mod page-size rows,\n // anywhere from 1 to page-size. Requesting page=total_pages explicitly\n // returns the same short bucket, so the only way to a full-size first\n // screen is chaining the next older page in.\n if (pageParam === null && entries.length < limit && response.total_pages > 1) {\n try {\n const chained = await fetchPage(response.total_pages - 1);\n entries = [...entries, ...toEntries(chained)];\n currentPage = response.total_pages - 1;\n } catch (e) {\n // Caller cancellation is not a node failure: rethrow so the query\n // settles as cancelled instead of resolving with a partial page.\n if (signal?.aborted) {\n throw e;\n }\n // Keep the short remainder page; the cursor stays at total_pages so\n // the page that failed here is fetchNextPage's next target, not lost.\n }\n }\n\n return { entries, currentPage };\n },\n\n getNextPageParam: (lastPage) => {\n const nextPage = lastPage.currentPage - 1;\n return nextPage >= 1 ? nextPage : undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport function getBotsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.accounts.bots(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/public/bots\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bots: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n refetchOnMount: true,\n staleTime: Infinity,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { ReferralItem } from \"../types/referral\";\n\ntype PageParam = { maxId?: number };\n\nexport function getReferralsInfiniteQueryOptions(username: string) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.referrals(username),\n initialPageParam: { maxId: undefined } as PageParam,\n queryFn: async ({ pageParam }: { pageParam: PageParam }) => {\n const { maxId } = pageParam ?? {};\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(`/private-api/referrals/${username}`, baseUrl);\n\n if (maxId !== undefined) {\n url.searchParams.set(\"max_id\", maxId.toString());\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch referrals: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n getNextPageParam: (lastPage: ReferralItem[]) => {\n const nextMaxId = lastPage?.[lastPage.length - 1]?.id;\n return typeof nextMaxId === \"number\" ? ({ maxId: nextMaxId } as PageParam) : undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { ReferralStat } from \"../types/referral\";\n\ninterface ReferralStatsResponse {\n total?: number;\n rewarded?: number;\n}\n\nexport function getReferralsStatsQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.accounts.referralsStats(username),\n queryFn: async () => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/referrals/${username}/stats`,\n {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch referral stats: ${response.status}`);\n }\n\n const data = await response.json() as ReferralStatsResponse;\n\n if (!data) {\n throw new Error(\"No Referrals for this user!\");\n }\n\n return {\n total: data.total ?? 0,\n rewarded: data.rewarded ?? 0,\n } as ReferralStat;\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow, Profile, FriendsRow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface FriendsPageParam {\n startFollowing: string;\n}\n\ntype FriendsPage = FriendsRow[];\n\n/**\n * Get list of friends (following/followers) with profile information\n *\n * @param following - The account whose friends to get\n * @param mode - \"following\" or \"followers\"\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Number of results per page (default: 100)\n * @param enabled - Whether query is enabled (default: true)\n */\nexport function getFriendsInfiniteQueryOptions(\n following: string,\n mode: \"following\" | \"followers\",\n options?: {\n followType?: string;\n limit?: number;\n enabled?: boolean;\n }\n) {\n const { followType = \"blog\", limit = 100, enabled = true } = options ?? {};\n\n return infiniteQueryOptions<\n FriendsPage,\n Error,\n InfiniteData,\n (string | number)[],\n FriendsPageParam\n >({\n queryKey: QueryKeys.accounts.friends(following, mode, followType, limit),\n initialPageParam: { startFollowing: \"\" } as FriendsPageParam,\n enabled,\n refetchOnMount: true,\n\n queryFn: async ({ pageParam }: { pageParam: FriendsPageParam }) => {\n const { startFollowing } = pageParam;\n\n const method = mode === \"following\" ? \"get_following\" : \"get_followers\";\n const response = (await callRPC(`condenser_api.${method}`, [following, startFollowing === \"\" ? null : startFollowing, followType, limit])) as Follow[];\n\n const accountNames = response.map((e) =>\n mode === \"following\" ? e.following : e.follower\n );\n\n // Get profiles via bridge API\n const accounts = (await callRPC(\"bridge.get_profiles\", {\n accounts: accountNames,\n observer: undefined,\n })) as Profile[];\n\n const rows: FriendsPage = (accounts ?? []).map((a) => ({\n name: a.name,\n reputation: a.reputation,\n active: a.active, // Return raw timestamp\n }));\n\n return rows;\n },\n\n getNextPageParam: (lastPage: FriendsPage): FriendsPageParam | undefined =>\n lastPage && lastPage.length === limit\n ? { startFollowing: lastPage[lastPage.length - 1].name }\n : undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow, Profile, FriendSearchResult } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nconst SEARCH_LIMIT = 30;\n\n/**\n * Search friends (following/followers) by query string\n *\n * @param username - The account whose friends to search\n * @param mode - \"following\" or \"followers\"\n * @param query - Search query string\n */\nexport function getSearchFriendsQueryOptions(\n username: string,\n mode: \"following\" | \"followers\",\n query: string\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.searchFriends(username, mode, query),\n refetchOnMount: false,\n enabled: false, // Manual query via refetch\n queryFn: async (): Promise => {\n if (!query) return [];\n\n const start = query.slice(0, -1);\n const method = mode === \"following\" ? \"get_following\" : \"get_followers\";\n const response = (await callRPC(`condenser_api.${method}`, [username, start, \"blog\", 1000])) as Follow[];\n\n const accountNames = response\n .map((e) => (mode === \"following\" ? e.following : e.follower))\n .filter((name) => name.toLowerCase().includes(query.toLowerCase()))\n .slice(0, SEARCH_LIMIT);\n\n // Get profiles via bridge API\n const accounts = (await callRPC(\"bridge.get_profiles\", {\n accounts: accountNames,\n observer: undefined,\n })) as Profile[];\n\n return (\n accounts?.map((a) => ({\n name: a.name,\n full_name: a.metadata.profile?.name || \"\",\n reputation: a.reputation,\n active: a.active, // Return raw timestamp\n })) ?? []\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { TrendingTag } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getTrendingTagsQueryOptions(limit = 20) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.trendingTags(),\n queryFn: async ({ pageParam: { afterTag } }) =>\n callRPC(\"condenser_api.get_trending_tags\", [afterTag, limit])\n .then((tags: TrendingTag[]) =>\n tags\n .filter((x) => x.name !== \"\")\n .filter((x) => !x.name.startsWith(\"hive-\"))\n .map((x) => x.name)\n ),\n initialPageParam: { afterTag: \"\" },\n getNextPageParam: (lastPage) =>\n lastPage?.length > 0\n ? { afterTag: lastPage[lastPage.length - 1] }\n : undefined,\n staleTime: 60 * 60 * 1000, // 1 hour — tags change slowly\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { isCommunity } from \"@/modules/core/utils\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { TrendingTag } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getTrendingTagsWithStatsQueryOptions(limit = 250) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.trendingTagsWithStats(limit),\n queryFn: async ({ pageParam: { afterTag } }) =>\n callRPC(\"condenser_api.get_trending_tags\", [afterTag, limit])\n .then((tags: TrendingTag[]) =>\n tags.filter((tag) => tag.name !== \"\").filter((tag) => !isCommunity(tag.name))\n ),\n initialPageParam: { afterTag: \"\" },\n getNextPageParam: (lastPage) =>\n lastPage?.length ? { afterTag: lastPage[lastPage.length - 1].name } : undefined,\n staleTime: Infinity,\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\n\nexport function getFragmentsQueryOptions(username: string, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.fragments(username),\n queryFn: async () => {\n if (!code) {\n return [];\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n return response.json() as Promise;\n },\n enabled: !!username && !!code,\n });\n}\n\nexport function getFragmentsInfiniteQueryOptions(\n username: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.fragmentsInfinite(username, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!username || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/fragments?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch fragments: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!username && !!code,\n });\n}\n","import { ConfigManager, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\n// TODO: replace any with Entry\nexport function getPromotedPostsQuery(\n type: \"feed\" | \"waves\" = \"feed\"\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.promoted(type),\n queryFn: async () => {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/promoted-entries\", baseUrl);\n if (type === \"waves\") {\n url.searchParams.append(\"short_content\", \"1\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n const data = await response.json();\n return data as T[];\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry, Vote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getEntryActiveVotesQueryOptions(entry?: Entry) {\n return queryOptions({\n queryKey: QueryKeys.posts.entryActiveVotes(entry?.author, entry?.permlink),\n queryFn: async () => {\n return callRPC(\"condenser_api.get_active_votes\", [\n entry?.author,\n entry?.permlink,\n ]) as Promise;\n },\n enabled: !!entry,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { Vote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get a specific user's vote on a post\n * Useful when post has >1000 votes to efficiently get one user's vote\n *\n * @param username - The voter's username\n * @param author - The post author\n * @param permlink - The post permlink\n */\nexport function getUserPostVoteQueryOptions(\n username: string | undefined,\n author: string | undefined,\n permlink: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.userPostVote(username!, author!, permlink!),\n queryFn: async () => {\n const result = await callRPC(\"database_api.list_votes\", {\n start: [username, author, permlink],\n limit: 1,\n order: \"by_voter_comment\"\n });\n\n // Return first vote if found, otherwise null\n return (result?.votes?.[0] || null) as Vote | null;\n },\n enabled: !!username && !!author && !!permlink,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getContentQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.content(author, permlink),\n enabled: !!author && !!permlink,\n queryFn: async (): Promise =>\n callRPC(\"condenser_api.get_content\", [\n author,\n permlink,\n ]) as Promise,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getContentRepliesQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.contentReplies(author, permlink),\n enabled: !!author && !!permlink,\n queryFn: async (): Promise =>\n callRPC(\"condenser_api.get_content_replies\", {\n author,\n permlink,\n }) as Promise,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getPostHeaderQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.postHeader(author, permlink),\n queryFn: async () => {\n return callRPC(\"bridge.get_post_header\", {\n author,\n permlink,\n }) as Promise;\n },\n initialData: null,\n });\n}\n","import { CONFIG } from \"@/modules/core\";\nimport { Entry } from \"../types\";\n\n/**\n * Filters and censors entries that match DMCA patterns\n * @param entry - Single entry or array of entries to filter\n * @returns Filtered entry/entries with DMCA content censored.\n * Note: Can return null/undefined if input is falsy - callers should guard against this.\n */\nexport function filterDmcaEntry(entry: Entry): Entry | null | undefined;\nexport function filterDmcaEntry(entries: Entry[]): Entry[];\nexport function filterDmcaEntry(entryOrEntries: Entry | Entry[] | null | undefined): Entry | Entry[] | null | undefined {\n if (Array.isArray(entryOrEntries)) {\n // Array elements are non-null Entries, so applyFilter never returns nullish here.\n return entryOrEntries.map((entry) => applyFilter(entry)) as Entry[];\n }\n return applyFilter(entryOrEntries);\n}\n\nfunction applyFilter(entry: Entry | null | undefined): Entry | null | undefined {\n if (!entry) return entry;\n\n const entryPath = `@${entry.author}/${entry.permlink}`;\n const isDmca =\n CONFIG.dmcaPatterns.includes(entryPath) ||\n CONFIG.dmcaPatternRegexes.some((regex) => regex.test(entryPath));\n\n if (isDmca) {\n return {\n ...entry,\n body: \"This post is not available due to a copyright/fraudulent claim.\",\n title: \"\",\n };\n }\n\n return entry;\n}\n","import { callWithQuorum } from \"../../hive-tx\";\nimport { Entry } from \"@/modules/posts/types\";\n\n/**\n * When the primary node returns null for a get_post call,\n * verify by querying multiple random nodes. If any node\n * returns the post, it exists (the first node was lagging).\n *\n * Uses callWithQuorum(quorum=1) which shuffles and queries\n * nodes in batches. Since it shuffles, it's unlikely to hit\n * the same node that just returned null first.\n */\nexport async function verifyPostOnAlternateNode(\n author: string,\n permlink: string,\n observer: string\n): Promise {\n try {\n const response = await callWithQuorum(\"bridge.get_post\", {\n author,\n permlink,\n observer,\n }, 1);\n\n if (\n response &&\n typeof response === \"object\" &&\n (response as Entry).author === author &&\n (response as Entry).permlink === permlink\n ) {\n return response as Entry;\n }\n } catch {\n // All nodes failed or returned null\n }\n\n return null;\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { verifyPostOnAlternateNode } from \"@/modules/bridge/verify-on-alternate-node\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getPostQueryOptions(\n author: string,\n permlink?: string,\n observer = \"\",\n num?: number\n) {\n const cleanPermlink = permlink?.trim();\n const entryPath = `/@${author}/${cleanPermlink ?? \"\"}`;\n\n return queryOptions({\n queryKey: QueryKeys.posts.entry(entryPath),\n queryFn: async () => {\n if (!cleanPermlink || cleanPermlink === \"undefined\") {\n return null;\n }\n\n // hive-tx tries nodes in order; the first healthy node (index 0) handles this call.\n // If it returns null, verifyPostOnAlternateNode skips index 0 and tries others.\n const response = await callRPC(\"bridge.get_post\", {\n author,\n permlink: cleanPermlink,\n observer,\n });\n\n if (!response) {\n // Primary node returned null — verify on alternate nodes\n // to guard against sync lag returning null for valid posts\n const verified = await verifyPostOnAlternateNode(author, cleanPermlink, observer);\n if (!verified) {\n return null;\n }\n const verifiedEntry = num !== undefined ? { ...verified, num } as Entry : verified as Entry;\n return filterDmcaEntry(verifiedEntry);\n }\n\n const entry = num !== undefined ? { ...response, num } as Entry : response as Entry;\n return filterDmcaEntry(entry);\n },\n enabled:\n !!author &&\n !!permlink &&\n permlink.trim() !== \"\" &&\n permlink.trim() !== \"undefined\",\n });\n}\n","import { CONFIG } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { AccountRelationship, Profile } from \"@/modules/accounts/types\";\nimport { Community } from \"@/modules/communities/types/community\";\nimport { Subscription } from \"@/modules/communities/types/subscription\";\nimport { Entry } from \"@/modules/posts/types\";\nimport { filterDmcaEntry } from \"@/modules/posts/utils/filter-dmca-entries\";\n\ntype BridgeParams = Record | unknown[];\n\nexport function bridgeApiCall(endpoint: string, params: BridgeParams, signal?: AbortSignal): Promise {\n return callRPC(`bridge.${endpoint}`, params, undefined, undefined, signal) as Promise;\n}\n\nexport async function resolvePost(\n post: Entry,\n observer: string,\n num?: number,\n signal?: AbortSignal\n): Promise {\n const { json_metadata: json } = post;\n\n if (json?.original_author && json?.original_permlink && json.tags?.[0] === \"cross-post\") {\n try {\n const resp = await getPost(\n json.original_author,\n json.original_permlink,\n observer,\n num,\n signal\n );\n if (resp) {\n return {\n ...post,\n original_entry: resp,\n num,\n };\n }\n return post;\n } catch {\n return post;\n }\n }\n\n return { ...post, num };\n}\n\nasync function resolvePosts(posts: Entry[], observer: string, signal?: AbortSignal): Promise {\n const validatedPosts = posts.map(validateEntry);\n const resolved = await Promise.all(validatedPosts.map((p) => resolvePost(p, observer, undefined, signal)));\n return filterDmcaEntry(resolved) as Entry[];\n}\n\nexport async function getPostsRanked(\n sort: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n tag: string = \"\",\n observer: string = \"\",\n signal?: AbortSignal\n): Promise {\n const resp = await bridgeApiCall(\"get_ranked_posts\", {\n sort,\n start_author,\n start_permlink,\n limit,\n tag,\n observer,\n }, signal);\n\n if (Array.isArray(resp)) {\n return resolvePosts(resp, observer, signal);\n }\n\n if (resp != null) {\n console.warn(\n `[SDK] get_ranked_posts returned ${typeof resp} instead of an array for sort=${sort}; treating as no results.`\n );\n }\n\n return null;\n}\n\nexport async function getAccountPosts(\n sort: string,\n account: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n observer: string = \"\",\n signal?: AbortSignal\n): Promise {\n if (CONFIG.dmcaAccounts.includes(account)) {\n return [];\n }\n\n const resp = await bridgeApiCall(\"get_account_posts\", {\n sort,\n account,\n start_author,\n start_permlink,\n limit,\n observer,\n }, signal);\n\n if (Array.isArray(resp)) {\n return resolvePosts(resp, observer, signal);\n }\n\n if (resp != null) {\n console.warn(\n `[SDK] get_account_posts returned ${typeof resp} instead of an array for account=${account}, sort=${sort}; treating as no results.`\n );\n }\n\n return null;\n}\n\n/**\n * Validates that an Entry object has required properties with non-null values.\n */\nfunction validateEntry(entry: Entry): Entry {\n const newEntry: Entry = {\n ...entry,\n active_votes: Array.isArray(entry.active_votes) ? [...entry.active_votes] : [],\n beneficiaries: Array.isArray(entry.beneficiaries) ? [...entry.beneficiaries] : [],\n blacklists: Array.isArray(entry.blacklists) ? [...entry.blacklists] : [],\n replies: Array.isArray(entry.replies) ? [...entry.replies] : [],\n stats: entry.stats ? { ...entry.stats } : null,\n };\n\n const requiredStringProps: (keyof Entry)[] = [\n \"author\",\n \"title\",\n \"body\",\n \"created\",\n \"category\",\n \"permlink\",\n \"url\",\n \"updated\",\n ];\n\n for (const prop of requiredStringProps) {\n if (newEntry[prop] == null) {\n (newEntry as any)[prop] = \"\";\n }\n }\n\n if (newEntry.author_reputation == null) {\n newEntry.author_reputation = 0;\n }\n if (newEntry.children == null) {\n newEntry.children = 0;\n }\n if (newEntry.depth == null) {\n newEntry.depth = 0;\n }\n if (newEntry.net_rshares == null) {\n newEntry.net_rshares = 0;\n }\n if (newEntry.payout == null) {\n newEntry.payout = 0;\n }\n if (newEntry.percent_hbd == null) {\n newEntry.percent_hbd = 0;\n }\n\n if (!newEntry.stats) {\n newEntry.stats = {\n flag_weight: 0,\n gray: false,\n hide: false,\n total_votes: 0,\n };\n }\n\n if (newEntry.author_payout_value == null) {\n newEntry.author_payout_value = \"0.000 HBD\";\n }\n if (newEntry.curator_payout_value == null) {\n newEntry.curator_payout_value = \"0.000 HBD\";\n }\n if (newEntry.max_accepted_payout == null) {\n newEntry.max_accepted_payout = \"1000000.000 HBD\";\n }\n if (newEntry.payout_at == null) {\n newEntry.payout_at = \"\";\n }\n if (newEntry.pending_payout_value == null) {\n newEntry.pending_payout_value = \"0.000 HBD\";\n }\n if (newEntry.promoted == null) {\n newEntry.promoted = \"0.000 HBD\";\n }\n\n if (newEntry.is_paidout == null) {\n newEntry.is_paidout = false;\n }\n\n return newEntry;\n}\n\nexport async function getPost(\n author: string = \"\",\n permlink: string = \"\",\n observer: string = \"\",\n num?: number,\n signal?: AbortSignal\n): Promise {\n const resp = await bridgeApiCall(\"get_post\", {\n author,\n permlink,\n observer,\n }, signal);\n\n if (resp) {\n const validatedEntry = validateEntry(resp);\n const post = await resolvePost(validatedEntry, observer, num, signal);\n return filterDmcaEntry(post) as Entry;\n }\n\n return undefined;\n}\n\nexport async function getPostHeader(\n author: string = \"\",\n permlink: string = \"\"\n): Promise {\n const resp = await bridgeApiCall(\"get_post_header\", {\n author,\n permlink,\n });\n return resp ? validateEntry(resp) : resp;\n}\n\nexport async function getDiscussion(\n author: string,\n permlink: string,\n observer?: string\n): Promise | null> {\n const resp = await bridgeApiCall | null>(\"get_discussion\", {\n author,\n permlink,\n observer: observer || author,\n });\n\n if (resp) {\n const validatedResp: Record = {};\n for (const [key, entry] of Object.entries(resp)) {\n validatedResp[key] = validateEntry(entry);\n }\n return validatedResp;\n }\n return resp;\n}\n\nexport async function getCommunity(\n name: string,\n observer: string | undefined = \"\"\n): Promise {\n return bridgeApiCall(\"get_community\", { name, observer });\n}\n\nexport async function getCommunities(\n last: string = \"\",\n limit: number = 100,\n query?: string | null,\n sort: string = \"rank\",\n observer: string = \"\"\n): Promise {\n return bridgeApiCall(\"list_communities\", {\n last,\n limit,\n query,\n sort,\n observer,\n });\n}\n\nexport async function normalizePost(post: unknown): Promise {\n const resp = await bridgeApiCall(\"normalize_post\", { post });\n return resp ? validateEntry(resp) : resp;\n}\n\nexport async function getSubscriptions(account: string): Promise {\n return bridgeApiCall(\"list_all_subscriptions\", { account });\n}\n\nexport async function getSubscribers(community: string): Promise {\n return bridgeApiCall(\"list_subscribers\", { community });\n}\n\nexport async function getRelationshipBetweenAccounts(\n follower: string,\n following: string\n): Promise {\n return bridgeApiCall(\"get_relationship_between_accounts\", [\n follower,\n following,\n ]);\n}\n\nexport async function getProfiles(\n accounts: string[],\n observer?: string\n): Promise {\n return bridgeApiCall(\"get_profiles\", { accounts, observer });\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getDiscussion } from \"@/modules/bridge\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport enum SortOrder {\n trending = \"trending\",\n author_reputation = \"author_reputation\",\n votes = \"votes\",\n created = \"created\",\n}\n\nfunction parseAsset(value: string): { amount: number; symbol: string } {\n const match = value.match(/^(\\d+\\.?\\d*)\\s*([A-Z]+)$/);\n if (!match) return { amount: 0, symbol: \"\" };\n return {\n amount: parseFloat(match[1]),\n symbol: match[2],\n };\n}\n\nexport function sortDiscussions(\n entry: Entry,\n discussion: Entry[],\n order: SortOrder\n) {\n const allPayout = (c: Entry) =>\n parseAsset(c.pending_payout_value).amount +\n parseAsset(c.author_payout_value).amount +\n parseAsset(c.curator_payout_value).amount;\n\n const absNegative = (a: Entry) => a.net_rshares < 0;\n const isPinned = (a: Entry) =>\n entry.json_metadata?.pinned_reply === `${a.author}/${a.permlink}`;\n\n const sortOrders = {\n trending: (a: Entry, b: Entry) => {\n if (absNegative(a)) {\n return 1;\n }\n\n if (absNegative(b)) {\n return -1;\n }\n\n const _a = allPayout(a);\n const _b = allPayout(b);\n if (_a !== _b) {\n return _b - _a;\n }\n\n return 0;\n },\n author_reputation: (a: Entry, b: Entry) => {\n const keyA = a.author_reputation;\n const keyB = b.author_reputation;\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n votes: (a: Entry, b: Entry) => {\n const keyA = a.children;\n const keyB = b.children;\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n created: (a: Entry, b: Entry) => {\n if (absNegative(a)) {\n return 1;\n }\n\n if (absNegative(b)) {\n return -1;\n }\n\n const keyA = Date.parse(a.created);\n const keyB = Date.parse(b.created);\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n };\n\n const sorted = discussion.sort(sortOrders[order]);\n const pinnedIndex = sorted.findIndex((i) => isPinned(i));\n const pinned = sorted[pinnedIndex];\n if (pinnedIndex >= 0) {\n sorted.splice(pinnedIndex, 1);\n sorted.unshift(pinned);\n }\n return sorted;\n}\n\nexport function getDiscussionsQueryOptions(\n entry: Entry,\n order: SortOrder = SortOrder.created,\n enabled: boolean = true,\n observer?: string\n) {\n // Anonymous readers fall back to CONFIG.defaultObserver rather than the post\n // author. Author-as-observer only helps the minority of authors who curate a\n // mute list; everyone else's comment section came back unfiltered, so the\n // shared moderation account is the better default for logged-out traffic.\n const resolvedObserver = observer || CONFIG.defaultObserver;\n\n return queryOptions({\n queryKey: QueryKeys.posts.discussions(entry?.author, entry?.permlink, order, resolvedObserver),\n queryFn: async () => {\n if (!entry) {\n return [];\n }\n\n const response = await callRPC(\"bridge.get_discussion\", {\n author: entry.author,\n permlink: entry.permlink,\n observer: resolvedObserver,\n });\n\n const results = response\n ? Array.from(Object.values(response as Record))\n : [];\n return filterDmcaEntry(results);\n },\n enabled: enabled && !!entry,\n select: (data: Entry[]) => sortDiscussions(entry, data, order),\n // Preserve optimistic entries during refetch by using structural sharing\n // This ensures newly added comments (is_optimistic: true) aren't wiped out\n // when blockchain hasn't indexed them yet\n structuralSharing: (oldData, newData) => {\n if (!oldData || !newData) return newData;\n\n // Find optimistic entries in old data that aren't in new data yet\n const optimisticEntries = (oldData as Entry[]).filter(\n (entry: Entry) => entry.is_optimistic === true\n );\n\n const fetchedPermlinks = new Set(\n (newData as Entry[]).map((e: Entry) => `${e.author}/${e.permlink}`)\n );\n\n const missingOptimistic = optimisticEntries.filter(\n (opt: Entry) => !fetchedPermlinks.has(`${opt.author}/${opt.permlink}`)\n );\n\n // If there are optimistic entries missing from new data, preserve them\n if (missingOptimistic.length > 0) {\n return [...(newData as Entry[]), ...missingOptimistic];\n }\n\n return newData;\n },\n });\n}\n\nexport function getDiscussionQueryOptions(\n author: string,\n permlink: string,\n observer?: string,\n enabled = true\n) {\n const resolvedObserver = observer || CONFIG.defaultObserver;\n\n return queryOptions({\n queryKey: QueryKeys.posts.discussion(author, permlink, resolvedObserver),\n enabled: enabled && !!author && !!permlink,\n queryFn: async () =>\n getDiscussion(author, permlink, resolvedObserver) as Promise | null>,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getAccountPosts } from \"@/modules/bridge\";\n\ntype PageParam = {\n author: string | undefined;\n permlink: string | undefined;\n hasNextPage: boolean;\n};\ntype Page = Entry[];\n\nexport function getAccountPostsInfiniteQueryOptions(\n username: string | undefined,\n filter = \"posts\",\n limit = 20,\n observer = \"\",\n enabled = true\n) {\n return infiniteQueryOptions<\n Page,\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.posts.accountPosts(username ?? \"\", filter, limit, observer),\n enabled: !!username && enabled,\n initialPageParam: {\n author: undefined,\n permlink: undefined,\n hasNextPage: true,\n } as PageParam,\n\n queryFn: async ({ pageParam, signal }) => {\n if (!pageParam?.hasNextPage || !username) return [];\n\n const response = await getAccountPosts(\n filter,\n username,\n pageParam.author ?? \"\",\n pageParam.permlink ?? \"\",\n limit,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n\n getNextPageParam: (lastPage: Page): PageParam | undefined => {\n const last = lastPage?.[lastPage.length - 1];\n // Only consider there's a next page if we got a full page of results\n // A partial page means we've reached the end\n const hasNextPage = (lastPage?.length ?? 0) === limit;\n\n if (!hasNextPage) {\n return undefined;\n }\n\n return {\n author: last?.author,\n permlink: last?.permlink,\n hasNextPage,\n };\n },\n });\n}\n\nexport function getAccountPostsQueryOptions(\n username: string | undefined,\n filter = \"posts\",\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit = 20,\n observer = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.accountPostsPage(username ?? \"\", filter, start_author, start_permlink, limit, observer),\n enabled: !!username && enabled,\n queryFn: async ({ signal } = {} as any) => {\n if (!username) {\n return [];\n }\n\n const response = await getAccountPosts(\n filter,\n username,\n start_author,\n start_permlink,\n limit,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n });\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getPostsRanked } from \"@/modules/bridge\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype PageParam = {\n author: string | undefined;\n permlink: string | undefined;\n};\n\ninterface GetPostsRankedOptions {\n resolvePosts?: boolean;\n}\n\n/**\n * `select` runs on every render, and React Query only reuses its previous\n * result when both the data and the select function are unchanged. These\n * options are rebuilt on each render, so an inline arrow would be a new\n * function every time and every page would be re-sorted on every render.\n * One stable function per sort keeps that memoization working.\n */\nconst displaySelects = new Map<\n string,\n (data: InfiniteData) => InfiniteData\n>();\n\nfunction displaySelect(sort: string) {\n let select = displaySelects.get(sort);\n if (!select) {\n select = (data) => ({\n ...data,\n pages: data.pages.map((page) => orderForDisplay(page, sort)),\n });\n displaySelects.set(sort, select);\n }\n return select;\n}\n\n/**\n * Display order for one page.\n *\n * Pinned entries are captured before the created-date sort: the bridge surfaces\n * them at the head of the response in the community moderators' chosen order,\n * which the sort would scatter by age. Every pin is kept, since an earlier\n * post-sort find() kept one and silently dropped the rest, so multi-pin\n * communities never displayed their other pinned posts. Pins only occur on the\n * first page, cursor pages return none, so this is a no-op elsewhere.\n *\n * Applied in `select` rather than in the query function so it cannot reach the\n * pagination cursor.\n */\nfunction orderForDisplay(page: Entry[], sort: string): Entry[] {\n const pinned = page.filter((entry) => entry.stats?.is_pinned);\n const rest = page.filter((entry) => !entry.stats?.is_pinned);\n\n if (sort === \"hot\") {\n return [...pinned, ...rest];\n }\n\n const byCreated = [...rest].sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n return [...pinned, ...byCreated];\n}\n\nexport function getPostsRankedInfiniteQueryOptions(\n sort: string,\n tag: string,\n limit = 20,\n observer = \"\",\n enabled = true,\n _options: GetPostsRankedOptions = {}\n) {\n return infiniteQueryOptions<\n Entry[],\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.posts.postsRanked(sort, tag, limit, observer),\n queryFn: async ({ pageParam, signal }: { pageParam: PageParam; signal: AbortSignal }) => {\n let sanitizedTag = tag;\n if (CONFIG.dmcaTagRegexes.some((regex) => regex.test(tag))) {\n sanitizedTag = \"\";\n }\n\n const response = await callRPC(\"bridge.get_ranked_posts\", {\n sort,\n start_author: pageParam.author,\n start_permlink: pageParam.permlink,\n limit,\n tag: sanitizedTag,\n observer,\n }, undefined, undefined, signal);\n\n if (response === null || response === undefined) {\n return [];\n }\n\n if (!Array.isArray(response)) {\n throw new Error(\n `[SDK] get_ranked_posts returned ${typeof response} for sort=${sort}`\n );\n }\n\n // Kept in the bridge's own order. getNextPageParam takes the cursor from\n // the last entry of the page this returns, and the bridge continues from\n // that entry in ITS ranking, so reordering here made the next request\n // start from the middle of the previous ranked page: for trending, payout\n // and muted the last entry by date is not the last entry by rank, and\n // scrolling repeated some posts and skipped others. Display order is\n // applied in `select`, which React Query runs after pagination.\n return filterDmcaEntry(response as Entry[]);\n },\n select: displaySelect(sort),\n enabled,\n initialPageParam: {\n author: undefined,\n permlink: undefined,\n } as PageParam,\n getNextPageParam: (lastPage: Entry[]) => {\n // React Query reads \"there is no next page\" from undefined alone, so\n // returning an object here always left it true. An infinite list\n // then keeps calling fetchNextPage at the end of the feed, appending an\n // empty page each time: the query state churns and the cache grows for as\n // long as the reader sits at the bottom.\n const last = lastPage?.[lastPage.length - 1];\n if (!last) {\n return undefined;\n }\n\n return { author: last.author, permlink: last.permlink };\n },\n });\n}\n\nexport function getPostsRankedQueryOptions(\n sort: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n tag: string = \"\",\n observer: string = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.postsRankedPage(sort, start_author, start_permlink, limit, tag, observer),\n enabled,\n queryFn: async ({ signal } = {} as any) => {\n let sanitizedTag = tag;\n if (CONFIG.dmcaTagRegexes.some((regex) => regex.test(tag))) {\n sanitizedTag = \"\";\n }\n\n const response = await getPostsRanked(\n sort,\n start_author,\n start_permlink,\n limit,\n sanitizedTag,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface BlogEntry {\n author: string;\n permlink: string;\n blog: string;\n reblog_on: string;\n reblogged_on: string;\n entry_id: number;\n}\n\nexport interface Reblog {\n author: string;\n permlink: string;\n}\n\nexport function getReblogsQueryOptions(\n username?: string,\n activeUsername?: string,\n limit = 200\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.reblogs(username ?? \"\", limit),\n queryFn: async () => {\n const response = (await callRPC(\"condenser_api.get_blog_entries\", [\n username ?? activeUsername,\n 0,\n limit,\n ])) as BlogEntry[];\n\n return response\n .filter(\n (i) =>\n i.author !== activeUsername &&\n !i.reblogged_on.startsWith(\"1970-\")\n )\n .map((i) => ({ author: i.author, permlink: i.permlink })) as Reblog[];\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of usernames who reblogged a specific post\n */\nexport function getRebloggedByQueryOptions(author?: string, permlink?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.rebloggedBy(author ?? \"\", permlink ?? \"\"),\n queryFn: async () => {\n if (!author || !permlink) {\n return [];\n }\n\n const response = (await callRPC(\"condenser_api.get_reblogged_by\", [author, permlink])) as string[];\n\n return Array.isArray(response) ? response : [];\n },\n enabled: !!author && !!permlink,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { Schedule } from \"../types/schedule\";\n\nexport function getSchedulesQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.schedules(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch schedules: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getSchedulesInfiniteQueryOptions(\n activeUsername: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.schedulesInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/schedules?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch schedules: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { Draft } from \"../types/draft\";\n\nexport function getDraftsQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.drafts(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch drafts: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getDraftsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.draftsInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/drafts?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch drafts: ${response.status}`);\n }\n\n const json = await response.json();\n // Normalize response for backwards compatibility\n // If backend doesn't support wrapped format yet, it returns Draft[]\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { UserImage } from \"../types/user-image\";\n\nasync function fetchUserImages(code: string | undefined): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch images: ${response.status}`);\n }\n\n return response.json() as Promise;\n}\n\nexport function getImagesQueryOptions(username?: string, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.images(username),\n queryFn: async () => {\n if (!username || !code) {\n return [];\n }\n return fetchUserImages(code);\n },\n enabled: !!username && !!code,\n });\n}\n\nexport function getGalleryImagesQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.galleryImages(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n return fetchUserImages(code);\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getImagesInfiniteQueryOptions(\n username: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.imagesInfinite(username, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!username || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/images?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch images: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!username && !!code,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { CommentHistory } from \"../types/comment-history\";\n\nexport function getCommentHistoryQueryOptions(author: string, permlink: string, onlyMeta = false) {\n return queryOptions({\n queryKey: QueryKeys.posts.commentHistory(author, permlink, onlyMeta),\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/comment-history\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink,\n onlyMeta: onlyMeta ? \"1\" : \"\",\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch comment history: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!author && !!permlink,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { CommentHistory } from \"../types/comment-history\";\n\nfunction makeEntryPath(author: string, permlink: string): string {\n const cleanAuthor = author?.trim();\n const cleanPermlink = permlink?.trim();\n\n if (!cleanAuthor || !cleanPermlink) {\n throw new Error(\"Invalid entry path: author and permlink are required\");\n }\n\n // Normalize by removing any leading @ or / characters\n const normalizedAuthor = cleanAuthor.replace(/^@+/, \"\");\n const normalizedPermlink = cleanPermlink.replace(/^\\/+/, \"\");\n\n if (!normalizedAuthor || !normalizedPermlink) {\n throw new Error(\"Invalid entry path: author and permlink cannot be empty after normalization\");\n }\n\n return `@${normalizedAuthor}/${normalizedPermlink}`;\n}\n\nexport interface DeletedEntry {\n body: string;\n title: string;\n tags: string[];\n}\n\nexport function getDeletedEntryQueryOptions(author: string, permlink: string) {\n const cleanPermlink = permlink?.trim();\n const cleanAuthor = author?.trim();\n const isValid =\n !!cleanAuthor && !!cleanPermlink && cleanPermlink !== \"undefined\";\n\n const entryPath = isValid ? makeEntryPath(cleanAuthor, cleanPermlink) : \"\";\n\n return queryOptions({\n queryKey: QueryKeys.posts.deletedEntry(entryPath),\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/comment-history\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink: cleanPermlink || \"\",\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch comment history: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n select: (history): DeletedEntry | null => {\n if (!history?.list?.[0]) {\n return null;\n }\n const { body, title, tags } = history.list[0];\n return {\n body,\n title,\n tags,\n };\n },\n enabled: isValid,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { PostTipsResponse } from \"../types/post-tip\";\n\n/**\n * Tips for a single post.\n *\n * Addressed as a GET so the response can be cached. This was a POST, which no\n * cache may store, so the same tip totals were refetched on every mount. The\n * endpoint keys off nothing but author and permlink and needs no auth, and now\n * serves a Cache-Control, so a repeat read can come from the browser instead of\n * the network.\n *\n * `staleTime` is kept at or below the endpoint's own cache window rather than\n * extending it. react-query cannot see how old a response already was when\n * `fetch` served it from the browser cache, so it restarts its window from zero\n * on a body that may already be near expiry; worst-case staleness is the two\n * windows added together.\n */\nexport function getPostTipsQueryOptions(author: string, permlink: string, isEnabled = true) {\n return queryOptions({\n queryKey: QueryKeys.posts.tips(author, permlink),\n queryFn: async () => {\n const path = `/private-api/post-tips/${encodeURIComponent(author)}/${encodeURIComponent(permlink)}`;\n const response = await fetch(CONFIG.privateApiHost + path, {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch post tips: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!author && !!permlink && isEnabled,\n staleTime: 60 * 1000,\n });\n}\n","import { Entry, WaveEntry } from \"../types\";\nimport { getDiscussionsQueryOptions, SortOrder } from \"../queries/get-discussions-query-options\";\nimport { CONFIG } from \"@/modules/core\";\n\ntype EntryWithPostId = Entry & { post_id: number };\n\nfunction normalizeContainer(entry: EntryWithPostId, host: string): WaveEntry {\n return {\n ...entry,\n id: entry.id ?? entry.post_id,\n // The private-api waves feeds send the publish time as `timestamp`, not `created`.\n created: entry.created ?? (entry as unknown as { timestamp?: string }).timestamp,\n host\n } as WaveEntry;\n}\n\nfunction normalizeParent(entry: EntryWithPostId): Entry {\n return {\n ...entry,\n id: entry.id ?? entry.post_id\n } as Entry;\n}\n\nexport function normalizeWaveEntryFromApi(\n entry:\n | (Entry & { post_id: number; container?: EntryWithPostId | null; parent?: EntryWithPostId | null })\n | null\n | undefined,\n host: string\n): WaveEntry | null {\n if (!entry) {\n return null;\n }\n\n const containerSource = entry.container ?? entry;\n const container = normalizeContainer(containerSource, host);\n\n const parent = entry.parent ? normalizeParent(entry.parent) : undefined;\n\n return {\n ...entry,\n id: entry.id ?? entry.post_id,\n // The private-api waves feeds (following / tag / account) send the publish\n // time as `timestamp`, not `created`; map it so the relative time renders on\n // every card (the For You feed already carries a real `created` from Hive RPC).\n created: entry.created ?? (entry as unknown as { timestamp?: string }).timestamp,\n // The private-api waves feeds omit max_accepted_payout; default it (and the\n // payout strings) to the Hive shape so payout-rendering consumers run their\n // pending+author+curator summation instead of treating the value as missing.\n max_accepted_payout: entry.max_accepted_payout || \"1000000.000 HBD\",\n pending_payout_value: entry.pending_payout_value || \"0.000 HBD\",\n author_payout_value: entry.author_payout_value || \"0.000 HBD\",\n curator_payout_value: entry.curator_payout_value || \"0.000 HBD\",\n host,\n container,\n parent\n } as WaveEntry;\n}\n\nexport function toEntryArray(x: unknown): Entry[] {\n return Array.isArray(x) ? (x as Entry[]) : [];\n}\n\nexport async function getVisibleFirstLevelThreadItems(\n container: WaveEntry\n): Promise {\n const queryOptions = getDiscussionsQueryOptions(container, SortOrder.created, true);\n const discussionItemsRaw = await CONFIG.queryClient.fetchQuery(queryOptions);\n const discussionItems = toEntryArray(discussionItemsRaw);\n\n if (discussionItems.length <= 1) {\n return [];\n }\n\n const firstLevelItems = discussionItems.filter(\n ({ parent_author, parent_permlink }) =>\n parent_author === container.author && parent_permlink === container.permlink\n );\n\n if (firstLevelItems.length === 0) {\n return [];\n }\n\n const visibleItems = firstLevelItems.filter((item) => !item.stats?.gray);\n\n return visibleItems;\n}\n\nexport function mapThreadItemsToWaveEntries(\n items: Entry[],\n container: WaveEntry,\n host: string\n): WaveEntry[] {\n if (items.length === 0) {\n return [];\n }\n\n return items\n .map((item) => {\n const parent = items.find(\n (i) =>\n i.author === item.parent_author &&\n i.permlink === item.parent_permlink &&\n i.author !== host\n );\n\n return {\n ...item,\n id: item.post_id,\n host,\n container,\n parent\n } as WaveEntry;\n })\n .filter((entry) => entry.container.post_id !== entry.post_id)\n .sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\nconst DEFAULT_FEED_LIMIT = 20;\n\ntype WavesFeedRow = Entry & {\n post_id: number;\n // The wave's container account (e.g. ecency.waves, leothreads), so a mixed\n // cross-container feed can be rendered and acted on per item.\n host?: string;\n // Opaque keyset cursor pointing just past this row.\n _cursor?: string;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport type WavesFeedEntry = WaveEntry & { _cursor?: string };\n\nexport interface WavesFeedParams {\n /** Scope to one or more container accounts; omit for the full combined feed. */\n containers?: string[];\n /** Only waves carrying this tag (across all containers). */\n tag?: string;\n /** Only waves from accounts this user follows (across all containers). */\n following?: string;\n /** Only this author's waves (across all containers); the per-author feed. */\n author?: string;\n /**\n * The viewing user; exclude authors they currently mute. Ecency's own\n * moderation mutes are applied by esync regardless of this value, so leaving\n * it unset drops the viewer's personal mutes, not the platform ones.\n */\n observer?: string;\n /** Page size (default 20). */\n limit?: number;\n}\n\ninterface NormalizedFeedParams {\n containers: string[];\n tag?: string;\n following?: string;\n author?: string;\n observer?: string;\n limit: number;\n}\n\nfunction normalizeParams(params: WavesFeedParams): NormalizedFeedParams {\n return {\n containers: params.containers ?? [],\n tag: params.tag?.trim() || undefined,\n following: params.following?.trim().toLowerCase() || undefined,\n author: params.author?.trim().toLowerCase() || undefined,\n observer: params.observer?.trim().toLowerCase() || undefined,\n limit: params.limit ?? DEFAULT_FEED_LIMIT\n };\n}\n\nasync function fetchWavesFeedPage(\n { containers, tag, following, author, observer, limit }: NormalizedFeedParams,\n cursor: string | undefined,\n signal?: AbortSignal\n): Promise {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/feed\", baseUrl);\n url.searchParams.set(\"limit\", String(limit));\n if (cursor) {\n url.searchParams.set(\"cursor\", cursor);\n }\n containers.forEach((container) => url.searchParams.append(\"container\", container));\n if (tag) {\n url.searchParams.set(\"tag\", tag);\n }\n if (following) {\n url.searchParams.set(\"following\", following);\n }\n if (author) {\n url.searchParams.set(\"author\", author);\n }\n if (observer) {\n url.searchParams.set(\"observer\", observer);\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves feed: ${response.status}`);\n }\n\n const data = (await response.json()) as WavesFeedRow[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n return data\n .map((row) => {\n const entry = normalizeWaveEntryFromApi(row, row.host ?? \"\");\n if (!entry) {\n return null;\n }\n return { ...entry, _cursor: row._cursor } as WavesFeedEntry;\n })\n .filter((entry): entry is WavesFeedEntry => Boolean(entry));\n}\n\n/**\n * Combined cross-container waves feed (the chronological \"For You\" stream, and\n * the Following / Tag feeds via filters).\n *\n * A single esync-backed call returns the newest waves across every indexed\n * container, already merged and time-ordered, with keyset (cursor) pagination,\n * replacing the per-container chain-RPC scan. The optional `tag` / `following`\n * filters narrow the same stream without changing the cursor.\n */\nexport function getWavesFeedQueryOptions(params: WavesFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, following, author, observer, limit } = normalized;\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesFeed({ containers, tag, following, author, observer, limit }),\n initialPageParam: undefined as string | undefined,\n\n queryFn: ({ pageParam, signal }) => fetchWavesFeedPage(normalized, pageParam, signal),\n\n // Keyset pagination. A short page (fewer than `limit` rows) is the\n // end-of-feed signal; on a full page the server always returns the next\n // cursor on the last row. Stopping (rather than looping) is the safe\n // fallback if that cursor were ever absent.\n getNextPageParam: (lastPage: WavesFeedEntry[]) => {\n if (lastPage.length < limit) {\n return undefined;\n }\n return lastPage[lastPage.length - 1]?._cursor;\n }\n });\n}\n\n/**\n * Page-one of the combined feed as a plain (non-infinite) query under a distinct\n * key, for the \"new waves\" poll. Separate from {@link getWavesFeedQueryOptions}\n * so refreshing it never truncates the infinite feed's loaded pages.\n */\nexport function getWavesLatestFeedQueryOptions(params: WavesFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, following, author, observer, limit } = normalized;\n\n return queryOptions({\n queryKey: [\n ...QueryKeys.posts.wavesFeed({ containers, tag, following, author, observer, limit }),\n \"latest\"\n ],\n staleTime: 0,\n queryFn: ({ signal }) => fetchWavesFeedPage(normalized, undefined, signal)\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\nconst DEFAULT_FEED_LIMIT = 20;\n\n/** The 3Speak video a short embeds, as returned by esync /api/waves/shorts. */\nexport interface ShortVideo {\n platform: string;\n author: string;\n permlink: string;\n embed_url: string;\n thumbnail_url: string | null;\n duration_secs: number | null;\n}\n\ntype ShortsFeedRow = Entry & {\n post_id: number;\n host?: string;\n video?: ShortVideo;\n _cursor?: string;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport type ShortsFeedEntry = WaveEntry & {\n /** The embedded 3Speak video reference for the reels player. */\n video?: ShortVideo;\n _cursor?: string;\n};\n\nexport interface ShortsFeedParams {\n /** Scope to one or more container accounts; omit for the full combined feed. */\n containers?: string[];\n /** Only shorts carrying this tag (across all containers). */\n tag?: string;\n /** Only this author's shorts (across all containers). */\n author?: string;\n /**\n * The viewing user; exclude authors they currently mute. Ecency's own\n * moderation mutes are applied by esync regardless of this value.\n */\n observer?: string;\n /** Page size (default 20). */\n limit?: number;\n}\n\ninterface NormalizedShortsParams {\n containers: string[];\n tag?: string;\n author?: string;\n observer?: string;\n limit: number;\n}\n\nfunction normalizeParams(params: ShortsFeedParams): NormalizedShortsParams {\n return {\n containers: params.containers ?? [],\n tag: params.tag?.trim() || undefined,\n author: params.author?.trim().toLowerCase() || undefined,\n observer: params.observer?.trim().toLowerCase() || undefined,\n limit: params.limit ?? DEFAULT_FEED_LIMIT\n };\n}\n\nasync function fetchShortsFeedPage(\n { containers, tag, author, observer, limit }: NormalizedShortsParams,\n cursor: string | undefined,\n signal?: AbortSignal\n): Promise {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/shorts\", baseUrl);\n url.searchParams.set(\"limit\", String(limit));\n if (cursor) {\n url.searchParams.set(\"cursor\", cursor);\n }\n containers.forEach((container) => url.searchParams.append(\"container\", container));\n if (tag) {\n url.searchParams.set(\"tag\", tag);\n }\n if (author) {\n url.searchParams.set(\"author\", author);\n }\n if (observer) {\n url.searchParams.set(\"observer\", observer);\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch shorts feed: ${response.status}`);\n }\n\n const data = (await response.json()) as ShortsFeedRow[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n return data\n .map((row) => {\n const entry = normalizeWaveEntryFromApi(row, row.host ?? \"\");\n if (!entry) {\n return null;\n }\n return {\n ...entry,\n // A lightweight feed row may omit active_votes; EntryVoteBtn (which uses\n // this entry as React Query initialData) calls .some() on it, so default\n // to an empty array to avoid a crash before the full post query loads.\n active_votes: entry.active_votes ?? [],\n video: row.video,\n _cursor: row._cursor\n } as ShortsFeedEntry;\n })\n .filter((entry): entry is ShortsFeedEntry => Boolean(entry));\n}\n\n/**\n * Combined cross-container shorts (reels) feed: waves that embed a 3Speak video.\n *\n * Backed by esync /api/waves/shorts (via /private-api/waves/shorts). Same shape,\n * keyset pagination and filters as {@link getWavesFeedQueryOptions}, plus a\n * `video` block per item for the vertical reels player. There is no `following`\n * filter in v1.\n */\nexport function getShortsFeedQueryOptions(params: ShortsFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, author, observer, limit } = normalized;\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.shortsFeed({ containers, tag, author, observer, limit }),\n initialPageParam: undefined as string | undefined,\n\n queryFn: ({ pageParam, signal }) => fetchShortsFeedPage(normalized, pageParam, signal),\n\n // Keyset pagination: a short page (fewer than `limit` rows) ends the feed;\n // on a full page the server returns the next cursor on the last row.\n getNextPageParam: (lastPage: ShortsFeedEntry[]) => {\n if (lastPage.length < limit) {\n return undefined;\n }\n return lastPage[lastPage.length - 1]?._cursor;\n }\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport {\n getVisibleFirstLevelThreadItems,\n mapThreadItemsToWaveEntries\n} from \"../utils/waves-helpers\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nconst THREAD_CONTAINER_BATCH_SIZE = 5;\nconst MAX_CONTAINERS_TO_SCAN = 50;\n\ninterface ThreadsResult {\n entries: WaveEntry[];\n}\n\nasync function getThreads(\n host: string,\n pageParam?: WaveEntry\n): Promise {\n let startAuthor = pageParam?.author;\n let startPermlink = pageParam?.permlink;\n let scannedContainers = 0;\n let skipContainerId = pageParam?.post_id;\n\n while (scannedContainers < MAX_CONTAINERS_TO_SCAN) {\n interface AccountPostsParams {\n sort: string;\n account: string;\n limit: number;\n start_author?: string;\n start_permlink?: string;\n }\n\n const rpcParams: AccountPostsParams = {\n sort: \"posts\", // ProfileFilter.posts\n account: host,\n limit: THREAD_CONTAINER_BATCH_SIZE,\n ...(startAuthor ? { start_author: startAuthor } : {}),\n ...(startPermlink ? { start_permlink: startPermlink } : {})\n };\n\n let containers: WaveEntry[];\n try {\n containers = (await callRPC(\"bridge.get_account_posts\", rpcParams)) as WaveEntry[];\n } catch (err) {\n console.error(\"[SDK] getThreads get_account_posts error:\", err);\n return null;\n }\n\n if (!containers || containers.length === 0) {\n return null;\n }\n\n const normalizedContainers = containers.map((container) => {\n container.id = container.post_id;\n container.host = host;\n return container;\n });\n\n for (const container of normalizedContainers) {\n if (skipContainerId && container.post_id === skipContainerId) {\n skipContainerId = undefined;\n continue;\n }\n\n scannedContainers += 1;\n\n if (container.stats?.gray) {\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n let visibleItems: Entry[];\n try {\n visibleItems = await getVisibleFirstLevelThreadItems(container);\n } catch (err) {\n // A transient bridge.get_discussion failure (RPC timeout, node error, or\n // an oversized response on a large late-day container) must not collapse\n // the whole feed. Treat this container as temporarily unavailable and scan\n // the next one — mirroring the empty-container handling below and the\n // get_account_posts guard above. The query's refetch interval retries it.\n console.error(\"[SDK] getThreads get_discussion error:\", err);\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n if (visibleItems.length === 0) {\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n return {\n entries: mapThreadItemsToWaveEntries(visibleItems, container, host)\n };\n }\n\n const lastContainer = normalizedContainers[normalizedContainers.length - 1];\n\n if (!lastContainer) {\n return null;\n }\n\n startAuthor = lastContainer.author;\n startPermlink = lastContainer.permlink;\n }\n\n return null;\n}\n\n// Page = array of WaveEntry; Cursor = WaveEntry (container) or undefined\ntype WavesPage = WaveEntry[];\ntype WavesCursor = WaveEntry | undefined;\n\nexport function getWavesByHostQueryOptions(host: string) {\n return infiniteQueryOptions<\n WavesPage,\n Error,\n InfiniteData,\n string[],\n WavesCursor\n >({\n queryKey: QueryKeys.posts.wavesByHost(host),\n initialPageParam: undefined as WavesCursor,\n\n queryFn: async ({ pageParam }: { pageParam: WavesCursor }) => {\n const result = await getThreads(host, pageParam);\n if (!result) return []; // no items to show for this page\n\n return result.entries;\n },\n\n getNextPageParam: (lastPage: WavesPage): WavesCursor => lastPage?.[0]?.container,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ntype WavesTagEntryResponse = Entry & {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nconst DEFAULT_TAG_FEED_LIMIT = 40;\n\nexport function getWavesByTagQueryOptions(host: string, tag: string, limit = DEFAULT_TAG_FEED_LIMIT) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesByTag(host, tag),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/tags\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"tag\", tag);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves by tag: ${response.status}`);\n }\n\n const data = await response.json() as WavesTagEntryResponse[];\n\n const result = data\n .slice(0, limit)\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n return result.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves by tag\", error);\n return [];\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ntype WavesFollowingEntry = Entry & {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport function getWavesFollowingQueryOptions(host: string, username?: string) {\n const normalizedUsername = username?.trim().toLowerCase();\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesFollowing(host, normalizedUsername ?? \"\"),\n enabled: Boolean(normalizedUsername),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n if (!normalizedUsername) {\n return [];\n }\n\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/following\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"username\", normalizedUsername);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves following feed: ${response.status}`);\n }\n\n const data = await response.json() as WavesFollowingEntry[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n const flattened = data\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n if (flattened.length === 0) {\n return [];\n }\n\n return flattened.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves following feed\", error);\n return [];\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { WaveTrendingTag } from \"../types\";\n\ninterface WavesTrendingTagResponse {\n tag: string;\n posts: number;\n}\n\nexport function getWavesTrendingTagsQueryOptions(host?: string, hours = 24) {\n // Omit the container for combined trending tags across all containers.\n const container = host?.trim() || undefined;\n\n return queryOptions({\n queryKey: QueryKeys.posts.wavesTrendingTags(container ?? \"\", hours),\n queryFn: async ({ signal }): Promise => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/trending/tags\", baseUrl);\n if (container) {\n url.searchParams.set(\"container\", container);\n }\n url.searchParams.set(\"hours\", hours.toString());\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves trending tags: ${response.status}`);\n }\n\n const data = await response.json() as WavesTrendingTagResponse[];\n\n return data.map(({ tag, posts }) => ({ tag, posts }));\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves trending tags\", error);\n return [];\n }\n }\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ninterface WavesAccountEntry extends Entry {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n}\n\nexport function getWavesByAccountQueryOptions(host: string, username?: string) {\n const normalizedUsername = username?.trim().toLowerCase();\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesByAccount(host, normalizedUsername ?? \"\"),\n enabled: Boolean(normalizedUsername),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n if (!normalizedUsername) {\n return [];\n }\n\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/account\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"username\", normalizedUsername);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves for account: ${response.status}`);\n }\n\n const data = await response.json() as WavesAccountEntry[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n const flattened = data\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n if (flattened.length === 0) {\n return [];\n }\n\n return flattened.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves for account\", error);\n throw error;\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { WaveTrendingAuthor } from \"../types\";\n\nexport function getWavesTrendingAuthorsQueryOptions(host: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.wavesTrendingAuthors(host),\n queryFn: async ({ signal }): Promise => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/trending/authors\", baseUrl);\n url.searchParams.set(\"container\", host);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves trending authors: ${response.status}`);\n }\n\n const data = await response.json() as WaveTrendingAuthor[];\n\n return data.map(({ author, posts }) => ({ author, posts }));\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves trending authors\", error);\n throw error;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry } from \"../types\";\nimport { normalizePost } from \"@/modules/bridge\";\n\nexport function getNormalizePostQueryOptions(\n post: { author?: string; permlink?: string } | undefined,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.normalize(post?.author ?? \"\", post?.permlink ?? \"\"),\n enabled: enabled && !!post,\n queryFn: async () => normalizePost(post) as Promise,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core/config\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry } from \"@/modules/posts/types\";\nimport { getPostQueryOptions } from \"@/modules/posts/queries\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ninterface VoteOperationDetails {\n voter: string;\n author: string;\n permlink: string;\n weight: number;\n}\n\ninterface AccountVoteHistoryItem {\n timestamp: string;\n op: [string, VoteOperationDetails];\n}\n\ntype AccountVoteHistoryRecord = [number, AccountVoteHistoryItem];\n\ninterface VoteHistoryResult extends VoteOperationDetails {\n num: number;\n timestamp: string;\n}\n\nexport interface VoteHistoryPageParam {\n start: number;\n}\n\nexport interface VoteHistoryPage {\n lastDate: number;\n lastItemFetched: number;\n entries: Entry[];\n}\n\nfunction isEntry(x: unknown): x is Entry {\n return (\n !!x &&\n typeof x === \"object\" &&\n \"author\" in x &&\n \"permlink\" in x &&\n \"active_votes\" in x\n );\n}\n\n/**\n * Calculate days since a date\n */\nfunction getDays(createdDate: string): number {\n const past = new Date(createdDate);\n const now = new Date();\n const diffMs = now.getTime() - past.getTime();\n return diffMs / (1000 * 60 * 60 * 24);\n}\n\n/**\n * Get account vote history with entries\n *\n * @param username - Account name to get vote history for\n * @param limit - Number of history items per page (default: 20)\n * @param filters - Additional filters to pass to get_account_history\n * @param dayLimit - Only include votes from last N days (default: 7)\n */\nexport function getAccountVoteHistoryInfiniteQueryOptions(\n username: string,\n options?: {\n limit?: number;\n filters?: F[];\n dayLimit?: number;\n }\n) {\n const { limit = 20, filters = [], dayLimit = 7.0 } = options ?? {};\n\n return infiniteQueryOptions<\n VoteHistoryPage,\n Error,\n InfiniteData,\n (string | number)[],\n VoteHistoryPageParam\n >({\n queryKey: QueryKeys.accounts.voteHistory(username, limit),\n initialPageParam: { start: -1 },\n\n queryFn: async ({ pageParam }: { pageParam: VoteHistoryPageParam }) => {\n const { start } = pageParam;\n\n const response = (await callRPC(\"condenser_api.get_account_history\", [username, start, limit, ...filters])) as AccountVoteHistoryRecord[];\n\n const mappedResults: VoteHistoryResult[] = response.map(([num, historyObj]) => ({\n ...historyObj.op[1],\n num,\n timestamp: historyObj.timestamp,\n }));\n\n const result = mappedResults.filter(\n (filtered) =>\n filtered.voter === username &&\n filtered.weight !== 0 &&\n getDays(filtered.timestamp) <= dayLimit\n );\n\n const entries: Entry[] = [];\n for (const obj of result) {\n const post = await CONFIG.queryClient.fetchQuery(\n getPostQueryOptions(obj.author, obj.permlink)\n );\n if (isEntry(post)) entries.push(post);\n }\n\n const [firstHistory] = response;\n\n return {\n lastDate: firstHistory ? getDays(firstHistory[1].timestamp) : 0,\n lastItemFetched: firstHistory ? firstHistory[0] : start,\n entries,\n };\n },\n\n getNextPageParam: (lastPage: VoteHistoryPage): VoteHistoryPageParam => ({\n start: lastPage.lastItemFetched,\n }),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Profile } from \"../types\";\nimport { getProfiles } from \"@/modules/bridge\";\n\nexport function getProfilesQueryOptions(\n accounts: string[],\n observer?: string,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.profiles(accounts, observer ?? \"\"),\n enabled: enabled && accounts.length > 0,\n queryFn: async () => getProfiles(accounts, observer) as Promise,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport type {\n BalanceCoinType,\n BalanceHistoryEntry,\n BalanceHistoryResponse,\n} from \"../types\";\n\ninterface BalanceHistoryPage {\n entries: BalanceHistoryEntry[];\n currentPage: number;\n}\n\n/**\n * Cursor for balance history pagination.\n * null = first request (returns the newest page).\n * number = specific page to fetch (decrementing for older data).\n */\ntype BalanceHistoryCursor = number | null;\n\n/**\n * Get balance history for an account with pagination, newest first.\n * Uses the balance-api REST endpoint with direction=desc.\n *\n * Pagination: first call omits `page` to get the newest data.\n * The response includes `total_pages` so we know the current page number.\n * Subsequent calls decrement the page number to load older data.\n *\n * @param username - Account name\n * @param coinType - HIVE, HBD, or VESTS\n * @param pageSize - Number of entries per page\n */\nexport function getBalanceHistoryInfiniteQueryOptions(\n username?: string,\n coinType: BalanceCoinType = \"HIVE\",\n pageSize = 200\n) {\n return infiniteQueryOptions<\n BalanceHistoryPage,\n Error,\n InfiniteData,\n (string | number)[],\n BalanceHistoryCursor\n >({\n queryKey: QueryKeys.wallet.balanceHistory(\n username ?? \"\",\n coinType,\n pageSize\n ),\n initialPageParam: null as BalanceHistoryCursor,\n\n queryFn: async ({ pageParam, signal }) => {\n if (!username) {\n return { entries: [], currentPage: 0 };\n }\n\n const params: Record = {\n \"account-name\": username,\n \"coin-type\": coinType,\n \"page-size\": pageSize,\n direction: \"desc\",\n };\n\n // First call: omit page to get newest data\n // Subsequent calls: pass specific page number\n if (pageParam !== null) {\n params.page = pageParam;\n }\n\n const response = (await callREST(\n \"balance\",\n \"/accounts/{account-name}/balance-history\",\n params,\n undefined,\n undefined,\n signal\n )) as BalanceHistoryResponse;\n\n return {\n entries: response.operations_result,\n currentPage: pageParam ?? response.total_pages,\n };\n },\n\n getNextPageParam: (lastPage) => {\n // Decrement page to go further back in time\n const nextPage = lastPage.currentPage - 1;\n return nextPage >= 1 ? nextPage : undefined;\n },\n\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport type { AggregatedBalanceEntry, BalanceCoinType } from \"../types\";\n\nexport type BalanceAggregationGranularity = \"yearly\" | \"monthly\" | \"daily\";\n\n/**\n * Get aggregated balance history for an account.\n * Uses the balance-api REST endpoint - enables yearly/monthly/daily summary\n * widgets that are impossible via RPC.\n *\n * @param username - Account name\n * @param coinType - HIVE, HBD, or VESTS\n * @param granularity - yearly (default), monthly, or daily\n */\nexport function getAggregatedBalanceQueryOptions(\n username?: string,\n coinType: BalanceCoinType = \"HIVE\",\n granularity: BalanceAggregationGranularity = \"yearly\"\n) {\n return queryOptions({\n queryKey: QueryKeys.wallet.aggregatedHistory(\n username ?? \"\",\n coinType,\n granularity\n ),\n\n queryFn: async () => {\n if (!username) {\n return [];\n }\n\n return (await callREST(\n \"balance\",\n \"/accounts/{account-name}/aggregated-history\",\n {\n \"account-name\": username,\n \"coin-type\": coinType,\n granularity,\n }\n )) as AggregatedBalanceEntry[];\n },\n\n enabled: !!username,\n staleTime: 60_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport interface ProMembersResponse {\n /** Usernames of active Ecency Pro members. */\n members: string[];\n count: number;\n}\n\n/**\n * Public, cached roster of Ecency Pro members. Backed by a lightweight private-api\n * endpoint (no auth) so any surface can decorate a username with a Pro badge without\n * a per-user request.\n *\n * `staleTime` is deliberately shorter than the endpoint's own cache window and is\n * NOT raised to match it. react-query has no idea how old a response already was\n * when `fetch` served it from the browser cache: it treats a nine-minute-old\n * cached body as freshly fetched and starts its own window from zero. Worst-case\n * staleness is therefore the endpoint's window plus this one, so raising this to\n * match the server would roughly double it rather than align it.\n */\nexport function getProMembersQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.accounts.proMembers(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/pro-members\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch pro members: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n staleTime: 5 * 60 * 1000,\n });\n}\n\n/** Lowercased set of member usernames for O(1), case-insensitive membership checks. */\nexport function proMembersSet(members?: string[]): Set {\n return new Set((members ?? []).map((m) => m.toLowerCase()));\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { useQuery, useQueryClient } from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { AccountProfile, FullAccount } from \"../types\";\nimport {\n buildPostingJsonMetadata,\n buildProfileMetadata,\n extractAccountProfile,\n pickRicherMetadataSnapshot,\n} from \"../utils/profile-metadata\";\n\ninterface Payload {\n profile: Partial;\n tokens: AccountProfile[\"tokens\"];\n}\n\n/**\n * React Query mutation hook for updating account profile metadata.\n *\n * This mutation broadcasts an account_update2 operation to update the user's\n * profile information (name, about, location, avatar, cover image, etc.).\n *\n * @param username - The username to update (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Profile Fields:**\n * - name: Display name\n * - about: Bio/description\n * - location: Location\n * - website: Website URL\n * - profile_image: Avatar URL\n * - cover_image: Cover/banner URL\n * - tokens: Social tokens (Twitter, Facebook, etc.)\n * - version: Profile metadata version (auto-set to 2)\n *\n * **Authentication:**\n * - Uses posting authority (account_update2 operation)\n * - Supports all auth methods via platform adapter\n *\n * **Post-Broadcast Actions:**\n * - Optimistically updates account cache with new profile data\n * - Invalidates account cache to refetch from blockchain\n *\n * @example\n * ```typescript\n * const updateProfile = useAccountUpdate(username, {\n * adapter: myAdapter,\n * });\n *\n * // Update profile\n * updateProfile.mutate({\n * profile: {\n * name: \"John Doe\",\n * about: \"Hive enthusiast\",\n * profile_image: \"https://...\",\n * }\n * });\n * ```\n */\nexport function useAccountUpdate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n const queryClient = useQueryClient();\n\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useBroadcastMutation(\n [\"accounts\", \"update\"],\n username,\n (payload: Partial) => {\n // Prefer the freshest cached snapshot. onMutate has just refetched the\n // account from chain, so this usually reflects the current on-chain\n // profile rather than a possibly stale/unloaded render-time value. If\n // the cache instead holds a metadata-poorer row than the render-time\n // snapshot (e.g. a node served a stripped account row), the richer\n // snapshot wins — a partial update must never shrink the profile while\n // any snapshot still knows the full one.\n const account = pickRicherMetadataSnapshot(\n queryClient.getQueryData(\n getAccountFullQueryOptions(username).queryKey\n ),\n data\n );\n\n if (!account) {\n throw new Error(\"[SDK][Accounts] – cannot update not existing account\");\n }\n\n return [\n [\n \"account_update2\",\n {\n account: username!,\n json_metadata: \"\",\n extensions: [] as [],\n // Read-modify-write the FULL on-chain metadata: deep-merge the\n // profile and preserve any non-`profile` top-level keys, so a\n // partial update never wipes unrelated fields.\n posting_json_metadata: buildPostingJsonMetadata({\n existingPostingJsonMetadata: account.posting_json_metadata,\n profile: payload.profile,\n tokens: payload.tokens,\n }),\n },\n ],\n ];\n },\n async (_data: unknown, variables: Partial) => {\n // Optimistic cache update\n queryClient.setQueryData(\n getAccountFullQueryOptions(username).queryKey,\n (data) => {\n if (!data) {\n return data;\n }\n\n const obj = JSON.parse(JSON.stringify(data)) as FullAccount;\n obj.profile = buildProfileMetadata({\n existingProfile: extractAccountProfile(data),\n profile: variables.profile,\n tokens: variables.tokens,\n });\n\n return obj;\n }\n );\n\n // Invalidate cache to refetch from blockchain\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username)\n ]);\n },\n auth,\n undefined,\n {\n broadcastMode,\n // Before merging, force a fresh on-chain read so a stale or unloaded\n // cached snapshot cannot cause a partial update (e.g. pinning a post,\n // which sets only `pinned`) to overwrite the existing profile with a\n // near-empty object. Best-effort: if the refetch fails, the op builder\n // falls back to the cached snapshot.\n onMutate: async () => {\n if (!username) {\n return;\n }\n try {\n await queryClient.fetchQuery({\n ...getAccountFullQueryOptions(username),\n staleTime: 0,\n });\n } catch {\n // Ignore – fall back to whatever is already cached.\n }\n },\n }\n );\n}\n","import { broadcastJson, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { AuthContext } from \"@/modules/core/types\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { getRelationshipBetweenAccountsQueryOptions, getAccountFullQueryOptions } from \"../queries\";\nimport { AccountRelationship } from \"../types\";\n\ntype Kind = \"toggle-ignore\" | \"toggle-follow\";\n\nexport function useAccountRelationsUpdate(\n reference: string | undefined,\n target: string | undefined,\n auth: AuthContext | undefined,\n onSuccess: (data: Partial | undefined) => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"relation\", \"update\", reference, target],\n mutationFn: async (kind: Kind) => {\n const relationsQuery = getRelationshipBetweenAccountsQueryOptions(\n reference!,\n target!\n );\n await getQueryClient().prefetchQuery(relationsQuery);\n const actualRelation = getQueryClient().getQueryData(\n relationsQuery.queryKey\n );\n\n await broadcastJson(\n reference,\n \"follow\",\n [\n \"follow\",\n {\n follower: reference,\n following: target,\n what: [\n ...(kind === \"toggle-ignore\" && !actualRelation?.ignores\n ? [\"ignore\"]\n : []),\n ...(kind === \"toggle-follow\" && !actualRelation?.follows\n ? [\"blog\"]\n : []),\n ],\n },\n ],\n auth\n );\n\n return {\n ...actualRelation,\n ignores:\n kind === \"toggle-ignore\"\n ? !actualRelation?.ignores\n : actualRelation?.ignores,\n follows:\n kind === \"toggle-follow\"\n ? !actualRelation?.follows\n : actualRelation?.follows,\n } satisfies Partial;\n },\n onError,\n onSuccess(data) {\n onSuccess(data);\n\n getQueryClient().setQueryData(\n QueryKeys.accounts.relations(reference!, target!),\n data\n );\n\n // Invalidate account query to refetch follow stats (follower_count, following_count)\n // This is needed because profile pages use staleTime: Infinity for performance\n if (target) {\n getQueryClient().invalidateQueries(\n getAccountFullQueryOptions(target)\n );\n }\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Content Operations\n * Operations for creating, voting, and managing content on Hive blockchain\n */\n\n/**\n * Builds a vote operation.\n * @param voter - Account casting the vote\n * @param author - Author of the post/comment\n * @param permlink - Permlink of the post/comment\n * @param weight - Vote weight (-10000 to 10000, where 10000 = 100% upvote, -10000 = 100% downvote)\n * @returns Vote operation\n */\nexport function buildVoteOp(\n voter: string,\n author: string,\n permlink: string,\n weight: number\n): Operation {\n if (!voter || !author || !permlink) {\n throw new Error(\"[SDK][buildVoteOp] Missing required parameters\");\n }\n if (weight < -10000 || weight > 10000) {\n throw new Error(\"[SDK][buildVoteOp] Weight must be between -10000 and 10000\");\n }\n\n return [\n \"vote\",\n {\n voter,\n author,\n permlink,\n weight,\n },\n ];\n}\n\n/**\n * Builds a comment operation (for posts or replies).\n * @param author - Author of the comment/post\n * @param permlink - Permlink of the comment/post\n * @param parentAuthor - Parent author (empty string for top-level posts)\n * @param parentPermlink - Parent permlink (category/tag for top-level posts)\n * @param title - Title of the post (empty for comments)\n * @param body - Content body (required - cannot be empty)\n * @param jsonMetadata - JSON metadata object\n * @returns Comment operation\n */\nexport function buildCommentOp(\n author: string,\n permlink: string,\n parentAuthor: string,\n parentPermlink: string,\n title: string,\n body: string,\n jsonMetadata: Record\n): Operation {\n // Every comment mutation (create, update, cross-post) goes through this\n // builder, so it is the one place the required fields are checked. Naming the\n // missing ones makes the report actionable instead of a bare assertion.\n const missing: string[] = [];\n if (!author) missing.push(\"author\");\n if (!permlink) missing.push(\"permlink\");\n if (parentPermlink === undefined) missing.push(\"parentPermlink\");\n if (!body) missing.push(\"body\");\n if (missing.length > 0) {\n throw new Error(`[SDK][buildCommentOp] Missing required parameters: ${missing.join(\", \")}`);\n }\n\n return [\n \"comment\",\n {\n parent_author: parentAuthor,\n parent_permlink: parentPermlink,\n author,\n permlink,\n title,\n body,\n json_metadata: JSON.stringify(jsonMetadata),\n },\n ];\n}\n\n/**\n * Builds a comment options operation (for setting beneficiaries, rewards, etc.).\n * @param author - Author of the comment/post\n * @param permlink - Permlink of the comment/post\n * @param maxAcceptedPayout - Maximum accepted payout (e.g., \"1000000.000 HBD\")\n * @param percentHbd - Percent of payout in HBD (10000 = 100%)\n * @param allowVotes - Allow votes on this content\n * @param allowCurationRewards - Allow curation rewards\n * @param extensions - Extensions array (for beneficiaries, etc.)\n * @returns Comment options operation\n */\nexport function buildCommentOptionsOp(\n author: string,\n permlink: string,\n maxAcceptedPayout: string,\n percentHbd: number,\n allowVotes: boolean,\n allowCurationRewards: boolean,\n extensions: any[]\n): Operation {\n if (!author || !permlink) {\n throw new Error(\"[SDK][buildCommentOptionsOp] Missing required parameters\");\n }\n\n return [\n \"comment_options\",\n {\n author,\n permlink,\n max_accepted_payout: maxAcceptedPayout,\n percent_hbd: percentHbd,\n allow_votes: allowVotes,\n allow_curation_rewards: allowCurationRewards,\n extensions,\n },\n ];\n}\n\n/**\n * Builds a delete comment operation.\n * @param author - Author of the comment/post to delete\n * @param permlink - Permlink of the comment/post to delete\n * @returns Delete comment operation\n */\nexport function buildDeleteCommentOp(author: string, permlink: string): Operation {\n if (!author || !permlink) {\n throw new Error(\"[SDK][buildDeleteCommentOp] Missing required parameters\");\n }\n\n return [\n \"delete_comment\",\n {\n author,\n permlink,\n },\n ];\n}\n\n/**\n * Builds a reblog operation (custom_json).\n * @param account - Account performing the reblog\n * @param author - Original post author\n * @param permlink - Original post permlink\n * @param deleteReblog - If true, removes the reblog\n * @returns Custom JSON operation for reblog\n */\nexport function buildReblogOp(\n account: string,\n author: string,\n permlink: string,\n deleteReblog: boolean = false\n): Operation {\n if (!account || !author || !permlink) {\n throw new Error(\"[SDK][buildReblogOp] Missing required parameters\");\n }\n\n const json: any = {\n account,\n author,\n permlink,\n };\n\n if (deleteReblog) {\n json.delete = \"delete\";\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\"reblog\", json]),\n required_auths: [],\n required_posting_auths: [account],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Wallet Operations\n * Operations for managing tokens, savings, vesting, and conversions\n */\n\n/**\n * Builds a transfer operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Transfer operation\n */\nexport function buildTransferOp(\n from: string,\n to: string,\n amount: string,\n memo: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferOp] Missing required parameters\");\n }\n\n return [\n \"transfer\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n },\n ];\n}\n\n/**\n * Builds multiple transfer operations for multiple recipients.\n * @param from - Sender account\n * @param destinations - Comma or space separated list of recipient accounts\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Array of transfer operations\n */\nexport function buildMultiTransferOps(\n from: string,\n destinations: string,\n amount: string,\n memo: string\n): Operation[] {\n if (!from || !destinations || !amount) {\n throw new Error(\"[SDK][buildMultiTransferOps] Missing required parameters\");\n }\n\n // Split the destination input into an array of usernames\n const destArray = destinations\n .trim()\n .split(/[\\s,]+/)\n .filter(Boolean);\n\n // Create a transfer operation for each destination username\n return destArray.map((dest) =>\n buildTransferOp(from, dest.trim(), amount, memo)\n );\n}\n\n/**\n * Builds a recurrent transfer operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @param recurrence - Recurrence in hours\n * @param executions - Number of executions (2 = executes twice)\n * @returns Recurrent transfer operation\n */\nexport function buildRecurrentTransferOp(\n from: string,\n to: string,\n amount: string,\n memo: string,\n recurrence: number,\n executions: number\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildRecurrentTransferOp] Missing required parameters\");\n }\n if (recurrence < 24) {\n throw new Error(\"[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours\");\n }\n\n return [\n \"recurrent_transfer\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n recurrence,\n executions,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds a transfer to savings operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Transfer to savings operation\n */\nexport function buildTransferToSavingsOp(\n from: string,\n to: string,\n amount: string,\n memo: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferToSavingsOp] Missing required parameters\");\n }\n\n return [\n \"transfer_to_savings\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n },\n ];\n}\n\n/**\n * Builds a transfer from savings operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @param requestId - Unique request ID (use timestamp)\n * @returns Transfer from savings operation\n */\nexport function buildTransferFromSavingsOp(\n from: string,\n to: string,\n amount: string,\n memo: string,\n requestId: number\n): Operation {\n if (!from || !to || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildTransferFromSavingsOp] Missing required parameters\");\n }\n\n return [\n \"transfer_from_savings\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n request_id: requestId,\n },\n ];\n}\n\n/**\n * Builds a cancel transfer from savings operation.\n * @param from - Account that initiated the savings withdrawal\n * @param requestId - Request ID to cancel\n * @returns Cancel transfer from savings operation\n */\nexport function buildCancelTransferFromSavingsOp(\n from: string,\n requestId: number\n): Operation {\n if (!from || requestId === undefined) {\n throw new Error(\"[SDK][buildCancelTransferFromSavingsOp] Missing required parameters\");\n }\n\n return [\n \"cancel_transfer_from_savings\",\n {\n from,\n request_id: requestId,\n },\n ];\n}\n\n/**\n * Builds operations to claim savings interest.\n * Creates a transfer_from_savings and immediately cancels it to claim interest.\n * @param from - Account claiming interest\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"0.001 HIVE\")\n * @param memo - Transfer memo\n * @param requestId - Unique request ID\n * @returns Array of operations [transfer_from_savings, cancel_transfer_from_savings]\n */\nexport function buildClaimInterestOps(\n from: string,\n to: string,\n amount: string,\n memo: string,\n requestId: number\n): Operation[] {\n if (!from || !to || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildClaimInterestOps] Missing required parameters\");\n }\n\n return [\n buildTransferFromSavingsOp(from, to, amount, memo, requestId),\n buildCancelTransferFromSavingsOp(from, requestId),\n ];\n}\n\n/**\n * Builds a transfer to vesting operation (power up).\n * @param from - Account sending HIVE\n * @param to - Account receiving Hive Power\n * @param amount - Amount with HIVE symbol (e.g., \"1.000 HIVE\")\n * @returns Transfer to vesting operation\n */\nexport function buildTransferToVestingOp(\n from: string,\n to: string,\n amount: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferToVestingOp] Missing required parameters\");\n }\n\n return [\n \"transfer_to_vesting\",\n {\n from,\n to,\n amount,\n },\n ];\n}\n\n/**\n * Builds a withdraw vesting operation (power down).\n * @param account - Account withdrawing vesting\n * @param vestingShares - Amount of VESTS to withdraw (e.g., \"1.000000 VESTS\")\n * @returns Withdraw vesting operation\n */\nexport function buildWithdrawVestingOp(\n account: string,\n vestingShares: string\n): Operation {\n if (!account || !vestingShares) {\n throw new Error(\"[SDK][buildWithdrawVestingOp] Missing required parameters\");\n }\n\n return [\n \"withdraw_vesting\",\n {\n account,\n vesting_shares: vestingShares,\n },\n ];\n}\n\n/**\n * Builds a delegate vesting shares operation (HP delegation).\n * @param delegator - Account delegating HP\n * @param delegatee - Account receiving HP delegation\n * @param vestingShares - Amount of VESTS to delegate (e.g., \"1000.000000 VESTS\")\n * @returns Delegate vesting shares operation\n */\nexport function buildDelegateVestingSharesOp(\n delegator: string,\n delegatee: string,\n vestingShares: string\n): Operation {\n if (!delegator || !delegatee || !vestingShares) {\n throw new Error(\"[SDK][buildDelegateVestingSharesOp] Missing required parameters\");\n }\n\n return [\n \"delegate_vesting_shares\",\n {\n delegator,\n delegatee,\n vesting_shares: vestingShares,\n },\n ];\n}\n\n/**\n * Builds a set withdraw vesting route operation.\n * @param fromAccount - Account withdrawing vesting\n * @param toAccount - Account receiving withdrawn vesting\n * @param percent - Percentage to route (0-10000, where 10000 = 100%)\n * @param autoVest - Auto convert to vesting\n * @returns Set withdraw vesting route operation\n */\nexport function buildSetWithdrawVestingRouteOp(\n fromAccount: string,\n toAccount: string,\n percent: number,\n autoVest: boolean\n): Operation {\n if (!fromAccount || !toAccount || percent === undefined) {\n throw new Error(\"[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters\");\n }\n if (percent < 0 || percent > 10000) {\n throw new Error(\"[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000\");\n }\n\n return [\n \"set_withdraw_vesting_route\",\n {\n from_account: fromAccount,\n to_account: toAccount,\n percent,\n auto_vest: autoVest,\n },\n ];\n}\n\n/**\n * Builds a convert operation (HBD to HIVE).\n * @param owner - Account converting HBD\n * @param amount - Amount of HBD to convert (e.g., \"1.000 HBD\")\n * @param requestId - Unique request ID (use timestamp)\n * @returns Convert operation\n */\nexport function buildConvertOp(\n owner: string,\n amount: string,\n requestId: number\n): Operation {\n if (!owner || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildConvertOp] Missing required parameters\");\n }\n\n return [\n \"convert\",\n {\n owner,\n amount,\n requestid: requestId,\n },\n ];\n}\n\n/**\n * Builds a collateralized convert operation (HIVE to HBD via collateral).\n * @param owner - Account converting HIVE\n * @param amount - Amount of HIVE to convert (e.g., \"1.000 HIVE\")\n * @param requestId - Unique request ID (use timestamp)\n * @returns Collateralized convert operation\n */\nexport function buildCollateralizedConvertOp(\n owner: string,\n amount: string,\n requestId: number\n): Operation {\n if (!owner || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildCollateralizedConvertOp] Missing required parameters\");\n }\n\n return [\n \"collateralized_convert\",\n {\n owner,\n amount,\n requestid: requestId,\n },\n ];\n}\n\n/**\n * Builds a Hive Engine custom_json operation.\n * @param from - Account performing the operation\n * @param contractAction - Engine contract action (e.g., \"transfer\", \"stake\")\n * @param contractPayload - Payload for the contract action\n * @param contractName - Engine contract name (defaults to \"tokens\")\n * @returns Custom JSON operation\n */\nexport function buildEngineOp(\n from: string,\n contractAction: string,\n contractPayload: Record,\n contractName = \"tokens\"\n): Operation {\n return [\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [from],\n required_posting_auths: [],\n json: JSON.stringify({ contractName, contractAction, contractPayload }),\n }];\n}\n\n/**\n * Builds a scot_claim_token operation (posting authority).\n * @param account - Account claiming rewards\n * @param tokens - Array of token symbols to claim\n * @returns Custom JSON operation\n */\nexport function buildEngineClaimOp(\n account: string,\n tokens: string[]\n): Operation {\n return [\"custom_json\", {\n id: \"scot_claim_token\",\n required_auths: [],\n required_posting_auths: [account],\n json: JSON.stringify(tokens.map((symbol) => ({ symbol }))),\n }];\n}\n\n/**\n * Builds a delegate RC operation (custom_json).\n * @param from - Account delegating RC\n * @param delegatees - Single delegatee or comma-separated list\n * @param maxRc - Maximum RC to delegate (in mana units)\n * @returns Custom JSON operation for RC delegation\n */\nexport function buildDelegateRcOp(\n from: string,\n delegatees: string,\n maxRc: string | number\n): Operation {\n if (!from || !delegatees || maxRc === undefined) {\n throw new Error(\"[SDK][buildDelegateRcOp] Missing required parameters\");\n }\n\n const delegateeArray = delegatees.includes(\",\")\n ? delegatees.split(\",\").map((d) => d.trim())\n : [delegatees];\n\n return [\n \"custom_json\",\n {\n id: \"rc\",\n json: JSON.stringify([\n \"delegate_rc\",\n {\n from,\n delegatees: delegateeArray,\n max_rc: maxRc,\n },\n ]),\n required_auths: [],\n required_posting_auths: [from],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Social Operations\n * Operations for following, muting, and managing social relationships\n */\n\n/**\n * Builds a follow operation (custom_json).\n * @param follower - Account following\n * @param following - Account to follow\n * @returns Custom JSON operation for follow\n */\nexport function buildFollowOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildFollowOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [\"blog\"],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an unfollow operation (custom_json).\n * @param follower - Account unfollowing\n * @param following - Account to unfollow\n * @returns Custom JSON operation for unfollow\n */\nexport function buildUnfollowOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildUnfollowOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an ignore/mute operation (custom_json).\n * @param follower - Account ignoring\n * @param following - Account to ignore\n * @returns Custom JSON operation for ignore\n */\nexport function buildIgnoreOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildIgnoreOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [\"ignore\"],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an unignore/unmute operation (custom_json).\n * @param follower - Account unignoring\n * @param following - Account to unignore\n * @returns Custom JSON operation for unignore\n */\nexport function buildUnignoreOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildUnignoreOp] Missing required parameters\");\n }\n\n return buildUnfollowOp(follower, following);\n}\n\n/**\n * Builds a Hive Notify set last read operation (custom_json).\n * @param username - Account setting last read\n * @param date - ISO date string (defaults to now)\n * @returns Array of custom JSON operations for setting last read\n */\nexport function buildSetLastReadOps(username: string, date?: string): Operation[] {\n if (!username) {\n throw new Error(\"[SDK][buildSetLastReadOps] Missing required parameters\");\n }\n\n const lastReadDate = date || new Date().toISOString().split(\".\")[0];\n\n const notifyOp: Operation = [\n \"custom_json\",\n {\n id: \"notify\",\n json: JSON.stringify([\"setLastRead\", { date: lastReadDate }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n\n const ecencyNotifyOp: Operation = [\n \"custom_json\",\n {\n id: \"ecency_notify\",\n json: JSON.stringify([\"setLastRead\", { date: lastReadDate }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n\n return [notifyOp, ecencyNotifyOp];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Governance Operations\n * Operations for witness voting, proposals, and proxy management\n */\n\n/**\n * Builds an account witness vote operation.\n * @param account - Account voting\n * @param witness - Witness account name\n * @param approve - True to approve, false to disapprove\n * @returns Account witness vote operation\n */\nexport function buildWitnessVoteOp(\n account: string,\n witness: string,\n approve: boolean\n): Operation {\n if (!account || !witness || approve === undefined) {\n throw new Error(\"[SDK][buildWitnessVoteOp] Missing required parameters\");\n }\n\n return [\n \"account_witness_vote\",\n {\n account,\n witness,\n approve,\n },\n ];\n}\n\n/**\n * Builds an account witness proxy operation.\n * @param account - Account setting proxy\n * @param proxy - Proxy account name (empty string to remove proxy)\n * @returns Account witness proxy operation\n */\nexport function buildWitnessProxyOp(account: string, proxy: string): Operation {\n if (!account || proxy === undefined) {\n throw new Error(\"[SDK][buildWitnessProxyOp] Missing required parameters\");\n }\n\n return [\n \"account_witness_proxy\",\n {\n account,\n proxy,\n },\n ];\n}\n\n/**\n * Payload for proposal creation\n */\nexport interface ProposalCreatePayload {\n receiver: string;\n subject: string;\n permlink: string;\n start: string;\n end: string;\n dailyPay: string;\n}\n\n/**\n * Builds a create proposal operation.\n * @param creator - Account creating the proposal\n * @param payload - Proposal details (must include start, end, and dailyPay)\n * @returns Create proposal operation\n */\nexport function buildProposalCreateOp(\n creator: string,\n payload: ProposalCreatePayload\n): Operation {\n // Validate required fields including start, end, and dailyPay\n if (\n !creator ||\n !payload.receiver ||\n !payload.subject ||\n !payload.permlink ||\n !payload.start ||\n !payload.end ||\n !payload.dailyPay\n ) {\n throw new Error(\"[SDK][buildProposalCreateOp] Missing required parameters\");\n }\n\n // Validate date format by attempting to parse them\n const startDate = new Date(payload.start);\n const endDate = new Date(payload.end);\n if (startDate.toString() === 'Invalid Date' || endDate.toString() === 'Invalid Date') {\n throw new Error(\n \"[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings\"\n );\n }\n\n return [\n \"create_proposal\",\n {\n creator,\n receiver: payload.receiver,\n start_date: payload.start,\n end_date: payload.end,\n daily_pay: payload.dailyPay,\n subject: payload.subject,\n permlink: payload.permlink,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds an update proposal votes operation.\n * @param voter - Account voting\n * @param proposalIds - Array of proposal IDs\n * @param approve - True to approve, false to disapprove\n * @returns Update proposal votes operation\n */\nexport function buildProposalVoteOp(\n voter: string,\n proposalIds: number[],\n approve: boolean\n): Operation {\n if (!voter || !proposalIds || proposalIds.length === 0 || approve === undefined) {\n throw new Error(\"[SDK][buildProposalVoteOp] Missing required parameters\");\n }\n\n return [\n \"update_proposal_votes\",\n {\n voter,\n proposal_ids: proposalIds,\n approve,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds a remove proposal operation.\n * @param proposalOwner - Owner of the proposal\n * @param proposalIds - Array of proposal IDs to remove\n * @returns Remove proposal operation\n */\nexport function buildRemoveProposalOp(\n proposalOwner: string,\n proposalIds: number[]\n): Operation {\n if (!proposalOwner || !proposalIds || proposalIds.length === 0) {\n throw new Error(\"[SDK][buildRemoveProposalOp] Missing required parameters\");\n }\n\n return [\n \"remove_proposal\",\n {\n proposal_owner: proposalOwner,\n proposal_ids: proposalIds,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds an update proposal operation.\n * @param proposalId - Proposal ID to update (must be a valid number, including 0)\n * @param creator - Account that created the proposal\n * @param dailyPay - New daily pay amount\n * @param subject - New subject\n * @param permlink - New permlink\n * @returns Update proposal operation\n */\nexport function buildUpdateProposalOp(\n proposalId: number,\n creator: string,\n dailyPay: string,\n subject: string,\n permlink: string\n): Operation {\n // Validate proposalId properly - check for undefined/null instead of falsy\n // This allows proposalId of 0 which is a valid proposal ID\n if (\n proposalId === undefined ||\n proposalId === null ||\n typeof proposalId !== 'number' ||\n !creator ||\n !dailyPay ||\n !subject ||\n !permlink\n ) {\n throw new Error(\"[SDK][buildUpdateProposalOp] Missing required parameters\");\n }\n\n return [\n \"update_proposal\",\n {\n proposal_id: proposalId,\n creator,\n daily_pay: dailyPay,\n subject,\n permlink,\n extensions: [],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Community Operations\n * Operations for managing Hive communities\n */\n\n/**\n * Builds a subscribe to community operation (custom_json).\n * @param username - Account subscribing\n * @param community - Community name (e.g., \"hive-123456\")\n * @returns Custom JSON operation for subscribe\n */\nexport function buildSubscribeOp(username: string, community: string): Operation {\n if (!username || !community) {\n throw new Error(\"[SDK][buildSubscribeOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"subscribe\", { community }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds an unsubscribe from community operation (custom_json).\n * @param username - Account unsubscribing\n * @param community - Community name (e.g., \"hive-123456\")\n * @returns Custom JSON operation for unsubscribe\n */\nexport function buildUnsubscribeOp(username: string, community: string): Operation {\n if (!username || !community) {\n throw new Error(\"[SDK][buildUnsubscribeOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"unsubscribe\", { community }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a set user role in community operation (custom_json).\n * @param username - Account setting the role (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Account to set role for\n * @param role - Role name (e.g., \"admin\", \"mod\", \"member\", \"guest\")\n * @returns Custom JSON operation for setRole\n */\nexport function buildSetRoleOp(\n username: string,\n community: string,\n account: string,\n role: string\n): Operation {\n if (!username || !community || !account || !role) {\n throw new Error(\n `[SDK][buildSetRoleOp] Missing required parameters: username=${username}, community=${community}, account=${account}, role=${role}`\n );\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"setRole\", { community, account, role }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Community properties for update\n */\nexport interface CommunityProps {\n title: string;\n about: string;\n lang: string;\n description: string;\n flag_text: string;\n is_nsfw: boolean;\n}\n\n/**\n * Builds an update community properties operation (custom_json).\n * @param username - Account updating (must be community admin)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param props - Properties to update\n * @returns Custom JSON operation for updateProps\n */\nexport function buildUpdateCommunityOp(\n username: string,\n community: string,\n props: CommunityProps\n): Operation {\n if (!username || !community || !props) {\n throw new Error(\"[SDK][buildUpdateCommunityOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"updateProps\", { community, props }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a pin/unpin post in community operation (custom_json).\n * @param username - Account pinning (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param pin - True to pin, false to unpin\n * @returns Custom JSON operation for pinPost/unpinPost\n */\nexport function buildPinPostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n pin: boolean\n): Operation {\n if (!username || !community || !account || !permlink || pin === undefined) {\n throw new Error(\"[SDK][buildPinPostOp] Missing required parameters\");\n }\n\n const action = pin ? \"pinPost\" : \"unpinPost\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, permlink }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a mute/unmute post in community operation (custom_json).\n * @param username - Account muting (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param notes - Mute reason/notes\n * @param mute - True to mute, false to unmute\n * @returns Custom JSON operation for mutePost/unmutePost\n */\nexport function buildMutePostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n notes: string,\n mute: boolean\n): Operation {\n if (\n !username ||\n !community ||\n !account ||\n !permlink ||\n mute === undefined\n ) {\n throw new Error(\"[SDK][buildMutePostOp] Missing required parameters\");\n }\n\n const action = mute ? \"mutePost\" : \"unmutePost\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, permlink, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a mute/unmute user in community operation (custom_json).\n * @param username - Account performing mute (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Account to mute/unmute\n * @param notes - Mute reason/notes\n * @param mute - True to mute, false to unmute\n * @returns Custom JSON operation for muteUser/unmuteUser\n */\nexport function buildMuteUserOp(\n username: string,\n community: string,\n account: string,\n notes: string,\n mute: boolean\n): Operation {\n if (!username || !community || !account || mute === undefined) {\n throw new Error(\"[SDK][buildMuteUserOp] Missing required parameters\");\n }\n\n const action = mute ? \"muteUser\" : \"unmuteUser\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a flag post in community operation (custom_json).\n * @param username - Account flagging\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param notes - Flag reason/notes\n * @returns Custom JSON operation for flagPost\n */\nexport function buildFlagPostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n notes: string\n): Operation {\n if (!username || !community || !account || !permlink) {\n throw new Error(\"[SDK][buildFlagPostOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"flagPost\", { community, account, permlink, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Market Operations\n * Operations for trading on the internal Hive market\n */\n\n/**\n * Transaction type for buy/sell operations\n */\nexport enum BuySellTransactionType {\n Buy = \"buy\",\n Sell = \"sell\",\n}\n\n/**\n * Order ID prefix for different order types\n */\nexport enum OrderIdPrefix {\n EMPTY = \"\",\n SWAP = \"9\",\n}\n\n/**\n * Builds a limit order create operation.\n * @param owner - Account creating the order\n * @param amountToSell - Amount and asset to sell\n * @param minToReceive - Minimum amount and asset to receive\n * @param fillOrKill - If true, order must be filled immediately or cancelled\n * @param expiration - Expiration date (ISO string)\n * @param orderId - Unique order ID\n * @returns Limit order create operation\n */\nexport function buildLimitOrderCreateOp(\n owner: string,\n amountToSell: string,\n minToReceive: string,\n fillOrKill: boolean,\n expiration: string,\n orderId: number\n): Operation {\n if (!owner || !amountToSell || !minToReceive || !expiration || orderId === undefined) {\n throw new Error(\"[SDK][buildLimitOrderCreateOp] Missing required parameters\");\n }\n\n return [\n \"limit_order_create\",\n {\n owner,\n orderid: orderId,\n amount_to_sell: amountToSell,\n min_to_receive: minToReceive,\n fill_or_kill: fillOrKill,\n expiration,\n },\n ];\n}\n\n/**\n * Helper to format number to 3 decimal places\n */\nfunction formatNumber(value: number, decimals: number = 3): string {\n return value.toFixed(decimals);\n}\n\n/**\n * Builds a limit order create operation with automatic formatting.\n * This is a convenience method that handles buy/sell logic and formatting.\n *\n * For Buy orders: You're buying HIVE with HBD\n * - amountToSell: HBD amount you're spending\n * - minToReceive: HIVE amount you want to receive\n *\n * For Sell orders: You're selling HIVE for HBD\n * - amountToSell: HIVE amount you're selling\n * - minToReceive: HBD amount you want to receive\n *\n * @param owner - Account creating the order\n * @param amountToSell - Amount to sell (number)\n * @param minToReceive - Minimum to receive (number)\n * @param orderType - Buy or Sell\n * @param idPrefix - Order ID prefix\n * @returns Limit order create operation\n */\nexport function buildLimitOrderCreateOpWithType(\n owner: string,\n amountToSell: number,\n minToReceive: number,\n orderType: BuySellTransactionType,\n idPrefix: OrderIdPrefix = OrderIdPrefix.EMPTY\n): Operation {\n // Validate numeric inputs\n if (\n !owner ||\n orderType === undefined ||\n !Number.isFinite(amountToSell) ||\n amountToSell <= 0 ||\n !Number.isFinite(minToReceive) ||\n minToReceive <= 0\n ) {\n throw new Error(\"[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters\");\n }\n\n // Calculate expiration (27 days from now)\n const expiration = new Date(Date.now());\n expiration.setDate(expiration.getDate() + 27);\n const expirationStr = expiration.toISOString().split(\".\")[0];\n\n // Generate order ID\n const orderId = Number(\n `${idPrefix}${Math.floor(Date.now() / 1000)\n .toString()\n .slice(2)}`\n );\n\n // Format amounts based on order type\n // Buy: Sell HBD to buy HIVE\n // Sell: Sell HIVE to buy HBD\n const formattedAmountToSell =\n orderType === BuySellTransactionType.Buy\n ? `${formatNumber(amountToSell, 3)} HBD`\n : `${formatNumber(amountToSell, 3)} HIVE`;\n\n const formattedMinToReceive =\n orderType === BuySellTransactionType.Buy\n ? `${formatNumber(minToReceive, 3)} HIVE`\n : `${formatNumber(minToReceive, 3)} HBD`;\n\n return buildLimitOrderCreateOp(\n owner,\n formattedAmountToSell,\n formattedMinToReceive,\n false,\n expirationStr,\n orderId\n );\n}\n\n/**\n * Builds a limit order cancel operation.\n * @param owner - Account cancelling the order\n * @param orderId - Order ID to cancel\n * @returns Limit order cancel operation\n */\nexport function buildLimitOrderCancelOp(owner: string, orderId: number): Operation {\n if (!owner || orderId === undefined) {\n throw new Error(\"[SDK][buildLimitOrderCancelOp] Missing required parameters\");\n }\n\n return [\n \"limit_order_cancel\",\n {\n owner,\n orderid: orderId,\n },\n ];\n}\n\n/**\n * Builds a claim reward balance operation.\n * @param account - Account claiming rewards\n * @param rewardHive - HIVE reward to claim (e.g., \"0.000 HIVE\")\n * @param rewardHbd - HBD reward to claim (e.g., \"0.000 HBD\")\n * @param rewardVests - VESTS reward to claim (e.g., \"0.000000 VESTS\")\n * @returns Claim reward balance operation\n */\nexport function buildClaimRewardBalanceOp(\n account: string,\n rewardHive: string,\n rewardHbd: string,\n rewardVests: string\n): Operation {\n if (!account || !rewardHive || !rewardHbd || !rewardVests) {\n throw new Error(\"[SDK][buildClaimRewardBalanceOp] Missing required parameters\");\n }\n\n return [\n \"claim_reward_balance\",\n {\n account,\n reward_hive: rewardHive,\n reward_hbd: rewardHbd,\n reward_vests: rewardVests,\n },\n ];\n}\n","import type { Operation, Authority } from \"../../../hive-tx\";\n\nexport type { Authority };\n\n/**\n * Account Operations\n * Operations for managing accounts, keys, and permissions\n */\n\n/**\n * Builds an account update operation.\n * @param account - Account name\n * @param owner - Owner authority (optional)\n * @param active - Active authority (optional)\n * @param posting - Posting authority (optional)\n * @param memoKey - Memo public key\n * @param jsonMetadata - Account JSON metadata\n * @returns Account update operation\n */\nexport function buildAccountUpdateOp(\n account: string,\n owner: Authority | undefined,\n active: Authority | undefined,\n posting: Authority | undefined,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !memoKey) {\n throw new Error(\"[SDK][buildAccountUpdateOp] Missing required parameters\");\n }\n\n return [\n \"account_update\",\n {\n account,\n owner,\n active,\n posting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds an account update2 operation (for posting_json_metadata).\n * @param account - Account name\n * @param jsonMetadata - Account JSON metadata (legacy, usually empty)\n * @param postingJsonMetadata - Posting JSON metadata string\n * @param extensions - Extensions array\n * @returns Account update2 operation\n */\nexport function buildAccountUpdate2Op(\n account: string,\n jsonMetadata: string,\n postingJsonMetadata: string,\n extensions: any[]\n): Operation {\n if (!account || postingJsonMetadata === undefined) {\n throw new Error(\"[SDK][buildAccountUpdate2Op] Missing required parameters\");\n }\n\n return [\n \"account_update2\",\n {\n account,\n json_metadata: jsonMetadata || \"\",\n posting_json_metadata: postingJsonMetadata,\n extensions: (extensions || []) as [],\n },\n ];\n}\n\n/**\n * Public keys for account creation\n */\nexport interface AccountKeys {\n ownerPublicKey: string;\n activePublicKey: string;\n postingPublicKey: string;\n memoPublicKey: string;\n}\n\n/**\n * Builds an account create operation.\n * @param creator - Creator account name\n * @param newAccountName - New account name\n * @param keys - Public keys for the new account\n * @param fee - Creation fee (e.g., \"3.000 HIVE\")\n * @returns Account create operation\n */\nexport function buildAccountCreateOp(\n creator: string,\n newAccountName: string,\n keys: AccountKeys,\n fee: string\n): Operation {\n if (!creator || !newAccountName || !keys || !fee) {\n throw new Error(\"[SDK][buildAccountCreateOp] Missing required parameters\");\n }\n\n const owner: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.ownerPublicKey, 1]],\n };\n\n const active: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.activePublicKey, 1]],\n };\n\n const posting: Authority = {\n weight_threshold: 1,\n account_auths: [[\"ecency.app\", 1]],\n key_auths: [[keys.postingPublicKey, 1]],\n };\n\n return [\n \"account_create\",\n {\n creator,\n new_account_name: newAccountName,\n owner,\n active,\n posting,\n memo_key: keys.memoPublicKey,\n json_metadata: \"\",\n fee,\n },\n ] satisfies Operation;\n}\n\n/**\n * Builds a create claimed account operation (using account creation tokens).\n * @param creator - Creator account name\n * @param newAccountName - New account name\n * @param keys - Public keys for the new account\n * @returns Create claimed account operation\n */\nexport function buildCreateClaimedAccountOp(\n creator: string,\n newAccountName: string,\n keys: AccountKeys\n): Operation {\n if (!creator || !newAccountName || !keys) {\n throw new Error(\"[SDK][buildCreateClaimedAccountOp] Missing required parameters\");\n }\n\n const owner: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.ownerPublicKey, 1]],\n };\n\n const active: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.activePublicKey, 1]],\n };\n\n const posting: Authority = {\n weight_threshold: 1,\n account_auths: [[\"ecency.app\", 1]],\n key_auths: [[keys.postingPublicKey, 1]],\n };\n\n return [\n \"create_claimed_account\",\n {\n creator,\n new_account_name: newAccountName,\n owner,\n active,\n posting,\n memo_key: keys.memoPublicKey,\n json_metadata: \"\",\n extensions: [] as [],\n },\n ];\n}\n\n/**\n * Builds a claim account operation.\n * @param creator - Account claiming the token\n * @param fee - Fee for claiming (usually \"0.000 HIVE\" for RC-based claims)\n * @returns Claim account operation\n */\nexport function buildClaimAccountOp(creator: string, fee: string): Operation {\n if (!creator || !fee) {\n throw new Error(\"[SDK][buildClaimAccountOp] Missing required parameters\");\n }\n\n return [\n \"claim_account\",\n {\n creator,\n fee,\n extensions: [] as [],\n },\n ];\n}\n\n/**\n * Builds an operation to grant posting permission to another account.\n * Helper that modifies posting authority to add an account.\n * @param account - Account granting permission\n * @param currentPosting - Current posting authority\n * @param grantedAccount - Account to grant permission to\n * @param weightThreshold - Weight threshold of the granted account\n * @param memoKey - Memo public key (required by Hive blockchain)\n * @param jsonMetadata - Account JSON metadata (required by Hive blockchain)\n * @returns Account update operation with modified posting authority\n */\nexport function buildGrantPostingPermissionOp(\n account: string,\n currentPosting: Authority,\n grantedAccount: string,\n weightThreshold: number,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !currentPosting || !grantedAccount || !memoKey) {\n throw new Error(\"[SDK][buildGrantPostingPermissionOp] Missing required parameters\");\n }\n\n // Find existing account or create new entry to prevent duplicates\n const existingIndex = currentPosting.account_auths.findIndex(\n ([acc]) => acc === grantedAccount\n );\n\n const newAccountAuths = [...currentPosting.account_auths];\n if (existingIndex >= 0) {\n // Update existing entry with new weight\n newAccountAuths[existingIndex] = [grantedAccount, weightThreshold];\n } else {\n // Add new entry\n newAccountAuths.push([grantedAccount, weightThreshold]);\n }\n\n const newPosting: Authority = {\n ...currentPosting,\n account_auths: newAccountAuths,\n };\n\n // Sort account_auths alphabetically for consistency\n newPosting.account_auths.sort((a, b) => (a[0] > b[0] ? 1 : -1));\n\n return [\n \"account_update\",\n {\n account,\n posting: newPosting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds an operation to revoke posting permission from an account.\n * Helper that modifies posting authority to remove an account.\n * @param account - Account revoking permission\n * @param currentPosting - Current posting authority\n * @param revokedAccount - Account to revoke permission from\n * @param memoKey - Memo public key (required by Hive blockchain)\n * @param jsonMetadata - Account JSON metadata (required by Hive blockchain)\n * @returns Account update operation with modified posting authority\n */\nexport function buildRevokePostingPermissionOp(\n account: string,\n currentPosting: Authority,\n revokedAccount: string,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !currentPosting || !revokedAccount || !memoKey) {\n throw new Error(\"[SDK][buildRevokePostingPermissionOp] Missing required parameters\");\n }\n\n const newPosting: Authority = {\n ...currentPosting,\n account_auths: currentPosting.account_auths.filter(\n ([acc]) => acc !== revokedAccount\n ),\n };\n\n return [\n \"account_update\",\n {\n account,\n posting: newPosting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds a change recovery account operation.\n * @param accountToRecover - Account to change recovery account for\n * @param newRecoveryAccount - New recovery account name\n * @param extensions - Extensions array\n * @returns Change recovery account operation\n */\nexport function buildChangeRecoveryAccountOp(\n accountToRecover: string,\n newRecoveryAccount: string,\n extensions: any[] = []\n): Operation {\n if (!accountToRecover || !newRecoveryAccount) {\n throw new Error(\"[SDK][buildChangeRecoveryAccountOp] Missing required parameters\");\n }\n\n return [\n \"change_recovery_account\",\n {\n account_to_recover: accountToRecover,\n new_recovery_account: newRecoveryAccount,\n extensions: extensions as [],\n },\n ];\n}\n\n/**\n * Builds a request account recovery operation.\n * @param recoveryAccount - Recovery account performing the recovery\n * @param accountToRecover - Account to recover\n * @param newOwnerAuthority - New owner authority\n * @param extensions - Extensions array\n * @returns Request account recovery operation\n */\nexport function buildRequestAccountRecoveryOp(\n recoveryAccount: string,\n accountToRecover: string,\n newOwnerAuthority: Authority,\n extensions: any[] = []\n): Operation {\n if (!recoveryAccount || !accountToRecover || !newOwnerAuthority) {\n throw new Error(\"[SDK][buildRequestAccountRecoveryOp] Missing required parameters\");\n }\n\n return [\n \"request_account_recovery\",\n {\n recovery_account: recoveryAccount,\n account_to_recover: accountToRecover,\n new_owner_authority: newOwnerAuthority,\n extensions: extensions as [],\n },\n ];\n}\n\n/**\n * Builds a recover account operation.\n * @param accountToRecover - Account to recover\n * @param newOwnerAuthority - New owner authority\n * @param recentOwnerAuthority - Recent owner authority (for proof)\n * @param extensions - Extensions array\n * @returns Recover account operation\n */\nexport function buildRecoverAccountOp(\n accountToRecover: string,\n newOwnerAuthority: Authority,\n recentOwnerAuthority: Authority,\n extensions: any[] = []\n): Operation {\n if (!accountToRecover || !newOwnerAuthority || !recentOwnerAuthority) {\n throw new Error(\"[SDK][buildRecoverAccountOp] Missing required parameters\");\n }\n\n return [\n \"recover_account\",\n {\n account_to_recover: accountToRecover,\n new_owner_authority: newOwnerAuthority,\n recent_owner_authority: recentOwnerAuthority,\n extensions: extensions as [],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Ecency-Specific Operations\n * Custom operations for Ecency platform features (Points, Boost, Promote, etc.)\n */\n\n/**\n * Builds an Ecency Boost Plus subscription operation (custom_json).\n * @param user - User account\n * @param account - Account to subscribe\n * @param duration - Subscription duration in days (must be a valid finite number)\n * @returns Custom JSON operation for boost plus\n */\nexport function buildBoostPlusOp(\n user: string,\n account: string,\n duration: number\n): Operation {\n // Validate required parameters and ensure duration is a finite number (reject NaN, Infinity)\n if (!user || !account || !Number.isFinite(duration)) {\n throw new Error(\"[SDK][buildBoostPlusOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_boost_plus\",\n json: JSON.stringify({\n user,\n account,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds an Ecency RC top-up operation (custom_json): a short-term, RC-only\n * delegation to the user's OWN account, paid for with Ecency Points. Distinct\n * from Boost Plus (which delegates Hive Power). The RC amount is fixed\n * server-side, so the user only chooses a duration. Signed with active\n * authority because it spends Points. The actual on-chain `delegate_rc` is\n * broadcast by the Ecency relay account, not here.\n * @param user - User account (payer and recipient of the RC)\n * @param duration - Delegation duration in days (must be a valid finite number)\n * @returns Custom JSON operation for the RC top-up\n */\nexport function buildRcDelegationOp(user: string, duration: number): Operation {\n if (!user || !Number.isInteger(duration) || duration <= 0) {\n throw new Error(\"[SDK][buildRcDelegationOp] Missing or invalid parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_rc_delegation\",\n json: JSON.stringify({\n user,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds an Ecency promote operation (custom_json).\n * @param user - User account\n * @param author - Post author\n * @param permlink - Post permlink\n * @param duration - Promotion duration in days (must be a valid finite number)\n * @returns Custom JSON operation for promote\n */\nexport function buildPromoteOp(\n user: string,\n author: string,\n permlink: string,\n duration: number\n): Operation {\n // Validate required parameters and ensure duration is a finite number (reject NaN, Infinity)\n if (!user || !author || !permlink || !Number.isFinite(duration)) {\n throw new Error(\"[SDK][buildPromoteOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_promote\",\n json: JSON.stringify({\n user,\n author,\n permlink,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\nconst CURATION_REASONS = [\"quality\", \"underrated\", \"newcomer\", \"other\"] as const;\ntype CurationRecommendReason = (typeof CURATION_REASONS)[number];\n\n/**\n * Builds a curation recommendation operation (custom_json, posting authority).\n * The desk indexes `ecency_curation` ops from the chain; there is no write route.\n * @param recommender - Account recommending the post (signs with posting)\n * @param author - Post author\n * @param permlink - Post permlink\n * @param reason - One of quality, underrated, newcomer, other (defaults to quality)\n * @returns Custom JSON operation with id \"ecency_curation\"\n */\nexport function buildCurationRecommendOp(\n recommender: string,\n author: string,\n permlink: string,\n reason: CurationRecommendReason = \"quality\"\n): Operation {\n if (!recommender || !author || !permlink) {\n throw new Error(\"[SDK][buildCurationRecommendOp] Missing required parameters\");\n }\n if (!CURATION_REASONS.includes(reason)) {\n throw new Error(\"[SDK][buildCurationRecommendOp] Unknown reason\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_curation\",\n json: JSON.stringify({\n v: 1,\n op: \"recommend\",\n author,\n permlink,\n reason,\n }),\n required_auths: [],\n required_posting_auths: [recommender],\n },\n ];\n}\n\n/**\n * Builds a curation recommendation withdrawal (custom_json, posting authority).\n * @param recommender - Account withdrawing its recommendation\n * @param author - Post author\n * @param permlink - Post permlink\n * @returns Custom JSON operation with id \"ecency_curation\" and op \"unrecommend\"\n */\nexport function buildCurationUnrecommendOp(\n recommender: string,\n author: string,\n permlink: string\n): Operation {\n if (!recommender || !author || !permlink) {\n throw new Error(\"[SDK][buildCurationUnrecommendOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_curation\",\n json: JSON.stringify({\n v: 1,\n op: \"unrecommend\",\n author,\n permlink,\n }),\n required_auths: [],\n required_posting_auths: [recommender],\n },\n ];\n}\n\n/**\n * Builds an Ecency point transfer operation (custom_json).\n * @param sender - Sender account\n * @param receiver - Receiver account\n * @param amount - Amount to transfer\n * @param memo - Transfer memo\n * @returns Custom JSON operation for point transfer\n */\nexport function buildPointTransferOp(\n sender: string,\n receiver: string,\n amount: string,\n memo: string\n): Operation {\n if (!sender || !receiver || !amount) {\n throw new Error(\"[SDK][buildPointTransferOp] Missing required parameters\");\n }\n\n // Normalize \"POINTS\" to \"POINT\" — backend expects singular form\n const normalizedAmount = amount.replace(/POINTS\\b/, \"POINT\");\n\n return [\n \"custom_json\",\n {\n id: \"ecency_point_transfer\",\n json: JSON.stringify({\n sender,\n receiver,\n amount: normalizedAmount,\n memo: memo || \"\",\n }),\n required_auths: [sender],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds multiple Ecency point transfer operations for multiple recipients.\n * @param sender - Sender account\n * @param destinations - Comma or space separated list of recipients\n * @param amount - Amount to transfer\n * @param memo - Transfer memo\n * @returns Array of custom JSON operations for point transfers\n */\nexport function buildMultiPointTransferOps(\n sender: string,\n destinations: string,\n amount: string,\n memo: string\n): Operation[] {\n if (!sender || !destinations || !amount) {\n throw new Error(\"[SDK][buildMultiPointTransferOps] Missing required parameters\");\n }\n\n // Split the destination input into an array of usernames\n const destArray = destinations\n .trim()\n .split(/[\\s,]+/)\n .filter(Boolean);\n\n // Validate parsed destinations\n if (destArray.length === 0) {\n throw new Error(\"[SDK][buildMultiPointTransferOps] Missing valid destinations\");\n }\n\n // Create a point transfer operation for each destination\n return destArray.map((dest) =>\n buildPointTransferOp(sender, dest.trim(), amount, memo)\n );\n}\n\n/**\n * Builds an Ecency community rewards registration operation (custom_json).\n * @param name - Account name to register\n * @returns Custom JSON operation for community registration\n */\nexport function buildCommunityRegistrationOp(name: string): Operation {\n if (!name) {\n throw new Error(\"[SDK][buildCommunityRegistrationOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_registration\",\n json: JSON.stringify({\n name,\n }),\n required_auths: [name],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds a generic active authority custom_json operation.\n * Used for various Ecency operations that require active authority.\n * @param username - Account performing the operation\n * @param operationId - Custom JSON operation ID\n * @param json - JSON payload\n * @returns Custom JSON operation with active authority\n */\nexport function buildActiveCustomJsonOp(\n username: string,\n operationId: string,\n json: Record\n): Operation {\n if (!username || !operationId || !json) {\n throw new Error(\"[SDK][buildActiveCustomJsonOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: operationId,\n json: JSON.stringify(json),\n required_auths: [username],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds a generic posting authority custom_json operation.\n * Used for various operations that require posting authority.\n * @param username - Account performing the operation\n * @param operationId - Custom JSON operation ID\n * @param json - JSON payload\n * @returns Custom JSON operation with posting authority\n */\nexport function buildPostingCustomJsonOp(\n username: string,\n operationId: string,\n json: Record | any[]\n): Operation {\n if (!username || !operationId || !json) {\n throw new Error(\"[SDK][buildPostingCustomJsonOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: operationId,\n json: JSON.stringify(json),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildFollowOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for following an account.\n */\nexport interface FollowPayload {\n /** Account to follow */\n following: string;\n}\n\n/**\n * React Query mutation hook for following an account.\n *\n * This mutation broadcasts a follow operation to the Hive blockchain,\n * adding the target account to the follower's \"blog\" follow list.\n *\n * @param username - The username of the follower (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates relationship cache to show updated follow status\n * - Invalidates account cache to refetch updated follower/following counts\n *\n * @example\n * ```typescript\n * const followMutation = useFollow(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Follow an account\n * followMutation.mutate({\n * following: 'alice'\n * });\n * ```\n */\nexport function useFollow(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"follow\"],\n username,\n ({ following }) => [\n buildFollowOp(username!, following)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.relations(username!, variables.following),\n QueryKeys.accounts.full(variables.following),\n QueryKeys.accounts.followCount(variables.following),\n QueryKeys.accounts.followCount(username!)\n ]);\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUnfollowOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for unfollowing an account.\n */\nexport interface UnfollowPayload {\n /** Account to unfollow */\n following: string;\n}\n\n/**\n * React Query mutation hook for unfollowing an account.\n *\n * This mutation broadcasts an unfollow operation to the Hive blockchain,\n * removing the target account from the follower's follow list.\n *\n * @param username - The username of the follower (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates relationship cache to show updated follow status\n * - Invalidates account cache to refetch updated follower/following counts\n *\n * @example\n * ```typescript\n * const unfollowMutation = useUnfollow(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Unfollow an account\n * unfollowMutation.mutate({\n * following: 'alice'\n * });\n * ```\n */\nexport function useUnfollow(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"unfollow\"],\n username,\n ({ following }) => [\n buildUnfollowOp(username!, following)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.relations(username!, variables.following),\n QueryKeys.accounts.full(variables.following),\n QueryKeys.accounts.followCount(variables.following),\n QueryKeys.accounts.followCount(username!)\n ]);\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\ninterface Payload {\n author: string;\n permlink: string;\n}\n\nexport function useBookmarkAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"bookmarks\", \"add\", username],\n mutationFn: async ({ author, permlink }: Payload) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Bookmarks] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks-add\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: () => {\n onSuccess();\n getQueryClient().invalidateQueries({\n queryKey: [\"accounts\", \"bookmarks\", username],\n });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useBookmarkDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"bookmarks\", \"delete\", username],\n mutationFn: async (bookmarkId: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Bookmarks] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks-delete\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n id: bookmarkId,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: () => {\n onSuccess();\n getQueryClient().invalidateQueries({\n queryKey: [\"accounts\", \"bookmarks\", username],\n });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useAccountFavoriteAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorites\", \"add\", username],\n mutationFn: async (account: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Favorites] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-add\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n account,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: (_data, account) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favorites(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoritesInfinite(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavorite(username!, account) });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation, InfiniteData } from \"@tanstack/react-query\";\nimport { AccountFavorite } from \"../../types\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useAccountFavoriteDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorites\", \"delete\", username],\n mutationFn: async (account: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Favorites] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-delete\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n account,\n code,\n }),\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to delete favorite: ${response.status}`);\n }\n return response.json();\n },\n onMutate: async (account: string) => {\n if (!username) {\n return;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.accounts.favorites(username);\n const infinitePrefix = QueryKeys.accounts.favoritesInfinite(username);\n const checkKey = QueryKeys.accounts.checkFavorite(username, account);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n qc.cancelQueries({ queryKey: checkKey }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((f) => f.account !== account)\n );\n }\n\n const previousCheck = qc.getQueryData(checkKey);\n qc.setQueryData(checkKey, false);\n\n const infiniteQueries = qc.getQueriesData>>({\n queryKey: infinitePrefix,\n });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((f) => f.account !== account),\n })),\n });\n }\n }\n\n return { previousList, previousInfinite, previousCheck };\n },\n onSuccess: (_data, account) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favorites(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoritesInfinite(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavorite(username!, account) });\n },\n onError: (err, account, context) => {\n const qc = getQueryClient();\n if (context?.previousList) {\n qc.setQueryData(QueryKeys.accounts.favorites(username), context.previousList);\n }\n if (context?.previousInfinite) {\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n }\n if (context?.previousCheck !== undefined) {\n qc.setQueryData(\n QueryKeys.accounts.checkFavorite(username!, account),\n context.previousCheck\n );\n }\n onError(err);\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { AccountFavoriteTag } from \"../../types\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\n\nasync function favoriteTagRequest(\n route: \"favorite-tags-add\" | \"favorite-tags-delete\",\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n if (!username || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n // Normalised before it leaves the client, so the request, the cache key and the\n // stored row all agree on the spelling.\n const normalized = normalizeTag(tag);\n if (normalized === null) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – invalid tag\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/\" + route, {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n tag: normalized,\n code,\n }),\n });\n if (!response.ok) {\n throw new Error(`Failed to ${route === \"favorite-tags-add\" ? \"add\" : \"delete\"} favorite tag: ${response.status}`);\n }\n return (await response.json()) as AccountFavoriteTag[];\n}\n\n/** Follow a hashtag. Resolves to the updated list, newest first. */\nexport function addFavoriteTagRequest(\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n return favoriteTagRequest(\"favorite-tags-add\", username, code, tag);\n}\n\n/** Unfollow a hashtag. Resolves to the updated list, newest first. */\nexport function deleteFavoriteTagRequest(\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n return favoriteTagRequest(\"favorite-tags-delete\", username, code, tag);\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\nimport { addFavoriteTagRequest } from \"./requests\";\n\nexport function useFavoriteTagAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorite-tags\", \"add\", username],\n mutationFn: (tag: string) => addFavoriteTagRequest(username, code, tag),\n onSuccess: (_data, tag) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTags(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTagsInfinite(username) });\n qc.invalidateQueries({\n queryKey: QueryKeys.accounts.checkFavoriteTag(username!, normalizeTag(tag) ?? tag),\n });\n },\n onError,\n });\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { WrappedResponse } from \"@/modules/core/types\";\nimport { InfiniteData, QueryKey, useMutation, UseMutationOptions } from \"@tanstack/react-query\";\nimport { AccountFavoriteTag } from \"../../types\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\nimport { deleteFavoriteTagRequest } from \"./requests\";\n\ntype InfinitePages = InfiniteData>;\n\ninterface DeleteContext {\n normalized: string;\n previousList: AccountFavoriteTag[] | undefined;\n previousInfinite: Map;\n /** `undefined` when the check query had no cached value before the mutation. */\n previousCheck: boolean | undefined;\n}\n\n/**\n * The mutation options behind useFavoriteTagDelete, exported so the cache\n * behaviour can be exercised without rendering a hook.\n *\n * The tag is removed from the list, the infinite pages and the check entry\n * optimistically. On failure the snapshots are put back for an instant revert, and\n * then every touched key is invalidated anyway: a snapshot taken while another\n * delete was in flight still holds that other tag, so the restore alone would\n * resurrect it. The refetch is what makes the cache converge.\n */\nexport function favoriteTagDeleteMutationOptions(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n): UseMutationOptions {\n const invalidateAll = (normalized: string | undefined) => {\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTags(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTagsInfinite(username) });\n if (normalized) {\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavoriteTag(username!, normalized) });\n }\n };\n\n return {\n mutationKey: [\"accounts\", \"favorite-tags\", \"delete\", username],\n mutationFn: (tag: string) => deleteFavoriteTagRequest(username, code, tag),\n onMutate: async (tag: string) => {\n const normalized = normalizeTag(tag);\n if (!username || normalized === null) {\n return undefined;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.accounts.favoriteTags(username);\n const infinitePrefix = QueryKeys.accounts.favoriteTagsInfinite(username);\n const checkKey = QueryKeys.accounts.checkFavoriteTag(username, normalized);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n qc.cancelQueries({ queryKey: checkKey }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((f) => f.tag !== normalized)\n );\n }\n\n const previousCheck = qc.getQueryData(checkKey);\n qc.setQueryData(checkKey, false);\n\n const infiniteQueries = qc.getQueriesData({ queryKey: infinitePrefix });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((f) => f.tag !== normalized),\n })),\n });\n }\n }\n\n return { normalized, previousList, previousInfinite, previousCheck };\n },\n onSuccess: (_data, tag) => {\n onSuccess();\n invalidateAll(normalizeTag(tag) ?? undefined);\n },\n onError: (err, _tag, context) => {\n const qc = getQueryClient();\n if (context) {\n if (context.previousList) {\n qc.setQueryData(QueryKeys.accounts.favoriteTags(username), context.previousList);\n }\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n const checkKey = QueryKeys.accounts.checkFavoriteTag(username!, context.normalized);\n if (context.previousCheck !== undefined) {\n qc.setQueryData(checkKey, context.previousCheck);\n } else {\n // Nothing was cached before, so the optimistic `false` must not outlive\n // the failure as if it were an answer from the server.\n qc.removeQueries({ queryKey: checkKey, exact: true });\n }\n }\n invalidateAll(context?.normalized);\n onError(err);\n },\n };\n}\n\nexport function useFavoriteTagDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation(favoriteTagDeleteMutationOptions(username, code, onSuccess, onError));\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport type { Authority } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\nexport interface Keys {\n owner: PrivateKey;\n active: PrivateKey;\n posting: PrivateKey;\n memo_key: PrivateKey;\n}\n\ninterface Payload {\n keepCurrent?: boolean;\n currentKey: PrivateKey;\n keys: Keys[];\n keysToRevoke?: string[]; // Deprecated: will be treated as revoking from all authorities\n keysToRevokeByAuthority?: Partial>; // Authority-specific revocation\n}\n\nexport function dedupeAndSortKeyAuths(\n existing: Authority[\"key_auths\"],\n additions: [string, number][]\n): Authority[\"key_auths\"] {\n const merged = new Map();\n\n existing.forEach(([key, weight]) => {\n merged.set(key.toString(), weight);\n });\n\n additions.forEach(([key, weight]) => {\n merged.set(key.toString(), weight);\n });\n\n return Array.from(merged.entries())\n .sort(([keyA], [keyB]) => keyA.localeCompare(keyB))\n .map(([key, weight]) => [key, weight] as [string, number]);\n}\n\ntype UpdateKeyAuthsOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountUpdateKeyAuths(\n username: string,\n options?: UpdateKeyAuthsOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"keys-update\", username],\n mutationFn: async ({\n keys,\n keepCurrent = false,\n currentKey,\n keysToRevoke = [],\n keysToRevokeByAuthority = {}\n }: Payload) => {\n if (keys.length === 0) {\n throw new Error(\n \"[SDK][Update password] – no new keys provided\"\n );\n }\n\n if (!accountData) {\n throw new Error(\n \"[SDK][Update password] – cannot update keys for anon user\"\n );\n }\n\n const prepareAuth = (keyName: keyof Keys) => {\n const auth: Authority = JSON.parse(JSON.stringify(accountData[keyName]));\n\n // Get keys to revoke for this specific authority\n const keysToRevokeForAuthority = keysToRevokeByAuthority[keyName] || [];\n // Fallback to global keysToRevoke for backwards compatibility\n const allKeysToRevoke = [\n ...keysToRevokeForAuthority,\n ...(keysToRevokeByAuthority[keyName] === undefined ? keysToRevoke : [])\n ];\n\n // Filter out keys to revoke from existing keys (authority-specific)\n const existingKeys = keepCurrent\n ? auth.key_auths.filter(([key]) => !allKeysToRevoke.includes(key.toString()))\n : [];\n\n auth.key_auths = dedupeAndSortKeyAuths(\n existingKeys,\n keys.map(\n (values, i) =>\n [values[keyName].createPublic().toString(), i + 1] as [\n string,\n number,\n ]\n )\n );\n\n return auth;\n };\n\n return broadcastOperations(\n [[\"account_update\", {\n account: username,\n json_metadata: accountData.json_metadata,\n owner: prepareAuth(\"owner\"),\n active: prepareAuth(\"active\"),\n posting: prepareAuth(\"posting\"),\n // Always use new memo key when adding new keys\n memo_key: keys[0].memo_key.createPublic().toString(),\n }]],\n currentKey\n );\n },\n ...options,\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { useAccountUpdateKeyAuths } from \"./use-account-update-key-auths\";\n\ninterface Payload {\n newPassword: string;\n currentPassword: string;\n keepCurrent?: boolean;\n}\n\n/**\n * Only native Hive and custom passwords could be updated here\n * Seed based password cannot be updated here, it will be in an account always for now\n */\ntype UpdatePasswordOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountUpdatePassword(\n username: string,\n options?: UpdatePasswordOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n const { mutateAsync: updateKeys } = useAccountUpdateKeyAuths(username);\n\n return useMutation({\n mutationKey: [\"accounts\", \"password-update\", username],\n mutationFn: async ({\n newPassword,\n currentPassword,\n keepCurrent,\n }: Payload) => {\n if (!accountData) {\n throw new Error(\n \"[SDK][Update password] – cannot update password for anon user\"\n );\n }\n const currentKey = PrivateKey.fromLogin(\n username,\n currentPassword,\n \"owner\"\n );\n\n return updateKeys({\n currentKey,\n keepCurrent,\n keys: [\n {\n owner: PrivateKey.fromLogin(username, newPassword, \"owner\"),\n active: PrivateKey.fromLogin(username, newPassword, \"active\"),\n posting: PrivateKey.fromLogin(username, newPassword, \"posting\"),\n memo_key: PrivateKey.fromLogin(username, newPassword, \"memo\"),\n },\n ],\n });\n },\n ...options,\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n useQueryClient,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { FullAccount } from \"../types\";\nimport hs from \"hivesigner\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ntype SignType = \"key\" | \"keychain\" | \"hivesigner\";\n\ninterface CommonPayload {\n accountName: string;\n type: SignType;\n key?: PrivateKey;\n}\n\ntype RevokePostingOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n> & {\n hsCallbackUrl?: string;\n};\n\nexport function useAccountRevokePosting(\n username: string | undefined,\n options: RevokePostingOptions,\n auth?: AuthContextV2\n) {\n const queryClient = useQueryClient();\n\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"revoke-posting\", data?.name],\n mutationFn: async ({ accountName, type, key }: CommonPayload) => {\n if (!data) {\n throw new Error(\n \"[SDK][Accounts] – cannot revoke posting for anonymous user\"\n );\n }\n\n const posting = JSON.parse(JSON.stringify(data.posting)) as FullAccount[\"posting\"];\n\n posting.account_auths = posting.account_auths.filter(\n ([account]) => account !== accountName\n );\n\n const operationBody = {\n account: data.name,\n posting,\n memo_key: data.memo_key,\n json_metadata: data.json_metadata,\n };\n\n if (type === \"key\" && key) {\n return broadcastOperations([[\"account_update\", operationBody]], key);\n } else if (type === \"keychain\") {\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Accounts] – missing keychain broadcaster\");\n }\n return auth.adapter.broadcastWithKeychain(\n data.name,\n [[\"account_update\", operationBody]],\n \"active\"\n );\n } else {\n if (!options.hsCallbackUrl && process.env.NODE_ENV === \"development\") {\n console.warn(\"[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing.\");\n }\n return hs.sendOperation(\n [\"account_update\", operationBody],\n options.hsCallbackUrl ? { callback: options.hsCallbackUrl } : {},\n () => {}\n );\n }\n },\n onError: options.onError,\n onSuccess: (resp, payload, ctx) => {\n (options.onSuccess as\n | ((data: unknown, variables: CommonPayload, context: unknown) => unknown)\n | undefined)?.(resp, payload, ctx);\n queryClient.setQueryData(\n getAccountFullQueryOptions(username).queryKey,\n (data) =>\n ({\n ...data,\n posting: {\n ...data?.posting,\n account_auths:\n data?.posting?.account_auths?.filter(\n ([account]) => account !== payload.accountName\n ) ?? [],\n },\n }) as FullAccount\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ntype SignType = \"key\" | \"keychain\" | \"hivesigner\" | \"ecency\";\n\ninterface CommonPayload {\n accountName: string;\n type: SignType;\n key?: PrivateKey;\n email?: string;\n}\n\ntype UpdateRecoveryOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n> & {\n hsCallbackUrl?: string;\n};\n\nexport function useAccountUpdateRecovery(\n username: string | undefined,\n code: string | undefined,\n options: UpdateRecoveryOptions,\n auth?: AuthContextV2\n) {\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"recovery\", data?.name],\n mutationFn: async ({ accountName, type, key, email }: CommonPayload) => {\n if (!data) {\n throw new Error(\n \"[SDK][Accounts] – cannot change recovery for anonymous user\"\n );\n }\n\n const operationBody = {\n account_to_recover: data.name,\n new_recovery_account: accountName,\n extensions: [] as [],\n };\n\n if (type === \"ecency\") {\n if (!code) {\n throw new Error(\"[SDK][Accounts] – missing access token\");\n }\n const fetchApi = getBoundFetch();\n\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/recoveries-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n email,\n publicKeys: [\n ...data.owner.key_auths,\n ...data.active.key_auths,\n ...data.posting.key_auths,\n data.memo_key,\n ],\n }),\n });\n\n // Raw fetch resolves on 4xx/5xx, so guard explicitly — otherwise the\n // caller's onSuccess shows a \"recovery updated\" toast on a failed request.\n // (The missing Content-Type header also made the backend skip JSON parsing.)\n if (!response.ok) {\n throw new Error(`[SDK][Accounts] Failed to add recovery: ${response.status}`);\n }\n\n return response;\n } else if (type === \"key\" && key) {\n return broadcastOperations(\n [[\"change_recovery_account\", operationBody]],\n key\n );\n } else if (type === \"keychain\") {\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Accounts] – missing keychain broadcaster\");\n }\n return auth.adapter.broadcastWithKeychain(data.name, [[\"change_recovery_account\", operationBody]], \"owner\");\n } else {\n if (!options.hsCallbackUrl && process.env.NODE_ENV === \"development\") {\n console.warn(\"[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing.\");\n }\n return hs.sendOperation(\n [\"change_recovery_account\", operationBody],\n options.hsCallbackUrl ? { callback: options.hsCallbackUrl } : {},\n () => {}\n );\n }\n },\n onError: options.onError,\n onSuccess: options.onSuccess,\n });\n}\n","import { PublicKey } from \"../../../hive-tx\";\nimport type { Authority } from \"../../../hive-tx\";\nimport { FullAccount } from \"../types\";\n\n/**\n * Check whether an authority would still meet its weight_threshold\n * after removing the given keys. This prevents revoking keys that\n * would leave an authority unable to sign (especially for multisig).\n */\nexport function canRevokeFromAuthority(\n auth: Authority,\n revokingKeyStrs: Set\n): boolean {\n const remainingWeight = auth.key_auths\n .filter(([key]) => !revokingKeyStrs.has(String(key)))\n .reduce((sum, [, weight]) => sum + weight, 0);\n\n // account_auths also contribute weight\n const accountWeight = (auth.account_auths ?? []).reduce(\n (sum: number, [, weight]: [string, number]) => sum + weight,\n 0\n );\n\n return (remainingWeight + accountWeight) >= auth.weight_threshold;\n}\n\n/**\n * Build an account_update operation that removes the given public keys\n * from the relevant authorities.\n *\n * Only includes the `owner` field when a revoking key actually exists\n * in the owner authority - omitting it allows active-level signing.\n *\n * Returns the operation payload (without the \"account_update\" tag) so\n * callers can wrap it as needed for their broadcast method.\n */\nexport function buildRevokeKeysOp(\n accountData: FullAccount,\n revokingKeys: PublicKey[]\n) {\n const revokingKeyStrs = new Set(revokingKeys.map((k) => k.toString()));\n\n const hasAnyKeyInAuth = (auth: Authority) =>\n auth.key_auths.some(\n ([key]: [string | PublicKey, number]) => revokingKeyStrs.has(String(key))\n );\n\n const prepareAuth = (auth: Authority): Authority => {\n const clone: Authority = JSON.parse(JSON.stringify(auth));\n clone.key_auths = clone.key_auths.filter(\n ([key]) => !revokingKeyStrs.has(key.toString())\n );\n return clone;\n };\n\n const needsOwnerUpdate = hasAnyKeyInAuth(accountData.owner);\n\n return {\n account: accountData.name,\n json_metadata: accountData.json_metadata,\n owner: needsOwnerUpdate ? prepareAuth(accountData.owner) : undefined,\n active: prepareAuth(accountData.active),\n posting: prepareAuth(accountData.posting),\n memo_key: accountData.memo_key\n };\n}\n","import { PrivateKey, PublicKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { buildRevokeKeysOp } from \"./build-revoke-keys-op\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ninterface Payload {\n currentKey: PrivateKey;\n /** Keys to revoke. Accepts a single key or an array. */\n revokingKey: PublicKey | PublicKey[];\n}\n\n/**\n * Revoke one or more keys from an account on the Hive blockchain.\n *\n * When revoking keys that exist only in active/posting authorities,\n * the owner field is omitted from the operation so active-level\n * signing is sufficient.\n */\ntype RevokeKeyOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountRevokeKey(\n username: string | undefined,\n options?: RevokeKeyOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"revoke-key\", accountData?.name],\n mutationFn: async ({ currentKey, revokingKey }: Payload) => {\n if (!accountData) {\n throw new Error(\n \"[SDK][Revoke key] – cannot update keys for anon user\"\n );\n }\n\n const revokingKeys = Array.isArray(revokingKey) ? revokingKey : [revokingKey];\n const op = buildRevokeKeysOp(accountData, revokingKeys);\n\n return broadcastOperations([[\"account_update\", op]], currentKey);\n },\n ...options,\n });\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildClaimAccountOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for claiming account creation tokens.\n */\nexport interface ClaimAccountPayload {\n /** Creator account claiming the token */\n creator: string;\n /** Fee for claiming (usually \"0.000 HIVE\" for RC-based claims) */\n fee?: string;\n}\n\n/**\n * React Query mutation hook for claiming account creation tokens.\n *\n * This mutation broadcasts a claim_account operation to claim an account\n * creation token using Resource Credits (RC). The claimed token can later\n * be used to create a new account for free using the create_claimed_account\n * operation.\n *\n * @param username - The username claiming the account token (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates account cache to update pending_claimed_accounts count\n * - Updates account query data to set pending_claimed_accounts = 0 optimistically\n *\n * **Operation Details:**\n * - Uses native claim_account operation\n * - Fee: \"0.000 HIVE\" (uses RC instead of HIVE)\n * - Authority: Active key (required for claiming)\n *\n * **RC Requirements:**\n * - Requires sufficient Resource Credits (RC)\n * - RC amount varies based on network conditions\n * - Claiming without sufficient RC will fail\n *\n * **Use Case:**\n * - Claim tokens in advance when RC is available\n * - Create accounts later without paying HIVE fee\n * - Useful for onboarding services and apps\n *\n * @example\n * ```typescript\n * const claimMutation = useClaimAccount(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Claim account token using RC\n * claimMutation.mutate({\n * creator: 'alice',\n * fee: '0.000 HIVE'\n * });\n * ```\n */\nexport function useClaimAccount(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"claimAccount\"],\n username,\n ({ creator, fee = \"0.000 HIVE\" }) => [\n buildClaimAccountOp(creator, fee)\n ],\n async (_result: any, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(variables.creator),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildGrantPostingPermissionOp, type Authority } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface GrantPostingPermissionPayload {\n currentPosting: Authority;\n grantedAccount: string;\n weightThreshold: number;\n memoKey: string;\n jsonMetadata: string;\n}\n\nexport function useGrantPostingPermission(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"grant-posting-permission\"],\n username,\n (payload) => [\n buildGrantPostingPermissionOp(\n username!,\n payload.currentPosting,\n payload.grantedAccount,\n payload.weightThreshold,\n payload.memoKey,\n payload.jsonMetadata\n )\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildAccountCreateOp, buildCreateClaimedAccountOp, type AccountKeys } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface CreateAccountPayload {\n newAccountName: string;\n keys: AccountKeys;\n fee: string;\n /** If true, uses a claimed account token instead of paying the fee */\n useClaimed?: boolean;\n}\n\nexport function useCreateAccount(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"create\"],\n username,\n (payload) => [\n payload.useClaimed\n ? buildCreateClaimedAccountOp(username!, payload.newAccountName, payload.keys)\n : buildAccountCreateOp(username!, payload.newAccountName, payload.keys, payload.fee)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { parseAsset } from \"@/modules/core/utils\";\nimport { DynamicProps } from \"@/modules/core/types\";\nimport { FullAccount } from \"../types\";\nimport { calculateVPMana, calculateRCMana } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\n\nconst HIVE_VOTING_MANA_REGENERATION_SECONDS = 5 * 60 * 60 * 24; // 5 days\nconst HIVE_100_PERCENT = 10000;\nconst HIVE_VOTE_DUST_THRESHOLD = 50_000_000;\n\nfunction getEffectiveVests(account: FullAccount): number {\n const vesting = parseAsset(account.vesting_shares).amount;\n const received = parseAsset(account.received_vesting_shares).amount;\n const delegated = parseAsset(account.delegated_vesting_shares).amount;\n const withdrawRate = parseAsset(account.vesting_withdraw_rate).amount;\n const alreadyWithdrawn =\n (Number(account.to_withdraw) - Number(account.withdrawn)) / 1e6;\n const withdrawVests = Math.min(withdrawRate, alreadyWithdrawn);\n\n return vesting + received - delegated - withdrawVests;\n}\n\nfunction vestsToRshares(vests: number, votingPowerValue: number, votePerc: number): number {\n const vestingShares = vests * 1e6;\n const power = (votingPowerValue * votePerc) / 1e4 / 50 + 1;\n return (power * vestingShares) / 1e4;\n}\n\nfunction hasStableVoteHardfork(dynamicProps: DynamicProps): boolean {\n if (Number.isFinite(dynamicProps.lastHardfork)) {\n return dynamicProps.lastHardfork >= 28;\n }\n\n const [major = \"0\", minor = \"0\"] = (dynamicProps.currentHardforkVersion ?? \"0.0.0\").split(\".\");\n return Number(major) > 1 || (Number(major) === 1 && Number(minor) >= 28);\n}\n\nfunction stableVoteRshares(\n account: FullAccount,\n dynamicProps: DynamicProps,\n weight: number\n): number {\n const reserveRate =\n dynamicProps.votePowerReserveRate ||\n Number(dynamicProps.raw?.globalDynamic?.vote_power_reserve_rate ?? 0);\n\n if (!Number.isFinite(reserveRate) || reserveRate <= 0) {\n return 0;\n }\n\n const effectiveVests = getEffectiveVests(account);\n if (!Number.isFinite(effectiveVests) || effectiveVests <= 0) {\n return 0;\n }\n\n const vestingShares = effectiveVests * 1e6;\n const usedMana =\n Math.ceil(\n (vestingShares * weight * 60 * 60 * 24) /\n HIVE_100_PERCENT /\n (reserveRate * HIVE_VOTING_MANA_REGENERATION_SECONDS)\n );\n\n const mana = calculateVPMana(account);\n const currentMana = Math.min(mana.current_mana, mana.max_mana);\n\n if (!Number.isFinite(currentMana) || usedMana > currentMana) {\n return 0;\n }\n\n return Math.max(usedMana - HIVE_VOTE_DUST_THRESHOLD, 0);\n}\n\nexport function votingRshares(\n account: FullAccount,\n dynamicProps: DynamicProps,\n votingPowerValue: number,\n weight: number = 10000\n): number {\n if (!Number.isFinite(votingPowerValue) || !Number.isFinite(weight)) {\n return 0;\n }\n\n if (hasStableVoteHardfork(dynamicProps)) {\n return stableVoteRshares(account, dynamicProps, weight);\n }\n\n let totalVests = 0;\n try {\n totalVests = getEffectiveVests(account);\n if (!Number.isFinite(totalVests)) {\n return 0;\n }\n } catch {\n return 0;\n }\n\n return vestsToRshares(totalVests, votingPowerValue, weight);\n}\n\nexport function votingPower(account: FullAccount): number {\n const calc = calculateVPMana(account);\n return calc.percentage / 100;\n}\n\nexport function powerRechargeTime(power: number) {\n if (!Number.isFinite(power)) {\n throw new TypeError(\"Voting power must be a finite number\");\n }\n if (power < 0 || power > 100) {\n throw new RangeError(\"Voting power must be between 0 and 100\");\n }\n const missingPower = 100 - power;\n return (\n (missingPower * 100 * HIVE_VOTING_MANA_REGENERATION_SECONDS) / 10000\n );\n}\n\nexport function downVotingPower(account: FullAccount): number {\n const totalShares =\n parseFloat(account.vesting_shares) +\n parseFloat(account.received_vesting_shares) -\n parseFloat(account.delegated_vesting_shares);\n const elapsed = Math.floor(Date.now() / 1000) - account.downvote_manabar.last_update_time;\n const maxMana = (totalShares * 1000000) / 4;\n\n if (maxMana <= 0) {\n return 0;\n }\n\n let currentMana =\n parseFloat(account.downvote_manabar.current_mana.toString()) +\n (elapsed * maxMana) / HIVE_VOTING_MANA_REGENERATION_SECONDS;\n\n if (currentMana > maxMana) {\n currentMana = maxMana;\n }\n const currentManaPerc = (currentMana * 100) / maxMana;\n\n if (isNaN(currentManaPerc)) {\n return 0;\n }\n\n if (currentManaPerc > 100) {\n return 100;\n }\n return currentManaPerc;\n}\n\n/**\n * Rewards/stake coefficient, known on Hive as the KE ratio: every VEST ever paid out\n * to the account as curation rewards or as the vested half of an author payout, over\n * the VESTS it still holds and has not delegated away. Both sides are VESTS, so the\n * value is independent of the HIVE price and of the global VESTS/HP rate.\n *\n * Returns null when the account carries no undelegated stake, where the ratio is\n * undefined rather than zero.\n *\n * Limits worth repeating wherever this is displayed: `posting_rewards` counts only the\n * vested half of an author payout, the denominator ignores stake delegated TO the\n * account (so an account curating with received delegation scores high), and the value\n * climbs during a power-down because the numerator is frozen history.\n */\nexport function rewardsToStakeRatio(account: FullAccount): number | null {\n // Absent counters are unknown, not zero. A row that omits one (or a cache entry\n // dehydrated by an older build, which omits both) would otherwise produce a\n // confident but understated ratio, which is worse than showing nothing.\n const { curation_rewards: curation, posting_rewards: posting } = account;\n if (curation === undefined || posting === undefined) {\n return null;\n }\n\n const rewards = curation + posting;\n const ownVests =\n parseAsset(account.vesting_shares).amount -\n parseAsset(account.delegated_vesting_shares).amount;\n\n // The SDK's parseAsset hands back a raw parseFloat, so a malformed asset string\n // reaches here as NaN rather than 0. Both sides need the finite check.\n if (!Number.isFinite(rewards) || !Number.isFinite(ownVests) || ownVests <= 0) {\n return null;\n }\n\n return rewards / ownVests;\n}\n\nexport function rcPower(account: RCAccount): number {\n const calc = calculateRCMana(account);\n return calc.percentage / 100;\n}\n\nexport function votingValue(\n account: FullAccount,\n dynamicProps: DynamicProps,\n votingPowerValue: number,\n weight: number = 10000\n): number {\n if (!Number.isFinite(votingPowerValue) || !Number.isFinite(weight)) {\n return 0;\n }\n const { fundRecentClaims, fundRewardBalance, base, quote } = dynamicProps;\n\n if (\n !Number.isFinite(fundRecentClaims) ||\n !Number.isFinite(fundRewardBalance) ||\n !Number.isFinite(base) ||\n !Number.isFinite(quote)\n ) {\n return 0;\n }\n\n if (fundRecentClaims === 0 || quote === 0) {\n return 0;\n }\n\n const rShares = votingRshares(account, dynamicProps, votingPowerValue, weight);\n\n if (!Number.isFinite(rShares)) {\n return 0;\n }\n\n return (rShares / fundRecentClaims) * fundRewardBalance * (base / quote);\n}\n","import type { Operation } from \"../../hive-tx\";\n\n/**\n * Authority levels for Hive blockchain operations.\n * - posting: Social operations (voting, commenting, reblogging)\n * - active: Financial and account management operations\n * - owner: Critical security operations (key changes, account recovery)\n * - memo: Memo encryption/decryption (rarely used for signing)\n */\nexport type AuthorityLevel = 'posting' | 'active' | 'owner' | 'memo';\n\n/**\n * Maps operation types to their required authority level.\n *\n * This mapping is used to determine which key is needed to sign a transaction,\n * enabling smart auth fallback and auth upgrade UI.\n *\n * @remarks\n * - Most social operations (vote, comment, reblog) require posting authority\n * - Financial operations (transfer, withdraw) require active authority\n * - Account management operations require active authority\n * - Security operations (password change, account recovery) require owner authority\n * - custom_json requires dynamic detection based on required_auths vs required_posting_auths\n */\nexport const OPERATION_AUTHORITY_MAP: Record = {\n // Posting authority operations\n vote: 'posting',\n comment: 'posting',\n delete_comment: 'posting',\n comment_options: 'posting',\n claim_reward_balance: 'posting',\n\n // Active authority operations - Financial\n cancel_transfer_from_savings: 'active',\n collateralized_convert: 'active',\n convert: 'active',\n delegate_vesting_shares: 'active',\n recurrent_transfer: 'active',\n set_withdraw_vesting_route: 'active',\n transfer: 'active',\n transfer_from_savings: 'active',\n transfer_to_savings: 'active',\n transfer_to_vesting: 'active',\n withdraw_vesting: 'active',\n\n // Active authority operations - Market\n limit_order_create: 'active',\n limit_order_cancel: 'active',\n\n // Active authority operations - Account Management\n account_update: 'active',\n account_update2: 'active',\n claim_account: 'active',\n create_claimed_account: 'active',\n\n // Active authority operations - Governance\n account_witness_proxy: 'active',\n account_witness_vote: 'active',\n remove_proposal: 'active',\n update_proposal_votes: 'active',\n\n // Owner authority operations - Security & Account Recovery\n change_recovery_account: 'owner',\n request_account_recovery: 'owner',\n recover_account: 'owner',\n reset_account: 'owner',\n set_reset_account: 'owner',\n\n // Note: Some operations are handled separately via content inspection:\n // - custom_json: via getCustomJsonAuthority() - posting or active based on required_auths\n // - create_proposal/update_proposal: via getProposalAuthority() - typically active\n};\n\n/**\n * Determines authority required for a custom_json operation.\n *\n * Custom JSON operations can require either posting or active authority\n * depending on which field is populated:\n * - required_auths (active authority)\n * - required_posting_auths (posting authority)\n *\n * @param customJsonOp - The custom_json operation to inspect\n * @returns 'active' if requires active authority, 'posting' if requires posting authority\n *\n * @example\n * ```typescript\n * // Reblog operation (posting authority)\n * const reblogOp: Operation = ['custom_json', {\n * required_auths: [],\n * required_posting_auths: ['alice'],\n * id: 'reblog',\n * json: '...'\n * }];\n * getCustomJsonAuthority(reblogOp); // Returns 'posting'\n *\n * // Some active authority custom_json\n * const activeOp: Operation = ['custom_json', {\n * required_auths: ['alice'],\n * required_posting_auths: [],\n * id: 'some_active_op',\n * json: '...'\n * }];\n * getCustomJsonAuthority(activeOp); // Returns 'active'\n * ```\n */\nexport function getCustomJsonAuthority(customJsonOp: Operation): AuthorityLevel {\n const opType = customJsonOp[0];\n const payload = customJsonOp[1];\n\n if (opType !== 'custom_json') {\n throw new Error('Operation is not a custom_json operation');\n }\n\n // Type assertion for custom_json payload\n const customJson = payload as {\n required_auths?: string[];\n required_posting_auths?: string[];\n id: string;\n json: string;\n };\n\n // If required_auths is set and non-empty, needs active authority\n if (customJson.required_auths && customJson.required_auths.length > 0) {\n return 'active';\n }\n\n // If only required_posting_auths is set, needs posting authority\n if (customJson.required_posting_auths && customJson.required_posting_auths.length > 0) {\n return 'posting';\n }\n\n // Default to posting for custom_json (most common case)\n return 'posting';\n}\n\n/**\n * Determines authority required for a proposal operation.\n *\n * Proposal operations (create_proposal, update_proposal) typically require\n * active authority as they involve financial commitments and funding allocations.\n *\n * @param proposalOp - The proposal operation to inspect\n * @returns 'active' authority requirement\n *\n * @remarks\n * Unlike custom_json, proposal operations don't have explicit required_auths fields.\n * They always use the creator's authority, which defaults to active for financial\n * operations involving the DAO treasury.\n *\n * @example\n * ```typescript\n * const proposalOp: Operation = ['create_proposal', {\n * creator: 'alice',\n * receiver: 'bob',\n * subject: 'My Proposal',\n * permlink: 'my-proposal',\n * start: '2026-03-01T00:00:00',\n * end: '2026-04-01T00:00:00',\n * daily_pay: '100.000 HBD',\n * extensions: []\n * }];\n * getProposalAuthority(proposalOp); // Returns 'active'\n * ```\n */\nexport function getProposalAuthority(proposalOp: Operation): AuthorityLevel {\n const opType = proposalOp[0];\n\n if (opType !== 'create_proposal' && opType !== 'update_proposal') {\n throw new Error('Operation is not a proposal operation');\n }\n\n // Proposal operations require active authority for financial operations\n return 'active';\n}\n\n/**\n * Determines the required authority level for any operation.\n *\n * Uses the OPERATION_AUTHORITY_MAP for standard operations, and dynamic\n * detection for custom_json operations.\n *\n * @param op - The operation to check\n * @returns 'posting' or 'active' authority requirement\n *\n * @example\n * ```typescript\n * const voteOp: Operation = ['vote', { voter: 'alice', author: 'bob', permlink: 'post', weight: 10000 }];\n * getOperationAuthority(voteOp); // Returns 'posting'\n *\n * const transferOp: Operation = ['transfer', { from: 'alice', to: 'bob', amount: '1.000 HIVE', memo: '' }];\n * getOperationAuthority(transferOp); // Returns 'active'\n * ```\n */\nexport function getOperationAuthority(op: Operation): AuthorityLevel {\n const opType = op[0];\n\n // Special handling for custom_json - requires content inspection\n if (opType === 'custom_json') {\n return getCustomJsonAuthority(op);\n }\n\n // Special handling for proposal operations - requires content inspection\n if (opType === 'create_proposal' || opType === 'update_proposal') {\n return getProposalAuthority(op);\n }\n\n // Use mapping for standard operations, default to posting if unknown\n return OPERATION_AUTHORITY_MAP[opType] ?? 'posting';\n}\n\n/**\n * Determines the highest authority level required for a list of operations.\n *\n * Useful when broadcasting multiple operations together - the highest authority\n * level required by any operation determines what key is needed for the batch.\n *\n * Authority hierarchy: owner > active > posting > memo\n *\n * @param ops - Array of operations\n * @returns Highest authority level required ('owner', 'active', or 'posting')\n *\n * @example\n * ```typescript\n * const ops: Operation[] = [\n * ['vote', { ... }], // posting\n * ['comment', { ... }], // posting\n * ];\n * getRequiredAuthority(ops); // Returns 'posting'\n *\n * const mixedOps: Operation[] = [\n * ['comment', { ... }], // posting\n * ['transfer', { ... }], // active\n * ];\n * getRequiredAuthority(mixedOps); // Returns 'active'\n *\n * const securityOps: Operation[] = [\n * ['transfer', { ... }], // active\n * ['change_recovery_account', { ... }], // owner\n * ];\n * getRequiredAuthority(securityOps); // Returns 'owner'\n * ```\n */\nexport function getRequiredAuthority(ops: Operation[]): AuthorityLevel {\n let highestAuthority: AuthorityLevel = 'posting';\n\n for (const op of ops) {\n const authority = getOperationAuthority(op);\n\n // Owner is highest - return immediately\n if (authority === 'owner') {\n return 'owner';\n }\n\n // Active is higher than posting\n if (authority === 'active' && highestAuthority === 'posting') {\n highestAuthority = 'active';\n }\n\n // Memo is lowest (same level as posting)\n // If we see memo but only have posting, stick with posting\n }\n\n return highestAuthority;\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport type { Operation } from \"../../../hive-tx\";\nimport { isWif, broadcastOperations } from \"@/modules/core/hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useSignOperationByKey(username: string | undefined) {\n return useMutation({\n mutationKey: [\"operations\", \"sign\", username],\n mutationFn: ({\n operation,\n keyOrSeed,\n }: {\n operation: Operation;\n keyOrSeed: string;\n }) => {\n if (!username) {\n throw new Error(\"[Operations][Sign] – cannot sign op with anon user\");\n }\n\n let privateKey: PrivateKey;\n if (keyOrSeed.split(\" \").length === 12) {\n privateKey = PrivateKey.fromLogin(username, keyOrSeed, \"active\");\n } else if (isWif(keyOrSeed)) {\n privateKey = PrivateKey.fromString(keyOrSeed);\n } else {\n privateKey = PrivateKey.from(keyOrSeed);\n }\n\n return broadcastOperations(\n [operation],\n privateKey\n );\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport function useSignOperationByKeychain(\n username: string | undefined,\n auth?: AuthContextV2,\n keyType: \"owner\" | \"active\" | \"posting\" | \"memo\" = \"active\"\n) {\n return useMutation({\n mutationKey: [\"operations\", \"sign-keychain\", username],\n mutationFn: ({ operation }: { operation: Operation }) => {\n if (!username) {\n throw new Error(\n \"[SDK][Keychain] – cannot sign operation with anon user\"\n );\n }\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Keychain] – missing keychain broadcaster\");\n }\n\n return auth.adapter.broadcastWithKeychain(username, [operation], keyType);\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\n\nexport function useSignOperationByHivesigner(callbackUri = \"/\") {\n return useMutation({\n mutationKey: [\"operations\", \"sign-hivesigner\", callbackUri],\n mutationFn: async ({ operation }: { operation: Operation }) => {\n return hs.sendOperation(operation, { callback: callbackUri }, () => {});\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getChainPropertiesQueryOptions() {\n return queryOptions({\n queryKey: [\"operations\", \"chain-properties\"],\n queryFn: async () => {\n return await callRPC(\"condenser_api.get_chain_properties\", []);\n },\n });\n}\n","import { Fragment } from \"../types\";\n\n/**\n * Build the cache entry for an edited fragment.\n *\n * The `/private-api/fragments-update` endpoint returns only a minimal\n * acknowledgement, not the full fragment. Writing that response straight into\n * the query cache blanked out the edited snippet (the reported bug), so the\n * updated record is built from the values the user actually submitted, merged\n * over whatever fields the response does carry, on top of the existing cached\n * fragment (preserving id/created).\n */\nexport function applyFragmentUpdate(\n existing: Fragment,\n response: Partial | null | undefined,\n vars: { title: string; body: string }\n): Fragment {\n return {\n ...existing,\n ...(response ?? {}),\n title: vars.title,\n body: vars.body\n };\n}\n\n/**\n * Build the cache entry for a newly added fragment. Reaffirms the submitted\n * title/body over the server acknowledgement so a fresh snippet never renders\n * blank if the response omits them, while keeping any server-provided\n * id/timestamps.\n */\nexport function buildAddedFragment(\n response: Fragment | null | undefined,\n vars: { title: string; body: string }\n): Fragment {\n return {\n ...(response ?? {}),\n title: vars.title,\n body: vars.body\n } as Fragment;\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { buildAddedFragment } from \"../utils/fragment-cache-helpers\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useAddFragment(username: string, code: string | undefined) {\n return useMutation({\n mutationKey: [\"posts\", \"add-fragment\", username],\n mutationFn: async ({ title, body }: { title: string; body: string }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments-add\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n title,\n body,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n // Raw fetch resolves on 4xx/5xx, so a JSON error response would otherwise run\n // onSuccess and insert a bogus fragment into the cache. Throw instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to add fragment: ${response.status}`);\n }\n return response.json() as Promise;\n },\n onSuccess(response, variables) {\n const queryClient = getQueryClient();\n\n // Reaffirm the submitted title/body over the server acknowledgement so a\n // freshly added snippet never renders blank if the response omits them,\n // while keeping any server-provided id/timestamps.\n const newFragment = buildAddedFragment(response, variables);\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) => [newFragment, ...(data ?? [])]\n );\n\n // Update infinite query cache - add new fragment to first page\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page, index) =>\n index === 0\n ? { ...page, data: [newFragment, ...page.data] }\n : page\n ),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { applyFragmentUpdate } from \"../utils/fragment-cache-helpers\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useEditFragment(\n username: string,\n code: string | undefined\n) {\n return useMutation({\n mutationKey: [\"posts\", \"edit-fragment\", username],\n mutationFn: async ({\n fragmentId,\n title,\n body\n }: {\n fragmentId: string;\n title: string;\n body: string;\n }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments-update\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n id: fragmentId,\n title,\n body,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n // Raw fetch resolves on 4xx/5xx, so a JSON error response would otherwise run\n // onSuccess and overwrite the cached fragment with bogus data. Throw instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to update fragment: ${response.status}`);\n }\n return response.json() as Promise;\n },\n onSuccess(response, variables) {\n const queryClient = getQueryClient();\n\n // The /fragments-update endpoint returns a minimal acknowledgement, not the\n // full fragment, so writing the raw response into the cache blanked out the\n // edited snippet. Rebuild the fragment from the submitted values instead.\n const applyUpdate = (fragment: Fragment): Fragment =>\n applyFragmentUpdate(fragment, response, variables);\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) =>\n data?.map((fragment) =>\n fragment.id === variables.fragmentId ? applyUpdate(fragment) : fragment\n ) ?? []\n );\n\n // Update infinite query cache - update fragment in all pages\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.map((fragment) =>\n fragment.id === variables.fragmentId ? applyUpdate(fragment) : fragment\n ),\n })),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useRemoveFragment(\n username: string,\n code: string | undefined\n) {\n return useMutation({\n mutationKey: [\"posts\", \"remove-fragment\", username],\n mutationFn: async ({ fragmentId }: { fragmentId: string }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/fragments-delete\", {\n method: \"POST\",\n body: JSON.stringify({\n code,\n id: fragmentId,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n // getBoundFetch returns the raw fetch, so a 401/403/500 resolves rather than\n // rejects. Without this guard onSuccess would run and strip the fragment from\n // cache on a failed delete (false success). Throw so onError fires instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to delete fragment: ${response.status}`);\n }\n\n return response;\n },\n onSuccess(_data, variables) {\n const queryClient = getQueryClient();\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) => [...(data ?? [])].filter(({ id }) => id !== variables.fragmentId)\n );\n\n // Update infinite query cache - remove fragment from all pages\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.filter((fragment) => fragment.id !== variables.fragmentId),\n })),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { ApiNotification, ApiNotificationSetting } from \"@/modules/notifications\";\nimport { Draft, DraftMetadata } from \"@/modules/posts/types/draft\";\nimport { Schedule } from \"@/modules/posts/types/schedule\";\nimport { ApiResponse } from \"./types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nasync function parseJsonResponse(response: Response): Promise {\n if (!response.ok) {\n let errorData: unknown = undefined;\n try {\n errorData = await response.json();\n } catch {\n errorData = undefined;\n }\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = errorData;\n throw error;\n }\n\n // Handle empty responses gracefully (e.g., 204 No Content or empty body)\n const text = await response.text();\n if (!text || text.trim() === \"\") {\n return \"\" as T;\n }\n\n try {\n return JSON.parse(text) as T;\n } catch (e) {\n // If JSON parsing fails, return empty string as fallback\n console.warn(\"[SDK] Failed to parse JSON response:\", e, \"Response:\", text);\n return \"\" as T;\n }\n}\n\nexport async function signUp(\n username: string,\n email: string,\n referral: string,\n captchaToken?: string\n): Promise>> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/account-create\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username, email, referral, captcha_token: captchaToken }),\n });\n\n const data = await parseJsonResponse>(response);\n return { status: response.status, data };\n}\n\nexport async function subscribeEmail(\n email: string\n): Promise>> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/subscribe\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ email }),\n });\n\n const data = await parseJsonResponse>(response);\n return { status: response.status, data };\n}\n\nexport async function usrActivity(\n code: string | undefined,\n ty: number,\n bl: string | number = \"\",\n tx: string | number = \"\"\n): Promise {\n const params: {\n code: string | undefined;\n ty: number;\n bl?: string | number;\n tx?: string | number;\n } = { code, ty };\n\n if (bl) {\n params.bl = bl;\n }\n if (tx) {\n params.tx = tx;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/usr-activity\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(params),\n });\n\n await parseJsonResponse(response);\n}\n\nexport async function getNotifications(\n code: string | undefined,\n filter: string | null,\n since: string | null = null,\n user: string | null = null\n): Promise {\n const data: { code: string | undefined; filter?: string; since?: string; user?: string } = {\n code,\n };\n\n if (filter) {\n data.filter = filter;\n }\n\n if (since) {\n data.since = since;\n }\n\n if (user) {\n data.user = user;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/notifications\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function saveNotificationSetting(\n code: string | undefined,\n username: string,\n system: string,\n allows_notify: number,\n notify_types: number[],\n token: string\n): Promise {\n const data = {\n code,\n username,\n token,\n system,\n allows_notify,\n notify_types,\n };\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/register-device\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function getNotificationSetting(\n code: string | undefined,\n username: string,\n token: string\n): Promise {\n const data = { code, username, token };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/detail-device\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function markNotifications(\n code: string | undefined,\n id?: string\n): Promise> {\n const data: { code: string | undefined; id?: string } = {\n code,\n };\n if (id) {\n data.id = id;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/notifications/mark\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addImage(code: string | undefined, url: string): Promise> {\n const data = { code, url };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\n// Upload always targets the canonical Ecency image server, even when\n// the user has changed their viewing proxy (e.g. images.hive.blog).\n// i.ecency.com is the same imagehoster endpoint as images.ecency.com\n// (identical backend / token validation); it is the canonical host\n// because some ISPs SNI-filter the images.ecency.com hostname.\nconst UPLOAD_HOST = \"https://i.ecency.com\";\n\nexport async function uploadImage(\n file: File,\n token: string,\n signal?: AbortSignal\n): Promise<{ url: string }> {\n const fetchApi = getBoundFetch();\n const formData = new FormData();\n formData.append(\"file\", file);\n\n const response = await fetchApi(`${UPLOAD_HOST}/hs/${token}`, {\n method: \"POST\",\n body: formData,\n signal,\n });\n\n return parseJsonResponse<{ url: string }>(response);\n}\n\n/**\n * Upload image using posting key signature (/:username/:signature path).\n * Works with any compatible image server (images.ecency.com, images.hive.blog).\n * The signature is sha256(\"ImageSigningChallenge\" + fileData) signed with the posting key.\n */\nexport async function uploadImageWithSignature(\n file: File,\n username: string,\n signature: string,\n signal?: AbortSignal\n): Promise<{ url: string }> {\n const fetchApi = getBoundFetch();\n const formData = new FormData();\n formData.append(\"file\", file);\n\n const response = await fetchApi(`${CONFIG.imageHost}/${username}/${signature}`, {\n method: \"POST\",\n body: formData,\n signal,\n });\n\n return parseJsonResponse<{ url: string }>(response);\n}\n\nexport async function deleteImage(\n code: string | undefined,\n imageId: string\n): Promise> {\n const data = { code, id: imageId };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addDraft(\n code: string | undefined,\n title: string,\n body: string,\n tags: string,\n meta: DraftMetadata\n): Promise<{ drafts: Draft[] }> {\n const data = { code, title, body, tags, meta };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ drafts: Draft[] }>(response);\n}\n\nexport async function updateDraft(\n code: string | undefined,\n draftId: string,\n title: string,\n body: string,\n tags: string,\n meta: DraftMetadata\n): Promise<{ drafts: Draft[] }> {\n const data = { code, id: draftId, title, body, tags, meta };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-update\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ drafts: Draft[] }>(response);\n}\n\nexport async function deleteDraft(\n code: string | undefined,\n draftId: string\n): Promise> {\n const data = { code, id: draftId };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addSchedule(\n code: string | undefined,\n permlink: string,\n title: string,\n body: string,\n meta: Record,\n options: Record | null,\n schedule: string,\n reblog: boolean\n): Promise> {\n const data: Record = {\n code,\n permlink,\n title,\n body,\n meta,\n schedule,\n reblog,\n };\n\n if (options) {\n data.options = options;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function deleteSchedule(\n code: string | undefined,\n id: string\n): Promise> {\n const data = { code, id };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function moveSchedule(code: string | undefined, id: string): Promise {\n const data = { code, id };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-move\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function getPromotedPost(\n code: string | undefined,\n author: string,\n permlink: string\n): Promise<{ author: string; permlink: string } | \"\"> {\n const data = { code, author, permlink };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/promoted-post\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ author: string; permlink: string } | \"\">(response);\n}\n\nexport async function onboardEmail(\n username: string,\n email: string,\n friend: string\n): Promise> {\n const dataBody = {\n username,\n email,\n friend,\n };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/account-create-friend\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(dataBody),\n }\n );\n\n return parseJsonResponse>(response);\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addDraft } from \"@/modules/private-api/requests\";\nimport { DraftMetadata } from \"../types\";\n\nexport function useAddDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"add\", username],\n mutationFn: async ({\n title,\n body,\n tags,\n meta,\n }: {\n title: string;\n body: string;\n tags: string;\n meta: DraftMetadata;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for addDraft\");\n }\n return addDraft(code, title, body, tags, meta);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full drafts list from the response (API returns complete list)\n if (data?.drafts) {\n qc.setQueryData(QueryKeys.posts.drafts(username), data.drafts);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n }\n // Also invalidate the infinite query so the drafts list refetches\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { updateDraft } from \"@/modules/private-api/requests\";\nimport { DraftMetadata } from \"../types\";\n\nexport function useUpdateDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"update\", username],\n mutationFn: async ({\n draftId,\n title,\n body,\n tags,\n meta,\n }: {\n draftId: string;\n title: string;\n body: string;\n tags: string;\n meta: DraftMetadata;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for updateDraft\");\n }\n return updateDraft(code, draftId, title, body, tags, meta);\n },\n onSuccess: () => {\n onSuccess?.();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError,\n });\n}\n","import { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { deleteDraft } from \"@/modules/private-api/requests\";\nimport type { Draft } from \"../types\";\nimport type { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useDeleteDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"delete\", username],\n mutationFn: async ({ draftId }: { draftId: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteDraft\");\n }\n return deleteDraft(code, draftId);\n },\n onMutate: async ({ draftId }) => {\n if (!username) {\n return;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.posts.drafts(username);\n const infinitePrefix = QueryKeys.posts.draftsInfinite(username);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((d) => d._id !== draftId)\n );\n }\n\n const infiniteQueries = qc.getQueriesData>>({\n queryKey: infinitePrefix,\n });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((d) => d._id !== draftId),\n })),\n });\n }\n }\n\n return { previousList, previousInfinite };\n },\n onSuccess: () => {\n onSuccess?.();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError: (err, _variables, context) => {\n const qc = getQueryClient();\n if (context?.previousList) {\n qc.setQueryData(QueryKeys.posts.drafts(username), context.previousList);\n }\n if (context?.previousInfinite) {\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n }\n onError?.(err);\n },\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addSchedule } from \"@/modules/private-api/requests\";\n\nexport function useAddSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"add\", username],\n mutationFn: async ({\n permlink,\n title,\n body,\n meta,\n options,\n schedule,\n reblog,\n }: {\n permlink: string;\n title: string;\n body: string;\n meta: Record;\n options: Record | null;\n schedule: string;\n reblog: boolean;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for addSchedule\");\n }\n return addSchedule(code, permlink, title, body, meta, options, schedule, reblog);\n },\n onSuccess: () => {\n onSuccess?.();\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.posts.schedules(username),\n });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { deleteSchedule } from \"@/modules/private-api/requests\";\n\nexport function useDeleteSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"delete\", username],\n mutationFn: async ({ id }: { id: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteSchedule\");\n }\n return deleteSchedule(code, id);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full schedules list from the response (API returns complete list)\n if (data) {\n qc.setQueryData(QueryKeys.posts.schedules(username), data);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.schedules(username) });\n }\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { moveSchedule } from \"@/modules/private-api/requests\";\n\nexport function useMoveSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"move\", username],\n mutationFn: async ({ id }: { id: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for moveSchedule\");\n }\n return moveSchedule(code, id);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full schedules list from the response (API returns complete list)\n if (data) {\n qc.setQueryData(QueryKeys.posts.schedules(username), data);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.schedules(username) });\n }\n // Also invalidate drafts since moving a schedule creates a draft\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addImage } from \"@/modules/private-api/requests\";\n\n/**\n * Hook to add an image URL to the user's Ecency gallery\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful addition\n * @param onError - Optional callback on error\n *\n * @example\n * const addImageMutation = useAddImage(username, code);\n * addImageMutation.mutate({ url: 'https://...' });\n */\nexport function useAddImage(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"add\", username],\n mutationFn: async ({ url, code: nextCode }: { url: string; code?: string }) => {\n const effectiveCode = nextCode ?? code;\n\n if (!username || !effectiveCode) {\n throw new Error(\"[SDK][Posts] – missing auth for addImage\");\n }\n return addImage(effectiveCode, url);\n },\n onSuccess: () => {\n onSuccess?.();\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.posts.images(username),\n });\n },\n onError,\n });\n}\n","import { useMutation, type InfiniteData } from \"@tanstack/react-query\";\nimport { getQueryClient } from \"@/modules/core\";\nimport { deleteImage } from \"@/modules/private-api/requests\";\nimport type { UserImage } from \"../types\";\nimport type { WrappedResponse } from \"@/modules/core/types\";\n\n/**\n * Hook to delete an image from the user's Ecency gallery\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful deletion\n * @param onError - Optional callback on error\n *\n * @example\n * const deleteImageMutation = useDeleteImage(username, code);\n * deleteImageMutation.mutate({ imageId: '123' });\n */\nexport function useDeleteImage(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"delete\", username],\n mutationFn: async ({ imageId }: { imageId: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteImage\");\n }\n return deleteImage(code, imageId);\n },\n onSuccess: (_data, variables) => {\n onSuccess?.();\n const qc = getQueryClient();\n const { imageId } = variables;\n\n // Optimistic removal from regular cache\n qc.setQueryData(\n [\"posts\", \"images\", username],\n (prev) => prev?.filter((img) => img._id !== imageId)\n );\n\n // Optimistic removal from infinite cache pages\n qc.setQueriesData>>(\n { queryKey: [\"posts\", \"images\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.filter((img) => img._id !== imageId),\n })),\n };\n }\n );\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { uploadImage } from \"@/modules/private-api/requests\";\n\n/**\n * Hook to upload an image file to Ecency image hosting\n *\n * @param onSuccess - Optional callback on successful upload, receives { url: string }\n * @param onError - Optional callback on error\n *\n * Note: This hook uploads to Ecency's image server and requires a signature token.\n * The token should be generated using the user's posting key signature.\n *\n * @example\n * const uploadMutation = useUploadImage(\n * (data) => console.log('Uploaded:', data.url)\n * );\n * uploadMutation.mutate({ file, token });\n */\nexport function useUploadImage(\n onSuccess?: (data: { url: string }) => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"upload\"],\n mutationFn: async ({\n file,\n token,\n signal,\n }: {\n file: File;\n token: string;\n signal?: AbortSignal;\n }) => {\n return uploadImage(file, token, signal);\n },\n onSuccess,\n onError,\n });\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { Entry, EntryVote } from \"../types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\n\nfunction makeEntryPath(author: string, permlink: string) {\n return `/@${author}/${permlink}`;\n}\n\nfunction getEntryFromCache(\n author: string,\n permlink: string,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n return queryClient.getQueryData(\n QueryKeys.posts.entry(makeEntryPath(author, permlink))\n );\n}\n\nfunction setEntryInCache(entry: Entry, qc?: QueryClient) {\n const queryClient = qc ?? getQueryClient();\n queryClient.setQueryData(\n QueryKeys.posts.entry(makeEntryPath(entry.author, entry.permlink)),\n entry\n );\n}\n\nfunction mutateEntry(\n author: string,\n permlink: string,\n updater: (entry: Entry) => Entry,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n const path = makeEntryPath(author, permlink);\n const existing = queryClient.getQueryData(QueryKeys.posts.entry(path));\n if (!existing) return undefined;\n\n const updated = updater(existing);\n queryClient.setQueryData(QueryKeys.posts.entry(path), updated);\n return existing;\n}\n\n/**\n * SDK-level entry cache utilities. These operate on SDK cache keys\n * ([\"posts\", \"entry\", \"/@author/permlink\"]).\n *\n * Web layer can bridge these to its own QueryIdentifiers.ENTRY keys\n * during the migration period.\n */\nexport namespace EntriesCacheManagement {\n export function updateVotes(\n author: string,\n permlink: string,\n votes: EntryVote[],\n payout: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n active_votes: votes,\n stats: {\n ...(entry.stats || {\n gray: false,\n hide: false,\n flag_weight: 0,\n total_votes: 0,\n }),\n total_votes: votes.length,\n flag_weight: entry.stats?.flag_weight || 0,\n },\n total_votes: votes.length,\n payout,\n pending_payout_value: String(payout),\n }),\n qc\n );\n }\n\n export function updateReblogsCount(\n author: string,\n permlink: string,\n count: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n reblogs: count,\n }),\n qc\n );\n }\n\n export function updateRepliesCount(\n author: string,\n permlink: string,\n count: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n children: count,\n }),\n qc\n );\n }\n\n export function addReply(\n reply: Entry,\n parentAuthor: string,\n parentPermlink: string,\n qc?: QueryClient\n ) {\n mutateEntry(\n parentAuthor,\n parentPermlink,\n (entry) => ({\n ...entry,\n children: entry.children + 1,\n replies: [reply, ...entry.replies],\n }),\n qc\n );\n }\n\n export function updateEntries(entries: Entry[], qc?: QueryClient) {\n entries.forEach((entry) => setEntryInCache(entry, qc));\n }\n\n export function invalidateEntry(\n author: string,\n permlink: string,\n qc?: QueryClient\n ) {\n const queryClient = qc ?? getQueryClient();\n queryClient.invalidateQueries({\n queryKey: QueryKeys.posts.entry(makeEntryPath(author, permlink)),\n });\n }\n\n export function getEntry(\n author: string,\n permlink: string,\n qc?: QueryClient\n ): Entry | undefined {\n return getEntryFromCache(author, permlink, qc);\n }\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\nimport { EntriesCacheManagement } from \"../cache/entries-cache-management\";\n\n/**\n * Whether the cached active_votes list already reflects the broadcast vote:\n * the voter is present for a vote (weight !== 0) or absent for an unvote\n * (weight === 0). Used to avoid stacking the SDK's post-broadcast optimistic\n * update on top of a platform-level optimistic update applied at press time.\n */\nexport function isVoteAlreadyReflected(\n activeVotes: Array<{ voter: string }>,\n voter: string | undefined,\n weight: number\n): boolean {\n const hasVoterRecord = activeVotes.some((v) => v.voter === voter);\n return weight !== 0 ? hasVoterRecord : !hasVoterRecord;\n}\n\n/**\n * Payload for voting on a post or comment.\n */\nexport interface VotePayload {\n /** Author of the post/comment to vote on */\n author: string;\n /** Permlink of the post/comment to vote on */\n permlink: string;\n /** Vote weight (-10000 to 10000, where 10000 = 100% upvote, -10000 = 100% downvote) */\n weight: number;\n /** Optional estimated payout change for optimistic UI */\n estimated?: number;\n}\n\n/**\n * Post-broadcast optimistic cache update for a vote: replaces the voter's\n * active_votes record and bumps the payout by `estimated`. Skipped when the\n * cached entry already reflects this vote (voter present for a vote, absent\n * for an unvote): platforms with their own at-press optimistic layer (e.g.\n * the mobile app) have applied it by the time the broadcast resolves, and\n * stacking a second update here double-counts the payout and clobbers the\n * platform's richer vote record until the deferred invalidation.\n */\nexport function applyVoteCacheUpdate(\n username: string | undefined,\n variables: VotePayload,\n qc?: QueryClient\n): void {\n const entry = EntriesCacheManagement.getEntry(variables.author, variables.permlink, qc);\n if (\n !entry?.active_votes ||\n isVoteAlreadyReflected(entry.active_votes, username, variables.weight)\n ) {\n return;\n }\n const newVotes = [\n ...entry.active_votes.filter((v) => v.voter !== username),\n ...(variables.weight !== 0 ? [{ rshares: variables.weight, voter: username! }] : [])\n ];\n const newPayout = entry.payout + (variables.estimated ?? 0);\n EntriesCacheManagement.updateVotes(\n variables.author,\n variables.permlink,\n newVotes,\n newPayout,\n qc\n );\n}\n\n/**\n * React Query mutation hook for voting on posts and comments.\n *\n * This mutation broadcasts a vote operation to the Hive blockchain,\n * supporting upvotes (positive weight) and downvotes (negative weight).\n *\n * @param username - The username of the voter (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 120) if adapter.recordActivity is available\n * - Invalidates post cache to refetch updated vote data\n * - Invalidates voting power cache to show updated VP\n *\n * **Vote Weight:**\n * - 10000 = 100% upvote\n * - 0 = remove vote\n * - -10000 = 100% downvote\n *\n * @example\n * ```typescript\n * const voteMutation = useVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Upvote a post\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: 10000\n * });\n *\n * // Remove vote\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: 0\n * });\n *\n * // Downvote\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: -10000\n * });\n * ```\n *\n * @remarks\n * broadcastMode: async — Votes don't require block confirmation.\n * The vote is accepted into the mempool immediately; UI can optimistically update.\n */\nexport function useVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"vote\"],\n username,\n ({ author, permlink, weight }) => [\n buildVoteOp(username!, author, permlink, weight)\n ],\n async (result: any, variables) => {\n // Optimistic vote list + payout update (no-op when the cache already\n // reflects this vote — see applyVoteCacheUpdate).\n applyVoteCacheUpdate(username, variables);\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(120, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation — deferred for async broadcasts since onSuccess fires\n // at mempool acceptance before block inclusion.\n if (auth?.adapter?.invalidateQueries) {\n const doInvalidate = () => {\n auth.adapter!.invalidateQueries!([\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n QueryKeys.accounts.full(username)\n ]);\n };\n const mode = broadcastMode ?? 'async';\n if (mode === 'async') {\n setTimeout(doInvalidate, 4000);\n } else {\n doInvalidate();\n }\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys, getQueryClient } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildReblogOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { EntriesCacheManagement } from \"../cache/entries-cache-management\";\n\n/**\n * Payload for reblogging a post.\n */\nexport interface ReblogPayload {\n /** Original post author */\n author: string;\n /** Original post permlink */\n permlink: string;\n /** If true, removes the reblog instead of creating it */\n deleteReblog?: boolean;\n}\n\n/**\n * React Query mutation hook for reblogging posts.\n *\n * This mutation broadcasts a custom_json operation to reblog (or un-reblog)\n * a post to the user's blog feed.\n *\n * @param username - The username performing the reblog (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 130) if adapter.recordActivity is available\n * - Invalidates blog feed cache to show the reblogged post\n * - Invalidates post cache to update reblog status\n *\n * **Reblog vs Delete:**\n * - deleteReblog: false (default) - Creates a reblog\n * - deleteReblog: true - Removes an existing reblog\n *\n * @example\n * ```typescript\n * const reblogMutation = useReblog(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Reblog a post\n * reblogMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post'\n * });\n *\n * // Remove a reblog\n * reblogMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * deleteReblog: true\n * });\n * ```\n */\nexport function useReblog(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"reblog\"],\n username,\n ({ author, permlink, deleteReblog }) => [\n buildReblogOp(username!, author, permlink, deleteReblog ?? false)\n ],\n async (result: any, variables) => {\n // Optimistic reblog count update\n const entry = EntriesCacheManagement.getEntry(variables.author, variables.permlink);\n if (entry) {\n const newCount = Math.max(0, (entry.reblogs ?? 0) + (variables.deleteReblog ? -1 : 1));\n EntriesCacheManagement.updateReblogsCount(variables.author, variables.permlink, newCount);\n }\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(130, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation — deferred for async broadcasts since onSuccess fires\n // at mempool acceptance before block inclusion.\n const invalidate = () => {\n const qc = getQueryClient();\n qc.invalidateQueries({\n queryKey: QueryKeys.posts.accountPostsBlogPrefix(username!),\n });\n if (auth?.adapter?.invalidateQueries) {\n auth.adapter.invalidateQueries([\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n QueryKeys.posts.rebloggedBy(variables.author, variables.permlink),\n ]);\n }\n };\n const mode = broadcastMode ?? 'async';\n if (mode === 'async') {\n setTimeout(invalidate, 4000);\n } else {\n invalidate();\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\n/**\n * Beneficiary account and weight.\n */\nexport interface Beneficiary {\n /** Beneficiary account name */\n account: string;\n /** Beneficiary weight (10000 = 100%) */\n weight: number;\n}\n\n/**\n * Payload for creating a comment or post.\n */\nexport interface CommentPayload {\n /** Author of the comment/post */\n author: string;\n /** Permlink of the comment/post */\n permlink: string;\n /** Parent author (empty string for top-level posts) */\n parentAuthor: string;\n /** Parent permlink (category/tag for top-level posts) */\n parentPermlink: string;\n /** Title of the post (empty for comments) */\n title: string;\n /** Content body */\n body: string;\n /** JSON metadata object */\n jsonMetadata: Record;\n /**\n * Optional: set when this operation edits existing content rather than creating it.\n *\n * A `comment` operation is byte-identical for a create and an update, so only the\n * caller knows which it is. When set, no content activity is recorded. Activity\n * rewards content creation. Without this, an edit of content published elsewhere\n * is credited as content created here. Never broadcast.\n */\n isUpdate?: boolean;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"1000000.000 HBD\") */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n /** Beneficiaries array */\n beneficiaries?: Beneficiary[];\n };\n}\n\n/**\n * React Query mutation hook for creating posts and comments.\n *\n * This mutation broadcasts a comment operation (and optionally comment_options)\n * to create a new post or reply on the Hive blockchain.\n *\n * @param username - The username creating the comment/post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 100 for posts, 110 for comments) if adapter.recordActivity is\n * available, unless the payload sets `isUpdate`\n * - Invalidates feed caches to show the new content\n * - Invalidates parent post cache if this is a reply\n *\n * **Operations:**\n * - Always includes a comment operation\n * - Optionally includes comment_options operation for beneficiaries/rewards\n *\n * **Post vs Comment:**\n * - Post: parentAuthor = \"\", parentPermlink = category/tag\n * - Comment: parentAuthor = parent author, parentPermlink = parent permlink\n *\n * @example\n * ```typescript\n * const commentMutation = useComment(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Create a post\n * commentMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post-20260209',\n * parentAuthor: '',\n * parentPermlink: 'technology',\n * title: 'My Awesome Post',\n * body: 'This is the post content...',\n * jsonMetadata: {\n * tags: ['technology', 'hive'],\n * app: 'ecency/3.0.0'\n * },\n * options: {\n * beneficiaries: [\n * { account: 'ecency', weight: 500 }\n * ]\n * }\n * });\n *\n * // Create a comment\n * commentMutation.mutate({\n * author: 'bob',\n * permlink: 're-alice-my-awesome-post-20260209',\n * parentAuthor: 'alice',\n * parentPermlink: 'my-awesome-post-20260209',\n * title: '',\n * body: 'Great post!',\n * jsonMetadata: { app: 'ecency/3.0.0' }\n * });\n * ```\n */\n/**\n * Resolve which content activity a broadcast earns, or `null` for none.\n *\n * Content activity rewards publishing, so an update earns nothing: the `comment`\n * operation an edit broadcasts is indistinguishable from a create on chain, which\n * leaves the caller as the only party that can tell them apart. Without this, editing\n * a post first published on another frontend is credited here as a post.\n */\nexport function resolveContentActivityType(\n payload: Pick\n): 100 | 110 | null {\n if (payload.isUpdate) {\n return null;\n }\n\n return payload.parentAuthor ? 110 : 100;\n}\n\nexport function useComment(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"comment\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n payload.parentAuthor,\n payload.parentPermlink,\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n beneficiaries = []\n } = payload.options;\n\n const extensions: any[] = [];\n\n // Add beneficiaries extension if provided\n if (beneficiaries.length > 0) {\n // Sort beneficiaries alphabetically by account name (required by blockchain)\n const sortedBeneficiaries = [...beneficiaries].sort((a, b) =>\n a.account.localeCompare(b.account)\n );\n\n extensions.push([\n 0,\n {\n beneficiaries: sortedBeneficiaries.map(b => ({\n account: b.account,\n weight: b.weight\n }))\n }\n ]);\n }\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n extensions\n )\n );\n }\n\n return operations;\n },\n async (result: any, variables) => {\n // Determine if this is a post or comment\n const isPost = !variables.parentAuthor;\n const activityType = resolveContentActivityType(variables);\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (activityType !== null && auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(activityType, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation (always runs regardless of recordActivity outcome)\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username),\n QueryKeys.resourceCredits.account(username!)\n ];\n\n // If this is a reply, invalidate parent post and discussions\n if (!isPost) {\n // Invalidate parent entry\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n // Invalidate discussions (matches all sort orders)\n // Use partial key to match all sort order variants\n // For nested replies, use rootAuthor/rootPermlink to match the root post's discussions\n // Fall back to parentAuthor/parentPermlink for direct replies to posts\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n }\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { Entry } from \"../types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\n\n/**\n * Adds an optimistic entry to all discussions caches for the given root post.\n * Uses predicate matching to find all sort order variants.\n */\nexport function addOptimisticDiscussionEntry(\n entry: Entry,\n rootAuthor: string,\n rootPermlink: string,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n const queries = queryClient.getQueriesData({\n predicate: (query) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === rootAuthor &&\n key[3] === rootPermlink\n );\n },\n });\n\n for (const [queryKey, data] of queries) {\n if (data) {\n queryClient.setQueryData(queryKey, [entry, ...data]);\n }\n }\n}\n\n/**\n * Removes an entry from all discussions caches for the given root post.\n * Returns the previous state for rollback.\n */\nexport function removeOptimisticDiscussionEntry(\n author: string,\n permlink: string,\n rootAuthor: string,\n rootPermlink: string,\n qc?: QueryClient\n): Map {\n const queryClient = qc ?? getQueryClient();\n const snapshots = new Map();\n\n const queries = queryClient.getQueriesData({\n predicate: (query) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === rootAuthor &&\n key[3] === rootPermlink\n );\n },\n });\n\n for (const [queryKey, data] of queries) {\n if (data) {\n snapshots.set(queryKey, data);\n queryClient.setQueryData(\n queryKey,\n data.filter(\n (e) => e.author !== author || e.permlink !== permlink\n )\n );\n }\n }\n\n return snapshots;\n}\n\n/**\n * Restores discussion cache snapshots (for rollback on error).\n */\nexport function restoreDiscussionSnapshots(\n snapshots: Map,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n for (const [queryKey, data] of snapshots) {\n queryClient.setQueryData(queryKey, data);\n }\n}\n\n/**\n * Updates a specific entry in the SDK entry cache.\n * Returns the previous entry for rollback.\n */\nexport function updateEntryInCache(\n author: string,\n permlink: string,\n updates: Partial,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n const path = `/@${author}/${permlink}`;\n const previous = queryClient.getQueryData(QueryKeys.posts.entry(path));\n\n if (previous) {\n queryClient.setQueryData(QueryKeys.posts.entry(path), {\n ...previous,\n ...updates,\n });\n }\n\n return previous;\n}\n\n/**\n * Restores an entry in cache (for rollback on error).\n */\nexport function restoreEntryInCache(\n author: string,\n permlink: string,\n entry: Entry,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n const path = `/@${author}/${permlink}`;\n queryClient.setQueryData(QueryKeys.posts.entry(path), entry);\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildDeleteCommentOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport {\n removeOptimisticDiscussionEntry,\n restoreDiscussionSnapshots,\n} from \"../cache/discussions-cache-utils\";\nimport type { Entry } from \"../types\";\n\n/**\n * Payload for deleting a comment or post.\n */\nexport interface DeleteCommentPayload {\n /** Author of the comment/post to delete */\n author: string;\n /** Permlink of the comment/post to delete */\n permlink: string;\n /** Optional: Parent author (for cache invalidation of discussions) */\n parentAuthor?: string;\n /** Optional: Parent permlink (for cache invalidation of discussions) */\n parentPermlink?: string;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n}\n\n/**\n * React Query mutation hook for deleting posts and comments.\n *\n * This mutation broadcasts a delete_comment operation to the Hive blockchain.\n * Includes optimistic removal from discussions cache with rollback on error.\n *\n * @param username - The username deleting the comment/post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n */\nexport function useDeleteComment(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"deleteComment\"],\n username,\n ({ author, permlink }) => [\n buildDeleteCommentOp(author, permlink)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username)\n ];\n\n // If this is a reply, invalidate parent post and discussions\n if (variables.parentAuthor && variables.parentPermlink) {\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n }\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n {\n broadcastMode,\n // Optimistic removal: remove from discussions cache before broadcast\n onMutate: async (variables) => {\n const rootAuthor = variables.rootAuthor || variables.parentAuthor;\n const rootPermlink = variables.rootPermlink || variables.parentPermlink;\n\n if (rootAuthor && rootPermlink) {\n const snapshots = removeOptimisticDiscussionEntry(\n variables.author,\n variables.permlink,\n rootAuthor,\n rootPermlink\n );\n return { snapshots };\n }\n return {};\n },\n // Rollback on error: restore discussions cache\n onError: (_error, _variables, context) => {\n const { snapshots } = (context as { snapshots?: Map }) ?? {};\n if (snapshots) {\n restoreDiscussionSnapshots(snapshots);\n }\n },\n }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\n/**\n * Payload for creating a cross-post.\n */\nexport interface CrossPostPayload {\n /** Author of the cross-post (current user) */\n author: string;\n /** Permlink of the cross-post (usually: original-permlink-community-id) */\n permlink: string;\n /** Community ID to cross-post to (used as parent_permlink) */\n parentPermlink: string;\n /** Title of the cross-post (same as original) */\n title: string;\n /** Body of the cross-post (includes reference to original) */\n body: string;\n /** JSON metadata (must include original_author, original_permlink, tags, app) */\n jsonMetadata: Record;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"0.000 HBD\" for declined payout) */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n };\n}\n\n/**\n * React Query mutation hook for creating cross-posts.\n *\n * A cross-post is a special type of post that references an original post\n * and publishes it to a different community.\n *\n * @param username - The username creating the cross-post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates feed/blog caches to show the new cross-post\n *\n * **Operations:**\n * - Always includes a comment operation (with empty parent_author for top-level post)\n * - Optionally includes comment_options operation for rewards/beneficiaries\n *\n * **Metadata Requirements:**\n * The jsonMetadata must include:\n * - `original_author`: Author of the original post\n * - `original_permlink`: Permlink of the original post\n * - `tags`: Tags for the cross-post (typically [\"cross-post\"])\n * - `app`: Application identifier (e.g., \"ecency/3.0.0-vision\")\n *\n * @example\n * ```typescript\n * const crossPostMutation = useCrossPost(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Create a cross-post\n * crossPostMutation.mutate({\n * author: 'alice',\n * permlink: 'great-post-hive-123456',\n * parentPermlink: 'hive-123456', // community ID\n * title: 'Great Post',\n * body: 'This is a cross post of [@bob/great-post](/technology/@bob/great-post) by @alice.

Check this out!',\n * jsonMetadata: {\n * app: 'ecency/3.0.0-vision',\n * tags: ['cross-post'],\n * original_author: 'bob',\n * original_permlink: 'great-post'\n * },\n * options: {\n * maxAcceptedPayout: '0.000 HBD',\n * allowCurationRewards: false\n * }\n * });\n * ```\n */\nexport function useCrossPost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"cross-post\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation (empty parent_author for top-level post)\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n \"\", // empty parent_author for top-level post\n payload.parentPermlink, // community ID\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n } = payload.options;\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n [] // No beneficiaries for cross-posts\n )\n );\n }\n\n return operations;\n },\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username),\n // Invalidate target community feed so cross-post appears\n {\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"posts-ranked\" &&\n key[3] === variables.parentPermlink\n );\n }\n }\n ];\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\nimport type { Beneficiary } from \"./use-comment\";\n\n/**\n * Payload for updating a reply/comment.\n */\nexport interface UpdateReplyPayload {\n /** Author of the comment/post */\n author: string;\n /** Permlink of the comment/post being updated */\n permlink: string;\n /** Parent author */\n parentAuthor: string;\n /** Parent permlink */\n parentPermlink: string;\n /** Title (empty for comments) */\n title: string;\n /** Updated content body */\n body: string;\n /** Updated JSON metadata object */\n jsonMetadata: Record;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"1000000.000 HBD\") */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n /** Beneficiaries array */\n beneficiaries?: Beneficiary[];\n };\n}\n\n/**\n * React Query mutation hook for updating existing replies/comments.\n *\n * This mutation broadcasts a comment operation (and optionally comment_options)\n * to update an existing reply/comment on the Hive blockchain.\n *\n * @param username - The username updating the comment (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates parent post cache to reflect the updated comment\n * - Invalidates discussions cache (all sort orders)\n * - Invalidates RC cache (RC decreases after updating)\n *\n * **Operations:**\n * - Always includes a comment operation\n * - Optionally includes comment_options operation for beneficiaries/rewards\n *\n * **Important:**\n * - Updates use the same comment operation as creating new comments\n * - The blockchain identifies this as an update based on matching author/permlink\n * - Only the author can update their own content\n * - Content can only be updated before payout (within 7 days)\n *\n * @example\n * ```typescript\n * const updateReplyMutation = useUpdateReply(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Update a reply\n * updateReplyMutation.mutate({\n * author: 'alice',\n * permlink: 're-bob-my-post-20260209',\n * parentAuthor: 'bob',\n * parentPermlink: 'my-post-20260209',\n * title: '',\n * body: 'Updated comment content!',\n * jsonMetadata: {\n * tags: ['comment'],\n * app: 'ecency/3.0.0-vision'\n * },\n * rootAuthor: 'bob',\n * rootPermlink: 'my-post-20260209'\n * });\n * ```\n */\nexport function useUpdateReply(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"update-reply\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation (same operation for create and update)\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n payload.parentAuthor,\n payload.parentPermlink,\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n beneficiaries = []\n } = payload.options;\n\n const extensions: any[] = [];\n\n // Add beneficiaries extension if provided\n if (beneficiaries.length > 0) {\n // Sort beneficiaries alphabetically by account name (required by blockchain)\n const sortedBeneficiaries = [...beneficiaries].sort((a, b) =>\n a.account.localeCompare(b.account)\n );\n\n extensions.push([\n 0,\n {\n beneficiaries: sortedBeneficiaries.map(b => ({\n account: b.account,\n weight: b.weight\n }))\n }\n ]);\n }\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n extensions\n )\n );\n }\n\n return operations;\n },\n async (_result: any, variables) => {\n // No activity is recorded here. Activity rewards creating content. Every\n // broadcast from this mutation edits content that already exists.\n\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.resourceCredits.account(username!)\n ];\n\n // Invalidate parent entry\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n // Invalidate discussions (matches all sort orders)\n // Use partial key to match all sort order variants\n // For nested replies, use rootAuthor/rootPermlink to match the root post's discussions\n // Fall back to parentAuthor/parentPermlink for direct replies to posts\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildPromoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for promoting a post using Ecency Points.\n */\nexport interface PromotePayload {\n /** Post author */\n author: string;\n /** Post permlink */\n permlink: string;\n /** Promotion duration in days */\n duration: number;\n}\n\n/**\n * React Query mutation hook for promoting posts.\n *\n * This mutation broadcasts a custom_json operation to promote a post\n * using Ecency Points. The post will appear in promoted feeds for the\n * specified duration.\n *\n * @param username - The username promoting the post (required for broadcast, deducts points from this user)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates promoted posts cache to show newly promoted content\n * - Invalidates user points balance\n * - Invalidates post cache to update promotion status\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"ecency_promote\"\n * - JSON: {\"user\": \"username\", \"author\": \"postauthor\", \"permlink\": \"postpermlink\", \"duration\": 7}\n * - Authority: Active key (required for point spending)\n *\n * **Cost:**\n * - Costs Ecency Points based on duration\n * - User must have sufficient points balance\n *\n * @example\n * ```typescript\n * const promoteMutation = usePromote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Promote a post for 7 days\n * promoteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-great-post',\n * duration: 7\n * });\n * ```\n */\nexport function usePromote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"ecency\", \"promote\"],\n username,\n ({ author, permlink, duration }) => [\n buildPromoteOp(username!, author, permlink, duration)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n // Invalidate promoted posts feed\n [...QueryKeys.posts._promotedPrefix],\n // Invalidate user points balance\n [...QueryKeys.points._prefix(username!)],\n // Invalidate specific post cache to update promotion status\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport type ValidatePostCreatingOptions = {\n delays?: number[];\n};\n\nconst DEFAULT_VALIDATE_POST_DELAYS = [3000, 3000, 3000];\n\nconst delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));\n\nasync function getContent(author: string, permlink: string): Promise {\n return callRPC(\"condenser_api.get_content\", [\n author,\n permlink,\n ]) as Promise;\n}\n\nexport async function validatePostCreating(\n author: string,\n permlink: string,\n attempts = 0,\n options?: ValidatePostCreatingOptions\n) {\n const delays = options?.delays ?? DEFAULT_VALIDATE_POST_DELAYS;\n\n let response: Entry | undefined;\n try {\n response = await getContent(author, permlink);\n } catch (e) {\n response = undefined;\n }\n\n if (response || attempts >= delays.length) {\n return;\n }\n\n const waitMs = delays[attempts];\n if (waitMs > 0) {\n await delay(waitMs);\n }\n\n return validatePostCreating(author, permlink, attempts + 1, options);\n}\n","export * from \"./use-record-activity\";\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\ntype ActivityType =\n // Editor related\n | \"post-created\"\n | \"post-updated\"\n | \"post-scheduled\"\n | \"draft-created\"\n | \"video-published\"\n\n // Legacy editor related\n | \"legacy-post-created\"\n | \"legacy-post-updated\"\n | \"legacy-post-scheduled\"\n | \"legacy-draft-created\"\n | \"legacy-video-published\"\n\n // Perks related\n | \"perks-points-by-qr\"\n | \"perks-account-boost\"\n | \"perks-promote\"\n | \"perks-boost-plus\"\n | \"points-claimed\"\n | \"spin-rolled\"\n\n // Signup related\n | \"signed-up-with-wallets\"\n | \"signed-up-with-email\";\n\nexport interface RecordActivityOptions {\n url?: string;\n domain?: string;\n}\n\n/**\n * Get current location info safely (works in browser and Node.js)\n * Returns empty strings in non-browser environments\n */\nfunction getLocationInfo(): { url: string; domain: string } {\n if (typeof window !== \"undefined\" && window.location) {\n return {\n url: window.location.href,\n domain: window.location.host,\n };\n }\n return { url: \"\", domain: \"\" };\n}\n\nexport function useRecordActivity(\n username: string | undefined,\n activityType: ActivityType,\n options?: RecordActivityOptions\n) {\n return useMutation({\n mutationKey: [\"analytics\", activityType],\n mutationFn: async () => {\n if (!activityType) {\n throw new Error(\"[SDK][Analytics] – no activity type provided\");\n }\n const fetchApi = getBoundFetch();\n\n // Use provided values or auto-detect from browser environment\n // Falls back to empty strings in non-browser environments (Node.js, React Native, etc.)\n const locationInfo = getLocationInfo();\n const url = options?.url ?? locationInfo.url;\n const domain = options?.domain ?? locationInfo.domain;\n\n try {\n await fetchApi(CONFIG.plausibleHost + \"/api/event\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n name: activityType,\n url,\n domain,\n props: {\n username,\n },\n }),\n });\n } catch {\n // Analytics is fire-and-forget - network failures, ad blockers,\n // and CORS issues should not bubble up as user-facing errors\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { LeaderBoardDuration, LeaderBoardItem } from \"../types\";\n\nexport function getDiscoverLeaderboardQueryOptions(duration: LeaderBoardDuration) {\n return queryOptions({\n queryKey: [\"analytics\", \"discover-leaderboard\", duration],\n queryFn: async ({ signal }) => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/leaderboard/${duration}`,\n { signal }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch leaderboard: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { CurationDuration, CurationItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getDiscoverCurationQueryOptions(duration: CurationDuration) {\n return queryOptions({\n queryKey: [\"analytics\", \"discover-curation\", duration],\n queryFn: async ({ signal }) => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/curation/${duration}`,\n { signal }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch curation data: ${response.status}`);\n }\n\n const data = (await response.json()) as CurationItem[];\n\n // Fetch account data for efficiency calculation\n const accounts = data.map((item) => item.account);\n const accountsResponse = await callRPC(\"condenser_api.get_accounts\", [accounts]);\n\n // Calculate efficiency for each curator\n for (let index = 0; index < accountsResponse.length; index++) {\n const element = accountsResponse[index];\n const curator = data[index];\n\n // Convert Asset to string if needed\n const vestingShares = typeof element.vesting_shares === 'string'\n ? element.vesting_shares\n : element.vesting_shares.toString();\n const receivedVestingShares = typeof element.received_vesting_shares === 'string'\n ? element.received_vesting_shares\n : element.received_vesting_shares.toString();\n const delegatedVestingShares = typeof element.delegated_vesting_shares === 'string'\n ? element.delegated_vesting_shares\n : element.delegated_vesting_shares.toString();\n const vestingWithdrawRate = typeof element.vesting_withdraw_rate === 'string'\n ? element.vesting_withdraw_rate\n : element.vesting_withdraw_rate.toString();\n\n const effectiveVest: number =\n parseFloat(vestingShares) +\n parseFloat(receivedVestingShares) -\n parseFloat(delegatedVestingShares) -\n parseFloat(vestingWithdrawRate);\n // `hp` is the reward in Hive Power; the denominator stays in VESTS, which\n // is what the ranking has always compared. Every curator is scaled the\n // same way, so the ordering is unaffected by the unit mismatch.\n curator.efficiency = curator.hp / effectiveVest;\n }\n\n // Sort by efficiency descending\n data.sort((a: CurationItem, b: CurationItem) => b.efficiency - a.efficiency);\n\n return data;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { PageStatsResponse } from \"../types\";\n\n/**\n * Get page statistics from the private analytics API\n *\n * @param url - URL to get stats for\n * @param dimensions - Dimensions to query (default: [])\n * @param metrics - Metrics to query (default: [\"visitors\", \"pageviews\", \"visit_duration\"])\n * @param dateRange - Date range for the query (e.g. \"day\", \"7d\", \"30d\", \"all\")\n */\nexport function getPageStatsQueryOptions(\n url: string,\n dimensions: string[] = [],\n metrics: string[] = [\"visitors\", \"pageviews\", \"visit_duration\"],\n dateRange?: string\n) {\n // Sort arrays to ensure stable query keys regardless of input order\n const sortedDimensions = [...dimensions].sort();\n const sortedMetrics = [...metrics].sort();\n\n return queryOptions({\n queryKey: [\"analytics\", \"page-stats\", url, sortedDimensions, sortedMetrics, dateRange],\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/api/stats\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n metrics,\n url: encodeURIComponent(url),\n dimensions,\n date_range: dateRange,\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch page stats: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!url,\n // Analytics data should always be fresh - users expect current stats when changing range\n staleTime: 0,\n });\n}\n","/**\n * 3Speak takes an 11% beneficiary share on posts that embed one of its videos.\n *\n * This lives in the SDK because the rule is a payout contract that both the web app and the\n * mobile app have to apply identically. It was previously duplicated in each, which meant a\n * change to the weight, or to what counts as an embed, could land on one platform and not the\n * other and silently misroute revenue.\n */\n\n/** A beneficiary route as it appears in `comment_options`. */\nexport interface ThreeSpeakBeneficiaryRoute {\n account: string;\n weight: number;\n src?: string;\n}\n\nexport const THREESPEAK_BENEFICIARY_ACCOUNT = \"threespeakfund\";\n\n/** Beneficiary weight in basis points: 1100 = 11%. */\nexport const THREESPEAK_BENEFICIARY_WEIGHT = 1100;\n\n/**\n * Whether the body embeds a 3Speak video.\n *\n * Matches an actual embed url (e.g. `https://play.3speak.tv/embed?v=user/id`), not a plain\n * text mention of \"3speak.tv/embed\", which would otherwise attach an 11% route to a post that\n * merely talks about 3Speak.\n *\n * `3speak.tv` must be the host, either bare or under dot-delimited subdomains. The previous\n * `[a-z.]*` prefix also matched a lookalike domain such as `fake3speak.tv`, which would have\n * routed 11% of a user's rewards to threespeakfund for a video 3Speak never hosted. Matching\n * is case-insensitive because hostnames are, and a missed match means the route is silently\n * not attached rather than anything failing loudly.\n *\n * Note this requires an `/embed` path segment. The embed url is not built locally, it comes\n * back from 3Speak on upload, so if that shape ever changes this predicate stops recognising\n * it and the route is silently not attached.\n */\nexport function hasThreeSpeakEmbed(body: string): boolean {\n return /https?:\\/\\/([a-z0-9-]+\\.)*3speak\\.tv\\/embed[?/]/i.test(body);\n}\n\n/**\n * Ensures the 3Speak beneficiary is present, at the correct weight, when the body embeds a\n * 3Speak video. Other beneficiaries are preserved and the input is never mutated. Returns the\n * original array reference untouched when there is nothing to change, so callers can use it as\n * a cheap equality check.\n */\nexport function enforceThreeSpeakBeneficiary(\n beneficiaries: T[],\n body: string\n): (T | ThreeSpeakBeneficiaryRoute)[] {\n if (!hasThreeSpeakEmbed(body)) {\n return beneficiaries;\n }\n\n const existing = beneficiaries.find((b) => b.account === THREESPEAK_BENEFICIARY_ACCOUNT);\n\n if (existing && existing.weight === THREESPEAK_BENEFICIARY_WEIGHT) {\n return beneficiaries;\n }\n\n if (existing) {\n return beneficiaries.map((b) =>\n b.account === THREESPEAK_BENEFICIARY_ACCOUNT\n ? { ...b, weight: THREESPEAK_BENEFICIARY_WEIGHT }\n : b\n );\n }\n\n return [\n ...beneficiaries,\n { account: THREESPEAK_BENEFICIARY_ACCOUNT, weight: THREESPEAK_BENEFICIARY_WEIGHT }\n ];\n}\n\n/** Whether a beneficiary entry is the 3Speak route, which the UI locks from editing. */\nexport function isThreeSpeakBeneficiary(account: string): boolean {\n return account === THREESPEAK_BENEFICIARY_ACCOUNT;\n}\n","export * from \"./get-account-token-query-options\";\nexport * from \"./get-account-videos-query-options\";\n","export * from \"./get-decode-memo-query-options\";\n","import { queryOptions } from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\n\nexport function getDecodeMemoQueryOptions(\n username: string,\n memo: string,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"hivesigner\", \"decode-memo\", username],\n queryFn: async () => {\n if (accessToken) {\n const hsClient = new hs.Client({\n accessToken,\n });\n return hsClient.decode(memo);\n }\n },\n });\n}\n","import * as queries from \"./queries\";\n\nconst HiveSignerIntegration = {\n queries,\n};\n\nexport { HiveSignerIntegration };\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { HiveSignerIntegration } from \"../../hivesigner\";\nimport { getBoundFetch, getQueryClient } from \"@/modules/core\";\n\nexport function getAccountTokenQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"3speak\", \"authenticate\", username],\n enabled: !!username && !!accessToken,\n queryFn: async () => {\n if (!username || !accessToken) {\n throw new Error(\"[SDK][Integrations][3Speak] – anon user\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://studio.3speak.tv/mobile/login?username=${username}&hivesigner=true`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n const memoQueryOptions =\n HiveSignerIntegration.queries.getDecodeMemoQueryOptions(\n username,\n (await response.json()).memo,\n accessToken\n );\n await getQueryClient().prefetchQuery(memoQueryOptions);\n const { memoDecoded } = getQueryClient().getQueryData(\n memoQueryOptions.queryKey\n );\n\n return memoDecoded.replace(\"#\", \"\");\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ThreeSpeakVideo } from \"../types\";\nimport { getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { getAccountTokenQueryOptions } from \"./get-account-token-query-options\";\n\nexport function getAccountVideosQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"3speak\", \"videos\", username],\n enabled: !!username && !!accessToken,\n queryFn: async () => {\n if (!username || !accessToken) {\n throw new Error(\"[SDK][Integrations][3Speak] – anon user\");\n }\n\n const tokenQueryOptions = getAccountTokenQueryOptions(\n username,\n accessToken\n );\n\n await getQueryClient().prefetchQuery(tokenQueryOptions);\n const token = getQueryClient().getQueryData(tokenQueryOptions.queryKey);\n if (!token) {\n throw new Error(\"[SDK][Integrations][3Speak] – missing account token\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://studio.3speak.tv/mobile/api/my-videos`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Bearer ${token}`,\n },\n }\n );\n return (await response.json()) as ThreeSpeakVideo[];\n },\n });\n}\n","export * from \"./types\";\nexport * from \"./functions\";\nimport * as queries from \"./queries\";\n\nconst ThreeSpeakIntegration = {\n queries,\n};\n\nexport { ThreeSpeakIntegration };\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getBoundFetch } from \"@/modules/core\";\n\nexport function getHivePoshLinksQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"integrations\", \"hiveposh\", \"links\", username],\n retry: false, // Don't retry on user not found errors\n queryFn: async () => {\n try {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://hiveposh.com/api/v0/linked-accounts/${username}`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n // Handle 400 error when user is not registered on HivePosh\n if (response.status === 400) {\n const errorData = await response.json().catch(() => ({}));\n // Silently return null for \"User Not Connected\" errors\n if (errorData?.message === \"User Not Connected\") {\n return null;\n }\n }\n\n if (!response.ok) {\n return null;\n }\n\n const data = await response.json();\n\n return {\n twitter: {\n username: data.twitter_username,\n profile: data.twitter_profile,\n },\n reddit: {\n username: data.reddit_username,\n profile: data.reddit_profile,\n },\n } satisfies Record<\n \"twitter\" | \"reddit\",\n { username: string; profile: string }\n >;\n } catch (err) {\n // Silently handle all HivePosh API errors\n return null;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch } from \"@/modules/core\";\n\nexport interface StatsResponse {\n results: [\n {\n metrics: number[];\n dimensions: string[];\n },\n ];\n query: {\n site_id: string;\n metrics: string[];\n date_range: string[];\n filters: string[];\n };\n}\ninterface UseStatsQueryOptions {\n url: string;\n dimensions?: string[];\n metrics?: string[];\n /**\n * Which dimension the `url` is matched against. `event:page` (default) matches\n * any visit that viewed the page; `visit:entry_page` matches only visits that\n * landed on it. The API route validates this against an allow-list.\n */\n filterBy?: \"event:page\" | \"visit:entry_page\";\n /**\n * Plausible `date_range`. Pass a tuple `[from, to]` (ISO `YYYY-MM-DD`) to scope\n * the query — e.g. a post's creation date through today. Scoping is essential:\n * ClickHouse orders events by `(site_id, toDate(timestamp), …)` and partitions\n * by month, so a bounded range prunes to a few granules instead of scanning the\n * whole history. Omitting it falls back to the route default (`\"all\"`), which on\n * a high-traffic site is a multi-second full scan. Plausible also accepts the\n * relative keywords `\"day\"`, `\"7d\"`, `\"30d\"`, `\"all\"`.\n */\n dateRange?: string | [string, string];\n enabled?: boolean;\n}\n\nexport function getStatsQueryOptions({\n url,\n dimensions = [],\n metrics = [\"visitors\", \"pageviews\", \"visit_duration\"],\n filterBy = \"event:page\",\n dateRange,\n enabled = true,\n}: UseStatsQueryOptions) {\n return queryOptions({\n queryKey: [\"integrations\", \"plausible\", url, dimensions, metrics, filterBy, dateRange],\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(`${CONFIG.privateApiHost}/api/stats`, {\n method: \"POST\",\n body: JSON.stringify({\n metrics,\n url: encodeURIComponent(url),\n dimensions,\n filterBy,\n // Only forward a range when set, so the route keeps owning the default.\n ...(dateRange ? { date_range: dateRange } : {}),\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n // The proxy route returns 5xx (504/502) with an empty body on a Plausible\n // timeout/transport error, and Plausible itself can return a 4xx error JSON.\n // Without this guard those parse into an object with no `results`, and the UI\n // silently renders 0 — indistinguishable from a real zero. Throw instead so\n // React Query surfaces the error and retries.\n if (!response.ok) {\n throw new Error(`Failed to fetch Plausible stats: ${response.status}`);\n }\n\n return (await response.json()) as StatsResponse;\n },\n enabled: !!url && enabled,\n // Stats queries are now date-scoped and cheap; a single retry rides out a\n // transient slow scan without re-introducing the all-time pile-up.\n retry: 1,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getRcStatsQueryOptions() {\n return queryOptions({\n queryKey: [\"resource-credits\", \"stats\"],\n queryFn: async () => {\n const response = await callRPC(\"rc_api.get_rc_stats\", {});\n return response.rc_stats;\n },\n });\n}\n","import { callRPC } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getAccountRcQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"resource-credits\", \"account\", username],\n queryFn: async (): Promise => {\n const result = await callRPC(\"rc_api.find_rc_accounts\", {\n accounts: [username],\n });\n return result.rc_accounts;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { RcResourceParams } from \"../types/resource-params\";\n\n/**\n * Curve coefficients and sizing constants used to price resource usage.\n *\n * These only change at a hardfork, so the entry is kept for the session:\n * `gcTime: Infinity` is the one value that schedules no gc timer at all, so it\n * does not hold a request's query cache open on the server the way a long\n * finite window would.\n *\n * `staleTime` stays bounded on purpose. Making it infinite too would mean a\n * long-lived session keeps pricing with pre-hardfork coefficients forever,\n * quietly producing wrong RC estimates with no way to recover short of a\n * reload. A day is long enough that this is effectively never refetched, and\n * short enough that a hardfork corrects itself.\n */\nexport function getRcResourceParamsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.resourceCredits.resourceParams(),\n staleTime: 24 * 60 * 60 * 1000,\n gcTime: Infinity,\n queryFn: async () => (await callRPC(\"rc_api.get_resource_params\", {})) as RcResourceParams\n });\n}\n","/** Shape returned by `rc_api.get_resource_params`. Numbers arrive as strings. */\nexport interface RcPriceCurveParams {\n coeff_a: string | number;\n coeff_b: string | number;\n shift: string | number;\n}\n\nexport interface RcResourceDynamicsParams {\n resource_unit: string | number;\n budget_per_time_unit: string | number;\n pool_eq: string | number;\n max_pool_size: string | number;\n}\n\nexport interface RcResourceParamEntry {\n resource_dynamics_params: RcResourceDynamicsParams;\n price_curve_params: RcPriceCurveParams;\n}\n\n/**\n * Per-operation and per-transaction sizing constants. Only the members this\n * module needs are declared; the node returns many more.\n */\nexport interface RcSizeInfo {\n resource_state_bytes: {\n comment_base_size: number;\n comment_permlink_char_size: number;\n comment_beneficiaries_member_size: number;\n vote_size: number;\n transaction_base_size: number;\n [key: string]: number;\n };\n resource_execution_time: {\n comment_time: number;\n comment_options_time: number;\n vote_time: number;\n transaction_time: number;\n verify_authority_time: number;\n [key: string]: number;\n };\n [key: string]: Record;\n}\n\nexport interface RcResourceParams {\n resource_params: Record;\n size_info: RcSizeInfo;\n}\n\n/**\n * Resource order is consensus-defined (`HIVE_RC_NUM_RESOURCE_TYPES`) and the\n * `pool`, `share` and `budget` arrays in rc_stats are indexed by it.\n */\nexport const RC_RESOURCE_NAMES = [\n \"resource_history_bytes\",\n \"resource_new_accounts\",\n \"resource_market_bytes\",\n \"resource_state_bytes\",\n \"resource_execution_time\"\n] as const;\n\nexport type RcResourceName = (typeof RC_RESOURCE_NAMES)[number];\n\nexport interface RcCostBreakdown {\n resource: RcResourceName;\n usage: number;\n cost: number;\n}\n","import { utf8ByteLength, varintByteLength } from \"@/modules/core/utf8\";\nimport {\n RC_RESOURCE_NAMES,\n type RcCostBreakdown,\n type RcPriceCurveParams,\n type RcResourceName,\n type RcResourceParams,\n type RcSizeInfo\n} from \"../types/resource-params\";\nimport type { RcStats } from \"../types/stats\";\n\n/**\n * What the chain actually charges for publishing a comment, rather than the\n * network-average cost of an average comment.\n *\n * The average is a poor guide for posts: it is dominated by short replies,\n * while a long post is charged mostly on `history_bytes`, which is the\n * serialized transaction size. A real case: an account holding 21.3B RC was\n * told it could afford 17 posts, then a 46,620-byte post was rejected needing\n * 23.3B RC, more than that account's entire maximum.\n *\n * This is a direct port of `resource_credits::compute_cost` and the\n * `comment_operation` arm of `count_resources` from hive, so it tracks what\n * the node does instead of approximating it. Verified against a real\n * rejection: usage reproduces exactly and total cost lands within 0.3%, the\n * residual coming from `share` being published rounded to four digits.\n */\n\n/**\n * Fixed transaction header: ref_block_num(2) + ref_block_prefix(4) +\n * expiration(4) + the extensions varint(1).\n */\nconst TRANSACTION_HEADER_BYTES = 11;\n/** Compact signature, 65 bytes each. */\nconst SIGNATURE_BYTES = 65;\n/** asset = amount int64(8) + precision(1) + symbol(7). */\nconst ASSET_BYTES = 16;\n\nconst big = (v: string | number): bigint => BigInt(typeof v === \"string\" ? v : Math.trunc(v));\n\n/**\n * Port of `resource_credits::compute_cost` (libraries/chain/rc/rc_utility.cpp).\n *\n * BigInt is required, not stylistic: `coeff_a` is ~1.05e19, well past\n * Number.MAX_SAFE_INTEGER, so float arithmetic loses the low bits and the\n * result drifts.\n */\nexport function computeResourceCost(\n curve: RcPriceCurveParams,\n pool: number,\n resourceCount: number,\n regenShare: number\n): number {\n if (resourceCount <= 0 || regenShare <= 0) {\n return 0;\n }\n\n const coeffA = big(curve.coeff_a);\n const coeffB = big(curve.coeff_b);\n const shift = big(curve.shift);\n\n // The node shifts before multiplying by the resource count, because\n // regen * coeff_a already risks overflowing 128 bits. Order matters.\n let num = (big(regenShare) * coeffA) >> shift;\n num += 1n;\n num *= big(resourceCount);\n\n const denom = coeffB + (pool > 0 ? big(pool) : 0n);\n if (denom === 0n) {\n return 0;\n }\n\n return Number(num / denom + 1n);\n}\n\nexport interface CommentResourceUsageInput {\n /** Byte length of the serialized transaction. */\n transactionBytes: number;\n permlinkLength: number;\n /** Signatures on the transaction; a normal post carries one. */\n signatures?: number;\n /**\n * Beneficiary count on the companion comment_options, when publish appends\n * one. The chain counts resources for every operation in the transaction,\n * not just the comment.\n */\n beneficiaries?: number;\n hasCommentOptions?: boolean;\n}\n\n/**\n * Port of the `comment_operation` and `comment_options_operation` arms of\n * `count_resources` (libraries/chain/rc/resource_count.cpp). Reproduces the\n * chain's numbers exactly, see the spec.\n */\nexport function countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength,\n signatures = 1,\n beneficiaries = 0,\n hasCommentOptions = false\n }: CommentResourceUsageInput,\n sizeInfo: RcSizeInfo\n): Record {\n const state = sizeInfo.resource_state_bytes;\n const exec = sizeInfo.resource_execution_time;\n\n return {\n resource_history_bytes: transactionBytes,\n resource_new_accounts: 0,\n resource_market_bytes: 0,\n resource_state_bytes:\n state.comment_base_size +\n state.comment_permlink_char_size * permlinkLength +\n state.transaction_base_size +\n // comment_payout_beneficiaries is visited from comment_options\n state.comment_beneficiaries_member_size * beneficiaries,\n resource_execution_time:\n exec.comment_time +\n exec.transaction_time +\n exec.verify_authority_time * signatures +\n (hasCommentOptions ? exec.comment_options_time : 0)\n };\n}\n\nexport interface CommentLike {\n author: string;\n permlink: string;\n parent_author: string;\n parent_permlink: string;\n title: string;\n body: string;\n json_metadata: string;\n}\n\n\n/** A beneficiary route as it appears in comment_options extensions. */\nexport interface BeneficiaryRoute {\n account: string;\n weight: number;\n}\n\n/**\n * The comment_options operation publish appends when the author sets\n * beneficiaries or a non-default reward split.\n */\nexport interface CommentOptionsLike {\n beneficiaries?: BeneficiaryRoute[];\n}\n\n/** Serialized bytes of one string field: its varint length plus its bytes. */\nconst stringFieldBytes = (value: string): number => {\n const length = utf8ByteLength(value);\n return varintByteLength(length) + length;\n};\n\nconst commentOperationBytes = (op: CommentLike): number =>\n 1 + // operation variant id\n stringFieldBytes(op.parent_author) +\n stringFieldBytes(op.parent_permlink) +\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n stringFieldBytes(op.title) +\n stringFieldBytes(op.body) +\n stringFieldBytes(op.json_metadata);\n\nconst commentOptionsBytes = (op: CommentLike, options: CommentOptionsLike): number => {\n const beneficiaries = options.beneficiaries ?? [];\n let bytes =\n 1 + // operation variant id\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n ASSET_BYTES + // max_accepted_payout\n 2 + // percent_hbd\n 2; // allow_votes + allow_curation_rewards\n\n bytes += varintByteLength(beneficiaries.length > 0 ? 1 : 0);\n if (beneficiaries.length > 0) {\n bytes += 1 + varintByteLength(beneficiaries.length); // extension variant id + route count\n beneficiaries.forEach((route) => {\n bytes += stringFieldBytes(route.account) + 2; // weight is uint16\n });\n }\n return bytes;\n};\n\nexport interface CommentTransactionInput {\n op: CommentLike;\n /** Present when publish appends comment_options for beneficiaries or rewards. */\n options?: CommentOptionsLike;\n signatures?: number;\n}\n\n/**\n * Serialized size of the transaction that will carry this comment.\n *\n * This models Hive's binary encoding rather than approximating it: a fixed\n * header, one varint-prefixed field per string, and 65 bytes per signature.\n * Verified byte-exact against eight real transactions read back with\n * `get_transaction_hex`, including one carrying comment_options.\n */\nexport function estimateCommentTransactionBytes({\n op,\n options,\n signatures = 1\n}: CommentTransactionInput): number {\n const operations = [commentOperationBytes(op)];\n if (options) {\n operations.push(commentOptionsBytes(op, options));\n }\n\n return (\n TRANSACTION_HEADER_BYTES +\n varintByteLength(operations.length) +\n operations.reduce((sum, bytes) => sum + bytes, 0) +\n varintByteLength(signatures) +\n SIGNATURE_BYTES * signatures\n );\n}\n\nexport interface EstimateCommentRcCostInput {\n op: CommentLike;\n /** Companion comment_options, when the author set beneficiaries or rewards. */\n options?: CommentOptionsLike;\n rcParams: RcResourceParams | undefined;\n rcStats: Pick | undefined;\n signatures?: number;\n}\n\nexport interface CommentRcCostEstimate {\n /** False until both queries have resolved; callers must not warn on this. */\n ready: boolean;\n cost: number;\n transactionBytes: number;\n breakdown: RcCostBreakdown[];\n}\n\nconst EMPTY: CommentRcCostEstimate = {\n ready: false,\n cost: 0,\n transactionBytes: 0,\n breakdown: []\n};\n\n/** Total RC the chain will charge to broadcast this comment. */\nexport function estimateCommentRcCost({\n op,\n options,\n rcParams,\n rcStats,\n signatures = 1\n}: EstimateCommentRcCostInput): CommentRcCostEstimate {\n if (!rcParams?.resource_params || !rcParams.size_info || !rcStats?.pool || !rcStats.share) {\n return EMPTY;\n }\n\n const transactionBytes = estimateCommentTransactionBytes({ op, options, signatures });\n const usage = countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength: utf8ByteLength(op.permlink),\n signatures,\n beneficiaries: options?.beneficiaries?.length ?? 0,\n hasCommentOptions: !!options\n },\n rcParams.size_info\n );\n\n const regen = Number(rcStats.regen);\n let cost = 0;\n const breakdown: RcCostBreakdown[] = [];\n\n RC_RESOURCE_NAMES.forEach((name, index) => {\n const entry = rcParams.resource_params[name];\n const pool = Number(rcStats.pool[index] ?? 0);\n const share = Number(rcStats.share[index] ?? 0);\n if (!entry || share <= 0) {\n return;\n }\n\n // `usage` is scaled by the resource unit before pricing. It is 1 for the\n // resources a comment touches, but market bytes and new accounts are not.\n const scaled = usage[name] * Number(entry.resource_dynamics_params.resource_unit ?? 1);\n // rc_stats publishes `share` as weight/divisor scaled to 10,000. Kept in\n // BigInt: regen is ~2.4e12 and the product is past the safe-integer range\n // for larger shares.\n const regenShare = Number((BigInt(regen) * BigInt(share)) / 10000n);\n const resourceCost = computeResourceCost(entry.price_curve_params, pool, scaled, regenShare);\n\n cost += resourceCost;\n breakdown.push({ resource: name, usage: scaled, cost: resourceCost });\n });\n\n return { ready: true, cost, transactionBytes, breakdown };\n}\n","import {\n RC_RESOURCE_NAMES,\n type RcCostBreakdown,\n type RcResourceName,\n type RcResourceParams\n} from \"../types/resource-params\";\nimport type { RcStats } from \"../types/stats\";\nimport { computeResourceCost } from \"./estimate-comment-rc-cost\";\n\nexport type RcResourceUsage = Record;\n\nexport interface RcPricedUsage {\n cost: number;\n breakdown: RcCostBreakdown[];\n}\n\n/**\n * Turns per-resource usage into an RC cost.\n *\n * This is the single pricing path. Every RC figure the app shows, the publish\n * warning, the comment warning, the vote warning and the credits tooltip, goes\n * through here, so they cannot disagree with each other or with the chain.\n */\nexport function priceRcUsage(\n usage: RcResourceUsage,\n rcParams: RcResourceParams,\n rcStats: Pick\n): RcPricedUsage {\n const regen = Number(rcStats.regen);\n let cost = 0;\n const breakdown: RcCostBreakdown[] = [];\n\n RC_RESOURCE_NAMES.forEach((name, index) => {\n const entry = rcParams.resource_params[name];\n const pool = Number(rcStats.pool[index] ?? 0);\n const share = Number(rcStats.share[index] ?? 0);\n if (!entry || share <= 0) {\n return;\n }\n\n const scaled = usage[name] * Number(entry.resource_dynamics_params.resource_unit ?? 1);\n // rc_stats publishes `share` as weight/divisor scaled to 10,000. Kept in\n // BigInt: regen is ~2.4e12 and the product leaves the safe-integer range.\n const regenShare = Number((BigInt(regen) * BigInt(share)) / 10000n);\n const resourceCost = computeResourceCost(entry.price_curve_params, pool, scaled, regenShare);\n\n cost += resourceCost;\n breakdown.push({ resource: name, usage: scaled, cost: resourceCost });\n });\n\n return { cost, breakdown };\n}\n","import { utf8ByteLength, varintByteLength } from \"@/modules/core/utf8\";\nimport type { RcResourceName, RcSizeInfo } from \"../types/resource-params\";\nimport type { RcResourceUsage } from \"./price-rc-usage\";\n\n/**\n * Ports of the per-operation arms of `count_resources`\n * (hive/libraries/chain/rc/resource_count.cpp).\n *\n * Every operation charges three things: the serialized transaction size as\n * history_bytes, a per-operation state footprint, and execution time. Only the\n * middle two differ per operation, which is why they live together here.\n */\n\n/** Fixed header: ref_block_num(2) + ref_block_prefix(4) + expiration(4) + extensions varint(1). */\nexport const TRANSACTION_HEADER_BYTES = 11;\nexport const SIGNATURE_BYTES = 65;\n\nexport const stringFieldBytes = (value: string): number => {\n const length = utf8ByteLength(value);\n return varintByteLength(length) + length;\n};\n\nconst emptyUsage = (): RcResourceUsage => ({\n resource_history_bytes: 0,\n resource_new_accounts: 0,\n resource_market_bytes: 0,\n resource_state_bytes: 0,\n resource_execution_time: 0\n});\n\nexport interface VoteLike {\n voter: string;\n author: string;\n permlink: string;\n}\n\n/** Serialized size of a transaction carrying a single vote. */\nexport function estimateVoteTransactionBytes(op: VoteLike, signatures = 1): number {\n const operationBytes =\n 1 + // operation variant id\n stringFieldBytes(op.voter) +\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n 2; // weight, int16\n\n return (\n TRANSACTION_HEADER_BYTES +\n varintByteLength(1) +\n operationBytes +\n varintByteLength(signatures) +\n SIGNATURE_BYTES * signatures\n );\n}\n\n/**\n * A vote's footprint is fixed: `vote_size` state bytes and `vote_time`\n * execution time, regardless of the post being voted on.\n */\nexport function countVoteResourceUsage(\n { transactionBytes, signatures = 1 }: { transactionBytes: number; signatures?: number },\n sizeInfo: RcSizeInfo\n): RcResourceUsage {\n const state = sizeInfo.resource_state_bytes;\n const exec = sizeInfo.resource_execution_time;\n\n return {\n ...emptyUsage(),\n resource_history_bytes: transactionBytes,\n resource_state_bytes: state.vote_size + state.transaction_base_size,\n resource_execution_time:\n exec.vote_time + exec.transaction_time + exec.verify_authority_time * signatures\n };\n}\n\n/** Resource names, re-exported so callers do not reach into the types module. */\nexport type { RcResourceName };\n","import { calculateRCMana } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\nimport type { RcStats } from \"../types/stats\";\nimport type { RcResourceParams } from \"../types/resource-params\";\nimport { priceRcUsage } from \"./price-rc-usage\";\nimport {\n countVoteResourceUsage,\n estimateVoteTransactionBytes,\n type VoteLike\n} from \"./count-operation-usage\";\nimport {\n countCommentResourceUsage,\n estimateCommentTransactionBytes,\n type CommentLike,\n type CommentOptionsLike\n} from \"./estimate-comment-rc-cost\";\n\n/**\n * Operations the RC pre-check can estimate. Mirrors the keys exposed by\n * `rc_api.get_rc_stats` (see {@link RcStats}[\"ops\"]).\n */\nexport type RcPrecheckOperation = keyof RcStats[\"ops\"];\n\n/** The operation about to be broadcast, when the caller has it. */\nexport type RcPrecheckPayload =\n | { kind: \"comment\"; op: CommentLike; options?: CommentOptionsLike }\n | { kind: \"vote\"; op: VoteLike };\n\nexport interface RcPrecheckInput {\n /** From `getAccountRcQueryOptions(username)` -> rcAccounts[0]. */\n rcAccount: RCAccount | null | undefined;\n /** From `getRcStatsQueryOptions()`. */\n rcStats: RcStats | null | undefined;\n /** The operation the user is about to broadcast. */\n operation: RcPrecheckOperation;\n /**\n * From `getRcResourceParamsQueryOptions()`. Required for an exact estimate;\n * without it the result is not ready rather than silently approximate.\n */\n rcParams?: RcResourceParams | null;\n /**\n * The actual operation about to be broadcast. Supplying it is what makes the\n * estimate exact, because cost is dominated by the serialized transaction\n * size. Without it a minimal operation of that type is priced instead, which\n * is a lower bound: it can miss a marginal case but never invents one.\n */\n payload?: RcPrecheckPayload;\n /**\n * What to price when no payload is supplied.\n *\n * - `\"minimal\"` (default) prices the smallest operation of that type. It is\n * a lower bound, so a pre-submit warning is never invented for an\n * operation that would have succeeded.\n * - `\"average\"` prices the network average the chain publishes. Right for\n * \"how many of these can I afford\" displays, where there is no specific\n * operation in hand and the smallest conceivable one would flatter the\n * count.\n */\n fallback?: \"minimal\" | \"average\";\n /**\n * Safety multiplier applied to the operation cost when deciding\n * whether the broadcast will \"likely fail\". Actual on-chain cost varies with\n * network load, so we keep headroom. Defaults to 1.2.\n */\n buffer?: number;\n}\n\nexport interface RcPrecheckResult {\n /** Both inputs were available, so the estimate is meaningful. */\n ready: boolean;\n /** Current RC mana of the account. */\n currentMana: number;\n /** Maximum RC mana of the account. */\n maxMana: number;\n /**\n * RC cost of the operation itself.\n *\n * Named `avgCost` for backwards compatibility; it is no longer an average.\n * @deprecated prefer `cost`.\n */\n avgCost: number;\n /** RC cost of the operation, computed the way the chain computes it. */\n cost: number;\n /** Serialized transaction size, the dominant term for a comment. */\n transactionBytes: number;\n /** Average cost padded by `buffer`. */\n estimatedCost: number;\n /** `currentMana` is below the padded estimate -> broadcast likely fails. */\n willLikelyFail: boolean;\n /** RC shortfall vs the padded estimate (0 when not failing). */\n deficit: number;\n /** Roughly how many such operations the account can still afford. */\n remaining: number;\n}\n\nconst EMPTY: RcPrecheckResult = {\n ready: false,\n currentMana: 0,\n maxMana: 0,\n avgCost: 0,\n cost: 0,\n transactionBytes: 0,\n estimatedCost: 0,\n willLikelyFail: false,\n deficit: 0,\n remaining: 0,\n};\n\n/**\n * Pure, client-side estimate of whether an account has enough Resource Credits\n * to broadcast an operation, used to warn the user BEFORE they submit instead\n * of failing afterwards with the chain's \"Please wait to transact\" error.\n *\n * Costs are computed the way the chain computes them, from the actual\n * operation, not from the network-wide average. The average is dominated by\n * short replies and badly misleads on posts: it once told an account holding\n * 21.3B RC that it could afford 17 posts, and the next post it tried needed\n * 23.3B.\n *\n * Still a hint, never a hard gate: the buffer covers pool drift between the\n * estimate and the broadcast, and the publish/comment/vote action must stay\n * non-blocking.\n */\nexport function estimateRcPrecheck({\n rcAccount,\n rcStats,\n rcParams,\n operation,\n payload,\n fallback = \"minimal\",\n buffer = 1.2,\n}: RcPrecheckInput): RcPrecheckResult {\n if (!rcAccount || !rcStats?.ops) {\n return EMPTY;\n }\n\n const { current_mana: currentMana, max_mana: maxMana } = calculateRCMana(rcAccount);\n\n const priced = priceOperation(operation, payload, fallback, rcParams, rcStats);\n if (!priced) {\n // Nothing to price against: reporting \"ready\" here would be a silent\n // all-clear, which is the one answer a pre-check must never invent.\n return { ...EMPTY, currentMana, maxMana };\n }\n\n const { cost, transactionBytes } = priced;\n const safeBuffer = Number.isFinite(buffer) && buffer > 0 ? buffer : 1.2;\n const estimatedCost = cost * safeBuffer;\n const willLikelyFail = currentMana < estimatedCost;\n\n return {\n ready: true,\n currentMana,\n maxMana,\n avgCost: cost,\n cost,\n transactionBytes,\n estimatedCost,\n willLikelyFail,\n deficit: willLikelyFail ? Math.ceil(estimatedCost - currentMana) : 0,\n remaining: Math.floor(currentMana / cost),\n };\n}\n\n/**\n * Prices whichever operation the caller is about to broadcast.\n *\n * Comments and votes are the two operations whose cost swings with what the\n * user wrote, so they are priced from the payload, and pricing them needs the\n * curve parameters. Every other operation the type advertises (transfer,\n * custom_json, ...) is fixed-shape and takes the network average the chain\n * publishes, which needs nothing else.\n *\n * When no payload is supplied a minimal operation is priced. That is\n * deliberately a lower bound: it can miss a marginal case, but it never warns\n * about one that would have succeeded.\n *\n * Returns null when the answer would have to be invented, so the caller\n * reports \"not ready\" rather than a zero-cost all-clear.\n */\nfunction priceOperation(\n operation: RcPrecheckOperation,\n payload: RcPrecheckPayload | undefined,\n fallback: \"minimal\" | \"average\",\n rcParams: RcResourceParams | null | undefined,\n rcStats: RcStats\n): { cost: number; transactionBytes: number } | null {\n const average = averageCost(rcStats, operation);\n const pricedFromPayload =\n operation === \"comment_operation\" || operation === \"vote_operation\";\n\n // The average is a number the node already returned. It needs no curve\n // parameters, so a caller pricing a transfer must not be blocked waiting on\n // them, which is how every operation outside these two is priced.\n if (!pricedFromPayload || (!payload && fallback === \"average\")) {\n return average;\n }\n\n // Asked to price a real comment or vote without the inputs to do it. The\n // honest answer is \"not ready\": falling back to the average here is exactly\n // what told an account holding 21.3B RC it could afford 17 more posts.\n if (!rcParams?.resource_params || !rcParams.size_info || !rcStats.pool || !rcStats.share) {\n return null;\n }\n\n const stats = { pool: rcStats.pool, regen: rcStats.regen, share: rcStats.share };\n\n if (operation === \"vote_operation\") {\n const op: VoteLike = payload?.kind === \"vote\" ? payload.op : MINIMAL_VOTE;\n const transactionBytes = estimateVoteTransactionBytes(op);\n const usage = countVoteResourceUsage({ transactionBytes }, rcParams.size_info);\n return { cost: priceRcUsage(usage, rcParams, stats).cost, transactionBytes };\n }\n\n const op: CommentLike = payload?.kind === \"comment\" ? payload.op : MINIMAL_COMMENT;\n const options = payload?.kind === \"comment\" ? payload.options : undefined;\n const transactionBytes = estimateCommentTransactionBytes({ op, options });\n const usage = countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength: op.permlink.length,\n beneficiaries: options?.beneficiaries?.length ?? 0,\n hasCommentOptions: !!options\n },\n rcParams.size_info\n );\n return { cost: priceRcUsage(usage, rcParams, stats).cost, transactionBytes };\n}\n\n/** The network average the chain publishes for an operation, when it has one. */\nfunction averageCost(\n rcStats: RcStats,\n operation: RcPrecheckOperation\n): { cost: number; transactionBytes: number } | null {\n const cost = rcStats.ops[operation]?.avg_cost;\n return typeof cost === \"number\" && cost > 0 ? { cost, transactionBytes: 0 } : null;\n}\n\n/** Smallest realistic operations, used only when the caller has no payload yet. */\nconst MINIMAL_COMMENT: CommentLike = {\n author: \"aaaaaaaaaa\",\n permlink: \"aaaaaaaaaaaaaaaaaaaa\",\n parent_author: \"\",\n parent_permlink: \"hive-100000\",\n title: \"\",\n body: \"\",\n json_metadata: \"{}\"\n};\n\nconst MINIMAL_VOTE: VoteLike = {\n voter: \"aaaaaaaaaa\",\n author: \"aaaaaaaaaa\",\n permlink: \"aaaaaaaaaaaaaaaaaaaa\"\n};\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { GetGameStatus } from \"../types\";\n\nexport function getGameStatusCheckQueryOptions(\n username: string | undefined,\n code: string | undefined,\n gameType: \"spin\"\n) {\n return queryOptions({\n queryKey: [\"games\", \"status-check\", gameType, username],\n enabled: !!username && !!code,\n queryFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Games] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/get-game\",\n {\n method: \"POST\",\n body: JSON.stringify({\n game_type: gameType,\n code,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n return (await response.json()) as GetGameStatus;\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { GameClaim } from \"../types\";\nimport { useRecordActivity } from \"@/modules/analytics/mutations\";\n\n/**\n * POST a single game claim and return the parsed JSON body.\n *\n * A failed post-game comes back from the edge as an HTML gateway page (a 502 was\n * the trail on ECENCY-NEXT-1FCJ), and `response.json()` on that throws a bare\n * `SyntaxError` naming neither the endpoint nor the cause. Check the status and\n * the content type first, then fail with a STABLE, low-cardinality message\n * (content type + status, never the raw body) so these group as a single Sentry\n * issue instead of fragmenting on every distinct error page.\n *\n * Exported for unit testing; the hook below wraps it.\n */\nexport async function gameClaimRequest(\n code: string,\n gameType: \"spin\",\n key: string\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/post-game\",\n {\n method: \"POST\",\n body: JSON.stringify({\n game_type: gameType,\n code,\n key,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n // Media types are case-insensitive; normalise once and reuse in every branch.\n const contentType = (response.headers.get(\"content-type\") ?? \"\")\n .split(\";\")[0]\n .trim()\n .toLowerCase();\n const body = await response.text();\n\n if (!response.ok) {\n // Only fold a short JSON error body into the message; an HTML gateway page\n // (e.g. 502/503) would otherwise fragment the Sentry group per distinct page.\n const detail =\n body && contentType.includes(\"json\") ? `: ${body.slice(0, 200)}` : \"\";\n throw new Error(\n `[SDK][Games] – failed with status ${response.status}${detail}`\n );\n }\n\n if (!contentType.includes(\"json\")) {\n throw new Error(\n `[SDK][Games] – expected JSON but received \"${contentType || \"empty\"}\" response (status ${response.status})`\n );\n }\n\n try {\n return JSON.parse(body) as GameClaim;\n } catch {\n throw new Error(\n `[SDK][Games] – malformed JSON response (status ${response.status})`\n );\n }\n}\n\nexport function useGameClaim(\n username: string | undefined,\n code: string | undefined,\n gameType: \"spin\",\n key: string\n) {\n const { mutateAsync: recordActivity } = useRecordActivity(\n username,\n \"spin-rolled\"\n );\n\n return useMutation({\n mutationKey: [\"games\", \"post\", gameType, username],\n mutationFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Games] – missing auth\");\n }\n\n return gameClaimRequest(code, gameType, key);\n },\n onSuccess() {\n recordActivity();\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { QuestsResponse } from \"../types\";\n\n/**\n * Read-only daily/weekly/monthly quest progress for a user. Aggregates the existing\n * points ledger (no auth required — same sensitivity as `/private-api/points`).\n */\nexport function getQuestsQueryOptions(username: string | undefined) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.quests.status(name),\n enabled: !!name,\n queryFn: async () => {\n if (!name) {\n throw new Error(\"[SDK][Quests] – username wasn't provided\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/quests\",\n {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ username: name }),\n },\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch quests: ${response.status}`);\n }\n\n return (await response.json()) as QuestsResponse;\n },\n staleTime: 30000,\n refetchOnMount: true,\n });\n}\n","/**\n * Shared quest catalog — the single source of truth for which quests exist, their\n * encouraging goals, copy keys and icon hints. Lives in the SDK so the web and mobile\n * clients render an identical, harmonized set. The backend (`/private-api/quests`)\n * returns raw progress + the reward `cap`; this catalog layers the presentation.\n *\n * `goal` is an *encouraging, reachable* daily target and is intentionally independent of\n * the backend reward `cap` (the point at which the existing reward decays to ~0). It is\n * tunable here without any backend change.\n */\n\nexport type QuestTier = \"daily\" | \"weekly\" | \"monthly\";\n\nexport interface QuestCatalogEntry {\n id: string;\n tier: QuestTier;\n /** encouraging, reachable target for the period (tunable, not the reward cap) */\n goal: number;\n /** i18n key suffix; clients resolve e.g. `quests..title` / `.desc` */\n i18nKey: string;\n /** semantic icon hint; each client maps it to its own icon set */\n icon: string;\n}\n\nexport const QUEST_CATALOG: QuestCatalogEntry[] = [\n // Daily\n { id: \"checkin\", tier: \"daily\", goal: 1, i18nKey: \"checkin\", icon: \"check-circle\" },\n { id: \"post\", tier: \"daily\", goal: 1, i18nKey: \"post\", icon: \"pencil\" },\n { id: \"comment\", tier: \"daily\", goal: 3, i18nKey: \"comment\", icon: \"comment\" },\n { id: \"vote\", tier: \"daily\", goal: 10, i18nKey: \"vote\", icon: \"chevron-up-circle\" },\n { id: \"reblog\", tier: \"daily\", goal: 1, i18nKey: \"reblog\", icon: \"repeat\" },\n { id: \"spin\", tier: \"daily\", goal: 1, i18nKey: \"spin\", icon: \"gift\" },\n // Weekly\n { id: \"post\", tier: \"weekly\", goal: 5, i18nKey: \"post\", icon: \"pencil\" },\n { id: \"comment\", tier: \"weekly\", goal: 15, i18nKey: \"comment\", icon: \"comment\" },\n { id: \"vote\", tier: \"weekly\", goal: 50, i18nKey: \"vote\", icon: \"chevron-up-circle\" },\n { id: \"reblog\", tier: \"weekly\", goal: 5, i18nKey: \"reblog\", icon: \"repeat\" },\n // Monthly\n { id: \"post\", tier: \"monthly\", goal: 20, i18nKey: \"post\", icon: \"pencil\" },\n];\n\nexport function getQuestCatalogEntry(tier: QuestTier, id: string) {\n return QUEST_CATALOG.find((q) => q.tier === tier && q.id === id);\n}\n\n/**\n * Shortest body that earns points and counts toward the post/comment quests.\n *\n * MIRRORS the ePoints `CONTENT_MIN_LENGTH` - the backend is the source of truth and\n * rejects anything at or below it, silently. This exists so a client can say so in the\n * composer instead of leaving the user to wonder why their reply never counted.\n */\nexport const QUEST_MIN_CONTENT_LENGTH = 25;\n\n/**\n * The length the backend actually measures. URLs are stripped first, so a reply that is\n * nothing but an image link measures as empty however long it looks. Mirrors the\n * `http(s)://\\S+` strip in the ePoints verifier, including the absence of any trimming.\n *\n * Counts code points, not UTF-16 code units, because the backend measures with Python's\n * `len` on a str. `String.length` would score an astral character (most emoji) as 2,\n * so a reply of 13 emoji would look like 26 here and 13 there: the client would promise\n * points the backend then refuses, which is the exact confusion this is meant to end.\n */\nexport function measureQuestContentLength(body: string | null | undefined): number {\n return Array.from((body ?? \"\").replace(/https?:\\/\\/\\S+/g, \"\")).length;\n}\n\n/**\n * Whether a post or comment body is long enough to earn points and quest credit.\n * Strictly greater than the minimum, matching the backend comparison.\n */\nexport function earnsQuestContentCredit(body: string | null | undefined): boolean {\n return measureQuestContentLength(body) > QUEST_MIN_CONTENT_LENGTH;\n}\n\n// Streak Freeze display config. MIRRORS the ePoints constants\n// (STREAK_FREEZE_PRICE / STREAK_FREEZE_MAX_OWNED) — the server is the source of truth\n// and validates every purchase; these drive the label + button state only, so a drift\n// here never over-charges (the buy is priced server-side).\nexport const STREAK_FREEZE_PRICE = 300;\nexport const STREAK_FREEZE_MAX_OWNED = 2;\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { StreakFreezeBuyResult } from \"../types\";\n\n/** A fresh idempotency key per purchase; guarded for runtimes without crypto.randomUUID. */\nfunction genIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n return `${Date.now()}-${Math.random().toString(36).slice(2)}`;\n}\n\n/**\n * POST a single streak-freeze purchase. Throws on a non-2xx with the server's\n * `.status` + parsed `.data` attached so the caller can branch on 402 (insufficient)\n * / 409 (max owned). Exported for unit testing; the hook below wraps it.\n */\nexport async function buyStreakFreezeRequest(\n code: string\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/streak-freeze/buy\",\n {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ code, idempotency_key: genIdempotencyKey() }),\n }\n );\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to buy streak freeze: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as StreakFreezeBuyResult;\n}\n\n/**\n * Buy one streak freeze (a Points-only sink). The server debits Points, caps owned\n * inventory, and is idempotent per key. On success the quests + points caches are\n * invalidated so the owned count and balance refresh. A 402 (insufficient) / 409 (max\n * owned) is rethrown with `.status` + `.data` so the caller can route to a Points top-up.\n */\nexport function useBuyStreakFreeze(\n username: string | undefined,\n code: string | undefined\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"streak-freeze\", \"buy\", name],\n mutationFn: async () => {\n if (!name || !code) {\n throw new Error(\"[SDK][StreakFreeze] – missing auth\");\n }\n return buyStreakFreezeRequest(code);\n },\n onSuccess() {\n // Balance only changes on a successful debit.\n if (name) {\n queryClient.invalidateQueries({ queryKey: QueryKeys.points._prefix(name) });\n }\n },\n onSettled() {\n // Refresh freezes_owned on success AND error: a 409 (max owned) means the\n // client's count is stale, and without this the \"Protect streak\" button would\n // never hide and the user could keep re-triggering 409s.\n if (name) {\n queryClient.invalidateQueries({ queryKey: QueryKeys.quests.status(name) });\n }\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSubscribeOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for subscribing to a community.\n */\nexport interface SubscribeCommunityPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n}\n\n/**\n * React Query mutation hook for subscribing to a community.\n *\n * This mutation broadcasts a subscribe operation to the Hive blockchain,\n * adding the community to the user's subscription list.\n *\n * @param username - The username subscribing (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates subscriptions cache to show updated subscription list\n * - Invalidates community cache to refetch updated subscriber count\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"subscribe\", {\"community\": \"hive-123456\"}]\n * - Authority: Posting key\n *\n * @example\n * ```typescript\n * const subscribeMutation = useSubscribeCommunity(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Subscribe to a community\n * subscribeMutation.mutate({\n * community: 'hive-123456'\n * });\n * ```\n */\nexport function useSubscribeCommunity(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"subscribe\"],\n username,\n ({ community }) => [\n buildSubscribeOp(username!, community)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.subscriptions(username!),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n QueryKeys.communities.context(username!, variables.community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUnsubscribeOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for unsubscribing from a community.\n */\nexport interface UnsubscribeCommunityPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n}\n\n/**\n * React Query mutation hook for unsubscribing from a community.\n *\n * This mutation broadcasts an unsubscribe operation to the Hive blockchain,\n * removing the community from the user's subscription list.\n *\n * @param username - The username unsubscribing (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates subscriptions cache to show updated subscription list\n * - Invalidates community cache to refetch updated subscriber count\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"unsubscribe\", {\"community\": \"hive-123456\"}]\n * - Authority: Posting key\n *\n * @example\n * ```typescript\n * const unsubscribeMutation = useUnsubscribeCommunity(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Unsubscribe from a community\n * unsubscribeMutation.mutate({\n * community: 'hive-123456'\n * });\n * ```\n */\nexport function useUnsubscribeCommunity(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"unsubscribe\"],\n username,\n ({ community }) => [\n buildUnsubscribeOp(username!, community)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.subscriptions(username!),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n QueryKeys.communities.context(username!, variables.community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'sync' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildMutePostOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for muting/unmuting a post in a community.\n */\nexport interface MutePostPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n /** Post author */\n author: string;\n /** Post permlink */\n permlink: string;\n /** Mute reason/notes (required even for unmute) */\n notes: string;\n /** True to mute, false to unmute */\n mute: boolean;\n}\n\n/**\n * React Query mutation hook for muting/unmuting posts in a community.\n *\n * This mutation broadcasts a custom_json operation to mute (or unmute)\n * a post within a community. Only community moderators/admins can mute posts.\n *\n * @param username - The username performing the mute (required for broadcast, must have permission)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community posts cache to hide muted content\n * - Invalidates post cache to update mute status\n * - Invalidates feed cache to remove muted posts from feeds\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"mutePost\", {\"community\": \"hive-123456\", \"account\": \"author\", \"permlink\": \"post\", \"notes\": \"reason\"}]\n * - Action (unmute): [\"unmutePost\", {\"community\": \"hive-123456\", \"account\": \"author\", \"permlink\": \"post\", \"notes\": \"reason\"}]\n * - Authority: Posting key\n *\n * **Mute vs Unmute:**\n * - mute: true - Mutes the post (hides from community feed)\n * - mute: false - Unmutes the post (restores to community feed)\n *\n * **Permission:**\n * - Only community moderators and admins can mute/unmute posts\n * - Attempting to mute without permission will fail with an error\n *\n * @example\n * ```typescript\n * const mutePostMutation = useMutePost(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Mute a post\n * mutePostMutation.mutate({\n * community: 'hive-123456',\n * author: 'alice',\n * permlink: 'my-post',\n * notes: 'Violates community guidelines',\n * mute: true\n * });\n *\n * // Unmute a post\n * mutePostMutation.mutate({\n * community: 'hive-123456',\n * author: 'alice',\n * permlink: 'my-post',\n * notes: 'Resolved after editing',\n * mute: false\n * });\n * ```\n */\nexport function useMutePost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"mutePost\"],\n username,\n ({ community, author, permlink, notes, mute }) => [\n buildMutePostOp(username!, community, author, permlink, notes, mute)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n // Invalidate specific post cache to update mute status\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n // Invalidate community data\n [\"community\", \"single\", variables.community],\n // Invalidate community feed/posts (matches all sort orders, limits, observers)\n {\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"posts-ranked\" &&\n key[3] === variables.community\n );\n }\n }\n ];\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'sync' }\n );\n}\n","import { useBroadcastMutation, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSetRoleOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Community, CommunityTeam } from \"../types\";\n\n/**\n * Payload for setting a user's role in a community.\n */\nexport interface SetCommunityRolePayload {\n /** Account to set role for */\n account: string;\n /** Role name (e.g., \"admin\", \"mod\", \"member\", \"guest\") */\n role: string;\n}\n\n/**\n * React Query mutation hook for setting a user's role in a community.\n *\n * This mutation broadcasts a setRole operation to the Hive blockchain,\n * updating the role of a community member. Only users with appropriate\n * permissions (community owner/admin) can set roles.\n *\n * @param community - Community name (e.g., \"hive-123456\")\n * @param username - The username setting the role (required for broadcast, must have permission)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to refetch updated team member list\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"setRole\", {\"community\": \"hive-123456\", \"account\": \"user\", \"role\": \"mod\"}]\n * - Authority: Posting key\n *\n * **Role Types:**\n * - \"owner\" - Community owner (full permissions)\n * - \"admin\" - Administrator (can manage settings and team)\n * - \"mod\" - Moderator (can mute posts/users)\n * - \"member\" - Regular member (no special permissions)\n * - \"guest\" - Remove user from team (empty string also works)\n *\n * @example\n * ```typescript\n * const setRoleMutation = useSetCommunityRole('hive-123456', username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Set a user as moderator\n * setRoleMutation.mutate({\n * account: 'alice',\n * role: 'mod'\n * });\n *\n * // Remove a user from the team\n * setRoleMutation.mutate({\n * account: 'bob',\n * role: 'guest'\n * });\n * ```\n */\nexport function useSetCommunityRole(\n community: string,\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"set-role\", community],\n username,\n ({ account, role }) => [\n buildSetRoleOp(username!, community, account, role)\n ],\n async (_result: any, variables) => {\n // Optimistic team update in community cache\n // Query key is [\"community\",\"single\",name,observer] — observer varies, so use predicate\n const qc = getQueryClient();\n qc.setQueriesData(\n { queryKey: QueryKeys.communities.singlePrefix(community) },\n (prev) => {\n if (!prev) return prev;\n const team: CommunityTeam = [...(prev.team ?? [])];\n const idx = team.findIndex(([name]) => name === variables.account);\n if (idx >= 0) {\n team[idx] = [team[idx][0], variables.role, team[idx][2] ?? \"\"];\n } else {\n team.push([variables.account, variables.role, \"\"]);\n }\n return { ...prev, team };\n }\n );\n\n // Cache invalidation — prefix-match all community single queries + context for affected user\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n [...QueryKeys.communities.singlePrefix(community)],\n QueryKeys.communities.context(variables.account, community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUpdateCommunityOp, type CommunityProps } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Community } from \"../types\";\n\n/**\n * Payload for updating community properties.\n * Matches the CommunityProps interface from builders.\n */\nexport type UpdateCommunityPayload = CommunityProps;\n\n/**\n * React Query mutation hook for updating community properties.\n *\n * This mutation broadcasts an updateProps operation to the Hive blockchain,\n * modifying the community's metadata and settings. Only community admins\n * can update community properties.\n *\n * @param community - Community name (e.g., \"hive-123456\")\n * @param username - The username updating the community (required for broadcast, must be admin)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to refetch updated properties\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"updateProps\", {\"community\": \"hive-123456\", \"props\": {...}}]\n * - Authority: Posting key\n *\n * **Properties:**\n * - title - Community display title\n * - about - Short description/tagline\n * - lang - Primary language code (e.g., \"en\")\n * - description - Full community description (markdown supported)\n * - flag_text - Custom text shown when flagging posts\n * - is_nsfw - Whether community contains NSFW content\n *\n * @example\n * ```typescript\n * const updateMutation = useUpdateCommunity('hive-123456', username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Update community properties\n * updateMutation.mutate({\n * title: 'My Awesome Community',\n * about: 'A place for awesome people',\n * lang: 'en',\n * description: '# Welcome\\nThis is our community description',\n * flag_text: 'Please explain why this content violates our rules',\n * is_nsfw: false\n * });\n * ```\n */\nexport function useUpdateCommunity(\n community: string,\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"update\", community],\n username,\n (props) => [\n buildUpdateCommunityOp(username!, community, props)\n ],\n async (_result: any, variables) => {\n // Optimistic property merge in community cache\n // Query key is [\"community\",\"single\",name,observer] — observer varies, so use predicate\n const qc = getQueryClient();\n qc.setQueriesData(\n { queryKey: QueryKeys.communities.singlePrefix(community) },\n (prev) => {\n if (!prev) return prev;\n return { ...prev, ...(variables as unknown as Partial) };\n }\n );\n\n // Cache invalidation — prefix-match all community single queries\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n [...QueryKeys.communities.singlePrefix(community)]\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommunityRegistrationOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for community rewards registration.\n */\nexport interface CommunityRewardsRegisterPayload {\n /** Community account name (usually the community creator's account) */\n name: string;\n}\n\n/**\n * React Query mutation hook for registering to receive community rewards.\n *\n * This mutation broadcasts a custom_json operation to register a community\n * account to receive Ecency Points rewards for community activity.\n *\n * @param username - The username registering for community rewards (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to update registration status\n * - Invalidates points balance to reflect potential initial rewards\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"ecency_registration\"\n * - JSON: {\"name\": \"communityname\"}\n * - Authority: Active key (required for registration)\n *\n * **Purpose:**\n * - Enables communities to receive Ecency Points for activity\n * - One-time registration per community\n * - Can only be done by the community owner/creator\n *\n * @example\n * ```typescript\n * const registerMutation = useRegisterCommunityRewards(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Register community for rewards\n * registerMutation.mutate({\n * name: 'hive-123456'\n * });\n * ```\n */\nexport function useRegisterCommunityRewards(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"registerRewards\"],\n username,\n ({ name }) => [\n buildCommunityRegistrationOp(name)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n // Invalidate community cache to update registration status\n [...QueryKeys.communities.singlePrefix(variables.name)],\n // Invalidate points balance\n [...QueryKeys.points._prefix(username!)],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildPinPostOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface PinPostPayload {\n community: string;\n account: string;\n permlink: string;\n pin: boolean;\n}\n\nexport function usePinPost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"pin-post\"],\n username,\n ({ community, account, permlink, pin }) => [\n buildPinPostOp(username!, community, account, permlink, pin)\n ],\n async (_result, variables) => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.posts.entry(`/@${variables.account}/${variables.permlink}`),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Communities } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getCommunitiesQueryOptions(\n sort: string,\n query?: string,\n limit = 100,\n observer: string | undefined = undefined,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.list(sort, query ?? \"\", limit),\n enabled,\n queryFn: async () => {\n const response = await callRPC(\"bridge.list_communities\", {\n last: \"\",\n limit,\n sort: sort === \"hot\" ? \"rank\" : sort,\n query: query ? query : null,\n observer,\n });\n return (\n response\n ? sort === \"hot\"\n ? response.sort(() => Math.random() - 0.5)\n : response\n : []\n ) as Communities;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { CommunityRole } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getCommunityContextQueryOptions(\n username: string | undefined,\n communityName: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.context(username!, communityName!),\n enabled: !!username && !!communityName,\n queryFn: async () => {\n const response = await callRPC(\"bridge.get_community_context\", {\n account: username,\n name: communityName,\n });\n\n return {\n role: response?.role ?? \"guest\",\n subscribed: response?.subscribed ?? false,\n } satisfies {\n role: CommunityRole;\n subscribed: boolean;\n };\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Community } from \"../types/community\";\nimport { getCommunity } from \"@/modules/bridge\";\nimport { QueryKeys } from \"@/modules/core\";\n\nexport function getCommunityQueryOptions(\n name: string | undefined,\n observer: string | undefined = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.single(name, observer),\n enabled: enabled && !!name,\n queryFn: async () => getCommunity(name ?? \"\", observer) as Promise,\n });\n}\n","import {\n InfiniteData,\n infiniteQueryOptions,\n queryOptions\n} from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Subscription } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * hivemind caps `bridge.list_subscribers` at 100 rows per call, regardless of a\n * larger requested limit.\n */\nexport const SUBSCRIBERS_PAGE_SIZE = 100;\n\ntype SubscribersPage = Subscription[];\ntype SubscribersCursor = string | null;\n\n/**\n * Fetches one page of subscribers.\n *\n * `last` is omitted on the first page rather than passed as an empty string:\n * hivemind reads `\"\"` as a real cursor positioned before the first account and\n * returns zero rows.\n */\nasync function fetchSubscribersPage(\n communityName: string,\n last: SubscribersCursor\n): Promise {\n const response = await callRPC(\"bridge.list_subscribers\", {\n community: communityName,\n limit: SUBSCRIBERS_PAGE_SIZE,\n ...(last ? { last } : {})\n });\n return (response as Subscription[] | null) ?? [];\n}\n\n/**\n * Get the first page of subscribers for a community.\n *\n * @deprecated Returns at most {@link SUBSCRIBERS_PAGE_SIZE} subscribers, which\n * for most communities is a small fraction of the total while looking like the\n * complete list. Prefer {@link getCommunitySubscribersInfiniteQueryOptions}\n * unless a single page is genuinely all that is wanted.\n *\n * @param communityName - The community name (e.g., \"hive-123456\")\n */\nexport function getCommunitySubscribersQueryOptions(communityName: string) {\n return queryOptions({\n queryKey: QueryKeys.communities.subscribers(communityName),\n queryFn: async () => fetchSubscribersPage(communityName, null),\n staleTime: 60000\n });\n}\n\n/**\n * Get all subscribers for a community, paged with hivemind's `last` cursor.\n *\n * @param communityName - The community name (e.g., \"hive-123456\")\n */\nexport function getCommunitySubscribersInfiniteQueryOptions(\n communityName: string\n) {\n return infiniteQueryOptions<\n SubscribersPage,\n Error,\n InfiniteData,\n string[],\n SubscribersCursor\n >({\n queryKey: QueryKeys.communities.subscribersInfinite(communityName),\n initialPageParam: null as SubscribersCursor,\n queryFn: async ({ pageParam }: { pageParam: SubscribersCursor }) =>\n fetchSubscribersPage(communityName, pageParam),\n // The cursor is the previous page's last account name. A short page is the\n // end of the list.\n getNextPageParam: (lastPage: SubscribersPage): SubscribersCursor =>\n lastPage?.length >= SUBSCRIBERS_PAGE_SIZE\n ? lastPage[lastPage.length - 1]?.[0] ?? null\n : null,\n staleTime: 60000\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountNotification } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype NotifPage = AccountNotification[];\ntype NotifCursor = number | null;\n\n/**\n * Get account notifications for a community (bridge API)\n *\n * @param account - The account/community name\n * @param limit - Number of notifications per page\n */\nexport function getAccountNotificationsInfiniteQueryOptions(\n account: string,\n limit: number\n) {\n return infiniteQueryOptions<\n NotifPage,\n Error,\n InfiniteData,\n (string | number)[],\n NotifCursor\n >({\n queryKey: QueryKeys.communities.accountNotifications(account, limit),\n initialPageParam: null as NotifCursor,\n\n // Errors are deliberately not caught. Returning [] on failure made an RPC\n // outage indistinguishable from an empty log: `isError` never became true,\n // so consumers rendered \"no activity\" for a failed request, and a failed\n // page produced no cursor and silently ended pagination. Let React Query\n // own the error so `isError` and retry behave normally.\n queryFn: async ({ pageParam }: { pageParam: NotifCursor }) => {\n const response = await callRPC(\"bridge.account_notifications\", {\n account,\n limit,\n last_id: pageParam ?? undefined,\n });\n return (response as AccountNotification[] | null) ?? [];\n },\n\n // A short page is the end of the log. Keying on \"empty\" alone would also\n // treat a truncated page as the end.\n getNextPageParam: (lastPage: NotifPage): NotifCursor =>\n lastPage?.length >= limit ? lastPage[lastPage.length - 1].id : null,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { RewardedCommunity } from \"../types/rewarded-community\";\n\nexport function getRewardedCommunitiesQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.communities.rewarded(),\n queryFn: async () => {\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/rewarded-communities\",\n {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch rewarded communities: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","export enum ROLES {\n OWNER = \"owner\",\n ADMIN = \"admin\",\n MOD = \"mod\",\n MEMBER = \"member\",\n GUEST = \"guest\",\n MUTED = \"muted\",\n}\n\nexport const roleMap: Record = {\n [ROLES.OWNER]: [\n ROLES.ADMIN,\n ROLES.MOD,\n ROLES.MEMBER,\n ROLES.GUEST,\n ROLES.MUTED,\n ],\n [ROLES.ADMIN]: [ROLES.MOD, ROLES.MEMBER, ROLES.GUEST, ROLES.MUTED],\n [ROLES.MOD]: [ROLES.MEMBER, ROLES.GUEST, ROLES.MUTED],\n};\n\nexport type CommunityTeam = Array>;\nexport type CommunityRole = (typeof ROLES)[keyof typeof ROLES]; // \"owner\" | \"member\" | ...\nexport type CommunityType = \"Topic\" | \"Journal\" | \"Council\";\n\nexport interface Community {\n about: string;\n admins?: string[];\n avatar_url: string;\n created_at: string;\n description: string;\n flag_text: string;\n id: number;\n is_nsfw: boolean;\n lang: string;\n name: string;\n num_authors: number;\n num_pending: number;\n subscribers: number;\n sum_pending: number;\n settings?: any;\n team: CommunityTeam;\n title: string;\n type_id: number;\n}\n\nexport type Communities = Community[];\n","import { CommunityRole, CommunityType, ROLES } from \"../types\";\n\nexport function getCommunityType(name: string, type_id: number): CommunityType {\n if (name.startsWith(\"hive-3\") || type_id === 3) return \"Council\";\n if (name.startsWith(\"hive-2\") || type_id === 2) return \"Journal\";\n return \"Topic\";\n}\n\nexport function getCommunityPermissions({\n communityType,\n userRole,\n subscribed,\n}: {\n communityType: CommunityType;\n userRole: CommunityRole;\n subscribed: boolean;\n}) {\n const canPost = (() => {\n if (userRole === ROLES.MUTED) return false;\n\n if (communityType === \"Topic\") return true;\n\n // Journal & Council\n return [ROLES.OWNER, ROLES.ADMIN, ROLES.MOD, ROLES.MEMBER].includes(\n userRole\n );\n })();\n\n const canComment = (() => {\n if (userRole === ROLES.MUTED) return false;\n\n switch (communityType) {\n case \"Topic\":\n return true;\n case \"Journal\":\n return userRole !== ROLES.GUEST || subscribed;\n case \"Council\":\n return canPost;\n }\n })();\n\n const isModerator = [ROLES.OWNER, ROLES.ADMIN, ROLES.MOD].includes(userRole);\n\n return {\n canPost,\n canComment,\n isModerator,\n };\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getNotificationsUnreadCountQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.unreadCount(activeUsername),\n queryFn: async () => {\n if (!code) {\n return 0;\n }\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/notifications/unread`,\n {\n method: \"POST\",\n body: JSON.stringify({ code }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n const data = (await response.json()) as { count: number };\n return data.count;\n },\n enabled: !!activeUsername && !!code,\n initialData: 0,\n refetchInterval: 60000,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { NotificationFilter } from \"../enums\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { ApiNotification } from \"../types\";\n\nexport function getNotificationsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n filter: NotificationFilter | undefined = undefined\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.notifications.list(activeUsername, filter),\n queryFn: async ({ pageParam }) => {\n if (!code) {\n return [];\n }\n const data = {\n code,\n filter,\n since: pageParam,\n user: undefined,\n };\n\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/notifications\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n }\n );\n\n if (!response.ok) {\n return [];\n }\n\n try {\n return (await response.json()) as ApiNotification[];\n } catch {\n return [];\n }\n },\n enabled: !!activeUsername && !!code,\n // No initialData here: an empty seed counts as fresh for the whole staleTime,\n // so consumers that only read `data` would render an empty list with no fetch.\n initialPageParam: \"\",\n getNextPageParam: (lastPage) => lastPage?.[lastPage.length - 1]?.id ?? \"\",\n refetchOnMount: true,\n });\n}\n","export enum NotificationFilter {\n VOTES = \"rvotes\",\n MENTIONS = \"mentions\",\n FAVORITES = \"nfavorites\",\n BOOKMARKS = \"nbookmarks\",\n FOLLOWS = \"follows\",\n REPLIES = \"replies\",\n REBLOGS = \"reblogs\",\n TRANSFERS = \"transfers\",\n DELEGATIONS = \"delegations\",\n PAYOUTS = \"payouts\",\n SCHEDULED_PUBLISHED = \"scheduled_published\",\n // Filter path is plural while the notification `type` string is singular\n // (`account_update`) - enotify routes on the plural form.\n ACCOUNT_UPDATES = \"account_updates\",\n WEEKLY_EARNINGS = \"weekly_earnings\",\n TAGS = \"tags\",\n}\n","// Values are enotify's ACTIVITY_MAIN_TYPE_* ints and are validated server-side at\n// device registration, so they must match enotify constants.py exactly. Note payouts\n// is 19: the original 16 is commented out upstream and must not be reused.\nexport enum NotifyTypes {\n VOTE = 1,\n MENTION = 2,\n FOLLOW = 3,\n COMMENT = 4,\n RE_BLOG = 5,\n TRANSFERS = 6,\n DELEGATIONS = 10,\n FAVORITES = 13,\n BOOKMARKS = 15,\n PAYOUTS = 19,\n ACCOUNT_UPDATE = 20,\n WEEKLY_EARNINGS = 21,\n SCHEDULED_PUBLISHED = 22,\n TAGS = 23,\n ALLOW_NOTIFY = \"ALLOW_NOTIFY\",\n}\n\nexport const ALL_NOTIFY_TYPES = [\n NotifyTypes.VOTE,\n NotifyTypes.MENTION,\n NotifyTypes.FOLLOW,\n NotifyTypes.COMMENT,\n NotifyTypes.RE_BLOG,\n NotifyTypes.TRANSFERS,\n NotifyTypes.DELEGATIONS,\n NotifyTypes.FAVORITES,\n NotifyTypes.BOOKMARKS,\n NotifyTypes.PAYOUTS,\n NotifyTypes.ACCOUNT_UPDATE,\n NotifyTypes.WEEKLY_EARNINGS,\n NotifyTypes.SCHEDULED_PUBLISHED,\n NotifyTypes.TAGS,\n] as const;\n\nexport enum NotificationViewType {\n ALL = \"All\",\n UNREAD = \"Unread\",\n READ = \"Read\",\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ApiNotificationSetting } from \"../types\";\nimport { ALL_NOTIFY_TYPES } from \"../enums\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport function getNotificationsSettingsQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n initialMuted?: boolean\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.settings(activeUsername),\n queryFn: async () => {\n let token = activeUsername + \"-web\";\n if (!code) {\n throw new Error(\"Missing access token\");\n }\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/detail-device\",\n {\n body: JSON.stringify({\n code,\n username: activeUsername,\n token,\n }),\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to fetch notification settings: ${response.status}`);\n }\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n refetchOnMount: false,\n initialData: () => {\n return {\n status: 0,\n system: \"web\",\n allows_notify: 0,\n notify_types: initialMuted ? [] : ([...ALL_NOTIFY_TYPES] as number[]),\n } as ApiNotificationSetting;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { Announcement } from \"../types/announcement\";\n\nexport function getAnnouncementsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.notifications.announcements(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/announcements\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch announcements: ${response.status}`);\n }\n\n const data = await response.json() as Announcement[];\n return data || [];\n },\n staleTime: 3_600_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { Spotlight } from \"../types/spotlight\";\n\n// `_accessToken` is accepted for call-site parity with mobile (which passes one) but is\n// intentionally unused: the spotlights endpoint is anonymous and only filters by date window.\nexport function getSpotlightsQueryOptions(_accessToken?: string) {\n return queryOptions({\n queryKey: QueryKeys.notifications.spotlights(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/spotlights\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch spotlights: ${response.status}`);\n }\n\n const data = (await response.json()) as Spotlight[];\n return data || [];\n },\n staleTime: 3_600_000,\n });\n}\n","import { useMutation, QueryKey, InfiniteData } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { markNotifications } from \"@/modules/private-api/requests\";\nimport { ApiNotification } from \"../types\";\n\ntype NotificationPage = ApiNotification[];\ntype InfiniteNotificationData = InfiniteData;\n\nfunction markNotificationRead(item: ApiNotification, id?: string): ApiNotification {\n return {\n ...item,\n read: (!id || id === item.id ? 1 : item.read) as 0 | 1,\n };\n}\n\nfunction isInfiniteData(data: unknown): data is InfiniteNotificationData {\n return (\n typeof data === \"object\" &&\n data !== null &&\n \"pages\" in data &&\n \"pageParams\" in data &&\n Array.isArray((data as InfiniteNotificationData).pages)\n );\n}\n\n/**\n * Hook to mark notifications as read with optimistic updates\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful mutation, receives unread count\n * @param onError - Optional callback on error\n *\n * @returns Mutation hook that accepts { id?: string }\n *\n * @example\n * ```typescript\n * const markAsRead = useMarkNotificationsRead(username, code);\n *\n * // Mark specific notification\n * markAsRead.mutate({ id: \"notification-id\" });\n *\n * // Mark all notifications (omit id)\n * markAsRead.mutate({});\n * ```\n */\nexport function useMarkNotificationsRead(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: (unreadCount?: number) => void,\n onError?: (e: Error) => void\n) {\n const queryClient = getQueryClient();\n\n return useMutation({\n mutationKey: [\"notifications\", \"mark-read\", username],\n\n mutationFn: async ({ id }: { id?: string }) => {\n if (!username || !code) {\n if (process.env.NODE_ENV !== \"production\") {\n console.warn(\"[SDK][Notifications] – missing auth for markNotifications\");\n }\n return;\n }\n return markNotifications(code, id);\n },\n\n // Optimistic update: Immediately mark notifications as read in cache\n onMutate: async ({ id }: { id?: string }) => {\n // Skip optimistic updates when auth is not available\n if (!username || !code) {\n return { previousData: [] };\n }\n\n // Cancel any outgoing refetches to prevent overwriting optimistic update\n await queryClient.cancelQueries({ queryKey: QueryKeys.notifications._prefix });\n\n // Snapshot current state for rollback\n const previousData: Array<[QueryKey, unknown]> = [];\n\n // Update infinite notification list queries (pages structure)\n const infiniteQueries = queryClient.getQueriesData({\n queryKey: QueryKeys.notifications._prefix,\n predicate: (query) => {\n const data = query.state.data;\n return isInfiniteData(data);\n },\n });\n\n infiniteQueries.forEach(([queryKey, data]) => {\n if (data && isInfiniteData(data)) {\n previousData.push([queryKey, data]);\n\n const updatedData: InfiniteNotificationData = {\n ...data,\n pages: data.pages.map((page) =>\n page.map((item) => markNotificationRead(item, id))\n ),\n };\n\n queryClient.setQueryData(queryKey, updatedData);\n }\n });\n\n // Optimistically decrement unread count\n const unreadKey = QueryKeys.notifications.unreadCount(username);\n const currentUnread = queryClient.getQueryData(unreadKey);\n if (typeof currentUnread === \"number\" && currentUnread > 0) {\n previousData.push([unreadKey, currentUnread]);\n\n if (!id) {\n // Mark all: set to 0\n queryClient.setQueryData(unreadKey, 0);\n } else {\n // Mark single: only decrement if the notification is currently unread\n const isUnread = infiniteQueries.some(([, d]) =>\n d?.pages.some((page) =>\n page.some((item) => item.id === id && item.read === 0)\n )\n );\n if (isUnread) {\n queryClient.setQueryData(unreadKey, currentUnread - 1);\n }\n }\n }\n\n // Return context for rollback\n return { previousData };\n },\n\n onSuccess: (response) => {\n // Extract unread count from response if available\n const unreadCount = typeof response === \"object\" && response !== null\n ? (response as { unread?: number }).unread\n : undefined;\n\n // Update unread count cache with server value\n if (typeof unreadCount === \"number\") {\n queryClient.setQueryData(\n QueryKeys.notifications.unreadCount(username),\n unreadCount\n );\n }\n\n onSuccess?.(unreadCount);\n },\n\n // Rollback optimistic update on error\n onError: (error, _variables, context) => {\n // Restore previous state\n if (context?.previousData) {\n context.previousData.forEach(([queryKey, data]) => {\n queryClient.setQueryData(queryKey, data);\n });\n }\n\n onError?.(error as Error);\n },\n\n // Always refetch after mutation settles\n onSettled: () => {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.notifications._prefix,\n });\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSetLastReadOps } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface SetLastReadPayload {\n date?: string;\n}\n\nexport function useSetLastRead(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"notifications\", \"set-last-read\"],\n username,\n ({ date }) => buildSetLastReadOps(username!, date),\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.notifications.unreadCount(username),\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Proposal } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get a single proposal by ID\n */\nexport function getProposalQueryOptions(id: number) {\n return queryOptions({\n queryKey: [\"proposals\", \"proposal\", id],\n queryFn: async () => {\n const r = await callRPC(\"condenser_api.find_proposals\", [[id]]);\n const proposal = r[0];\n\n // Determine proposal status based on dates\n if (new Date(proposal.start_date) < new Date() && new Date(proposal.end_date) >= new Date()) {\n proposal.status = \"active\";\n } else if (new Date(proposal.end_date) < new Date()) {\n proposal.status = \"expired\";\n } else {\n proposal.status = \"inactive\";\n }\n\n return proposal as Proposal;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Proposal } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get all proposals, sorted with expired proposals at the end\n */\nexport function getProposalsQueryOptions() {\n return queryOptions({\n queryKey: [\"proposals\", \"list\"],\n queryFn: async () => {\n const response = (await callRPC(\"database_api.list_proposals\", {\n start: [-1],\n limit: 500,\n order: \"by_total_votes\",\n order_direction: \"descending\",\n status: \"all\",\n })) as { proposals: Proposal[] };\n\n const proposals = response.proposals;\n const expired = proposals.filter((x) => x.status === \"expired\");\n const others = proposals.filter((x) => x.status !== \"expired\");\n\n return [...others, ...expired];\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ProposalVote } from \"../types\";\nimport { FullAccount } from \"@/modules/accounts\";\nimport { parseAccounts } from \"@/modules/accounts/utils\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n// One page = array of enriched vote rows\nexport type ProposalVoteRow = {\n id: number;\n voter: string;\n voterAccount: FullAccount;\n};\n\ntype Cursor = string; // we paginate by last voter name\n\n/**\n * Get proposal votes with pagination and enriched voter account data\n *\n * @param proposalId - The proposal ID\n * @param voter - Starting voter for pagination\n * @param limit - Number of votes per page\n */\nexport function getProposalVotesInfiniteQueryOptions(\n proposalId: number,\n voter: string,\n limit: number\n) {\n return infiniteQueryOptions<\n ProposalVoteRow[],\n Error,\n InfiniteData,\n (string | number)[],\n Cursor\n >({\n queryKey: [\"proposals\", \"votes\", proposalId, voter, limit],\n initialPageParam: voter as Cursor,\n refetchOnMount: true,\n staleTime: 0, // Always refetch on mount\n\n queryFn: async ({ pageParam }: { pageParam: Cursor }) => {\n const startParam = pageParam ?? voter;\n\n const response = (await callRPC(\"condenser_api.list_proposal_votes\", [\n [proposalId, startParam],\n limit,\n \"by_proposal_voter\",\n ])) as ProposalVote[];\n\n const list = response\n .filter((x) => x.proposal?.proposal_id === proposalId)\n .map((x) => ({ id: x.id, voter: x.voter }));\n\n const rawAccounts = await callRPC(\"condenser_api.get_accounts\", [list.map((l) => l.voter)]);\n const accounts = parseAccounts(rawAccounts);\n\n const page: ProposalVoteRow[] = list.map((i) => ({\n ...i,\n voterAccount: accounts.find((a) => i.voter === a.name)!,\n }));\n\n return page;\n },\n\n getNextPageParam: (lastPage: ProposalVoteRow[]): Cursor | undefined => {\n const last = lastPage?.[lastPage.length - 1];\n return last?.voter ?? undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ProposalVote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Fetches ALL proposal votes for a specific user in a single query.\n * Much more efficient than querying each proposal individually.\n * Uses \"by_voter_proposal\" order to get all votes by a user.\n */\nexport function getUserProposalVotesQueryOptions(voter: string) {\n return queryOptions({\n queryKey: [\"proposals\", \"votes\", \"by-user\", voter],\n enabled: !!voter && voter !== \"\",\n staleTime: 60 * 1000, // Cache for 1 minute\n queryFn: async () => {\n if (!voter || voter === \"\") {\n return [];\n }\n\n const response = (await callRPC(\"database_api.list_proposal_votes\", {\n start: [voter],\n limit: 1000,\n order: \"by_voter_proposal\",\n order_direction: \"ascending\",\n status: \"votable\",\n })) as { proposal_votes: ProposalVote[] };\n\n // Filter to only this user's votes (API might return votes after this user alphabetically)\n const userVotes = (response.proposal_votes || []).filter((vote) => vote.voter === voter);\n\n return userVotes;\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildProposalVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for voting on proposals.\n */\nexport interface ProposalVotePayload {\n /** Array of proposal IDs to vote on */\n proposalIds: number[];\n /** True to approve, false to disapprove */\n approve: boolean;\n}\n\n/**\n * React Query mutation hook for voting on Hive proposals.\n *\n * This mutation broadcasts an update_proposal_votes operation to vote on\n * one or more proposals in the Hive Decentralized Fund (HDF).\n *\n * @param username - The username voting on proposals (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 150) if adapter.recordActivity is available\n * - Invalidates proposal list cache to show updated vote status\n * - Invalidates voter's proposal votes cache\n *\n * **Multiple Proposals:**\n * - You can vote on multiple proposals in a single transaction\n * - All proposals receive the same vote (approve or disapprove)\n * - Proposal IDs are integers, not strings\n *\n * **Vote Types:**\n * - approve: true - Vote in favor of the proposal(s)\n * - approve: false - Remove your vote from the proposal(s)\n *\n * @example\n * ```typescript\n * const proposalVoteMutation = useProposalVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Approve a single proposal\n * proposalVoteMutation.mutate({\n * proposalIds: [123],\n * approve: true\n * });\n *\n * // Approve multiple proposals\n * proposalVoteMutation.mutate({\n * proposalIds: [123, 124, 125],\n * approve: true\n * });\n *\n * // Remove vote from a proposal\n * proposalVoteMutation.mutate({\n * proposalIds: [123],\n * approve: false\n * });\n * ```\n */\nexport function useProposalVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"proposals\", \"vote\"],\n username,\n ({ proposalIds, approve }) => [\n buildProposalVoteOp(username!, proposalIds, approve)\n ],\n async (result: any) => {\n // Wrap post-broadcast side-effects in try-catch to prevent propagating errors\n try {\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(150, txId, result?.block_num).catch((error) => {\n console.debug(\"[SDK][Proposals][useProposalVote] recordActivity failed\", {\n activityType: 150,\n blockNum: result?.block_num,\n transactionId: txId,\n error\n });\n });\n }\n\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.proposals.list(),\n QueryKeys.proposals.votesByUser(username!)\n ]);\n }\n } catch (error) {\n // Log but don't rethrow - don't fail mutation due to side-effect errors\n console.warn('[useProposalVote] Post-broadcast side-effect failed:', error);\n }\n },\n auth,\n 'active', // Use active authority for proposal votes (required by blockchain)\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildProposalCreateOp, type ProposalCreatePayload } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport { type ProposalCreatePayload };\n\nexport function useProposalCreate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"proposals\", \"create\"],\n username,\n (payload) => [\n buildProposalCreateOp(username!, payload)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.proposals.list(),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { DelegatedVestingShare } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get vesting delegations for an account with infinite scroll support\n *\n * @param username - The account username\n * @param limit - Maximum number of results per page (default: 50)\n */\nexport function getVestingDelegationsQueryOptions(\n username?: string,\n limit = 50\n) {\n return infiniteQueryOptions({\n queryKey: [\"wallet\", \"vesting-delegations\", username, limit],\n initialPageParam: \"\" as string,\n queryFn: async ({ pageParam }: { pageParam: string }) => {\n // Request one extra item on subsequent pages to handle inclusive cursor\n const fetchLimit = pageParam ? limit + 1 : limit;\n\n const result = await callRPC(\"condenser_api.get_vesting_delegations\", [\n username,\n pageParam || \"\",\n fetchLimit,\n ]) as DelegatedVestingShare[];\n\n // Filter out duplicate first item on subsequent pages\n // Hive API is inclusive of the 'from' cursor\n if (pageParam && result.length > 0 && result[0]?.delegatee === pageParam) {\n // Return at most limit items after removing the duplicate\n return result.slice(1, limit + 1);\n }\n\n return result;\n },\n getNextPageParam: (lastPage: DelegatedVestingShare[]) => {\n // If we got fewer results than limit, we've reached the end\n if (!lastPage || lastPage.length < limit) {\n return undefined;\n }\n\n // Return the last delegatee as cursor for next page\n const lastDelegation = lastPage[lastPage.length - 1];\n return lastDelegation?.delegatee;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { AccountDelegations } from \"../types\";\nimport { callREST } from \"@/modules/core/hive-tx\";\n\n/**\n * Account vesting delegations via the HAF balance-api REST endpoint\n * (`/balance-api/accounts/{account-name}/delegations`).\n *\n * Unlike `condenser_api.get_vesting_delegations` (see\n * {@link getHivePowerDelegatesInfiniteQueryOptions}), this returns the\n * complete outgoing AND incoming lists in a single request, with `callREST`\n * handling multi-node failover. `amount` is raw vests (vests * 10^6).\n */\nexport function getAccountDelegationsQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"assets\", \"account-delegations\", username],\n enabled: !!username,\n queryFn: ({ signal }) =>\n callREST(\n \"balance\",\n \"/accounts/{account-name}/delegations\",\n { \"account-name\": username },\n undefined,\n undefined,\n signal\n ) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { VestingDelegationExpiration } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get expiring vesting delegations for an account.\n *\n * When a delegation is removed (set to 0 VESTS), the HP doesn't return\n * immediately — it enters a 5-day cooldown. This query fetches those\n * in-flight expirations so they can be shown alongside active delegations.\n *\n * Uses database_api.find_vesting_delegation_expirations which returns\n * vesting_shares as NAI asset objects ({amount, nai, precision}).\n *\n * @param username - The delegator account username\n */\nexport function getVestingDelegationExpirationsQueryOptions(username?: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"vesting-delegation-expirations\", username],\n queryFn: async () => {\n if (!username) return [];\n const result = await callRPC(\"database_api.find_vesting_delegation_expirations\", { account: username }) as { delegations: VestingDelegationExpiration[] };\n return result.delegations;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConversionRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HBD to HIVE conversion requests for an account\n *\n * @param account - The account username\n */\nexport function getConversionRequestsQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"conversion-requests\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_conversion_requests\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.requestid - b.requestid),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CollateralizedConversionRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get collateralized HIVE to HBD conversion requests for an account\n *\n * @param account - The account username\n */\nexport function getCollateralizedConversionRequestsQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"collateralized-conversion-requests\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_collateralized_conversion_requests\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.requestid - b.requestid),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { SavingsWithdrawRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get pending savings withdrawal requests for an account\n *\n * @param account - The account username\n */\nexport function getSavingsWithdrawFromQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"savings-withdraw\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_savings_withdraw_from\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.request_id - b.request_id),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { WithdrawRoute } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get power down (vesting withdrawal) routes for an account\n *\n * @param account - The account username\n */\nexport function getWithdrawRoutesQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"withdraw-routes\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_withdraw_routes\", [\n account,\n \"outgoing\",\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OpenOrdersData } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get open market orders for an account\n *\n * @param user - The account username\n */\nexport function getOpenOrdersQueryOptions(user: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"open-orders\", user],\n queryFn: () =>\n callRPC(\"condenser_api.get_open_orders\", [\n user,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.orderid - b.orderid),\n enabled: !!user,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { RcDirectDelegation, RcDirectDelegationsResponse } from \"../types/rc-direct-delegation\";\n\ntype RcPage = RcDirectDelegation[];\ntype RcCursor = string | null;\n\n/**\n * Get outgoing RC delegations for an account\n *\n * @param username - Account name to get delegations for\n * @param limit - Number of delegations per page\n */\nexport function getOutgoingRcDelegationsInfiniteQueryOptions(username: string, limit = 100) {\n return infiniteQueryOptions<\n RcPage,\n Error,\n InfiniteData,\n (string | number)[],\n RcCursor\n >({\n queryKey: [\"wallet\", \"outgoing-rc-delegations\", username, limit],\n initialPageParam: null as RcCursor,\n\n queryFn: async ({ pageParam }: { pageParam: RcCursor }) => {\n const response = await callRPC(\"rc_api.list_rc_direct_delegations\", {\n start: [username, pageParam ?? \"\"],\n limit,\n })\n .then((r: any) => r as RcDirectDelegationsResponse);\n\n let delegations: RcDirectDelegation[] = response.rc_direct_delegations || [];\n\n // Filter out the starting delegation when paginating\n if (pageParam) {\n delegations = delegations.filter((delegation) => delegation.to !== pageParam);\n }\n\n return delegations;\n },\n\n getNextPageParam: (lastPage: RcPage): RcCursor =>\n lastPage.length === limit ? lastPage[lastPage.length - 1].to : null,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { IncomingRcResponse } from \"../types\";\n\nexport function getIncomingRcQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"wallet\", \"incoming-rc\", username],\n enabled: !!username,\n queryFn: async (): Promise => {\n if (!username) {\n throw new Error(\"[SDK][Wallet] - Missing username for incoming RC\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/received-rc/${username}`\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch incoming RC: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import type { AccountDelegations } from \"../types/account-delegations\";\nimport type { ReceivedVestingShare } from \"../types/received-vesting-share\";\n\n/**\n * Raw vests from balance-api (\"903311000000\" = 903311.000000 VESTS) as the\n * legacy asset string. Takes the decimal string (or a bigint), never a number:\n * a float has already rounded anything above 2^53 raw units before it gets\n * here, and the string arithmetic below keeps every digit.\n */\nexport function rawVestsToAsset(amount: string | bigint): string {\n const digits = String(amount).replace(/\\D/g, \"\") || \"0\";\n const padded = digits.padStart(7, \"0\");\n const whole = padded.slice(0, -6).replace(/^0+(?=\\d)/, \"\");\n return `${whole}.${padded.slice(-6)} VESTS`;\n}\n\n/**\n * The incoming half of an account's balance-api delegations in the shape the\n * received-delegation queries have always returned, largest first.\n */\nexport function toReceivedVestingShares(\n delegatee: string,\n delegations: AccountDelegations | null | undefined,\n): ReceivedVestingShare[] {\n return (delegations?.incoming_delegations ?? [])\n .map((d) => ({\n delegator: d.delegator,\n raw: BigInt(String(d.amount).replace(/\\D/g, \"\") || \"0\"),\n }))\n .sort((a, b) => (a.raw === b.raw ? 0 : a.raw > b.raw ? -1 : 1))\n .map(({ delegator, raw }) => ({\n delegatee,\n delegator,\n vesting_shares: rawVestsToAsset(raw),\n }));\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { getAccountDelegationsQueryOptions } from \"./get-account-delegations-query-options\";\nimport { toReceivedVestingShares } from \"../utils/received-vesting-shares\";\n\n/**\n * Who delegates HP to `username`, largest first.\n *\n * Read from the HAF balance-api through {@link getAccountDelegationsQueryOptions}\n * (fetched via the shared query client, so a page showing the totals and the\n * list makes one request), not from the Ecency notification database any more.\n * The return shape is unchanged apart from `timestamp`, which balance-api does\n * not carry.\n */\nexport function getReceivedVestingSharesQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.wallet.receivedVestingShares(username),\n enabled: !!username,\n queryFn: async () =>\n toReceivedVestingShares(\n username,\n // A page that shows the totals and the list asks twice within seconds;\n // a minute of freshness makes that one balance-api request.\n await getQueryClient().fetchQuery({\n ...getAccountDelegationsQueryOptions(username),\n staleTime: 60_000,\n }),\n ),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { RecurrentTransfer } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get recurrent transfers for an account\n *\n * @param username - The account username\n */\nexport function getRecurrentTransfersQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"recurrent-transfers\", username],\n queryFn: () =>\n callRPC(\"condenser_api.find_recurrent_transfers\", [\n username,\n ]) as Promise,\n enabled: !!username,\n });\n}\n","import { ConfigManager } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\ntype PortfolioLayer = \"points\" | \"hive\" | \"chain\" | \"engine\";\n\ninterface TokenAction {\n id: string;\n [key: string]: unknown;\n}\n\nexport interface PortfolioWalletItem {\n name: string;\n symbol: string;\n layer: PortfolioLayer;\n balance: number;\n fiatRate: number;\n currency: string;\n precision: number;\n address?: string;\n error?: string;\n pendingRewards?: number;\n pendingRewardsFiat?: number;\n liquid?: number;\n liquidFiat?: number;\n savings?: number;\n savingsFiat?: number;\n staked?: number;\n stakedFiat?: number;\n iconUrl?: string;\n actions?: TokenAction[];\n extraData?: Array<{ dataKey: string; value: any }>;\n apr?: number;\n}\n\nexport interface PortfolioResponse {\n username: string;\n currency?: string;\n wallets: PortfolioWalletItem[];\n}\n\nfunction normalizeString(value: unknown): string | undefined {\n if (typeof value === \"string\") {\n const trimmed = value.trim();\n return trimmed.length > 0 ? trimmed : undefined;\n }\n\n return undefined;\n}\n\nfunction normalizeNumber(value: unknown): number | undefined {\n if (typeof value === \"number\" && Number.isFinite(value)) {\n return value;\n }\n\n if (typeof value === \"string\") {\n const trimmed = value.trim();\n if (!trimmed) {\n return undefined;\n }\n\n const direct = Number.parseFloat(trimmed);\n if (Number.isFinite(direct)) {\n return direct;\n }\n\n const sanitized = trimmed.replace(/,/g, \"\");\n const match = sanitized.match(/[-+]?\\d+(?:\\.\\d+)?/);\n if (match) {\n const parsed = Number.parseFloat(match[0]);\n if (Number.isFinite(parsed)) {\n return parsed;\n }\n }\n }\n\n return undefined;\n}\n\nfunction parseToken(rawToken: unknown): PortfolioWalletItem | undefined {\n if (!rawToken || typeof rawToken !== \"object\") {\n return undefined;\n }\n\n const token = rawToken as Record;\n\n // Portfolio v2 returns well-defined PortfolioItem structure\n return {\n name: normalizeString(token.name) ?? \"\",\n symbol: normalizeString(token.symbol) ?? \"\",\n layer: (normalizeString(token.layer) ?? \"hive\") as PortfolioLayer,\n balance: normalizeNumber(token.balance) ?? 0,\n fiatRate: normalizeNumber(token.fiatRate) ?? 0,\n currency: normalizeString(token.currency) ?? \"usd\",\n precision: normalizeNumber(token.precision) ?? 3,\n address: normalizeString(token.address),\n error: normalizeString(token.error),\n pendingRewards: normalizeNumber(token.pendingRewards),\n pendingRewardsFiat: normalizeNumber(token.pendingRewardsFiat),\n liquid: normalizeNumber(token.liquid),\n liquidFiat: normalizeNumber(token.liquidFiat),\n savings: normalizeNumber(token.savings),\n savingsFiat: normalizeNumber(token.savingsFiat),\n staked: normalizeNumber(token.staked),\n stakedFiat: normalizeNumber(token.stakedFiat),\n iconUrl: normalizeString(token.iconUrl),\n actions: (token.actions ?? []) as TokenAction[],\n extraData: (token.extraData ?? []) as Array<{ dataKey: string; value: any }>,\n apr: normalizeNumber(token.apr),\n };\n}\n\nfunction extractTokens(payload: unknown): unknown[] {\n if (!payload || typeof payload !== \"object\") {\n return [];\n }\n\n const containers = [payload];\n const record = payload as Record;\n if (record.data && typeof record.data === \"object\") {\n containers.push(record.data as Record);\n }\n if (record.result && typeof record.result === \"object\") {\n containers.push(record.result as Record);\n }\n if (record.portfolio && typeof record.portfolio === \"object\") {\n containers.push(record.portfolio as Record);\n }\n\n for (const container of containers) {\n if (Array.isArray(container)) {\n return container;\n }\n\n if (container && typeof container === \"object\") {\n for (const key of [\n \"wallets\",\n \"tokens\",\n \"assets\",\n \"items\",\n \"portfolio\",\n \"balances\",\n ]) {\n const value = (container as Record)[key];\n if (Array.isArray(value)) {\n return value;\n }\n }\n }\n }\n\n return [];\n}\n\nfunction resolveUsername(payload: unknown): string | undefined {\n if (!payload || typeof payload !== \"object\") {\n return undefined;\n }\n\n const record = payload as Record;\n return (\n normalizeString(record.username) ??\n normalizeString(record.name) ??\n normalizeString(record.account)\n );\n}\n\n/**\n * Get portfolio query options for fetching user's wallet balances across all layers\n * @param username - Hive username\n * @param currency - Fiat currency code (default: \"usd\")\n * @param onlyEnabled - Only return enabled tokens (default: true)\n * @returns TanStack Query options for portfolio data\n */\nexport function getPortfolioQueryOptions(\n username: string,\n currency: string = \"usd\",\n onlyEnabled: boolean = true\n) {\n return queryOptions({\n queryKey: [\n \"wallet\",\n \"portfolio\",\n \"v2\",\n username,\n onlyEnabled ? \"only-enabled\" : \"all\",\n currency,\n ],\n enabled: Boolean(username),\n staleTime: 60000,\n refetchInterval: 120000,\n queryFn: async (): Promise => {\n if (!username) {\n throw new Error(\"[SDK][Wallet] – username is required\");\n }\n\n const endpoint = `${ConfigManager.getValidatedBaseUrl()}/wallet-api/portfolio-v2`;\n const response = await fetch(endpoint, {\n method: \"POST\",\n headers: {\n Accept: \"application/json\",\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username, onlyEnabled, currency }),\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Wallet] – Portfolio request failed (${response.status})`\n );\n }\n\n const payload = (await response.json()) as unknown;\n const tokens = extractTokens(payload)\n .map((item) => parseToken(item))\n .filter((item): item is PortfolioWalletItem => Boolean(item))\n // Backend may still emit removed SPK-layer items; drop them defensively\n .filter((item) => (item.layer as string) !== \"spk\");\n\n if (!tokens.length) {\n throw new Error(\n \"[SDK][Wallet] – Portfolio payload contained no tokens\"\n );\n }\n\n return {\n username: resolveUsername(payload) ?? username,\n currency: normalizeString(\n (payload as Record | undefined)?.fiatCurrency ??\n (payload as Record | undefined)?.currency\n )?.toUpperCase(),\n wallets: tokens,\n };\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nexport function getHiveAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n\n const marketTicker = (await callRPC(\"condenser_api.get_ticker\", [])\n .catch(() => undefined)) as { latest?: string } | undefined;\n\n const marketPrice = Number.parseFloat(marketTicker?.latest ?? \"\");\n\n if (!accountData) {\n return {\n name: \"HIVE\",\n title: \"Hive\",\n price: Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0,\n accountBalance: 0,\n } satisfies GeneralAssetInfo;\n }\n\n const liquidBalance = parseAsset(accountData.balance).amount;\n const savingsBalance = parseAsset(accountData.savings_balance).amount;\n\n return {\n name: \"HIVE\",\n title: \"Hive\",\n price: Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0,\n accountBalance: liquidBalance + savingsBalance,\n parts: [\n {\n name: \"current\",\n balance: liquidBalance,\n },\n {\n name: \"savings\",\n balance: savingsBalance,\n },\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nexport function getHbdAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hbd\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n\n const price = 1;\n\n if (!accountData) {\n return {\n name: \"HBD\",\n title: \"Hive Dollar\",\n price,\n accountBalance: 0,\n };\n }\n\n return {\n name: \"HBD\",\n title: \"Hive Dollar\",\n price,\n accountBalance:\n parseAsset(accountData.hbd_balance).amount +\n parseAsset(accountData?.savings_hbd_balance).amount,\n apr: ((dynamicProps?.hbdInterestRate ?? 0) / 100).toFixed(3),\n parts: [\n {\n name: \"current\",\n balance: parseAsset(accountData.hbd_balance).amount,\n },\n {\n name: \"savings\",\n balance: parseAsset(accountData.savings_hbd_balance).amount,\n },\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { isEmptyDate, parseAsset, vestsToHp } from \"@/modules/core/utils\";\n\nfunction getAPR(dynamicProps: DynamicProps) {\n const initialInflationRate = 9.5;\n const initialBlock = 7000000;\n const decreaseRate = 250000;\n const decreasePercentPerIncrement = 0.01;\n\n const headBlock = dynamicProps.headBlock;\n const deltaBlocks = headBlock - initialBlock;\n const decreaseIncrements = deltaBlocks / decreaseRate;\n\n let currentInflationRate =\n initialInflationRate - decreaseIncrements * decreasePercentPerIncrement;\n\n if (currentInflationRate < 0.95) {\n currentInflationRate = 0.95;\n }\n\n const vestingRewardPercent = dynamicProps.vestingRewardPercent / 10000;\n const virtualSupply = dynamicProps.virtualSupply;\n const totalVestingFunds = dynamicProps.totalVestingFund;\n\n return (\n (virtualSupply * currentInflationRate * vestingRewardPercent) /\n totalVestingFunds\n ).toFixed(3);\n}\n\nexport function getHivePowerAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-power\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n\n if (!dynamicProps || !accountData) {\n return {\n name: \"HP\",\n title: \"Hive Power\",\n price: 0,\n accountBalance: 0,\n };\n }\n\n const marketTicker = (await callRPC(\"condenser_api.get_ticker\", [])\n .catch(() => undefined)) as { latest?: string } | undefined;\n\n const marketPrice = Number.parseFloat(marketTicker?.latest ?? \"\");\n const price = Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps.base / dynamicProps.quote;\n\n const vestingShares = parseAsset(accountData.vesting_shares).amount;\n const delegatedVests = parseAsset(\n accountData.delegated_vesting_shares\n ).amount;\n const receivedVests = parseAsset(\n accountData.received_vesting_shares\n ).amount;\n const withdrawRateVests = parseAsset(\n accountData.vesting_withdraw_rate\n ).amount;\n const remainingToWithdrawVests = Math.max(\n (Number(accountData.to_withdraw) - Number(accountData.withdrawn)) /\n 1e6,\n 0\n );\n const nextWithdrawalVests = !isEmptyDate(\n accountData.next_vesting_withdrawal\n )\n ? Math.min(withdrawRateVests, remainingToWithdrawVests)\n : 0;\n\n const hpBalance = +vestsToHp(\n vestingShares,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const outgoingDelegationsHp = +vestsToHp(\n delegatedVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const incomingDelegationsHp = +vestsToHp(\n receivedVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const pendingPowerDownHp = +vestsToHp(\n remainingToWithdrawVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const nextPowerDownHp = +vestsToHp(\n nextWithdrawalVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const totalBalance = Math.max(hpBalance - pendingPowerDownHp, 0);\n const availableHp = Math.max(hpBalance - outgoingDelegationsHp, 0);\n\n return {\n name: \"HP\",\n title: \"Hive Power\",\n price,\n accountBalance: +totalBalance.toFixed(3),\n apr: getAPR(dynamicProps),\n parts: [\n {\n name: \"hp_balance\",\n balance: hpBalance,\n },\n {\n name: \"available\",\n balance: +availableHp.toFixed(3),\n },\n {\n name: \"outgoing_delegations\",\n balance: outgoingDelegationsHp,\n },\n {\n name: \"incoming_delegations\",\n balance: incomingDelegationsHp,\n },\n ...(pendingPowerDownHp > 0\n ? [\n {\n name: \"pending_power_down\",\n balance: +pendingPowerDownHp.toFixed(3),\n },\n ]\n : []),\n ...(nextPowerDownHp > 0 && nextPowerDownHp !== pendingPowerDownHp\n ? [\n {\n name: \"next_power_down\",\n balance: +nextPowerDownHp.toFixed(3),\n },\n ]\n : []),\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { utils } from \"../../../hive-tx\";\nimport { HiveOperationGroup } from \"../types\";\nconst ops = utils.operations;\n\nexport const HIVE_ACCOUNT_OPERATION_GROUPS: Record<\n HiveOperationGroup,\n number[]\n> = {\n transfers: [\n ops.transfer,\n ops.transfer_to_savings,\n ops.transfer_from_savings,\n ops.cancel_transfer_from_savings,\n ops.recurrent_transfer,\n ops.fill_recurrent_transfer,\n ops.escrow_transfer,\n ops.fill_recurrent_transfer,\n ],\n \"market-orders\": [\n ops.fill_convert_request,\n ops.fill_order,\n ops.fill_collateralized_convert_request,\n ops.limit_order_create2,\n ops.limit_order_create,\n ops.limit_order_cancel,\n ],\n interests: [ops.interest],\n \"stake-operations\": [\n ops.return_vesting_delegation,\n ops.withdraw_vesting,\n ops.transfer_to_vesting,\n ops.set_withdraw_vesting_route,\n ops.update_proposal_votes,\n ops.fill_vesting_withdraw,\n ops.account_witness_proxy,\n ops.delegate_vesting_shares,\n ],\n rewards: [\n ops.author_reward,\n ops.curation_reward,\n ops.producer_reward,\n ops.claim_reward_balance,\n ops.comment_benefactor_reward,\n ops.liquidity_reward,\n ops.proposal_pay,\n ],\n \"\": [],\n};\n","import { utils } from \"../../../hive-tx\";\nimport type { HiveOperationName } from \"../types\";\n\nexport const HIVE_OPERATION_LIST = Object.keys(\n utils.operations\n) as HiveOperationName[];\n","import { utils } from \"../../../hive-tx\";\nimport type { HiveOperationName } from \"../types\";\n\nconst operationOrders = utils.operations as Record<\n HiveOperationName,\n number\n>;\n\nexport const HIVE_OPERATION_ORDERS = operationOrders;\n\nexport const HIVE_OPERATION_NAME_BY_ID: Record =\n Object.entries(operationOrders).reduce((acc, [name, id]) => {\n acc[id] = name as HiveOperationName;\n return acc;\n }, {} as Record);\n","import { callRPC } from \"../../../hive-tx\";\nimport { utils } from \"../../../hive-tx\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { HIVE_ACCOUNT_OPERATION_GROUPS } from \"../consts\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n HiveOperationFilterKey,\n HiveOperationFilterValue,\n HiveOperationGroup,\n HiveOperationName,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nconst operationOrders = utils.operations;\n\nfunction isHiveOperationName(value: string): value is HiveOperationName {\n return Object.prototype.hasOwnProperty.call(operationOrders, value);\n}\n\nexport function resolveHiveOperationFilters(filters: HiveOperationFilter): {\n filterKey: HiveOperationFilterKey;\n filterArgs: any[];\n} {\n const rawValues: HiveOperationFilterValue[] = Array.isArray(filters)\n ? filters\n : [filters];\n\n const hasAll = rawValues.includes(\"\" as HiveOperationGroup);\n\n const uniqueValues = Array.from(\n new Set(\n rawValues.filter(\n (value): value is HiveOperationFilterValue =>\n value !== undefined &&\n value !== null &&\n value !== (\"\" as HiveOperationGroup)\n )\n )\n );\n\n const filterKey: HiveOperationFilterKey =\n hasAll || uniqueValues.length === 0\n ? \"all\"\n : uniqueValues\n .map((value) => value.toString())\n .sort()\n .join(\"|\");\n\n const operationIds = new Set();\n\n if (!hasAll) {\n uniqueValues.forEach((value) => {\n if (value in HIVE_ACCOUNT_OPERATION_GROUPS) {\n HIVE_ACCOUNT_OPERATION_GROUPS[value as HiveOperationGroup].forEach(\n (id) => operationIds.add(id)\n );\n return;\n }\n\n if (isHiveOperationName(value)) {\n operationIds.add(operationOrders[value]);\n }\n });\n }\n\n const filterArgs = makeBitMaskFilter(Array.from(operationIds));\n\n return {\n filterKey,\n filterArgs,\n };\n}\n\n/**\n * The filter values the caller passed, minus the \"all\" sentinel. Group aliases are\n * kept as-is: they never equal an operation name, so they simply never match.\n *\n * Used by the per-asset `select` filters so an operation a caller deliberately\n * requested is never silently dropped just because the asset filter has no opinion\n * about it. Passing no filter at all keeps the historical behaviour: the asset's own\n * allow-list decides, and nothing extra leaks in.\n */\nexport function collectRequestedOperations(\n filters: HiveOperationFilter\n): Set {\n const rawValues = Array.isArray(filters) ? filters : [filters];\n return new Set(\n rawValues.filter(\n (value): value is HiveOperationFilterValue =>\n value !== undefined && value !== null && value !== (\"\" as HiveOperationGroup)\n )\n );\n}\n\n/**\n * Cursor for `condenser_api.get_account_history`.\n *\n * A page comes back in ASCENDING `num` order, so the OLDEST entry is at index 0 and\n * walking backwards means `page[0].num - 1`. Reading the LAST entry instead takes the\n * NEWEST row, which advances the window by a single operation per page (a page of 1000\n * overlaps its predecessor by 999) and, once `num` reaches 0, yields -1 — the \"newest\"\n * sentinel `initialPageParam` uses — so the walk restarts at the head of the history and\n * never terminates.\n */\nexport function getNextAccountHistoryPageParam(\n lastPage: HiveTransaction[] | undefined\n): number | undefined {\n if (!lastPage?.length) {\n return undefined;\n }\n\n const oldest = Number(lastPage[0]?.num ?? 0);\n return Number.isFinite(oldest) && oldest > 0 ? oldest - 1 : undefined;\n}\n\n/**\n * The `limit` to request for a given cursor.\n *\n * `condenser_api.get_account_history` asserts `start >= limit - 1`, because `start` is a\n * 0-based index into the account's operation list and the node walks `limit` entries back\n * from it. The cursor above is derived from `num` alone, so the last window before the\n * start of history is necessarily shorter than `limit`, and asking for the full `limit`\n * there fails the assert instead of returning the remaining rows.\n *\n * Narrowing the window to `pageParam + 1` asks for exactly what is left. The `-1`\n * sentinel (\"give me the newest\") is not an index and passes through untouched.\n */\nexport function resolveAccountHistoryLimit(\n pageParam: number,\n limit: number\n): number {\n if (!Number.isFinite(pageParam) || pageParam < 0) {\n return limit;\n }\n\n return Math.min(limit, pageParam + 1);\n}\n\nfunction makeBitMaskFilter(allowedOperations: number[]) {\n let low = 0n;\n let high = 0n;\n\n allowedOperations.forEach((operation) => {\n if (operation < 64) {\n low |= 1n << BigInt(operation);\n } else {\n high |= 1n << BigInt(operation - 64);\n }\n });\n\n return [\n low !== 0n ? low.toString() : null,\n high !== 0n ? high.toString() : null,\n ];\n}\n\nexport function getHiveAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterArgs, filterKey } = resolveHiveOperationFilters(filters);\n const requestedOperations = collectRequestedOperations(filters);\n\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive\", \"transactions\", username, limit, filterKey],\n initialPageParam: -1,\n getNextPageParam: getNextAccountHistoryPageParam,\n\n queryFn: async ({ pageParam }) => {\n const response = await callRPC(\n \"condenser_api.get_account_history\",\n [\n username,\n pageParam,\n resolveAccountHistoryLimit(Number(pageParam), limit),\n ...filterArgs,\n ]\n );\n\n return response.map(\n (x: any) =>\n ({\n num: x[0],\n type: x[1].op[0],\n timestamp: x[1].timestamp,\n trx_id: x[1].trx_id,\n ...x[1].op[1],\n }) satisfies HiveTransaction\n );\n },\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const hivePayout = parseAsset(\n (item as AuthorReward).hive_payout\n );\n return hivePayout.amount > 0;\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"transfer_to_vesting\":\n case \"recurrent_transfer\":\n return parseAsset(item.amount).symbol === \"HIVE\";\n\n case \"transfer_from_savings\" as HiveOperationName:\n // The completed withdrawal carries the same asset as the request that\n // opened it, so it needs the same guard. Without a case of its own it\n // falls to the default below, which has no symbol check.\n case \"fill_transfer_from_savings\" as HiveOperationName:\n return parseAsset((item as any).amount).symbol === \"HIVE\";\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"HIVE\"].includes(asset.symbol);\n\n case \"claim_reward_balance\":\n const rewardHive = parseAsset(\n (item as ClaimRewardBalance).reward_hive\n );\n return rewardHive.amount > 0;\n\n case \"curation_reward\":\n case \"cancel_transfer_from_savings\":\n case \"fill_order\":\n case \"limit_order_create\":\n case \"limit_order_cancel\":\n case \"fill_convert_request\":\n case \"fill_collateralized_convert_request\":\n return true;\n\n case \"limit_order_create2\" as HiveOperationName:\n return true;\n default:\n // Keep an operation the caller asked for by name. Without this the\n // filter UI advertises every operation while this switch silently\n // discards the ones it has no opinion about, so picking e.g.\n // `fill_transfer_from_savings` returns an empty list. Requests that\n // pass no filter still fall through to `false`, so the unfiltered\n // HIVE view is unchanged.\n return requestedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { parseAsset } from \"@/modules/core/utils\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n HiveOperationName,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport {\n collectRequestedOperations,\n getHiveAssetTransactionsQueryOptions,\n resolveHiveOperationFilters,\n} from \"./get-hive-asset-transactions-query-options\";\n\nexport function getHbdAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterKey } = resolveHiveOperationFilters(filters);\n const requestedOperations = collectRequestedOperations(filters);\n\n return infiniteQueryOptions({\n ...getHiveAssetTransactionsQueryOptions(username, limit, filters),\n queryKey: [\"assets\", \"hbd\", \"transactions\", username, limit, filterKey],\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const hbdPayout = parseAsset(\n (item as AuthorReward).hbd_payout\n );\n return hbdPayout.amount > 0;\n\n case \"claim_reward_balance\":\n const rewardHbd = parseAsset(\n (item as ClaimRewardBalance).reward_hbd\n );\n return rewardHbd.amount > 0;\n\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"transfer_to_vesting\":\n case \"recurrent_transfer\":\n return parseAsset(item.amount).symbol === \"HBD\";\n\n case \"transfer_from_savings\" as HiveOperationName:\n // The completed withdrawal carries the same asset as the request that\n // opened it, so it needs the same guard. Without a case of its own it\n // falls to the default below, which has no symbol check.\n case \"fill_transfer_from_savings\" as HiveOperationName:\n return parseAsset((item as any).amount).symbol === \"HBD\";\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"HBD\"].includes(asset.symbol);\n\n case \"cancel_transfer_from_savings\":\n case \"fill_order\":\n case \"limit_order_create\":\n case \"limit_order_cancel\":\n case \"fill_convert_request\":\n case \"fill_collateralized_convert_request\":\n case \"proposal_pay\":\n case \"interest\":\n return true;\n\n case \"limit_order_create2\" as HiveOperationName:\n return true;\n default:\n // See the HIVE options: keep an operation the caller named explicitly,\n // otherwise the filter UI offers operations this switch throws away.\n // Unfiltered requests still fall through to `false`.\n return requestedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { parseAsset } from \"@/modules/core/utils\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport {\n getHiveAssetTransactionsQueryOptions,\n resolveHiveOperationFilters,\n} from \"./get-hive-asset-transactions-query-options\";\n\nexport function getHivePowerAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterKey } = resolveHiveOperationFilters(filters);\n\n const userSelectedOperations = new Set(\n Array.isArray(filters) ? filters : [filters]\n );\n const hasAllFilter =\n userSelectedOperations.has(\"\" as any) || userSelectedOperations.size === 0;\n\n return infiniteQueryOptions({\n ...getHiveAssetTransactionsQueryOptions(username, limit, filters),\n queryKey: [\n \"assets\",\n \"hive-power\",\n \"transactions\",\n username,\n limit,\n filterKey,\n ],\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const vestingPayout = parseAsset(\n (item as AuthorReward).vesting_payout\n );\n return vestingPayout.amount > 0;\n\n case \"claim_reward_balance\":\n const rewardVests = parseAsset(\n (item as ClaimRewardBalance).reward_vests\n );\n return rewardVests.amount > 0;\n\n case \"transfer_to_vesting\":\n return true;\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"recurrent_transfer\":\n return [\"VESTS\", \"HP\"].includes(parseAsset(item.amount).symbol);\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"VESTS\", \"HP\"].includes(asset.symbol);\n\n case \"curation_reward\":\n case \"withdraw_vesting\":\n case \"delegate_vesting_shares\":\n case \"fill_vesting_withdraw\":\n case \"return_vesting_delegation\":\n case \"producer_reward\":\n case \"set_withdraw_vesting_route\":\n return true;\n default:\n return hasAllFilter || userSelectedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport type { HiveMarketMetric } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nfunction formatDate(date: Date): string {\n const pad = (n: number) => n.toString().padStart(2, \"0\");\n return `${date.getFullYear()}-${pad(date.getMonth() + 1)}-${pad(date.getDate())}T${pad(date.getHours())}:${pad(date.getMinutes())}:${pad(date.getSeconds())}`;\n}\n\nfunction subtractSeconds(date: Date, seconds: number): Date {\n return new Date(date.getTime() - seconds * 1000);\n}\n\nexport function getHiveAssetMetricQueryOptions(bucketSeconds = 86_400) {\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive\", \"metrics\", bucketSeconds],\n queryFn: async ({ pageParam: [startDate, endDate] }) => {\n const apiData: HiveMarketMetric[] = await callRPC(\"condenser_api.get_market_history\", [bucketSeconds, formatDate(startDate), formatDate(endDate)]\n );\n\n return apiData.map(({ hive, non_hive, open }) => ({\n close: non_hive.close / hive.close,\n open: non_hive.open / hive.open,\n low: non_hive.low / hive.low,\n high: non_hive.high / hive.high,\n volume: hive.volume,\n time: new Date(open),\n }));\n },\n initialPageParam: [\n subtractSeconds(new Date(), Math.max(100 * bucketSeconds, 28_800)),\n new Date(),\n ],\n getNextPageParam: (_, __, [prevStartDate]) => [\n subtractSeconds(prevStartDate, Math.max(100 * bucketSeconds, 28_800)),\n subtractSeconds(prevStartDate, bucketSeconds),\n ],\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { WithdrawRoute } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getHiveAssetWithdrawalRoutesQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive\", \"withdrawal-routes\", username],\n queryFn: () =>\n callRPC(\"condenser_api.get_withdraw_routes\", [\n username,\n \"outgoing\",\n ]) as Promise,\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { DelegatedVestingShare } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getHivePowerDelegatesInfiniteQueryOptions(\n username: string,\n limit = 50\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-power\", \"delegates\", username],\n enabled: !!username,\n queryFn: () =>\n callRPC(\"condenser_api.get_vesting_delegations\", [\n username,\n \"\",\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { getAccountDelegationsQueryOptions } from \"./get-account-delegations-query-options\";\nimport { toReceivedVestingShares } from \"../utils/received-vesting-shares\";\n\n/**\n * The same list as {@link getReceivedVestingSharesQueryOptions} under the key\n * the wallet's HP asset views use. Both read the HAF balance-api through the\n * shared account-delegations query, so neither depends on the Ecency\n * notification database.\n */\nexport function getHivePowerDelegatingsQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.assets.hivePowerDelegatings(username),\n enabled: !!username,\n queryFn: async () =>\n toReceivedVestingShares(\n username,\n // A page that shows the totals and the list asks twice within seconds;\n // a minute of freshness makes that one balance-api request.\n await getQueryClient().fetchQuery({\n ...getAccountDelegationsQueryOptions(username),\n staleTime: 60_000,\n }),\n ),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OrdersData } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get the internal HIVE/HBD market order book\n *\n * @param limit - Maximum number of orders to fetch (default: 500)\n */\nexport function getOrderBookQueryOptions(limit = 500) {\n return queryOptions({\n queryKey: [\"market\", \"order-book\", limit],\n queryFn: () =>\n callRPC(\"condenser_api.get_order_book\", [\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketStatistics } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HIVE/HBD market statistics from the blockchain\n */\nexport function getMarketStatisticsQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"statistics\"],\n queryFn: () =>\n callRPC(\"condenser_api.get_ticker\", []) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketCandlestickDataItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HIVE/HBD market history (candlestick data)\n *\n * @param seconds - Bucket size in seconds\n * @param startDate - Start date for the data\n * @param endDate - End date for the data\n */\nexport function getMarketHistoryQueryOptions(\n seconds: number,\n startDate: Date,\n endDate: Date\n) {\n const formatDate = (date: Date) => {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n };\n\n return queryOptions({\n queryKey: [\"market\", \"history\", seconds, startDate.getTime(), endDate.getTime()],\n queryFn: () =>\n callRPC(\"condenser_api.get_market_history\", [\n seconds,\n formatDate(startDate),\n formatDate(endDate),\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { HiveHbdStats, MarketCandlestickDataItem, MarketStatistics } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get combined HIVE/HBD statistics including price, 24h change, and volume\n */\nexport function getHiveHbdStatsQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"hive-hbd-stats\"],\n queryFn: async () => {\n // Get current market statistics\n const stats = (await callRPC(\"condenser_api.get_ticker\", [])) as MarketStatistics;\n\n // Get 24h market history\n const now = new Date();\n const oneDayAgo = new Date(now.getTime() - 86400000); // 24 hours ago\n\n const formatDate = (date: Date) => {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n };\n\n const dayChange = (await callRPC(\"condenser_api.get_market_history\", [86400, formatDate(oneDayAgo), formatDate(now)]\n )) as MarketCandlestickDataItem[];\n\n // Calculate stats\n const result: HiveHbdStats = {\n price: +stats.latest,\n close: dayChange[0] ? dayChange[0].non_hive.open / dayChange[0].hive.open : 0,\n high: dayChange[0] ? dayChange[0].non_hive.high / dayChange[0].hive.high : 0,\n low: dayChange[0] ? dayChange[0].non_hive.low / dayChange[0].hive.low : 0,\n percent: dayChange[0]\n ? 100 - ((dayChange[0].non_hive.open / dayChange[0].hive.open) * 100) / +stats.latest\n : 0,\n totalFromAsset: stats.hive_volume.split(\" \")[0],\n totalToAsset: stats.hbd_volume.split(\" \")[0],\n };\n\n return result;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketData } from \"../types\";\nimport { getBoundFetch } from \"@/modules/core\";\n\n/**\n * Get market chart data from CoinGecko API\n *\n * @param coin - Coin ID (e.g., \"hive\", \"bitcoin\")\n * @param vsCurrency - Currency to compare against (e.g., \"usd\", \"eur\")\n * @param fromTs - From timestamp (Unix timestamp in seconds)\n * @param toTs - To timestamp (Unix timestamp in seconds)\n */\nexport function getMarketDataQueryOptions(\n coin: string,\n vsCurrency: string,\n fromTs: string,\n toTs: string\n) {\n return queryOptions({\n queryKey: [\"market\", \"data\", coin, vsCurrency, fromTs, toTs],\n queryFn: async ({ signal }) => {\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/coins/${coin}/market_chart/range?vs_currency=${vsCurrency}&from=${fromTs}&to=${toTs}`;\n\n const response = await fetchApi(url, { signal });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch market data: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OrdersDataItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nfunction formatDate(date: Date) {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n}\n\nexport function getTradeHistoryQueryOptions(\n limit = 1000,\n startDate?: Date,\n endDate?: Date\n) {\n const end = endDate ?? new Date();\n const start =\n startDate ?? new Date(end.getTime() - 10 * 60 * 60 * 1000);\n\n return queryOptions({\n queryKey: [\"market\", \"trade-history\", limit, start.getTime(), end.getTime()],\n queryFn: () =>\n callRPC(\"condenser_api.get_trade_history\", [\n formatDate(start),\n formatDate(end),\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface FeedHistoryItem {\n id: number;\n current_median_history: {\n base: string;\n quote: string;\n };\n market_median_history: {\n base: string;\n quote: string;\n };\n current_min_history: {\n base: string;\n quote: string;\n };\n current_max_history: {\n base: string;\n quote: string;\n };\n price_history: Array<{\n base: string;\n quote: string;\n }>;\n}\n\n/**\n * Get feed history from the blockchain\n * Returns price feed history including median prices\n */\nexport function getFeedHistoryQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"feed-history\"],\n queryFn: async () => {\n try {\n const feedHistory = await callRPC(\"condenser_api.get_feed_history\", []);\n return feedHistory as FeedHistoryItem;\n } catch (error) {\n throw error;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface MedianHistoryPrice {\n base: string;\n quote: string;\n}\n\n/**\n * Get current median history price from the blockchain\n * Returns the current median price for HIVE/HBD conversion\n */\nexport function getCurrentMedianHistoryPriceQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"current-median-history-price\"],\n queryFn: async () => {\n try {\n const price = await callRPC(\"condenser_api.get_current_median_history_price\", []);\n return price as MedianHistoryPrice;\n } catch (error) {\n throw error;\n }\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildLimitOrderCreateOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface LimitOrderCreatePayload {\n amountToSell: string;\n minToReceive: string;\n fillOrKill: boolean;\n expiration: string;\n orderId: number;\n}\n\nexport function useLimitOrderCreate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"market\", \"limit-order-create\"],\n username,\n (payload) => [\n buildLimitOrderCreateOp(\n username!,\n payload.amountToSell,\n payload.minToReceive,\n payload.fillOrKill,\n payload.expiration,\n payload.orderId\n )\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.wallet.openOrders(username!),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildLimitOrderCancelOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface LimitOrderCancelPayload {\n orderId: number;\n}\n\nexport function useLimitOrderCancel(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"market\", \"limit-order-cancel\"],\n username,\n ({ orderId }) => [\n buildLimitOrderCancelOp(username!, orderId)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.wallet.openOrders(username!),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { MarketData } from \"./types\";\nimport { CurrencyRates } from \"@/modules/private-api/types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nasync function parseJsonResponse(response: Response): Promise {\n const data = (await response.json()) as T;\n if (!response.ok) {\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n return data;\n}\n\nexport async function getMarketData(\n coin: string,\n vsCurrency: string,\n fromTs: string,\n toTs: string\n): Promise {\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/coins/${coin}/market_chart/range?vs_currency=${vsCurrency}&from=${fromTs}&to=${toTs}`;\n const response = await fetchApi(url);\n return parseJsonResponse(response);\n}\n\nexport async function getCurrencyRate(cur: string): Promise {\n if (cur === \"hbd\") {\n return 1;\n }\n\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${cur}`;\n const response = await fetchApi(url);\n const data = await parseJsonResponse<{ hive_dollar: Record }>(response);\n return data.hive_dollar[cur];\n}\n\nexport async function getCurrencyTokenRate(currency: string, token: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost +\n `/private-api/market-data/${currency === \"hbd\" ? \"usd\" : currency}/${token}`\n );\n\n return parseJsonResponse(response);\n}\n\nexport async function getCurrencyRates(): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/market-data/latest\");\n return parseJsonResponse(response);\n}\n\nexport async function getHivePrice(): Promise<{ hive: { usd: number } }> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n \"https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd\"\n );\n return parseJsonResponse<{ hive: { usd: number } }>(response);\n}\n","import { ConfigManager, getBoundFetch } from \"@/modules/core\";\nimport type { HiveEngineOpenOrder } from \"./types\";\n\ntype EngineOrderBookEntry = {\n txId: string;\n timestamp: number;\n account: string;\n symbol: string;\n quantity: string;\n price: string;\n tokensLocked?: string;\n};\n\nconst ENGINE_RPC_HEADERS = { \"Content-type\": \"application/json\" };\n\nasync function engineRpc(payload: Record): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const response = await fetchApi(`${baseUrl}/private-api/engine-api`, {\n method: \"POST\",\n body: JSON.stringify(payload),\n headers: ENGINE_RPC_HEADERS,\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – request failed with ${response.status}`\n );\n }\n\n const data = (await response.json()) as { result: T };\n return data.result;\n}\n\nasync function engineRpcSafe(\n payload: Record,\n fallback: T\n): Promise {\n try {\n return await engineRpc(payload);\n } catch (e) {\n return fallback;\n }\n}\n\nexport async function getHiveEngineOrderBook(\n symbol: string,\n limit: number = 50\n): Promise<{ buy: T[]; sell: T[] }> {\n const baseParams = {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n query: { symbol },\n limit,\n offset: 0,\n },\n id: 1,\n };\n\n const [buy, sell] = await Promise.all([\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"buyBook\",\n indexes: [{ index: \"price\", descending: true }],\n },\n },\n []\n ),\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"sellBook\",\n indexes: [{ index: \"price\", descending: false }],\n },\n },\n []\n ),\n ]);\n\n const sortByPriceDesc = (items: T[]) =>\n items.sort((a, b) => {\n const left = Number((a as EngineOrderBookEntry).price ?? 0);\n const right = Number((b as EngineOrderBookEntry).price ?? 0);\n return right - left;\n });\n const sortByPriceAsc = (items: T[]) =>\n items.sort((a, b) => {\n const left = Number((a as EngineOrderBookEntry).price ?? 0);\n const right = Number((b as EngineOrderBookEntry).price ?? 0);\n return left - right;\n });\n\n return {\n buy: sortByPriceDesc(buy),\n sell: sortByPriceAsc(sell),\n };\n}\n\nexport async function getHiveEngineTradeHistory>(\n symbol: string,\n limit: number = 50\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n table: \"tradesHistory\",\n query: { symbol },\n limit,\n offset: 0,\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineOpenOrders(\n account: string,\n symbol: string,\n limit: number = 100\n): Promise {\n const baseParams = {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n query: { symbol, account },\n limit,\n offset: 0,\n },\n id: 1,\n };\n\n const [buyRaw, sellRaw] = await Promise.all([\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"buyBook\",\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n },\n []\n ),\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"sellBook\",\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n },\n []\n ),\n ]);\n\n const formatTotal = (quantity: string, price: string) =>\n (Number(quantity || 0) * Number(price || 0)).toFixed(8);\n\n const buy: HiveEngineOpenOrder[] = buyRaw.map((order) => ({\n id: order.txId,\n type: \"buy\",\n account: order.account,\n symbol: order.symbol,\n quantity: order.quantity,\n price: order.price,\n total: order.tokensLocked ?? formatTotal(order.quantity, order.price),\n timestamp: Number(order.timestamp ?? 0),\n }));\n\n const sell: HiveEngineOpenOrder[] = sellRaw.map((order) => ({\n id: order.txId,\n type: \"sell\",\n account: order.account,\n symbol: order.symbol,\n quantity: order.quantity,\n price: order.price,\n total: formatTotal(order.quantity, order.price),\n timestamp: Number(order.timestamp ?? 0),\n }));\n\n return [...buy, ...sell].sort((a, b) => b.timestamp - a.timestamp) as T[];\n}\n\n/**\n * Market metrics, optionally narrowed to one symbol or to a list of them.\n *\n * An unfiltered call is served from a single page – the node caps `find` at 1000 rows\n * while Hive engine has far more traded tokens than that – so callers that only care\n * about specific symbols must pass them. Scanning the unfiltered page for a symbol\n * silently reports \"no market\" for everything outside it.\n */\nexport async function getHiveEngineMetrics>(\n symbol?: string | string[],\n account?: string\n): Promise {\n if (Array.isArray(symbol) && symbol.length === 0) {\n return [];\n }\n\n const symbolQuery = Array.isArray(symbol)\n ? { symbol: { $in: symbol } }\n : symbol\n ? { symbol }\n : {};\n\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n table: \"metrics\",\n query: {\n ...symbolQuery,\n ...(account ? { account } : {}),\n },\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokensMarket>(\n account?: string,\n symbol?: string | string[]\n): Promise {\n return getHiveEngineMetrics(symbol, account);\n}\n\nexport async function getHiveEngineTokensBalances>(\n username: string\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"tokens\",\n table: \"balances\",\n query: {\n account: username,\n },\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokensMetadata>(\n tokens: string[]\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"tokens\",\n table: \"tokens\",\n query: {\n symbol: { $in: tokens },\n },\n },\n id: 2,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokenTransactions>(\n username: string,\n symbol: string,\n limit: number,\n offset: number\n): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/engine-account-history\", baseUrl);\n url.searchParams.set(\"account\", username);\n url.searchParams.set(\"symbol\", symbol);\n url.searchParams.set(\"limit\", limit.toString());\n url.searchParams.set(\"offset\", offset.toString());\n\n const response = await fetchApi(url.toString(), {\n method: \"GET\",\n headers: { \"Content-type\": \"application/json\" },\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – account history failed with ${response.status}`\n );\n }\n\n return (await response.json()) as T[];\n}\n\nexport async function getHiveEngineTokenMetrics>(\n symbol: string,\n interval = \"daily\"\n): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/engine-chart-api\", baseUrl);\n url.searchParams.set(\"symbol\", symbol);\n url.searchParams.set(\"interval\", interval);\n\n const response = await fetchApi(url.toString(), {\n headers: { \"Content-type\": \"application/json\" },\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – chart failed with ${response.status}`\n );\n }\n\n return (await response.json()) as T[];\n}\n\nexport async function getHiveEngineUnclaimedRewards>(\n username: string\n): Promise> {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const response = await fetchApi(\n `${baseUrl}/private-api/engine-reward-api/${username}?hive=1`\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – rewards failed with ${response.status}`\n );\n }\n\n return (await response.json()) as Record;\n}\n","import { getHiveEngineTokensBalances } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenBalance } from \"../types\";\n\nexport function getHiveEngineTokensBalancesQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"balances\", username] as const,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensBalances(username);\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineMarketResponse } from \"../types\";\nimport { getHiveEngineTokensMarket } from \"../requests\";\n\nexport function getHiveEngineTokensMarketQueryOptions() {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"markets\"],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensMarket();\n },\n });\n}\n","import { getHiveEngineTokensMetadata } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenMetadataResponse } from \"../types\";\n\nexport function getHiveEngineTokensMetadataQueryOptions(tokens: string[]) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"metadata-list\", tokens] as const,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensMetadata(tokens);\n },\n });\n}\n","import { getHiveEngineTokenTransactions } from \"../requests\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTransaction } from \"../types\";\n\nexport function getHiveEngineTokenTransactionsQueryOptions(\n username: string | undefined,\n symbol: string,\n limit = 20\n) {\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol, \"transactions\", username],\n enabled: !!symbol && !!username,\n initialPageParam: 0,\n queryFn: async ({ pageParam }) => {\n if (!symbol || !username) {\n throw new Error(\n \"[SDK][HiveEngine] – token or username missed\"\n );\n }\n return getHiveEngineTokenTransactions(\n username,\n symbol,\n limit,\n pageParam as number\n );\n },\n getNextPageParam: (lastPage, _allPages, lastPageParam) =>\n (lastPage?.length ?? 0) === limit ? (lastPageParam as number) + limit : undefined,\n getPreviousPageParam: (_firstPage, _allPages, firstPageParam) =>\n (firstPageParam as number) > 0 ? (firstPageParam as number) - limit : undefined,\n });\n}\n","import { getHiveEngineTokenMetrics } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineMetric } from \"../types\";\n\nexport function getHiveEngineTokensMetricsQueryOptions(\n symbol: string,\n interval = \"daily\"\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokenMetrics(symbol, interval);\n },\n });\n}\n","import { getHiveEngineUnclaimedRewards } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenStatus } from \"../types\";\n\nexport function getHiveEngineUnclaimedRewardsQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"unclaimed\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n enabled: !!username,\n queryFn: async () => {\n try {\n const data = await getHiveEngineUnclaimedRewards(\n username as string\n );\n return Object.values(data).filter(\n ({ pending_token }) => pending_token > 0\n );\n } catch (e) {\n return [];\n }\n },\n });\n}\n","import { getHiveEngineTokensMarket } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenInfo } from \"../types\";\n\nexport function getAllHiveEngineTokensQueryOptions(\n account?: string,\n symbol?: string | string[]\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"all-tokens\", account, symbol] as const,\n queryFn: async () => {\n return getHiveEngineTokensMarket(account, symbol);\n },\n });\n}\n","interface Options {\n fractionDigits?: number;\n prefix?: string;\n suffix?: string;\n}\n\nexport function formattedNumber(\n value: number | string,\n options: Options | undefined = undefined\n) {\n let opts: Options = {\n fractionDigits: 3,\n prefix: \"\",\n suffix: \"\",\n };\n\n if (options) {\n opts = { ...opts, ...options };\n }\n\n const { fractionDigits, prefix, suffix } = opts;\n\n let out = \"\";\n\n if (prefix) out += prefix + \" \";\n // turn too small values to zero. Bug: https://github.com/adamwdraper/Numeral-js/issues/563\n const av = Math.abs(parseFloat(value.toString())) < 0.0001 ? 0 : value;\n const num = typeof av === \"string\" ? parseFloat(av) : av;\n out += num.toLocaleString(\"en-US\", {\n minimumFractionDigits: fractionDigits,\n maximumFractionDigits: fractionDigits,\n useGrouping: true,\n });\n if (suffix) out += \" \" + suffix;\n\n return out;\n}\n","import { formattedNumber } from \"./formatted-number\";\n\ninterface HiveEngineTokenProps {\n symbol: string;\n name: string;\n icon: string;\n precision: number;\n stakingEnabled: boolean;\n delegationEnabled: boolean;\n balance: string;\n stake: string;\n delegationsIn: string;\n delegationsOut: string;\n usdValue: number;\n}\n\nexport class HiveEngineToken {\n symbol: string;\n name?: string;\n icon?: string;\n\n precision?: number;\n stakingEnabled?: boolean;\n delegationEnabled?: boolean;\n balance: number;\n stake: number;\n stakedBalance: number;\n delegationsIn: number;\n delegationsOut: number;\n usdValue: number;\n\n constructor(props: HiveEngineTokenProps) {\n this.symbol = props.symbol;\n this.name = props.name || \"\";\n this.icon = props.icon || \"\";\n\n this.precision = props.precision || 0;\n this.stakingEnabled = props.stakingEnabled || false;\n this.delegationEnabled = props.delegationEnabled || false;\n this.balance = parseFloat(props.balance) || 0;\n this.stake = parseFloat(props.stake) || 0;\n this.delegationsIn = parseFloat(props.delegationsIn) || 0;\n this.delegationsOut = parseFloat(props.delegationsOut) || 0;\n this.stakedBalance =\n this.stake + this.delegationsIn - this.delegationsOut;\n this.usdValue = props.usdValue;\n }\n\n hasDelegations = (): boolean => {\n if (!this.delegationEnabled) {\n return false;\n }\n\n return this.delegationsIn > 0 && this.delegationsOut > 0;\n };\n\n delegations = (): string => {\n if (!this.hasDelegations()) {\n return \"\";\n }\n\n return `(${formattedNumber(this.stake, {\n fractionDigits: this.precision,\n })} + ${formattedNumber(this.delegationsIn, {\n fractionDigits: this.precision,\n })} - ${formattedNumber(this.delegationsOut, {\n fractionDigits: this.precision,\n })})`;\n };\n\n staked = (): string => {\n if (!this.stakingEnabled) {\n return \"-\";\n }\n\n if (this.stakedBalance < 0.0001) {\n return this.stakedBalance.toString();\n }\n\n return formattedNumber(this.stakedBalance, {\n fractionDigits: this.precision,\n });\n };\n\n balanced = (): string => {\n if (this.balance < 0.0001) {\n return this.balance.toString();\n }\n\n return formattedNumber(this.balance, { fractionDigits: this.precision });\n };\n}\n","import {\n getHiveEngineTokensBalances,\n getHiveEngineTokensMarket,\n getHiveEngineTokensMetadata,\n} from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type {\n HiveEngineTokenBalance,\n Token,\n TokenMetadata,\n HiveEngineTokenInfo,\n} from \"../types\";\nimport { HiveEngineToken } from \"../utils\";\n\ninterface DynamicProps {\n base: number;\n quote: number;\n}\n\nexport function getHiveEngineBalancesWithUsdQueryOptions(\n account: string,\n dynamicProps?: DynamicProps,\n allTokens?: HiveEngineTokenInfo[]\n) {\n return queryOptions({\n queryKey: [\n \"assets\",\n \"hive-engine\",\n \"balances-with-usd\",\n account,\n dynamicProps,\n allTokens,\n ] as const,\n queryFn: async () => {\n if (!account) {\n throw new Error(\"[HiveEngine] No account in a balances query\");\n }\n\n const balances = await getHiveEngineTokensBalances(account);\n\n const tokens = await getHiveEngineTokensMetadata(\n balances.map((t) => t.symbol)\n );\n\n const pricePerHive = dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0;\n const providedMetrics: ReadonlyArray = Array.isArray(\n allTokens\n )\n ? allTokens\n : [];\n\n // Whatever the caller passed comes from an unfiltered metrics call, which the node\n // caps at 1000 rows – held tokens outside that page have no price and used to be\n // valued at zero, understating the wallet. Ask for the missing ones by symbol.\n const unpricedSymbols = balances\n .map((balance) => balance.symbol)\n .filter(\n (symbol) =>\n symbol !== \"SWAP.HIVE\" &&\n !providedMetrics.some((metric) => metric.symbol === symbol)\n );\n\n const metrics: ReadonlyArray = [\n ...providedMetrics,\n ...(unpricedSymbols.length\n ? await getHiveEngineTokensMarket(\n undefined,\n unpricedSymbols\n )\n : []),\n ];\n\n return balances.map((balance) => {\n const token = tokens.find((t) => t.symbol === balance.symbol);\n let tokenMetadata: TokenMetadata | undefined;\n\n if (token?.metadata) {\n try {\n tokenMetadata = JSON.parse(token.metadata) as TokenMetadata;\n } catch {\n tokenMetadata = undefined;\n }\n }\n\n const metric = metrics.find((m) => m.symbol === balance.symbol);\n const lastPrice = Number(metric?.lastPrice ?? \"0\");\n const balanceAmount = Number(balance.balance);\n\n const usdValue =\n balance.symbol === \"SWAP.HIVE\"\n ? pricePerHive * balanceAmount\n : lastPrice === 0\n ? 0\n : Number(\n (lastPrice * pricePerHive * balanceAmount).toFixed(10)\n );\n\n return new HiveEngineToken({\n symbol: balance.symbol,\n name: token?.name ?? balance.symbol,\n icon: tokenMetadata?.icon ?? \"\",\n precision: token?.precision ?? 0,\n stakingEnabled: token?.stakingEnabled ?? false,\n delegationEnabled: token?.delegationEnabled ?? false,\n balance: balance.balance,\n stake: balance.stake,\n delegationsIn: balance.delegationsIn,\n delegationsOut: balance.delegationsOut,\n usdValue,\n });\n });\n },\n enabled: !!account,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient } from \"@/modules/core\";\nimport type { GeneralAssetInfo } from \"@/modules/wallet/types\";\nimport { getHiveEngineTokensMetadataQueryOptions } from \"./get-hive-engine-tokens-metadata-query-options\";\nimport { getHiveEngineTokensBalancesQueryOptions } from \"./get-hive-engine-tokens-balances-query-options\";\nimport { getAllHiveEngineTokensQueryOptions } from \"./get-all-hive-engine-tokens-query-options\";\nimport { getHiveAssetGeneralInfoQueryOptions } from \"@/modules/wallet/queries/get-hive-asset-general-info-query-options\";\n\nexport function getHiveEngineTokenGeneralInfoQueryOptions(\n username?: string,\n symbol?: string\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol, \"general-info\", username],\n enabled: !!symbol && !!username,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n if (!symbol || !username) {\n throw new Error(\n \"[SDK][HiveEngine] – token or username missed\"\n );\n }\n const queryClient = getQueryClient();\n const hiveQuery = getHiveAssetGeneralInfoQueryOptions(username);\n await queryClient.prefetchQuery(hiveQuery);\n const hiveData = queryClient.getQueryData(\n hiveQuery.queryKey\n );\n\n const metadataList = await queryClient.ensureQueryData(\n getHiveEngineTokensMetadataQueryOptions([symbol])\n );\n\n const balanceList = await queryClient.ensureQueryData(\n getHiveEngineTokensBalancesQueryOptions(username)\n );\n\n // Scoped to this symbol: the unfiltered metrics call is capped at 1000 rows, so a\n // token outside that page reported no market and rendered a zero price.\n const marketList = await queryClient.ensureQueryData(\n getAllHiveEngineTokensQueryOptions(undefined, symbol)\n );\n\n const metadata = metadataList?.find((i) => i.symbol === symbol);\n const balance = balanceList?.find((i) => i.symbol === symbol);\n const market = marketList?.find((i) => i.symbol === symbol);\n\n const lastPrice = +(market?.lastPrice ?? \"0\");\n\n const liquidBalance = parseFloat(balance?.balance ?? \"0\");\n const stakedBalance = parseFloat(balance?.stake ?? \"0\");\n const unstakingBalance = parseFloat(balance?.pendingUnstake ?? \"0\");\n\n const parts: GeneralAssetInfo[\"parts\"] = [\n { name: \"liquid\", balance: liquidBalance },\n { name: \"staked\", balance: stakedBalance },\n ];\n\n if (unstakingBalance > 0) {\n parts.push({ name: \"unstaking\", balance: unstakingBalance });\n }\n\n return {\n name: symbol,\n title: metadata?.name ?? \"\",\n price: lastPrice === 0 ? 0 : Number(lastPrice * (hiveData?.price ?? 0)),\n accountBalance: liquidBalance + stakedBalance,\n layer: \"ENGINE\",\n parts,\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { PointTransaction } from \"../types/point-transaction\";\n\ninterface PointsResponse {\n points: string;\n unclaimed_points: string;\n}\n\nexport function getPointsQueryOptions(username?: string, filter = 0) {\n return queryOptions({\n queryKey: [\"points\", username, filter],\n queryFn: async () => {\n if (!username) {\n throw new Error(\"Get points query – username wasn't provided\");\n }\n\n const name = username.replace(\"@\", \"\");\n\n // Get points\n const pointsResponse = await fetch(CONFIG.privateApiHost + \"/private-api/points\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username: name }),\n });\n\n if (!pointsResponse.ok) {\n throw new Error(`Failed to fetch points: ${pointsResponse.status}`);\n }\n\n const points = (await pointsResponse.json()) as PointsResponse;\n\n // Get transactions\n const transactionsResponse = await fetch(\n CONFIG.privateApiHost + \"/private-api/point-list\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username: name, type: filter }),\n }\n );\n\n if (!transactionsResponse.ok) {\n throw new Error(`Failed to fetch point transactions: ${transactionsResponse.status}`);\n }\n\n const transactions = (await transactionsResponse.json()) as PointTransaction[];\n\n return {\n points: points.points,\n uPoints: points.unclaimed_points,\n transactions,\n } as const;\n },\n staleTime: 30000,\n refetchOnMount: true,\n enabled: !!username,\n });\n}\n","import { getQueryClient } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"@/modules/wallet/types\";\nimport { getPointsQueryOptions } from \"./get-points-query-options\";\n\nexport function getPointsAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"points\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getPointsQueryOptions(username));\n const data = getQueryClient().getQueryData(\n getPointsQueryOptions(username).queryKey\n );\n return {\n name: \"POINTS\",\n title: \"Ecency Points\",\n price: 0.002,\n accountBalance: +(data?.points ?? 0),\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { CONFIG } from \"@/modules/core/config\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { PointTransaction } from \"../types\";\nimport { PointTransactionType } from \"../types\";\nimport type { GeneralAssetTransaction } from \"@/modules/wallet/types\";\n\nexport function getPointsAssetTransactionsQueryOptions(\n username: string | undefined,\n type?: PointTransactionType\n) {\n return queryOptions({\n queryKey: [\"assets\", \"points\", \"transactions\", username, type],\n queryFn: async () => {\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/point-list`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n username,\n type: type ?? 0,\n }),\n }\n );\n const data = (await response.json()) as PointTransaction[];\n return data.map(({ created, type, amount, id, sender, receiver, memo }) => ({\n created: new Date(created),\n type,\n results: [\n {\n amount: parseFloat(amount),\n asset: \"POINTS\",\n },\n ],\n id,\n from: sender ?? undefined,\n to: receiver ?? undefined,\n memo: memo ?? undefined,\n })) satisfies GeneralAssetTransaction[];\n },\n });\n}\n","import { getQueryClient } from \"@/modules/core\";\nimport { getCurrencyRate } from \"@/modules/market\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { getHiveAssetGeneralInfoQueryOptions } from \"./get-hive-asset-general-info-query-options\";\nimport { getHbdAssetGeneralInfoQueryOptions } from \"./get-hbd-asset-general-info-query-options\";\nimport { getHivePowerAssetGeneralInfoQueryOptions } from \"./get-hive-power-asset-general-info-query-options\";\nimport { getHiveEngineTokensBalancesQueryOptions } from \"@/modules/hive-engine/queries\";\nimport { getHiveEngineTokenGeneralInfoQueryOptions } from \"@/modules/hive-engine/queries\";\nimport { getPointsAssetGeneralInfoQueryOptions } from \"@/modules/points/queries\";\nimport {\n getPortfolioQueryOptions,\n type PortfolioResponse,\n type PortfolioWalletItem,\n} from \"./get-portfolio-query-options\";\n\ninterface Options {\n refetch?: boolean;\n currency?: string;\n}\n\nexport function getAccountWalletAssetInfoQueryOptions(\n username: string,\n asset: string,\n options: Options = { refetch: false }\n) {\n const queryClient = getQueryClient();\n const currency = options.currency ?? \"usd\";\n\n const fetchQuery = async (qo: any) => {\n if (options.refetch) {\n await queryClient.fetchQuery(qo);\n } else {\n await queryClient.prefetchQuery(qo);\n }\n return queryClient.getQueryData(qo.queryKey);\n };\n\n const convertPriceToUserCurrency = async (\n assetInfo: GeneralAssetInfo | undefined\n ): Promise => {\n if (!assetInfo || currency === \"usd\") {\n return assetInfo;\n }\n\n try {\n const conversionRate = await getCurrencyRate(currency);\n return {\n ...assetInfo,\n price: assetInfo.price * conversionRate,\n };\n } catch (error) {\n console.warn(`Failed to convert price from USD to ${currency}:`, error);\n return assetInfo;\n }\n };\n\n const portfolioQuery = getPortfolioQueryOptions(username, currency, true);\n\n const getPortfolioAssetInfo = async () => {\n try {\n const portfolio: PortfolioResponse = await queryClient.fetchQuery(portfolioQuery);\n const assetItem = portfolio.wallets.find(\n (item: PortfolioWalletItem) =>\n item.symbol.toUpperCase() === asset.toUpperCase()\n );\n\n if (!assetItem) return undefined;\n\n const parts: Array<{ name: string; balance: number }> = [];\n\n if (assetItem.liquid !== undefined && assetItem.liquid !== null) {\n parts.push({ name: \"liquid\", balance: assetItem.liquid });\n }\n\n if (assetItem.staked !== undefined && assetItem.staked !== null && assetItem.staked > 0) {\n parts.push({ name: \"staked\", balance: assetItem.staked });\n }\n\n if (assetItem.savings !== undefined && assetItem.savings !== null && assetItem.savings > 0) {\n parts.push({ name: \"savings\", balance: assetItem.savings });\n }\n\n if (assetItem.extraData && Array.isArray(assetItem.extraData)) {\n for (const extraItem of assetItem.extraData) {\n if (!extraItem || typeof extraItem !== \"object\") continue;\n\n const dataKey = extraItem.dataKey;\n const value = extraItem.value;\n\n if (typeof value === \"string\") {\n const cleanValue = value.replace(/,/g, \"\");\n const match = cleanValue.match(/[+-]?\\s*(\\d+(?:\\.\\d+)?)/);\n if (match) {\n const numValue = Math.abs(Number.parseFloat(match[1]));\n\n if (dataKey === \"delegated_hive_power\") {\n parts.push({ name: \"outgoing_delegations\", balance: numValue });\n } else if (dataKey === \"received_hive_power\") {\n parts.push({ name: \"incoming_delegations\", balance: numValue });\n } else if (dataKey === \"powering_down_hive_power\") {\n parts.push({ name: \"pending_power_down\", balance: numValue });\n }\n }\n }\n }\n }\n\n return {\n name: assetItem.symbol,\n title: assetItem.name,\n price: assetItem.fiatRate,\n accountBalance: assetItem.balance,\n apr: assetItem.apr?.toString(),\n layer: assetItem.layer,\n pendingRewards: assetItem.pendingRewards,\n parts,\n } as GeneralAssetInfo;\n } catch {\n return undefined;\n }\n };\n\n return queryOptions({\n queryKey: [\"ecency-wallets\", \"asset-info\", username, asset, currency],\n queryFn: async () => {\n const portfolioAssetInfo = await getPortfolioAssetInfo();\n\n if (portfolioAssetInfo && portfolioAssetInfo.price > 0) {\n return portfolioAssetInfo;\n }\n\n let assetInfo: GeneralAssetInfo | undefined;\n\n if (asset === \"HIVE\") {\n assetInfo = await fetchQuery(getHiveAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"HP\") {\n assetInfo = await fetchQuery(getHivePowerAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"HBD\") {\n assetInfo = await fetchQuery(getHbdAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"POINTS\") {\n assetInfo = await fetchQuery(getPointsAssetGeneralInfoQueryOptions(username));\n } else {\n // Check if it's a Hive Engine token\n const balances = await queryClient.ensureQueryData(\n getHiveEngineTokensBalancesQueryOptions(username)\n );\n\n if (balances.some((balance) => balance.symbol === asset)) {\n assetInfo = await fetchQuery(\n getHiveEngineTokenGeneralInfoQueryOptions(username, asset)\n );\n } else if (portfolioAssetInfo) {\n // Unknown asset but portfolio has data — use it as-is\n return portfolioAssetInfo;\n } else {\n throw new Error(\n `[SDK][Wallet] – unrecognized asset \"${asset}\"`\n );\n }\n }\n\n // If portfolio had rich data (parts, balance) but zero price,\n // merge the fallback price into the portfolio data\n if (portfolioAssetInfo && assetInfo && assetInfo.price > 0) {\n const converted = await convertPriceToUserCurrency(assetInfo);\n return {\n ...portfolioAssetInfo,\n price: converted!.price,\n };\n }\n\n return await convertPriceToUserCurrency(assetInfo);\n },\n });\n}\n","export enum AssetOperation {\n // Common\n Transfer = \"transfer\",\n\n // APR\n TransferToSavings = \"transfer-saving\",\n WithdrawFromSavings = \"withdraw-saving\",\n Delegate = \"delegate\",\n PowerUp = \"power-up\",\n PowerDown = \"power-down\",\n WithdrawRoutes = \"withdraw-routes\",\n ClaimInterest = \"claim-interest\",\n Swap = \"swap\",\n Convert = \"convert\",\n\n // Points\n Gift = \"gift\",\n Promote = \"promote\",\n Claim = \"claim\",\n Buy = \"buy\",\n\n // Layer 2\n Stake = \"stake\",\n Unstake = \"unstake\",\n Undelegate = \"undelegate\",\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for transferring tokens.\n */\nexport interface TransferPayload {\n /** Recipient account */\n to: string;\n /** Amount with asset symbol (e.g., \"1.000 HIVE\", \"5.000 HBD\") */\n amount: string;\n /** Transfer memo */\n memo: string;\n}\n\n/**\n * React Query mutation hook for transferring tokens.\n *\n * This mutation broadcasts a transfer operation to send HIVE or HBD\n * to another account. **Requires ACTIVE authority**.\n *\n * Uses `useBroadcastMutation` with the smart auth strategy:\n * - Adapter determines login type and dispatches to appropriate method\n * - If active key not available (common on web), triggers `showAuthUpgradeUI`\n * - Supports keychain, hivesigner, hiveauth, and direct key signing\n *\n * @param username - The username sending the transfer (required for broadcast)\n * @param auth - Authentication context with platform adapter\n *\n * @returns React Query mutation result\n */\nexport function useTransfer(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer\"],\n username,\n (payload) => [\n buildTransferOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildPointTransferOp } from \"@/modules/operations/builders\";\n\nexport interface TransferPointPayload {\n to: string;\n amount: string;\n memo: string;\n}\n\n/**\n * React Query mutation hook for transferring Ecency points.\n *\n * Uses `ecency_point_transfer` custom_json operation with ACTIVE authority.\n */\nexport function useTransferPoint(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-point\"],\n username,\n (payload) => [\n buildPointTransferOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildDelegateVestingSharesOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for delegating Hive Power (vesting shares).\n */\nexport interface DelegateVestingSharesPayload {\n /** Account receiving HP delegation */\n delegatee: string;\n /** Amount of VESTS to delegate (e.g., \"1000.000000 VESTS\"). Use \"0.000000 VESTS\" to remove delegation. */\n vestingShares: string;\n}\n\n/**\n * React Query mutation hook for delegating Hive Power (HP).\n *\n * This mutation broadcasts a delegate_vesting_shares operation to delegate HP\n * to another account. **Requires ACTIVE authority**, not posting.\n *\n * @param username - The username delegating HP (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **IMPORTANT: Active Authority Required**\n * - Delegation operations require ACTIVE key, not posting key\n * - Make sure your auth adapter provides getActiveKey() method\n * - Keychain/HiveAuth will prompt for Active authority\n *\n * **Delegation Mechanics:**\n * - Delegated HP can be used by the delegatee for resource credits\n * - Delegatee CANNOT power down or transfer the delegated HP\n * - Delegation can be removed by setting vestingShares to \"0.000000 VESTS\"\n * - Removing delegation has a 5-day cooldown before HP returns to delegator\n *\n * **Post-Broadcast Actions:**\n * - Invalidates delegations list cache to show updated delegation\n * - Invalidates account data for both delegator and delegatee\n *\n * @example\n * ```typescript\n * const delegateMutation = useDelegateVestingShares(username, {\n * adapter: {\n * ...myAdapter,\n * getActiveKey: async (username) => getActiveKeyFromStorage(username)\n * },\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Delegate HP\n * delegateMutation.mutate({\n * delegatee: 'alice',\n * vestingShares: '1000.000000 VESTS'\n * });\n *\n * // Remove delegation\n * delegateMutation.mutate({\n * delegatee: 'alice',\n * vestingShares: '0.000000 VESTS'\n * });\n * ```\n */\nexport function useDelegateVestingShares(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-vesting-shares\"],\n username,\n (payload) => [\n buildDelegateVestingSharesOp(\n username!,\n payload.delegatee,\n payload.vestingShares\n )\n ],\n async (_result, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.delegatee),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active', // IMPORTANT: Active authority required\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildSetWithdrawVestingRouteOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for setting withdraw vesting route.\n */\nexport interface SetWithdrawVestingRoutePayload {\n /** Account receiving withdrawn vesting */\n toAccount: string;\n /** Percentage to route (0-10000, where 10000 = 100%). Already scaled. */\n percent: number;\n /** Auto convert to vesting (power up) */\n autoVest: boolean;\n}\n\n/**\n * React Query mutation hook for setting withdraw vesting route.\n *\n * This mutation broadcasts a set_withdraw_vesting_route operation to configure\n * where withdrawn VESTS (power down) are sent. **Requires ACTIVE authority**, not posting.\n *\n * @param username - The username setting withdraw route (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **IMPORTANT: Active Authority Required**\n * - Withdraw route operations require ACTIVE key, not posting key\n * - Make sure your auth adapter provides getActiveKey() method\n * - Keychain/HiveAuth will prompt for Active authority\n *\n * **Withdraw Route Mechanics:**\n * - Routes a percentage of power down (withdraw_vesting) to another account\n * - Percent must be between 0-10000 (where 10000 = 100%)\n * - Multiple routes can be set, total cannot exceed 100%\n * - autoVest=true converts withdrawn VESTS to HP in destination account\n * - autoVest=false converts withdrawn VESTS to liquid HIVE\n *\n * **Post-Broadcast Actions:**\n * - Invalidates withdraw routes cache to show updated routes\n * - Invalidates account data for both accounts\n *\n * @example\n * ```typescript\n * const setRouteMutation = useSetWithdrawVestingRoute(username, {\n * adapter: {\n * ...myAdapter,\n * getActiveKey: async (username) => getActiveKeyFromStorage(username)\n * },\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Route 50% of power down to another account (auto vest)\n * setRouteMutation.mutate({\n * toAccount: 'alice',\n * percent: 5000, // 50% (already scaled)\n * autoVest: true\n * });\n *\n * // Route 100% of power down to another account (liquid HIVE)\n * setRouteMutation.mutate({\n * toAccount: 'bob',\n * percent: 10000, // 100% (already scaled)\n * autoVest: false\n * });\n * ```\n */\nexport function useSetWithdrawVestingRoute(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"set-withdraw-vesting-route\"],\n username,\n (payload) => [\n buildSetWithdrawVestingRouteOp(\n username!,\n payload.toAccount,\n payload.percent,\n payload.autoVest\n )\n ],\n async (_result, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.wallet.withdrawRoutes(username!),\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.toAccount)\n ]);\n },\n auth,\n 'active', // IMPORTANT: Active authority required\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface TransferEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n memo: string;\n}\n\nexport function useTransferEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"transfer\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n memo: payload.memo\n }\n });\n return [[\"custom_json\", {\n required_auths: [username!],\n required_posting_auths: [],\n id: \"ssc-mainnet-hive\",\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferToSavingsOp } from \"@/modules/operations/builders\";\n\nexport interface TransferToSavingsPayload {\n to: string;\n amount: string;\n memo: string;\n}\n\nexport function useTransferToSavings(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-to-savings\"],\n username,\n (payload) => [\n buildTransferToSavingsOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferFromSavingsOp } from \"@/modules/operations/builders\";\n\nexport interface TransferFromSavingsPayload {\n to: string;\n amount: string;\n memo: string;\n requestId: number;\n}\n\nexport function useTransferFromSavings(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-from-savings\"],\n username,\n (payload) => [\n buildTransferFromSavingsOp(username!, payload.to, payload.amount, payload.memo, payload.requestId)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferToVestingOp } from \"@/modules/operations/builders\";\n\nexport interface TransferToVestingPayload {\n to: string;\n amount: string;\n}\n\nexport function useTransferToVesting(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-to-vesting\"],\n username,\n (payload) => [\n buildTransferToVestingOp(username!, payload.to, payload.amount)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildWithdrawVestingOp } from \"@/modules/operations/builders\";\n\nexport interface WithdrawVestingPayload {\n vestingShares: string;\n}\n\nexport function useWithdrawVesting(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"withdraw-vesting\"],\n username,\n (payload) => [\n buildWithdrawVestingOp(username!, payload.vestingShares)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildConvertOp, buildCollateralizedConvertOp } from \"@/modules/operations/builders\";\n\nexport interface ConvertPayload {\n amount: string;\n requestId: number;\n collateralized?: boolean;\n}\n\nexport function useConvert(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"convert\"],\n username,\n (payload) => [\n payload.collateralized\n ? buildCollateralizedConvertOp(username!, payload.amount, payload.requestId)\n : buildConvertOp(username!, payload.amount, payload.requestId)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildClaimInterestOps } from \"@/modules/operations/builders\";\n\nexport interface ClaimInterestPayload {\n to: string;\n amount: string;\n memo: string;\n requestId: number;\n}\n\nexport function useClaimInterest(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-interest\"],\n username,\n (payload) => buildClaimInterestOps(username!, payload.to, payload.amount, payload.memo, payload.requestId),\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys, getQueryClient } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildClaimRewardBalanceOp } from \"@/modules/operations/builders\";\n\nexport interface ClaimRewardsPayload {\n rewardHive: string;\n rewardHbd: string;\n rewardVests: string;\n}\n\nconst CLAIM_REWARDS_INVALIDATION_DELAY_MS = 5000;\nconst pendingInvalidationTimers = new Map>();\n\nexport function useClaimRewards(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-rewards\"],\n username,\n (payload) => [\n buildClaimRewardBalanceOp(username!, payload.rewardHive, payload.rewardHbd, payload.rewardVests)\n ],\n () => {\n const timerKey = username ?? \"__anonymous__\";\n const keysToInvalidate = [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n QueryKeys.assets.hiveGeneralInfo(username!),\n QueryKeys.assets.hbdGeneralInfo(username!),\n QueryKeys.assets.hivePowerGeneralInfo(username!),\n ];\n\n // Delay invalidation to allow blockchain to propagate the transaction.\n // Immediate invalidation would fetch stale (pre-confirmation) data.\n const existingTimer = pendingInvalidationTimers.get(timerKey);\n if (existingTimer) {\n clearTimeout(existingTimer);\n pendingInvalidationTimers.delete(timerKey);\n }\n\n const timer = setTimeout(async () => {\n try {\n const qc = getQueryClient();\n const results = await Promise.allSettled(\n keysToInvalidate.map((key) => qc.invalidateQueries({ queryKey: key }))\n );\n const rejected = results.filter((result) => result.status === \"rejected\");\n if (rejected.length > 0) {\n console.error(\"[SDK][Wallet][useClaimRewards] delayed invalidation rejected\", {\n username,\n rejectedCount: rejected.length,\n rejected\n });\n }\n } catch (error) {\n console.error(\"[SDK][Wallet][useClaimRewards] delayed invalidation failed\", {\n username,\n error\n });\n } finally {\n pendingInvalidationTimers.delete(timerKey);\n }\n }, CLAIM_REWARDS_INVALIDATION_DELAY_MS);\n\n pendingInvalidationTimers.set(timerKey, timer);\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface DelegateEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useDelegateEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"delegate\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface UndelegateEngineTokenPayload {\n from: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useUndelegateEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"undelegate-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"undelegate\",\n contractPayload: {\n symbol: payload.symbol,\n from: payload.from,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface StakeEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useStakeEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"stake-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"stake\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface UnstakeEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useUnstakeEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"unstake-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"unstake\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface ClaimEngineRewardsPayload {\n tokens: string[];\n}\n\nexport function useClaimEngineRewards(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-engine-rewards\"],\n username,\n (payload) => {\n const json = JSON.stringify(payload.tokens.map((symbol) => ({ symbol })));\n return [[\"custom_json\", {\n id: \"scot_claim_token\",\n required_auths: [],\n required_posting_auths: [username!],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface EngineMarketOrderPayload {\n action: \"buy\" | \"sell\" | \"cancel\";\n symbol: string;\n quantity?: string;\n price?: string;\n orderId?: string;\n orderType?: \"buy\" | \"sell\";\n}\n\nexport function useEngineMarketOrder(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"engine-market-order\"],\n username,\n (payload) => {\n let contractPayload: Record;\n let contractAction: string;\n\n if (payload.action === \"cancel\") {\n contractAction = \"cancel\";\n contractPayload = {\n type: payload.orderType!,\n id: payload.orderId!,\n };\n } else {\n contractAction = payload.action;\n contractPayload = {\n symbol: payload.symbol,\n quantity: payload.quantity!,\n price: payload.price!,\n };\n }\n\n const json = JSON.stringify({\n contractName: \"market\",\n contractAction,\n contractPayload,\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { EcencyAnalytics } from \"@/modules/analytics\";\nimport { getQueryClient } from \"@/modules/core\";\nimport type { AuthorityLevel } from \"@/modules/operations/authority-map\";\nimport { AssetOperation } from \"../types\";\nimport {\n buildTransferOp,\n buildTransferToSavingsOp,\n buildTransferFromSavingsOp,\n buildTransferToVestingOp,\n buildWithdrawVestingOp,\n buildDelegateVestingSharesOp,\n buildSetWithdrawVestingRouteOp,\n buildConvertOp,\n buildClaimInterestOps,\n buildPointTransferOp,\n buildEngineOp,\n buildEngineClaimOp,\n} from \"@/modules/operations/builders\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface WalletOperationPayload {\n from: string;\n to?: string;\n amount?: string;\n memo?: string;\n request_id?: number;\n from_account?: string;\n to_account?: string;\n percent?: number;\n auto_vest?: boolean;\n mode?: string;\n [key: string]: unknown;\n}\n\nfunction buildHiveOperations(\n asset: string,\n operation: AssetOperation,\n payload: WalletOperationPayload\n): Operation[] | null {\n const { from, to = \"\", amount = \"\", memo = \"\" } = payload;\n const requestId = payload.request_id ?? (Date.now() >>> 0);\n\n switch (asset) {\n case \"HIVE\":\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildTransferOp(from, to, amount, memo)];\n case AssetOperation.TransferToSavings:\n return [buildTransferToSavingsOp(from, to, amount, memo)];\n case AssetOperation.WithdrawFromSavings:\n return [buildTransferFromSavingsOp(from, to, amount, memo, requestId)];\n case AssetOperation.PowerUp:\n return [buildTransferToVestingOp(from, to, amount)];\n }\n break;\n\n case \"HBD\":\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildTransferOp(from, to, amount, memo)];\n case AssetOperation.TransferToSavings:\n return [buildTransferToSavingsOp(from, to, amount, memo)];\n case AssetOperation.WithdrawFromSavings:\n return [buildTransferFromSavingsOp(from, to, amount, memo, requestId)];\n case AssetOperation.ClaimInterest:\n return buildClaimInterestOps(from, to, amount, memo, requestId);\n case AssetOperation.Convert:\n return [buildConvertOp(from, amount, Math.floor(Date.now() / 1000))];\n }\n break;\n\n case \"HP\":\n switch (operation) {\n case AssetOperation.PowerDown:\n return [buildWithdrawVestingOp(from, amount)];\n case AssetOperation.Delegate:\n return [buildDelegateVestingSharesOp(from, to, amount)];\n case AssetOperation.WithdrawRoutes:\n return [buildSetWithdrawVestingRouteOp(\n payload.from_account ?? from,\n payload.to_account ?? to,\n payload.percent ?? 0,\n payload.auto_vest ?? false\n )];\n }\n break;\n\n case \"POINTS\":\n if (operation === AssetOperation.Transfer || operation === AssetOperation.Gift) {\n return [buildPointTransferOp(from, to, amount, memo)];\n }\n break;\n }\n\n return null;\n}\n\nfunction buildEngineOperations(\n asset: string,\n operation: AssetOperation,\n payload: WalletOperationPayload\n): Operation[] | null {\n const { from, to = \"\", amount = \"\" } = payload;\n const quantity = typeof amount === \"string\" && amount.includes(\" \")\n ? amount.split(\" \")[0]\n : String(amount);\n\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildEngineOp(from, \"transfer\", {\n symbol: asset, to, quantity, memo: payload.memo ?? \"\"\n })];\n case AssetOperation.Stake:\n return [buildEngineOp(from, \"stake\", { symbol: asset, to, quantity })];\n case AssetOperation.Unstake:\n return [buildEngineOp(from, \"unstake\", { symbol: asset, to, quantity })];\n case AssetOperation.Delegate:\n return [buildEngineOp(from, \"delegate\", { symbol: asset, to, quantity })];\n case AssetOperation.Undelegate:\n return [buildEngineOp(from, \"undelegate\", { symbol: asset, from: to, quantity })];\n case AssetOperation.Claim:\n return [buildEngineClaimOp(from, [asset])];\n }\n\n return null;\n}\n\n/**\n * Determines authority level for a wallet operation.\n * Engine token claims use posting authority; everything else uses active.\n */\nfunction getWalletOperationAuthority(operation: AssetOperation): AuthorityLevel {\n if (operation === AssetOperation.Claim) {\n return 'posting';\n }\n return 'active';\n}\n\n/**\n * Meta-mutation hook that dispatches wallet operations based on asset and operation type.\n *\n * Supports HIVE, HBD, HP, POINTS, and Hive Engine tokens.\n * Uses `useBroadcastMutation` for unified auth handling via `AuthContextV2`.\n *\n * @param username - The Hive account performing the operation\n * @param asset - The asset symbol (e.g., \"HIVE\", \"HBD\", \"HP\", \"POINTS\", or engine token)\n * @param operation - The operation type from AssetOperation enum\n * @param auth - Auth context for broadcasting\n */\nexport function useWalletOperation(\n username: string | undefined,\n asset: string,\n operation: AssetOperation,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n const { mutateAsync: recordActivity } = EcencyAnalytics.useRecordActivity(\n username,\n operation as any\n );\n\n return useBroadcastMutation(\n [\"ecency-wallets\", asset, operation],\n username,\n (payload) => {\n // Try native Hive + POINTS operations\n const hiveOps = buildHiveOperations(asset, operation, payload);\n if (hiveOps) return hiveOps;\n\n // Try engine token operations\n const engineOps = buildEngineOperations(asset, operation, payload);\n if (engineOps) return engineOps;\n\n throw new Error(`[SDK][Wallet] – no operation builder for asset=\"${asset}\" operation=\"${operation}\"`);\n },\n () => {\n recordActivity();\n\n const keysToInvalidate: (string | undefined)[][] = [];\n\n // Invalidate asset-specific queries (prefix-matches all currency variants)\n keysToInvalidate.push([\"ecency-wallets\", \"asset-info\", username, asset]);\n\n if (asset === \"HIVE\") {\n keysToInvalidate.push([\"ecency-wallets\", \"asset-info\", username, \"HP\"]);\n }\n\n // Invalidate portfolio (prefix-matches all currency/filter variants)\n keysToInvalidate.push([\"wallet\", \"portfolio\", \"v2\", username]);\n\n // Delay invalidation to allow blockchain to process\n setTimeout(() => {\n keysToInvalidate.forEach((key) => {\n getQueryClient().invalidateQueries({ queryKey: key });\n });\n }, 5000);\n },\n auth,\n getWalletOperationAuthority(operation),\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildDelegateRcOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface DelegateRcPayload {\n to: string;\n maxRc: string | number;\n}\n\nexport function useDelegateRc(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-rc\"],\n username,\n ({ to, maxRc }) => [\n buildDelegateRcOp(username!, to, maxRc)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n QueryKeys.resourceCredits.account(username!),\n QueryKeys.resourceCredits.account(variables.to),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildWitnessVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for voting for a witness.\n */\nexport interface WitnessVotePayload {\n /** Witness account name to vote for/against */\n witness: string;\n /** True to approve, false to disapprove */\n approve: boolean;\n}\n\n/**\n * React Query mutation hook for voting for a Hive witness.\n *\n * This mutation broadcasts an account_witness_vote operation to vote for\n * or remove a vote from a witness.\n *\n * @param username - The username voting for the witness (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates account data cache to show updated witness votes\n * - Invalidates witness votes cache\n *\n * **Vote Types:**\n * - approve: true - Vote for the witness\n * - approve: false - Remove your vote from the witness\n *\n * **Authority Required:**\n * - Active authority is required for witness voting\n *\n * @example\n * ```typescript\n * const witnessVoteMutation = useWitnessVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Vote for a witness\n * witnessVoteMutation.mutate({\n * witness: 'good-karma',\n * approve: true\n * });\n *\n * // Remove vote from a witness\n * witnessVoteMutation.mutate({\n * witness: 'good-karma',\n * approve: false\n * });\n * ```\n */\nexport function useWitnessVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"witnesses\", \"vote\"],\n username,\n ({ witness, approve }) => [\n buildWitnessVoteOp(username!, witness, approve)\n ],\n async () => {\n // Wrap post-broadcast side-effects in try-catch to prevent propagating errors\n try {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.witnesses.votes(username)\n ]);\n }\n } catch (error) {\n // Log but don't rethrow - don't fail mutation due to side-effect errors\n console.warn('[useWitnessVote] Post-broadcast side-effect failed:', error);\n }\n },\n auth,\n 'active', // Use active authority for witness votes (required by blockchain)\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildWitnessProxyOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface WitnessProxyPayload {\n proxy: string;\n}\n\nexport function useWitnessProxy(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"witnesses\", \"proxy\"],\n username,\n ({ proxy }) => [\n buildWitnessProxyOp(username!, proxy)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.witnesses.proxy(),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Witness, WitnessVotersResponse } from \"../types\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\n\ntype WitnessPage = Witness[];\ntype WitnessCursor = number;\n\ninterface HafbeWitness {\n witness_name: string;\n rank: number;\n url: string;\n vests: string;\n votes_daily_change: string;\n voters_num: number;\n voters_num_daily_change: number;\n price_feed: number;\n bias: number;\n feed_updated_at: string;\n block_size: number;\n signing_key: string;\n version: string;\n missed_blocks: number;\n hbd_interest_rate: number;\n last_confirmed_block_num: number;\n account_creation_fee: number;\n}\n\ninterface HafbeWitnessesResponse {\n total_witnesses: number;\n total_pages: number;\n witnesses: HafbeWitness[];\n}\n\n/**\n * Map a hafbe-api witness to the SDK Witness shape so existing consumers\n * (e.g. the web app's transform()) keep working unchanged.\n */\nfunction mapRestWitness(w: HafbeWitness): Witness {\n return {\n owner: w.witness_name,\n total_missed: w.missed_blocks,\n url: w.url,\n props: {\n account_creation_fee: `${(w.account_creation_fee / 1000).toFixed(3)} HIVE`,\n account_subsidy_budget: 0,\n maximum_block_size: w.block_size,\n },\n hbd_exchange_rate: {\n base: `${w.price_feed.toFixed(3)} HBD`,\n },\n available_witness_account_subsidies: 0,\n running_version: w.version,\n signing_key: w.signing_key,\n last_hbd_exchange_update: w.feed_updated_at,\n rank: w.rank,\n vests: w.vests,\n voters_num: w.voters_num,\n voters_num_daily_change: w.voters_num_daily_change,\n price_feed: w.price_feed,\n hbd_interest_rate: w.hbd_interest_rate,\n last_confirmed_block_num: w.last_confirmed_block_num,\n };\n}\n\n/**\n * Get witnesses ordered by vote count (infinite scroll).\n * Uses the hafbe-api REST endpoint - replaces multi-call RPC assembly\n * with a single paginated call. Includes voter count, rank, and other\n * data that was previously unavailable.\n *\n * @param limit - Number of witnesses per page\n */\nexport function getWitnessesInfiniteQueryOptions(limit: number) {\n return infiniteQueryOptions<\n WitnessPage,\n Error,\n InfiniteData,\n (string | number)[],\n WitnessCursor\n >({\n queryKey: QueryKeys.witnesses.list(limit),\n initialPageParam: 1 as WitnessCursor,\n\n queryFn: async ({ pageParam }: { pageParam: WitnessCursor }) => {\n const response = (await callREST(\n \"hafbe\",\n \"/witnesses\",\n {\n \"page-size\": limit,\n page: pageParam,\n }\n )) as HafbeWitnessesResponse;\n\n return response.witnesses.map(mapRestWitness);\n },\n\n getNextPageParam: (lastPage, _allPages, lastPageParam) =>\n lastPage.length === limit ? lastPageParam + 1 : undefined,\n });\n}\n\nexport type WitnessVoterSortField =\n | \"vests\"\n | \"account_vests\"\n | \"proxied_vests\"\n | \"account_name\"\n | \"timestamp\";\n\nexport type WitnessVoterSortDirection = \"asc\" | \"desc\";\n\n/**\n * Get a single page of voters for a specific witness.\n *\n * Server-side pagination + sort: each page click fetches that page directly\n * from hafbe rather than scrolling through accumulated pages on the client.\n *\n * @param witness - Witness account name\n * @param page - 1-based page index\n * @param pageSize - Number of voters per page\n * @param sort - Field to sort by\n * @param direction - asc or desc\n */\nexport function getWitnessVotersPageQueryOptions(\n witness: string,\n page: number,\n pageSize: number,\n sort: WitnessVoterSortField = \"vests\",\n direction: WitnessVoterSortDirection = \"desc\"\n) {\n return queryOptions({\n queryKey: QueryKeys.witnesses.voters(witness, page, pageSize, sort, direction),\n queryFn: async ({ signal }) => {\n return (await callREST(\n \"hafbe\",\n \"/witnesses/{witness-name}/voters\",\n {\n \"witness-name\": witness,\n \"page-size\": pageSize,\n page,\n sort,\n direction,\n },\n undefined,\n undefined,\n signal\n )) as WitnessVotersResponse;\n },\n enabled: !!witness,\n staleTime: 60_000,\n });\n}\n\n/**\n * Get total voter count for a witness.\n *\n * @param witness - Witness account name\n */\nexport function getWitnessVoterCountQueryOptions(witness: string) {\n return queryOptions({\n queryKey: QueryKeys.witnesses.voterCount(witness),\n queryFn: async () => {\n return (await callREST(\n \"hafbe\",\n \"/witnesses/{witness-name}/voters/count\",\n { \"witness-name\": witness }\n )) as number;\n },\n enabled: !!witness,\n staleTime: 60_000,\n });\n}\n","export enum PointTransactionType {\n CHECKIN = 10,\n LOGIN = 20,\n CHECKIN_EXTRA = 30,\n POST = 100,\n COMMENT = 110,\n VOTE = 120,\n REBLOG = 130,\n DELEGATION = 150,\n REFERRAL = 160,\n COMMUNITY = 170,\n TRANSFER_SENT = 998,\n TRANSFER_INCOMING = 999,\n MINTED = 991,\n /**\n * Points burned out of supply rather than moved to the treasury. Written by the\n * AI surfaces (assist, image, transcribe), which pay a real per-request vendor\n * bill, so the Points are consumed rather than parked.\n *\n * The row carries no counterparty at all, which is what distinguishes it from\n * TRANSFER_SENT: `sender` and `receiver` are both null. A refund of a burn comes\n * back as this same type with a positive amount, so read the sign rather than\n * assuming a burn is always a debit.\n */\n BURNED = 997,\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { EcencyAnalytics } from \"@/modules/analytics\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { getPointsQueryOptions } from \"../queries\";\nimport type { Points } from \"../types\";\n\n/**\n * POST a points claim and return the parsed JSON body.\n *\n * The endpoint normally answers with JSON, but an edge/proxy layer can\n * occasionally return a 2xx whose body is an HTML interstitial or plain text\n * (ECENCY-NEXT-1FCJ). Calling `response.json()` on that throws a bare\n * `SyntaxError` that names neither the endpoint nor the cause. Instead we check\n * the content type first and fail with a STABLE, low-cardinality message\n * (content type + status) — never the raw body — so these group as a single\n * Sentry issue instead of fragmenting on every distinct HTML page.\n */\nexport async function claimPointsRequest(\n username: string | undefined,\n accessToken: string | undefined\n) {\n if (!username) {\n throw new Error(\"[SDK][Points][Claim] – username wasn't provided\");\n }\n\n if (!accessToken) {\n throw new Error(\"[SDK][Points][Claim] – access token wasn't found\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/points-claim\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n }\n );\n\n // Media types are case-insensitive; normalise once and reuse in every branch.\n const contentType = (response.headers.get(\"content-type\") ?? \"\")\n .split(\";\")[0]\n .trim()\n .toLowerCase();\n const body = await response.text();\n\n if (!response.ok) {\n if (response.status === 406) {\n try {\n return JSON.parse(body);\n } catch {\n return { message: body, code: response.status };\n }\n }\n // Only fold a short JSON error body into the message; an HTML gateway page\n // (e.g. 502/503) would otherwise fragment the Sentry group per distinct\n // page — the same problem the non-JSON guard below avoids for a 2xx body.\n const detail =\n body && contentType.includes(\"json\") ? `: ${body.slice(0, 200)}` : \"\";\n throw new Error(\n `[SDK][Points][Claim] – failed with status ${response.status}${detail}`\n );\n }\n\n if (!contentType.includes(\"json\")) {\n throw new Error(\n `[SDK][Points][Claim] – expected JSON but received \"${contentType || \"empty\"}\" response (status ${response.status})`\n );\n }\n\n try {\n return JSON.parse(body);\n } catch {\n throw new Error(\n `[SDK][Points][Claim] – malformed JSON response (status ${response.status})`\n );\n }\n}\n\nexport function useClaimPoints(\n username: string | undefined,\n accessToken: string | undefined,\n onSuccess?: () => void,\n onError?: Parameters[\"0\"][\"onError\"]\n) {\n const { mutateAsync: recordActivity } = EcencyAnalytics.useRecordActivity(\n username,\n \"points-claimed\"\n );\n\n return useMutation({\n mutationFn: () => claimPointsRequest(username, accessToken),\n onError,\n onSuccess: () => {\n recordActivity();\n\n getQueryClient().setQueryData(\n getPointsQueryOptions(username).queryKey,\n (data) => {\n if (!data) {\n return data;\n }\n\n return {\n ...data,\n points: (\n parseFloat(data.points) + parseFloat(data.uPoints)\n ).toFixed(3),\n uPoints: \"0\",\n };\n }\n );\n\n onSuccess?.();\n },\n });\n}\n","// A token only counts at the start of the query or after whitespace, matching\n// the search API's parser. Unanchored, these matched inside ordinary words:\n// \"prototype:v2\" read as type=v2 and the API rejected it as an invalid type,\n// \"subcategory:hive-1\" filtered on category=hive-1 with a stray \"sub\" left as\n// required text. The boundary is captured rather than looked behind so it can\n// be put back when the token is stripped, keeping the neighbouring words apart\n// (a lookbehind would also be fine here, but this stays portable).\nconst author_re = /(^|\\s)author:([^\\s]+)/g;\nconst type_re = /(^|\\s)type:([^\\s]+)/g;\nconst category_re = /(^|\\s)category:([^\\s]+)/g;\nconst tag_re = /(^|\\s)tag:([^\\s]+)/g;\n\n// Index of the token value in a match; group 1 is the boundary.\nconst VALUE = 2;\n\nexport enum SearchType {\n ALL = \"\",\n POST = \"post\",\n COMMENT = \"comment\"\n}\n\nexport const MAX_SEARCH_TAGS = 5;\n\n// The search API applies both caps itself (see query_validator); mirrored here\n// so the client can refuse instead of turning a 400 into an empty result list.\nexport const MAX_SEARCH_QUERY_LENGTH = 100;\n\n/**\n * Both parsers match a token with /author:([^\\s]+)/, so a value containing a\n * space stops filtering at the space and the remainder silently becomes\n * required free text. Keep the first word only, which is what the API would\n * have filtered on anyway.\n */\nfunction firstToken(value: string): string {\n return value.trim().split(/\\s+/)[0] ?? \"\";\n}\n\n/**\n * Hive account names are lowercase and the API filters authors with an exact\n * term query, so \"@Demo\" has to become \"demo\" or it matches nothing.\n */\nexport function normalizeSearchAuthor(value: string): string {\n return firstToken(value).replace(/^@+/, \"\").toLowerCase();\n}\n\nexport function normalizeSearchCategory(value: string): string {\n // Leading \"#\" goes for the same reason it goes on tags: a category is matched\n // by an exact term query, and users write categories the way they write tags.\n return firstToken(value).replace(/^#+/, \"\").toLowerCase();\n}\n\n/**\n * Accepts what a user actually types (\"travel, photography\", \"#travel travel\")\n * and returns exact-match ready tags, deduped in first-seen order.\n */\nexport function normalizeSearchTags(value: string): string[] {\n const seen = new Set();\n\n return value\n .split(/[\\s,]+/)\n .map((tag) => tag.replace(/^#+/, \"\").toLowerCase())\n .filter((tag) => {\n if (tag === \"\" || seen.has(tag)) {\n return false;\n }\n\n seen.add(tag);\n return true;\n });\n}\n\nexport interface SearchQueryParts {\n search?: string;\n author?: string;\n type?: SearchType;\n category?: string;\n /** Raw user input (\"a, b\") or an already split list. */\n tags?: string | string[];\n}\n\nexport interface BuiltSearchQuery {\n /** The `q` value to put in the URL. Round-trips through `SearchQuery`. */\n q: string;\n search: string;\n author: string;\n type: SearchType;\n category: string;\n tags: string[];\n}\n\n/**\n * Assembles the single `q` string that both this app and the search API parse\n * back into filters. Returns the normalized parts too, because the caller has\n * to validate the tag count and the total length before navigating.\n */\nexport function buildSearchQuery({\n search = \"\",\n author = \"\",\n type = SearchType.ALL,\n category = \"\",\n tags = []\n}: SearchQueryParts): BuiltSearchQuery {\n const normalizedSearch = search.trim().replace(/\\s+/g, \" \");\n const normalizedAuthor = normalizeSearchAuthor(author);\n const normalizedCategory = normalizeSearchCategory(category);\n const normalizedTags = normalizeSearchTags(Array.isArray(tags) ? tags.join(\",\") : tags);\n\n const parts = [normalizedSearch];\n\n if (normalizedAuthor) {\n parts.push(`author:${normalizedAuthor}`);\n }\n\n if (type) {\n parts.push(`type:${type}`);\n }\n\n if (normalizedCategory) {\n parts.push(`category:${normalizedCategory}`);\n }\n\n if (normalizedTags.length > 0) {\n // No space after the commas: a tag token ends at the first space, so\n // anything past one stops filtering and becomes required free text.\n parts.push(`tag:${normalizedTags.join(\",\")}`);\n }\n\n return {\n // Dropping the empty free text here is what keeps a filter-only query from\n // starting with a space.\n q: parts.filter((part) => part !== \"\").join(\" \"),\n search: normalizedSearch,\n author: normalizedAuthor,\n type,\n category: normalizedCategory,\n tags: normalizedTags\n };\n}\n\nexport class SearchQuery {\n public query: string = \"\";\n public search: string = \"\";\n public author: string = \"\";\n public type: SearchType = SearchType.ALL;\n public category: string = \"\";\n public tags: string[] = [];\n\n constructor(_query: string) {\n this.query = _query;\n this.search = _query;\n\n this.grabAuthor();\n this.grabType();\n this.grabCategory();\n this.grabTags();\n this.grabSearch();\n }\n\n private grab = (re: RegExp): string => {\n // @ts-ignore\n const matches = [...this.query.matchAll(re)];\n if (matches.length > 0) {\n return matches[0][VALUE].trim();\n }\n\n return \"\";\n };\n\n private grabAuthor = () => {\n this.author = this.grab(author_re);\n };\n\n private grabType = () => {\n const type = this.grab(type_re) as SearchType;\n if (Object.values(SearchType).includes(type)) {\n this.type = type as SearchType;\n }\n };\n\n private grabCategory = () => {\n this.category = this.grab(category_re);\n };\n\n private grabTags = () => {\n // Every tag: token counts, not just the first one. The API joins all of its\n // own tag: matches before splitting on commas, so reading only the first\n // token here under-reports the tags a query really applies and let a query\n // past the MAX_SEARCH_TAGS guard that the API then rejects with a 400.\n // A trailing comma (\"tag:a,\") must not yield an empty tag either - it would\n // be shown back as a phantom tag and counted against the same cap.\n const seen = new Set();\n\n this.tags = [...this.query.matchAll(tag_re)]\n .flatMap((match) => match[VALUE].split(\",\"))\n .map((tag) => tag.trim())\n .filter((tag) => {\n if (tag === \"\" || seen.has(tag)) {\n return false;\n }\n\n seen.add(tag);\n return true;\n });\n };\n\n private grabSearch = () => {\n [author_re, type_re, category_re, tag_re].forEach((r) => {\n // Put the captured boundary back, or removing a mid-query token would\n // run the words either side of it together.\n this.search = this.search.replace(r, \"$1\");\n });\n\n while (this.search.indexOf(\" \") !== -1) {\n this.search = this.search.replace(\" \", \" \");\n }\n\n this.search = this.search.trim();\n };\n}\n","export type RequestError = Error & { status?: number; data?: unknown };\n\n/**\n * Reads a response body and, when the status is not OK, throws an error that\n * keeps both the status and the parsed body.\n *\n * The search backend answers a malformed query with an explanation the user can\n * act on (\"Maximum 5 tags!\", \"Query string too long! ...\", \"Parsed query is\n * empty!\"). Dropping the body leaves callers with a bare status: they can\n * neither tell the user what to change nor tell a deterministic rejection from\n * a transient failure worth retrying.\n *\n * Module-internal on purpose - it is not part of the published SDK surface.\n */\nexport async function parseJsonResponse(\n response: Response,\n /**\n * Shape guard for a SUCCESSFUL body. JSON.parse happily accepts `null`,\n * `\"maintenance\"` and `{\"error\": \"...\"}`, none of which are the payload the\n * caller asked for, and all of which would otherwise be returned as `T` and\n * cached as valid data. Callers that have a known shape pass a guard so an\n * unexpected 200 fails here instead of at the first property access.\n */\n isValid?: (data: unknown) => boolean\n): Promise {\n const parseBody = async (): Promise => {\n // Read the body ONCE. Calling json() and then falling back to text() on the\n // same response cannot work: json() consumes the stream, so the fallback\n // always threw and the raw body of a non-JSON failure (an HTML error page\n // from a proxy) was silently lost.\n let raw: string;\n try {\n raw = await response.text();\n } catch {\n return undefined;\n }\n\n if (raw === \"\") {\n return undefined;\n }\n\n try {\n return JSON.parse(raw) as unknown;\n } catch {\n // Raw text is a diagnostic, not a payload. On a failed response it is\n // what the caller shows or logs, but on a 2xx returning it would hand\n // back a string typed as the parsed body: callers reading `.results`\n // would see undefined and report an empty result set, and the\n // controversial/rising pager would throw on `resp.results.length`. An\n // unparseable success is a failure, so let it fall through to the throw\n // below rather than caching a string as a SearchResponse.\n return response.ok ? undefined : raw;\n }\n };\n\n const data = await parseBody();\n if (!response.ok) {\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n if (data === undefined || (isValid !== undefined && !isValid(data))) {\n throw new Error(\"Response body was empty, invalid JSON, or not the expected shape\");\n }\n\n return data as T;\n}\n\n/**\n * The contract every /search-api consumer relies on: an object carrying a\n * `results` array. Enough to keep a stray 200 from reaching `resp.results.length`.\n */\nexport function isSearchResponse(data: unknown): boolean {\n return (\n typeof data === \"object\" &&\n data !== null &&\n Array.isArray((data as { results?: unknown }).results)\n );\n}\n","import { isServer } from \"@tanstack/react-query\";\nimport type { RequestError } from \"./parse-json-response\";\n\n/**\n * The app-wide default the browser QueryClient uses. Restated because supplying\n * a `retry` callback replaces React Query's own budget rather than adding to it.\n *\n * The 0 on the server is load-bearing: server QueryClients set `retry: false`\n * globally, and these queries are prefetched during SSR, so a flat 3 would\n * resurrect SSR retries against a single-region backend.\n */\nconst MAX_RETRIES = isServer ? 0 : 3;\n\n/**\n * Shared retry rule for every /search-api call.\n *\n * A 4xx is the backend rejecting the query itself (too many tags, over the\n * length cap, nothing left to search once the filters are parsed out).\n * Repeating it repeats the same answer, so the only effect is four requests\n * over several seconds before the UI can say what to change.\n *\n * 408 and 429 are the exceptions: they describe when the request arrived rather\n * than what it contained, and backing off is what resolves them. A client-side\n * timeout aborts the fetch and carries no status at all, so it falls through to\n * the normal budget like any other transport failure.\n */\nexport function searchRetryPolicy(failureCount: number, error: Error): boolean {\n const { status } = error as RequestError;\n const isTransient = status === 408 || status === 429;\n\n if (status !== undefined && status >= 400 && status < 500 && !isTransient) {\n return false;\n }\n\n return failureCount < MAX_RETRIES;\n}\n","import { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, INTERNAL_API_TIMEOUT_MS, withTimeoutSignal, QueryKeys } from \"@/modules/core\";\nimport { SearchResponse } from \"../types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"../parse-json-response\";\nimport { searchRetryPolicy } from \"../retry-policy\";\n\nexport function searchQueryOptions(\n q: string,\n sort: string,\n hideLow: string,\n since?: string,\n scroll_id?: string,\n votes?: number\n) {\n return queryOptions({\n queryKey: QueryKeys.search.results(q, sort, hideLow, since, scroll_id, votes),\n queryFn: async ({ signal }) => {\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) data.since = since;\n if (scroll_id) data.scroll_id = scroll_id;\n if (votes) data.votes = votes;\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body) instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n retry: searchRetryPolicy,\n });\n}\n\ntype PageParam = {\n sid: string | undefined;\n hasNextPage: boolean;\n};\n\nexport function getControversialRisingInfiniteQueryOptions(\n what: string,\n tag: string,\n enabled = true\n) {\n return infiniteQueryOptions<\n SearchResponse,\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.search.controversialRising(what, tag),\n initialPageParam: { sid: undefined, hasNextPage: true } as PageParam,\n\n queryFn: async ({ pageParam, signal }: { pageParam: PageParam; signal: AbortSignal }) => {\n if (!pageParam.hasNextPage) {\n return {\n hits: 0,\n took: 0,\n results: [],\n };\n }\n\n let sinceDate: Date | undefined;\n const now = new Date();\n\n switch (tag) {\n case \"today\":\n sinceDate = new Date(now.getTime() - 24 * 60 * 60 * 1000);\n break;\n case \"week\":\n sinceDate = new Date(now.getTime() - 7 * 24 * 60 * 60 * 1000);\n break;\n case \"month\":\n sinceDate = new Date(now.getTime() - 30 * 24 * 60 * 60 * 1000);\n break;\n case \"year\":\n sinceDate = new Date(now.getTime() - 365 * 24 * 60 * 60 * 1000);\n break;\n default:\n sinceDate = undefined;\n }\n\n const q = \"* type:post\";\n const sort = what === \"rising\" ? \"children\" : what;\n const since = sinceDate ? sinceDate.toISOString().split(\".\")[0] : undefined;\n const hideLow = \"0\";\n const votes = tag === \"today\" ? 50 : 200;\n\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) data.since = since;\n if (pageParam.sid) data.scroll_id = pageParam.sid;\n if (votes) data.votes = votes;\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body) instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n\n getNextPageParam: (resp: SearchResponse): PageParam => {\n return {\n sid: resp?.scroll_id,\n hasNextPage: resp.results.length > 0,\n };\n },\n\n enabled,\n retry: searchRetryPolicy,\n });\n}\n","import { CONFIG, INTERNAL_API_TIMEOUT_MS, getBoundFetch, withTimeoutSignal } from \"@/modules/core\";\nimport { SearchResponse } from \"./types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"./parse-json-response\";\n\nexport async function search(\n q: string,\n sort: string,\n hideLow: string,\n since?: string,\n scroll_id?: string,\n votes?: number,\n signal?: AbortSignal\n): Promise {\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) {\n data.since = since;\n }\n if (scroll_id) {\n data.scroll_id = scroll_id;\n }\n if (votes) {\n data.votes = votes;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n return parseJsonResponse(response, isSearchResponse);\n}\n\nexport async function similar(\n params: {\n author: string;\n permlink: string;\n title?: string;\n body?: string;\n tags?: string[];\n since?: string;\n },\n signal?: AbortSignal,\n timeoutMs: number = INTERNAL_API_TIMEOUT_MS\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/similar\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(params),\n signal: withTimeoutSignal(timeoutMs, signal),\n });\n\n return parseJsonResponse(response, isSearchResponse);\n}\n\nexport async function searchPath(q: string, signal?: AbortSignal): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/search-path\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify({ q }),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n const data = await parseJsonResponse(response, Array.isArray);\n return data?.length > 0 ? data : [q];\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { similar } from \"../requests\";\nimport { SearchResult } from \"../types/search-response\";\n\n// Without a recency window the backend ranks across the entire historical\n// index and surfaces years-old posts. Constrain suggestions to the last\n// ~6 months so related posts stay fresh (it also bounds the backend's\n// more_like_this candidate set, which is what keeps it fast).\nconst SIMILAR_ENTRIES_SINCE_MS = 182 * 24 * 60 * 60 * 1000;\n\n// How many results the suggestions strip renders at most.\nconst SIMILAR_ENTRIES_TARGET = 4;\n\n// more_like_this only extracts a handful of significant terms, so an excerpt is\n// enough signal and keeps the request payload small.\nconst SIMILAR_ENTRIES_BODY_LIMIT = 3000;\n\n// On the server the prefetch sits on the entry-page render path, and the search\n// backend is single-region (EU) — so anything slower than this stalls SSR for a\n// non-essential \"related posts\" strip. Keep the SSR cap short and let the strip\n// fall back to a client fetch (only that render misses the in-HTML strip; it's\n// ISR-cached anyway). Do NOT raise this — 2s is the SSR budget.\nconst SIMILAR_ENTRIES_SSR_TIMEOUT_MS = 2000;\n\n// The client fetch doesn't block paint, so it previously had no cap and fell\n// through to the SDK's generic INTERNAL_API_TIMEOUT_MS (10s; CF's worker further\n// truncates at ~8s). Combined with React Query's default client retry (3×), a\n// /search-api/similar outage turned this best-effort strip into a multi-second\n// post-onload tail (observed as a ~29s \"fully loaded\" in GTmetrix). Cap the\n// client call short and disable retry (below) so a degraded backend just hides\n// the strip quickly instead of churning.\nconst SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS = 4000;\n\n// The strip is hidden below this many results. A lone suggestion looks\n// sparse. Exported so the web component shares one threshold (filter == render).\nexport const SIMILAR_ENTRIES_MIN_RENDER = 2;\n\n// Strip markdown image/link/URL noise before truncating, so more_like_this\n// keys on prose terms instead of image-CDN domains and file hashes (which\n// rarely match the index's sanitized body and just waste the term budget).\nfunction toMltExcerpt(body: string, limit: number): string {\n return body\n .replace(/!\\[[^\\]]*\\]\\([^)]*\\)/g, \" \") // markdown images\n .replace(/\\[([^\\]]*)\\]\\([^)]*\\)/g, \"$1\") // markdown links -> keep link text\n .replace(/<[^>]+>/g, \" \") // html tags\n .replace(/https?:\\/\\/\\S+/g, \" \") // bare URLs\n .replace(/\\s+/g, \" \")\n .trim()\n .slice(0, limit);\n}\n\n// Compact deterministic fingerprint (djb2) of the MLT inputs. Folded into the\n// cache key so an edited post (title/tags/body changed) refetches instead of\n// serving stale recommendations under the same author/permlink. Deterministic\n// so the SSR prefetch and the client compute the same key from the same entry.\nfunction fingerprint(s: string): string {\n let h = 5381;\n for (let i = 0; i < s.length; i++) {\n h = ((h << 5) + h + s.charCodeAt(i)) | 0;\n }\n return (h >>> 0).toString(36);\n}\n\ninterface Entry {\n author: string;\n permlink: string;\n title?: string;\n body?: string;\n json_metadata?: {\n // Hive's json_metadata is user-controlled and untyped on-chain: `tags` is\n // usually a string[] but some posts store it as a bare string (or other\n // junk). Typed as unknown on purpose so callers can't assume an array —\n // it's narrowed with a runtime guard below.\n tags?: unknown;\n };\n}\n\nexport function getSimilarEntriesQueryOptions(entry: Entry) {\n const title = entry.title ?? \"\";\n // `?? []` only guards null/undefined; a non-array tags value (e.g. a bare\n // string from json_metadata) slips through and crashes `.filter` — which\n // took down the entry-page SSR prefetch (Sentry ECENCY-NEXT-1FMA). Guard on\n // Array.isArray so only real arrays reach the filter.\n const rawTags = entry.json_metadata?.tags;\n const tags = (Array.isArray(rawTags) ? rawTags : []).filter(\n (tag): tag is string => typeof tag === \"string\" && tag !== \"\"\n );\n const body = toMltExcerpt(entry.body ?? \"\", SIMILAR_ENTRIES_BODY_LIMIT);\n const contentKey = fingerprint(`${title}|${tags.join(\",\")}|${body}`);\n\n return queryOptions({\n queryKey: QueryKeys.search.similarEntries(entry.author, entry.permlink, contentKey),\n queryFn: async ({ signal }) => {\n // Naive `YYYY-MM-DDTHH:mm:ss` (no `Z`) matches the search-api date\n // contract used elsewhere; a <14h skew on a 182-day boundary is immaterial.\n const since = new Date(Date.now() - SIMILAR_ENTRIES_SINCE_MS).toISOString().slice(0, 19);\n\n // Elasticsearch more_like_this recommendations: content-based \"related\n // posts\" ranked by shared significant terms in title/body/tags, scoped\n // to the recency window. The backend already excludes the source author,\n // spam and nsfw.\n const response = await similar(\n {\n author: entry.author,\n permlink: entry.permlink,\n title,\n body,\n tags,\n since\n },\n signal,\n // Short cap server-side so a slow cross-region call can't stall SSR;\n // a slightly longer (but still bounded) cap client-side so a degraded\n // backend can't hang the request on the SDK's generic 8s timeout.\n typeof window === \"undefined\"\n ? SIMILAR_ENTRIES_SSR_TIMEOUT_MS\n : SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS\n );\n\n // Light client guard mirroring the render contract: never the source\n // post, never nsfw, one per author, capped at the render target.\n const collected: SearchResult[] = [];\n const seenAuthors = new Set();\n for (const r of response.results) {\n if (collected.length >= SIMILAR_ENTRIES_TARGET) break;\n if (r.permlink === entry.permlink) continue;\n if ((r.tags ?? []).indexOf(\"nsfw\") !== -1) continue;\n if (seenAuthors.has(r.author)) continue;\n seenAuthors.add(r.author);\n collected.push(r);\n }\n\n return collected;\n },\n // The entry page server-prefetches this query and dehydrates it. Without a\n // staleTime, React Query treats the hydrated data as stale and refetches on\n // mount — issuing a *redundant* /search-api/similar XHR right after\n // hydration even though SSR already provided the data. That refetch was the\n // long post-onload tail in the waterfall (held open to the client timeout),\n // inflating GTmetrix \"Fully Loaded\" while the visible strip was already\n // populated from SSR. A staleTime makes the hydrated data fresh so the\n // client skips that refetch; if SSR delivered nothing (empty cache), the\n // client still fetches. Recommendations are stable per post (and the cache\n // key is content-fingerprinted), so 5 min matches the page's ISR cadence.\n staleTime: 5 * 60 * 1000,\n // Best-effort suggestions strip — never retry-storm a degraded backend.\n // The web QueryClient only disables retries on the server; the browser\n // client keeps React Query's default retry (3×) — and other SDK consumers\n // (e.g. mobile) may too — so pin retry:false here to cover every caller.\n retry: false\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { getProfiles } from \"@/modules/bridge\";\nimport { Profile } from \"@/modules/accounts/types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchAccountQueryOptions(q: string, limit = 5) {\n const normalized = q.trim();\n\n return queryOptions({\n queryKey: QueryKeys.search.account(normalized, limit),\n queryFn: async (): Promise => {\n const usernames = (await callRPC(\"condenser_api.lookup_accounts\", [\n normalized,\n limit,\n ])) as string[];\n\n if (usernames.length === 0) {\n return [];\n }\n\n return getProfiles(usernames);\n },\n enabled: !!normalized,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { TrendingTag } from \"@/modules/posts/types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchTopicsQueryOptions(q: string, limit = 10) {\n const normalized = q.trim();\n\n return queryOptions({\n queryKey: QueryKeys.search.topics(normalized, limit),\n queryFn: async (): Promise => {\n const tags = (await callRPC(\"condenser_api.get_trending_tags\", [\n normalized,\n limit + 1,\n ])) as TrendingTag[];\n\n return tags\n .map((t) => t.name)\n .filter((name) => name !== \"\" && !name.startsWith(\"hive-\"))\n .slice(0, limit);\n },\n enabled: !!normalized,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, INTERNAL_API_TIMEOUT_MS, withTimeoutSignal, QueryKeys } from \"@/modules/core\";\nimport { SearchResponse } from \"../types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"../parse-json-response\";\nimport { searchRetryPolicy } from \"../retry-policy\";\n\nexport function getSearchApiInfiniteQueryOptions(\n q: string,\n sort: string,\n hideLow: boolean,\n since?: string,\n votes?: number,\n includeNsfw?: boolean\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.search.api(q, sort, hideLow, since, votes, includeNsfw),\n queryFn: async ({ pageParam, signal }: { pageParam: string | undefined; signal: AbortSignal }) => {\n interface SearchApiPayload {\n q: string;\n sort: string;\n hide_low: boolean;\n since?: string;\n scroll_id?: string;\n votes?: number;\n include_nsfw?: number;\n }\n\n const payload: SearchApiPayload = { q, sort, hide_low: hideLow };\n\n if (since) {\n payload.since = since;\n }\n if (pageParam) {\n payload.scroll_id = pageParam;\n }\n if (votes !== undefined) {\n payload.votes = votes;\n }\n if (includeNsfw) {\n payload.include_nsfw = 1;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(payload),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body), instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n initialPageParam: undefined as string | undefined,\n getNextPageParam: (lastPage: SearchResponse) => lastPage?.scroll_id,\n enabled: !!q,\n retry: searchRetryPolicy,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\n\nexport function getSearchPathQueryOptions(q: string) {\n return queryOptions({\n queryKey: [\"search\", \"path\", q],\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search-path\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify({ q }),\n });\n\n if (!response.ok) {\n throw new Error(`Search path failed: ${response.status}`);\n }\n\n const data = await response.json();\n\n if (data?.length > 0) {\n return data as string[];\n }\n\n return [q];\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { SupportSettings } from \"../types\";\n\n/**\n * Fetch the active user's Support Ecency settings. The username is resolved\n * server-side from the validated `code`, so only the code is sent. Throws on a\n * non-2xx with the server's `.status` + parsed `.data` attached. Exported for\n * unit testing; the query options below wrap it.\n */\nexport async function getSupportSettingsRequest(code: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/support-settings\", {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ code }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to fetch support settings: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as SupportSettings;\n}\n\n/**\n * Query options for the active user's Support Ecency settings\n * (beneficiary percent + curation holdback percent). Zeros mean both\n * opt-ins are off; the backend returns zeros when no row exists.\n */\nexport function getSupportSettingsQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n const name = username?.replace(\"@\", \"\");\n\n return queryOptions({\n queryKey: QueryKeys.support.settings(name),\n queryFn: () => {\n if (!code) {\n throw new Error(\"[SDK][Support] missing auth\");\n }\n return getSupportSettingsRequest(code);\n },\n enabled: !!name && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { QueryClient, useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { SupportSettings, UpdateSupportSettingsPayload } from \"../types\";\n\n/**\n * POST a Support Ecency settings update. Both percents are integers within\n * 0..100 (0 = off); the gateway rejects anything else with a 400. Throws on a\n * non-2xx with the server's `.status` + parsed `.data` attached so the caller\n * can surface the plain validation message. Exported for unit testing; the\n * hook below wraps it.\n */\nexport async function updateSupportSettingsRequest(\n code: string,\n payload: UpdateSupportSettingsPayload\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/support-settings-update\", {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({\n code,\n beneficiary_percent: payload.beneficiary_percent,\n curation_percent: payload.curation_percent,\n }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to update support settings: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as SupportSettings;\n}\n\n/**\n * Sync the settings cache after a successful update: seed the fresh server\n * response and invalidate so any active observers refetch. Exported for unit\n * testing; `useUpdateSupportSettings` calls it from `onSuccess`.\n */\nexport function applySupportSettingsUpdate(\n queryClient: QueryClient,\n username: string,\n data: SupportSettings\n) {\n queryClient.setQueryData(QueryKeys.support.settings(username), data);\n return queryClient.invalidateQueries({ queryKey: QueryKeys.support.settings(username) });\n}\n\n/**\n * Update the user's voluntary Support Ecency opt-ins (post beneficiary percent\n * and curation holdback percent). On success the settings query is refreshed\n * so every surface (publish dialog, settings card, injection hooks) sees the\n * new preference.\n */\nexport function useUpdateSupportSettings(\n username: string | undefined,\n code: string | undefined\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"support\", \"settings-update\", name],\n mutationFn: async (payload: UpdateSupportSettingsPayload) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Support] missing auth\");\n }\n return updateSupportSettingsRequest(code, payload);\n },\n onSuccess(data) {\n if (name) {\n applySupportSettingsUpdate(queryClient, name, data);\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\nexport function getBoostPlusPricesQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"boost-plus-prices\"],\n queryFn: async () => {\n if (!accessToken) {\n return [];\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/boost-plus-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch boost plus prices: ${response.status}`);\n }\n\n return await response.json() as PromotePrice[];\n },\n staleTime: Infinity,\n enabled: !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\n/**\n * RC top-up pricing: duration -> Points cost tiers, served by the ePoints\n * backend via the private API. Reuses the {@link PromotePrice} shape\n * ({ duration, price }).\n */\nexport function getRcDelegationPricesQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"rc-delegation-prices\"],\n queryFn: async () => {\n if (!accessToken) {\n return [];\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/rc-delegation-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch RC delegation prices: ${response.status}`);\n }\n\n return (await response.json()) as PromotePrice[];\n },\n staleTime: Infinity,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\n\nexport interface RcDelegationActive {\n user: string;\n expires: Date;\n}\n\n/**\n * The active (ON) RC top-up for a user, if any. Lets the UI block a duplicate\n * purchase up front (only one RC top-up is allowed at a time). Returns null\n * when the user has no active top-up.\n */\nexport function getRcDelegationActiveQueryOptions(username: string, accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"rc-delegation-active\", username],\n queryFn: async (): Promise => {\n if (!accessToken || !username) {\n return null;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/rc-delegation-active\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\"\n },\n body: JSON.stringify({ code: accessToken, username })\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch RC delegation active: ${response.status}`);\n }\n\n const responseData = (await response.json()) as { user?: string; expires?: string };\n\n return responseData && responseData.expires && responseData.user\n ? { user: responseData.user, expires: new Date(responseData.expires) }\n : null;\n },\n enabled: !!username && !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\nexport function getPromotePriceQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"promote-price\"],\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/promote-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch promote prices: ${response.status}`);\n }\n\n return await response.json() as PromotePrice[];\n },\n enabled: !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\n\nexport interface BoostPlusAccountPrice {\n account: string;\n expires: Date;\n}\n\nexport function getBoostPlusAccountPricesQueryOptions(account: string, accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"boost-plus-accounts\", account],\n queryFn: async (): Promise => {\n if (!accessToken || !account) {\n return null;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/boosted-plus-account\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken, account }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch boost plus account prices: ${response.status}`);\n }\n\n const responseData = await response.json() as {\n expires: string;\n account: string;\n };\n\n return responseData\n ? {\n account: responseData.account,\n expires: new Date(responseData.expires)\n }\n : null;\n },\n enabled: !!account && !!accessToken\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildBoostPlusOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface BoostPlusPayload {\n account: string;\n duration: number;\n}\n\nexport function useBoostPlus(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"promotions\", \"boost-plus\"],\n username,\n ({ account, duration }) => [\n buildBoostPlusOp(username!, account, duration)\n ],\n async (_data, { account }) => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.promotions.boostPlusAccounts(account),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildRcDelegationOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface RcDelegationPayload {\n duration: number;\n}\n\n/**\n * Buys a short-term, RC-only delegation (RC top-up) for the active user, paid\n * with Ecency Points. Mirrors {@link useBoostPlus} but is RC-only (no Hive\n * Power / voting power transferred). Invalidates the user's account + RC caches\n * so the new RC shows up once the relay delegation lands.\n */\nexport function useRcDelegation(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"promotions\", \"rc-delegation\"],\n username,\n ({ duration }) => [buildRcDelegationOp(username!, duration)],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.resourceCredits.account(username!),\n [\"promotions\", \"rc-delegation-active\", username]\n ]);\n }\n },\n auth,\n \"active\",\n { broadcastMode }\n );\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { HsTokenRenewResponse } from \"./types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nexport async function hsTokenRenew(code: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/auth-api/hs-token-refresh\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n data = undefined;\n }\n const error = new Error(`Failed to refresh token: ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n const data = (await response.json()) as HsTokenRenewResponse;\n return data;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"../../core\";\n\nconst BAD_ACTORS_URL =\n \"https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt\";\n\nexport function getBadActorsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.badActors.list(),\n queryFn: async ({ signal }) => {\n const response = await fetch(BAD_ACTORS_URL, { signal });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bad actors list: ${response.status}`);\n }\n\n const text = await response.text();\n return new Set(text.split(\"\\n\").filter(Boolean));\n },\n staleTime: 24 * 60 * 60 * 1000,\n /**\n * Deliberately left unbounded, including under SSR.\n *\n * `Infinity` is the one value that schedules no gc timer at all —\n * `isValidTimeout` in query-core rejects non-finite timeouts, so\n * `scheduleGc` is a no-op. With no timer there is no GC root, and on a\n * per-request client the entry dies with the request that made it.\n * Replacing it with a finite window would *create* a timer that retains the\n * Query and, through it, that request's whole QueryCache — strictly worse\n * here than leaving it alone.\n */\n gcTime: Infinity\n });\n}\n","export const POLLS_PROTOCOL_VERSION = 1.1;\n\nexport enum PollPreferredInterpretation {\n NUMBER_OF_VOTES = \"number_of_votes\",\n TOKENS = \"tokens\",\n}\n\nexport interface PollChoiceVotes {\n total_votes: number;\n hive_hp?: number;\n hive_proxied_hp?: number;\n hive_hp_incl_proxied: number | null;\n}\n\nexport interface PollChoice {\n choice_num: number;\n choice_text: string;\n votes?: PollChoiceVotes;\n}\n\nexport interface PollVoter {\n name: string;\n choices: number[];\n hive_hp?: number;\n hive_proxied_hp?: number;\n hive_hp_incl_proxied?: number;\n}\n\nexport interface PollStats {\n total_voting_accounts_num: number;\n total_hive_hp?: number;\n total_hive_proxied_hp?: number;\n total_hive_hp_incl_proxied: number | null;\n}\n\nexport interface Poll {\n author: string;\n permlink: string;\n question: string;\n poll_choices: PollChoice[];\n poll_voters?: PollVoter[];\n poll_stats?: PollStats;\n poll_trx_id: string;\n status: string;\n end_time: string;\n preferred_interpretation: PollPreferredInterpretation | string;\n max_choices_voted: number;\n filter_account_age_days: number;\n protocol_version: number;\n created: string;\n post_title: string;\n post_body: string;\n parent_permlink: string;\n tags: string[];\n image: unknown[];\n token?: string | null;\n community_membership?: string[];\n allow_vote_changes?: boolean;\n ui_hide_res_until_voted?: boolean;\n platform?: string;\n}\n\nexport function mapMetaChoicesToPollChoices(metaChoices: string[]): PollChoice[] {\n if (!metaChoices) {\n return [];\n }\n\n return metaChoices.map((choice, index) => ({\n choice_num: index + 1,\n choice_text: choice,\n votes: {\n total_votes: 0,\n hive_hp: 0,\n hive_proxied_hp: 0,\n hive_hp_incl_proxied: 0,\n },\n }));\n}\n","import { isServer, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys, SERVER_GC_TIME_MS } from \"@/modules/core\";\nimport { getBoundFetch } from \"@/modules/core/utils\";\nimport type { Poll, PollChoice, PollVoter, PollStats } from \"../types\";\n\nfunction normalizePoll(raw: Record): Poll {\n const pollChoices = (raw.poll_choices as Record[] | undefined) ?? [];\n const pollVoters = (raw.poll_voters as Record[] | undefined) ?? [];\n const rawStats = raw.poll_stats as Record | undefined;\n\n const choices: PollChoice[] = pollChoices.map((c) => {\n const votes = c.votes as Record | undefined;\n return {\n choice_num: (c.choice_num as number) ?? 0,\n choice_text: (c.choice_text as string) ?? \"\",\n votes: votes\n ? {\n total_votes: (votes.total_votes as number) ?? 0,\n hive_hp: votes.hive_hp as number | undefined,\n hive_proxied_hp: votes.hive_proxied_hp as number | undefined,\n hive_hp_incl_proxied: (votes.hive_hp_incl_proxied as number | null) ?? null,\n }\n : undefined,\n };\n });\n\n const voters: PollVoter[] = pollVoters.map((v) => ({\n name: (v.name as string) ?? \"\",\n choices: (v.choices as number[]) ?? [],\n hive_hp: v.hive_hp as number | undefined,\n hive_proxied_hp: v.hive_proxied_hp as number | undefined,\n hive_hp_incl_proxied: v.hive_hp_incl_proxied as number | undefined,\n }));\n\n const stats: PollStats | undefined = rawStats\n ? {\n total_voting_accounts_num: (rawStats.total_voting_accounts_num as number) ?? 0,\n total_hive_hp: rawStats.total_hive_hp as number | undefined,\n total_hive_proxied_hp: rawStats.total_hive_proxied_hp as number | undefined,\n total_hive_hp_incl_proxied: (rawStats.total_hive_hp_incl_proxied as number | null) ?? null,\n }\n : undefined;\n\n return {\n author: (raw.author as string) ?? \"\",\n permlink: (raw.permlink as string) ?? \"\",\n question: (raw.question as string) ?? \"\",\n poll_choices: choices,\n poll_voters: voters,\n poll_stats: stats,\n poll_trx_id: (raw.poll_trx_id as string) ?? \"\",\n status: (raw.status as string) ?? \"\",\n end_time: (raw.end_time as string) ?? \"\",\n preferred_interpretation: (raw.preferred_interpretation as string) ?? \"number_of_votes\",\n max_choices_voted: (raw.max_choices_voted as number) ?? 1,\n filter_account_age_days: (raw.filter_account_age_days as number) ?? 0,\n protocol_version: (raw.protocol_version as number) ?? 0,\n created: (raw.created as string) ?? \"\",\n post_title: (raw.post_title as string) ?? \"\",\n post_body: (raw.post_body as string) ?? \"\",\n parent_permlink: (raw.parent_permlink as string) ?? \"\",\n tags: (raw.tags as string[]) ?? [],\n image: (raw.image as unknown[]) ?? [],\n token: raw.token as string | null | undefined,\n community_membership: raw.community_membership as string[] | undefined,\n allow_vote_changes: raw.allow_vote_changes as boolean | undefined,\n ui_hide_res_until_voted: (raw.ui_hide_res_until_voted as boolean | undefined) ?? false,\n platform: raw.platform as string | undefined,\n };\n}\n\nexport function getPollQueryOptions(\n author: string | undefined,\n permlink: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.polls.details(author ?? \"\", permlink ?? \"\"),\n enabled: !!author && !!permlink,\n // Long in a browser, where a poll is cheap to keep and often revisited;\n // bounded during SSR, where holding it also holds that request's whole\n // cache. See SERVER_GC_TIME_MS.\n gcTime: isServer ? SERVER_GC_TIME_MS : 30 * 60 * 1000,\n queryFn: async (): Promise => {\n if (!author || !permlink) {\n throw new Error(\"[SDK][Polls] – missing author or permlink\");\n }\n\n const fetchApi = getBoundFetch();\n const url = `${CONFIG.pollsApiHost}/rpc/poll?author=eq.${encodeURIComponent(author)}&permlink=eq.${encodeURIComponent(permlink)}`;\n const response = await fetchApi(url);\n\n if (!response.ok) {\n throw new Error(`[SDK][Polls] – fetch failed: ${response.status}`);\n }\n\n const data = await response.json();\n\n if (!Array.isArray(data) || !data[0]) {\n throw new Error(\"[SDK][Polls] – no poll data found\");\n }\n\n return normalizePoll(data[0]);\n },\n });\n}\n","import { QueryKeys, useBroadcastMutation } from \"@/modules/core\";\nimport type { BroadcastMode, AuthContextV2 } from \"@/modules/core\";\n\nexport interface PollVotePayload {\n pollTrxId: string;\n choices: number[];\n}\n\nexport function usePollVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n QueryKeys.polls.vote(),\n username ?? \"\",\n ({ pollTrxId, choices }) => {\n if (!username) {\n throw new Error(\"[SDK][Polls] Cannot vote without an authenticated username\");\n }\n return [\n [\n \"custom_json\",\n {\n id: \"polls\",\n required_auths: [],\n required_posting_auths: [username],\n json: JSON.stringify({\n poll: pollTrxId,\n action: \"vote\",\n choices,\n }),\n },\n ],\n ];\n },\n undefined,\n auth,\n \"posting\",\n { broadcastMode: broadcastMode ?? \"async\" }\n );\n}\n","/**\n * Thresholds behind the content moderation treatment. Single source of truth for\n * every client: web and mobile previously carried their own copies, which drifted\n * (mobile flagged downvoted content at -7B rshares and 4 voters where web used\n * -10B and 5), so the same post read differently depending on the app.\n */\n\n/** Sum of rshares below which a post counts as heavily downvoted. */\nexport const HIDDEN_POST_RSHARES_THRESHOLD = -10000000000;\n\n/** Downvoting is only conclusive once enough accounts have voted. */\nexport const HIDDEN_POST_MIN_VOTES = 5;\n\n/**\n * Reputation (human-readable 0-100 scale) below which an author counts as\n * low-trust. New Hive accounts start around 25.\n *\n * NOTE: reputation is the only input. Account age is NOT part of the check, so a\n * years-old account that never earned reputation trips it exactly like a fresh\n * one. User-facing copy must say \"low reputation\", never \"new account\".\n */\nexport const LOW_TRUST_REPUTATION_THRESHOLD = 30;\n","/**\n * Converts Hive's raw reputation to the human-readable 0-100 scale, passing\n * through values that are already on it (the bridge returns both shapes\n * depending on the endpoint).\n */\nconst isHumanReadable = (input: number): boolean =>\n Math.abs(input) > 0 && Math.abs(input) <= 100;\n\nexport function accountReputation(input: string | number): number {\n if (typeof input === \"number\" && isHumanReadable(input)) {\n return Math.floor(input);\n }\n\n if (typeof input === \"string\") {\n input = Number(input);\n\n if (isHumanReadable(input)) {\n return Math.floor(input);\n }\n }\n\n if (input === 0) {\n return 25;\n }\n\n let neg = false;\n\n if (input < 0) {\n neg = true;\n }\n\n let reputationLevel = Math.log10(Math.abs(input as number));\n reputationLevel = Math.max(reputationLevel - 9, 0);\n\n if (reputationLevel < 0) {\n reputationLevel = 0;\n }\n\n if (neg) {\n reputationLevel *= -1;\n }\n\n reputationLevel = reputationLevel * 9 + 25;\n\n return Math.floor(reputationLevel);\n}\n","/**\n * Outbound-link detection for the SEO/backlink-farm signal.\n *\n * A link only counts as outbound promotion when it leaves the Hive/Ecency\n * ecosystem and is not an embedded image, so ordinary on-platform references and\n * post illustrations never trip the check.\n */\n\n// Hosts that are part of the Hive/Ecency ecosystem.\nconst INTERNAL_HOSTS = [\n \"ecency.com\",\n \"ecency.app\",\n \"hive.blog\",\n \"hive.io\",\n \"hiveblocks.com\",\n \"peakd.com\",\n \"snapie.io\",\n \"hivesuite.app\",\n \"leofinance.io\",\n \"inleo.io\",\n \"3speak.tv\",\n \"d.buzz\",\n \"waivio.com\"\n];\n\n// Image/media hosts: an embedded image is content, not a backlink.\nconst IMAGE_HOSTS = [\n \"imgur.com\",\n \"images.hive.blog\",\n \"files.peakd.com\",\n \"i.ecency.com\",\n \"images.ecency.com\",\n \"steemitimages.com\",\n \"cdn.steemitimages.com\",\n \"media.giphy.com\"\n];\n\nconst IMAGE_EXT_RE = /\\.(jpe?g|png|gif|webp|svg|bmp|avif)(\\?|#|$)/i;\n// Match absolute AND protocol-relative URLs (\"//host/...\"), so the check can't be\n// evaded with `[promo](//shop.example)` (the renderer allows protocol-relative hrefs).\nconst URL_RE = /(?:https?:)?\\/\\/[^\\s)<>\"'\\]]+/gi;\n// URLs in prose are commonly followed by punctuation (\"https://ecency.com, and...\");\n// strip it so the host parses correctly and internal links do not false-positive.\nconst TRAILING_PUNCT_RE = /[.,;:!?'\"]+$/;\n\nfunction hostOf(url: string): string {\n const m = /^(?:https?:)?\\/\\/([^/?#]+)/i.exec(url);\n return m ? m[1].toLowerCase().replace(/^www\\./, \"\") : \"\";\n}\n\nfunction isExternalPromoLink(rawUrl: string): boolean {\n const url = rawUrl.replace(TRAILING_PUNCT_RE, \"\");\n if (IMAGE_EXT_RE.test(url)) {\n return false; // embedded image, not a backlink\n }\n const host = hostOf(url);\n if (!host.includes(\".\")) {\n return false; // not a real domain (e.g. a stray \"//something\")\n }\n const matches = (h: string) => host === h || host.endsWith(\".\" + h);\n if (INTERNAL_HOSTS.some(matches) || IMAGE_HOSTS.some(matches)) {\n return false; // Hive/Ecency or image host\n }\n return true;\n}\n\n/** True if the post body contains an outbound (non-Hive, non-image) link. */\nexport function hasExternalLink(body: string | undefined | null): boolean {\n if (!body) {\n return false;\n }\n const matches = body.match(URL_RE);\n if (!matches) {\n return false;\n }\n return matches.some(isExternalPromoLink);\n}\n","import { accountReputation } from \"./account-reputation\";\nimport {\n HIDDEN_POST_MIN_VOTES,\n HIDDEN_POST_RSHARES_THRESHOLD,\n LOW_TRUST_REPUTATION_THRESHOLD\n} from \"./constants\";\nimport { hasExternalLink } from \"./external-links\";\n\n/**\n * Why a piece of content gets the moderation treatment. Clients render their own\n * copy per reason; the rules that pick the reason live here so web and mobile\n * always agree on which one fired.\n */\nexport enum ContentModerationReason {\n /**\n * `stats.gray` / `stats.hide` from hivemind: community moderator mutes, mutes\n * applied by the observer account, and authors hivemind itself grays out.\n */\n MOD_MUTED = \"mod_muted\",\n /** Heavily downvoted by enough distinct accounts to be conclusive. */\n DOWNVOTED = \"downvoted\",\n /** Low-reputation author whose post carries an outbound promotional link. */\n LOW_TRUST = \"low_trust\"\n}\n\n/**\n * The fields of a post or comment the rules read. Deliberately structural: web\n * passes an `Entry`, mobile passes a raw bridge post, and neither has to convert.\n */\nexport interface ModerationCandidate {\n author?: string;\n author_reputation?: string | number;\n body?: string | null;\n net_rshares?: number;\n active_votes?: unknown[] | null;\n stats?: {\n gray?: boolean;\n hide?: boolean;\n total_votes?: number;\n } | null;\n}\n\n/**\n * hivemind's `total_votes` is the authoritative count when present; `active_votes`\n * is the fallback for the feeds that omit stats.\n */\nfunction countVotes(content: ModerationCandidate): number {\n return content?.stats?.total_votes ?? content?.active_votes?.length ?? 0;\n}\n\n/** Heavily downvoted: strongly negative rshares from more than a handful of voters. */\nexport function isHiddenPost(\n netRshares: number | undefined,\n activeVotesLength: number\n): boolean {\n return (\n (netRshares ?? 0) < HIDDEN_POST_RSHARES_THRESHOLD &&\n activeVotesLength >= HIDDEN_POST_MIN_VOTES\n );\n}\n\n/**\n * Content-moderation signal for SEO/backlink-farm abuse: low-reputation accounts\n * publishing an outbound link are the signature of free-faucet SEO spam.\n *\n * Such posts are not blocked, they are de-emphasized and their outbound link is\n * flagged as unverified, so the promotional payoff drops to zero. Low reputation\n * on its own is NOT a moderation signal: plenty of small accounts post ordinary\n * content, and dimming all of them punishes newcomers for existing.\n */\nexport function isLowTrustSeoPost(\n content: Pick\n): boolean {\n const reputation = content?.author_reputation;\n // Some feeds omit reputation entirely. An unknown value is not evidence of\n // anything, so it must not be read as \"brand new account\" (raw 0 scales to 25,\n // which is below the threshold and would flag every post carrying a link).\n if (reputation === undefined || reputation === null) {\n return false;\n }\n return (\n accountReputation(reputation) < LOW_TRUST_REPUTATION_THRESHOLD &&\n hasExternalLink(content?.body)\n );\n}\n\n/** True when the viewer has personally muted this author. */\nexport function isAuthorMuted(\n author: string | undefined,\n mutedAuthors: string[] | undefined | null\n): boolean {\n return !!author && !!mutedAuthors?.includes(author);\n}\n\n/**\n * The reason a post or comment should be de-emphasized, or null when it is fine.\n *\n * Precedence, most authoritative first: an explicit moderation action outranks\n * the vote heuristic, which outranks the spam heuristic. Order matters because a\n * heavily downvoted post usually also has a battered reputation, and labelling\n * that \"low trust\" would hide why the content was actually flagged.\n *\n * A viewer's personal mute list is NOT an input here. Muting an author removes\n * their content from the viewer's lists entirely (see `isAuthorMuted`), rather\n * than labelling it.\n */\nexport function getContentModerationReason(\n content: ModerationCandidate | undefined | null\n): ContentModerationReason | null {\n if (!content) {\n return null;\n }\n if (content.stats?.gray || content.stats?.hide) {\n return ContentModerationReason.MOD_MUTED;\n }\n if (isHiddenPost(content.net_rshares, countVotes(content))) {\n return ContentModerationReason.DOWNVOTED;\n }\n if (isLowTrustSeoPost(content)) {\n return ContentModerationReason.LOW_TRUST;\n }\n return null;\n}\n","/**\n * Error types for the newsletter client, in their own dependency-free file so\n * test setups can hand out the REAL classes (instanceof must hold across the\n * app) without pulling the SDK config chain along.\n */\nexport class NewsletterApiError extends Error {\n constructor(\n message: string,\n public readonly status: number,\n public readonly data?: unknown,\n ) {\n super(message);\n }\n}\n\n/** A refused send, carrying the relay's routing `code` (already_sent, suspended, ...). */\nexport class NewsletterSendRefusedError extends NewsletterApiError {\n constructor(\n message: string,\n status: number,\n public readonly code?: string,\n public readonly taken?: Array<{ cadence: string; period: string; kind: string }>,\n data?: unknown,\n ) {\n super(message, status, data);\n }\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { NewsletterApiError, NewsletterSendRefusedError } from \"./errors\";\nimport type {\n DigestSubscribeInput,\n DigestSubscribeResult,\n DigestSubscription,\n NewsletterCandidatePost,\n NewsletterListType,\n NewsletterSendPreview,\n NewsletterSendRequest,\n NewsletterSendResult,\n NewsletterSenderStanding,\n NewsletterSentIssue,\n} from \"./types\";\n\n/**\n * Client for the newsletter relay at {privateApiHost}/api/newsletter/*\n * (Next.js route handlers on ecency.com, which alone hold the news-service\n * credentials — clients never talk to the service directly).\n *\n * Identity is the HiveSigner access token, passed here as the explicit `code`\n * argument. Transport mirrors the deployed web client per route: subscribe and\n * unsubscribe-all carry it in the POST body as `code` (the subscribe route\n * authenticates ONLY from the body — a header alone is treated as anonymous);\n * every other call, the send/preview POSTs included, uses the `X-HS-Token`\n * header. The relay verifies it upstream and derives the account from it, so\n * a stale token 401s — callers are responsible for supplying a fresh one\n * (web: ensureValidToken; mobile: the token-refresh wrapper).\n *\n * The email-token confirm/unsubscribe flows are deliberately absent: those\n * links land on web pages.\n */\nfunction newsletterUrl(path: string): string {\n // The relay lives on the WEB origin; newsletterHost overrides where that is\n // (\"\" = same-origin, the web client's case). Nullish on purpose: only an\n // unset override falls back, an empty string is a meaningful host.\n return `${CONFIG.newsletterHost ?? CONFIG.privateApiHost}/api/newsletter${path}`;\n}\n\nasync function parse(response: Response): Promise {\n const data = (await response.json().catch(() => undefined)) as\n | (T & { error?: string })\n | undefined;\n if (!response.ok) {\n throw new NewsletterApiError(\n data?.error || `Request failed (${response.status})`,\n response.status,\n data,\n );\n }\n // A 2xx without a JSON body is not a result; saying so beats returning blanks.\n if (!data || typeof data !== \"object\") {\n throw new NewsletterApiError(\n `Unexpected response (${response.status})`,\n response.status,\n );\n }\n return data;\n}\n\n/**\n * Subscribe an address to a digest. Authenticated callers (code given) skip\n * the captcha; anonymous callers must supply `captchaToken` in the input and\n * get double opt-in. The `own` digest type is always authenticated.\n */\nexport async function subscribeDigestRequest(\n input: DigestSubscribeInput,\n code?: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/subscribe\"), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ ...input, ...(code ? { code } : {}) }),\n });\n return parse(response);\n}\n\n/** Every live digest subscription attributed to the token's account. */\nexport async function getDigestSubscriptionsRequest(\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/subscriptions\"), {\n headers: { \"X-HS-Token\": code },\n });\n const data = await parse<{ subscriptions?: DigestSubscription[] }>(response);\n return data.subscriptions ?? [];\n}\n\n/** Leave one digest by subscription id. */\nexport async function leaveDigestRequest(\n id: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/subscriptions/${encodeURIComponent(id)}`),\n { method: \"DELETE\", headers: { \"X-HS-Token\": code } },\n );\n await parse<{ left: boolean }>(response);\n}\n\n/**\n * Suppress ONE address entirely (no Ecency bulk mail to it again). Only that\n * address stops: an account can hold subscriptions under several addresses.\n */\nexport async function unsubscribeAllDigestsRequest(\n email: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/unsubscribe-all\"), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, code }),\n });\n await parse<{ suppressed: boolean }>(response);\n}\n\n/** Sender standing (status, complaint/bounce stats, subscriber counts) for a list. */\nexport async function getNewsletterSenderRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/sender?type=${type}&target=${encodeURIComponent(target)}`),\n { headers: { \"X-HS-Token\": code } },\n );\n return parse(response);\n}\n\n/** Already-sent issues for a list, newest first. */\nexport async function getNewsletterIssuesRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/issues?type=${type}&target=${encodeURIComponent(target)}`),\n { headers: { \"X-HS-Token\": code } },\n );\n const data = await parse<{ issues?: NewsletterSentIssue[] }>(response);\n return data.issues ?? [];\n}\n\n/** Candidate posts for composing a digest issue. */\nexport async function getNewsletterPostsRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n limit = 20,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(\n `/posts?type=${type}&target=${encodeURIComponent(target)}&limit=${limit}`,\n ),\n { headers: { \"X-HS-Token\": code } },\n );\n const data = await parse<{ posts?: NewsletterCandidatePost[] }>(response);\n return data.posts ?? [];\n}\n\nasync function postSend(\n path: string,\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(path), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\", \"X-HS-Token\": code },\n body: JSON.stringify(request),\n });\n const data = (await response.json().catch(() => undefined)) as\n | (T & {\n error?: string;\n code?: string;\n taken?: NewsletterSendRefusedError[\"taken\"];\n })\n | undefined;\n if (!response.ok) {\n throw new NewsletterSendRefusedError(\n data?.error || `Request failed (${response.status})`,\n response.status,\n data?.code,\n data?.taken,\n data,\n );\n }\n if (!data || typeof data !== \"object\") {\n throw new NewsletterSendRefusedError(\n `Unexpected response (${response.status})`,\n response.status,\n );\n }\n return data;\n}\n\n/** Render the would-be issue (subject/html/text, counts, taken periods) without sending. */\nexport function previewNewsletterSendRequest(\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n return postSend(\"/send/preview\", request, code);\n}\n\n/** Send a post or composed digest to the list's subscribers. Pro/team gated by the relay. */\nexport function sendNewsletterIssueRequest(\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n return postSend(\"/send\", request, code);\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getDigestSubscriptionsRequest } from \"../api\";\n\n/**\n * The signed-in account's live digest subscriptions. Disabled without a\n * username + token: callers render nothing then, and a request that\n * predictably 401s is noise. `retry: false` because the common failure is a\n * stale token, which a retry with the same token cannot fix.\n */\nexport function getDigestSubscriptionsQueryOptions(\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.subscriptions(name),\n enabled: !!name && !!code,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getDigestSubscriptionsRequest(code);\n },\n staleTime: 60_000,\n retry: false,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterSenderRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/**\n * Sender standing for a creator/community list. View access is the list's\n * owner (creator) or the community team, decided by the relay — enable this\n * only for callers already known to be the sender.\n */\nexport function getNewsletterSenderQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.sender(type, target, name),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterSenderRequest(type, target, code);\n },\n staleTime: 5 * 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterIssuesRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/** Already-sent issues for a creator/community list (sender-only view). */\nexport function getNewsletterIssuesQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.issues(type, target, name),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterIssuesRequest(type, target, code);\n },\n staleTime: 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterPostsRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/** Candidate posts for composing a digest issue (send-gated by the relay). */\nexport function getNewsletterPostsQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n limit = 20,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.posts(type, target, name, limit),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterPostsRequest(type, target, code, limit);\n },\n staleTime: 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { subscribeDigestRequest } from \"../api\";\nimport type { DigestSubscribeInput } from \"../types\";\n\n/**\n * Subscribe to a digest (also re-used to change cadence: same list + address\n * with a new cadence updates the row). Works signed-in (code) and anonymous\n * (input.captchaToken); the signed-in path refreshes the account's\n * subscriptions list on success.\n */\nexport function useSubscribeDigest(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"subscribe\", name],\n mutationFn: (input: DigestSubscribeInput) =>\n subscribeDigestRequest(input, code),\n onSuccess() {\n if (name) {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.subscriptions(name),\n });\n }\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { leaveDigestRequest } from \"../api\";\nimport type { DigestSubscription } from \"../types\";\n\n/** Leave one digest by subscription id; drops the row from the cached list. */\nexport function useLeaveDigest(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"leave\", name],\n mutationFn: async (id: string) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return leaveDigestRequest(id, code);\n },\n onSuccess(_result, id) {\n queryClient.setQueryData(\n QueryKeys.newsletter.subscriptions(name),\n (prev) => (prev ?? []).filter((s) => s.id !== id),\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { unsubscribeAllDigestsRequest } from \"../api\";\nimport type { DigestSubscription } from \"../types\";\n\n/**\n * Stop all Ecency mail to ONE address. Only that address's rows leave the\n * cached list: an account can hold subscriptions under more than one address,\n * and those stay visible.\n */\nexport function useUnsubscribeAllDigests(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"unsubscribe-all\", name],\n mutationFn: async (email: string) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return unsubscribeAllDigestsRequest(email, code);\n },\n onSuccess(_result, email) {\n queryClient.setQueryData(\n QueryKeys.newsletter.subscriptions(name),\n (prev) =>\n (prev ?? []).filter(\n (s) => s.email.toLowerCase() !== email.toLowerCase(),\n ),\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport {\n previewNewsletterSendRequest,\n sendNewsletterIssueRequest,\n} from \"../api\";\nimport type { NewsletterSendRequest } from \"../types\";\n\n/**\n * Preview the would-be issue. No cache side effects: a preview changes\n * nothing server-side.\n */\nexport function usePreviewNewsletterIssue(\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return useMutation({\n mutationKey: [\"newsletter\", \"send-preview\", name],\n mutationFn: async (request: NewsletterSendRequest) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return previewNewsletterSendRequest(request, code);\n },\n });\n}\n\n/**\n * Send a post or composed digest to a list. Errors are\n * NewsletterSendRefusedError with the relay's routing `code`\n * (already_sent + taken periods, suspended, post_refused, ...). On success the\n * list's issues + sender standing refresh.\n */\nexport function useSendNewsletterIssue(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"send\", name],\n mutationFn: async (request: NewsletterSendRequest) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return sendNewsletterIssueRequest(request, code);\n },\n onSuccess(_result, request) {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.issues(request.type, request.target, name),\n });\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.sender(request.type, request.target, name),\n });\n },\n });\n}\n","/**\n * Curation desk types.\n *\n * Shapes mirror the desk routes behind `/private-api/curation-desk/*`. Public\n * rows carry no curator identity; the roster feed and the tick add an `overlay`\n * with marks, signals and flags. The window state (full, half, eighth, locked,\n * paid) is never in a payload: clients derive it from `created` and `payout_at`.\n */\n\nexport const CURATION_REASONS = [\"quality\", \"underrated\", \"newcomer\", \"other\"] as const;\nexport type CurationReason = (typeof CURATION_REASONS)[number];\n\nexport const CURATION_SORTS = [\"queue\", \"newest\", \"unique\", \"random\"] as const;\nexport type CurationSort = (typeof CURATION_SORTS)[number];\n\nexport const CURATION_VIEWS = [\n \"queue\",\n \"latest\",\n \"new-authors\",\n \"recommended\",\n \"curated\",\n \"all\",\n \"excluded\",\n] as const;\nexport type CurationView = (typeof CURATION_VIEWS)[number];\n\nexport const CURATION_APPS = [\"all\", \"ecency\", \"peakd\", \"other\"] as const;\nexport type CurationApp = (typeof CURATION_APPS)[number];\n\nexport const CURATION_WINDOWS = [\"12h\", \"full\", \"half\", \"eighth\", \"locked\", \"all\"] as const;\nexport type CurationWindow = (typeof CURATION_WINDOWS)[number];\n\nexport const CURATION_MARK_STATES = [\"reviewed\", \"snoozed\", \"flagged\", \"noted\"] as const;\nexport type CurationMarkState = (typeof CURATION_MARK_STATES)[number];\n\nexport const CURATION_FLAG_REASONS = [\n \"plagiarism\",\n \"ai_slop\",\n \"recycled\",\n \"image_only\",\n \"tag_abuse\",\n \"farming\",\n \"nsfw_untagged\",\n \"other\",\n] as const;\nexport type CurationFlagReason = (typeof CURATION_FLAG_REASONS)[number];\n\nexport type CurationRole = \"admin\" | \"mod\" | \"curator\" | \"trial\";\n\n/** Filters shared by the public feed (query params) and the roster feed (body). */\nexport interface CurationFeedParams {\n sort?: CurationSort;\n view?: CurationView;\n app?: CurationApp;\n community?: string;\n window?: CurationWindow;\n rep_min?: number;\n rep_max?: number;\n min_words?: number;\n max_words?: number;\n has_images?: boolean;\n new_authors?: boolean;\n recommended?: boolean;\n hide_curated?: boolean;\n limit?: number;\n}\n\n/** Roster-only additions: the random seed and the team-mark predicates. */\nexport interface CurationRosterFeedParams extends CurationFeedParams {\n seed?: string;\n flagged?: boolean;\n hide_reviewed?: boolean;\n hide_snoozed?: boolean;\n}\n\nexport interface CurationTrailedBy {\n curator: string;\n at: string;\n weight: number;\n source: \"erobot_push\" | \"history\" | \"inferred\" | string;\n confirmed: boolean;\n}\n\nexport interface CurationVotedBy {\n voter: string;\n weight: number;\n at: string;\n}\n\n/** Public row (route 1, 4 rows are narrower, route 5 adds recommenders). */\nexport interface CurationRow {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n created: string;\n app: string | null;\n is_ecency: boolean;\n community: string | null;\n community_title: string | null;\n tags: string[];\n rep: number | null;\n is_new_author: boolean;\n author_post_count: number | null;\n author_created?: string | null;\n word_count: number | null;\n image_count: number;\n first_image: string | null;\n summary: string | null;\n edited_at: string | null;\n edit_count: number;\n votes: number | null;\n pending_payout: number | null;\n pending_payout_est?: number | null;\n payout_at: string | null;\n is_declined?: boolean | null;\n is_gray?: boolean | null;\n rshares_total?: number | null;\n rshares_after_24h?: number | null;\n /** 0 open, 1 curated, 2 dropped */\n state: number;\n trailed_by: CurationTrailedBy | null;\n voted_by: CurationVotedBy[];\n author_trailed_at: string | null;\n /** Set on the hivewatchers unvote path. */\n unvoted_at?: string | null;\n /** Materialization time; with `created` it tells a late row. */\n inserted_at?: string | null;\n recommend_count: number;\n unique_recommenders: number;\n reco_no_meta_count: number;\n /** Opaque keyset cursor for the page that follows this row. */\n _cursor?: string;\n}\n\nexport interface CurationMark {\n curator: string;\n state: CurationMarkState;\n reason?: string | null;\n note?: string | null;\n /**\n * Whether a note body exists. Tick deltas carry this instead of the body,\n * so a delta must never overwrite a note the client already holds.\n */\n has_note?: boolean;\n snooze_until?: string | null;\n updated_at: string;\n}\n\nexport interface CurationSignals {\n formulaic?: number | null;\n images?: { on_hive?: number; total?: number } | null;\n engagement?: { replies_per_day?: number | null } | null;\n style?: { alert?: boolean; sigma?: number; feature?: string; sample?: number } | null;\n /**\n * The detector's read of the post's FIRST image, which is the one rendered as the\n * thumbnail. `over` is the only field to act on; `score` and `classes` are for tuning.\n * A null score means unknown (no image, or the check could not run), never \"clean\".\n */\n nsfw?: {\n score?: number | null;\n class?: string | null;\n over?: boolean;\n classes?: string[];\n note?: string;\n } | null;\n [key: string]: unknown;\n}\n\nexport interface CurationFlags {\n low_rep?: boolean;\n /** The author's reputation has gone negative, which is not the same line as low_rep. */\n negative_rep?: boolean;\n ignorelist?: boolean;\n abuser?: boolean;\n spaminator?: boolean;\n blocked_tag?: boolean;\n /** The post carries Hive's own `nsfw` tag. */\n nsfw?: boolean;\n patch_body?: boolean;\n deleted?: boolean;\n hivewatchers_downvote?: boolean;\n [key: string]: unknown;\n}\n\n/** Roster-only overlay shipped inline with the roster feed and in tick deltas. */\nexport interface CurationOverlay {\n signals: CurationSignals | null;\n flags: CurationFlags;\n excluded_reason: string | null;\n team_mark: CurationMarkState | null;\n team_mark_by: string | null;\n team_snooze_until?: string | null;\n resurfaced_at: string | null;\n /** Set when the roster dismissed the recommendations of this post. */\n reco_dismissed_at?: string | null;\n marks: CurationMark[];\n notes_count: number;\n}\n\nexport type CurationRosterRow = CurationRow & { overlay: CurationOverlay | null };\n\nexport interface CurationTeamCursor {\n post_id: number | null;\n created: string | null;\n set_by?: string;\n set_at?: string;\n}\n\nexport interface CurationActiveCurator {\n username: string;\n last_action_at: string;\n}\n\n/**\n * The narrowing facets a curator was working when they made a mark. Empty means\n * the whole queue. The keys are the roster feed's own params, so a value here has\n * already been through the allow lists the query runs on.\n */\nexport type CurationLane = Partial<{\n /** Present only when it is not the queue order, under which alone a position is a watermark. */\n sort: CurationSort;\n view: string;\n app: CurationApp;\n community: string;\n window: CurationWindow;\n rep_min: number;\n rep_max: number;\n min_words: number;\n max_words: number;\n has_images: boolean;\n new_authors: boolean;\n recommended: boolean;\n flagged: boolean;\n hide_curated: boolean;\n hide_reviewed: boolean;\n hide_snoozed: boolean;\n}>;\n\n/**\n * How far one curator has got, derived from their marks so nobody types it. This\n * is the hand-off curators used to post in Discord.\n *\n * `reviewed_to` is a progress claim rather than a contiguous reviewed prefix: a\n * mark is any of the four states and marks are not made in queue order. It is\n * read, never used to aim anything. `lane` travels with the mark that set the\n * position, so the two always describe the same moment. Roster-only: the public\n * payloads carry no per-curator activity at all.\n */\nexport interface CurationHandoffEntry {\n username: string;\n reviewed_to: string | null;\n reviewed_to_post_id: number | null;\n last_mark_at: string;\n /** Absent for a trial viewer looking at somebody else. */\n marks_24h?: number;\n /**\n * Null is UNKNOWN: a mark from before the desk sent lanes, or one that said\n * nothing. It is never the whole queue, which is `{}`. Absent until the\n * backend that records it is deployed.\n */\n lane?: CurationLane | null;\n}\n\nexport interface CurationFeedPage {\n items: CurationRow[];\n next_cursor: string | null;\n team_cursor: CurationTeamCursor;\n head_lag_seconds: number;\n feed_version: string | null;\n generated_at: string;\n}\n\nexport interface CurationRosterFeedPage {\n items: CurationRosterRow[];\n next_cursor: string | null;\n team_cursor: CurationTeamCursor;\n active_curators: CurationActiveCurator[];\n /** Roster only, and absent until the backend that derives it is deployed. */\n handoff?: CurationHandoffEntry[];\n facets: { communities: Array<{ community: string; title?: string | null; count?: number }> };\n total_estimate: number | null;\n head_lag_seconds: number;\n generated_at: string;\n}\n\nexport interface CurationManaSpent {\n equiv: number;\n trail: number;\n other: number;\n crosscheck: number | null;\n since: string;\n}\n\nexport interface CurationVp {\n account: string;\n percent: number;\n live_percent: number;\n implied_weight: number;\n at: string;\n sustainable_votes_per_day: number;\n regen_votes_per_hour: number;\n reward_fund?: {\n recent_claims: string | number;\n reward_balance: number;\n median_price: number;\n at: string;\n } | null;\n}\n\nexport interface CurationStatus {\n team_cursor: CurationTeamCursor;\n behind_seconds: number | null;\n counts: {\n unreviewed: number;\n curated_24h: number;\n trail_votes_today: { posts: number; comments: number };\n recommended_posts: number;\n };\n mana_spent_today: CurationManaSpent | null;\n vp: CurationVp | null;\n head_lag_seconds: number;\n reco_lag_blocks: number | null;\n feed_version: string | null;\n latest_post_id: number | null;\n worker_tick_age_seconds: number | null;\n}\n\n/**\n * The per-curator conditions erobot applies before trailing a vote. The three\n * weights are Hive vote weights (100 = 1%); `trail` overrides the per-role\n * default, and is what `config.followAccounts` used to be.\n */\nexport interface CurationRosterRules {\n min_weight?: number;\n max_weight?: number;\n waves_only_below?: number;\n trail?: boolean;\n}\n\nexport interface CurationRosterEntry {\n username: string;\n role: CurationRole;\n active: boolean;\n rules?: CurationRosterRules | null;\n /** Resolved by the backend, so no client re-implements the per-role default. */\n trail?: boolean;\n}\n\n/**\n * The admin view of a row. These fields are private, so they arrive from the\n * roster-list POST and never from the edge-cached roster GET.\n */\nexport interface CurationRosterAdminEntry extends CurationRosterEntry {\n added_by: string | null;\n added_at: string | null;\n removed_at: string | null;\n note: string | null;\n}\n\nexport interface CurationRoster {\n curators: CurationRosterEntry[];\n updated_at: string;\n}\n\nexport interface CurationRosterAdminList {\n curators: CurationRosterAdminEntry[];\n}\n\nexport interface CurationRosterSetInput {\n curator: string;\n role: CurationRole;\n rules?: CurationRosterRules;\n note?: string;\n}\n\nexport interface CurationRecommender {\n username: string;\n rep: number | null;\n reason: CurationReason | null;\n at: string;\n has_meta: boolean;\n is_self?: boolean;\n /**\n * Ordering weight of this recommender, 0.5 to 1.5 with 1.0 neutral. Above\n * 1.0 means curators curated their picks more often than they dismissed\n * them over the window. It changes ordering only, never what is shown.\n */\n precision?: number;\n /** At least 10 recommendations and a precision of 1.2 or more. */\n trusted?: boolean;\n}\n\n/**\n * Route 14: one recommender's 90-day scorecard. An unknown username answers\n * zeros with a neutral precision and `trusted: false`, never a 404, so a name\n * that never recommended anything is not an error state.\n */\nexport interface CurationRecommenderStats {\n username: string;\n window_days: number;\n recommended: number;\n curated: number;\n dismissed: number;\n withdrawn: number;\n precision: number;\n trusted: boolean;\n computed_at: string | null;\n}\n\nexport type CurationReasonsHistogram = Partial>;\n\nexport interface CurationRecommendationItem {\n author: string;\n permlink: string;\n title: string;\n created: string;\n /**\n * The post's cover, the same column the feed row carries. Optional because a\n * desk older than the field answers without it; absent and null both mean no\n * cover, and the caller proxifies before rendering.\n */\n first_image?: string | null;\n recommend_count: number;\n unique_recommenders: number;\n no_meta_count: number;\n reasons: CurationReasonsHistogram;\n recommenders: CurationRecommender[];\n _cursor?: string;\n}\n\nexport interface CurationRecommendationsPage {\n items: CurationRecommendationItem[];\n next_cursor: string | null;\n}\n\nexport type CurationRecommendationsSort = \"unique\" | \"newest\";\n\nexport interface CurationRecommendationsParams {\n sort?: CurationRecommendationsSort;\n limit?: number;\n}\n\n/** Route 5: the public row plus the recommender list, self row included. */\nexport interface CurationPost extends CurationRow {\n recommenders: CurationRecommender[];\n no_meta_count: number;\n reasons: CurationReasonsHistogram;\n}\n\nexport interface CurationTickRequest {\n /** `generated_at` echoed verbatim from the previous response. */\n since: string | null;\n /** Loaded rows that have no overlay yet (at most 100). */\n need: number[];\n /** Visible rows (at most 100). */\n visible: number[];\n}\n\n/**\n * Tick answer. `truncated` says the delta window was too wide to answer in\n * full; it only means something when the request carried a `since`, since a\n * first tick with `since: null` asks for a snapshot, not a window.\n */\nexport interface CurationTickResponse {\n overlay: Array<{ post_id: number } & CurationOverlay>;\n deltas: {\n marks: Array<{ post_id: number } & CurationMark>;\n flags: Array<{ post_id: number; flags: CurationFlags; excluded_reason: string | null }>;\n signals: Array<{ post_id: number; signals: CurationSignals | null }>;\n /**\n * Rows whose curation state moved since the client's own `generated_at`.\n * The overlay carries no state, so without these a page the client keeps\n * holding would render a curated post as open and votable. Optional: a\n * backend that predates it simply sends nothing.\n */\n rows?: Array<\n Pick\n >;\n };\n team_cursor: CurationTeamCursor;\n active_curators: CurationActiveCurator[];\n /** Roster only, and absent until the backend that derives it is deployed. */\n handoff?: CurationHandoffEntry[];\n trail_alerts: unknown[];\n generated_at: string;\n truncated: boolean;\n}\n\nexport interface CurationMarkInput {\n author: string;\n permlink: string;\n state: CurationMarkState;\n reason?: string;\n note?: string;\n snooze_until?: string;\n /**\n * The feed params the desk was showing when it made this mark. The hand-off\n * reads a position and its lane off the same mark, so a desk with two tabs on\n * different filters stamps each mark with its own. Paging keys are dropped by\n * the gateway; absent means the lane is unknown, never the whole queue.\n */\n lane?: CurationRosterFeedParams;\n}\n\nexport interface CurationMarkResponse {\n mark: CurationMark | null;\n row: CurationRosterRow;\n}\n\nexport interface CurationMarkClearResponse {\n ok: boolean;\n row: CurationRosterRow;\n}\n\nexport interface CurationMyMarksParams {\n state?: CurationMarkState;\n cursor?: string;\n limit?: number;\n}\n\nexport interface CurationMyMark extends CurationMark {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n created: string;\n row?: CurationRosterRow | null;\n}\n\nexport interface CurationMyMarksResponse {\n items: CurationMyMark[];\n next_cursor: string | null;\n}\n\nexport type CurationCursorAction = \"advance\" | \"rewind\";\n\nexport interface CurationCursorInput {\n post_id: number;\n action: CurationCursorAction;\n reason?: string;\n}\n\nexport interface CurationCursorResponse {\n team_cursor: CurationTeamCursor;\n moved: boolean;\n swept_count: number | null;\n}\n\nexport type CurationUaClass = \"web\" | \"mobile\";\n\nexport interface CurationRecommendMetaInput {\n author: string;\n permlink: string;\n /** 40 hex chars when the broadcast path returned one; omitted otherwise. */\n trx_id?: string | null;\n ua_class: CurationUaClass;\n}\n\nexport type CurationDismissAction = \"dismiss\" | \"restore\";\n\nexport interface CurationDismissRecoInput {\n author: string;\n permlink: string;\n action: CurationDismissAction;\n}\n\nexport interface CurationDismissRecoResponse {\n row: CurationRosterRow;\n}\n","import type { CurationFlags } from \"./types\";\n\n/**\n * The desk shows the moderation flags the backend materialized from the bot's\n * config and from external abuse lists. The web reads them through this helper\n * so the list's name stays a wire detail of the payload: it is a warning the\n * desk displays, never a verdict and never an input to indexability.\n */\nexport function isOnAbuseList(flags: CurationFlags | null | undefined): boolean {\n return !!flags?.spaminator || !!flags?.abuser;\n}\n\n/**\n * Any flag that keeps a row out of the public queue. `low_rep` is deliberately\n * absent: it is the one excluded reason every view still lists with a chip,\n * because 25 is the reputation a brand new account has. `negative_rep` is the\n * separate line for a reputation that has gone negative, and that one does\n * remove the row.\n */\nexport function isExcludedByFlags(flags: CurationFlags | null | undefined): boolean {\n return (\n !!flags?.ignorelist ||\n !!flags?.abuser ||\n !!flags?.blocked_tag ||\n !!flags?.nsfw ||\n !!flags?.patch_body ||\n !!flags?.negative_rep ||\n !!flags?.deleted\n );\n}\n","import type { InfiniteData } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\n\n/**\n * Takedown masking for desk payloads.\n *\n * The desk serves rows the bridge never touched, so they never pass through\n * `filterDmcaEntry`. The test is the same one that file runs (`CONFIG`\n * patterns plus regexes against `@author/permlink`); what a row can leak is\n * its title, its summary and its thumbnail, so those are what the mask blanks.\n */\n\ninterface MaskableCurationRow {\n author: string;\n permlink: string;\n title: string;\n summary?: string | null;\n first_image?: string | null;\n}\n\nexport function isDmcaCurationPath(author: string, permlink: string): boolean {\n const path = `@${author}/${permlink}`;\n return (\n CONFIG.dmcaPatterns.includes(path) || CONFIG.dmcaPatternRegexes.some((regex) => regex.test(path))\n );\n}\n\n/** Returns the SAME object when nothing matches, so memoized rows keep identity. */\nexport function maskDmcaCurationRow(row: T): T {\n if (!row || !isDmcaCurationPath(row.author, row.permlink)) {\n return row;\n }\n const masked = { ...row, title: \"\" } as MaskableCurationRow & Record;\n if (\"summary\" in masked) masked.summary = null;\n if (\"first_image\" in masked) masked.first_image = null;\n return masked as T;\n}\n\n/** Masks every page item; untouched pages keep their identity. */\nexport function maskDmcaCurationPages(\n data: InfiniteData\n): InfiniteData {\n let changed = false;\n const pages = data.pages.map((page) => {\n let pageChanged = false;\n const items = page.items.map((item) => {\n const masked = maskDmcaCurationRow(item);\n if (masked !== item) pageChanged = true;\n return masked;\n });\n if (!pageChanged) return page;\n changed = true;\n return { ...page, items };\n });\n return changed ? { ...data, pages } : data;\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport type {\n CurationCursorInput,\n CurationCursorResponse,\n CurationDismissRecoInput,\n CurationDismissRecoResponse,\n CurationFeedPage,\n CurationFeedParams,\n CurationMarkClearResponse,\n CurationMarkInput,\n CurationMarkResponse,\n CurationMyMarksParams,\n CurationMyMarksResponse,\n CurationPost,\n CurationRecommendMetaInput,\n CurationRecommendationsPage,\n CurationRecommendationsParams,\n CurationRecommenderStats,\n CurationRoster,\n CurationRosterAdminEntry,\n CurationRosterAdminList,\n CurationRosterFeedPage,\n CurationRosterFeedParams,\n CurationRosterSetInput,\n CurationStatus,\n CurationTickRequest,\n CurationTickResponse,\n} from \"./types\";\n\n/**\n * Curation desk transport. Public GETs carry no identity; authed POSTs take the\n * HiveSigner access `code` as an explicit argument and send it in the body.\n * Token freshness is the caller's job (web: ensureValidToken; mobile: its token\n * wrapper), so a builder never captures a code that can expire.\n */\n\nconst ROUTE = \"/private-api/curation-desk\";\n\nexport class CurationApiError extends Error {\n readonly status: number;\n readonly data: unknown;\n\n constructor(message: string, status: number, data?: unknown) {\n super(message);\n this.name = \"CurationApiError\";\n this.status = status;\n this.data = data;\n }\n}\n\n/**\n * A light shape check per response family, not a schema validator: it answers\n * \"is this the kind of body the consumers dereference\", so a 200 that carries\n * something else (an error envelope, another route's body) fails here instead\n * of inside a query builder reading `.items.length`.\n */\ntype ShapeCheck = (data: unknown) => boolean;\n\nfunction isRecord(data: unknown): data is Record {\n return typeof data === \"object\" && data !== null && !Array.isArray(data);\n}\n\n/** Every paged family: the list is what the consumers page over. */\nconst hasItems: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.items);\nconst hasCurators: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.curators);\n/** Route 5: the viewer finds their own recommendation by name in this list. */\nconst hasRecommenders: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.recommenders);\n/** `vp` is nullable, so the field has to be present rather than truthy. */\nconst isStatus: ShapeCheck = (data) => isRecord(data) && \"vp\" in data;\n/**\n * A scorecard is counted, never absent: an unknown recommender answers zeros\n * rather than a 404, so a body without a numeric `recommended` is another\n * route's answer and not an empty scorecard.\n */\n/** Every number the scorecard prints, the window it prints them for included. */\nconst SCORECARD_COUNTS = [\"window_days\", \"recommended\", \"curated\", \"dismissed\", \"withdrawn\", \"precision\"] as const;\nconst isRecommenderStats: ShapeCheck = (data) =>\n isRecord(data) &&\n SCORECARD_COUNTS.every((key) => typeof data[key] === \"number\") &&\n typeof data.trusted === \"boolean\";\n\nasync function parse(response: Response, what: string, check?: ShapeCheck): Promise {\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n data = undefined;\n }\n throw new CurationApiError(`Failed to ${what}: ${response.status}`, response.status, data);\n }\n // The gateway answers an unknown GET with a 200 HTML page. That is never an\n // empty queue, so a non-JSON body is an error too. A body that only claims\n // to be JSON gets the same treatment: parsing it must not reach the caller\n // as a SyntaxError with no status on it.\n const contentType = response.headers?.get?.(\"content-type\") ?? \"\";\n if (contentType && !contentType.includes(\"json\")) {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n let data: unknown;\n try {\n data = await response.json();\n } catch {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n if (check && !check(data)) {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n return data as T;\n}\n\nconst COMMUNITY_RE = /^hive-\\d{5,6}$/;\nconst SEED_RE = /^[a-z0-9]{8,16}$/;\n\n/**\n * Booleans the desk already defaults to true, so only an explicit false says\n * anything. Sending the \"1\" would split memo and cache keys against a gateway\n * that drops it.\n */\nconst DEFAULT_TRUE = new Set([\"hide_curated\", \"hide_reviewed\", \"hide_snoozed\"]);\n\n/** Fixed emission order: keeps memo and shared-cache keys stable across clients. */\nconst PARAM_ORDER = [\n \"sort\",\n \"seed\",\n \"view\",\n \"app\",\n \"community\",\n \"window\",\n \"rep_min\",\n \"rep_max\",\n \"min_words\",\n \"max_words\",\n \"has_images\",\n \"new_authors\",\n \"recommended\",\n \"flagged\",\n \"hide_curated\",\n \"hide_reviewed\",\n \"hide_snoozed\",\n \"limit\",\n] as const;\n\nexport type NormalizedCurationParams = Record;\n\n/**\n * Drops defaults and unknown values, emits fixed-order string params. Used for\n * the query string, the roster body and the React Query key, so all three agree.\n */\nexport function normalizeCurationParams(\n params: CurationRosterFeedParams | CurationFeedParams = {}\n): NormalizedCurationParams {\n const source = params as Record;\n const out: NormalizedCurationParams = {};\n for (const name of PARAM_ORDER) {\n const value = source[name];\n if (value === undefined || value === null || value === \"\") continue;\n if (typeof value === \"boolean\") {\n if (DEFAULT_TRUE.has(name)) {\n if (!value) out[name] = \"0\";\n } else if (value) {\n out[name] = \"1\";\n }\n continue;\n }\n if (typeof value === \"number\") {\n if (!Number.isFinite(value)) continue;\n out[name] = String(Math.trunc(value));\n continue;\n }\n const text = String(value);\n if ((name === \"app\" || name === \"window\") && text === \"all\") continue;\n if (name === \"community\" && !COMMUNITY_RE.test(text)) continue;\n if (name === \"seed\" && !SEED_RE.test(text)) continue;\n out[name] = text;\n }\n // The seed only means something for the random order.\n if (out.sort !== \"random\") delete out.seed;\n return out;\n}\n\nfunction toQuery(normalized: NormalizedCurationParams, cursor?: string): string {\n const search = new URLSearchParams();\n for (const name of PARAM_ORDER) {\n if (normalized[name] !== undefined) search.set(name, normalized[name]);\n }\n if (cursor) search.set(\"cursor\", cursor);\n const text = search.toString();\n return text ? `?${text}` : \"\";\n}\n\nfunction url(path: string): string {\n return `${CONFIG.privateApiHost}${ROUTE}${path}`;\n}\n\n/** Hosts a credential may reach without TLS: a local gateway has no certificate. */\nconst LOOPBACK_HOSTS = new Set([\"localhost\", \"127.0.0.1\", \"::1\", \"[::1]\"]);\n\n/**\n * The authed routes put the HiveSigner code in the body, so the transport is\n * the only thing keeping a replayable credential private. A relative host\n * (empty for same-origin, `//gateway`, `/api`) takes the page's own transport,\n * so it is resolved against the page before the scheme is read.\n */\nfunction assertCredentialTransport(what: string) {\n const host = CONFIG.privateApiHost || \"\";\n const page = typeof window !== \"undefined\" ? window.location?.href : undefined;\n let parsed: URL;\n try {\n parsed = page ? new URL(host, page) : new URL(host);\n } catch {\n // Relative with no page to resolve against: outside a browser nothing can\n // be fetched from a relative URL either.\n return;\n }\n if (parsed.protocol === \"https:\") return;\n if (parsed.protocol === \"http:\" && LOOPBACK_HOSTS.has(parsed.hostname)) return;\n throw new CurationApiError(`Refusing to ${what} over an insecure connection`, 0);\n}\n\nasync function getJson(\n path: string,\n what: string,\n signal?: AbortSignal,\n check?: ShapeCheck\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url(path), { method: \"GET\", signal });\n return parse(response, what, check);\n}\n\nasync function postJson(\n path: string,\n code: string | undefined,\n body: Record,\n what: string,\n signal?: AbortSignal,\n check?: ShapeCheck\n): Promise {\n if (!code) {\n throw new Error(\"[SDK][Curation] missing auth\");\n }\n assertCredentialTransport(what);\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url(path), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ ...body, code }),\n // A 307 or 308 would resend this body, code included, to wherever the\n // redirect points.\n redirect: \"error\",\n signal,\n });\n return parse(response, what, check);\n}\n\n// ---------------------------------------------------------------------------\n// Public reads (used by the query builders)\n// ---------------------------------------------------------------------------\n\nexport function fetchCurationFeedPage(\n params: CurationFeedParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/feed${toQuery(normalizeCurationParams(params), cursor)}`,\n \"fetch curation feed\",\n signal,\n hasItems\n );\n}\n\nexport function fetchCurationStatus(signal?: AbortSignal): Promise {\n return getJson(\"/status\", \"fetch curation status\", signal, isStatus);\n}\n\nexport function fetchCurationRoster(signal?: AbortSignal): Promise {\n return getJson(\"/roster\", \"fetch curation roster\", signal, hasCurators);\n}\n\nexport function fetchCurationRecommendationsPage(\n params: CurationRecommendationsParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n const search = new URLSearchParams();\n if (params.sort) search.set(\"sort\", params.sort);\n if (params.limit) search.set(\"limit\", String(params.limit));\n if (cursor) search.set(\"cursor\", cursor);\n const text = search.toString();\n return getJson(\n `/recommendations${text ? `?${text}` : \"\"}`,\n \"fetch curation recommendations\",\n signal,\n hasItems\n );\n}\n\nexport function fetchCurationRecommenderStats(\n username: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/recommender/${encodeURIComponent(username)}`,\n \"fetch recommender stats\",\n signal,\n isRecommenderStats\n );\n}\n\nexport function fetchCurationPost(\n author: string,\n permlink: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/post/${encodeURIComponent(author)}/${encodeURIComponent(permlink)}`,\n \"fetch curation post\",\n signal,\n hasRecommenders\n );\n}\n\n// ---------------------------------------------------------------------------\n// Authed writes and reads (code in the body)\n// ---------------------------------------------------------------------------\n\nexport function curationRosterFeedRequest(\n code: string | undefined,\n params: CurationRosterFeedParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n const body: Record = { ...normalizeCurationParams(params) };\n if (cursor) body.cursor = cursor;\n return postJson(\n \"/roster-feed\",\n code,\n body,\n \"fetch roster feed\",\n signal,\n hasItems\n );\n}\n\nexport function curationTickRequest(\n code: string | undefined,\n body: CurationTickRequest,\n signal?: AbortSignal\n): Promise {\n return postJson(\n \"/tick\",\n code,\n {\n since: body.since,\n need: body.need.slice(0, 100),\n visible: body.visible.slice(0, 100),\n },\n \"tick\",\n signal\n );\n}\n\n/**\n * The roster admin routes. All three are admin-only upstream, and all three are\n * POSTs: the private view carries notes and retired rows, which must never enter\n * the edge-cached roster GET.\n */\nexport function curationRosterListRequest(\n code: string | undefined,\n signal?: AbortSignal\n): Promise {\n // Same shape check as the public roster: a 200 carrying an error envelope, or any\n // body without `curators`, must reach the query's error path. Without it the panel\n // renders `data?.curators ?? []` and an outage looks like an empty roster.\n return postJson(\"/roster-list\", code, {}, \"list roster\", signal, hasCurators);\n}\n\nexport function curationRosterSetRequest(\n code: string | undefined,\n input: CurationRosterSetInput\n): Promise<{ curator: CurationRosterAdminEntry }> {\n const { curator, role, rules, note } = input;\n if (!curator || !role) {\n throw new Error(\"[SDK][Curation] roster set needs a curator and a role\");\n }\n const body: Record = { curator, role };\n // Sent whole or not at all: the backend replaces the stored rules with what\n // arrives, so a partial object would silently drop the rules left out.\n if (rules) body.rules = rules;\n if (note !== undefined) body.note = note;\n return postJson<{ curator: CurationRosterAdminEntry }>(\"/roster-set\", code, body, \"set curator\");\n}\n\nexport function curationRosterRetireRequest(\n code: string | undefined,\n curator: string\n): Promise<{ ok: boolean; curator: string }> {\n if (!curator) {\n throw new Error(\"[SDK][Curation] roster retire needs a curator\");\n }\n return postJson<{ ok: boolean; curator: string }>(\n \"/roster-retire\",\n code,\n { curator },\n \"retire curator\"\n );\n}\n\nexport function curationMarkRequest(\n code: string | undefined,\n input: CurationMarkInput\n): Promise {\n const { author, permlink, state, reason, note, snooze_until, lane } = input;\n if (!author || !permlink || !state) {\n throw new Error(\"[SDK][Curation] mark needs author, permlink and state\");\n }\n const body: Record = { author, permlink, state };\n if (reason) body.reason = reason;\n if (note) body.note = note;\n if (snooze_until) body.snooze_until = snooze_until;\n if (lane) body.lane = lane;\n return postJson(\"/mark\", code, body, \"set mark\");\n}\n\nexport function curationMarkClearRequest(\n code: string | undefined,\n input: { author: string; permlink: string }\n): Promise {\n if (!input.author || !input.permlink) {\n throw new Error(\"[SDK][Curation] mark-clear needs author and permlink\");\n }\n return postJson(\n \"/mark-clear\",\n code,\n { author: input.author, permlink: input.permlink },\n \"clear mark\"\n );\n}\n\nexport function curationMyMarksRequest(\n code: string | undefined,\n params: CurationMyMarksParams = {},\n signal?: AbortSignal\n): Promise {\n const body: Record = {};\n if (params.state) body.state = params.state;\n if (params.cursor) body.cursor = params.cursor;\n if (params.limit) body.limit = params.limit;\n return postJson(\"/marks\", code, body, \"fetch my marks\", signal, hasItems);\n}\n\nexport function curationCursorRequest(\n code: string | undefined,\n input: CurationCursorInput\n): Promise {\n if (!Number.isFinite(input.post_id) || !input.action) {\n throw new Error(\"[SDK][Curation] cursor needs post_id and action\");\n }\n const body: Record = { post_id: input.post_id, action: input.action };\n if (input.reason) body.reason = input.reason;\n return postJson(\"/cursor\", code, body, \"move cursor\");\n}\n\nconst TRX_ID_RE = /^[0-9a-f]{40}$/;\n\nexport function curationRecommendMetaRequest(\n code: string | undefined,\n input: CurationRecommendMetaInput\n): Promise<{ ok: boolean }> {\n const { author, permlink, trx_id, ua_class } = input;\n if (!author || !permlink || !ua_class) {\n throw new Error(\"[SDK][Curation] recommend-meta needs author, permlink and ua_class\");\n }\n const body: Record = { author, permlink, ua_class };\n // Optional and informational: only a well-formed id travels, so a path that\n // returned an odd shape never turns the ping into a 400.\n if (typeof trx_id === \"string\" && TRX_ID_RE.test(trx_id)) body.trx_id = trx_id;\n return postJson<{ ok: boolean }>(\"/recommend-meta\", code, body, \"send recommendation meta\");\n}\n\nexport function curationDismissRecoRequest(\n code: string | undefined,\n input: CurationDismissRecoInput\n): Promise {\n if (!input.author || !input.permlink || !input.action) {\n throw new Error(\"[SDK][Curation] recommendation-dismiss needs author, permlink and action\");\n }\n return postJson(\n \"/recommendation-dismiss\",\n code,\n { author: input.author, permlink: input.permlink, action: input.action },\n \"dismiss recommendation\"\n );\n}\n","import { infiniteQueryOptions, type InfiniteData } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { maskDmcaCurationPages } from \"../dmca\";\nimport { fetchCurationFeedPage, normalizeCurationParams } from \"../requests\";\nimport type { CurationFeedPage, CurationFeedParams, CurationRow } from \"../types\";\n\nexport const CURATION_FEED_PAGE_SIZE = 25;\nexport const CURATION_FEED_STALE_MS = 10_000;\n\n/**\n * Drops rows whose key already appeared on an earlier page. Needed for the\n * live-keyset `unique` order (a row whose count rose between two pages repeats),\n * harmless for the immutable chronological orders. Untouched pages keep their\n * identity so memoized rows do not re-render.\n */\nexport function dedupePagesBy(\n data: InfiniteData,\n keyOf: (item: TPage[\"items\"][number]) => string | number\n): InfiniteData {\n const seen = new Set();\n let changed = false;\n const pages = data.pages.map((page) => {\n const items = page.items.filter((row) => {\n const key = keyOf(row);\n if (seen.has(key)) {\n changed = true;\n return false;\n }\n seen.add(key);\n return true;\n });\n return items.length === page.items.length ? page : { ...page, items };\n });\n return changed ? { ...data, pages } : data;\n}\n\n/** Feed pages dedupe by `post_id`. */\nexport function dedupeCurationPages }>(\n data: InfiniteData\n): InfiniteData {\n return dedupePagesBy(data, (row) => row.post_id);\n}\n\ninterface SelectableFeedRow {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n summary?: string | null;\n first_image?: string | null;\n}\n\n/**\n * The select every desk feed shares: dedupe by `post_id`, then blank the rows\n * on the takedown list. The roster feed (web owned, because its queryFn needs\n * a fresh token) uses it too, so both feeds hide the same rows.\n */\nexport function selectCurationFeedPages(\n data: InfiniteData\n): InfiniteData {\n return maskDmcaCurationPages(dedupeCurationPages(data));\n}\n\n/**\n * Public curation feed (route 1), keyset paginated.\n *\n * `_cursor` on the last row is opaque: it encodes the order's key (`created`\n * and `post_id` for the chronological sorts, the recommender pair for `unique`,\n * the hash pair for `random`). A short page ends the list. No `refetchInterval`\n * (React Query would refetch every loaded page) and no `initialData` (the web\n * client's `refetchOnMount: false` would then never fetch page 1): the web polls\n * `status` and refetches page 1 only when `feed_version` changes.\n */\nexport function getCurationFeedInfiniteQueryOptions(params: CurationFeedParams = {}) {\n const limit = params.limit ?? CURATION_FEED_PAGE_SIZE;\n const normalized = normalizeCurationParams({ ...params, limit });\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.curation.feed(normalized),\n initialPageParam: undefined as string | undefined,\n queryFn: ({ pageParam, signal }) => fetchCurationFeedPage({ ...params, limit }, pageParam, signal),\n getNextPageParam: (lastPage: CurationFeedPage): string | undefined => {\n if (!lastPage || lastPage.items.length < limit) {\n return undefined;\n }\n const last: CurationRow | undefined = lastPage.items[lastPage.items.length - 1];\n return last?._cursor ?? lastPage.next_cursor ?? undefined;\n },\n select: selectCurationFeedPages,\n staleTime: CURATION_FEED_STALE_MS,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationStatus } from \"../requests\";\n\n/**\n * Desk status (route 2): team cursor, counts, @ecency VP and the mana budget.\n * Public, memoized 15 s at the gateway. The web polls it every 60 s while\n * visible and uses `feed_version` to decide whether page 1 needs a refetch.\n */\nexport function getCurationStatusQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.curation.status(),\n queryFn: ({ signal }) => fetchCurationStatus(signal),\n staleTime: 15_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRoster } from \"../requests\";\n\n/** Curator roster (route 3): usernames and roles. Changes rarely; 10 minutes shared. */\nexport function getCurationRosterQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.curation.roster(),\n queryFn: ({ signal }) => fetchCurationRoster(signal),\n staleTime: 600_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { curationRosterListRequest } from \"../requests\";\n\n/**\n * The admin view of the roster: notes, who added whom, and the retired rows the\n * public roster hides. Admin only upstream, so it is keyed by the viewer and\n * never shares a cache entry with the public roster query.\n */\nexport function getCurationRosterAdminQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.curation.rosterAdmin(username),\n queryFn: ({ signal }) => curationRosterListRequest(code, signal),\n enabled: !!username && !!code,\n staleTime: 60_000,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRecommendationsPage } from \"../requests\";\nimport { maskDmcaCurationPages } from \"../dmca\";\nimport type { CurationRecommendationsPage, CurationRecommendationsParams } from \"../types\";\nimport { dedupePagesBy } from \"./get-curation-feed-infinite-query-options\";\n\nexport const CURATION_RECOMMENDATIONS_PAGE_SIZE = 25;\n\n/**\n * Open posts with at least one active recommendation (route 4), ordered by\n * unique recommenders (networks) or by first recommendation time.\n */\nexport function getCurationRecommendationsInfiniteQueryOptions(\n params: CurationRecommendationsParams = {}\n) {\n const sort = params.sort ?? \"unique\";\n const limit = params.limit ?? CURATION_RECOMMENDATIONS_PAGE_SIZE;\n const normalized: Record = { sort, limit: String(limit) };\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.curation.recommendations(normalized),\n initialPageParam: undefined as string | undefined,\n queryFn: ({ pageParam, signal }) =>\n fetchCurationRecommendationsPage({ sort, limit }, pageParam, signal),\n getNextPageParam: (lastPage: CurationRecommendationsPage): string | undefined => {\n if (!lastPage || lastPage.items.length < limit) {\n return undefined;\n }\n const last = lastPage.items[lastPage.items.length - 1];\n return last?._cursor ?? lastPage.next_cursor ?? undefined;\n },\n // Route 4 items carry no post_id; the author/permlink pair is the identity.\n select: (data) =>\n maskDmcaCurationPages(dedupePagesBy(data, (item) => `${item.author}/${item.permlink}`)),\n staleTime: 10_000,\n });\n}\n\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationPost } from \"../requests\";\n\nconst ACCOUNT_RE = /^[a-z0-9.-]{3,16}$/;\nconst PERMLINK_RE = /^[a-z0-9-]{1,255}$/;\n\n/**\n * One post's public desk row plus its recommenders (route 5). A viewer finds\n * their own recommendation state by their username in `recommenders`, so no\n * authed read exists. Memoized 15 s at the gateway, which is why a recommender's\n * own row is optimistic and polls this with backoff.\n */\nexport function getCurationPostQueryOptions(author: string, permlink: string) {\n const valid = ACCOUNT_RE.test(author) && PERMLINK_RE.test(permlink);\n\n return queryOptions({\n queryKey: QueryKeys.curation.post(author, permlink),\n queryFn: ({ signal }) => {\n // Guarded twice: `enabled` only gates automatic fetching, a prefetch\n // still runs the queryFn.\n if (!valid) {\n throw new Error(\"[SDK][Curation] invalid author or permlink\");\n }\n return fetchCurationPost(author, permlink, signal);\n },\n enabled: valid,\n staleTime: 15_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRecommenderStats } from \"../requests\";\n\nconst ACCOUNT_RE = /^[a-z0-9.-]{3,16}$/;\n\n/**\n * One recommender's 90-day scorecard (route 14): how many recommendations they\n * made, how many were curated, dismissed or withdrawn, the resulting precision\n * and whether they count as trusted. Public and memoized 60 s at the gateway,\n * so a popover that opens twice costs one request.\n *\n * The route answers zeros with a neutral precision for a name it has never\n * seen, so a missing scorecard is data rather than an error.\n */\nexport function getCurationRecommenderQueryOptions(username: string) {\n const valid = ACCOUNT_RE.test(username ?? \"\");\n\n return queryOptions({\n queryKey: QueryKeys.curation.recommender(username),\n queryFn: ({ signal }) => {\n // Guarded twice: `enabled` gates automatic fetching only, a prefetch\n // still runs this.\n if (!valid) {\n throw new Error(\"[SDK][Curation] invalid recommender username\");\n }\n return fetchCurationRecommenderStats(username, signal);\n },\n enabled: valid,\n staleTime: 60_000,\n });\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport {\n buildCurationRecommendOp,\n buildCurationUnrecommendOp,\n} from \"@/modules/operations/builders\";\nimport type { CurationReason } from \"../types\";\n\nexport interface CurationRecommendPayload {\n author: string;\n permlink: string;\n /** Defaults to \"quality\" on recommend; ignored on withdraw. */\n reason?: CurationReason;\n /** Broadcast the `unrecommend` op instead. */\n withdraw?: boolean;\n}\n\n/**\n * The broadcast result is not uniform across auth paths: the key path returns\n * `{tx_id, status}`, the HiveSigner token and Keychain extension paths return\n * `{id, block_num, ...}`; the redirect flows never resolve at all. This\n * gives the one shape the desk needs (a 40 hex char id) or null.\n */\nexport function normalizeBroadcastTrxId(result: unknown): string | null {\n if (!result || typeof result !== \"object\") return null;\n const r = result as { tx_id?: unknown; id?: unknown };\n const id = typeof r.tx_id === \"string\" ? r.tx_id : typeof r.id === \"string\" ? r.id : null;\n return id && /^[0-9a-f]{40}$/.test(id) ? id : null;\n}\n\n/**\n * Recommend a post to the curators (or withdraw a recommendation) with one\n * `custom_json` under posting authority. The desk indexes the op from the\n * chain; nothing is written to a desk route here. Platform wrappers send the\n * optional meta ping after success.\n */\nexport function useCurationRecommend(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n QueryKeys.curation.recommend(),\n username,\n (payload) => [\n payload.withdraw\n ? buildCurationUnrecommendOp(username!, payload.author, payload.permlink)\n : buildCurationRecommendOp(username!, payload.author, payload.permlink, payload.reason),\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.curation.post(variables.author, variables.permlink),\n [...QueryKeys.curation._recommendationsPrefix],\n ]);\n },\n auth,\n \"posting\",\n { broadcastMode }\n );\n}\n"]} \ No newline at end of file +{"version":3,"sources":["../../src/hive-tx/helpers/ByteBuffer.ts","../../src/hive-tx/config.ts","../../src/hive-tx/helpers/Signature.ts","../../src/hive-tx/helpers/PublicKey.ts","../../src/hive-tx/helpers/Asset.ts","../../src/hive-tx/helpers/HexBuffer.ts","../../src/hive-tx/helpers/serializer.ts","../../src/hive-tx/helpers/sleep.ts","../../src/hive-tx/helpers/call.ts","../../src/hive-tx/Transaction.ts","../../src/hive-tx/helpers/PrivateKey.ts","../../src/hive-tx/helpers/aes.ts","../../src/hive-tx/helpers/deserializer.ts","../../src/hive-tx/helpers/memo.ts","../../src/hive-tx/helpers/utils.ts","../../src/modules/core/hive-tx.ts","../../src/modules/core/errors/chain-errors.ts","../../src/modules/core/mutations/use-broadcast-mutation.ts","../../src/modules/core/mutations/broadcast-json.ts","../../src/modules/core/mutations/invalidate-after-broadcast.ts","../../src/modules/core/abort-signal.ts","../../src/modules/core/config.ts","../../src/modules/core/queries-manager.ts","../../src/modules/core/utils/decoder-encoder.ts","../../src/modules/core/utils/parse-asset.ts","../../src/modules/core/utils/get-bound-fetch.ts","../../src/modules/core/utils/is-community.ts","../../src/modules/core/utils/pagination-helpers.ts","../../src/modules/core/utils/vests-to-hp.ts","../../src/modules/core/utils/is-empty-date.ts","../../src/modules/core/queries/get-dynamic-props-query-options.ts","../../src/modules/core/queries/get-reward-fund-query-options.ts","../../src/modules/core/query-keys.ts","../../src/modules/core/utf8.ts","../../src/modules/ai/queries/get-ai-generate-price-query-options.ts","../../src/modules/ai/queries/get-ai-images-query-options.ts","../../src/modules/ai/queries/get-ai-assist-price-query-options.ts","../../src/modules/ai/queries/get-ai-transcribe-price-query-options.ts","../../src/modules/ai/mutations/use-generate-image.ts","../../src/modules/ai/mutations/use-ai-assist.ts","../../src/modules/ai/mutations/use-ai-transcribe.ts","../../src/modules/accounts/queries/get-account-full-query-options.ts","../../src/modules/accounts/utils/profile-metadata.ts","../../src/modules/accounts/utils/parse-accounts.ts","../../src/modules/accounts/utils/account-name-query.ts","../../src/modules/accounts/queries/get-accounts-query-options.ts","../../src/modules/accounts/queries/get-follow-count-query-options.ts","../../src/modules/accounts/queries/get-followers-query-options.ts","../../src/modules/accounts/queries/get-following-query-options.ts","../../src/modules/accounts/queries/get-muted-users-query-options.ts","../../src/modules/accounts/queries/lookup-accounts-query-options.ts","../../src/modules/accounts/queries/search-accounts-by-username-query-options.ts","../../src/modules/accounts/queries/check-username-wallets-pending-query-options.ts","../../src/modules/accounts/queries/get-relationship-between-accounts-query-options.ts","../../src/modules/accounts/queries/get-account-subscriptions-query-options.ts","../../src/modules/accounts/queries/get-bookmarks-query-options.ts","../../src/modules/accounts/queries/get-favorites-query-options.ts","../../src/modules/accounts/queries/check-favorite-query-options.ts","../../src/modules/accounts/queries/get-favorite-tags-query-options.ts","../../src/modules/accounts/utils/normalize-tag.ts","../../src/modules/accounts/queries/get-favorite-tag-check-query-options.ts","../../src/modules/accounts/queries/get-account-recoveries-query-options.ts","../../src/modules/accounts/queries/get-account-pending-recovery-query-options.ts","../../src/modules/accounts/queries/get-account-reputations-query-options.ts","../../src/modules/accounts/queries/get-transactions-infinite-query-options.ts","../../src/modules/accounts/queries/get-bots-query-options.ts","../../src/modules/accounts/queries/get-referrals-infinite-query-options.ts","../../src/modules/accounts/queries/get-referrals-stats-query-options.ts","../../src/modules/accounts/queries/get-friends-infinite-query-options.ts","../../src/modules/accounts/queries/get-search-friends-query-options.ts","../../src/modules/posts/queries/get-trending-tags-query-options.ts","../../src/modules/posts/queries/get-trending-tags-with-stats-query-options.ts","../../src/modules/posts/queries/get-fragments-query-options.ts","../../src/modules/posts/queries/get-promoted-posts-query-options.ts","../../src/modules/posts/queries/get-entry-active-votes-query-options.ts","../../src/modules/posts/queries/get-user-post-vote-query-options.ts","../../src/modules/posts/queries/get-content-query-options.ts","../../src/modules/posts/queries/get-content-replies-query-options.ts","../../src/modules/posts/queries/get-post-header-query-options.ts","../../src/modules/posts/utils/filter-dmca-entries.ts","../../src/modules/bridge/verify-on-alternate-node.ts","../../src/modules/posts/queries/get-post-query-options.ts","../../src/modules/bridge/requests.ts","../../src/modules/posts/queries/get-discussions-query-options.ts","../../src/modules/posts/queries/get-account-posts-query-options.ts","../../src/modules/posts/queries/get-posts-ranked-query-options.ts","../../src/modules/posts/queries/get-reblogs-query-options.ts","../../src/modules/posts/queries/get-reblogged-by-query-options.ts","../../src/modules/posts/queries/get-schedules-query-options.ts","../../src/modules/posts/queries/get-drafts-query-options.ts","../../src/modules/posts/queries/get-images-query-options.ts","../../src/modules/posts/queries/get-comment-history-query-options.ts","../../src/modules/posts/queries/get-deleted-entry-query-options.ts","../../src/modules/posts/queries/get-post-tips-query-options.ts","../../src/modules/posts/utils/waves-helpers.ts","../../src/modules/posts/queries/get-waves-feed-query-options.ts","../../src/modules/posts/queries/get-shorts-feed-query-options.ts","../../src/modules/posts/queries/get-waves-by-host-query-options.ts","../../src/modules/posts/queries/get-waves-by-tag-query-options.ts","../../src/modules/posts/queries/get-waves-following-query-options.ts","../../src/modules/posts/queries/get-waves-trending-tags-query-options.ts","../../src/modules/posts/queries/get-waves-by-account-query-options.ts","../../src/modules/posts/queries/get-waves-trending-authors-query-options.ts","../../src/modules/posts/queries/get-normalize-post-query-options.ts","../../src/modules/accounts/queries/get-account-vote-history-infinite-query-options.ts","../../src/modules/accounts/queries/get-profiles-query-options.ts","../../src/modules/accounts/queries/get-balance-history-query-options.ts","../../src/modules/accounts/queries/get-aggregated-balance-query-options.ts","../../src/modules/accounts/queries/get-pro-members-query-options.ts","../../src/modules/accounts/mutations/use-account-update.ts","../../src/modules/accounts/mutations/use-account-relations-update.ts","../../src/modules/operations/builders/content.ts","../../src/modules/operations/builders/wallet.ts","../../src/modules/operations/builders/social.ts","../../src/modules/operations/builders/governance.ts","../../src/modules/operations/builders/community.ts","../../src/modules/operations/builders/market.ts","../../src/modules/operations/builders/account.ts","../../src/modules/operations/builders/ecency.ts","../../src/modules/accounts/mutations/use-follow.ts","../../src/modules/accounts/mutations/use-unfollow.ts","../../src/modules/accounts/mutations/bookmarks/use-account-bookmark-add.ts","../../src/modules/accounts/mutations/bookmarks/use-account-bookmark-delete.ts","../../src/modules/accounts/mutations/favorites/use-account-favorite-add.ts","../../src/modules/accounts/mutations/favorites/use-account-favorite-delete.ts","../../src/modules/accounts/mutations/favorite-tags/requests.ts","../../src/modules/accounts/mutations/favorite-tags/use-favorite-tag-add.ts","../../src/modules/accounts/mutations/favorite-tags/use-favorite-tag-delete.ts","../../src/modules/accounts/mutations/use-account-update-key-auths.ts","../../src/modules/accounts/mutations/use-account-update-password.ts","../../src/modules/accounts/mutations/use-account-revoke-posting.ts","../../src/modules/accounts/mutations/use-account-update-recovery.ts","../../src/modules/accounts/mutations/build-revoke-keys-op.ts","../../src/modules/accounts/mutations/use-account-revoke-key.ts","../../src/modules/accounts/mutations/use-claim-account.ts","../../src/modules/accounts/mutations/use-grant-posting-permission.ts","../../src/modules/accounts/mutations/use-create-account.ts","../../src/modules/accounts/utils/account-power.ts","../../src/modules/operations/authority-map.ts","../../src/modules/operations/mutations/sign-operation-by-key.ts","../../src/modules/operations/mutations/sign-operation-by-keychain.ts","../../src/modules/operations/mutations/sign-operation-by-hivesigner.ts","../../src/modules/operations/queries/get-chain-properties-query-options.ts","../../src/modules/posts/utils/fragment-cache-helpers.ts","../../src/modules/posts/mutations/add-fragment.ts","../../src/modules/posts/mutations/edit-fragment.ts","../../src/modules/posts/mutations/remove-fragment.ts","../../src/modules/private-api/requests.ts","../../src/modules/posts/mutations/use-add-draft.ts","../../src/modules/posts/mutations/use-update-draft.ts","../../src/modules/posts/mutations/use-delete-draft.ts","../../src/modules/posts/mutations/use-add-schedule.ts","../../src/modules/posts/mutations/use-delete-schedule.ts","../../src/modules/posts/mutations/use-move-schedule.ts","../../src/modules/posts/mutations/use-add-image.ts","../../src/modules/posts/mutations/use-delete-image.ts","../../src/modules/posts/mutations/use-upload-image.ts","../../src/modules/posts/cache/entries-cache-management.ts","../../src/modules/posts/mutations/use-vote.ts","../../src/modules/posts/mutations/use-reblog.ts","../../src/modules/posts/mutations/use-comment.ts","../../src/modules/posts/cache/discussions-cache-utils.ts","../../src/modules/posts/mutations/use-delete-comment.ts","../../src/modules/posts/mutations/use-cross-post.ts","../../src/modules/posts/mutations/use-update-reply.ts","../../src/modules/posts/mutations/use-promote.ts","../../src/modules/posts/utils/validate-post-creating.ts","../../src/modules/analytics/mutations/index.ts","../../src/modules/analytics/mutations/use-record-activity.ts","../../src/modules/analytics/queries/get-discover-leaderboard-query-options.ts","../../src/modules/analytics/queries/get-discover-curation-query-options.ts","../../src/modules/analytics/queries/get-page-stats-query-options.ts","../../src/modules/integrations/3speak/functions/beneficiary.ts","../../src/modules/integrations/3speak/queries/index.ts","../../src/modules/integrations/hivesigner/queries/index.ts","../../src/modules/integrations/hivesigner/queries/get-decode-memo-query-options.ts","../../src/modules/integrations/hivesigner/index.ts","../../src/modules/integrations/3speak/queries/get-account-token-query-options.ts","../../src/modules/integrations/3speak/queries/get-account-videos-query-options.ts","../../src/modules/integrations/3speak/index.ts","../../src/modules/integrations/hiveposh/queries/get-hiveposh-links-query-options.ts","../../src/modules/integrations/plausible/queries/get-stats-query-options.ts","../../src/modules/resource-credits/queries/get-rc-stats-query-options.ts","../../src/modules/resource-credits/queries/get-account-rc-query-options.ts","../../src/modules/resource-credits/queries/get-rc-resource-params-query-options.ts","../../src/modules/resource-credits/types/resource-params.ts","../../src/modules/resource-credits/utils/estimate-comment-rc-cost.ts","../../src/modules/resource-credits/utils/price-rc-usage.ts","../../src/modules/resource-credits/utils/count-operation-usage.ts","../../src/modules/resource-credits/utils/estimate-rc-precheck.ts","../../src/modules/games/queries/game-status-check-query-options.ts","../../src/modules/games/mutations/game-claim.ts","../../src/modules/quests/queries/get-quests-query-options.ts","../../src/modules/quests/catalog.ts","../../src/modules/quests/mutations/buy-streak-freeze.ts","../../src/modules/communities/mutations/use-subscribe-community.ts","../../src/modules/communities/mutations/use-unsubscribe-community.ts","../../src/modules/communities/mutations/use-mute-post.ts","../../src/modules/communities/mutations/use-set-community-role.ts","../../src/modules/communities/mutations/use-update-community.ts","../../src/modules/communities/mutations/use-register-community-rewards.ts","../../src/modules/communities/mutations/use-pin-post.ts","../../src/modules/communities/queries/get-communities-query-options.ts","../../src/modules/communities/queries/get-community-context-query-options.ts","../../src/modules/communities/queries/get-community-query-options.ts","../../src/modules/communities/queries/get-community-subscribers-query-options.ts","../../src/modules/communities/queries/get-account-notifications-infinite-query-options.ts","../../src/modules/communities/queries/get-rewarded-communities-query-options.ts","../../src/modules/communities/types/community.ts","../../src/modules/communities/utils/index.ts","../../src/modules/notifications/queries/get-notifications-unread-count-query-options.ts","../../src/modules/notifications/queries/get-notifications-infinite-query-options.ts","../../src/modules/notifications/enums/notification-filter.ts","../../src/modules/notifications/enums/notify-types.ts","../../src/modules/notifications/queries/get-notifications-settings-query-options.ts","../../src/modules/notifications/queries/get-announcements-query-options.ts","../../src/modules/notifications/queries/get-spotlights-query-options.ts","../../src/modules/notifications/mutations/use-mark-notifications-read.ts","../../src/modules/notifications/mutations/use-set-last-read.ts","../../src/modules/proposals/queries/get-proposal-query-options.ts","../../src/modules/proposals/queries/get-proposals-query-options.ts","../../src/modules/proposals/queries/get-proposal-votes-query-options.ts","../../src/modules/proposals/queries/get-user-proposal-votes-query-options.ts","../../src/modules/proposals/mutations/use-proposal-vote.ts","../../src/modules/proposals/mutations/use-proposal-create.ts","../../src/modules/wallet/queries/get-vesting-delegations-query-options.ts","../../src/modules/wallet/queries/get-account-delegations-query-options.ts","../../src/modules/wallet/queries/get-vesting-delegation-expirations-query-options.ts","../../src/modules/wallet/queries/get-conversion-requests-query-options.ts","../../src/modules/wallet/queries/get-collateralized-conversion-requests-query-options.ts","../../src/modules/wallet/queries/get-savings-withdraw-from-query-options.ts","../../src/modules/wallet/queries/get-withdraw-routes-query-options.ts","../../src/modules/wallet/queries/get-open-orders-query-options.ts","../../src/modules/wallet/queries/get-outgoing-rc-delegations-infinite-query-options.ts","../../src/modules/wallet/queries/get-incoming-rc-query-options.ts","../../src/modules/wallet/utils/received-vesting-shares.ts","../../src/modules/wallet/queries/get-received-vesting-shares-query-options.ts","../../src/modules/wallet/queries/get-recurrent-transfers-query-options.ts","../../src/modules/wallet/queries/get-portfolio-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-general-info-query-options.ts","../../src/modules/wallet/queries/get-hbd-asset-general-info-query-options.ts","../../src/modules/wallet/queries/get-hive-power-asset-general-info-query-options.ts","../../src/modules/wallet/consts/hive-account-operation-groups.ts","../../src/modules/wallet/consts/hive-operation-list.ts","../../src/modules/wallet/consts/hive-operation-orders.ts","../../src/modules/wallet/queries/get-hive-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hbd-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hive-power-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-metric-query-options.ts","../../src/modules/wallet/queries/get-hive-asset-withdrawal-routes-query-options.ts","../../src/modules/wallet/queries/get-hive-power-delegates-query-options.ts","../../src/modules/wallet/queries/get-hive-power-delegatings-query-options.ts","../../src/modules/market/queries/get-order-book-query-options.ts","../../src/modules/market/queries/get-market-statistics-query-options.ts","../../src/modules/market/queries/get-market-history-query-options.ts","../../src/modules/market/queries/get-hive-hbd-stats-query-options.ts","../../src/modules/market/queries/get-market-data-query-options.ts","../../src/modules/market/queries/get-trade-history-query-options.ts","../../src/modules/market/queries/get-feed-history-query-options.ts","../../src/modules/market/queries/get-current-median-history-price-query-options.ts","../../src/modules/market/mutations/use-limit-order-create.ts","../../src/modules/market/mutations/use-limit-order-cancel.ts","../../src/modules/market/requests.ts","../../src/modules/hive-engine/requests.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-balances-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-market-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-tokens-metadata-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-transactions-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-metrics-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-unclaimed-rewards-query-options.ts","../../src/modules/hive-engine/queries/get-all-hive-engine-tokens-query-options.ts","../../src/modules/hive-engine/utils/formatted-number.ts","../../src/modules/hive-engine/utils/hive-engine-token.ts","../../src/modules/hive-engine/queries/get-hive-engine-balances-with-usd-query-options.ts","../../src/modules/hive-engine/queries/get-hive-engine-token-general-info-query-options.ts","../../src/modules/points/queries/get-points-query-options.ts","../../src/modules/points/queries/get-points-asset-general-info-query-options.ts","../../src/modules/points/queries/get-points-asset-transactions-query-options.ts","../../src/modules/wallet/queries/get-account-wallet-asset-info-query-options.ts","../../src/modules/wallet/types/asset-operation.ts","../../src/modules/wallet/mutations/use-transfer.ts","../../src/modules/wallet/mutations/use-transfer-point.ts","../../src/modules/wallet/mutations/use-delegate-vesting-shares.ts","../../src/modules/wallet/mutations/use-set-withdraw-vesting-route.ts","../../src/modules/wallet/mutations/use-transfer-engine-token.ts","../../src/modules/wallet/mutations/use-transfer-to-savings.ts","../../src/modules/wallet/mutations/use-transfer-from-savings.ts","../../src/modules/wallet/mutations/use-transfer-to-vesting.ts","../../src/modules/wallet/mutations/use-withdraw-vesting.ts","../../src/modules/wallet/mutations/use-convert.ts","../../src/modules/wallet/mutations/use-claim-interest.ts","../../src/modules/wallet/mutations/use-claim-rewards.ts","../../src/modules/wallet/mutations/use-delegate-engine-token.ts","../../src/modules/wallet/mutations/use-undelegate-engine-token.ts","../../src/modules/wallet/mutations/use-stake-engine-token.ts","../../src/modules/wallet/mutations/use-unstake-engine-token.ts","../../src/modules/wallet/mutations/use-claim-engine-rewards.ts","../../src/modules/wallet/mutations/use-engine-market-order.ts","../../src/modules/wallet/mutations/use-wallet-operation.ts","../../src/modules/wallet/mutations/use-delegate-rc.ts","../../src/modules/witnesses/mutations/use-witness-vote.ts","../../src/modules/witnesses/mutations/use-witness-proxy.ts","../../src/modules/witnesses/queries/get-witnesses-query-options.ts","../../src/modules/points/types/point-transaction-type.ts","../../src/modules/points/mutations/use-claim-points.ts","../../src/modules/search/query-builder.ts","../../src/modules/search/parse-json-response.ts","../../src/modules/search/retry-policy.ts","../../src/modules/search/queries/get-search-query-options.ts","../../src/modules/search/requests.ts","../../src/modules/search/queries/get-similar-entries-query-options.ts","../../src/modules/search/queries/get-search-account-query-options.ts","../../src/modules/search/queries/get-search-topics-query-options.ts","../../src/modules/search/queries/get-search-api-infinite-query-options.ts","../../src/modules/search/queries/get-search-path-query-options.ts","../../src/modules/support/queries/get-support-settings-query-options.ts","../../src/modules/support/mutations/update-support-settings.ts","../../src/modules/promotions/queries/get-boost-plus-prices-query-options.ts","../../src/modules/promotions/queries/get-rc-delegation-prices-query-options.ts","../../src/modules/promotions/queries/get-rc-delegation-active-query-options.ts","../../src/modules/promotions/queries/get-promote-price-query-options.ts","../../src/modules/promotions/queries/get-boost-plus-account-prices-query-options.ts","../../src/modules/promotions/mutations/use-boost-plus.ts","../../src/modules/promotions/mutations/use-rc-delegation.ts","../../src/modules/auth/requests.ts","../../src/modules/bad-actors/queries/get-bad-actors-query-options.ts","../../src/modules/polls/types/poll.ts","../../src/modules/polls/queries/get-poll-query-options.ts","../../src/modules/polls/mutations/use-poll-vote.ts","../../src/modules/moderation/constants.ts","../../src/modules/moderation/account-reputation.ts","../../src/modules/moderation/external-links.ts","../../src/modules/moderation/content-moderation.ts","../../src/modules/newsletter/errors.ts","../../src/modules/newsletter/api.ts","../../src/modules/newsletter/queries/get-digest-subscriptions-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-sender-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-issues-query-options.ts","../../src/modules/newsletter/queries/get-newsletter-posts-query-options.ts","../../src/modules/newsletter/mutations/use-subscribe-digest.ts","../../src/modules/newsletter/mutations/use-leave-digest.ts","../../src/modules/newsletter/mutations/use-unsubscribe-all-digests.ts","../../src/modules/newsletter/mutations/use-send-newsletter-issue.ts","../../src/modules/curation/types.ts","../../src/modules/curation/flags.ts","../../src/modules/curation/dmca.ts","../../src/modules/curation/requests.ts","../../src/modules/curation/queries/get-curation-feed-infinite-query-options.ts","../../src/modules/curation/queries/get-curation-status-query-options.ts","../../src/modules/curation/queries/get-curation-roster-query-options.ts","../../src/modules/curation/queries/get-curation-roster-admin-query-options.ts","../../src/modules/curation/queries/get-curation-recommendations-infinite-query-options.ts","../../src/modules/curation/queries/get-curation-post-query-options.ts","../../src/modules/curation/queries/get-curation-recommender-query-options.ts","../../src/modules/curation/mutations/use-curation-recommend.ts"],"names":["EMPTY_BUFFER","_encoder","_decoder","getEncoder","s","utf8","i","c","next","getDecoder","b","bytes","result","byte","codePoint","ByteBuffer","_ByteBuffer","capacity","littleEndian","buffers","buf","bb","view","offset","buffer","source","value","relative","src","copy","begin","end","target","targetOffset","sourceOffset","sourceLimit","targetRelative","len","current","length","forceCopy","limit","size","str","currentOffset","encoded","lenVarintSize","start","lenResult","lenValue","lenLength","config","DEFAULT_SERVER_RPC_PROXY_METHODS","serverRpcProxy","setServerRpcProxy","opts","url","headers","k","v","timeoutMs","methods","m","pos","fallback","sanitizeNodeList","nodes","n","setNodes","validNodes","setRestNodes","valid","setRestNodesByApi","map","api","list","setUserAgent","ua","setResilience","r","bool","Signature","_Signature","data","recovery","compressed","string","temp","hexToBytes","bytesToHex","message","sig","secp256k1","PublicKey","_PublicKey","key","prefix","wif","expectedPrefix","bs58","checksum","expectedChecksum","ripemd160","isUint8ArrayEqual","signature","encodePublic","a","Asset","_Asset","amount","symbol","expectedSymbol","amountString","HexBuffer","_HexBuffer","OPERATION_IDS","VoidSerializer","StringSerializer","Int16Serializer","Int64Serializer","UInt8Serializer","UInt16Serializer","UInt32Serializer","UInt64Serializer","BooleanSerializer","StaticVariantSerializer","itemSerializers","id","item","AssetSerializer","asset","precision","DateSerializer","PublicKeySerializer","BinarySerializer","VariableBinarySerializer","FlatMapSerializer","keySerializer","valueSerializer","ArraySerializer","itemSerializer","ObjectSerializer","keySerializers","serializer","error","OptionalSerializer","AuthoritySerializer","BeneficiarySerializer","PriceSerializer","ChainPropertiesSerializer","OperationDataSerializer","operationId","definitions","objectSerializer","OperationSerializers","ProposalUpdateSerializer","OperationSerializer","operation","TransactionSerializer","EncryptedMemoSerializer","Serializer","sleep","ms","resolve","isNodeRuntime","serverIdentityHeaders","rpcProxyStats","ProxyMiss","reason","errorMessage","proxyConsecutiveMisses","proxyOpenUntil","proxyRpcCall","proxy","method","params","callerTimeoutMs","externalSignal","validate","dot","tSignal","cleanupTimeout","createTimeoutSignal","signal","cleanupMerge","mergeSignals","res","e","relayed","RPCError","rpcError","NodeError","node","parseRetryAfterMs","header","secs","dateMs","delta","PRE_CONNECTION_ERRORS","BROWSER_NETWORK_ERRORS","flattenErrorText","parts","cause","depth","isBroadcastSafeToRetry","text","code","msg","isNodeLevelRPCError","apiOf","RATE_LIMIT_BASE_MS","RATE_LIMIT_MAX_MS","RATE_LIMIT_STREAK_RESET_MS","MAX_API_FAILURES_BEFORE_COOLDOWN","API_COOLDOWN_MS","HEAD_BLOCK_MAX_AGE_MS","STALE_BLOCK_THRESHOLD","LATENCY_EWMA_ALPHA","LATENCY_MIN_SAMPLES","LATENCY_MAX_AGE_MS","LATENCY_REPROBE_MS","LATENCY_UNPROVEN_PRIOR_MS","LATENCY_SLOW_FAILURE_MS","NodeHealthTracker","h","durationMs","profileKey","apiFail","now","p","elapsedMs","existing","retryAfterMs","hasHeader","cooldown","blockNum","recent","best","healthy","unhealthy","ordered","d","probe","threshold","cand","candTouch","touch","rpcHealthTracker","restHealthTracker","HedgeBudget","tokens","rpcHedgeBudget","adaptiveAttemptTimeout","tracker","callerTimeout","explicit","ewma","recordError","tryRecordHeadBlock","block","createTimeoutReason","err","controller","timer","primary","secondary","onPrimaryAbort","onSecondaryAbort","cleanup","jsonRPCCall","timeout","shouldRetry","body","jitterDelay","hedgedRpcAttempt","hedgePool","explicitTimeout","deadlineAt","onHedgeFired","reject","done","pendingLegs","hedgeFired","primarySettled","lastError","hedgeTimer","primaryStart","controllers","finish","settle","startLeg","isHedge","merged","legTimeout","primaryWindow","delay","live","callRPC","retry","ceiling","served","deadline","triedInRound","attempt","orderedNodes","callStart","callRPCBroadcast","triedNodes","apiMethods","callREST","endpoint","restProfileKey","apiNodes","alreadyRecorded","baseUrl","path","paramObj","processedPathParams","restSignal","restCleanup","restCallStart","response","callWithQuorum","quorum","allNodes","arr","j","currentBatchSize","allResults","batchNodes","promises","batchResults","consensusResult","findConsensus","results","resultGroups","consensusGroup","group","chainId","Transaction","_Transaction","options","operationName","operationBody","keys","digest","txId","checkStatus","maxPollAttempts","status","transactionData","sha256","expiration","props","refBlockPrefix","expirationIso","NETWORK_ID","PrivateKey","_PrivateKey","decodePrivate","seed","username","password","role","rv","encodePrivate","publicKey","sha512","doubleSha256","input","encodedKey","checksumVerify","encrypt","privateKey","nonce","uniqueNonce","crypt","decrypt","nonceL","S","ebuf","encryptionKey","iv","tag","check","cbuf","check32","cryptoJsDecrypt","cryptoJsEncrypt","messageBuffer","AESCBC","uniqueNonceEntropy","randomPrivateKey","long","entropy","PublicKeyDeserializer","fixedBuf","UInt64Deserializer","UInt32Deserializer","BinaryDeserializer","bCopy","BufferDeserializer","keyDeserializers","obj","deserializer","EncryptedMemoDeserializer","Deserializer","encode","memo","testNonce","checkEncryption","toPrivateObj","toPublicObj","mbuf","memoBuffer","mbuf2","decode","from","to","encrypted","otherpub","encodeTest","plaintext","cyphertext","o","Memo","utils_exports","__export","buildWitnessSetProperties","makeBitMaskFilter","operations","validateUsername","suffix","ref","label","allowedOperations","reduceFunction","low","high","allowedOperation","owner","type","serialize","nobleSha256","isWif","broadcastOperations","ops","tx","op","broadcastOperationsAsync","MANA_REGENERATION_SECONDS","calculateManabar","maxMana","manabar","currentMana","percentage","getVests","account","vests","delegated","received","withdrawRate","alreadyWithdrawn","withdrawVests","calculateVPMana","calculateRCMana","rcAccount","ErrorType","parseChainError","errorDescription","errorCode","errorString","testPattern","pattern","formatError","parsed","shouldTriggerAuthFallback","isResourceCreditsError","isInfoError","isNetworkError","broadcastWithMethod","auth","authority","fetchedKey","fetchedToken","broadcastMode","adapter","token","hs","tokenError","broadcastWithFallback","loginType","hasPostingAuth","selectedMethod","hsError","chain","errors","shouldSkip","skipReason","prefetchedKey","prefetchedToken","skipReasons","errorMessages","useBroadcastMutation","mutationKey","onSuccess","useMutation","payload","postingKey","accessToken","broadcastJson","jjson","BROADCAST_INCLUSION_DELAY_MS","invalidateAfterBroadcast","withTimeoutSignal","timeoutSignal","ac","onAbort","isDevelopment","getHeliusApiKey","INTERNAL_API_TIMEOUT_MS","SERVER_GC_TIME_MS","queryClientResolver","fallbackQueryClient","resolveQueryClient","QueryClient","CONFIG","client","ConfigManager","setQueryClient","setQueryClientResolver","setPrivateApiHost","host","setNewsletterHost","setClientId","clientId","setDefaultObserver","observer","getValidatedBaseUrl","setPollsApiHost","setImageHost","setHiveNodes","userAgent","getServerRpcProxyStats","analyzeRedosRisk","unboundedRange","match","min","max","testRegexPerformance","regex","adversarialInputs","maxExecutionTime","duration","safeCompileRegex","maxLength","staticAnalysis","compileErr","runtimeTest","setDmcaLists","lists","coerceList","resolved","rejectedTagCount","makeQueryClient","getQueryClient","EcencyQueriesManager","getQueryData","queryKey","getInfiniteQueryData","prefetchQuery","prefetchInfiniteQuery","generateClientServerQuery","useQuery","generateClientServerInfiniteQuery","useInfiniteQuery","encodeObj","decodeObj","dataToParse","Symbol","NaiMap","parseAsset","sval","sp","cachedFetch","getBoundFetch","isCommunity","isWrappedResponse","normalizeToWrappedResponse","vestsToHp","hivePerMVests","isEmptyDate","DYNAMIC_PROPS_REFRESH_MS","getDynamicPropsQueryOptions","queryOptions","QueryKeys","rawGlobalDynamic","rawFeedHistory","rawChainProps","rawRewardFund","rawHardforkProps","totalVestingSharesAmount","totalVestingFundAmount","base","quote","fundRecentClaims","fundRewardBalance","votePowerReserveRate","authorRewardCurve","contentConstant","currentHardforkVersion","lastHardfork","hbdPrintRate","hbdInterestRate","headBlock","totalVestingFund","totalVestingShares","virtualSupply","vestingRewardPercent","accountCreationFee","getRewardFundQueryOptions","fundName","entryPath","author","permlink","filter","startAuthor","startPermlink","activeUsername","sort","order","onlyMeta","hours","usernames","following","mode","followType","query","follower","startFollowing","startFollower","excludeList","accounts","targetUsername","reference","name","communityName","proposalId","voter","q","hideLow","since","scrollId","votes","what","content","includeNsfw","witness","page","pageSize","direction","user","coinType","granularity","onlyEnabled","currency","filterKey","bucketSeconds","seconds","startDate","endDate","coin","vsCurrency","fromTs","toTs","dimensions","metrics","dateRange","gameType","utf8ByteLength","varintByteLength","count","remaining","getAiGeneratePriceQueryOptions","getAiImagesQueryOptions","getAiAssistPriceQueryOptions","getAiTranscribePriceQueryOptions","makeIdempotencyKey","invalidateGenerateImageCaches","useGenerateImage","pendingData","useAiAssist","useAiTranscribe","form","isMetadataStripped","hasProfileValues","profile","getAccountFullQueryOptions","bridgeProfile","rows","chainAccount","reread","parseProfileMetadata","stats","follow_stats","reputationValue","DENIED_KEYS","isPlainObject","proto","deepMerge","srcVal","tgtVal","sanitizeTokens","meta","rest","safeMeta","postingJsonMetadata","extractAccountProfile","pickRicherMetadataSnapshot","preferred","preferredKeys","parsePostingMetadataRoot","buildPostingJsonMetadata","existingPostingJsonMetadata","root","existingProfile","mergedProfile","buildProfileMetadata","profileTokens","_ignoredVersion","profileRest","metadata","parseAccounts","rawAccounts","x","jsonMetadata","accountNameByteLength","isQueryableAccountName","getAccountsQueryOptions","queryable","getFollowCountQueryOptions","getFollowersQueryOptions","getFollowingQueryOptions","MUTED_USERS_PAGE_SIZE","MUTED_USERS_MAX_PAGES","getMutedUsersQueryOptions","muted","names","lookupAccountsQueryOptions","getSearchAccountsByUsernameQueryOptions","RESERVED_META_KEYS","checkUsernameWalletsPendingQueryOptions","wallets","walletItem","sanitizedMeta","address","showFlag","baseCandidate","metaTokenCandidates","metaSymbol","metaValue","getRelationshipBetweenAccountsQueryOptions","getAccountSubscriptionsQueryOptions","getBookmarksQueryOptions","getBookmarksInfiniteQueryOptions","infiniteQueryOptions","pageParam","json","lastPage","getFavoritesQueryOptions","getFavoritesInfiniteQueryOptions","checkFavoriteQueryOptions","getFavoriteTagsQueryOptions","getFavoriteTagsInfiniteQueryOptions","TAG_PATTERN","COMMUNITY_PATTERN","normalizeTag","raw","getFavoriteTagCheckQueryOptions","normalized","getAccountRecoveriesQueryOptions","getAccountPendingRecoveryQueryOptions","getAccountReputationsQueryOptions","ACCOUNT_OPERATION_GROUPS","ALL_ACCOUNT_OPERATIONS","deriveNum","entry","normalizeOpType","restType","isNaiAsset","naiToString","normalizeOpValue","getTransactionsInfiniteQueryOptions","operationTypes","fetchPage","toEntries","entries","currentPage","chained","nextPage","getBotsQueryOptions","getReferralsInfiniteQueryOptions","maxId","nextMaxId","getReferralsStatsQueryOptions","getFriendsInfiniteQueryOptions","enabled","accountNames","SEARCH_LIMIT","getSearchFriendsQueryOptions","getTrendingTagsQueryOptions","afterTag","tags","getTrendingTagsWithStatsQueryOptions","getFragmentsQueryOptions","getFragmentsInfiniteQueryOptions","getPromotedPostsQuery","getEntryActiveVotesQueryOptions","getUserPostVoteQueryOptions","getContentQueryOptions","getContentRepliesQueryOptions","getPostHeaderQueryOptions","filterDmcaEntry","entryOrEntries","applyFilter","verifyPostOnAlternateNode","getPostQueryOptions","num","cleanPermlink","verified","verifiedEntry","bridgeApiCall","resolvePost","post","resp","getPost","resolvePosts","posts","validatedPosts","validateEntry","getPostsRanked","start_author","start_permlink","getAccountPosts","newEntry","requiredStringProps","prop","validatedEntry","getPostHeader","getDiscussion","validatedResp","getCommunity","getCommunities","last","normalizePost","getSubscriptions","getSubscribers","community","getRelationshipBetweenAccounts","getProfiles","SortOrder","sortDiscussions","discussion","allPayout","absNegative","isPinned","sortOrders","_a","_b","keyA","keyB","sorted","pinnedIndex","pinned","getDiscussionsQueryOptions","resolvedObserver","oldData","newData","optimisticEntries","fetchedPermlinks","missingOptimistic","opt","getDiscussionQueryOptions","getAccountPostsInfiniteQueryOptions","hasNextPage","getAccountPostsQueryOptions","displaySelects","displaySelect","select","orderForDisplay","byCreated","getPostsRankedInfiniteQueryOptions","_options","sanitizedTag","getPostsRankedQueryOptions","getReblogsQueryOptions","getRebloggedByQueryOptions","getSchedulesQueryOptions","getSchedulesInfiniteQueryOptions","getDraftsQueryOptions","getDraftsInfiniteQueryOptions","fetchUserImages","getImagesQueryOptions","getGalleryImagesQueryOptions","getImagesInfiniteQueryOptions","getCommentHistoryQueryOptions","makeEntryPath","cleanAuthor","normalizedAuthor","normalizedPermlink","getDeletedEntryQueryOptions","isValid","history","title","getPostTipsQueryOptions","isEnabled","normalizeContainer","normalizeParent","normalizeWaveEntryFromApi","containerSource","container","parent","toEntryArray","getVisibleFirstLevelThreadItems","discussionItemsRaw","discussionItems","firstLevelItems","parent_author","parent_permlink","mapThreadItemsToWaveEntries","items","DEFAULT_FEED_LIMIT","normalizeParams","fetchWavesFeedPage","containers","cursor","row","getWavesFeedQueryOptions","getWavesLatestFeedQueryOptions","fetchShortsFeedPage","getShortsFeedQueryOptions","THREAD_CONTAINER_BATCH_SIZE","MAX_CONTAINERS_TO_SCAN","getThreads","scannedContainers","skipContainerId","rpcParams","normalizedContainers","visibleItems","lastContainer","getWavesByHostQueryOptions","DEFAULT_TAG_FEED_LIMIT","getWavesByTagQueryOptions","getWavesFollowingQueryOptions","normalizedUsername","flattened","getWavesTrendingTagsQueryOptions","getWavesByAccountQueryOptions","getWavesTrendingAuthorsQueryOptions","getNormalizePostQueryOptions","isEntry","getDays","createdDate","past","getAccountVoteHistoryInfiniteQueryOptions","filters","dayLimit","historyObj","filtered","firstHistory","getProfilesQueryOptions","getBalanceHistoryInfiniteQueryOptions","getAggregatedBalanceQueryOptions","getProMembersQueryOptions","proMembersSet","members","useAccountUpdate","queryClient","useQueryClient","_data","variables","useAccountRelationsUpdate","onError","kind","relationsQuery","actualRelation","buildVoteOp","weight","buildCommentOp","parentAuthor","parentPermlink","missing","buildCommentOptionsOp","maxAcceptedPayout","percentHbd","allowVotes","allowCurationRewards","extensions","buildDeleteCommentOp","buildReblogOp","deleteReblog","buildTransferOp","buildMultiTransferOps","destinations","dest","buildRecurrentTransferOp","recurrence","executions","buildTransferToSavingsOp","buildTransferFromSavingsOp","requestId","buildCancelTransferFromSavingsOp","buildClaimInterestOps","buildTransferToVestingOp","buildWithdrawVestingOp","vestingShares","buildDelegateVestingSharesOp","delegator","delegatee","buildSetWithdrawVestingRouteOp","fromAccount","toAccount","percent","autoVest","buildConvertOp","buildCollateralizedConvertOp","buildEngineOp","contractAction","contractPayload","contractName","buildEngineClaimOp","buildDelegateRcOp","delegatees","maxRc","delegateeArray","buildFollowOp","buildUnfollowOp","buildIgnoreOp","buildUnignoreOp","buildSetLastReadOps","date","lastReadDate","notifyOp","ecencyNotifyOp","buildWitnessVoteOp","approve","buildWitnessProxyOp","buildProposalCreateOp","creator","buildProposalVoteOp","proposalIds","buildRemoveProposalOp","proposalOwner","buildUpdateProposalOp","dailyPay","subject","buildSubscribeOp","buildUnsubscribeOp","buildSetRoleOp","buildUpdateCommunityOp","buildPinPostOp","pin","buildMutePostOp","notes","mute","buildMuteUserOp","buildFlagPostOp","BuySellTransactionType","OrderIdPrefix","buildLimitOrderCreateOp","amountToSell","minToReceive","fillOrKill","orderId","formatNumber","decimals","buildLimitOrderCreateOpWithType","orderType","idPrefix","expirationStr","formattedAmountToSell","formattedMinToReceive","buildLimitOrderCancelOp","buildClaimRewardBalanceOp","rewardHive","rewardHbd","rewardVests","buildAccountUpdateOp","active","posting","memoKey","buildAccountUpdate2Op","buildAccountCreateOp","newAccountName","fee","buildCreateClaimedAccountOp","buildClaimAccountOp","buildGrantPostingPermissionOp","currentPosting","grantedAccount","weightThreshold","existingIndex","acc","newAccountAuths","newPosting","buildRevokePostingPermissionOp","revokedAccount","buildChangeRecoveryAccountOp","accountToRecover","newRecoveryAccount","buildRequestAccountRecoveryOp","recoveryAccount","newOwnerAuthority","buildRecoverAccountOp","recentOwnerAuthority","buildBoostPlusOp","buildRcDelegationOp","buildPromoteOp","CURATION_REASONS","buildCurationRecommendOp","recommender","buildCurationUnrecommendOp","buildPointTransferOp","sender","receiver","normalizedAmount","buildMultiPointTransferOps","destArray","buildCommunityRegistrationOp","buildActiveCustomJsonOp","buildPostingCustomJsonOp","useFollow","_result","useUnfollow","useBookmarkAdd","useBookmarkDelete","bookmarkId","useAccountFavoriteAdd","qc","useAccountFavoriteDelete","listKey","infinitePrefix","checkKey","previousList","f","previousCheck","infiniteQueries","previousInfinite","context","favoriteTagRequest","route","addFavoriteTagRequest","deleteFavoriteTagRequest","useFavoriteTagAdd","favoriteTagDeleteMutationOptions","invalidateAll","_tag","useFavoriteTagDelete","dedupeAndSortKeyAuths","additions","useAccountUpdateKeyAuths","accountData","keepCurrent","currentKey","keysToRevoke","keysToRevokeByAuthority","prepareAuth","keyName","allKeysToRevoke","existingKeys","values","useAccountUpdatePassword","updateKeys","newPassword","currentPassword","useAccountRevokePosting","accountName","ctx","useAccountUpdateRecovery","email","canRevokeFromAuthority","revokingKeyStrs","remainingWeight","sum","accountWeight","buildRevokeKeysOp","revokingKeys","hasAnyKeyInAuth","clone","needsOwnerUpdate","useAccountRevokeKey","revokingKey","useClaimAccount","useGrantPostingPermission","useCreateAccount","HIVE_VOTING_MANA_REGENERATION_SECONDS","HIVE_100_PERCENT","HIVE_VOTE_DUST_THRESHOLD","getEffectiveVests","vesting","vestsToRshares","votingPowerValue","votePerc","hasStableVoteHardfork","dynamicProps","major","minor","stableVoteRshares","reserveRate","effectiveVests","usedMana","mana","votingRshares","totalVests","votingPower","powerRechargeTime","power","downVotingPower","totalShares","elapsed","currentManaPerc","rewardsToStakeRatio","curation","rewards","ownVests","rcPower","votingValue","rShares","OPERATION_AUTHORITY_MAP","getCustomJsonAuthority","customJsonOp","opType","customJson","getProposalAuthority","proposalOp","getOperationAuthority","getRequiredAuthority","highestAuthority","useSignOperationByKey","keyOrSeed","useSignOperationByKeychain","keyType","useSignOperationByHivesigner","callbackUri","getChainPropertiesQueryOptions","applyFragmentUpdate","vars","buildAddedFragment","useAddFragment","newFragment","index","useEditFragment","fragmentId","applyUpdate","fragment","useRemoveFragment","parseJsonResponse","errorData","signUp","referral","captchaToken","subscribeEmail","usrActivity","ty","bl","getNotifications","saveNotificationSetting","system","allows_notify","notify_types","getNotificationSetting","markNotifications","addImage","UPLOAD_HOST","uploadImage","file","fetchApi","formData","uploadImageWithSignature","deleteImage","imageId","addDraft","updateDraft","draftId","deleteDraft","addSchedule","schedule","reblog","deleteSchedule","moveSchedule","getPromotedPost","onboardEmail","friend","dataBody","useAddDraft","useUpdateDraft","useDeleteDraft","_variables","useAddSchedule","useDeleteSchedule","useMoveSchedule","useAddImage","nextCode","effectiveCode","useDeleteImage","prev","img","useUploadImage","getEntryFromCache","setEntryInCache","mutateEntry","updater","updated","EntriesCacheManagement","updateVotes","payout","updateReblogsCount","updateRepliesCount","addReply","reply","updateEntries","invalidateEntry","getEntry","isVoteAlreadyReflected","activeVotes","hasVoterRecord","applyVoteCacheUpdate","newVotes","newPayout","useVote","doInvalidate","useReblog","newCount","invalidate","resolveContentActivityType","useComment","beneficiaries","sortedBeneficiaries","isPost","activityType","queriesToInvalidate","discussionsAuthor","discussionsPermlink","addOptimisticDiscussionEntry","rootAuthor","rootPermlink","queries","removeOptimisticDiscussionEntry","snapshots","restoreDiscussionSnapshots","updateEntryInCache","updates","previous","restoreEntryInCache","useDeleteComment","_error","useCrossPost","useUpdateReply","usePromote","DEFAULT_VALIDATE_POST_DELAYS","getContent","validatePostCreating","attempts","delays","waitMs","mutations_exports","useRecordActivity","getLocationInfo","locationInfo","domain","getDiscoverLeaderboardQueryOptions","getDiscoverCurationQueryOptions","accountsResponse","element","curator","receivedVestingShares","delegatedVestingShares","vestingWithdrawRate","effectiveVest","getPageStatsQueryOptions","sortedDimensions","sortedMetrics","THREESPEAK_BENEFICIARY_ACCOUNT","THREESPEAK_BENEFICIARY_WEIGHT","hasThreeSpeakEmbed","enforceThreeSpeakBeneficiary","isThreeSpeakBeneficiary","queries_exports","getAccountTokenQueryOptions","getAccountVideosQueryOptions","getDecodeMemoQueryOptions","HiveSignerIntegration","memoQueryOptions","memoDecoded","tokenQueryOptions","ThreeSpeakIntegration","getHivePoshLinksQueryOptions","getStatsQueryOptions","filterBy","getRcStatsQueryOptions","getAccountRcQueryOptions","getRcResourceParamsQueryOptions","RC_RESOURCE_NAMES","TRANSACTION_HEADER_BYTES","SIGNATURE_BYTES","ASSET_BYTES","big","computeResourceCost","curve","pool","resourceCount","regenShare","coeffA","coeffB","shift","denom","countCommentResourceUsage","transactionBytes","permlinkLength","signatures","hasCommentOptions","sizeInfo","state","exec","stringFieldBytes","commentOperationBytes","commentOptionsBytes","estimateCommentTransactionBytes","EMPTY","estimateCommentRcCost","rcParams","rcStats","usage","regen","cost","breakdown","share","scaled","resourceCost","priceRcUsage","emptyUsage","estimateVoteTransactionBytes","operationBytes","countVoteResourceUsage","estimateRcPrecheck","priced","priceOperation","safeBuffer","estimatedCost","willLikelyFail","average","averageCost","MINIMAL_VOTE","MINIMAL_COMMENT","getGameStatusCheckQueryOptions","gameClaimRequest","contentType","detail","useGameClaim","recordActivity","getQuestsQueryOptions","QUEST_CATALOG","getQuestCatalogEntry","tier","QUEST_MIN_CONTENT_LENGTH","measureQuestContentLength","earnsQuestContentCredit","STREAK_FREEZE_PRICE","STREAK_FREEZE_MAX_OWNED","genIdempotencyKey","buyStreakFreezeRequest","useBuyStreakFreeze","useSubscribeCommunity","useUnsubscribeCommunity","useMutePost","useSetCommunityRole","team","idx","useUpdateCommunity","useRegisterCommunityRewards","usePinPost","getCommunitiesQueryOptions","getCommunityContextQueryOptions","getCommunityQueryOptions","SUBSCRIBERS_PAGE_SIZE","fetchSubscribersPage","getCommunitySubscribersQueryOptions","getCommunitySubscribersInfiniteQueryOptions","getAccountNotificationsInfiniteQueryOptions","getRewardedCommunitiesQueryOptions","ROLES","roleMap","getCommunityType","type_id","getCommunityPermissions","communityType","userRole","subscribed","canPost","canComment","isModerator","getNotificationsUnreadCountQueryOptions","getNotificationsInfiniteQueryOptions","NotificationFilter","NotifyTypes","ALL_NOTIFY_TYPES","NotificationViewType","getNotificationsSettingsQueryOptions","initialMuted","getAnnouncementsQueryOptions","getSpotlightsQueryOptions","_accessToken","markNotificationRead","isInfiniteData","useMarkNotificationsRead","previousData","updatedData","unreadKey","currentUnread","unreadCount","useSetLastRead","getProposalQueryOptions","proposal","getProposalsQueryOptions","proposals","expired","getProposalVotesInfiniteQueryOptions","getUserProposalVotesQueryOptions","vote","useProposalVote","useProposalCreate","getVestingDelegationsQueryOptions","fetchLimit","getAccountDelegationsQueryOptions","getVestingDelegationExpirationsQueryOptions","getConversionRequestsQueryOptions","getCollateralizedConversionRequestsQueryOptions","getSavingsWithdrawFromQueryOptions","getWithdrawRoutesQueryOptions","getOpenOrdersQueryOptions","getOutgoingRcDelegationsInfiniteQueryOptions","delegations","delegation","getIncomingRcQueryOptions","rawVestsToAsset","padded","toReceivedVestingShares","getReceivedVestingSharesQueryOptions","getRecurrentTransfersQueryOptions","normalizeString","trimmed","normalizeNumber","direct","parseToken","rawToken","extractTokens","record","resolveUsername","getPortfolioQueryOptions","getHiveAssetGeneralInfoQueryOptions","marketTicker","marketPrice","liquidBalance","savingsBalance","getHbdAssetGeneralInfoQueryOptions","price","getAPR","currentInflationRate","totalVestingFunds","getHivePowerAssetGeneralInfoQueryOptions","delegatedVests","receivedVests","withdrawRateVests","remainingToWithdrawVests","nextWithdrawalVests","hpBalance","outgoingDelegationsHp","incomingDelegationsHp","pendingPowerDownHp","nextPowerDownHp","totalBalance","availableHp","HIVE_ACCOUNT_OPERATION_GROUPS","HIVE_OPERATION_LIST","operationOrders","HIVE_OPERATION_ORDERS","HIVE_OPERATION_NAME_BY_ID","isHiveOperationName","resolveHiveOperationFilters","rawValues","hasAll","uniqueValues","operationIds","filterArgs","collectRequestedOperations","getNextAccountHistoryPageParam","oldest","resolveAccountHistoryLimit","getHiveAssetTransactionsQueryOptions","requestedOperations","pages","pageParams","getHbdAssetTransactionsQueryOptions","getHivePowerAssetTransactionsQueryOptions","userSelectedOperations","hasAllFilter","formatDate","pad","subtractSeconds","getHiveAssetMetricQueryOptions","hive","non_hive","open","_","__","prevStartDate","getHiveAssetWithdrawalRoutesQueryOptions","getHivePowerDelegatesInfiniteQueryOptions","getHivePowerDelegatingsQueryOptions","getOrderBookQueryOptions","getMarketStatisticsQueryOptions","getMarketHistoryQueryOptions","getHiveHbdStatsQueryOptions","oneDayAgo","dayChange","getMarketDataQueryOptions","getTradeHistoryQueryOptions","getFeedHistoryQueryOptions","getCurrentMedianHistoryPriceQueryOptions","useLimitOrderCreate","useLimitOrderCancel","getMarketData","getCurrencyRate","cur","getCurrencyTokenRate","getCurrencyRates","getHivePrice","ENGINE_RPC_HEADERS","engineRpc","engineRpcSafe","getHiveEngineOrderBook","baseParams","buy","sell","sortByPriceDesc","left","sortByPriceAsc","right","getHiveEngineTradeHistory","getHiveEngineOpenOrders","buyRaw","sellRaw","formatTotal","quantity","getHiveEngineMetrics","symbolQuery","getHiveEngineTokensMarket","getHiveEngineTokensBalances","getHiveEngineTokensMetadata","getHiveEngineTokenTransactions","getHiveEngineTokenMetrics","interval","getHiveEngineUnclaimedRewards","getHiveEngineTokensBalancesQueryOptions","getHiveEngineTokensMarketQueryOptions","getHiveEngineTokensMetadataQueryOptions","getHiveEngineTokenTransactionsQueryOptions","_allPages","lastPageParam","_firstPage","firstPageParam","getHiveEngineTokensMetricsQueryOptions","getHiveEngineUnclaimedRewardsQueryOptions","pending_token","getAllHiveEngineTokensQueryOptions","formattedNumber","fractionDigits","out","av","HiveEngineToken","getHiveEngineBalancesWithUsdQueryOptions","allTokens","balances","t","pricePerHive","providedMetrics","unpricedSymbols","balance","metric","tokenMetadata","lastPrice","balanceAmount","usdValue","getHiveEngineTokenGeneralInfoQueryOptions","hiveQuery","hiveData","metadataList","balanceList","marketList","stakedBalance","unstakingBalance","getPointsQueryOptions","pointsResponse","points","transactionsResponse","transactions","getPointsAssetGeneralInfoQueryOptions","getPointsAssetTransactionsQueryOptions","created","getAccountWalletAssetInfoQueryOptions","fetchQuery","qo","convertPriceToUserCurrency","assetInfo","conversionRate","portfolioQuery","getPortfolioAssetInfo","assetItem","extraItem","dataKey","numValue","portfolioAssetInfo","converted","AssetOperation","useTransfer","useTransferPoint","useDelegateVestingShares","useSetWithdrawVestingRoute","useTransferEngineToken","useTransferToSavings","useTransferFromSavings","useTransferToVesting","useWithdrawVesting","useConvert","useClaimInterest","CLAIM_REWARDS_INVALIDATION_DELAY_MS","pendingInvalidationTimers","useClaimRewards","timerKey","keysToInvalidate","existingTimer","rejected","useDelegateEngineToken","useUndelegateEngineToken","useStakeEngineToken","useUnstakeEngineToken","useClaimEngineRewards","useEngineMarketOrder","buildHiveOperations","buildEngineOperations","getWalletOperationAuthority","useWalletOperation","hiveOps","engineOps","useDelegateRc","useWitnessVote","useWitnessProxy","mapRestWitness","w","getWitnessesInfiniteQueryOptions","getWitnessVotersPageQueryOptions","getWitnessVoterCountQueryOptions","PointTransactionType","claimPointsRequest","useClaimPoints","author_re","type_re","category_re","tag_re","SearchType","MAX_SEARCH_TAGS","MAX_SEARCH_QUERY_LENGTH","firstToken","normalizeSearchAuthor","normalizeSearchCategory","normalizeSearchTags","seen","buildSearchQuery","search","category","normalizedSearch","normalizedCategory","normalizedTags","part","SearchQuery","_query","re","matches","isSearchResponse","MAX_RETRIES","isServer","searchRetryPolicy","failureCount","isTransient","searchQueryOptions","scroll_id","getControversialRisingInfiniteQueryOptions","sinceDate","similar","searchPath","SIMILAR_ENTRIES_SINCE_MS","SIMILAR_ENTRIES_TARGET","SIMILAR_ENTRIES_BODY_LIMIT","SIMILAR_ENTRIES_SSR_TIMEOUT_MS","SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS","SIMILAR_ENTRIES_MIN_RENDER","toMltExcerpt","fingerprint","getSimilarEntriesQueryOptions","rawTags","contentKey","collected","seenAuthors","getSearchAccountQueryOptions","getSearchTopicsQueryOptions","getSearchApiInfiniteQueryOptions","getSearchPathQueryOptions","getSupportSettingsRequest","getSupportSettingsQueryOptions","updateSupportSettingsRequest","applySupportSettingsUpdate","useUpdateSupportSettings","getBoostPlusPricesQueryOptions","getRcDelegationPricesQueryOptions","getRcDelegationActiveQueryOptions","responseData","getPromotePriceQueryOptions","getBoostPlusAccountPricesQueryOptions","useBoostPlus","useRcDelegation","hsTokenRenew","BAD_ACTORS_URL","getBadActorsQueryOptions","POLLS_PROTOCOL_VERSION","PollPreferredInterpretation","mapMetaChoicesToPollChoices","metaChoices","choice","normalizePoll","pollChoices","pollVoters","rawStats","choices","voters","getPollQueryOptions","usePollVote","pollTrxId","HIDDEN_POST_RSHARES_THRESHOLD","HIDDEN_POST_MIN_VOTES","LOW_TRUST_REPUTATION_THRESHOLD","isHumanReadable","accountReputation","neg","reputationLevel","INTERNAL_HOSTS","IMAGE_HOSTS","IMAGE_EXT_RE","URL_RE","TRAILING_PUNCT_RE","hostOf","isExternalPromoLink","rawUrl","hasExternalLink","ContentModerationReason","countVotes","isHiddenPost","netRshares","activeVotesLength","isLowTrustSeoPost","reputation","isAuthorMuted","mutedAuthors","getContentModerationReason","NewsletterApiError","NewsletterSendRefusedError","taken","newsletterUrl","parse","subscribeDigestRequest","getDigestSubscriptionsRequest","leaveDigestRequest","unsubscribeAllDigestsRequest","getNewsletterSenderRequest","getNewsletterIssuesRequest","getNewsletterPostsRequest","postSend","request","previewNewsletterSendRequest","sendNewsletterIssueRequest","getDigestSubscriptionsQueryOptions","getNewsletterSenderQueryOptions","getNewsletterIssuesQueryOptions","getNewsletterPostsQueryOptions","useSubscribeDigest","useLeaveDigest","useUnsubscribeAllDigests","usePreviewNewsletterIssue","useSendNewsletterIssue","CURATION_SORTS","CURATION_VIEWS","CURATION_APPS","CURATION_WINDOWS","CURATION_MARK_STATES","CURATION_FLAG_REASONS","isOnAbuseList","flags","isExcludedByFlags","isDmcaCurationPath","maskDmcaCurationRow","masked","maskDmcaCurationPages","changed","pageChanged","ROUTE","CurationApiError","isRecord","hasItems","hasCurators","hasRecommenders","isStatus","SCORECARD_COUNTS","isRecommenderStats","COMMUNITY_RE","SEED_RE","DEFAULT_TRUE","PARAM_ORDER","normalizeCurationParams","toQuery","LOOPBACK_HOSTS","assertCredentialTransport","getJson","postJson","fetchCurationFeedPage","fetchCurationStatus","fetchCurationRoster","fetchCurationRecommendationsPage","fetchCurationRecommenderStats","fetchCurationPost","curationRosterFeedRequest","curationTickRequest","curationRosterListRequest","curationRosterSetRequest","rules","note","curationRosterRetireRequest","curationMarkRequest","snooze_until","lane","curationMarkClearRequest","curationMyMarksRequest","curationCursorRequest","TRX_ID_RE","curationRecommendMetaRequest","trx_id","ua_class","curationDismissRecoRequest","CURATION_FEED_PAGE_SIZE","CURATION_FEED_STALE_MS","dedupePagesBy","keyOf","dedupeCurationPages","selectCurationFeedPages","getCurationFeedInfiniteQueryOptions","getCurationStatusQueryOptions","getCurationRosterQueryOptions","getCurationRosterAdminQueryOptions","CURATION_RECOMMENDATIONS_PAGE_SIZE","getCurationRecommendationsInfiniteQueryOptions","ACCOUNT_RE","PERMLINK_RE","getCurationPostQueryOptions","getCurationRecommenderQueryOptions","normalizeBroadcastTrxId","useCurationRecommend"],"mappings":"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","file":"index.mjs","sourcesContent":["/**\n * @license bytebuffer.ts (c) 2015 Daniel Wirtz \n * Backing buffer: ArrayBuffer, Accessor: DataView\n * Released under the Apache License, Version 2.0\n * see: https://github.com/dcodeIO/bytebuffer.ts for details\n * modified by @xmcl/bytebuffer\n * And customized for hive-tx\n */\n\nconst EMPTY_BUFFER = new ArrayBuffer(0)\n\n// Lazy-init to avoid crashing on runtimes that lack TextEncoder/TextDecoder\n// (notably React Native with Hermes). Falls back to manual UTF-8 encode/decode.\nlet _encoder: { encode(s: string): Uint8Array } | null = null\nlet _decoder: { decode(b: BufferSource): string } | null = null\n\nfunction getEncoder(): { encode(s: string): Uint8Array } {\n if (!_encoder) {\n if (typeof TextEncoder !== 'undefined') {\n _encoder = new TextEncoder()\n } else {\n _encoder = {\n encode(s: string): Uint8Array {\n // Manual UTF-8 encode fallback\n const utf8: number[] = []\n for (let i = 0; i < s.length; i++) {\n let c = s.charCodeAt(i)\n if (c < 0x80) {\n utf8.push(c)\n } else if (c < 0x800) {\n utf8.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f))\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < s.length) {\n const next = s.charCodeAt(++i)\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff)\n utf8.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n } else {\n utf8.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n }\n }\n return new Uint8Array(utf8)\n },\n }\n }\n }\n return _encoder\n}\n\nfunction getDecoder(): { decode(b: BufferSource): string } {\n if (!_decoder) {\n if (typeof TextDecoder !== 'undefined') {\n _decoder = new TextDecoder()\n } else {\n _decoder = {\n decode(b: BufferSource): string {\n const bytes = b instanceof ArrayBuffer ? new Uint8Array(b) : new Uint8Array((b as ArrayBufferView).buffer, (b as ArrayBufferView).byteOffset, (b as ArrayBufferView).byteLength)\n let result = ''\n for (let i = 0; i < bytes.length; ) {\n const byte = bytes[i]\n let codePoint: number\n if (byte < 0x80) { codePoint = byte; i += 1 }\n else if ((byte & 0xe0) === 0xc0) { codePoint = ((byte & 0x1f) << 6) | (bytes[i + 1] & 0x3f); i += 2 }\n else if ((byte & 0xf0) === 0xe0) { codePoint = ((byte & 0x0f) << 12) | ((bytes[i + 1] & 0x3f) << 6) | (bytes[i + 2] & 0x3f); i += 3 }\n else { codePoint = ((byte & 0x07) << 18) | ((bytes[i + 1] & 0x3f) << 12) | ((bytes[i + 2] & 0x3f) << 6) | (bytes[i + 3] & 0x3f); i += 4 }\n if (codePoint <= 0xffff) { result += String.fromCharCode(codePoint) }\n else { codePoint -= 0x10000; result += String.fromCharCode(0xd800 + (codePoint >> 10), 0xdc00 + (codePoint & 0x3ff)) }\n }\n return result\n },\n }\n }\n }\n return _decoder\n}\n\nexport class ByteBuffer {\n static LITTLE_ENDIAN = true\n static BIG_ENDIAN = false\n static DEFAULT_CAPACITY = 16\n static DEFAULT_ENDIAN = ByteBuffer.BIG_ENDIAN\n\n buffer: ArrayBufferLike\n view: DataView\n offset: number\n markedOffset: number\n limit: number\n littleEndian: boolean\n\n constructor(\n capacity: number = ByteBuffer.DEFAULT_CAPACITY,\n littleEndian: boolean = ByteBuffer.DEFAULT_ENDIAN\n ) {\n this.buffer = capacity === 0 ? EMPTY_BUFFER : new ArrayBuffer(capacity)\n this.view = capacity === 0 ? new DataView(EMPTY_BUFFER) : new DataView(this.buffer)\n this.offset = 0\n this.markedOffset = -1\n this.limit = capacity\n this.littleEndian = littleEndian\n }\n\n static allocate(capacity?: number, littleEndian?: boolean): ByteBuffer {\n return new ByteBuffer(capacity, littleEndian)\n }\n\n static concat(\n buffers: Array,\n littleEndian?: boolean\n ): ByteBuffer {\n let capacity = 0\n for (let i = 0; i < buffers.length; ++i) {\n const buf = buffers[i]\n if (buf instanceof ByteBuffer) {\n capacity += buf.limit - buf.offset\n } else if (buf instanceof Uint8Array) {\n capacity += buf.length\n } else if (buf instanceof ArrayBuffer) {\n capacity += buf.byteLength\n } else if (Array.isArray(buf)) {\n capacity += buf.length\n } else {\n throw TypeError('Illegal buffer')\n }\n }\n\n if (capacity === 0) {\n return new ByteBuffer(0, littleEndian)\n }\n\n const bb = new ByteBuffer(capacity, littleEndian)\n const view = new Uint8Array(bb.buffer)\n let offset = 0\n\n for (let i = 0; i < buffers.length; ++i) {\n let buf = buffers[i]\n if (buf instanceof ByteBuffer) {\n view.set(new Uint8Array(buf.buffer, buf.offset, buf.limit - buf.offset), offset)\n offset += buf.limit - buf.offset\n } else if (buf instanceof Uint8Array) {\n view.set(buf, offset)\n offset += buf.length\n } else if (buf instanceof ArrayBuffer) {\n view.set(new Uint8Array(buf), offset)\n offset += buf.byteLength\n } else {\n // Array\n view.set(buf as number[], offset)\n offset += (buf as number[]).length\n }\n }\n\n bb.limit = bb.offset = offset\n bb.offset = 0\n return bb\n }\n\n static wrap(\n buffer: ByteBuffer | ArrayBuffer | Uint8Array | number[],\n littleEndian?: boolean\n ): ByteBuffer {\n if (buffer instanceof ByteBuffer) {\n const bb = buffer.clone()\n bb.markedOffset = -1\n return bb\n }\n\n let bb: ByteBuffer\n if (buffer instanceof Uint8Array) {\n bb = new ByteBuffer(0, littleEndian)\n if (buffer.length > 0) {\n bb.buffer = buffer.buffer\n bb.offset = buffer.byteOffset\n bb.limit = buffer.byteOffset + buffer.byteLength\n bb.view = new DataView(buffer.buffer)\n }\n } else if (buffer instanceof ArrayBuffer) {\n bb = new ByteBuffer(0, littleEndian)\n if (buffer.byteLength > 0) {\n bb.buffer = buffer\n bb.offset = 0\n bb.limit = buffer.byteLength\n bb.view = buffer.byteLength > 0 ? new DataView(buffer) : new DataView(EMPTY_BUFFER)\n }\n } else if (Array.isArray(buffer)) {\n bb = new ByteBuffer(buffer.length, littleEndian)\n bb.limit = buffer.length\n new Uint8Array(bb.buffer).set(buffer)\n } else {\n throw TypeError('Illegal buffer')\n }\n\n return bb\n }\n\n writeBytes(\n source: ByteBuffer | ArrayBuffer | Uint8Array | number[],\n offset?: number\n ): ByteBuffer {\n return this.append(source, offset)\n }\n\n writeInt8(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 1 > this.buffer.byteLength) {\n this.resize(offset + 1)\n }\n\n this.view.setInt8(offset, value)\n\n if (relative) this.offset += 1\n return this\n }\n\n writeByte(value: number, offset?: number): ByteBuffer {\n return this.writeInt8(value, offset)\n }\n\n writeUint8(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 1 > this.buffer.byteLength) {\n this.resize(offset + 1)\n }\n\n this.view.setUint8(offset, value)\n\n if (relative) this.offset += 1\n return this\n }\n\n writeUInt8(value: number, offset?: number): ByteBuffer {\n return this.writeUint8(value, offset)\n }\n\n readUint8(offset?: number): number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getUint8(offset)\n if (relative) this.offset += 1\n return value\n }\n\n readUInt8(offset?: number): number {\n return this.readUint8(offset)\n }\n\n writeInt16(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 2 > this.buffer.byteLength) {\n this.resize(offset + 2)\n }\n\n this.view.setInt16(offset, value, this.littleEndian)\n\n if (relative) this.offset += 2\n return this\n }\n\n writeShort(value: number, offset?: number): ByteBuffer {\n return this.writeInt16(value, offset)\n }\n\n writeUint16(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 2 > this.buffer.byteLength) {\n this.resize(offset + 2)\n }\n\n this.view.setUint16(offset, value, this.littleEndian)\n\n if (relative) this.offset += 2\n return this\n }\n\n writeUInt16(value: number, offset?: number): ByteBuffer {\n return this.writeUint16(value, offset)\n }\n\n writeInt32(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 4 > this.buffer.byteLength) {\n this.resize(offset + 4)\n }\n\n this.view.setInt32(offset, value, this.littleEndian)\n\n if (relative) this.offset += 4\n return this\n }\n\n writeInt(value: number, offset?: number): ByteBuffer {\n return this.writeInt32(value, offset)\n }\n\n writeUint32(value: number, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (offset + 4 > this.buffer.byteLength) {\n this.resize(offset + 4)\n }\n\n this.view.setUint32(offset, value, this.littleEndian)\n\n if (relative) this.offset += 4\n return this\n }\n\n writeUInt32(value: number, offset?: number): ByteBuffer {\n return this.writeUint32(value, offset)\n }\n\n readUint32(offset?: number): number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getUint32(offset, this.littleEndian)\n if (relative) {\n this.offset += 4\n }\n return value\n }\n\n readUInt32 = this.readUint32\n\n append(source: ByteBuffer | ArrayBuffer | Uint8Array | number[], offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n let src: Uint8Array\n if (source instanceof ByteBuffer) {\n src = new Uint8Array(source.buffer, source.offset, source.limit - source.offset)\n source.offset += src.length\n } else if (source instanceof Uint8Array) {\n src = source\n } else if (source instanceof ArrayBuffer) {\n src = new Uint8Array(source)\n } else {\n src = new Uint8Array(source)\n }\n\n if (src.length <= 0) return this\n\n if (offset + src.length > this.buffer.byteLength) {\n this.resize(offset + src.length)\n }\n\n new Uint8Array(this.buffer).set(src, offset)\n\n if (relative) this.offset += src.length\n return this\n }\n\n clone(copy?: boolean): ByteBuffer {\n const bb = new ByteBuffer(0, this.littleEndian)\n if (copy) {\n bb.buffer = new ArrayBuffer(this.buffer.byteLength)\n new Uint8Array(bb.buffer).set(new Uint8Array(this.buffer))\n bb.view = new DataView(bb.buffer)\n } else {\n bb.buffer = this.buffer\n bb.view = this.view\n }\n bb.offset = this.offset\n bb.markedOffset = this.markedOffset\n bb.limit = this.limit\n return bb\n }\n\n copy(begin?: number, end?: number): ByteBuffer {\n if (begin === undefined) begin = this.offset\n if (end === undefined) end = this.limit\n\n if (begin === end) {\n return new ByteBuffer(0, this.littleEndian)\n }\n\n const capacity = end - begin\n const bb = new ByteBuffer(capacity, this.littleEndian)\n bb.offset = 0\n bb.limit = capacity\n\n new Uint8Array(bb.buffer).set(new Uint8Array(this.buffer).subarray(begin, end), 0)\n return bb\n }\n\n copyTo(\n target: ByteBuffer,\n targetOffset?: number,\n sourceOffset?: number,\n sourceLimit?: number\n ): ByteBuffer {\n const targetRelative = typeof targetOffset === 'undefined'\n const relative = typeof sourceOffset === 'undefined'\n targetOffset = targetRelative ? target.offset : targetOffset!\n sourceOffset = relative ? this.offset : sourceOffset!\n sourceLimit = sourceLimit === undefined ? this.limit : sourceLimit\n\n const len = sourceLimit - sourceOffset\n if (len === 0) return target\n\n target.ensureCapacity(targetOffset + len)\n new Uint8Array(target.buffer).set(\n new Uint8Array(this.buffer).subarray(sourceOffset, sourceLimit),\n targetOffset\n )\n\n if (relative) this.offset += len\n if (targetRelative) target.offset += len\n return this\n }\n\n ensureCapacity(capacity: number): ByteBuffer {\n let current = this.buffer.byteLength\n if (current < capacity) {\n return this.resize((current *= 2) > capacity ? current : capacity)\n }\n return this\n }\n\n flip(): ByteBuffer {\n this.limit = this.offset\n this.offset = 0\n return this\n }\n\n resize(capacity: number): ByteBuffer {\n if (this.buffer.byteLength < capacity) {\n const buffer = new ArrayBuffer(capacity)\n new Uint8Array(buffer).set(new Uint8Array(this.buffer))\n this.buffer = buffer\n this.view = new DataView(buffer)\n }\n return this\n }\n\n skip(length: number): ByteBuffer {\n this.offset += length\n return this\n }\n\n writeInt64(value: number | bigint, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (typeof value === 'number') value = BigInt(value)\n\n if (offset + 8 > this.buffer.byteLength) {\n this.resize(offset + 8)\n }\n\n this.view.setBigInt64(offset, value, this.littleEndian)\n\n if (relative) this.offset += 8\n return this\n }\n\n writeLong(value: number | bigint, offset?: number): ByteBuffer {\n return this.writeInt64(value, offset)\n }\n\n readInt64(offset?: number): bigint {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getBigInt64(offset, this.littleEndian)\n if (relative) this.offset += 8\n return value\n }\n\n readLong(offset?: number): bigint {\n return this.readInt64(offset)\n }\n\n writeUint64(value: number | bigint, offset?: number): ByteBuffer {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n if (typeof value === 'number') value = BigInt(value)\n\n if (offset + 8 > this.buffer.byteLength) {\n this.resize(offset + 8)\n }\n\n this.view.setBigUint64(offset, value, this.littleEndian)\n\n if (relative) this.offset += 8\n return this\n }\n\n writeUInt64(value: number | bigint, offset?: number): ByteBuffer {\n return this.writeUint64(value, offset)\n }\n\n readUint64(offset?: number): bigint {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const value = this.view.getBigUint64(offset, this.littleEndian)\n if (relative) this.offset += 8\n return value\n }\n\n readUInt64(offset?: number): bigint {\n return this.readUint64(offset)\n }\n\n toBuffer(forceCopy?: boolean): ArrayBufferLike {\n const offset = this.offset\n const limit = this.limit\n if (!forceCopy && offset === 0 && limit === this.buffer.byteLength) {\n return this.buffer\n }\n if (offset === limit) return EMPTY_BUFFER\n return this.buffer.slice(offset, limit)\n }\n\n toArrayBuffer(forceCopy?: boolean): ArrayBufferLike {\n return this.toBuffer(forceCopy)\n }\n\n writeVarint32(value: number, offset?: number): ByteBuffer | number {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const size = this.calculateVarint32(value)\n if (offset + size > this.buffer.byteLength) {\n this.resize(offset + size)\n }\n\n value >>>= 0\n while (value >= 0x80) {\n this.view.setUint8(offset++, (value & 0x7f) | 0x80)\n value >>>= 7\n }\n this.view.setUint8(offset++, value)\n\n if (relative) {\n this.offset = offset\n return this\n }\n return size\n }\n\n readVarint32(offset?: number): number | { value: number; length: number } {\n const relative = typeof offset === 'undefined'\n if (typeof offset === 'undefined') {\n offset = this.offset\n }\n let c = 0\n let value = 0 >>> 0\n let b: number\n do {\n b = this.view.getUint8(offset++)\n if (c < 5) {\n value |= (b & 0x7f) << (7 * c)\n }\n ++c\n } while ((b & 0x80) !== 0)\n value |= 0\n\n if (relative) {\n this.offset = offset\n return value\n }\n return { value, length: c }\n }\n\n calculateVarint32(value: number): number {\n value = value >>> 0\n if (value < 1 << 7) return 1\n else if (value < 1 << 14) return 2\n else if (value < 1 << 21) return 3\n else if (value < 1 << 28) return 4\n else return 5\n }\n\n writeVString(str: string, offset?: number): ByteBuffer | number {\n const relative = typeof offset === 'undefined'\n let currentOffset = relative ? this.offset : offset!\n\n const encoded = getEncoder().encode(str)\n const len = encoded.length\n const lenVarintSize = this.calculateVarint32(len)\n\n if (currentOffset + lenVarintSize + len > this.buffer.byteLength) {\n this.resize(currentOffset + lenVarintSize + len)\n }\n\n this.writeVarint32(len, currentOffset)\n currentOffset += lenVarintSize\n\n new Uint8Array(this.buffer).set(encoded, currentOffset)\n currentOffset += len\n\n if (relative) {\n this.offset = currentOffset\n return this\n }\n return currentOffset - (offset || 0)\n }\n\n readVString(offset?: number): string | { string: string; length: number } {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n const start = offset\n const lenResult = this.readVarint32(offset) as { value: number; length: number }\n const lenValue = lenResult.value\n const lenLength = lenResult.length\n\n offset += lenLength\n\n // TextDecoder can take Uint8Array view directly\n const str = getDecoder().decode(new Uint8Array(this.buffer as ArrayBuffer, offset, lenValue))\n offset += lenValue\n\n if (relative) {\n this.offset = offset\n return str\n } else {\n return {\n string: str,\n length: offset - start\n }\n }\n }\n\n readUTF8String(length: number, offset?: number): string | { string: string; length: number } {\n const relative = typeof offset === 'undefined'\n if (relative) offset = this.offset\n else offset = offset!\n\n // const strBuffer = this.buffer.slice(offset, end)\n // Faster to view if Shared? No, Decoder takes buffer or view.\n // Making a view is cheap.\n // But DataView vs Uint8Array. TextDecoder takes BufferSource (ArrayBuffer or ArrayBufferView).\n const str = getDecoder().decode(new Uint8Array(this.buffer as ArrayBuffer, offset, length))\n\n if (relative) {\n this.offset += length\n return str\n } else {\n return {\n string: str,\n length\n }\n }\n }\n}\n","import type { APIMethods } from './api-types'\n\n/**\n * Unified configuration for Hive blockchain connectivity.\n * This is the single source of truth for node endpoints, timeouts, and chain settings.\n * Mutate this object directly or use ConfigManager.setHiveNodes() for validated updates.\n */\nexport const config = {\n /**\n * Array of Hive API node endpoints for load balancing and failover.\n */\n /*\n * techcoderx.com is deliberately absent: its condenser_api.get_accounts serves\n * account rows with posting_json_metadata stripped to \"\" while balances and\n * reputation are correct. That is a well-formed result, so it passes shape\n * validation and the health tracker keeps it ranked by latency alone.\n *\n * Wallet token visibility is read entirely from profile.tokens[].meta.show in\n * that metadata, so a stripped row reads as \"this user enabled nothing\" and the\n * wallet silently falls back to HIVE/HP/HBD/Points. getAccountFullQueryOptions\n * cross-checks against the hivemind profile and re-reads, but that guard only\n * fires when hivemind reports profile *values* — an account whose metadata is\n * just `tokens` (no name/about/image) has none, so it would slip through.\n * Keeping the node out of the pool removes the dependency on that guard.\n *\n * Note this is RPC-only: the same host serves full metadata over its REST\n * (hafbe) endpoint, so it remains valid in `restNodes`.\n */\n nodes: [\n 'https://api.hive.blog',\n 'https://api.deathwing.me',\n 'https://api.openhive.network',\n 'https://api.syncad.com',\n 'https://rpc.mahdiyari.info',\n ],\n\n /**\n * Array of Hive API node endpoints that support REST APIs.\n * Note: Without the trailing /\n */\n restNodes: [\n 'https://api.hive.blog',\n 'https://rpc.mahdiyari.info',\n 'https://api.syncad.com',\n 'https://hiveapi.actifit.io',\n 'https://api.c0ff33a.uk'\n ],\n\n /**\n * Per-API REST node override. Some APIs are served by only a subset of\n * nodes; list just those capable hosts here so callREST never burns its\n * (small) retry budget on nodes that 404/503 the API, and a cold start\n * hits a capable node immediately. Any API not listed falls back to\n * `restNodes`. The health tracker still orders *within* this list.\n *\n * hivesense: empirically only ~2 public nodes serve /hivesense-api (the\n * other configured nodes 404/503 it; Ecency's own was decommissioned), so\n * pin them — otherwise the health tracker keeps rediscovering incapable\n * nodes each cooldown and cold starts waste attempts.\n */\n restNodesByApi: {\n hivesense: ['https://api.hive.blog', 'https://api.syncad.com']\n } as Partial>,\n\n /**\n * User-Agent sent on server-side (Node) HTTP requests to Hive nodes.\n *\n * Node's built-in fetch (undici) sends a bare `User-Agent: node` when none is\n * set, which is indistinguishable from any random Node script in node/CDN\n * analytics. A descriptive value lets operators tell their own SSR/server\n * traffic apart from anonymous scrapers. Only applied in Node — browsers\n * forbid overriding User-Agent (it is silently dropped) and React Native sets\n * its own native UA, so client and mobile traffic are untouched. Override via\n * `ConfigManager.setUserAgent()` (or `setUserAgent()` from `@ecency/sdk/hive`).\n */\n userAgent: 'ecency-sdk',\n\n /**\n * The Hive blockchain chain ID for transaction signing and verification.\n */\n chain_id: 'beeab0de00000000000000000000000000000000000000000000000000000000',\n\n /**\n * Address prefix used for public key formatting (STM for mainnet).\n */\n address_prefix: 'STM',\n\n /**\n * Timeout in milliseconds for read API calls (get_content, get_accounts, etc.).\n * Kept short so the health tracker can fail over to another node quickly.\n */\n timeout: 5_000,\n\n /**\n * Timeout in milliseconds for broadcast API calls.\n * Longer than read timeout because broadcast_transaction_synchronous waits\n * for block inclusion, which depends on the 3-second block interval and\n * network conditions.\n */\n broadcastTimeout: 15_000,\n\n /**\n * Number of retry attempts for failed API calls before throwing an error.\n * Total attempts = retry + 1. With ~7 nodes in the list, a budget of 5\n * means callRPC iterates through 6 distinct nodes before giving up, so a\n * single sick node (or two) can't surface as an unhandled error to the\n * caller while the rest of the list is healthy.\n */\n retry: 5,\n\n /**\n * Tail-latency resilience for READ calls. Motivation: on a shared public-node\n * pool a node can slow down or throttle *mid-request*; a fixed `timeout` means\n * the caller only notices after the full window, and under SSR concurrency\n * those stalled renders pile up. Two mechanisms, both scoped to reads only\n * (broadcasts never hedge and keep their fixed `broadcastTimeout`):\n *\n * - Adaptive per-attempt timeout (`adaptiveTimeout`, default ON): when a\n * node has a usable latency profile (EWMA), the per-attempt timeout becomes\n * `min(callerTimeout, max(floorMs, factor × EWMA))` — a node running far\n * above its own baseline is abandoned early and failover starts sooner.\n * Never *raises* the caller's timeout; unprofiled nodes keep it unchanged.\n *\n * - Hedged requests (`hedge`, default OFF — opt in via `setResilience`): if\n * the primary attempt is still pending after `max(hedgeDelayFloorMs,\n * hedgeDelayFactor × EWMA)`, a duplicate request is fired at the next\n * healthy untried node and the first success wins (the loser is aborted).\n * A token bucket (`hedgeBucketCapacity` burst, refilled by\n * `hedgeRefillPerSuccess` per un-hedged success) caps hedges to roughly\n * `hedgeRefillPerSuccess` of traffic, so only the slow tail hedges — and\n * under pool-wide slowness the bucket drains and hedging auto-disables\n * instead of amplifying load into public-node rate limits.\n */\n resilience: {\n adaptiveTimeout: true,\n adaptiveTimeoutFloorMs: 2_000,\n adaptiveTimeoutFactor: 4,\n hedge: false,\n hedgeDelayFloorMs: 750,\n hedgeDelayFactor: 2,\n hedgeBucketCapacity: 10,\n hedgeRefillPerSuccess: 0.1,\n /**\n * Wall-clock budget for one read call across ALL failover attempts, as a\n * multiple of the per-attempt timeout: no NEW attempt starts past\n * `totalBudgetFactor × timeout` (an in-flight attempt still finishes its\n * own window). Bounds the pathological pool-wide-slowness walk — without\n * it a read could hold its caller for (retry+1) × timeout ≈ 30s, which\n * under SSR concurrency is a memory pile-up, the exact incident this\n * feature exists for. Applies to reads only (callRPC / callREST);\n * broadcasts keep their try-each-node-once semantics.\n */\n totalBudgetFactor: 2\n }\n}\n\n/** Shape of the `config.resilience` bag (see its doc comment). */\nexport type ResilienceOptions = typeof config.resilience\n\n/**\n * Server-side read-through proxy for RPC reads (see `setServerRpcProxy`).\n * `methods` is the allowlist the proxy serves; a read outside it goes straight\n * to the node pool as before.\n */\nexport interface ServerRpcProxyOptions {\n /** Absolute URL of the proxy endpoint (POST `{api, method, params}`). */\n url: string\n /** Headers sent with every proxy call (the shared internal secret). */\n headers: Record\n /** Per-call timeout in ms; on expiry the read falls back to the node pool. */\n timeoutMs: number\n /** Fully qualified method names (`bridge.get_post`) the proxy may answer;\n * omitted = DEFAULT_SERVER_RPC_PROXY_METHODS. An empty list is ignored. */\n methods?: string[]\n /**\n * After this many consecutive proxy misses the proxy is skipped for\n * `cooldownMs`, so a proxy that is down costs one failed call per cooldown\n * window rather than one per read. Default 3 / 10s. A served call resets it.\n */\n failureThreshold?: number\n cooldownMs?: number\n}\n\n/** Default allowlist: the reads a server render makes and the proxy caches. */\nexport const DEFAULT_SERVER_RPC_PROXY_METHODS: readonly string[] = [\n 'bridge.get_ranked_posts',\n 'bridge.get_account_posts',\n 'bridge.get_post',\n 'bridge.get_discussion',\n 'bridge.get_profile',\n 'bridge.get_profiles',\n 'bridge.get_community',\n 'bridge.list_communities',\n 'condenser_api.get_accounts',\n 'condenser_api.get_content',\n 'condenser_api.get_dynamic_global_properties',\n 'condenser_api.get_trending_tags'\n]\n\n/**\n * Active proxy configuration, or null (the default: every read goes to the node\n * pool). Lives outside `config` so the browser bundle never carries it; it is\n * only ever consulted under Node.\n */\nexport interface ServerRpcProxyState extends Required {\n methodSet: Set\n}\n\nexport let serverRpcProxy: ServerRpcProxyState | null = null\n\n/**\n * Route allowlisted server-side reads through a read-through cache in front\n * of the node pool. One cache per host answers the reads every renderer\n * process used to make on its own; a miss there is one upstream call shared by\n * every concurrent reader. The proxy is an optimization, never a dependency:\n * any failure (non-200, timeout, transport error, a response the caller's\n * validator rejects) falls straight through to the existing node loop, so the\n * worst case is the latency of a failed proxy call on top of what happens\n * today. Has no effect outside Node. Pass null to switch it off.\n */\nexport const setServerRpcProxy = (opts: ServerRpcProxyOptions | null): void => {\n if (opts === null) {\n serverRpcProxy = null\n return\n }\n if (!opts || typeof opts !== 'object') return\n const url = typeof opts.url === 'string' ? opts.url.trim() : ''\n if (!/^https?:\\/\\//i.test(url)) return\n const headers: Record = {}\n if (opts.headers && typeof opts.headers === 'object') {\n for (const [k, v] of Object.entries(opts.headers)) {\n if (typeof v === 'string' && v && !/[\\u0000-\\u001f\\u007f]/.test(v) && !/[\\u0000-\\u001f\\u007f]/.test(k)) {\n headers[k] = v\n }\n }\n }\n const timeoutMs =\n typeof opts.timeoutMs === 'number' && Number.isFinite(opts.timeoutMs) && opts.timeoutMs > 0\n ? opts.timeoutMs\n : 2_000\n const methods =\n opts.methods === undefined\n ? [...DEFAULT_SERVER_RPC_PROXY_METHODS]\n : Array.isArray(opts.methods)\n ? opts.methods.filter((m): m is string => typeof m === 'string' && m.includes('.'))\n : []\n // Nothing to route through the proxy: keep whatever was configured before.\n if (methods.length === 0) return\n const pos = (v: unknown, fallback: number): number =>\n typeof v === 'number' && Number.isFinite(v) && v > 0 ? v : fallback\n serverRpcProxy = {\n url,\n headers,\n timeoutMs,\n methods,\n failureThreshold: Math.floor(pos(opts.failureThreshold, 3)),\n cooldownMs: pos(opts.cooldownMs, 10_000),\n methodSet: new Set(methods)\n }\n}\n\n/**\n * Validated setter for the Hive RPC node list — replaces `config.nodes`.\n * Trims, drops non-http(s) entries, and de-dupes (order-preserving). A no-op\n * if nothing valid remains, so a bad input can't empty the list.\n *\n * Lives here, in the React-free `hive-tx` core, on purpose: it must be\n * reachable from BOTH the full `@ecency/sdk` entry (via\n * `ConfigManager.setHiveNodes`, which delegates here) and the lean\n * `@ecency/sdk/hive` server/CLI entry — without dragging react-query or the\n * DMCA/ReDoS surface of `ConfigManager` into the lean entry. Within a single\n * bundle this mutates the one `config` instance `callRPC` reads; the\n * cross-bundle single-instance guarantee is a separate (build-level) concern.\n */\n/**\n * Trim, drop non-string / non-http(s), and de-dupe (order-preserving) a node\n * list. Shared by `setNodes` and the REST-node setters below so all three\n * normalize identically.\n */\nconst sanitizeNodeList = (nodes: unknown): string[] =>\n Array.isArray(nodes)\n ? [\n ...new Set(\n nodes\n .filter((n): n is string => typeof n === 'string')\n // Trim, then strip trailing slashes so REST paths concatenate cleanly:\n // `callREST` builds `node + '/status-api'`, and a `https://host/` node would\n // otherwise yield `https://host//status-api`, which several HAF nodes 404.\n // De-dupe AFTER normalizing so `host` and `host/` collapse to one entry.\n .map((n) => n.trim().replace(/\\/+$/, ''))\n .filter((n) => n.length > 0 && /^https?:\\/\\/.+/.test(n))\n )\n ]\n : []\n\nexport const setNodes = (nodes: string[]): void => {\n const validNodes = sanitizeNodeList(nodes)\n if (!validNodes.length) return\n config.nodes = validNodes\n}\n\n/**\n * Validated setter for the REST-API node list — replaces `config.restNodes`.\n * Same shape/guarantees as `setNodes` (trim, drop non-http(s), de-dupe, no-op on\n * empty). Exists because `restNodes` is otherwise baked into the SDK: an app that\n * wants to add/remove a REST host (e.g. drop an own node it is decommissioning, or\n * widen the public pool) previously had to fork + republish the SDK. With this, the\n * REST pool is app-configurable at runtime exactly like the read pool. Lives in the\n * React-free `hive-tx` core so both the full `@ecency/sdk` entry and the lean\n * `@ecency/sdk/hive` entry can reach it.\n */\nexport const setRestNodes = (nodes: string[]): void => {\n const valid = sanitizeNodeList(nodes)\n if (!valid.length) return\n config.restNodes = valid\n}\n\n/**\n * Merge validated per-API REST node overrides into `config.restNodesByApi`.\n * For each entry: a non-empty, valid list pins that API to those hosts; an empty or\n * all-invalid list REMOVES the pin so the API falls back to `restNodes`. Other APIs'\n * existing pins (e.g. the built-in `hivesense`) are preserved. Lets an app pin the\n * APIs it actually uses to known-capable hosts (so `callREST` never burns its small\n * retry budget on a node that 404/503s the API) without an SDK republish.\n */\nexport const setRestNodesByApi = (\n map: Partial>\n): void => {\n if (!map || typeof map !== 'object') return\n const next: Partial> = { ...config.restNodesByApi }\n for (const [api, list] of Object.entries(map)) {\n const valid = sanitizeNodeList(list)\n if (valid.length) {\n next[api as APIMethods] = valid\n } else {\n delete next[api as APIMethods]\n }\n }\n config.restNodesByApi = next\n}\n\n/**\n * Validated setter for the User-Agent sent on server-side (Node) requests.\n * Trims the input and ignores an empty value so a bad input can't blank out the\n * header. Like `setNodes`, it lives in the React-free `hive-tx` core so it is\n * reachable from both the full `@ecency/sdk` entry (via\n * `ConfigManager.setUserAgent`) and the lean `@ecency/sdk/hive` server/CLI entry.\n */\nexport const setUserAgent = (ua: string): void => {\n // Defensive against plain-JS / React Native callers that may pass a non-string\n // despite the `string` type (avoids throwing on `.trim()`).\n if (typeof ua !== 'string') return\n const value = ua.trim()\n // Ignore blank values, and reject control characters (CR, LF, and other\n // C0/DEL controls). An invalid header value would otherwise be stored and make\n // every subsequent fetch throw, and rejecting CR/LF closes a header-injection\n // vector for any caller that builds the UA from untrusted input.\n if (!value || /[\\u0000-\\u001f\\u007f]/.test(value)) return\n config.userAgent = value\n}\n\n/**\n * Validated partial setter for `config.resilience` (adaptive read timeouts +\n * hedged requests — see the field's doc comment). Booleans must be booleans;\n * numeric fields must be finite and positive, with the refill rate additionally\n * capped at 1 so a typo can't turn the tail-hedge into a traffic doubler\n * (refill ≤ 1 ⇒ hedges can never exceed un-hedged successes). Invalid values\n * are ignored field-by-field, so one bad entry can't block the rest. Lives in\n * the React-free `hive-tx` core (like the other setters) so both `@ecency/sdk`\n * (via `ConfigManager.setResilience`) and the lean `@ecency/sdk/hive` entry\n * can reach it.\n */\nexport const setResilience = (opts: Partial): void => {\n if (!opts || typeof opts !== 'object') return\n const r = config.resilience\n const bool = (v: unknown): v is boolean => typeof v === 'boolean'\n const pos = (v: unknown): v is number =>\n typeof v === 'number' && Number.isFinite(v) && v > 0\n if (bool(opts.adaptiveTimeout)) r.adaptiveTimeout = opts.adaptiveTimeout\n // Floor must stay ≥ the tracker's slow-failure recording floor (2s): the\n // safety argument for adaptive timeouts is that an abort at the window IS\n // recorded as a slow sample, growing the EWMA so the window self-corrects\n // upward. A floor below 2s would abort without recording — the window could\n // never converge and a too-tight profile would starve that call forever.\n if (pos(opts.adaptiveTimeoutFloorMs)) {\n r.adaptiveTimeoutFloorMs = Math.max(opts.adaptiveTimeoutFloorMs, 2_000)\n }\n if (pos(opts.adaptiveTimeoutFactor)) r.adaptiveTimeoutFactor = opts.adaptiveTimeoutFactor\n if (bool(opts.hedge)) r.hedge = opts.hedge\n if (pos(opts.hedgeDelayFloorMs)) r.hedgeDelayFloorMs = opts.hedgeDelayFloorMs\n if (pos(opts.hedgeDelayFactor)) r.hedgeDelayFactor = opts.hedgeDelayFactor\n if (pos(opts.hedgeBucketCapacity)) r.hedgeBucketCapacity = opts.hedgeBucketCapacity\n // Refill must stay ≤ 1: at 1 token per success the hedge rate could reach\n // 100% of traffic, defeating the \"tail only\" contract. Cap rather than reject\n // so a caller asking for \"more hedging\" gets the safe maximum.\n if (pos(opts.hedgeRefillPerSuccess)) {\n r.hedgeRefillPerSuccess = Math.min(opts.hedgeRefillPerSuccess, 1)\n }\n // Below 1 the budget could not even cover the configured per-attempt window.\n if (pos(opts.totalBudgetFactor)) {\n r.totalBudgetFactor = Math.max(opts.totalBudgetFactor, 1)\n }\n}\n","import { PublicKey } from './PublicKey'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\nexport class Signature {\n data: Uint8Array\n recovery: number\n private compressed: boolean\n\n /**\n * Creates a new Signature instance.\n * @param data Raw signature data (64 bytes)\n * @param recovery Recovery byte (0-3)\n * @param compressed Whether signature is compressed (default: true)\n */\n constructor(data: Uint8Array, recovery: number, compressed?: boolean) {\n this.data = data\n this.recovery = recovery\n this.compressed = compressed ?? true\n }\n\n /**\n * Creates a Signature from a hex string.\n * @param string 130-character hex string containing signature and recovery data\n * @returns New Signature instance\n * @throws Error if input is not a string\n */\n static from(string: string) {\n if (typeof string === 'string') {\n const temp = hexToBytes(string)\n let recovery = parseInt(bytesToHex(temp.subarray(0, 1)), 16) - 31\n let compressed = true\n // non-compressed signatures have -4\n // https://github.com/bitcoin/bitcoin/blob/95ea54ba089610019a74c1176a2c7c0dba144b1c/src/key.cpp#L257\n if (recovery < 0) {\n compressed = false\n recovery = recovery + 4\n }\n const data = temp.subarray(1)\n return new Signature(data, recovery, compressed)\n } else {\n throw new Error('Expected string for data')\n }\n }\n\n /**\n * Converts signature to 65-byte buffer format.\n * @returns 65-byte buffer containing recovery byte + signature data\n */\n toBuffer() {\n const buffer = new Uint8Array(65).fill(0)\n if (this.compressed) {\n buffer[0] = (this.recovery + 31) & 0xff\n } else {\n buffer[0] = (this.recovery + 27) & 0xff\n }\n buffer.set(this.data, 1)\n return buffer\n }\n\n /**\n * Returns signature as 130-character hex string.\n * @returns Hex string representation of signature\n */\n customToString() {\n return bytesToHex(this.toBuffer())\n }\n\n /**\n * Returns signature as 130-character hex string.\n * Overrides Object.prototype.toString() so that String(sig) and\n * template literals produce the hex representation instead of \"[object Object]\".\n * @returns Hex string representation of signature\n */\n toString() {\n return this.customToString()\n }\n\n /**\n * Recovers the public key from this signature and message.\n * @param message 32-byte message hash (Uint8Array) or 64-character hex string\n * @returns PublicKey that created this signature\n * @throws Error if message is not a valid 32-byte SHA256 hash\n */\n getPublicKey(message: Uint8Array | string): PublicKey {\n if (\n (message instanceof Uint8Array && message.length !== 32) ||\n (typeof message === 'string' && message.length !== 64)\n ) {\n throw new Error('Expected a valid sha256 hash as message')\n }\n if (typeof message === 'string') {\n message = hexToBytes(message)\n }\n const sig = secp256k1.Signature.fromBytes(this.data, 'compact')\n const temp = new secp256k1.Signature(sig.r, sig.s, this.recovery)\n return new PublicKey(temp.recoverPublicKey(message).toBytes())\n }\n}\n","import { ripemd160 } from '@noble/hashes/legacy.js'\nimport bs58 from 'bs58'\nimport { config } from '../config'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { Signature } from './Signature'\n\nexport class PublicKey {\n key: Uint8Array\n prefix: string\n\n /**\n * Creates a new PublicKey instance from raw bytes.\n * @param key Raw public key bytes (33 bytes, compressed format)\n * @param prefix Optional address prefix (defaults to the current config.address_prefix)\n */\n constructor(key: Uint8Array, prefix?: string) {\n this.key = key\n // Read config at call time so runtime mutations to config.address_prefix\n // (e.g. switching to a non-mainnet network) take effect for new instances.\n this.prefix = prefix ?? config.address_prefix\n }\n\n /**\n * Creates a PublicKey from a string representation.\n * The expected prefix is read from config.address_prefix at call time, so\n * consumers can switch networks at runtime.\n * @param wif Public key string (e.g., \"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA\")\n * @returns New PublicKey instance\n * @throws Error if the prefix, length, checksum, or curve point is invalid\n */\n static fromString(wif: string): PublicKey {\n const expectedPrefix = config.address_prefix\n if (typeof wif !== 'string' || wif.length <= expectedPrefix.length) {\n throw new Error('Invalid public key')\n }\n const prefix = wif.slice(0, expectedPrefix.length)\n if (prefix !== expectedPrefix) {\n throw new Error(`Public key must start with ${expectedPrefix}`)\n }\n let buffer: Uint8Array\n try {\n buffer = bs58.decode(wif.slice(expectedPrefix.length))\n } catch {\n throw new Error('Invalid public key encoding')\n }\n // 33-byte compressed secp256k1 point + 4-byte RIPEMD160 checksum\n if (buffer.length !== 37) {\n throw new Error('Invalid public key length')\n }\n const key = buffer.subarray(0, 33)\n const checksum = buffer.subarray(33, 37)\n const expectedChecksum = ripemd160(key).subarray(0, 4)\n if (!isUint8ArrayEqual(checksum, expectedChecksum)) {\n throw new Error('Public key checksum mismatch')\n }\n try {\n secp256k1.Point.fromBytes(key)\n } catch {\n throw new Error('Invalid public key')\n }\n return new PublicKey(key, prefix)\n }\n\n /**\n * Creates a PublicKey from a string or returns the instance if already a PublicKey.\n * @param value Public key string or PublicKey instance\n * @returns New or existing PublicKey instance\n */\n static from(value: string | PublicKey): PublicKey {\n if (value instanceof PublicKey) {\n return value\n } else {\n return PublicKey.fromString(value as string)\n }\n }\n\n /**\n * Verifies a signature against a message hash.\n * @param message 32-byte message hash to verify\n * @param signature Signature to verify\n * @returns True if signature is valid, false otherwise\n */\n verify(message: Uint8Array, signature: Signature | string): boolean {\n if (typeof signature === 'string') {\n signature = Signature.from(signature)\n }\n return secp256k1.verify(signature.data, message, this.key, {\n prehash: false,\n format: 'compact'\n })\n }\n\n /**\n * Returns the public key as a string for storage or transmission.\n * @returns Public key string with prefix (e.g., \"STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA\")\n */\n toString(): string {\n return encodePublic(this.key, this.prefix)\n }\n\n /**\n * Returns JSON representation (same as toString()).\n * @returns Public key string\n */\n toJSON(): string {\n return this.toString()\n }\n\n /**\n * Returns a string representation for debugging.\n * @returns Formatted public key string\n */\n inspect(): string {\n return `PublicKey: ${this.toString()}`\n }\n}\n\nconst encodePublic = (key: Uint8Array, prefix: string): string => {\n const checksum = ripemd160(key)\n return prefix + bs58.encode(new Uint8Array([...key, ...checksum.subarray(0, 4)]))\n}\n\nconst isUint8ArrayEqual = (a: Uint8Array, b: Uint8Array): boolean => {\n if (a.byteLength !== b.byteLength) return false\n for (let i = 0; i < a.byteLength; i++) {\n if (a[i] !== b[i]) return false\n }\n return true\n}\n","/** Class representing a hive asset,\n * e.g. `1.000 HIVE` or `12.112233 VESTS`. */\nexport class Asset {\n amount: number\n symbol: string\n\n constructor(amount: number, symbol: string) {\n this.amount = amount\n this.symbol = symbol === 'HIVE' ? 'STEEM' : symbol === 'HBD' ? 'SBD' : symbol\n }\n\n /** Create a new Asset instance from a string, e.g. `42.000 HIVE`. */\n static fromString(string: string, expectedSymbol: string | null = null): Asset {\n const [amountString, symbol] = string.split(' ')\n if (['STEEM', 'VESTS', 'SBD', 'TESTS', 'TBD', 'HIVE', 'HBD'].indexOf(symbol) === -1) {\n throw new Error(`Invalid asset symbol: ${symbol}`)\n }\n if (expectedSymbol && symbol !== expectedSymbol) {\n throw new Error(`Invalid asset, expected symbol: ${expectedSymbol} got: ${symbol}`)\n }\n const amount = Number.parseFloat(amountString)\n if (!Number.isFinite(amount)) {\n throw new Error(`Invalid asset amount: ${amountString}`)\n }\n return new Asset(amount, symbol)\n }\n\n /**\n * Convenience to create new Asset.\n * @param symbol Symbol to use when created from number. Will also be used to validate\n * the asset, throws if the passed value has a different symbol than this.\n */\n static from(value: number | string | Asset, symbol?: string | null): Asset {\n if (value instanceof Asset) {\n if (symbol && value.symbol !== symbol) {\n throw new Error(`Invalid asset, expected symbol: ${symbol} got: ${value.symbol}`)\n }\n return value\n } else if (typeof value === 'number' && Number.isFinite(value)) {\n return new Asset(value, symbol || 'STEEM')\n } else if (typeof value === 'string') {\n return Asset.fromString(value, symbol)\n } else {\n throw new Error(`Invalid asset '${String(value)}'`)\n }\n }\n\n // We convert HIVE & HBD strings to STEEM & SBD because the serialization should be based on STEEM & SBD\n\n /** Return asset precision. */\n getPrecision() {\n switch (this.symbol) {\n case 'TESTS':\n case 'TBD':\n case 'STEEM':\n case 'SBD':\n case 'HBD':\n case 'HIVE':\n return 3\n case 'VESTS':\n return 6\n default:\n return 3\n }\n }\n\n /** Return a string representation of this asset, e.g. `42.000 HIVE`. */\n toString() {\n return `${this.amount.toFixed(this.getPrecision())} ${this.symbol}`\n }\n\n toJSON() {\n return this.toString()\n }\n}\n","import { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\n/** Buffer wrapper that serializes to a hex-encoded string. */\nexport class HexBuffer {\n buffer: Uint8Array\n /** Convenience to create a new HexBuffer, does not copy data if value passed is already a buffer. */\n static from(value: string | Uint8Array | HexBuffer) {\n if (value instanceof HexBuffer) {\n return value\n } else if (value instanceof Uint8Array) {\n return new HexBuffer(value)\n } else if (typeof value === 'string') {\n return new HexBuffer(hexToBytes(value))\n } else {\n return new HexBuffer(new Uint8Array(value))\n }\n }\n\n constructor(buffer: Uint8Array) {\n this.buffer = buffer\n }\n\n toString() {\n return bytesToHex(this.buffer)\n }\n\n toJSON() {\n return this.toString()\n }\n}\n","import { PublicKey } from './PublicKey'\nimport { Asset } from './Asset'\nimport { HexBuffer } from './HexBuffer'\nimport { ByteBuffer } from './ByteBuffer'\nimport { Operation } from '../types'\n\n// Operation ID constants for better maintainability\nconst OPERATION_IDS = {\n vote: 0,\n comment: 1,\n transfer: 2,\n transfer_to_vesting: 3,\n withdraw_vesting: 4,\n limit_order_create: 5,\n limit_order_cancel: 6,\n feed_publish: 7,\n convert: 8,\n account_create: 9,\n account_update: 10,\n witness_update: 11,\n account_witness_vote: 12,\n account_witness_proxy: 13,\n // pow: 14,\n custom: 15,\n // report_over_production: 16,\n delete_comment: 17,\n custom_json: 18,\n comment_options: 19,\n set_withdraw_vesting_route: 20,\n limit_order_create2: 21,\n claim_account: 22,\n create_claimed_account: 23,\n request_account_recovery: 24,\n recover_account: 25,\n change_recovery_account: 26,\n escrow_transfer: 27,\n escrow_dispute: 28,\n escrow_release: 29,\n // pow2: 30,\n escrow_approve: 31,\n transfer_to_savings: 32,\n transfer_from_savings: 33,\n cancel_transfer_from_savings: 34,\n // custom_binary: 35,\n decline_voting_rights: 36,\n reset_account: 37,\n set_reset_account: 38,\n claim_reward_balance: 39,\n delegate_vesting_shares: 40,\n account_create_with_delegation: 41,\n witness_set_properties: 42,\n account_update2: 43,\n create_proposal: 44,\n update_proposal_votes: 45,\n remove_proposal: 46,\n update_proposal: 47,\n collateralized_convert: 48,\n recurrent_transfer: 49\n} as const\n\ntype OperationId = (typeof OPERATION_IDS)[keyof typeof OPERATION_IDS]\n\nconst VoidSerializer = () => {\n throw new Error('Void can not be serialized')\n}\nconst StringSerializer = (buffer: ByteBuffer, data: string) => {\n buffer.writeVString(data)\n}\n\nconst Int16Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeInt16(data)\n}\n\nconst Int64Serializer = (buffer: ByteBuffer, data: number | bigint) => {\n buffer.writeInt64(data)\n}\n\nconst UInt8Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint8(data)\n}\n\nconst UInt16Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint16(data)\n}\n\nconst UInt32Serializer = (buffer: ByteBuffer, data: number) => {\n buffer.writeUint32(data)\n}\n\nconst UInt64Serializer = (buffer: ByteBuffer, data: number | bigint) => {\n buffer.writeUint64(data)\n}\n\nconst BooleanSerializer = (buffer: ByteBuffer, data: number | boolean) => {\n buffer.writeByte(data ? 1 : 0)\n}\n\nconst StaticVariantSerializer = (itemSerializers: any) => {\n // return (buffer: ByteBuffer, data: any[]) => {\n // let id = data[0]\n // const item = data[1]\n // // id was/is supposed to be 0 or integer here but seems to have been changed in e.g. comment_options\n // // extensions: [\n // // [\n // // \"comment_payout_beneficiaries\",\n // // {\n // // \"beneficiaries\": [\n // // {\n // // \"account\": \"vimm\",\n // // \"weight\": 1000\n // // }\n // // ]\n // // }\n // // ]\n // // ]\n // // Keep it here just in case\n // // https://gitlab.syncad.com/hive/hive/-/issues/722\n // // \"comment_payout_beneficiaries\" was 0 and at some point it got changed\n // // It should still be serialized as a 0 or an integer\n // // Now the question is, always 0? will need an example transaction to prove otherwise\n // if (typeof id === 'string') {\n // if (id === 'update_proposal_end_date') {\n // id = 1\n // } else {\n // id = 0\n // }\n // }\n // buffer.writeVarint32(id)\n // itemSerializers[id](buffer, item)\n return (buffer: ByteBuffer, data: any) => {\n const [id, item] = data\n buffer.writeVarint32(id)\n itemSerializers[id](buffer, item)\n }\n}\n\n/**\n * Serialize asset.\n * @note This looses precision for amounts larger than 2^53-1/10^precision.\n * Should not be a problem in real-word usage.\n */\nconst AssetSerializer = (buffer: ByteBuffer, data: string | Asset) => {\n const asset = Asset.from(data)\n const precision = asset.getPrecision()\n buffer.writeInt64(Math.round(asset.amount * Math.pow(10, precision)))\n buffer.writeUint8(precision)\n for (let i = 0; i < 7; i++) {\n buffer.writeUint8(asset.symbol.charCodeAt(i) || 0)\n }\n}\n\nconst DateSerializer = (buffer: ByteBuffer, data: string) => {\n buffer.writeUint32(Math.floor(new Date(data + 'Z').getTime() / 1000))\n}\n\nconst PublicKeySerializer = (buffer: ByteBuffer, data: string | PublicKey) => {\n if (\n data === null ||\n (typeof data === 'string' && data.slice(-39) === '1111111111111111111111111111111114T1Anm')\n ) {\n buffer.append(new Uint8Array(33).fill(0))\n } else {\n buffer.append(PublicKey.from(data).key)\n }\n}\n\nconst BinarySerializer = (size: null | number = null) => {\n return (buffer: ByteBuffer, data: string | Uint8Array | HexBuffer) => {\n data = HexBuffer.from(data)\n const len = data.buffer.length\n if (size) {\n if (len !== size) {\n throw new Error(`Unable to serialize binary. Expected ${size} bytes, got ${len}`)\n }\n } else {\n buffer.writeVarint32(len)\n }\n buffer.append(data.buffer)\n }\n}\n\nconst VariableBinarySerializer = BinarySerializer()\n\nconst FlatMapSerializer = (keySerializer: any, valueSerializer: any) => {\n return (buffer: ByteBuffer, data: any) => {\n buffer.writeVarint32(data.length)\n for (const [key, value] of data) {\n keySerializer(buffer, key)\n valueSerializer(buffer, value)\n }\n }\n}\n\nconst ArraySerializer = (itemSerializer: any) => {\n return (buffer: ByteBuffer, data: any[]) => {\n buffer.writeVarint32(data.length)\n for (const item of data) {\n itemSerializer(buffer, item)\n }\n }\n}\n\nconst ObjectSerializer = (keySerializers: any) => {\n return (buffer: ByteBuffer, data: any) => {\n for (const [key, serializer] of keySerializers) {\n try {\n serializer(buffer, data[key])\n } catch (error: any) {\n error.message = `${key}: ${error.message}`\n throw error\n }\n }\n }\n}\n\nconst OptionalSerializer = (valueSerializer: any) => {\n return (buffer: ByteBuffer, data: any | undefined) => {\n if (data !== undefined) {\n buffer.writeByte(1)\n valueSerializer(buffer, data)\n } else {\n buffer.writeByte(0)\n }\n }\n}\n\nconst AuthoritySerializer = ObjectSerializer([\n ['weight_threshold', UInt32Serializer],\n ['account_auths', FlatMapSerializer(StringSerializer, UInt16Serializer)],\n ['key_auths', FlatMapSerializer(PublicKeySerializer, UInt16Serializer)]\n])\n\nconst BeneficiarySerializer = ObjectSerializer([\n ['account', StringSerializer],\n ['weight', UInt16Serializer]\n])\n\nconst PriceSerializer = ObjectSerializer([\n ['base', AssetSerializer],\n ['quote', AssetSerializer]\n])\n\n// const SignedBlockHeaderSerializer = ObjectSerializer([\n// ['previous', BinarySerializer(20)],\n// ['timestamp', DateSerializer],\n// ['witness', StringSerializer],\n// ['transaction_merkle_root', BinarySerializer(20)],\n// ['extensions', ArraySerializer(VoidSerializer)],\n// ['witness_signature', BinarySerializer(65)]\n// ])\n\nconst ChainPropertiesSerializer = ObjectSerializer([\n ['account_creation_fee', AssetSerializer],\n ['maximum_block_size', UInt32Serializer],\n ['hbd_interest_rate', UInt16Serializer]\n])\n\nconst OperationDataSerializer = (operationId: OperationId, definitions: any) => {\n const objectSerializer = ObjectSerializer(definitions)\n return (buffer: ByteBuffer, data: any) => {\n buffer.writeVarint32(operationId)\n objectSerializer(buffer, data)\n }\n}\n\nconst OperationSerializers: Record> = {}\n\nOperationSerializers.account_create = OperationDataSerializer(OPERATION_IDS.account_create, [\n ['fee', AssetSerializer],\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.account_create_with_delegation = OperationDataSerializer(\n OPERATION_IDS.account_create_with_delegation,\n [\n ['fee', AssetSerializer],\n ['delegation', AssetSerializer],\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.account_update = OperationDataSerializer(OPERATION_IDS.account_update, [\n ['account', StringSerializer],\n ['owner', OptionalSerializer(AuthoritySerializer)],\n ['active', OptionalSerializer(AuthoritySerializer)],\n ['posting', OptionalSerializer(AuthoritySerializer)],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.account_witness_proxy = OperationDataSerializer(\n OPERATION_IDS.account_witness_proxy,\n [\n ['account', StringSerializer],\n ['proxy', StringSerializer]\n ]\n)\n\nOperationSerializers.account_witness_vote = OperationDataSerializer(\n OPERATION_IDS.account_witness_vote,\n [\n ['account', StringSerializer],\n ['witness', StringSerializer],\n ['approve', BooleanSerializer]\n ]\n)\n\nOperationSerializers.cancel_transfer_from_savings = OperationDataSerializer(\n OPERATION_IDS.cancel_transfer_from_savings,\n [\n ['from', StringSerializer],\n ['request_id', UInt32Serializer]\n ]\n)\n\nOperationSerializers.change_recovery_account = OperationDataSerializer(\n OPERATION_IDS.change_recovery_account,\n [\n ['account_to_recover', StringSerializer],\n ['new_recovery_account', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.claim_account = OperationDataSerializer(OPERATION_IDS.claim_account, [\n ['creator', StringSerializer],\n ['fee', AssetSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.claim_reward_balance = OperationDataSerializer(\n OPERATION_IDS.claim_reward_balance,\n [\n ['account', StringSerializer],\n ['reward_hive', AssetSerializer],\n ['reward_hbd', AssetSerializer],\n ['reward_vests', AssetSerializer]\n ]\n)\n\nOperationSerializers.comment = OperationDataSerializer(OPERATION_IDS.comment, [\n ['parent_author', StringSerializer],\n ['parent_permlink', StringSerializer],\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['title', StringSerializer],\n ['body', StringSerializer],\n ['json_metadata', StringSerializer]\n])\n\nOperationSerializers.comment_options = OperationDataSerializer(OPERATION_IDS.comment_options, [\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['max_accepted_payout', AssetSerializer],\n ['percent_hbd', UInt16Serializer],\n ['allow_votes', BooleanSerializer],\n ['allow_curation_rewards', BooleanSerializer],\n [\n 'extensions',\n ArraySerializer(\n StaticVariantSerializer([\n ObjectSerializer([['beneficiaries', ArraySerializer(BeneficiarySerializer)]])\n ])\n )\n ]\n])\n\nOperationSerializers.convert = OperationDataSerializer(OPERATION_IDS.convert, [\n ['owner', StringSerializer],\n ['requestid', UInt32Serializer],\n ['amount', AssetSerializer]\n])\n\nOperationSerializers.create_claimed_account = OperationDataSerializer(\n OPERATION_IDS.create_claimed_account,\n [\n ['creator', StringSerializer],\n ['new_account_name', StringSerializer],\n ['owner', AuthoritySerializer],\n ['active', AuthoritySerializer],\n ['posting', AuthoritySerializer],\n ['memo_key', PublicKeySerializer],\n ['json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.custom = OperationDataSerializer(OPERATION_IDS.custom, [\n ['required_auths', ArraySerializer(StringSerializer)],\n ['id', UInt16Serializer],\n ['data', VariableBinarySerializer]\n])\n\n// Not used on chain\n// OperationSerializers.custom_binary = OperationDataSerializer(OPERATION_IDS.custom_binary, [\n// ['required_owner_auths', ArraySerializer(StringSerializer)],\n// ['required_active_auths', ArraySerializer(StringSerializer)],\n// ['required_posting_auths', ArraySerializer(StringSerializer)],\n// ['required_auths', ArraySerializer(AuthoritySerializer)],\n// ['id', StringSerializer],\n// ['data', VariableBinarySerializer]\n// ])\n\nOperationSerializers.custom_json = OperationDataSerializer(OPERATION_IDS.custom_json, [\n ['required_auths', ArraySerializer(StringSerializer)],\n ['required_posting_auths', ArraySerializer(StringSerializer)],\n ['id', StringSerializer],\n ['json', StringSerializer]\n])\n\nOperationSerializers.decline_voting_rights = OperationDataSerializer(\n OPERATION_IDS.decline_voting_rights,\n [\n ['account', StringSerializer],\n ['decline', BooleanSerializer]\n ]\n)\n\nOperationSerializers.delegate_vesting_shares = OperationDataSerializer(\n OPERATION_IDS.delegate_vesting_shares,\n [\n ['delegator', StringSerializer],\n ['delegatee', StringSerializer],\n ['vesting_shares', AssetSerializer]\n ]\n)\n\nOperationSerializers.delete_comment = OperationDataSerializer(OPERATION_IDS.delete_comment, [\n ['author', StringSerializer],\n ['permlink', StringSerializer]\n])\n\nOperationSerializers.escrow_approve = OperationDataSerializer(OPERATION_IDS.escrow_approve, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['escrow_id', UInt32Serializer],\n ['approve', BooleanSerializer]\n])\n\nOperationSerializers.escrow_dispute = OperationDataSerializer(OPERATION_IDS.escrow_dispute, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['escrow_id', UInt32Serializer]\n])\n\nOperationSerializers.escrow_release = OperationDataSerializer(OPERATION_IDS.escrow_release, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['agent', StringSerializer],\n ['who', StringSerializer],\n ['receiver', StringSerializer],\n ['escrow_id', UInt32Serializer],\n ['hbd_amount', AssetSerializer],\n ['hive_amount', AssetSerializer]\n])\n\nOperationSerializers.escrow_transfer = OperationDataSerializer(OPERATION_IDS.escrow_transfer, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['hbd_amount', AssetSerializer],\n ['hive_amount', AssetSerializer],\n ['escrow_id', UInt32Serializer],\n ['agent', StringSerializer],\n ['fee', AssetSerializer],\n ['json_meta', StringSerializer],\n ['ratification_deadline', DateSerializer],\n ['escrow_expiration', DateSerializer]\n])\n\nOperationSerializers.feed_publish = OperationDataSerializer(OPERATION_IDS.feed_publish, [\n ['publisher', StringSerializer],\n ['exchange_rate', PriceSerializer]\n])\n\nOperationSerializers.limit_order_cancel = OperationDataSerializer(\n OPERATION_IDS.limit_order_cancel,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer]\n ]\n)\n\nOperationSerializers.limit_order_create = OperationDataSerializer(\n OPERATION_IDS.limit_order_create,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer],\n ['amount_to_sell', AssetSerializer],\n ['min_to_receive', AssetSerializer],\n ['fill_or_kill', BooleanSerializer],\n ['expiration', DateSerializer]\n ]\n)\n\nOperationSerializers.limit_order_create2 = OperationDataSerializer(\n OPERATION_IDS.limit_order_create2,\n [\n ['owner', StringSerializer],\n ['orderid', UInt32Serializer],\n ['amount_to_sell', AssetSerializer],\n ['exchange_rate', PriceSerializer],\n ['fill_or_kill', BooleanSerializer],\n ['expiration', DateSerializer]\n ]\n)\n\nOperationSerializers.recover_account = OperationDataSerializer(OPERATION_IDS.recover_account, [\n ['account_to_recover', StringSerializer],\n ['new_owner_authority', AuthoritySerializer],\n ['recent_owner_authority', AuthoritySerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\n// Not used on chain\n// OperationSerializers.report_over_production = OperationDataSerializer(\n// OPERATION_IDS.report_over_production,\n// [\n// ['reporter', StringSerializer],\n// ['first_block', SignedBlockHeaderSerializer],\n// ['second_block', SignedBlockHeaderSerializer]\n// ]\n// )\n\nOperationSerializers.request_account_recovery = OperationDataSerializer(\n OPERATION_IDS.request_account_recovery,\n [\n ['recovery_account', StringSerializer],\n ['account_to_recover', StringSerializer],\n ['new_owner_authority', AuthoritySerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.reset_account = OperationDataSerializer(OPERATION_IDS.reset_account, [\n ['reset_account', StringSerializer],\n ['account_to_reset', StringSerializer],\n ['new_owner_authority', AuthoritySerializer]\n])\n\nOperationSerializers.set_reset_account = OperationDataSerializer(OPERATION_IDS.set_reset_account, [\n ['account', StringSerializer],\n ['current_reset_account', StringSerializer],\n ['reset_account', StringSerializer]\n])\n\nOperationSerializers.set_withdraw_vesting_route = OperationDataSerializer(\n OPERATION_IDS.set_withdraw_vesting_route,\n [\n ['from_account', StringSerializer],\n ['to_account', StringSerializer],\n ['percent', UInt16Serializer],\n ['auto_vest', BooleanSerializer]\n ]\n)\n\nOperationSerializers.transfer = OperationDataSerializer(OPERATION_IDS.transfer, [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n])\n\nOperationSerializers.transfer_from_savings = OperationDataSerializer(\n OPERATION_IDS.transfer_from_savings,\n [\n ['from', StringSerializer],\n ['request_id', UInt32Serializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n ]\n)\n\nOperationSerializers.transfer_to_savings = OperationDataSerializer(\n OPERATION_IDS.transfer_to_savings,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer]\n ]\n)\n\nOperationSerializers.transfer_to_vesting = OperationDataSerializer(\n OPERATION_IDS.transfer_to_vesting,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer]\n ]\n)\n\nOperationSerializers.vote = OperationDataSerializer(OPERATION_IDS.vote, [\n ['voter', StringSerializer],\n ['author', StringSerializer],\n ['permlink', StringSerializer],\n ['weight', Int16Serializer]\n])\n\nOperationSerializers.withdraw_vesting = OperationDataSerializer(OPERATION_IDS.withdraw_vesting, [\n ['account', StringSerializer],\n ['vesting_shares', AssetSerializer]\n])\n\nOperationSerializers.witness_update = OperationDataSerializer(OPERATION_IDS.witness_update, [\n ['owner', StringSerializer],\n ['url', StringSerializer],\n ['block_signing_key', PublicKeySerializer],\n ['props', ChainPropertiesSerializer],\n ['fee', AssetSerializer]\n])\n\nOperationSerializers.witness_set_properties = OperationDataSerializer(\n OPERATION_IDS.witness_set_properties,\n [\n ['owner', StringSerializer],\n ['props', FlatMapSerializer(StringSerializer, VariableBinarySerializer)],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.account_update2 = OperationDataSerializer(OPERATION_IDS.account_update2, [\n ['account', StringSerializer],\n ['owner', OptionalSerializer(AuthoritySerializer)],\n ['active', OptionalSerializer(AuthoritySerializer)],\n ['posting', OptionalSerializer(AuthoritySerializer)],\n ['memo_key', OptionalSerializer(PublicKeySerializer)],\n ['json_metadata', StringSerializer],\n ['posting_json_metadata', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.create_proposal = OperationDataSerializer(OPERATION_IDS.create_proposal, [\n ['creator', StringSerializer],\n ['receiver', StringSerializer],\n ['start_date', DateSerializer],\n ['end_date', DateSerializer],\n ['daily_pay', AssetSerializer],\n ['subject', StringSerializer],\n ['permlink', StringSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nOperationSerializers.update_proposal_votes = OperationDataSerializer(\n OPERATION_IDS.update_proposal_votes,\n [\n ['voter', StringSerializer],\n ['proposal_ids', ArraySerializer(Int64Serializer)],\n ['approve', BooleanSerializer],\n ['extensions', ArraySerializer(VoidSerializer)]\n ]\n)\n\nOperationSerializers.remove_proposal = OperationDataSerializer(OPERATION_IDS.remove_proposal, [\n ['proposal_owner', StringSerializer],\n ['proposal_ids', ArraySerializer(Int64Serializer)],\n ['extensions', ArraySerializer(VoidSerializer)]\n])\n\nconst ProposalUpdateSerializer = ObjectSerializer([['end_date', DateSerializer]])\n\nOperationSerializers.update_proposal = OperationDataSerializer(OPERATION_IDS.update_proposal, [\n ['proposal_id', UInt64Serializer],\n ['creator', StringSerializer],\n ['daily_pay', AssetSerializer],\n ['subject', StringSerializer],\n ['permlink', StringSerializer],\n [\n 'extensions',\n ArraySerializer(StaticVariantSerializer([VoidSerializer, ProposalUpdateSerializer]))\n ]\n])\n\nOperationSerializers.collateralized_convert = OperationDataSerializer(\n OPERATION_IDS.collateralized_convert,\n [\n ['owner', StringSerializer],\n ['requestid', UInt32Serializer],\n ['amount', AssetSerializer]\n ]\n)\n\nOperationSerializers.recurrent_transfer = OperationDataSerializer(\n OPERATION_IDS.recurrent_transfer,\n [\n ['from', StringSerializer],\n ['to', StringSerializer],\n ['amount', AssetSerializer],\n ['memo', StringSerializer],\n ['recurrence', UInt16Serializer],\n ['executions', UInt16Serializer],\n [\n 'extensions',\n ArraySerializer(\n ObjectSerializer([\n ['type', UInt8Serializer],\n ['value', ObjectSerializer([['pair_id', UInt8Serializer]])]\n ])\n )\n ]\n ]\n)\n\nconst OperationSerializer = (buffer: ByteBuffer, operation: Operation) => {\n const serializer = OperationSerializers[operation[0]]\n if (!serializer) {\n throw new Error(`No serializer for operation: ${operation[0]}`)\n }\n try {\n serializer(buffer, operation[1])\n } catch (error: any) {\n error.message = `${operation[0]}: ${error.message}`\n throw error\n }\n}\n\nconst TransactionSerializer = ObjectSerializer([\n ['ref_block_num', UInt16Serializer],\n ['ref_block_prefix', UInt32Serializer],\n ['expiration', DateSerializer],\n ['operations', ArraySerializer(OperationSerializer)],\n ['extensions', ArraySerializer(StringSerializer)]\n])\n\nconst EncryptedMemoSerializer = ObjectSerializer([\n ['from', PublicKeySerializer],\n ['to', PublicKeySerializer],\n ['nonce', UInt64Serializer],\n ['check', UInt32Serializer],\n ['encrypted', BinarySerializer()]\n])\n\nexport const Serializer = {\n // Array: ArraySerializer,\n Asset: AssetSerializer,\n // Authority: AuthoritySerializer,\n // Binary: BinarySerializer,\n // Boolean: BooleanSerializer,\n // Date: DateSerializer,\n // FlatMap: FlatMapSerializer,\n // Int16: Int16Serializer,\n // Int32: Int32Serializer,\n // Int64: Int64Serializer,\n // Int8: Int8Serializer,\n Memo: EncryptedMemoSerializer,\n // Object: ObjectSerializer,\n // Operation: OperationSerializer,\n // Optional: OptionalSerializer,\n Price: PriceSerializer,\n PublicKey: PublicKeySerializer,\n // StaticVariant: StaticVariantSerializer,\n String: StringSerializer,\n Transaction: TransactionSerializer,\n UInt16: UInt16Serializer,\n UInt32: UInt32Serializer\n // UInt64: UInt64Serializer,\n // UInt8: UInt8Serializer,\n // Void: VoidSerializer\n}\n","export const sleep = (ms: number): Promise => {\n return new Promise((resolve) => setTimeout(resolve, ms))\n}\n","import { config, serverRpcProxy, type ServerRpcProxyState } from '../config'\nimport { CallResponse } from '../types'\nimport type { APIMethods } from '../api-types'\nimport { sleep } from './sleep'\n\n// ── Server identity (User-Agent) ────────────────────────────────────────────\n\n/**\n * True only when running under Node.js (SSR / server / CLI). Computed once.\n *\n * We attach a descriptive `User-Agent` exclusively here because that is the only\n * place it (a) takes effect and (b) is wanted:\n * - Node's undici fetch otherwise sends a bare `User-Agent: node`, which is\n * indistinguishable from any anonymous script in node/CDN analytics.\n * - Browsers treat `User-Agent` as a forbidden header and silently drop any\n * override, so setting it there is pointless (and we avoid the churn).\n * - React Native sets its own native UA (e.g. the mobile app's own string);\n * overriding it would relabel real mobile traffic, so we explicitly exclude\n * it via `navigator.product === 'ReactNative'`.\n */\nconst isNodeRuntime: boolean = (() => {\n try {\n const isReactNative =\n typeof navigator !== 'undefined' && (navigator as any).product === 'ReactNative'\n return (\n !isReactNative &&\n typeof process !== 'undefined' &&\n process.versions != null &&\n process.versions.node != null\n )\n } catch {\n return false\n }\n})()\n\n/**\n * Headers that identify the caller on server-side requests. Returns the\n * configured `User-Agent` only under Node; an empty object everywhere else so\n * browser and React Native requests are left exactly as they were.\n */\nfunction serverIdentityHeaders(): Record {\n return isNodeRuntime ? { 'User-Agent': config.userAgent } : {}\n}\n\n// ── Server-side read-through proxy ──────────────────────────────────────────\n\n/**\n * Counters for the proxy path, readable by a host's diagnostics (the web\n * tier's event-loop monitor prints them). `served` = answered by the proxy,\n * `fallback` = proxy configured and eligible but the read went to the node\n * pool, with the reason.\n */\nexport const rpcProxyStats = {\n served: 0,\n fallback: 0,\n /** Reads that went straight to the nodes because the breaker was open. */\n skipped: 0,\n fallbackByReason: { status: 0, rpcerror: 0, timeout: 0, transport: 0, validate: 0, parse: 0 } as Record\n}\n\n/**\n * `rpcerror` is a 502 tagged `X-Ssr-Cache: RPCERROR`: the proxy reached a node\n * and relayed the node's own error (a tag or post that does not exist, a bad\n * argument). The read still falls back so the caller sees the node's answer\n * unchanged, but the proxy was healthy, so it does not count toward the\n * breaker; the other reasons do.\n */\ntype ProxyMissReason = 'status' | 'rpcerror' | 'timeout' | 'transport' | 'validate' | 'parse'\n\nclass ProxyMiss extends Error {\n constructor(\n public reason: ProxyMissReason,\n message: string\n ) {\n super(message)\n }\n}\n\nconst errorMessage = (e: unknown): string =>\n e instanceof Error ? e.message : typeof e === 'string' ? e : String(e)\n\n// Breaker: consecutive misses open it for the configured cooldown, a served\n// call closes it. Module state, like the health tracker: one per process.\nlet proxyConsecutiveMisses = 0\nlet proxyOpenUntil = 0\n\n/** Test seam: forget breaker state. */\nexport function resetRpcProxyBreaker(): void {\n proxyConsecutiveMisses = 0\n proxyOpenUntil = 0\n}\n\n/**\n * One proxy call for an eligible read. Resolves with the upstream `result` the\n * proxy served, or throws ProxyMiss; the caller then continues with the node\n * loop exactly as if the proxy did not exist. Never throws anything else,\n * except the caller's own abort.\n */\nasync function proxyRpcCall(\n proxy: ServerRpcProxyState,\n method: string,\n params: unknown,\n callerTimeoutMs: number,\n externalSignal: AbortSignal | undefined,\n validate?: (result: unknown) => boolean\n): Promise {\n const dot = method.indexOf('.')\n if (dot <= 0 || dot === method.length - 1) {\n // Unreachable through setServerRpcProxy (it keeps only dotted names), kept\n // so a future allowlist change fails as a miss rather than a malformed call.\n throw new ProxyMiss('transport', `method without an api prefix: ${method}`)\n }\n // Never wait longer for the proxy than the caller would for one node.\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(\n Math.min(proxy.timeoutMs, callerTimeoutMs)\n )\n const { signal, cleanup: cleanupMerge } = mergeSignals(tSignal, externalSignal)\n try {\n let res: Response\n try {\n res = await fetch(proxy.url, {\n method: 'POST',\n body: JSON.stringify({ api: method.slice(0, dot), method: method.slice(dot + 1), params }),\n headers: { 'Content-Type': 'application/json', ...serverIdentityHeaders(), ...proxy.headers },\n signal\n })\n } catch (e: unknown) {\n if (externalSignal?.aborted) throw e\n throw new ProxyMiss(tSignal.aborted ? 'timeout' : 'transport', errorMessage(e))\n }\n if (res.status !== 200) {\n // Release the connection: an unconsumed body pins a pooled socket.\n try {\n await res.body?.cancel()\n } catch {\n // nothing to release\n }\n const relayed = res.status === 502 && (res.headers.get('x-ssr-cache') ?? '').toUpperCase() === 'RPCERROR'\n throw new ProxyMiss(relayed ? 'rpcerror' : 'status', relayed ? 'proxy relayed a node error' : `proxy answered ${res.status}`)\n }\n let result: unknown\n try {\n result = await res.json()\n } catch (e: unknown) {\n if (externalSignal?.aborted) throw e\n throw new ProxyMiss(tSignal.aborted ? 'timeout' : 'parse', errorMessage(e))\n }\n if (validate && !validate(result)) {\n throw new ProxyMiss('validate', 'proxy result rejected by validator')\n }\n return result as T\n } finally {\n cleanupTimeout()\n cleanupMerge()\n }\n}\n\n// ── Error Types ─────────────────────────────────────────────────────────────\n\nexport class RPCError extends Error {\n name = 'RPCError'\n data?: any\n code: number\n stack: undefined = undefined\n constructor(rpcError: { message: string; code: number; data?: any }) {\n super(rpcError.message)\n this.code = rpcError.code\n if ('data' in rpcError) {\n this.data = rpcError.data\n }\n }\n}\n\n/**\n * Transport-level error thrown by jsonRPCCall for HTTP status errors (429, 503).\n * Carries node identity and rate-limit info so callers can record health\n * exactly once without double-counting.\n */\nclass NodeError extends Error {\n node: string\n /** Explicit server `Retry-After` in ms, or 0 when the 429 carried no usable header. */\n rateLimitMs: number\n /** True for an HTTP 429 regardless of whether a `Retry-After` header was present, so\n * a header-less rate limit is still cooled down (with escalating backoff) rather than\n * mis-recorded as a plain transport failure. */\n isRateLimit: boolean\n constructor(\n node: string,\n message: string,\n opts: { rateLimitMs?: number; isRateLimit?: boolean } = {}\n ) {\n super(message)\n this.node = node\n this.rateLimitMs = opts.rateLimitMs ?? 0\n this.isRateLimit = opts.isRateLimit ?? false\n }\n}\n\n/**\n * Parse an HTTP `Retry-After` header to milliseconds. Supports both forms in the\n * spec: `` (e.g. \"120\") and ``. Returns 0 when the header\n * is absent or unparseable (including a non-numeric junk value or a past date) so the\n * caller falls back to escalating backoff instead of a NaN/negative cooldown.\n */\nfunction parseRetryAfterMs(header: string | null): number {\n if (!header) return 0\n const secs = Number(header)\n if (Number.isFinite(secs)) return secs > 0 ? secs * 1000 : 0\n const dateMs = Date.parse(header)\n if (Number.isFinite(dateMs)) {\n const delta = dateMs - Date.now()\n return delta > 0 ? delta : 0\n }\n return 0\n}\n\n/** Errors that indicate the request definitely never reached the server. */\nconst PRE_CONNECTION_ERRORS = ['ECONNREFUSED', 'ENOTFOUND', 'EHOSTUNREACH', 'EAI_AGAIN']\n\n/** Browser fetch network-failure messages — emitted by Chromium/Firefox/Safari\n * when CORS preflight fails, DNS fails, TLS fails, or the response is blocked.\n * These map to scenarios where retrying the same signed broadcast is safe: the\n * request either never reached the node, or its response was blocked but a\n * re-broadcast of the *same* signed tx will be deduped by Hive (same trx_id). */\nconst BROWSER_NETWORK_ERRORS = [\n 'Failed to fetch', // Chromium\n 'NetworkError when attempting to fetch', // Firefox\n 'Load failed', // Safari\n 'fetch failed' // Node 18+ undici / Bun — also covered via cause chain\n]\n\n/**\n * Concatenate the error's surface text + the messages/codes from up to 5\n * levels of nested `cause`. Node.js fetch wraps connection failures as\n * `TypeError('fetch failed')` with the real `code` (ECONNREFUSED, etc.)\n * nested in the cause chain. Browser fetch failures have no cause but\n * carry their identifier in `message`.\n */\nfunction flattenErrorText(e: any): string {\n if (!e) return ''\n const parts: string[] = [String(e.name || ''), String(e.message || ''), String(e.code || '')]\n let cause = e.cause\n for (let depth = 0; cause && depth < 5; depth++) {\n parts.push(String(cause.code || ''), String(cause.message || ''))\n cause = cause.cause\n }\n return parts.join(' ')\n}\n\n/**\n * Decide whether a broadcast attempt can safely be retried on another node.\n *\n * Safe to retry (same signed tx → Hive dedupes by trx_id at the mempool layer):\n * - Pre-connection failures (ECONNREFUSED, ENOTFOUND, etc.) — request never sent.\n * - Browser fetch network failures (CORS block, TLS error, DNS) — TypeError with\n * a well-known message string.\n * - JSON parse failures — node returned an HTML error page (typical for\n * Cloudflare 1033 tunnel-down / 5xx interstitials), so the request never\n * reached the Hive RPC layer.\n * - NodeError (HTTP 429/5xx surfaced from jsonRPCCall) — already known transient.\n *\n * NOT safe to retry:\n * - RPCError — the node accepted the request and the blockchain rejected it.\n * Retrying on another node would either get the same rejection or accept\n * a different one; surface the original error instead.\n */\nfunction isBroadcastSafeToRetry(e: any): boolean {\n if (!e) return false\n if (e instanceof NodeError) return true\n if (e instanceof RPCError) return false\n\n const text = flattenErrorText(e)\n if (PRE_CONNECTION_ERRORS.some((code) => text.includes(code))) return true\n if (BROWSER_NETWORK_ERRORS.some((msg) => text.includes(msg))) return true\n\n // res.json() against an HTML body (Cloudflare/proxy interstitials) throws\n // SyntaxError. The Hive RPC layer never saw the tx, so failover is safe.\n if (e instanceof SyntaxError) return true\n // Some runtimes surface JSON parse errors as plain Error with this text.\n if (/Unexpected token|JSON\\.parse|Unexpected end of JSON/i.test(text)) return true\n\n return false\n}\n\n// ── Node Health Tracker ─────────────────────────────────────────────────────\n\n/** Node-level health state tracked by NodeHealthTracker. */\ninterface NodeHealth {\n /** Global consecutive-failure counter. Resets on success. */\n consecutiveFailures: number\n /** Timestamp of the most recent failure. Used with the 30s cooldown window. */\n lastFailureTime: number\n /** Epoch ms after which the node is no longer rate-limited. */\n rateLimitedUntil: number\n /** Count of consecutive 429s (no intervening success) with no usable Retry-After.\n * Drives escalating backoff; reset by a success or by RATE_LIMIT_STREAK_RESET_MS. */\n rateLimitStreak: number\n /** Epoch ms of the most recent 429. Used to expire the escalation streak. */\n lastRateLimitAt: number\n /** Per-API failure counters. Some nodes disable specific API plugins; tracking\n * per-API lets us deprioritize a node only for the APIs that fail, not globally.\n * `defective` marks a cooldown set by recordDefectiveResponse (payload\n * validation failure) — unlike ordinary strike cooldowns it survives\n * recordSuccess and only expires on its own. */\n apiFailures: Map<\n string,\n { count: number; cooldownUntil: number; lastFailureTime: number; defective?: boolean }\n >\n /** Most recent head_block_number observed for this node. */\n headBlock: number\n /** Epoch ms when the head_block was recorded. Used to expire stale observations. */\n headBlockUpdatedAt: number\n\n // ── Latency tracking (adaptive ordering) ────────────────────────────────\n /** EWMA of observed round-trip ms. Fed by successful calls AND by slow/timeout\n * failures (so a node that returns 200 in 15s, or aborts at the timeout, is\n * ranked on its real slowness — not treated as merely \"healthy\"). `undefined`\n * until the first sample. */\n ewmaLatencyMs?: number\n /** Number of latency samples folded into the EWMA. Gates \"warmup\": below\n * LATENCY_MIN_SAMPLES the node is unproven and keeps its config-order prior. */\n latencySampleCount: number\n /** Epoch ms of the most recent latency sample. Used for usability expiry and to\n * decide when a node is overdue for an exploratory re-probe. */\n latencyUpdatedAt: number\n /** Epoch ms of the most recent exploratory promotion. Single-flight guard so a\n * burst of concurrent orderings doesn't all re-probe the same stale node. */\n lastProbeAt: number\n\n /**\n * Per-profile-key latency (same EWMA/warmup/expiry rules as the global one).\n * The global EWMA mixes cheap calls (get_accounts ~300ms) with heavy ones\n * (get_account_history, bridge.get_discussion — legitimately seconds), so it\n * ranks nodes fine but is the WRONG baseline for per-attempt deadlines: a\n * profile dominated by cheap calls would abort every legitimately-heavy call.\n * Deadlines/hedge delays therefore key on the FULL method for RPC\n * (\"condenser_api.get_account_history\") and api+endpoint template for REST —\n * an API prefix alone still mixes cheap and heavy methods. Ranking keeps the\n * global profile. Bounded: #nodes × #distinct methods called (code-defined,\n * not user input); fully cleared whenever the node's global profile expires\n * (the global clock advances on every sample, so global-stale ⇒ all stale).\n */\n apiLatency: Map\n}\n\n/**\n * JSON-RPC error codes that indicate the node itself is unhealthy, not that the\n * client sent a bad request. These should trigger failover to another node.\n *\n * Background: Hive nodes fronted by HAF/jussi/drone return HTTP 200 with a\n * JSON-RPC error body when a backing service (hivemind, postgrest, etc.) is down.\n * The HTTP layer looks healthy, so failover never triggers — the caller just gets\n * an error and gives up. This function identifies those node-level errors.\n */\nfunction isNodeLevelRPCError(code: number, message: string): boolean {\n // -32603: Internal error — node is having problems\n if (code === -32603) return true\n // -32000 to -32099: Server error range (implementation-defined server errors)\n if (code <= -32000 && code >= -32099) return true\n // -32601: Method not found — node may be missing this API plugin\n if (code === -32601) return true\n // -32602 with node-sick indicators (vs normal \"invalid params\" from bad client input)\n // e.g. \"Unable to parse endpoint data\" from HAF when a backing service is down\n if (code === -32602 && /unable to parse|endpoint data|internal/i.test(message)) return true\n return false\n}\n\n/** Extract the API prefix from a method name like \"rc_api.find_rc_accounts\" -> \"rc_api\". */\nfunction apiOf(method: string): string {\n const dot = method.indexOf('.')\n return dot > 0 ? method.slice(0, dot) : method\n}\n\n// ── Rate-limit (429) backoff constants ───────────────────────────────────────\n/** Base cooldown applied to a 429 with no usable `Retry-After` header. Matches the\n * previous flat default so first-offence behaviour is unchanged. */\nconst RATE_LIMIT_BASE_MS = 10_000\n/** Ceiling for the escalating header-less cooldown. Prevents a node from being\n * parked far longer than a real public node's throttle window. */\nconst RATE_LIMIT_MAX_MS = 60_000\n/** No 429 from a node for this long ⇒ its escalation streak resets to 0, so an\n * occasional throttle hours apart doesn't compound into a long park. */\nconst RATE_LIMIT_STREAK_RESET_MS = 120_000\n\n/** Per-API failure threshold before the node is deprioritized for that API only. */\nconst MAX_API_FAILURES_BEFORE_COOLDOWN = 2\n/** How long a node stays deprioritized for a specific API after repeated failures. */\nconst API_COOLDOWN_MS = 60_000\n/** How long head_block observations remain valid before being treated as unknown. */\nconst HEAD_BLOCK_MAX_AGE_MS = 120_000\n/** Maximum lag (in blocks) before a node is considered stale relative to the best-known head. */\nconst STALE_BLOCK_THRESHOLD = 30\n\n// ── Adaptive latency-ordering constants ──────────────────────────────────────\n/** EWMA smoothing weight for a new latency sample. 0.3 ⇒ ~5–6 samples to converge;\n * absorbs one-off GC/TLS spikes while still reacting to a real regional shift fast. */\nconst LATENCY_EWMA_ALPHA = 0.3\n/** Samples required before a node's latency is trusted for ranking. Below this the\n * node is \"warming\" and ranks at a neutral prior (config order via tiebreak), so a\n * single fluke never reorders the list and cold start == today's behavior. */\nconst LATENCY_MIN_SAMPLES = 3\n/** How long a latency sample stays usable for ranking. Past this a node reverts to\n * warming. Must be > LATENCY_REPROBE_MS so re-probes keep a busy node's profile fresh. */\nconst LATENCY_MAX_AGE_MS = 5 * 60_000\n/** A healthy node not sampled within this window is overdue for an exploratory\n * re-probe (promoted to front of ONE ordering). This is what lets a demoted node\n * climb back when it recovers — and what profiles a node that organic traffic never\n * reaches. 60s ⇒ ~1 probe/node/min worst case = negligible cost. */\nconst LATENCY_REPROBE_MS = 60_000\n/** Neutral score (ms) for an unproven/warming node: optimistic enough to sit ahead\n * of a proven-slow node (so we explore an unknown before hammering a known-slow one)\n * but behind a proven-fast node. Fixed, so a node makes at most ONE rank transition\n * when it crosses LATENCY_MIN_SAMPLES — no churn. */\nconst LATENCY_UNPROVEN_PRIOR_MS = 1_000\n/** A failed call only feeds a latency penalty if it was actually slow (≥ this). Keeps\n * a genuine timeout / slow-5xx (a far-region node case) visible to the ranker while an\n * instant ECONNREFUSED (a *down* node, handled by consecutiveFailures) is NOT mis-read\n * as \"slow\". The penalty value is the *measured* elapsed, never a static constant. */\nconst LATENCY_SLOW_FAILURE_MS = 2_000\n\n/**\n * Latency-ranking tuning, re-exported as a frozen bag so tests assert behaviour\n * against the real numbers instead of mirroring literals that can silently drift.\n * @internal — not part of the package's public API; for the co-located spec only.\n */\nexport const __LATENCY_TUNING__ = Object.freeze({\n EWMA_ALPHA: LATENCY_EWMA_ALPHA,\n MIN_SAMPLES: LATENCY_MIN_SAMPLES,\n MAX_AGE_MS: LATENCY_MAX_AGE_MS,\n REPROBE_MS: LATENCY_REPROBE_MS,\n UNPROVEN_PRIOR_MS: LATENCY_UNPROVEN_PRIOR_MS,\n SLOW_FAILURE_MS: LATENCY_SLOW_FAILURE_MS\n})\n\n/** @internal Exported for testing only. */\nexport class NodeHealthTracker {\n private health = new Map()\n\n private getOrCreate(node: string): NodeHealth {\n let h = this.health.get(node)\n if (!h) {\n h = {\n consecutiveFailures: 0,\n lastFailureTime: 0,\n rateLimitedUntil: 0,\n rateLimitStreak: 0,\n lastRateLimitAt: 0,\n apiFailures: new Map(),\n headBlock: 0,\n headBlockUpdatedAt: 0,\n ewmaLatencyMs: undefined,\n latencySampleCount: 0,\n latencyUpdatedAt: 0,\n // Stamp the probe clock at creation so a brand-new (never-sampled) node is\n // NOT treated as \"overdue for re-probe\" on its very first ordering pass.\n // With lastProbeAt=0 the re-probe gate (touch <= now - LATENCY_REPROBE_MS)\n // fired immediately, so the 2nd+ ordering on a cold worker promoted unproven\n // nodes ahead of the configured order for no measured reason. Seeding it to\n // \"now\" preserves configured order during warmup; a genuinely slow preferred\n // node is still demoted by its EWMA score (not by epoch-zero exploration),\n // and idle nodes are still re-probed once LATENCY_REPROBE_MS has truly elapsed.\n lastProbeAt: Date.now(),\n apiLatency: new Map()\n }\n this.health.set(node, h)\n }\n return h\n }\n\n recordSuccess(node: string, api?: string, durationMs?: number, profileKey?: string): void {\n const h = this.getOrCreate(node)\n h.consecutiveFailures = 0\n // A success means the node recovered — clear the escalation streak so the next\n // throttle starts from the base cooldown. We deliberately do NOT clear an active\n // rateLimitedUntil window here: under concurrency a success from a request that was\n // already in flight can resolve *after* another request recorded a fresh 429\n // Retry-After, and erasing the window would put a just-throttled node back into\n // rotation early. The window expires on its own (short for header-less; the server's\n // value for an explicit Retry-After).\n h.rateLimitStreak = 0\n if (api) {\n // A successful API call clears that API's failure counter — but never an\n // ACTIVE defective-response cooldown: the \"success\" may itself be an\n // unvalidated read from the same lying node (validated calls are the\n // minority of traffic), and re-admitting it early defeats the decisive\n // penalty. That window expires on its own, like rateLimitedUntil above.\n const apiFail = h.apiFailures.get(api)\n if (!apiFail || !(apiFail.defective && apiFail.cooldownUntil > Date.now())) {\n h.apiFailures.delete(api)\n }\n }\n if (typeof durationMs === 'number' && Number.isFinite(durationMs) && durationMs >= 0) {\n // Latency profiles use the finest key available (full method / endpoint\n // template); the API prefix is only a fallback so bare callers still\n // profile SOMETHING. Failure state above stays per-API on purpose.\n this.recordLatency(h, durationMs, profileKey ?? api)\n }\n }\n\n /**\n * Record a *slow* failed call as a latency signal. The failure counters are\n * updated separately (recordFailure/recordError); this only feeds the EWMA so a\n * node that returns 200-but-too-slow, times out, or returns a slow 5xx is ranked\n * on its real slowness. Callers pass the MEASURED elapsed ms and only call this\n * when the call was genuinely slow (≥ LATENCY_SLOW_FAILURE_MS) — an instant\n * connection failure (a *down* node) must NOT look \"slow\".\n */\n recordSlowFailure(node: string, durationMs: number, profileKey?: string): void {\n if (!Number.isFinite(durationMs) || durationMs < LATENCY_SLOW_FAILURE_MS) return\n this.recordLatency(this.getOrCreate(node), durationMs, profileKey)\n }\n\n /**\n * Usable latency profile (EWMA ms), or `undefined` while unproven or stale.\n * With a `profileKey` (full RPC method / REST api+endpoint template),\n * returns that (node, key) profile ONLY — deliberately no fallback to the\n * mixed global profile, because an average dominated by cheap calls is the\n * wrong deadline baseline for a heavy method (that fallback is exactly the\n * \"2s window starves get_account_history\" failure mode). Without a key,\n * returns the global ranking profile. Both follow the same \"profiled and\n * fresh\" gate as the ranker.\n * @internal\n */\n getUsableLatencyMs(node: string, profileKey?: string): number | undefined {\n const h = this.health.get(node)\n if (!h) return undefined\n const now = Date.now()\n if (profileKey !== undefined) {\n const p = h.apiLatency.get(profileKey)\n return p &&\n p.sampleCount >= LATENCY_MIN_SAMPLES &&\n now - p.updatedAt <= LATENCY_MAX_AGE_MS\n ? p.ewmaMs\n : undefined\n }\n return this.isLatencyUsable(h, now) ? h.ewmaLatencyMs : undefined\n }\n\n /**\n * Censored latency sample for a request that was ABORTED because a hedge\n * completed first while it was still in flight. The elapsed-at-abort is a\n * *lower bound* on the true latency, so folding it in can only move the\n * node's EWMA toward the truth, never below it — which is what lets repeated\n * hedge-wins reorder the pool. Deliberately does NOT touch the failure\n * counters or rate-limit state: the node returned no error, it was merely\n * slow, and treating cancellation as failure would flap `isNodeHealthy`.\n * Callers must NOT record this for a primary that already settled on its own\n * (its outcome was recorded normally; a second sample would be fabricated).\n * Bypasses the `recordSlowFailure` 2s floor (a hedge can win well below it).\n * By construction the elapsed is ≥ the hedge delay, so only a degenerate\n * near-zero epsilon needs rejecting — anything under one LAN round trip is\n * noise, not a latency measurement.\n * @internal\n */\n recordCensoredLatency(node: string, elapsedMs: number, profileKey?: string): void {\n if (!Number.isFinite(elapsedMs) || elapsedMs < 50) return\n this.recordLatency(this.getOrCreate(node), elapsedMs, profileKey)\n }\n\n /**\n * Fold a latency sample into the node's global EWMA (warmup + usability\n * bookkeeping) and, when a profile key is given, into that (node, key)\n * profile — the global one ranks nodes, the keyed one calibrates deadlines.\n */\n private recordLatency(h: NodeHealth, durationMs: number, profileKey?: string): void {\n const now = Date.now()\n // A profile older than the usable window starts fresh, so an idled process\n // re-learns from scratch rather than ranking on hour-old data. Every keyed\n // profile shares this clock (each sample updates both), so global-stale\n // implies every keyed profile is stale too — clear the map rather than\n // leave never-again-read tombstone entries for the life of the process.\n if (h.latencyUpdatedAt > 0 && now - h.latencyUpdatedAt > LATENCY_MAX_AGE_MS) {\n h.ewmaLatencyMs = undefined\n h.latencySampleCount = 0\n h.apiLatency.clear()\n }\n h.ewmaLatencyMs =\n h.ewmaLatencyMs === undefined\n ? durationMs\n : LATENCY_EWMA_ALPHA * durationMs + (1 - LATENCY_EWMA_ALPHA) * h.ewmaLatencyMs\n h.latencySampleCount++\n h.latencyUpdatedAt = now\n\n if (profileKey !== undefined) {\n const p = h.apiLatency.get(profileKey)\n if (!p || now - p.updatedAt > LATENCY_MAX_AGE_MS) {\n h.apiLatency.set(profileKey, { ewmaMs: durationMs, sampleCount: 1, updatedAt: now })\n } else {\n p.ewmaMs = LATENCY_EWMA_ALPHA * durationMs + (1 - LATENCY_EWMA_ALPHA) * p.ewmaMs\n p.sampleCount++\n p.updatedAt = now\n }\n }\n }\n\n recordFailure(node: string, api?: string): void {\n const h = this.getOrCreate(node)\n if (api) {\n // API-specific failure: only update the per-API tracker.\n // This prevents e.g. 3 rc_api failures from marking the node\n // globally unhealthy for condenser_api too.\n const now = Date.now()\n const existing: {\n count: number\n cooldownUntil: number\n lastFailureTime: number\n defective?: boolean\n } = h.apiFailures.get(api) ?? { count: 0, cooldownUntil: 0, lastFailureTime: 0 }\n // Reset counter if previous cooldown expired OR last failure was >30s ago\n // (avoids sticky penalties from sparse failures hours apart)\n if (\n (existing.cooldownUntil > 0 && existing.cooldownUntil <= now) ||\n (existing.lastFailureTime > 0 && now - existing.lastFailureTime > 30_000)\n ) {\n existing.count = 0\n existing.cooldownUntil = 0\n }\n existing.count++\n existing.lastFailureTime = now\n if (existing.count >= MAX_API_FAILURES_BEFORE_COOLDOWN) {\n existing.cooldownUntil = now + API_COOLDOWN_MS\n }\n h.apiFailures.set(api, existing)\n } else {\n // Transport-level failure (no specific API): update global counter\n h.consecutiveFailures++\n h.lastFailureTime = Date.now()\n }\n }\n\n /**\n * A response that failed the caller's payload validation is a decisive,\n * reproducible node fault — the node answered 200 with data the caller KNOWS\n * to be impossible — so it trips the per-API cooldown immediately instead of\n * accruing ordinary strikes. Deliberately its own method rather than\n * recordFailure × N: ordinary strikes are cleared by any success, and a\n * top-ranked lying node keeps recording successes on the unvalidated calls\n * between probes, which would reset its strikes forever and keep it in\n * rotation (observed live). Scope stays per-API: the node may be perfectly\n * healthy for its other API families.\n */\n recordDefectiveResponse(node: string, api: string): void {\n const h = this.getOrCreate(node)\n const now = Date.now()\n const existing: {\n count: number\n cooldownUntil: number\n lastFailureTime: number\n defective?: boolean\n } = h.apiFailures.get(api) ?? { count: 0, cooldownUntil: 0, lastFailureTime: 0 }\n existing.count = Math.max(existing.count + 1, MAX_API_FAILURES_BEFORE_COOLDOWN)\n existing.lastFailureTime = now\n existing.cooldownUntil = now + API_COOLDOWN_MS\n existing.defective = true\n h.apiFailures.set(api, existing)\n }\n\n /**\n * Cool down a rate-limited node. Honors an explicit server `Retry-After`\n * (`retryAfterMs`) exactly — the server told us when to return. With no usable\n * header, applies escalating backoff: BASE, 2×BASE, 4×BASE … capped at\n * RATE_LIMIT_MAX_MS, indexed by the node's consecutive-429 streak (reset by a\n * success or after RATE_LIMIT_STREAK_RESET_MS of quiet). This stops a throttled\n * public node from being re-admitted every 10s and re-hammered under sustained\n * load, which matters most when the fleet's own unlimited node is removed.\n */\n recordRateLimit(node: string, retryAfterMs?: number): void {\n const h = this.getOrCreate(node)\n const now = Date.now()\n // Expire a stale streak so an occasional throttle hours apart doesn't compound.\n if (h.rateLimitStreak > 0 && now - h.lastRateLimitAt > RATE_LIMIT_STREAK_RESET_MS) {\n h.rateLimitStreak = 0\n }\n const hasHeader = typeof retryAfterMs === 'number' && Number.isFinite(retryAfterMs) && retryAfterMs > 0\n const cooldown = hasHeader\n ? retryAfterMs!\n : Math.min(RATE_LIMIT_BASE_MS * 2 ** h.rateLimitStreak, RATE_LIMIT_MAX_MS)\n // Only a header-less 429 advances the escalation streak — an explicit Retry-After is\n // honored exactly and must not compound the header-less backoff (else several\n // Retry-After 429s would push a later header-less 429 straight to the 60s cap).\n if (!hasHeader) h.rateLimitStreak++\n h.lastRateLimitAt = now\n // Explicit Retry-After is honored exactly (the server's current instruction). A\n // header-less cooldown may only move the window FORWARD — it must never truncate a\n // longer window already set, e.g. a node parked for an hour by an explicit\n // Retry-After that is later retried as a last resort and returns a header-less 429\n // must not have its 1h window cut down to the 10s base.\n h.rateLimitedUntil = hasHeader\n ? now + cooldown\n : Math.max(h.rateLimitedUntil, now + cooldown)\n h.consecutiveFailures++\n h.lastFailureTime = now\n }\n\n /** Record an observed head_block_number for this node. */\n recordHeadBlock(node: string, blockNum: number): void {\n if (!blockNum || !Number.isFinite(blockNum)) return\n const h = this.getOrCreate(node)\n h.headBlock = blockNum\n h.headBlockUpdatedAt = Date.now()\n }\n\n /**\n * Consensus head block from recent observations. Uses the median rather than the\n * max to prevent a single bad/misconfigured node from poisoning the reference.\n * A node reporting an inflated head_block won't affect the median unless the\n * majority of nodes agree on that range.\n */\n private consensusHeadBlock(): number {\n const now = Date.now()\n const recent: number[] = []\n for (const h of this.health.values()) {\n if (h.headBlock > 0 && now - h.headBlockUpdatedAt <= HEAD_BLOCK_MAX_AGE_MS) {\n recent.push(h.headBlock)\n }\n }\n if (recent.length < 2) return 0 // Need at least 2 observations to compare\n recent.sort((a, b) => a - b)\n // Median: for even length, use the lower-middle value (conservative)\n return recent[Math.floor((recent.length - 1) / 2)]\n }\n\n /** True if this node is healthy (globally and for the given API if provided). */\n isNodeHealthy(node: string, api?: string): boolean {\n const h = this.health.get(node)\n if (!h) return true // unknown nodes assumed healthy\n const now = Date.now()\n\n // Rate-limited and cooldown hasn't expired\n if (h.rateLimitedUntil > now) return false\n\n // Too many consecutive failures within the last 30 seconds\n if (h.consecutiveFailures >= 3 && now - h.lastFailureTime < 30_000) return false\n\n // Per-API cooldown: node may be healthy overall but missing this API plugin\n if (api) {\n const apiFail = h.apiFailures.get(api)\n if (apiFail && apiFail.cooldownUntil > now) return false\n }\n\n // Head-block staleness: deprioritize nodes lagging behind the consensus head\n const best = this.consensusHeadBlock()\n if (\n best > 0 &&\n h.headBlock > 0 &&\n now - h.headBlockUpdatedAt <= HEAD_BLOCK_MAX_AGE_MS &&\n best - h.headBlock > STALE_BLOCK_THRESHOLD\n ) {\n return false\n }\n\n return true\n }\n\n /**\n * Order nodes best-first: healthy nodes sorted by adaptive latency score, then\n * unhealthy nodes appended. Capability / staleness / rate-limit filtering stays in\n * `isNodeHealthy` and is unchanged — latency only reorders WITHIN the healthy set,\n * and only WITHIN the array it is handed (so it never leaves the configured list).\n *\n * One ordering per pass MAY promote a healthy node overdue for a re-probe (never\n * sampled, or not sampled within LATENCY_REPROBE_MS) to the front — single-flight\n * via `lastProbeAt`. This is what lets a demoted node climb back when it recovers,\n * and profiles a node that organic traffic (always served by a faster peer) never\n * reaches. Cold start: with no profiles, every node scores the neutral prior and the\n * stable config-index tiebreak yields the original order — i.e. today's behavior.\n */\n getOrderedNodes(nodes: string[], api?: string): string[] {\n const healthy: string[] = []\n const unhealthy: string[] = []\n for (const node of nodes) {\n if (this.isNodeHealthy(node, api)) {\n healthy.push(node)\n } else {\n unhealthy.push(node)\n }\n }\n if (healthy.length <= 1) {\n return [...healthy, ...unhealthy]\n }\n const now = Date.now()\n // Every score in THIS pass falls back to config index on ties → a total,\n // transitive order with no memo (so no stale-denominator inversions).\n const ordered = healthy\n .map((node, i) => ({ node, i, score: this.scoreNode(node, now) }))\n .sort((a, b) => a.score - b.score || a.i - b.i)\n .map((d) => d.node)\n const probe = this.pickReprobeCandidate(healthy, now)\n if (probe && ordered[0] !== probe) {\n return [probe, ...ordered.filter((n) => n !== probe), ...unhealthy]\n }\n return [...ordered, ...unhealthy]\n }\n\n /** A node's latency is usable for ranking only if profiled (≥ MIN_SAMPLES) and fresh. */\n private isLatencyUsable(h: NodeHealth | undefined, now: number): boolean {\n return (\n !!h &&\n h.ewmaLatencyMs !== undefined &&\n h.latencySampleCount >= LATENCY_MIN_SAMPLES &&\n now - h.latencyUpdatedAt <= LATENCY_MAX_AGE_MS\n )\n }\n\n /**\n * Ranking score (lower = better). Unproven/warming nodes get a fixed neutral prior\n * so they sit ahead of a proven-slow node but behind a proven-fast one, and make at\n * most one rank transition when they cross MIN_SAMPLES (no churn).\n */\n private scoreNode(node: string, now: number): number {\n const h = this.health.get(node)\n if (!this.isLatencyUsable(h, now)) return LATENCY_UNPROVEN_PRIOR_MS\n return h!.ewmaLatencyMs!\n }\n\n /**\n * At most one healthy node overdue for an exploratory re-probe: never sampled, or\n * neither sampled nor re-probed within LATENCY_REPROBE_MS. Returns the stalest such\n * node and stamps `lastProbeAt` to single-flight it against concurrent orderings.\n *\n * Note: `getOrCreate` here materializes a health entry per node in the passed list.\n * The node list (`config.nodes`/`restNodes`) is treated as effectively static — set\n * once via `setNodes` — so the map is bounded. If a host is ever removed from the\n * list at runtime its stale entry is simply ignored (never re-surfaced) and is a\n * negligible, bounded amount of memory.\n */\n private pickReprobeCandidate(healthy: string[], now: number): string | undefined {\n const threshold = now - LATENCY_REPROBE_MS\n let cand: string | undefined\n let candTouch = Infinity\n for (const n of healthy) {\n const h = this.getOrCreate(n)\n const touch = Math.max(h.latencyUpdatedAt, h.lastProbeAt)\n if (touch <= threshold && touch < candTouch) {\n cand = n\n candTouch = touch\n }\n }\n if (cand) this.getOrCreate(cand).lastProbeAt = now\n return cand\n }\n}\n\n// Exported for the co-located specs only (asserting the call sites' effect on\n// health). Not re-exported by hive-tx/index.ts, so NOT part of the public API.\n// @internal\nexport const rpcHealthTracker = new NodeHealthTracker()\n// @internal\nexport const restHealthTracker = new NodeHealthTracker()\n\n// ── Hedged-request budget ────────────────────────────────────────────────────\n\n/**\n * Token bucket bounding hedged (duplicated) read requests to a fraction of\n * overall traffic. A hedge spends 1 token; every un-hedged success refills\n * `config.resilience.hedgeRefillPerSuccess` (default 0.1 ⇒ steady-state hedge\n * rate ≤ ~9% of successful traffic, with bursts up to `hedgeBucketCapacity`).\n * The self-limiting property this buys: under pool-wide slowness nearly every\n * request wants to hedge while successes (the refills) stagnate, so the bucket\n * drains and hedging auto-disables instead of doubling load into public-node\n * rate limits — the standard hedged-request guard (cf. gRPC's hedging throttle;\n * Dean & Barroso, \"The Tail at Scale\"). One instance per process shared across\n * concurrent calls; plain synchronous mutation is race-free on the JS event\n * loop. Reads config live so runtime tuning via `setResilience` applies.\n * @internal Exported for testing only.\n */\nexport class HedgeBudget {\n private tokens = config.resilience.hedgeBucketCapacity\n\n trySpend(): boolean {\n this.clamp()\n // Epsilon guards fractional-refill float accumulation (10 × 0.1 < 1 in FP64).\n if (this.tokens >= 1 - 1e-9) {\n this.tokens -= 1\n return true\n }\n return false\n }\n\n refill(): void {\n this.clamp()\n this.tokens = Math.min(\n config.resilience.hedgeBucketCapacity,\n this.tokens + config.resilience.hedgeRefillPerSuccess\n )\n }\n\n /** Capacity may be lowered at runtime; never let stored tokens exceed it. */\n private clamp(): void {\n if (this.tokens > config.resilience.hedgeBucketCapacity) {\n this.tokens = config.resilience.hedgeBucketCapacity\n }\n }\n\n /** @internal test hook */\n get available(): number {\n return this.tokens\n }\n\n /** @internal test hook */\n reset(tokens = config.resilience.hedgeBucketCapacity): void {\n this.tokens = tokens\n }\n}\n\n// @internal — exported for the co-located spec only, like the trackers above.\nexport const rpcHedgeBudget = new HedgeBudget()\n\n/**\n * Per-attempt timeout for a read call. A node profiled for THIS profile key\n * (full RPC method / REST api+endpoint template) is given `factor × EWMA` —\n * floored (≥2s) so a moderate spike on a fast call is not cut off, and capped\n * at the caller's ceiling so this can only ever *shorten* the wait. The\n * effect: a node running far above its own baseline for this exact kind of\n * call is abandoned early and failover starts in seconds instead of the full\n * fixed window.\n *\n * Two deliberate exclusions:\n * - `explicit` callers (who passed a timeout argument) keep exactly what they\n * asked for — the documented meaning of the parameter is preserved, and a\n * consumer who knows their call is heavy is never second-guessed.\n * - The profile is per (node, full method) with NO fallback to the node's\n * mixed global EWMA or even the API-prefix average: a baseline dominated by\n * cheap `condenser_api.get_accounts` calls must not set the deadline for a\n * heavy `condenser_api.get_account_history`. An unprofiled (node, method)\n * pair keeps the caller's timeout unchanged (cold start == old behavior).\n */\nfunction adaptiveAttemptTimeout(\n tracker: NodeHealthTracker,\n node: string,\n profileKey: string,\n callerTimeout: number,\n explicit: boolean\n): number {\n const r = config.resilience\n if (!r.adaptiveTimeout || explicit) return callerTimeout\n const ewma = tracker.getUsableLatencyMs(node, profileKey)\n if (ewma === undefined) return callerTimeout\n // EWMAs are fractional, but the result feeds AbortSignal.timeout(), which\n // Node rejects with ERR_OUT_OF_RANGE for non-integer delays (browsers coerce).\n return Math.ceil(\n Math.min(callerTimeout, Math.max(r.adaptiveTimeoutFloorMs, r.adaptiveTimeoutFactor * ewma))\n )\n}\n\n// ── Internal helpers ────────────────────────────────────────────────────────\n\n/** Record a caught error on the health tracker (handles NodeError to avoid double-counting). */\nfunction recordError(tracker: NodeHealthTracker, node: string, e: any, api?: string): void {\n if (e instanceof NodeError) {\n if (e.isRateLimit) {\n // 0 → no usable Retry-After → let recordRateLimit apply escalating backoff.\n tracker.recordRateLimit(node, e.rateLimitMs || undefined)\n } else {\n tracker.recordFailure(node, api)\n }\n } else if (e instanceof RPCError) {\n // RPC-level errors are API-specific (e.g., disabled API)\n tracker.recordFailure(node, api)\n } else {\n // Transport-level failures (DNS, TLS, timeout) affect the whole node\n tracker.recordFailure(node)\n }\n}\n\n/**\n * Passively extract head_block_number from known RPC responses\n * (e.g. `condenser_api.get_dynamic_global_properties`, `database_api.get_dynamic_global_properties`).\n * Silently ignores responses without that shape.\n */\nfunction tryRecordHeadBlock(\n tracker: NodeHealthTracker,\n node: string,\n method: string,\n result: any\n): void {\n if (!result || typeof result !== 'object') return\n if (!method.includes('get_dynamic_global_properties')) return\n const block = (result as any).head_block_number\n if (typeof block === 'number') {\n tracker.recordHeadBlock(node, block)\n }\n}\n\n// ── AbortSignal helpers (browser fallbacks) ─────────────────────────────────\n\n/**\n * Build a TimeoutError \"reason\" for an aborted signal.\n * Prefers the standard `DOMException` when available. Runtimes that ship\n * `AbortController` without `DOMException` (notably React Native / Hermes,\n * old Node < 17) fall back to a plain Error tagged with `name: 'TimeoutError'`\n * — which is what consumers actually check on `signal.reason`.\n */\nfunction createTimeoutReason(): Error {\n if (typeof DOMException !== 'undefined') {\n return new DOMException('The operation was aborted due to timeout', 'TimeoutError')\n }\n const err = new Error('The operation was aborted due to timeout')\n err.name = 'TimeoutError'\n return err\n}\n\n/** AbortSignal.timeout polyfill for pre-Chrome 103 / pre-Safari 16.4.\n * Returns { signal, cleanup } — caller must invoke cleanup() on success\n * to clear the dangling timer. */\nfunction createTimeoutSignal(ms: number): { signal: AbortSignal; cleanup: () => void } {\n // Node's AbortSignal.timeout throws ERR_OUT_OF_RANGE on fractional delays\n // (browsers coerce them), so guard every caller here.\n ms = Math.ceil(ms)\n if (typeof AbortSignal.timeout === 'function') {\n return { signal: AbortSignal.timeout(ms), cleanup: () => {} }\n }\n const controller = new AbortController()\n const timer = setTimeout(() => controller.abort(createTimeoutReason()), ms)\n return { signal: controller.signal, cleanup: () => clearTimeout(timer) }\n}\n\n/** AbortSignal.any polyfill for pre-Chrome 116 / pre-Safari 17.4.\n * Returns { signal, cleanup } — caller must invoke cleanup() on success\n * to remove listeners from the input signals (prevents leaks when the\n * same long-lived signal is reused across many callRPC invocations). */\nfunction mergeSignals(\n primary: AbortSignal,\n secondary?: AbortSignal\n): { signal: AbortSignal; cleanup: () => void } {\n if (!secondary) return { signal: primary, cleanup: () => {} }\n if (typeof AbortSignal.any === 'function') {\n return { signal: AbortSignal.any([primary, secondary]), cleanup: () => {} }\n }\n // Fallback: controller that aborts with the winning signal's reason\n const controller = new AbortController()\n if (primary.aborted) {\n controller.abort(primary.reason)\n return { signal: controller.signal, cleanup: () => {} }\n }\n if (secondary.aborted) {\n controller.abort(secondary.reason)\n return { signal: controller.signal, cleanup: () => {} }\n }\n\n const onPrimaryAbort = () => controller.abort(primary.reason)\n const onSecondaryAbort = () => controller.abort(secondary.reason)\n primary.addEventListener('abort', onPrimaryAbort, { once: true })\n secondary.addEventListener('abort', onSecondaryAbort, { once: true })\n\n const cleanup = () => {\n primary.removeEventListener('abort', onPrimaryAbort)\n secondary.removeEventListener('abort', onSecondaryAbort)\n }\n return { signal: controller.signal, cleanup }\n}\n\n/**\n * Low-level JSON-RPC call to a single node. No failover.\n * Throws RPCError for blockchain rejections, NodeError for HTTP 429/5xx,\n * and generic Error for other transport failures.\n * @param shouldRetry - If true, retries once on the same node for transient errors.\n */\nconst jsonRPCCall = async (\n url: string,\n method: string,\n params: any,\n timeout = config.timeout,\n shouldRetry = false,\n externalSignal?: AbortSignal\n) => {\n const id = Math.floor(Math.random() * 100_000_000)\n const body = {\n jsonrpc: '2.0',\n method,\n params,\n id\n }\n // Merge the per-call timeout with any external abort signal (e.g., SSR\n // request cancellation). Either one firing cancels the fetch.\n // Fallbacks for browsers without AbortSignal.timeout (pre-Chrome 103)\n // or AbortSignal.any (pre-Chrome 116).\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(timeout)\n const { signal, cleanup: cleanupMerge } = mergeSignals(tSignal, externalSignal)\n const cleanup = () => {\n cleanupTimeout()\n cleanupMerge()\n }\n\n try {\n const res = await fetch(url, {\n method: 'POST',\n body: JSON.stringify(body),\n headers: { 'Content-Type': 'application/json', ...serverIdentityHeaders() },\n signal\n })\n\n // Handle HTTP-level errors before parsing JSON.\n // Throw NodeError so callers can record health exactly once.\n if (res.status === 429) {\n throw new NodeError(url, `HTTP 429 Rate Limited`, {\n rateLimitMs: parseRetryAfterMs(res.headers.get('Retry-After')),\n isRateLimit: true\n })\n }\n // Any other 5xx is a node-level failure. Common cases:\n // 502 Bad Gateway — upstream HAF/jussi down\n // 503 Service Unavail — node draining / maintenance\n // 504 Gateway Timeout — slow upstream\n // 520-530 — Cloudflare interstitials (1033 tunnel error → 530)\n // Without this branch, the HTML error-page body would fall into res.json()\n // and throw a generic SyntaxError downstream, making failover guess at\n // whether the request reached the node.\n if (res.status >= 500 && res.status < 600) {\n throw new NodeError(url, `HTTP ${res.status} from ${url}`)\n }\n\n const result = (await res.json()) as CallResponse\n if (\n !result ||\n typeof result.id === 'undefined' ||\n result.id !== id ||\n result.jsonrpc !== '2.0'\n ) {\n throw new Error('JSONRPC id mismatch')\n }\n if ('result' in result) {\n return result.result\n }\n if ('error' in result) {\n const e = result.error\n if ('message' in e && 'code' in e) {\n throw new RPCError(e)\n }\n throw result.error\n }\n // No result and no error?\n throw result\n } catch (e) {\n if (e instanceof RPCError) {\n throw e\n }\n // NodeError should not be retried on the same node - it's an HTTP status issue\n if (e instanceof NodeError) {\n throw e\n }\n if (externalSignal?.aborted) {\n throw e\n }\n if (shouldRetry) {\n return jsonRPCCall(url, method, params, timeout, false, externalSignal)\n }\n throw e\n } finally {\n cleanup()\n }\n}\n\n/** Small jitter delay between failover attempts to prevent thundering herd. */\nfunction jitterDelay(): Promise {\n return sleep(50 + Math.random() * 50)\n}\n\n// ── Hedged read attempt ─────────────────────────────────────────────────────\n\n/**\n * One hedged READ attempt: start the primary node, and if it is still pending\n * after `max(hedgeDelayFloorMs, hedgeDelayFactor × primary EWMA)`, race a\n * duplicate against the next healthy untried node. First success wins and the\n * loser is aborted. Resolution rules (mirroring the sequential path exactly):\n *\n * - External abort (caller cancelled): reject immediately, record nothing.\n * - Authoritative RPCError (non-node-level blockchain rejection) from either\n * leg: an answer, not a fault — abort the other leg, reject immediately.\n * - Failover-class failure: record health for that leg (recordError +\n * recordSlowFailure — identical to the sequential catch); if the other leg\n * is still running, keep waiting on it; when both have failed, reject with\n * the last error so the outer loop continues its normal failover.\n * - Primary fails BEFORE the hedge fires: reject immediately (plain failover —\n * hedging only ever races slowness, never a node that failed fast).\n *\n * Health/budget bookkeeping on a win: winner records a normal success sample;\n * if the hedge won, the primary gets a censored latency sample (elapsed at\n * abort — a lower bound on its true latency) so repeated hedge-wins reorder\n * the pool; if the primary won without the hedge ever firing, the budget\n * refills. An aborted hedge leg records nothing (it was never given a fair\n * run). Broadcasts NEVER go through this path (double-broadcast risk) — it is\n * wired into `callRPC` only.\n */\nfunction hedgedRpcAttempt(opts: {\n method: string\n params: any[] | object\n api: string\n primary: string\n /**\n * Pre-selected healthy untried peers (up to a few, in rank order). The\n * actual hedge target is drawn uniformly at random at FIRE time: with many\n * concurrent callers behind one origin IP, always duplicating to the single\n * next-ranked node would concentrate the whole hedge stream on it and could\n * trip its per-IP rate limit — spreading over the top candidates keeps the\n * same budget bound without a single-target hotspot. Marked tried only if\n * the hedge actually fires.\n */\n hedgePool: string[]\n callerTimeout: number\n /** Caller passed an explicit timeout — adaptive shortening is disabled. */\n explicitTimeout: boolean\n /** The call's wall-clock deadline: a hedge must not START past it (it would\n * be a brand-new request the outer loop itself would refuse to start). */\n deadlineAt: number\n externalSignal?: AbortSignal\n /** Lets the outer loop add the hedge node to its tried-set at fire time. */\n onHedgeFired: (node: string) => void\n /** Caller-supplied payload validation — see callRPC's `validate` param. */\n validate?: (result: unknown) => boolean\n}): Promise {\n const {\n method,\n params,\n api,\n primary,\n hedgePool,\n callerTimeout,\n explicitTimeout,\n deadlineAt,\n externalSignal,\n onHedgeFired,\n validate\n } = opts\n return new Promise((resolve, reject) => {\n let done = false\n let pendingLegs = 0\n let hedgeFired = false\n /** The primary settled on its own (success OR failure). A censored latency\n * sample is only valid for a primary that was still in flight when the\n * hedge won — recording one after the primary already failed would\n * fabricate a second sample for a request whose outcome was recorded. */\n let primarySettled = false\n let lastError: any\n let hedgeTimer: ReturnType | undefined\n let primaryStart = 0\n const controllers: AbortController[] = []\n\n /** Settle exactly once: clear the timer, abort every other in-flight leg\n * (their rejections land behind the `done` guard and are dropped). */\n const finish = (settle: () => void) => {\n if (done) return\n done = true\n if (hedgeTimer !== undefined) {\n clearTimeout(hedgeTimer)\n hedgeTimer = undefined\n }\n for (const c of controllers) {\n if (!c.signal.aborted) c.abort()\n }\n settle()\n }\n\n const startLeg = (node: string, isHedge: boolean) => {\n pendingLegs++\n const controller = new AbortController()\n controllers.push(controller)\n // Merge our cancellation handle with the caller's signal; jsonRPCCall\n // merges the result with its own per-attempt timeout signal.\n const merged = mergeSignals(controller.signal, externalSignal)\n const legTimeout = adaptiveAttemptTimeout(\n rpcHealthTracker,\n node,\n method,\n callerTimeout,\n explicitTimeout\n )\n const start = Date.now()\n if (!isHedge) primaryStart = start\n jsonRPCCall(node, method, params, legTimeout, false, merged.signal)\n .then((res) => {\n merged.cleanup()\n pendingLegs--\n if (!isHedge) primarySettled = true\n if (done) return\n if (validate && !validate(res)) {\n // Well-formed envelope, impossible payload: a node fault the\n // HTTP/JSON-RPC layers cannot see. Same handling as the catch\n // path — record the fault against this node's API health, never\n // record a success for a lie, and let the other leg still win.\n rpcHealthTracker.recordDefectiveResponse(node, api)\n lastError = new Error(\n `[hive-tx] response validation failed for ${method} from ${node}`\n )\n if (!isHedge && !hedgeFired) {\n finish(() => reject(lastError))\n return\n }\n if (pendingLegs === 0) {\n finish(() => reject(lastError))\n }\n return\n }\n rpcHealthTracker.recordSuccess(node, api, Date.now() - start, method)\n tryRecordHeadBlock(rpcHealthTracker, node, method, res)\n if (isHedge) {\n if (!primarySettled) {\n // Primary lost the race while still in flight: censored sample\n // (lower bound of its true latency) so the ranker learns without\n // marking it as failed. A primary that already failed was fully\n // recorded by its own catch — nothing more to record.\n rpcHealthTracker.recordCensoredLatency(primary, Date.now() - primaryStart, method)\n }\n } else if (!hedgeFired) {\n rpcHedgeBudget.refill()\n }\n finish(() => resolve(res as T))\n })\n .catch((e) => {\n merged.cleanup()\n pendingLegs--\n if (!isHedge) primarySettled = true\n if (done) return // aborted loser (or late settle) — already resolved\n if (externalSignal?.aborted) {\n // Caller cancelled — bail without recording (mirrors sequential path).\n finish(() => reject(e))\n return\n }\n if (e instanceof RPCError && !isNodeLevelRPCError(e.code, e.message)) {\n // Authoritative rejection: an answer, not a node fault.\n finish(() => reject(e))\n return\n }\n // Failover-class failure — record exactly as the sequential catch does.\n recordError(rpcHealthTracker, node, e, api)\n rpcHealthTracker.recordSlowFailure(node, Date.now() - start, method)\n lastError = e\n if (!isHedge && !hedgeFired) {\n // Primary failed fast, before the hedge delay: plain failover.\n finish(() => reject(e))\n return\n }\n if (pendingLegs === 0) {\n finish(() => reject(lastError))\n }\n // else: the other leg is still in flight and may still win.\n })\n }\n\n startLeg(primary, false)\n\n // Delay from the primary's per-method profile (the eligibility gate\n // ensured it is usable); a raced expiry just means the floor applies. It is\n // then clamped BELOW the primary's own attempt window: for a heavy API\n // (EWMA > window/hedgeDelayFactor) the un-clamped delay would land past\n // the primary's timeout-abort — which clears this timer — so hedging would\n // silently never fire for exactly the heavy tail it exists to protect.\n // Firing at ~80% of the window keeps the duplicate meaningful (it starts\n // while the primary is still allowed to win) for every profile shape.\n const ewma = rpcHealthTracker.getUsableLatencyMs(primary, method) ?? 0\n const primaryWindow = adaptiveAttemptTimeout(\n rpcHealthTracker,\n primary,\n method,\n callerTimeout,\n explicitTimeout\n )\n const delay = Math.min(\n Math.max(config.resilience.hedgeDelayFloorMs, config.resilience.hedgeDelayFactor * ewma),\n 0.8 * primaryWindow\n )\n hedgeTimer = setTimeout(() => {\n hedgeTimer = undefined\n if (done || externalSignal?.aborted) return\n // Never START a duplicate past the call's wall-clock deadline — it would\n // extend the hold and spend a token on work the outer loop would refuse.\n if (Date.now() >= deadlineAt) return\n // Candidates were selected before the delay elapsed — re-check health at\n // fire time (one may have been rate-limited meanwhile) BEFORE spending a\n // token, so a stale pool costs nothing. Random draw spreads concurrent\n // callers' duplicates across the top candidates (see hedgePool doc).\n const live = hedgePool.filter((n) => rpcHealthTracker.isNodeHealthy(n, api))\n if (live.length === 0) return\n const target = live[Math.floor(Math.random() * live.length)]\n // Budget check at fire time, not arm time: only actual duplicates spend.\n if (!rpcHedgeBudget.trySpend()) return\n hedgeFired = true\n onHedgeFired(target)\n startLeg(target, true)\n }, delay)\n })\n}\n\n// ── Public API: callRPC ─────────────────────────────────────────────────────\n\n/**\n * Makes API calls to Hive blockchain nodes with automatic retry and failover support.\n * Uses per-request retry counters, node health tracking, jitter between retries,\n * and HTTP status awareness (429 rate limiting, 503).\n *\n * If the current node fails, it will automatically try the next healthy node.\n * When all nodes have been tried, wraps around to give earlier nodes another chance\n * until the full retry budget (config.retry) is exhausted.\n * RPCErrors (valid blockchain rejections) are never retried.\n *\n * @param method - The API method name (e.g., 'condenser_api.get_accounts')\n * @param params - Parameters for the API method as array or object\n * @param timeout - Request timeout in milliseconds (default: config.timeout)\n * @param retry - Maximum number of retry attempts (default: config.retry). The\n * wall-clock budget (`config.resilience.totalBudgetFactor` × timeout) may end\n * the failover walk before the retry count is exhausted.\n * @param validate - Optional payload validation. Some nodes return a valid\n * JSON-RPC envelope carrying an impossible payload (e.g. account rows with\n * metadata fields stripped to \"\"), which no transport-level check can catch.\n * When the callback returns false the response is treated as a node fault:\n * recorded against that node's per-API health (repeat offenders get an API\n * cooldown and are deprioritized) and the failover walk continues to the\n * next node instead of returning the lie. Keep validators conservative —\n * reject only payloads the caller KNOWS cannot be correct, or a strict\n * validator turns every node's honest answer into a failover storm.\n * @returns Promise resolving to the API response\n * @throws {RPCError} On blockchain-level errors (bad params, missing authority, etc.)\n * @throws {Error} If all retry attempts fail\n *\n * @example\n * ```typescript\n * import { callRPC } from 'hive-tx'\n *\n * // Get account information\n * const accounts = await callRPC('condenser_api.get_accounts', [['alice']])\n *\n * // Custom timeout and retry settings\n * const data = await callRPC('condenser_api.get_content', ['alice', 'test-post'], 10_000, 5)\n * ```\n */\nexport const callRPC = async (\n method: string,\n params: any[] | object = [],\n timeout?: number,\n retry = config.retry,\n signal?: AbortSignal,\n validate?: (result: unknown) => boolean\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an array')\n }\n if (config.nodes.length === 0) {\n throw new Error('config.nodes is empty')\n }\n // An explicit timeout argument is authoritative: adaptive shortening only\n // applies to callers who left the window to the SDK (timeout === undefined),\n // so `callRPC(m, p, 10_000)` still means \"give each attempt 10s\" exactly.\n const explicitTimeout = timeout !== undefined\n const ceiling = timeout ?? config.timeout\n const api = apiOf(method)\n // Wall-clock budget across ALL failover attempts. Without it the worst case\n // is (retry+1) × timeout ≈ 30s — exactly the render pile-up this feature\n // exists to prevent — whenever the WHOLE pool is slow (adaptive timeouts\n // rise with the EWMAs and hedging self-throttles, both by design). The\n // deadline is checked before each new attempt AND before a hedge fires; an\n // in-flight attempt still finishes its own window, so the true ceiling is\n // deadline + one attempt window (up to ~2× the window if a hedge fired just\n // before the deadline and the attempt then waits out the hedge leg too).\n // Note this budget also bounds callers who passed an explicit `retry`: the\n // wall clock, not the attempt count, is the stronger promise here.\n // Server-side read-through proxy, when configured and the method is on its\n // allowlist: one call, and on any miss the node loop below runs unchanged.\n // It runs BEFORE the node deadline is taken, so a slow proxy costs its own\n // timeout and nothing of the failover budget the nodes get today.\n // Snapshot: the binding can be cleared by the host while this call awaits.\n const proxy = serverRpcProxy\n if (proxy && isNodeRuntime && proxy.methodSet.has(method)) {\n if (Date.now() < proxyOpenUntil) {\n rpcProxyStats.skipped++\n } else {\n try {\n const served = await proxyRpcCall(proxy, method, params, ceiling, signal, validate)\n rpcProxyStats.served++\n proxyConsecutiveMisses = 0\n return served\n } catch (e: unknown) {\n if (signal?.aborted) throw e\n rpcProxyStats.fallback++\n const reason: string = e instanceof ProxyMiss ? e.reason : 'transport'\n rpcProxyStats.fallbackByReason[reason] = (rpcProxyStats.fallbackByReason[reason] ?? 0) + 1\n if (reason === 'rpcerror') {\n // A relayed node error is a healthy proxy answer: it closes the\n // count like a served call. Crawler-made feed URLs produce these in\n // runs, and counting them opened the breaker on a working proxy.\n proxyConsecutiveMisses = 0\n } else if (++proxyConsecutiveMisses >= proxy.failureThreshold) {\n proxyOpenUntil = Date.now() + proxy.cooldownMs\n proxyConsecutiveMisses = 0\n }\n }\n }\n }\n\n const deadline = Date.now() + config.resilience.totalBudgetFactor * ceiling\n\n // Track nodes tried in the current round. When all nodes have been tried,\n // clear the set to allow a second round (wrap-around) using the retry budget.\n const triedInRound = new Set()\n let lastError: any\n\n for (let attempt = 0; attempt <= retry; attempt++) {\n if (attempt > 0 && Date.now() >= deadline) {\n break\n }\n // Re-evaluate node order each attempt so health changes are respected.\n // Pass api so nodes with an API-specific cooldown are deprioritized.\n const orderedNodes = rpcHealthTracker.getOrderedNodes(config.nodes, api)\n // Pick the healthiest untried node. If all tried, start a new round.\n let node = orderedNodes.find((n) => !triedInRound.has(n))\n if (!node) {\n triedInRound.clear()\n node = orderedNodes[0]\n }\n triedInRound.add(node)\n\n // Hedge eligibility for THIS attempt: opted in, the primary has a usable\n // latency profile for this exact method (so the hedge delay is grounded in\n // data — cold starts stay sequential), and healthy untried peers exist.\n let hedgePool: string[] = []\n if (\n config.resilience.hedge &&\n rpcHealthTracker.getUsableLatencyMs(node, method) !== undefined\n ) {\n hedgePool = orderedNodes\n .filter((n) => !triedInRound.has(n) && rpcHealthTracker.isNodeHealthy(n, api))\n .slice(0, 3)\n }\n\n if (hedgePool.length > 0) {\n try {\n // All health/budget recording happens inside the hedged attempt —\n // the catch below must NOT record again (unlike the sequential path).\n return await hedgedRpcAttempt({\n method,\n params,\n api,\n primary: node,\n hedgePool,\n callerTimeout: ceiling,\n explicitTimeout,\n deadlineAt: deadline,\n externalSignal: signal,\n onHedgeFired: (n) => triedInRound.add(n),\n validate\n })\n } catch (e: any) {\n if (e instanceof RPCError && !isNodeLevelRPCError(e.code, e.message)) {\n throw e\n }\n if (signal?.aborted) {\n throw e\n }\n lastError = e\n if (attempt < retry) {\n await jitterDelay()\n }\n continue\n }\n }\n\n const callStart = Date.now()\n try {\n const res = await jsonRPCCall(\n node,\n method,\n params,\n adaptiveAttemptTimeout(rpcHealthTracker, node, method, ceiling, explicitTimeout),\n false,\n signal\n )\n if (validate && !validate(res)) {\n // Well-formed envelope, impossible payload: a node fault the\n // HTTP/JSON-RPC layers cannot see. Count it against this node's API\n // health (never record a success or refill the hedge budget for a\n // lie) and fail over to the next node.\n rpcHealthTracker.recordDefectiveResponse(node, api)\n lastError = new Error(`[hive-tx] response validation failed for ${method} from ${node}`)\n if (attempt < retry) {\n await jitterDelay()\n }\n continue\n }\n rpcHealthTracker.recordSuccess(node, api, Date.now() - callStart, method)\n // An un-hedged success is what earns hedge budget back (see HedgeBudget).\n rpcHedgeBudget.refill()\n tryRecordHeadBlock(rpcHealthTracker, node, method, res)\n return res as T\n } catch (e: any) {\n // RPCErrors: distinguish node-level failures from genuine blockchain rejections.\n // Node-level errors (e.g. -32602 \"Unable to parse endpoint data\" from a sick\n // HAF/jussi backend) should failover; real rejections (bad params, missing\n // authority, etc.) propagate immediately.\n if (e instanceof RPCError) {\n if (!isNodeLevelRPCError(e.code, e.message)) {\n throw e\n }\n // Node-level RPC error — record failure and fall through to failover\n }\n // External abort — stop retrying immediately\n if (signal?.aborted) {\n throw e\n }\n recordError(rpcHealthTracker, node, e, api)\n // A genuinely slow failure (timeout/abort/slow-5xx) is also a latency signal so\n // a node that 200s-but-too-slow or aborts at the timeout is demoted by the\n // ranker, not only by the (transient) failure gate. Measured elapsed, never a\n // constant; recordSlowFailure ignores instant (down-node) failures.\n rpcHealthTracker.recordSlowFailure(node, Date.now() - callStart, method)\n lastError = e\n\n // Add jitter before trying next node\n if (attempt < retry) {\n await jitterDelay()\n }\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callRPC for broadcasts ──────────────────────────────────────\n\n/**\n * Broadcast-safe RPC call. Only retries on pre-connection errors where the\n * request definitively never reached the server (ECONNREFUSED, ENOTFOUND, etc.).\n * On timeouts, HTTP errors, or any ambiguous failure, throws immediately to\n * prevent double-broadcasting transactions.\n *\n * Tries each node once (no wrap-around) since broadcast retries are dangerous.\n *\n * @internal Used by Transaction.broadcast()\n */\nexport const callRPCBroadcast = async (\n method: string,\n params: any[] | object = [],\n timeout = config.broadcastTimeout,\n signal?: AbortSignal\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an array')\n }\n if (config.nodes.length === 0) {\n throw new Error('config.nodes is empty')\n }\n const api = apiOf(method)\n // Track which nodes we've already tried - broadcasts must never retry the same node\n const triedNodes = new Set()\n let lastError: any\n\n for (let attempt = 0; attempt < config.nodes.length; attempt++) {\n // Re-evaluate order each attempt so health changes are respected\n const orderedNodes = rpcHealthTracker.getOrderedNodes(config.nodes, api)\n const node = orderedNodes.find((n) => !triedNodes.has(n))\n if (!node) break\n triedNodes.add(node)\n if (signal?.aborted) {\n throw new Error('Aborted')\n }\n try {\n const res = await jsonRPCCall(node, method, params, timeout, false, signal)\n // Deliberately no latency sample for broadcasts: broadcast_transaction_synchronous\n // blocks for block inclusion (~1.5–3s+) regardless of the node's read speed, so\n // feeding it into the shared read EWMA would wrongly demote a fast node for reads.\n // The same nodes are profiled by callRPC read traffic, so a genuinely slow node is\n // still demoted there.\n rpcHealthTracker.recordSuccess(node, api)\n return res as T\n } catch (e: any) {\n // RPCErrors are valid blockchain rejections - never retry\n if (e instanceof RPCError) {\n throw e\n }\n if (signal?.aborted) {\n throw e\n }\n recordError(rpcHealthTracker, node, e, api)\n lastError = e\n\n // Broadcast safety: only fail over when the request is safe to re-send.\n // `broadcastOperations` signs the tx exactly once and `callRPCBroadcast`\n // reuses that signed payload across nodes, so any case where the next\n // node would dedupe by trx_id is fine. RPCErrors (real blockchain\n // rejections) propagate immediately — see isBroadcastSafeToRetry.\n if (!isBroadcastSafeToRetry(e)) {\n throw e\n }\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callREST ────────────────────────────────────────────────────\n\nconst apiMethods: Record = {\n balance: '/balance-api',\n hafah: '/hafah-api',\n hafbe: '/hafbe-api',\n hivemind: '/hivemind-api',\n hivesense: '/hivesense-api',\n reputation: '/reputation-api',\n 'nft-tracker': '/nft-tracker-api',\n hafsql: '/hafsql',\n status: '/status-api'\n}\n\n/**\n * Makes REST API calls to Hive blockchain REST endpoints with automatic retry and failover support.\n * Uses per-request retry counters, node health tracking, and timeout support.\n * Wraps around the node list to honor the full retry budget.\n *\n * @template Api - The REST API method type (e.g., 'balance', 'hafah', 'hivemind', etc.)\n * @template P - The endpoint path type for the specified API\n *\n * @param api - The REST API method name to call\n * @param endpoint - The specific endpoint path within the API\n * @param params - Optional parameters for path and query string replacement\n * @param timeout - Request timeout in milliseconds (default: config.timeout)\n * @param retry - Number of retry attempts before throwing an error (default:\n * config.retry). The wall-clock budget (`config.resilience.totalBudgetFactor`\n * × timeout) may end the failover walk before the retry count is exhausted.\n *\n * @returns Promise resolving to the API response data with proper typing\n * @throws Error if all retry attempts fail\n *\n * @example\n * ```typescript\n * import { callREST } from 'hive-tx'\n *\n * // Get account balance\n * const balance = await callREST('balance', '/accounts/{account-name}/balances', { \"account-name\": 'alice' })\n *\n * // Custom timeout and retry settings\n * const data = await callREST('status', '/status', undefined, 10_000, 3)\n * ```\n */\nexport async function callREST(\n api: APIMethods,\n endpoint: string,\n params?: Record,\n timeout?: number,\n retry = config.retry,\n signal?: AbortSignal\n): Promise {\n if (!Array.isArray(config.restNodes)) {\n throw new Error('config.restNodes is not an array')\n }\n if (config.restNodes.length === 0) {\n throw new Error('config.restNodes is empty')\n }\n // Same contract as callRPC: an explicit timeout argument is authoritative\n // (no adaptive shortening), and a wall-clock deadline bounds the total\n // failover walk when the whole pool is slow.\n const explicitTimeout = timeout !== undefined\n const ceiling = timeout ?? config.timeout\n const deadline = Date.now() + config.resilience.totalBudgetFactor * ceiling\n // Latency-profile key: api + endpoint TEMPLATE (pre-substitution, so the\n // cardinality is code-defined) — a cheap endpoint's baseline must not set\n // the deadline for a heavy one within the same REST api.\n const restProfileKey = `${api}:${endpoint}`\n // Per-API node override: an API served by only a subset of nodes (e.g.\n // hivesense) uses its own capable-host list so the small retry budget and\n // cold starts aren't wasted on nodes that 404/503 it. Any API without an\n // override (or with an empty one) falls back to the generic restNodes.\n const apiNodes =\n config.restNodesByApi?.[api]?.length\n ? config.restNodesByApi[api]!\n : config.restNodes\n const triedInRound = new Set()\n let lastError: any\n // Track whether the error was already recorded by the HTTP status handler\n let alreadyRecorded = false\n\n for (let attempt = 0; attempt <= retry; attempt++) {\n if (attempt > 0 && Date.now() >= deadline) {\n break\n }\n // Re-evaluate node order each attempt so health changes are respected.\n // Pass api so per-API cooldowns are respected.\n const orderedNodes = restHealthTracker.getOrderedNodes(apiNodes, api)\n let node = orderedNodes.find((n) => !triedInRound.has(n))\n if (!node) {\n triedInRound.clear()\n node = orderedNodes[0]\n }\n triedInRound.add(node)\n const baseUrl = node + apiMethods[api]\n let path = endpoint as string\n const paramObj = params || ({} as Record)\n const processedPathParams = new Set()\n\n // Replace path params ONLY\n Object.entries(paramObj).forEach(([key, value]) => {\n if (path.includes(`{${key}}`)) {\n path = path.replace(`{${key}}`, encodeURIComponent(String(value)))\n processedPathParams.add(key)\n }\n })\n const url = new URL(baseUrl + path)\n // Add ONLY remaining params as query (if any)\n Object.entries(paramObj).forEach(([key, value]) => {\n if (!processedPathParams.has(key)) {\n if (Array.isArray(value)) {\n value.forEach((v) => url.searchParams.append(key, String(v)))\n } else {\n url.searchParams.set(key, String(value))\n }\n }\n })\n\n if (signal?.aborted) {\n throw new Error('Aborted')\n }\n alreadyRecorded = false\n // Adaptive per-attempt timeout (see adaptiveAttemptTimeout): a profiled\n // REST node is abandoned at factor×EWMA instead of the full fixed window.\n const { signal: tSignal, cleanup: cleanupTimeout } = createTimeoutSignal(\n adaptiveAttemptTimeout(restHealthTracker, node, restProfileKey, ceiling, explicitTimeout)\n )\n const { signal: restSignal, cleanup: cleanupMerge } = mergeSignals(tSignal, signal)\n const restCleanup = () => { cleanupTimeout(); cleanupMerge() }\n const restCallStart = Date.now()\n try {\n const response = await fetch(url.toString(), {\n signal: restSignal,\n headers: serverIdentityHeaders()\n })\n if (response.status === 404) {\n throw new Error('HTTP 404 - Hint: can happen on wrong params')\n }\n if (response.status === 429) {\n // 0 (no usable Retry-After) → undefined → escalating backoff in recordRateLimit.\n restHealthTracker.recordRateLimit(\n node,\n parseRetryAfterMs(response.headers.get('Retry-After')) || undefined\n )\n alreadyRecorded = true\n throw new Error(`HTTP 429 Rate Limited by ${node}`)\n }\n if (response.status === 503) {\n restHealthTracker.recordFailure(node, api)\n alreadyRecorded = true\n throw new Error(`HTTP 503 Service Unavailable from ${node}`)\n }\n if (!response.ok) {\n restHealthTracker.recordFailure(node, api)\n alreadyRecorded = true\n throw new Error(`HTTP ${response.status} from ${node}`)\n }\n restHealthTracker.recordSuccess(node, api, Date.now() - restCallStart, restProfileKey)\n return response.json() as any\n } catch (e: any) {\n // 404 is not a node issue, don't failover\n if (e?.message?.includes('HTTP 404')) {\n throw e\n }\n // External abort (caller unmounted / React Query cancelled the request) is the\n // client's decision, NOT a node fault. Mirror callRPC: bail before recording any\n // failure or slow-latency sample so a healthy REST node (e.g. an own node) is never\n // demoted by routine navigation/cancellation.\n if (signal?.aborted) {\n throw e\n }\n // Only record if not already recorded by 429/503 handler above\n if (!alreadyRecorded) {\n restHealthTracker.recordFailure(node, api)\n }\n // A slow failure (timeout/abort/slow-5xx — e.g. an own node from a far region) is a\n // latency signal too, so it is demoted by the ranker, not only the failure gate.\n // Measured elapsed; recordSlowFailure floors at LATENCY_SLOW_FAILURE_MS so a fast\n // 404/429 or instant down-node failure is NOT mis-read as \"slow\".\n restHealthTracker.recordSlowFailure(node, Date.now() - restCallStart, restProfileKey)\n lastError = e\n\n if (attempt < retry) {\n await jitterDelay()\n }\n } finally {\n restCleanup()\n }\n }\n\n throw lastError\n}\n\n// ── Public API: callWithQuorum ───────────────────────────────────────────────\n\n/**\n * Make a JSONRPC call with quorum. The method will cross-check the result\n * with `quorum` number of nodes before returning the result.\n * @param method - The API method name (e.g., 'condenser_api.get_accounts')\n * @param params - Parameters for the API method as array or object\n * @param quorum - Default: 2 (recommended)\n */\nexport const callWithQuorum = async (\n method: string,\n params: any[] | object = [],\n quorum = 2,\n signal?: AbortSignal\n): Promise => {\n if (!Array.isArray(config.nodes)) {\n throw new Error('config.nodes is not an Array')\n }\n if (quorum > config.nodes.length) {\n throw new Error('quorum > config.nodes.length')\n }\n // We call random nodes for better security (Fisher-Yates shuffle)\n const shuffleNodes = (arr: string[]) => {\n const a = [...arr]\n for (let i = a.length - 1; i > 0; i--) {\n const j = Math.floor(Math.random() * (i + 1));\n [a[i], a[j]] = [a[j], a[i]]\n }\n return a\n }\n let allNodes = shuffleNodes(config.nodes)\n let currentBatchSize = Math.min(quorum, allNodes.length)\n let allResults: any[] = []\n while (currentBatchSize > 0 && allNodes.length > 0) {\n // Take next batch of nodes\n const batchNodes = allNodes.splice(0, currentBatchSize)\n const promises: Promise[] = []\n const batchResults: any[] = []\n // Launch batch calls in parallel\n for (let i = 0; i < batchNodes.length; i++) {\n promises.push(\n jsonRPCCall(batchNodes[i], method, params, undefined, true, signal)\n .then((data) => batchResults.push(data))\n .catch(() => {})\n )\n }\n await Promise.all(promises)\n allResults.push(...batchResults)\n // Check for consensus in successful results\n const consensusResult = findConsensus(allResults, quorum)\n if (consensusResult) {\n return consensusResult\n }\n // Prepare next batch\n currentBatchSize = Math.min(quorum, allNodes.length)\n if (currentBatchSize === 0) {\n throw new Error('No more nodes available.')\n }\n }\n throw new Error(\"Couldn't reach quorum.\")\n}\n\nfunction findConsensus(results: any[], quorum: number) {\n const resultGroups = new Map()\n for (const result of results) {\n const key = JSON.stringify(result)\n if (!resultGroups.has(key)) {\n resultGroups.set(key, [])\n }\n resultGroups.get(key)!.push(result)\n }\n const consensusGroup = Array.from(resultGroups.values()).find((group) => group.length >= quorum)\n return consensusGroup ? consensusGroup[0] : null\n}\n","import { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\nimport { PrivateKey } from './helpers/PrivateKey'\nimport {\n OperationName,\n OperationBody,\n TransactionType,\n TransactionStatus,\n BroadcastResult\n} from './types'\nimport { ByteBuffer } from './helpers/ByteBuffer'\nimport { Serializer } from './helpers/serializer'\nimport { sha256 } from '@noble/hashes/sha2.js'\nimport { config } from './config'\nimport { callRPC, callRPCBroadcast, RPCError } from './helpers/call'\nimport { DigestData } from './types'\nimport { sleep } from './helpers/sleep'\n\nconst chainId = hexToBytes(config.chain_id)\n\ninterface TransactionOptions {\n transaction?: TransactionType | Transaction\n /**\n * Transaction expiration in milliseconds (ms) - max 86400000 (24 hours)\n * @default 60_000\n */\n expiration?: number\n}\n\nexport class Transaction {\n transaction?: TransactionType\n\n expiration: number = 60_000\n\n private txId?: string\n\n constructor(options?: TransactionOptions) {\n if (options?.transaction) {\n if (options.transaction instanceof Transaction) {\n this.transaction = options.transaction.transaction\n this.expiration = options.transaction.expiration\n } else {\n this.transaction = options.transaction\n }\n // A transaction built externally (e.g. from a hive-uri signing request)\n // may omit the `signatures` array. sign(), addSignature() and broadcast()\n // all assume it exists, so normalize it here to avoid\n // \"Cannot read property 'push' of undefined\" on sign.\n if (this.transaction && !Array.isArray(this.transaction.signatures)) {\n this.transaction.signatures = []\n }\n this.txId = this.digest().txId\n }\n if (options?.expiration) {\n this.expiration = options.expiration\n }\n }\n\n /**\n * Adds an operation to the transaction. If no transaction exists, creates one first.\n * @template O Operation name type for type safety\n * @param operationName The name/type of the operation to add (e.g., 'transfer', 'vote', 'comment')\n * @param operationBody The operation data/body for the specified operation type\n * @returns Promise that resolves when the operation is added\n * @throws Error if transaction creation fails or global properties cannot be retrieved\n */\n async addOperation(\n operationName: O,\n operationBody: OperationBody\n ): Promise {\n if (!this.transaction) {\n await this.createTransaction(this.expiration)\n }\n this.transaction!.operations.push([operationName, operationBody])\n }\n\n /**\n * Signs the transaction with the provided key(s), supporting both single and multi-signature transactions.\n * For multi-signature, you can sign with all keys at once or sign individually by calling this method multiple times.\n * @param keys Single PrivateKey or array of PrivateKeys to sign the transaction with\n * @returns The signed transaction\n * @throws Error if no transaction exists to sign\n */\n sign(keys: PrivateKey | PrivateKey[]): TransactionType {\n if (!this.transaction) {\n throw new Error('First create a transaction by .addOperation()')\n }\n if (this.transaction) {\n const { digest, txId } = this.digest()\n if (!Array.isArray(keys)) {\n keys = [keys]\n }\n for (const key of keys) {\n const signature = key.sign(digest)\n this.transaction.signatures.push(signature.customToString())\n }\n this.txId = txId\n return this.transaction\n } else {\n throw new Error('No transaction to sign')\n }\n }\n\n /**\n * Broadcasts the signed transaction to the Hive network.\n * Automatically handles retries and duplicate transaction detection.\n * @param checkStatus By default (false) the transaction is not guaranteed to be included in a block.\n * For example the transaction can expire while waiting in mempool.\n * If you pass true here, the function will wait for the transaction to be either included or dropped\n * before returning a result.\n * @returns Promise resolving to broadcast result\n * @throws Error if no transaction exists or transaction is not signed or transaction got rejected\n */\n async broadcast(checkStatus = false): Promise {\n if (!this.transaction) {\n throw new Error(\n 'Attempted to broadcast an empty transaction. Add operations by .addOperation()'\n )\n }\n if (this.transaction.signatures.length === 0) {\n throw new Error(\n 'Attempted to broadcast a transaction with no signatures. Sign using .sign(keys)'\n )\n }\n try {\n await callRPCBroadcast('condenser_api.broadcast_transaction', [this.transaction])\n } catch (e) {\n if (e instanceof RPCError && e.message.includes('Duplicate transaction check failed')) {\n // ignore duplicate transaction error as this can happen when we retry the broadcast\n } else {\n throw e\n }\n }\n if (!this.txId) {\n this.txId = this.digest().txId\n }\n if (!checkStatus) {\n return { tx_id: this.txId, status: 'unknown' }\n }\n // Poll until the transaction reaches a final state or max attempts exceeded.\n // With 60 attempts: delays grow from 1.3s to 19s, total wait ~10 minutes.\n const maxPollAttempts = 60\n await sleep(1000)\n let status = await this.checkStatus()\n let i = 1\n while (\n status?.status !== 'within_irreversible_block' &&\n status?.status !== 'expired_irreversible' &&\n status?.status !== 'too_old' &&\n i < maxPollAttempts\n ) {\n await sleep(1000 + i * 300)\n status = await this.checkStatus()\n i++\n }\n return {\n tx_id: this.txId,\n status: (status?.status ?? 'unknown') as BroadcastResult['status']\n }\n }\n\n /**\n * Returns the transaction digest containing the transaction ID and hash.\n * The digest can be used to verify signatures and for transaction identification.\n * @returns DigestData containing transaction ID and hash\n * @throws Error if no transaction exists\n */\n digest(): DigestData {\n if (!this.transaction) {\n throw new Error('First create a transaction by .addOperation()')\n }\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n const temp = { ...this.transaction }\n try {\n Serializer.Transaction(buffer, temp)\n } catch (cause) {\n throw new Error('Unable to serialize transaction: ' + cause)\n }\n buffer.flip()\n const transactionData = new Uint8Array(buffer.toBuffer())\n const txId = bytesToHex(sha256(transactionData)).slice(0, 40)\n const digest = sha256(new Uint8Array([...chainId, ...transactionData]))\n return { digest, txId }\n }\n\n /**\n * Adds a signature to an already created transaction. Useful when signing with external tools.\n * Multiple signatures can be added one at a time for multi-signature transactions.\n * @param signature The signature string in hex format (must be exactly 130 characters)\n * @returns The transaction with the added signature\n * @throws Error if no transaction exists or signature format is invalid\n */\n addSignature(signature: string): TransactionType {\n if (!this.transaction) {\n throw new Error('First create a transaction by .create(operations)')\n }\n if (typeof signature !== 'string') {\n throw new Error('Signature must be string')\n }\n if (signature.length !== 130) {\n throw new Error('Signature must be 130 characters long')\n }\n this.transaction.signatures.push(signature)\n return this.transaction\n }\n\n /** Get status of this transaction. Usually called internally after broadcasting. */\n async checkStatus(): Promise {\n if (!this.txId) {\n this.txId = this.digest().txId\n }\n return callRPC('transaction_status_api.find_transaction', {\n transaction_id: this.txId,\n expiration: this.transaction?.expiration\n })\n }\n\n /**\n * Creates the transaction structure and initializes it with blockchain data.\n * Retrieves current head block information and sets up reference block data.\n * @private\n * @param expiration Transaction expiration in milliseconds\n */\n private createTransaction = async (expiration: number) => {\n const props = await callRPC('condenser_api.get_dynamic_global_properties', [])\n const bytes = hexToBytes(props.head_block_id)\n const refBlockPrefix = Number(new Uint32Array(bytes.buffer, bytes.byteOffset + 4, 1)[0])\n const expirationIso = new Date(Date.now() + expiration).toISOString().slice(0, -5)\n this.transaction = {\n expiration: expirationIso,\n extensions: [],\n operations: [],\n ref_block_num: props.head_block_number & 0xffff,\n ref_block_prefix: refBlockPrefix,\n signatures: []\n }\n }\n}\n","import bs58 from 'bs58'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { sha256, sha512 } from '@noble/hashes/sha2.js'\nimport { PublicKey } from './PublicKey'\nimport { Signature } from './Signature'\nimport { bytesToHex, hexToBytes } from '@noble/hashes/utils.js'\n\nexport type KeyRole = 'owner' | 'active' | 'posting' | 'memo'\n\nconst NETWORK_ID = new Uint8Array([0x80])\n\n/**\n * ECDSA (secp256k1) private key for signing and encryption operations.\n * Handles key generation, derivation from seeds/passwords, and cryptographic operations.\n *\n * All private keys are stored internally as Uint8Array and can be converted to/from\n * Wallet Import Format (WIF) strings for storage and transmission.\n *\n * @example\n * ```typescript\n * // From WIF string\n * const key = PrivateKey.from('5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw')\n *\n * // Generate random key\n * const randomKey = PrivateKey.randomKey()\n *\n * // From username and password\n * const loginKey = PrivateKey.fromLogin('username', 'password')\n *\n * // Sign a message\n * const signature = key.sign(someHash)\n *\n * // Get public key\n * const pubKey = key.createPublic()\n * ```\n */\nexport class PrivateKey {\n key: Uint8Array\n\n constructor(key: Uint8Array) {\n this.key = key\n try {\n secp256k1.getPublicKey(key)\n } catch (e) {\n throw new Error('invalid private key')\n }\n }\n\n /**\n * Creates a PrivateKey instance from a WIF string or raw Uint8Array.\n * Automatically detects the input type and uses the appropriate method.\n *\n * @param value - WIF formatted string or raw 32-byte key as Uint8Array\n * @returns New PrivateKey instance\n * @throws Error if the key format is invalid\n */\n static from(value: string | Uint8Array): PrivateKey {\n if (typeof value === 'string') {\n return PrivateKey.fromString(value)\n } else {\n return new PrivateKey(value)\n }\n }\n\n /**\n * Creates a PrivateKey from a Wallet Import Format (WIF) encoded string.\n *\n * @param wif - WIF encoded private key string\n * @returns New PrivateKey instance\n * @throws Error if WIF format is invalid or checksum fails\n */\n static fromString(wif: string): PrivateKey {\n return new PrivateKey(decodePrivate(wif).subarray(1))\n }\n\n /**\n * Creates a PrivateKey from a seed string or Uint8Array.\n * The seed is hashed with SHA256 to produce the private key.\n *\n * @param seed - Seed string (converted to bytes) or raw byte array\n * @returns New PrivateKey instance derived from seed\n */\n static fromSeed(seed: string | Uint8Array): PrivateKey {\n if (typeof seed === 'string') {\n const isHex = /^[0-9a-fA-F]+$/.test(seed)\n if (isHex) {\n seed = hexToBytes(seed)\n } else {\n // Convert non-hex string to Uint8Array using UTF-8 encoding\n // Avoid top-level TextEncoder — not available on all runtimes (e.g. Hermes)\n const bytes: number[] = []\n for (let i = 0; i < seed.length; i++) {\n let c = seed.charCodeAt(i)\n if (c < 0x80) {\n bytes.push(c)\n } else if (c < 0x800) {\n bytes.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f))\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < seed.length) {\n const next = seed.charCodeAt(++i)\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff)\n bytes.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n } else {\n bytes.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f))\n }\n }\n seed = new Uint8Array(bytes)\n }\n }\n return new PrivateKey(sha256(seed))\n }\n\n /**\n * Derives a PrivateKey from username, password, and role using Hive's key derivation scheme.\n * This generates the same keys that the Hive wallet uses for login-based keys.\n *\n * @param username - Hive username\n * @param password - Master password (or seed phrase)\n * @param role - Key role ('owner', 'active', 'posting', 'memo')\n * @returns New PrivateKey instance for the specified role\n */\n static fromLogin(username: string, password: string, role: KeyRole = 'active'): PrivateKey {\n const seed = username + role + password\n return PrivateKey.fromSeed(seed)\n }\n\n /**\n * Signs a 32-byte message hash using ECDSA and returns a recoverable signature.\n * The signature includes recovery information to allow public key recovery.\n *\n * @param message - 32-byte message hash to sign (Uint8Array)\n * @returns Signature object containing the signature data\n */\n sign(message: Uint8Array): Signature {\n const rv = secp256k1.sign(message, this.key, {\n extraEntropy: true,\n format: 'recovered',\n prehash: false // prehash does sha256 on the message\n })\n const recovery = parseInt(bytesToHex(rv.subarray(0, 1)), 16)\n return Signature.from((recovery + 31).toString(16) + bytesToHex(rv.subarray(1)))\n }\n\n /**\n * Derives the corresponding public key for this private key.\n *\n * @param prefix - Optional address prefix (defaults to config.address_prefix)\n * @returns PublicKey instance derived from this private key\n */\n createPublic(prefix?: string): PublicKey {\n return new PublicKey(secp256k1.getPublicKey(this.key), prefix)\n }\n\n /**\n * Returns the private key as a Wallet Import Format (WIF) encoded string.\n * This includes network ID and checksum for safe storage/transmission.\n *\n * @returns WIF encoded private key string\n */\n toString(): string {\n return encodePrivate(new Uint8Array([...NETWORK_ID, ...this.key]))\n }\n\n /**\n * Returns a masked representation of the private key for debugging/logging.\n * Shows only the first and last 6 characters to avoid accidental exposure.\n * Use toString() to get the full key for export/serialization.\n *\n * @returns Masked key representation for safe logging\n */\n inspect(): string {\n const key = this.toString()\n return `PrivateKey: ${key.slice(0, 6)}...${key.slice(-6)}`\n }\n\n /**\n * Computes a shared secret using ECDH key exchange for memo encryption.\n * The shared secret is used as a key for AES encryption/decryption.\n *\n * @param publicKey - Other party's public key\n * @returns 64-byte shared secret as Uint8Array\n */\n getSharedSecret(publicKey: PublicKey): Uint8Array {\n const s = secp256k1.getSharedSecret(this.key, publicKey.key)\n // strip the parity byte\n return sha512(s.subarray(1))\n }\n\n /**\n * Generates a new cryptographically secure random private key.\n * Uses the secp256k1 key generation algorithm for security.\n * This method may take up to 250ms due to entropy collection.\n *\n * @returns New randomly generated PrivateKey instance\n */\n static randomKey(): PrivateKey {\n return new PrivateKey(secp256k1.keygen().secretKey)\n }\n}\n\nconst doubleSha256 = (input: Uint8Array) => {\n const dbl = sha256(sha256(input))\n return dbl\n}\n\n/** Encode bs58+doubleSha256-checksum private key. */\nconst encodePrivate = (key: Uint8Array) => {\n // assert.equal(key.readUInt8(0), 0x80, 'private key network id mismatch')\n const checksum = doubleSha256(key)\n return bs58.encode(new Uint8Array([...key, ...checksum.slice(0, 4)]))\n}\n\n/** Decode bs58+doubleSha256-checksum encoded private key. */\nconst decodePrivate = (encodedKey: string) => {\n const buffer = bs58.decode(encodedKey)\n if (!isUint8ArrayEqual(buffer.slice(0, 1), NETWORK_ID)) {\n throw new Error('Private key network id mismatch')\n }\n const checksum = buffer.slice(-4)\n const key = buffer.slice(0, -4)\n const checksumVerify = doubleSha256(key).slice(0, 4)\n if (!isUint8ArrayEqual(checksum, checksumVerify)) {\n throw new Error('Private key checksum mismatch')\n }\n return key\n}\n\nconst isUint8ArrayEqual = (a: Uint8Array, b: Uint8Array) => {\n if (a === b) return true\n if (a.byteLength !== b.byteLength) return false\n const len = a.byteLength\n let i = 0\n while (i < len && a[i] === b[i]) i++\n return i === len\n}\n","import { ByteBuffer } from './ByteBuffer'\nimport { cbc as AESCBC } from '@noble/ciphers/aes.js'\nimport { secp256k1 } from '@noble/curves/secp256k1.js'\nimport { sha256, sha512 } from '@noble/hashes/sha2.js'\nimport { PrivateKey } from './PrivateKey'\nimport { PublicKey } from './PublicKey'\n\nexport const encrypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n message: Uint8Array,\n nonce: bigint = uniqueNonce()\n) => crypt(privateKey, publicKey, nonce, message)\n\nexport const decrypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n nonce: bigint,\n message: Uint8Array,\n checksum: number\n): Uint8Array => {\n const d = crypt(privateKey, publicKey, nonce, message, checksum)\n return d.message\n}\n\n/**\n * @arg message - Encrypted or plain text message (see checksum)\n * @arg checksum - shared secret checksum (null to encrypt, non-null to decrypt)\n */\nconst crypt = (\n privateKey: PrivateKey,\n publicKey: PublicKey,\n nonce: bigint,\n message: Uint8Array,\n checksum?: number\n): { nonce: bigint; message: Uint8Array; checksum: number } => {\n const nonceL = nonce\n const S = privateKey.getSharedSecret(publicKey)\n let ebuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n ebuf.writeUint64(nonceL)\n ebuf.append(S)\n ebuf.flip()\n\n const encryptionKey = sha512(new Uint8Array(ebuf.toBuffer()))\n const iv = encryptionKey.subarray(32, 48)\n const tag = encryptionKey.subarray(0, 32)\n\n // check if first 64 bit of sha256 hash treated as uint64_t truncated to 32 bits.\n const check = sha256(encryptionKey).subarray(0, 4)\n const cbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n cbuf.append(check)\n cbuf.flip()\n const check32 = cbuf.readUint32()\n if (checksum !== undefined) {\n if (check32 !== checksum) {\n throw new Error('Invalid key')\n }\n message = cryptoJsDecrypt(message, tag, iv)\n } else {\n message = cryptoJsEncrypt(message, tag, iv)\n }\n return { nonce: nonceL, message, checksum: check32 }\n}\n\n/**\n * This method does not use a checksum, the returned data must be validated some other way.\n * @arg {string|Uint8Array} ciphertext - binary format\n * @return {Uint8Array} the decrypted message\n */\nconst cryptoJsDecrypt = (message: Uint8Array, tag: Uint8Array, iv: Uint8Array): Uint8Array => {\n let messageBuffer = message\n const decipher = AESCBC(tag, iv)\n messageBuffer = decipher.decrypt(messageBuffer)\n return messageBuffer\n}\n\n/**\n * This method does not use a checksum, the returned data must be validated some other way.\n * @arg {string|Uint8Array} plaintext - binary format\n * @return {Uint8Array} binary\n */\nexport const cryptoJsEncrypt = (\n message: Uint8Array,\n tag: Uint8Array,\n iv: Uint8Array\n): Uint8Array => {\n let messageBuffer = message\n const cipher = AESCBC(tag, iv)\n messageBuffer = cipher.encrypt(messageBuffer)\n return messageBuffer\n}\n\nlet uniqueNonceEntropy: number | null = null\n\nconst uniqueNonce = (): bigint => {\n if (uniqueNonceEntropy === null) {\n const randomPrivateKey = secp256k1.utils.randomSecretKey()\n uniqueNonceEntropy = (randomPrivateKey[0] << 8) | randomPrivateKey[1]\n }\n let long = BigInt(Date.now())\n const entropy = ++uniqueNonceEntropy % 0x10000\n long = (long << BigInt(16)) | BigInt(entropy)\n return long\n}\n","import { ByteBuffer } from './ByteBuffer'\nimport { PublicKey } from './PublicKey'\n\nconst PublicKeyDeserializer = (buf: ByteBuffer) => {\n const c = fixedBuf(buf, 33)\n return new PublicKey(c)\n}\n\nconst UInt64Deserializer = (b: ByteBuffer) => {\n return b.readUint64()\n}\n\nconst UInt32Deserializer = (b: ByteBuffer) => {\n return b.readUint32()\n}\n\nconst BinaryDeserializer = (b: ByteBuffer) => {\n const len = b.readVarint32()\n const bCopy = b.copy(b.offset, b.offset + len)\n b.skip(len)\n return new Uint8Array(bCopy.toBuffer())\n}\n\nconst BufferDeserializer = (keyDeserializers: any) => (buf: Uint8Array) => {\n const obj: any = {}\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n buffer.append(buf)\n buffer.flip()\n for (const [key, deserializer] of keyDeserializers) {\n try {\n obj[key] = deserializer(buffer)\n } catch (error: any) {\n error.message = `${key}: ${error.message}`\n throw error\n }\n }\n return obj\n}\n\nfunction fixedBuf(b: ByteBuffer, len: number) {\n if (!b) {\n throw Error('No buffer found on first parameter')\n } else {\n const bCopy = b.copy(b.offset, b.offset + len)\n b.skip(len)\n return new Uint8Array(bCopy.toBuffer())\n }\n}\n\nconst EncryptedMemoDeserializer = BufferDeserializer([\n ['from', PublicKeyDeserializer],\n ['to', PublicKeyDeserializer],\n ['nonce', UInt64Deserializer],\n ['check', UInt32Deserializer],\n ['encrypted', BinaryDeserializer]\n])\n\nexport const Deserializer = {\n Memo: EncryptedMemoDeserializer\n}\n","import bs58 from 'bs58'\nimport { ByteBuffer } from './ByteBuffer'\nimport { Serializer } from './serializer'\nimport { PrivateKey } from './PrivateKey'\nimport * as Aes from './aes'\nimport { PublicKey } from './PublicKey'\nimport { Deserializer } from './deserializer'\n\nexport type Memo = {\n /**\n * Encrypts a memo for secure private messaging\n */\n encode(\n privateKey: string | PrivateKey,\n publicKey: string | PublicKey,\n memo: string,\n testNonce?: any\n ): string\n\n /**\n * Decrypts a memo message\n */\n decode(privateKey: string | PrivateKey, memo: string): string\n}\n\n/**\n * Encodes a memo using AES encryption for secure private messaging on Hive.\n * Messages must start with '#' to be encrypted. Plain text messages are returned unchanged.\n *\n * @param privateKey - Sender's private memo key (string WIF format or PrivateKey instance)\n * @param publicKey - Recipient's public memo key (string or PublicKey instance)\n * @param memo - Message to encrypt (must start with '#' for encryption)\n * @param testNonce - Optional nonce for testing (advanced usage)\n * @returns Encrypted memo string prefixed with '#'\n * @throws Error if encryption is not supported in current environment\n */\nconst encode = (\n privateKey: string | PrivateKey,\n publicKey: string | PublicKey,\n memo: string,\n testNonce?: any\n): string => {\n if (!memo.startsWith('#')) {\n return memo\n }\n memo = memo.substring(1)\n checkEncryption()\n privateKey = toPrivateObj(privateKey)\n publicKey = toPublicObj(publicKey)\n const mbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n mbuf.writeVString(memo)\n const memoBuffer = new Uint8Array(mbuf.copy(0, mbuf.offset).toBuffer())\n const { nonce, message, checksum } = Aes.encrypt(privateKey, publicKey, memoBuffer, testNonce)\n const mbuf2 = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n Serializer.Memo(mbuf2, {\n check: checksum,\n encrypted: message,\n from: privateKey.createPublic(),\n nonce,\n to: publicKey\n })\n mbuf2.flip()\n const data = new Uint8Array(mbuf2.toBuffer())\n return '#' + bs58.encode(data)\n}\n\n/**\n * Decrypts an encrypted memo using AES decryption.\n * Messages must start with '#' to be decrypted. Plain text messages are returned unchanged.\n *\n * @param privateKey - Recipient's private memo key (string WIF format or PrivateKey instance)\n * @param memo - Encrypted memo string (must start with '#' for decryption)\n * @returns Decrypted memo content with '#' prefix\n * @throws Error if decryption fails or encryption not supported in current environment\n */\nconst decode = (privateKey: string | PrivateKey, memo: string): string => {\n if (!memo.startsWith('#')) {\n return memo\n }\n memo = memo.substring(1)\n checkEncryption()\n privateKey = toPrivateObj(privateKey)\n // memo = bs58.decode(memo)\n let memoBuffer = Deserializer.Memo(bs58.decode(memo))\n const { from, to, nonce, check, encrypted } = memoBuffer\n const pubkey = privateKey.createPublic().toString()\n const otherpub =\n pubkey === new PublicKey(from.key).toString() ? new PublicKey(to.key) : new PublicKey(from.key)\n memoBuffer = Aes.decrypt(privateKey, otherpub, nonce, encrypted, check)\n const mbuf = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n mbuf.append(memoBuffer)\n mbuf.flip()\n return '#' + mbuf.readVString()\n}\n\nlet encodeTest: boolean | undefined\nconst checkEncryption = () => {\n if (encodeTest === undefined) {\n let plaintext\n encodeTest = true // prevent infinate looping\n try {\n const wif = '5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw'\n const pubkey = 'STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA'\n const cyphertext = encode(wif, pubkey, '#memo爱')\n plaintext = decode(wif, cyphertext)\n } finally {\n encodeTest = plaintext === '#memo爱'\n }\n }\n if (encodeTest === false) {\n throw new Error('This environment does not support encryption.')\n }\n}\n\nconst toPrivateObj = (o: string | PrivateKey): PrivateKey => {\n if (typeof o === 'string') {\n return PrivateKey.fromString(o)\n } else {\n return o\n }\n}\nconst toPublicObj = (o: string | PublicKey): PublicKey => {\n if (typeof o === 'string') {\n return PublicKey.fromString(o)\n } else {\n return o\n }\n}\n\n/**\n * Memo utilities for encrypting and decrypting private messages between Hive users.\n * Uses AES encryption with ECDH key exchange for secure communication.\n *\n * Messages must start with '#' to be encrypted/decrypted.\n * Plain text messages (without '#') are returned unchanged.\n *\n * @example\n * ```typescript\n * import { Memo, PrivateKey, PublicKey } from 'hive-tx'\n *\n * // Encrypt a message\n * const encrypted = Memo.encode(senderPrivateKey, recipientPublicKey, '#Hello World')\n *\n * // Decrypt a message\n * const decrypted = Memo.decode(recipientPrivateKey, encrypted)\n * console.log(decrypted) // '#Hello World'\n * ```\n */\nexport const Memo = {\n decode,\n encode\n}\n","import { Serializer } from './serializer'\nimport { ByteBuffer } from './ByteBuffer'\nimport { PublicKey } from './PublicKey'\nimport { bytesToHex } from '@noble/hashes/utils.js'\n\nexport interface WitnessProps {\n account_creation_fee?: string\n account_subsidy_budget?: number\n account_subsidy_decay?: number\n key: PublicKey | string\n maximum_block_size?: number\n new_signing_key?: PublicKey | string | null\n hbd_exchange_rate?: { base: string; quote: string }\n hbd_interest_rate?: number\n url?: string\n}\n\n/** Return null for a valid username */\nexport const validateUsername = (username: string): null | string => {\n let suffix = 'Account name should '\n if (!username) {\n return suffix + 'not be empty.'\n }\n const length = username.length\n if (length < 3) {\n return suffix + 'be longer.'\n }\n if (length > 16) {\n return suffix + 'be shorter.'\n }\n if (/\\./.test(username)) {\n suffix = 'Each account segment should '\n }\n const ref = username.split('.')\n const len = ref.length\n for (let i = 0; i < len; i++) {\n const label = ref[i]\n if (!/^[a-z]/.test(label)) {\n return suffix + 'start with a lowercase letter.'\n }\n if (!/^[a-z0-9-]*$/.test(label)) {\n return suffix + 'have only lowercase letters, digits, or dashes.'\n }\n if (!/[a-z0-9]$/.test(label)) {\n return suffix + 'end with a lowercase letter or digit.'\n }\n if (label.length < 3) {\n return suffix + 'be longer.'\n }\n }\n return null\n}\n\nexport const operations = {\n vote: 0,\n comment: 1,\n transfer: 2,\n transfer_to_vesting: 3,\n withdraw_vesting: 4,\n limit_order_create: 5,\n limit_order_cancel: 6,\n feed_publish: 7,\n convert: 8,\n account_create: 9,\n account_update: 10,\n witness_update: 11,\n account_witness_vote: 12,\n account_witness_proxy: 13,\n pow: 14,\n custom: 15,\n report_over_production: 16,\n delete_comment: 17,\n custom_json: 18,\n comment_options: 19,\n set_withdraw_vesting_route: 20,\n limit_order_create2: 21,\n claim_account: 22,\n create_claimed_account: 23,\n request_account_recovery: 24,\n recover_account: 25,\n change_recovery_account: 26,\n escrow_transfer: 27,\n escrow_dispute: 28,\n escrow_release: 29,\n pow2: 30,\n escrow_approve: 31,\n transfer_to_savings: 32,\n transfer_from_savings: 33,\n cancel_transfer_from_savings: 34,\n custom_binary: 35,\n decline_voting_rights: 36,\n reset_account: 37,\n set_reset_account: 38,\n claim_reward_balance: 39,\n delegate_vesting_shares: 40,\n account_create_with_delegation: 41,\n witness_set_properties: 42,\n account_update2: 43,\n create_proposal: 44,\n update_proposal_votes: 45,\n remove_proposal: 46,\n update_proposal: 47,\n collateralized_convert: 48,\n recurrent_transfer: 49,\n // virtual ops\n fill_convert_request: 50,\n author_reward: 51,\n curation_reward: 52,\n comment_reward: 53,\n liquidity_reward: 54,\n interest: 55,\n fill_vesting_withdraw: 56,\n fill_order: 57,\n shutdown_witness: 58,\n fill_transfer_from_savings: 59,\n hardfork: 60,\n comment_payout_update: 61,\n return_vesting_delegation: 62,\n comment_benefactor_reward: 63,\n producer_reward: 64,\n clear_null_account_balance: 65,\n proposal_pay: 66,\n sps_fund: 67,\n hardfork_hive: 68,\n hardfork_hive_restore: 69,\n delayed_voting: 70,\n consolidate_treasury_balance: 71,\n effective_comment_vote: 72,\n ineffective_delete_comment: 73,\n sps_convert: 74,\n expired_account_notification: 75,\n changed_recovery_account: 76,\n transfer_to_vesting_completed: 77,\n pow_reward: 78,\n vesting_shares_split: 79,\n account_created: 80,\n fill_collateralized_convert_request: 81,\n system_warning: 82,\n fill_recurrent_transfer: 83,\n failed_recurrent_transfer: 84,\n limit_order_cancelled: 85,\n producer_missed: 86,\n proposal_fee: 87,\n collateralized_convert_immediate_conversion: 88,\n escrow_approved: 89,\n escrow_rejected: 90,\n proxy_cleared: 91,\n declined_voting_rights: 92\n}\n\n/**\n * Make bitmask filter to be used with get_account_history call\n */\nexport const makeBitMaskFilter = (allowedOperations: number[]): [string | null, string | null] => {\n return allowedOperations\n .reduce(reduceFunction, [BigInt(0), BigInt(0)])\n .map((value: bigint) => (value !== BigInt(0) ? value.toString() : null)) as [string | null, string | null]\n}\nconst reduceFunction = (\n [low, high]: [bigint, bigint],\n allowedOperation: number\n): [bigint, bigint] => {\n if (allowedOperation < 64) {\n return [low | (BigInt(1) << BigInt(allowedOperation)), high]\n } else {\n return [low, high | (BigInt(1) << BigInt(allowedOperation - 64))]\n }\n}\n\nexport const buildWitnessSetProperties = (\n owner: string,\n props: WitnessProps\n): ['witness_set_properties', { extensions: never[]; owner: string; props: any }] => {\n const data = {\n extensions: [],\n owner,\n props: []\n }\n for (const key of Object.keys(props)) {\n if ((props as any)[key] === undefined) continue\n let type\n switch (key) {\n case 'key':\n case 'new_signing_key':\n type = Serializer.PublicKey\n break\n case 'account_subsidy_budget':\n case 'account_subsidy_decay':\n case 'maximum_block_size':\n type = Serializer.UInt32\n break\n case 'hbd_interest_rate':\n type = Serializer.UInt16\n break\n case 'url':\n type = Serializer.String\n break\n case 'hbd_exchange_rate':\n type = Serializer.Price\n break\n case 'account_creation_fee':\n type = Serializer.Asset\n break\n default:\n throw new Error(`Unknown witness prop: ${key}`)\n }\n data.props.push([key, serialize(type, props[key])])\n }\n data.props.sort((a: any, b: any) => a[0].localeCompare(b[0]))\n return ['witness_set_properties', data]\n}\n\nconst serialize = (serializer: any, data: any) => {\n const buffer = new ByteBuffer(ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)\n serializer(buffer, data)\n buffer.flip()\n // `props` values must be hex\n return bytesToHex(new Uint8Array(buffer.toBuffer()))\n}\n","/**\n * Re-exports hive-tx APIs and provides helper functions that bridge\n * API differences from the legacy dhive library.\n */\n\nimport {\n PrivateKey,\n Transaction,\n callRPCBroadcast,\n type BroadcastResult,\n} from \"../../hive-tx\";\nimport type { Operation, OperationName, OperationBody } from \"../../hive-tx\";\nimport { sha256 as nobleSha256 } from \"@noble/hashes/sha2.js\";\n\n// ── Re-exports ─────────────────────────────────────────────────────────────\n\nexport {\n Transaction as HiveTxTransaction,\n PrivateKey,\n PublicKey,\n Signature,\n Memo,\n config as hiveTxConfig,\n callRPC,\n callRPCBroadcast,\n callREST,\n callWithQuorum,\n utils as hiveTxUtils,\n} from \"../../hive-tx\";\n\nexport type {\n Operation,\n OperationName,\n OperationBody,\n AssetSymbol,\n BroadcastResult,\n AccountCreateOperation,\n CustomJsonOperation,\n // Referenced in ConfigManager.setResilience's public signature — must be\n // nameable from the main entry, not only from @ecency/sdk/hive.\n ResilienceOptions,\n} from \"../../hive-tx\";\n\n// ── Compat types (matching dhive shapes used throughout the codebase) ──────\n\n/** Compatible with dhive's TransactionConfirmation from broadcast_transaction_synchronous */\nexport interface TransactionConfirmation {\n id: string;\n block_num: number;\n trx_num: number;\n expired: boolean;\n}\n\n/** Authority role type used in key management */\nexport type AuthorityType = \"owner\" | \"active\" | \"posting\" | \"memo\";\n\n/** SMT asset format (NAI representation) used in transaction history */\nexport interface SMTAsset {\n amount: string;\n precision: number;\n nai: string;\n}\n\n/** RC account data from rc_api.find_rc_accounts */\nexport interface RCAccount {\n account: string;\n rc_manabar: {\n current_mana: string | number;\n last_update_time: number;\n };\n max_rc: string | number;\n max_rc_creation_adjustment: {\n amount: string;\n precision: number;\n nai: string;\n };\n delegated_rc: number;\n received_delegated_rc: number;\n}\n\n// ── Helpers ────────────────────────────────────────────────────────────────\n\n/**\n * Compute SHA-256 hash of a string or Uint8Array.\n * Drop-in replacement for dhive's `cryptoUtils.sha256()`.\n */\nexport function sha256(input: string | Uint8Array): Uint8Array {\n let data: Uint8Array;\n if (typeof input === \"string\") {\n // Inline UTF-8 encode — avoids TextEncoder which is unavailable on some\n // runtimes (React Native / Hermes).\n const bytes: number[] = [];\n for (let i = 0; i < input.length; i++) {\n let c = input.charCodeAt(i);\n if (c < 0x80) {\n bytes.push(c);\n } else if (c < 0x800) {\n bytes.push(0xc0 | (c >> 6), 0x80 | (c & 0x3f));\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < input.length) {\n const next = input.charCodeAt(++i);\n c = 0x10000 + ((c & 0x3ff) << 10) + (next & 0x3ff);\n bytes.push(0xf0 | (c >> 18), 0x80 | ((c >> 12) & 0x3f), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f));\n } else {\n bytes.push(0xe0 | (c >> 12), 0x80 | ((c >> 6) & 0x3f), 0x80 | (c & 0x3f));\n }\n }\n data = new Uint8Array(bytes);\n } else {\n data = input;\n }\n return nobleSha256(data);\n}\n\n/** Check if a string is a valid WIF-encoded private key. */\nexport function isWif(key: string): boolean {\n try {\n PrivateKey.fromString(key);\n return true;\n } catch {\n return false;\n }\n}\n\n/**\n * Sign and broadcast operations, returning a dhive-compatible TransactionConfirmation.\n *\n * Uses broadcast_transaction_synchronous so the response includes block_num/trx_num,\n * matching the shape that the rest of the codebase expects from dhive's\n * `client.broadcast.sendOperations()`.\n *\n * @deprecated Prefer {@link broadcastOperationsAsync} (the default for\n * `useBroadcastMutation`); poll `transaction_status_api` if you need block\n * confirmation. Kept only for explicit `broadcastMode: 'sync'` opt-ins.\n */\nexport async function broadcastOperations(\n ops: Operation[],\n key: PrivateKey\n): Promise {\n const tx = new Transaction();\n for (const op of ops) {\n await tx.addOperation(\n op[0] as OperationName,\n op[1] as OperationBody\n );\n }\n tx.sign(key);\n return callRPCBroadcast(\"condenser_api.broadcast_transaction_synchronous\", [\n tx.transaction,\n ]);\n}\n\n/**\n * Sign and broadcast operations without waiting for block inclusion.\n *\n * Uses broadcast_transaction which returns as soon as the node accepts the\n * transaction into its mempool. Transport and RPC errors (network failures,\n * invalid operations, expired transactions) are still thrown immediately -\n * the only thing skipped is the wait for the transaction to appear in a block.\n *\n * Returns { tx_id, status: 'unknown' }. To confirm block inclusion afterward,\n * poll transaction_status_api with the returned tx_id.\n *\n * Prefer this for operations where faster response matters more than\n * immediate confirmation (e.g. votes, reblogs, follows).\n *\n * Use broadcastOperations() when you need block_num/trx_num confirmation\n * (e.g. transfers, account updates, key changes).\n */\nexport async function broadcastOperationsAsync(\n ops: Operation[],\n key: PrivateKey\n): Promise {\n const tx = new Transaction();\n for (const op of ops) {\n await tx.addOperation(\n op[0] as OperationName,\n op[1] as OperationBody\n );\n }\n tx.sign(key);\n return tx.broadcast(false);\n}\n\n// ── Mana calculations (ported from dhive's RCAPI) ──────────────────────────\n\ninterface Manabar {\n current_mana: string | number;\n last_update_time: number;\n}\n\ninterface ManaResult {\n current_mana: number;\n max_mana: number;\n percentage: number;\n}\n\nconst MANA_REGENERATION_SECONDS = 432000; // 5 days\n\nfunction calculateManabar(maxMana: number, manabar: Manabar): ManaResult {\n const delta = Date.now() / 1000 - manabar.last_update_time;\n let currentMana =\n Number(manabar.current_mana) +\n (delta * maxMana) / MANA_REGENERATION_SECONDS;\n let percentage = Math.round((currentMana / maxMana) * 10000);\n if (!isFinite(percentage) || percentage < 0) {\n percentage = 0;\n } else if (percentage > 10000) {\n percentage = 10000;\n }\n return { current_mana: currentMana, max_mana: maxMana, percentage };\n}\n\n/**\n * Get effective vesting shares for an account (matching dhive's getVests).\n * Subtracts delegated, adds received, accounts for pending withdrawals.\n */\nfunction getVests(account: any): number {\n const vests = parseFloat(account.vesting_shares);\n const delegated = parseFloat(account.delegated_vesting_shares);\n const received = parseFloat(account.received_vesting_shares);\n const withdrawRate = parseFloat(account.vesting_withdraw_rate);\n const alreadyWithdrawn =\n (Number(account.to_withdraw) - Number(account.withdrawn)) / 1e6;\n const withdrawVests = Math.min(withdrawRate, alreadyWithdrawn);\n return vests - withdrawVests - delegated + received;\n}\n\n/** Calculate voting power mana (equivalent to dhive client.rc.calculateVPMana) */\nexport function calculateVPMana(account: any): ManaResult {\n const maxMana = getVests(account) * 1e6;\n return calculateManabar(maxMana, account.voting_manabar);\n}\n\n/** Calculate RC mana (equivalent to dhive client.rc.calculateRCMana) */\nexport function calculateRCMana(rcAccount: RCAccount): ManaResult {\n return calculateManabar(\n Number(rcAccount.max_rc),\n rcAccount.rc_manabar\n );\n}\n\n// setHiveTxNodes and initHiveTx removed — config is now unified.\n// Use hiveTxConfig directly or ConfigManager.setHiveNodes().\n","/**\n * Chain error handling utilities\n * Extracted from web's operations.ts and mobile's dhive.ts error handling patterns\n */\n\nexport enum ErrorType {\n COMMON = \"common\",\n INFO = \"info\",\n INSUFFICIENT_RESOURCE_CREDITS = \"insufficient_resource_credits\",\n MISSING_AUTHORITY = \"missing_authority\",\n TOKEN_EXPIRED = \"token_expired\",\n NETWORK = \"network\",\n TIMEOUT = \"timeout\",\n VALIDATION = \"validation\",\n}\n\nexport interface ParsedChainError {\n message: string;\n type: ErrorType;\n originalError?: any;\n}\n\n/**\n * Parses Hive blockchain errors into standardized format.\n * Extracted from web's operations.ts and mobile's dhive.ts error handling.\n *\n * @param error - The error object or string from a blockchain operation\n * @returns Parsed error with user-friendly message and categorized type\n *\n * @example\n * ```typescript\n * try {\n * await vote(...);\n * } catch (error) {\n * const parsed = parseChainError(error);\n * console.log(parsed.message); // \"Insufficient Resource Credits. Please wait or power up.\"\n * console.log(parsed.type); // ErrorType.INSUFFICIENT_RESOURCE_CREDITS\n * }\n * ```\n */\nexport function parseChainError(error: any): ParsedChainError {\n // Extract error strings from various error formats\n // Check both error_description and message independently for pattern matching\n const errorDescription = error?.error_description ? String(error.error_description) : '';\n const errorMessage = error?.message ? String(error.message) : '';\n // HiveSigner throws plain objects like { error: \"unauthorized\", error_description: \"...\" }\n const errorCode = error?.error ? String(error.error) : '';\n const errorString = errorDescription || errorMessage || String(error || '');\n\n // Helper function to test patterns against all error fields\n const testPattern = (pattern: RegExp): boolean => {\n // Check error code first (e.g. HiveSigner's { error: \"unauthorized\" })\n if (errorCode && pattern.test(errorCode)) return true;\n // Check error_description (priority)\n if (errorDescription && pattern.test(errorDescription)) return true;\n // Then check message\n if (errorMessage && pattern.test(errorMessage)) return true;\n // Finally check fallback errorString (handles plain string inputs)\n if (errorString && pattern.test(errorString)) return true;\n return false;\n };\n\n // Resource credits (from both web and mobile patterns)\n if (\n testPattern(/please wait to transact/i) ||\n testPattern(/insufficient rc/i) ||\n testPattern(/rc mana|rc account|resource credits/i)\n ) {\n return {\n message: \"Insufficient Resource Credits. Please wait or power up.\",\n type: ErrorType.INSUFFICIENT_RESOURCE_CREDITS,\n originalError: error,\n };\n }\n\n // Min comment interval (from web operations.ts line 29)\n if (testPattern(/you may only post once every/i)) {\n return {\n message: \"Please wait before posting again (minimum 3 second interval between comments).\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Identical vote (from web operations.ts line 31)\n if (testPattern(/your current vote on this comment is identical/i)) {\n return {\n message: \"You have already voted with the same weight.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Must claim something (from web operations.ts line 33)\n if (testPattern(/must claim something/i)) {\n return {\n message: \"You must claim rewards before performing this action.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Cannot claim that much VESTS (from web operations.ts line 35)\n if (testPattern(/cannot claim that much vests/i)) {\n return {\n message: \"Cannot claim that amount. Please check your pending rewards.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Cannot delete comment with positive votes (from web operations.ts line 42)\n if (testPattern(/cannot delete a comment with net positive/i)) {\n return {\n message: \"Cannot delete a comment with positive votes.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Comment has children (from web operations.ts line 44)\n if (testPattern(/children == 0/i)) {\n return {\n message: \"Cannot delete a comment with replies.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Comment already paid out (from web operations.ts line 46)\n if (testPattern(/comment_cashout/i)) {\n return {\n message: \"Cannot modify a comment that has already been paid out.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Voting on paid out post (from web operations.ts line 48)\n if (testPattern(/votes evaluating for comment that is paid out is forbidden/i)) {\n return {\n message: \"Cannot vote on posts that have already been paid out.\",\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // No key available (SDK internal - from broadcastWithMethod when key not stored)\n if (testPattern(/no (active|owner|posting|memo) key available/i)) {\n return {\n message: \"Key not available. Please provide your key to sign this operation.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing active authority. Hive nodes return \"missing required active\n // authority\"; web operations.ts also throws the short form. Match both so the\n // auth fallback (auth-upgrade dialog) fires instead of misclassifying as a\n // generic chain error.\n if (testPattern(/missing (required )?active authority/i)) {\n return {\n message: \"Missing active authority. This operation requires your active key.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing owner authority (\"missing required owner authority\" or short form)\n if (testPattern(/missing (required )?owner authority/i)) {\n return {\n message: \"Missing owner authority. This operation requires your owner key.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Missing posting authority (general pattern)\n if (testPattern(/missing (required )?posting authority/i)) {\n return {\n message: \"Missing posting authority. Please check your login method.\",\n type: ErrorType.MISSING_AUTHORITY,\n originalError: error,\n };\n }\n\n // Token expired / unauthorized (HiveSigner OAuth2 errors + general patterns)\n // HiveSigner returns: { error: \"invalid_grant\" } for invalid/expired tokens,\n // { error: \"unauthorized_access\" } for IP-based access denial\n if (\n errorCode === 'invalid_grant' ||\n errorCode === 'unauthorized_access' ||\n testPattern(/token expired/i) ||\n testPattern(/invalid token/i) ||\n testPattern(/\\bunauthorized\\b/i) ||\n testPattern(/\\bforbidden\\b/i)\n ) {\n return {\n message: \"Authentication token expired. Please log in again.\",\n type: ErrorType.TOKEN_EXPIRED,\n originalError: error,\n };\n }\n\n // Already reblogged\n if (testPattern(/has already reblogged/i) || testPattern(/already reblogged this post/i)) {\n return {\n message: \"You have already reblogged this post.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Duplicate transaction\n if (testPattern(/duplicate transaction/i)) {\n return {\n message: \"This transaction has already been processed.\",\n type: ErrorType.INFO,\n originalError: error,\n };\n }\n\n // Network errors (more specific patterns to avoid false positives)\n if (\n testPattern(/econnrefused/i) ||\n testPattern(/connection refused/i) ||\n testPattern(/failed to fetch/i) ||\n testPattern(/\\bnetwork[-\\s]?(request|error|timeout|unreachable|down|failed)\\b/i)\n ) {\n return {\n message: \"Network error. Please check your connection and try again.\",\n type: ErrorType.NETWORK,\n originalError: error,\n };\n }\n\n // Timeout errors\n if (testPattern(/timeout/i) || testPattern(/timed out/i)) {\n return {\n message: \"Request timed out. Please try again.\",\n type: ErrorType.TIMEOUT,\n originalError: error,\n };\n }\n\n // Account doesn't exist\n if (testPattern(/account.*does not exist/i) || testPattern(/account not found/i)) {\n return {\n message: \"Account not found. Please check the username.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Invalid memo key\n if (testPattern(/invalid memo key/i)) {\n return {\n message: \"Invalid memo key. Cannot encrypt message.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Insufficient funds (require both words in same string to avoid cross-field false positives)\n if (testPattern(/(?:insufficient.*(?:funds|balance)|(?:funds|balance).*insufficient)/i)) {\n return {\n message: \"Insufficient funds for this transaction.\",\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Generic validation errors (use word boundaries to be more specific)\n if (testPattern(/\\b(invalid|validation)\\b/i)) {\n // Truncate to 150 chars like other branches\n const message = (error?.message || errorString).substring(0, 150) || \"Validation error occurred\";\n return {\n message,\n type: ErrorType.VALIDATION,\n originalError: error,\n };\n }\n\n // Default: return original error message\n // Check for error_description first (from web operations.ts line 65-72)\n if (error?.error_description && typeof error.error_description === \"string\") {\n return {\n message: error.error_description.substring(0, 150),\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Then check message field\n if (error?.message && typeof error.message === \"string\") {\n return {\n message: error.message.substring(0, 150),\n type: ErrorType.COMMON,\n originalError: error,\n };\n }\n\n // Handle plain objects without message property (avoid \"[object Object]\")\n let message: string;\n if (typeof error === 'object' && error !== null) {\n // Check for common error properties\n if (error.error_description) {\n message = String(error.error_description);\n } else if (error.code) {\n message = `Error code: ${error.code}`;\n } else if (errorString && errorString !== '[object Object]') {\n message = errorString.substring(0, 150);\n } else {\n message = \"Unknown error occurred\";\n }\n } else {\n message = errorString.substring(0, 150) || \"Unknown error occurred\";\n }\n\n return {\n message,\n type: ErrorType.COMMON,\n originalError: error,\n };\n}\n\n/**\n * Formats error for display to user.\n * Returns tuple of [message, type] for backward compatibility with existing code.\n *\n * This function maintains compatibility with the old formatError signature from\n * web's operations.ts (line 59-84) and mobile's dhive.ts error handling.\n *\n * @param error - The error object or string\n * @returns Tuple of [user-friendly message, error type]\n *\n * @example\n * ```typescript\n * try {\n * await transfer(...);\n * } catch (error) {\n * const [message, type] = formatError(error);\n * showToast(message, type);\n * }\n * ```\n */\nexport function formatError(error: any): [string, ErrorType] {\n const parsed = parseChainError(error);\n return [parsed.message, parsed.type];\n}\n\n/**\n * Checks if error indicates missing authority and should trigger auth fallback.\n * Used by the SDK's useBroadcastMutation to determine if it should retry with\n * an alternate authentication method.\n *\n * @param error - The error object or string\n * @returns true if auth fallback should be attempted\n *\n * @example\n * ```typescript\n * try {\n * await broadcast(operations);\n * } catch (error) {\n * if (shouldTriggerAuthFallback(error)) {\n * // Try with alternate auth method\n * await broadcastWithHiveAuth(operations);\n * }\n * }\n * ```\n */\nexport function shouldTriggerAuthFallback(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.MISSING_AUTHORITY || type === ErrorType.TOKEN_EXPIRED;\n}\n\n/**\n * Checks if error is a resource credits (RC) error.\n * Useful for showing specific UI feedback about RC issues.\n *\n * @param error - The error object or string\n * @returns true if the error is related to insufficient RC\n *\n * @example\n * ```typescript\n * try {\n * await vote(...);\n * } catch (error) {\n * if (isResourceCreditsError(error)) {\n * showRCWarning(); // Show specific RC education/power up UI\n * }\n * }\n * ```\n */\nexport function isResourceCreditsError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.INSUFFICIENT_RESOURCE_CREDITS;\n}\n\n/**\n * Checks if error is informational (not critical).\n * Informational errors typically don't need retry logic.\n *\n * @param error - The error object or string\n * @returns true if the error is informational\n */\nexport function isInfoError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.INFO;\n}\n\n/**\n * Checks if error is network-related and should be retried.\n *\n * @param error - The error object or string\n * @returns true if the error is network-related\n */\nexport function isNetworkError(error: any): boolean {\n const { type } = parseChainError(error);\n return type === ErrorType.NETWORK || type === ErrorType.TIMEOUT;\n}\n","import {\n useMutation,\n type MutationKey,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { PrivateKey, RPCError } from \"../../../hive-tx\";\nimport type { Operation } from \"../../../hive-tx\";\nimport { broadcastOperations, broadcastOperationsAsync, type TransactionConfirmation } from \"@/modules/core/hive-tx\";\nimport type { BroadcastResult } from \"../../../hive-tx\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { shouldTriggerAuthFallback } from \"@/modules/core/errors\";\nimport type { AuthorityLevel } from \"@/modules/operations/authority-map\";\nimport hs from \"hivesigner\";\n\n/**\n * Broadcast mode controls whether the SDK waits for block inclusion.\n *\n * - `'async'` (default): Uses `broadcast_transaction` — returns once the node\n * accepts the transaction into its mempool. Transport and RPC errors are\n * still thrown immediately; only the block-inclusion wait is skipped.\n *\n * - `'sync'`: Uses `broadcast_transaction_synchronous` — waits for block\n * inclusion and returns `block_num`/`trx_num`. Deprecated; prefer `'async'`\n * and poll `transaction_status_api` if you need block confirmation.\n */\nexport type BroadcastMode = 'sync' | 'async';\n\n/**\n * Broadcasts operations using a specific auth method.\n *\n * @param method - Auth method to use ('key', 'hiveauth', 'hivesigner', 'keychain', 'custom')\n * @param username - Hive username to broadcast for\n * @param ops - Operations to broadcast\n * @param auth - AuthContextV2 with adapter and configuration\n * @param authority - Key authority to use (posting, active, owner, or memo)\n * @param fetchedKey - Optional pre-fetched key to avoid duplicate fetches\n * @param fetchedToken - Optional pre-fetched access token to avoid duplicate fetches\n * @param broadcastMode - Whether to wait for block inclusion ('sync') or just mempool acceptance ('async')\n * @returns Transaction confirmation from the blockchain\n * @throws Error if method is not available or broadcast fails\n */\nasync function broadcastWithMethod(\n method: string,\n username: string,\n ops: Operation[],\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n fetchedKey?: string | null,\n fetchedToken?: string | null,\n broadcastMode: BroadcastMode = 'async'\n): Promise {\n const adapter = auth?.adapter;\n\n switch (method) {\n case 'key': {\n if (!adapter) {\n throw new Error('No adapter provided for key-based auth');\n }\n\n // Use pre-fetched key if provided, otherwise fetch it\n let key: string | null | undefined = fetchedKey;\n\n if (key === undefined) {\n // Key not pre-fetched, fetch it now based on authority\n switch (authority) {\n case 'owner':\n if (adapter.getOwnerKey) {\n key = await adapter.getOwnerKey(username);\n } else {\n throw new Error(\n `Owner key not supported by adapter. Owner operations (like account recovery) ` +\n `require master password login or manual key entry.`\n );\n }\n break;\n\n case 'active':\n if (adapter.getActiveKey) {\n key = await adapter.getActiveKey(username);\n }\n break;\n\n case 'memo':\n if (adapter.getMemoKey) {\n key = await adapter.getMemoKey(username);\n } else {\n throw new Error(\n `Memo key not supported by adapter. Use memo encryption methods instead.`\n );\n }\n break;\n\n case 'posting':\n default:\n key = await adapter.getPostingKey(username);\n break;\n }\n }\n\n if (!key) {\n throw new Error(`No ${authority} key available for ${username}`);\n }\n\n // Attempt broadcast with key\n const privateKey = PrivateKey.fromString(key);\n if (broadcastMode === 'async') {\n return await broadcastOperationsAsync(ops, privateKey);\n }\n return await broadcastOperations(ops, privateKey);\n }\n\n case 'hiveauth': {\n if (!adapter?.broadcastWithHiveAuth) {\n throw new Error('HiveAuth not supported by adapter');\n }\n return await adapter.broadcastWithHiveAuth(username, ops, authority);\n }\n\n case 'hivesigner': {\n if (!adapter) {\n throw new Error('No adapter provided for HiveSigner auth');\n }\n\n // Access tokens only have posting authority — for active/owner/memo ops,\n // go directly to platform-specific HiveSigner broadcast (e.g., redirect to hivesigner.com)\n if (authority !== 'posting') {\n if (adapter.broadcastWithHiveSigner) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n throw new Error(`HiveSigner access token cannot sign ${authority} operations. No platform broadcast available.`);\n }\n\n // Try direct API broadcast with access token first (posting ops only)\n const token = fetchedToken !== undefined\n ? fetchedToken\n : await adapter.getAccessToken(username);\n\n if (token) {\n try {\n const client = new hs.Client({ accessToken: token });\n const response = await client.broadcast(ops);\n return response.result;\n } catch (tokenError) {\n // Token broadcast failed — try platform-specific HiveSigner broadcast\n if (adapter.broadcastWithHiveSigner && shouldTriggerAuthFallback(tokenError)) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n throw tokenError;\n }\n }\n\n // No token available — try platform-specific HiveSigner broadcast\n if (adapter.broadcastWithHiveSigner) {\n return await adapter.broadcastWithHiveSigner(username, ops, authority);\n }\n\n throw new Error(`No access token available for ${username}`);\n }\n\n case 'keychain': {\n if (!adapter?.broadcastWithKeychain) {\n throw new Error('Keychain not supported by adapter');\n }\n return await adapter.broadcastWithKeychain(username, ops, authority);\n }\n\n case 'custom': {\n if (!auth?.broadcast) {\n throw new Error('No custom broadcast function provided');\n }\n return (await auth.broadcast(ops, authority)) as TransactionConfirmation;\n }\n\n default:\n throw new Error(`Unknown auth method: ${method}`);\n }\n}\n\n/**\n * Attempts to broadcast operations using multiple auth methods in fallback chain.\n * Implements sophisticated fallback pattern from mobile app.\n *\n * @param username - Hive username to broadcast for\n * @param ops - Operations to broadcast\n * @param auth - AuthContextV2 with adapter and fallback configuration\n * @param authority - Key authority to use ('posting' | 'active' | 'owner' | 'memo'), defaults to 'posting'\n * @returns Transaction confirmation from the blockchain\n * @throws Error if all auth methods fail or if a non-auth error occurs\n *\n * @remarks\n * **Preferred Behavior (when adapter.getLoginType exists):**\n * - Calls adapter.getLoginType() to determine user's actual auth method\n * - Uses ONLY that method (no fallbacks) - more predictable and faster\n * - If it fails, throws the error immediately\n *\n * **Fallback Behavior (for backward compatibility):**\n * - Tries each auth method in the fallback chain order\n * - Only continues to next method if error is auth-related (missing authority, token expired)\n * - Stops immediately for non-auth errors (RC exhaustion, network errors, validation errors)\n * - Collects all errors and provides detailed failure message\n *\n * @example\n * ```typescript\n * // Preferred: Adapter with getLoginType (single method, no fallbacks)\n * const auth: AuthContextV2 = {\n * adapter: myAdapter, // includes getLoginType()\n * };\n *\n * // Legacy: Explicit fallback chain (tries multiple methods)\n * const auth: AuthContextV2 = {\n * adapter: myAdapter,\n * fallbackChain: ['key', 'hiveauth', 'hivesigner'],\n * };\n * ```\n */\nasync function broadcastWithFallback(\n username: string,\n ops: Operation[],\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n broadcastMode: BroadcastMode = 'async'\n): Promise {\n const adapter = auth?.adapter;\n\n // PREFERRED APPROACH: If adapter provides getLoginType, use smart auth strategy\n // This avoids unnecessary fallback attempts and is more predictable\n if (adapter?.getLoginType) {\n const loginType = await adapter.getLoginType(username, authority);\n\n if (loginType) {\n // SMART AUTH STRATEGY: Optimize based on login type + authority + credentials\n\n // Check if user has granted ecency.app posting authority\n const hasPostingAuth = adapter.hasPostingAuthorization\n ? await adapter.hasPostingAuthorization(username)\n : false;\n\n // OPTIMIZATION: Use HiveSigner token for posting ops when posting auth is granted\n // This is faster than direct key signing or HiveAuth for key-based logins\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'key'\n ) {\n try {\n // Try HiveSigner API first (faster)\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Only fallback if this is an auth-related error\n // Otherwise, rethrow the original error (e.g., network errors, validation errors)\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n // Fallback to direct key signing if token auth method fails\n console.warn('[SDK] HiveSigner token auth failed, falling back to key:', error);\n }\n }\n\n // OPTIMIZATION: Use HiveSigner token for keychain/MetaMask users with posting auth (faster, no popup)\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'keychain'\n ) {\n try {\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n console.warn('[SDK] HiveSigner token auth failed, falling back to keychain/snap:', error);\n }\n }\n\n // OPTIMIZATION: Use HiveSigner token for HiveAuth users with posting auth (faster)\n if (\n authority === 'posting' &&\n hasPostingAuth &&\n loginType === 'hiveauth'\n ) {\n try {\n // Try HiveSigner API first (faster)\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Only fallback if this is an auth-related error\n // Otherwise, rethrow the original error (e.g., network errors, validation errors)\n if (!shouldTriggerAuthFallback(error)) {\n throw error;\n }\n // Fallback to HiveAuth if token auth method fails\n console.warn('[SDK] HiveSigner token auth failed, falling back to HiveAuth:', error);\n }\n }\n\n // Use user's actual login method\n try {\n return await broadcastWithMethod(loginType, username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (error) {\n // Check if error is due to missing authority (e.g., posting key trying active op)\n if (shouldTriggerAuthFallback(error)) {\n // Show auth upgrade UI if available (only for posting/active operations)\n if (\n adapter.showAuthUpgradeUI &&\n (authority === 'posting' || authority === 'active')\n ) {\n // Guard against empty operations array\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`Operation requires ${authority} authority. User declined alternate auth.`);\n }\n\n // User selected a specific method - delegate to broadcastWithMethod\n // This handles all auth methods (hiveauth, hivesigner, key, keychain, custom, etc.)\n // broadcastWithMethod already contains all necessary validation and method-specific logic\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n }\n\n // Not an auth error, or no upgrade UI available - throw original error\n throw error;\n }\n }\n\n // loginType is null — user's auth method is unknown (e.g., incomplete login data)\n if (authority === 'posting') {\n // For posting ops, try HiveSigner — access token is usually available for all logins\n try {\n return await broadcastWithMethod('hivesigner', username, ops, auth, authority, undefined, undefined, broadcastMode);\n } catch (hsError) {\n if (shouldTriggerAuthFallback(hsError) && adapter.showAuthUpgradeUI) {\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`No login type available for ${username}. Please log in again.`);\n }\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n throw hsError;\n }\n } else if (authority === 'active' && adapter.showAuthUpgradeUI) {\n // For active ops, show auth upgrade dialog — no silent fallback possible\n const operationName = ops.length > 0 ? ops[0][0] : 'unknown';\n const selectedMethod = await adapter.showAuthUpgradeUI(authority, operationName);\n if (!selectedMethod) {\n throw new Error(`Operation requires ${authority} authority. User declined alternate auth.`);\n }\n return await broadcastWithMethod(selectedMethod, username, ops, auth, authority, undefined, undefined, broadcastMode);\n }\n }\n\n // FALLBACK APPROACH: For backward compatibility, use fallback chain\n // This is only used if adapter doesn't provide getLoginType\n const chain = auth?.fallbackChain ?? ['key', 'hiveauth', 'hivesigner', 'keychain', 'custom'];\n const errors: Map = new Map();\n\n for (const method of chain) {\n try {\n // Check if method is available before attempting\n let shouldSkip = false;\n let skipReason = '';\n let prefetchedKey: string | null | undefined;\n let prefetchedToken: string | null | undefined;\n\n switch (method) {\n case 'key':\n if (!adapter) {\n shouldSkip = true;\n skipReason = 'No adapter provided';\n } else {\n // Pre-fetch key to check availability (will be reused in broadcast)\n let key: string | null | undefined;\n\n switch (authority) {\n case 'owner':\n if (adapter.getOwnerKey) {\n key = await adapter.getOwnerKey(username);\n }\n break;\n case 'active':\n if (adapter.getActiveKey) {\n key = await adapter.getActiveKey(username);\n }\n break;\n case 'memo':\n if (adapter.getMemoKey) {\n key = await adapter.getMemoKey(username);\n }\n break;\n case 'posting':\n default:\n key = await adapter.getPostingKey(username);\n break;\n }\n\n if (!key) {\n shouldSkip = true;\n skipReason = `No ${authority} key available`;\n } else {\n prefetchedKey = key; // Store for reuse\n }\n }\n break;\n case 'hiveauth':\n if (!adapter?.broadcastWithHiveAuth) {\n shouldSkip = true;\n skipReason = 'HiveAuth not supported by adapter';\n }\n break;\n case 'hivesigner':\n if (!adapter) {\n shouldSkip = true;\n skipReason = 'No adapter provided';\n } else {\n // Pre-fetch token if available (will be reused in broadcast)\n const token = await adapter.getAccessToken(username);\n if (token) {\n prefetchedToken = token; // Store for reuse\n }\n // When no token but adapter exists, don't skip —\n // broadcastWithMethod can fall back to adapter.broadcastWithHiveSigner\n }\n break;\n case 'keychain':\n if (!adapter?.broadcastWithKeychain) {\n shouldSkip = true;\n skipReason = 'Keychain not supported by adapter';\n }\n break;\n case 'custom':\n if (!auth?.broadcast) {\n shouldSkip = true;\n skipReason = 'No custom broadcast function provided';\n }\n break;\n }\n\n if (shouldSkip) {\n errors.set(method, new Error(`Skipped: ${skipReason}`));\n continue;\n }\n\n // Method is available, attempt broadcast with pre-fetched credentials\n return await broadcastWithMethod(method, username, ops, auth, authority, prefetchedKey, prefetchedToken, broadcastMode);\n } catch (error) {\n // Record actual error from failed broadcast attempt\n errors.set(method, error as Error);\n\n // Only continue fallback if error suggests trying another method\n if (!shouldTriggerAuthFallback(error)) {\n // If it's not an auth error, throw immediately (e.g., RC error, network error)\n throw error;\n }\n }\n }\n\n // FIX #2: Improved error message distinguishes between skips and real failures\n const hasRealAttempts = Array.from(errors.values()).some(\n error => !error.message.startsWith('Skipped:')\n );\n\n if (!hasRealAttempts) {\n // All methods were skipped (none attempted)\n const skipReasons = Array.from(errors.entries())\n .map(([method, error]) => `${method}: ${error.message}`)\n .join(', ');\n throw new Error(\n `[SDK][Broadcast] No auth methods attempted for ${username}. ${skipReasons}`\n );\n }\n\n // At least one method was attempted but all failed\n const errorMessages = Array.from(errors.entries())\n .map(([method, error]) => `${method}: ${error.message}`)\n .join(', ');\n\n throw new Error(\n `[SDK][Broadcast] All auth methods failed for ${username}. Errors: ${errorMessages}`\n );\n}\n\n/**\n * React Query mutation hook for broadcasting Hive operations.\n * Supports multiple authentication methods with automatic fallback.\n *\n * @template T - Type of the mutation payload\n * @param mutationKey - React Query mutation key for cache management\n * @param username - Hive username (required for broadcast)\n * @param operations - Function that converts payload to Hive operations\n * @param onSuccess - Success callback after broadcast completes\n * @param auth - Authentication context (supports both legacy AuthContext and new AuthContextV2)\n * @param authority - Key authority to use ('posting' | 'active' | 'owner' | 'memo'), defaults to 'posting'\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Authentication Flow:**\n *\n * 1. **With AuthContextV2 + adapter + enableFallback** (recommended for new code):\n * - Tries auth methods in fallbackChain order\n * - Smart fallback: only retries on auth errors, not RC/network errors\n * - Uses platform adapter for storage, UI, and broadcasting\n *\n * 2. **With legacy AuthContext** (backward compatible):\n * - Tries auth.broadcast() first (custom implementation)\n * - Falls back to postingKey if available\n * - Falls back to accessToken (HiveSigner) if available\n * - Throws if no auth method available\n *\n * **Backward Compatibility:**\n * - All existing code using AuthContext will continue to work\n * - AuthContextV2 extends AuthContext, so it's a drop-in replacement\n * - enableFallback defaults to false if no adapter provided\n *\n * @example\n * ```typescript\n * // New pattern with platform adapter and fallback\n * const mutation = useBroadcastMutation(\n * ['vote'],\n * username,\n * (payload) => [voteOperation(payload)],\n * () => console.log('Success!'),\n * {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * },\n * 'posting'\n * );\n *\n * // Legacy pattern (still works)\n * const mutation = useBroadcastMutation(\n * ['vote'],\n * username,\n * (payload) => [voteOperation(payload)],\n * () => console.log('Success!'),\n * { postingKey: 'wif-key' }\n * );\n * ```\n */\nexport function useBroadcastMutation(\n mutationKey: MutationKey = [],\n username: string | undefined,\n operations: (payload: T) => Operation[],\n onSuccess: UseMutationOptions[\"onSuccess\"] = () => {},\n auth?: AuthContextV2,\n authority: AuthorityLevel = 'posting',\n options?: {\n onMutate?: UseMutationOptions[\"onMutate\"];\n onError?: UseMutationOptions[\"onError\"];\n onSettled?: UseMutationOptions[\"onSettled\"];\n /**\n * Controls whether to wait for block inclusion or just mempool acceptance.\n *\n * - `'async'` (default): Returns after mempool acceptance. Recommended for\n * all operations; errors are still thrown immediately.\n *\n * - `'sync'`: Waits for block inclusion, returns block_num/trx_num.\n * Deprecated; prefer `'async'`.\n */\n broadcastMode?: BroadcastMode;\n }\n) {\n const broadcastMode = options?.broadcastMode ?? 'async';\n\n return useMutation({\n onSuccess,\n onMutate: options?.onMutate,\n onError: options?.onError,\n onSettled: options?.onSettled,\n mutationKey: [...mutationKey, username],\n mutationFn: async (payload: T) => {\n if (!username) {\n throw new Error(\n \"[Core][Broadcast] Attempted to call broadcast API with anon user\"\n );\n }\n\n const ops = operations(payload);\n\n try {\n // New: Try auth methods in fallback chain (if enabled)\n if (auth?.enableFallback !== false && auth?.adapter) {\n return await broadcastWithFallback(username, ops, auth, authority, broadcastMode);\n }\n\n // Legacy behavior: try methods in fixed order (backward compatible)\n if (auth?.broadcast) {\n return await auth.broadcast(ops, authority);\n }\n\n const postingKey = auth?.postingKey;\n if (postingKey) {\n // Legacy auth only supports posting authority\n if (authority !== 'posting') {\n throw new Error(\n `[SDK][Broadcast] Legacy auth only supports posting authority, but '${authority}' was requested. ` +\n `Use AuthContextV2 with an adapter for ${authority} operations.`\n );\n }\n\n const privateKey = PrivateKey.fromString(postingKey);\n\n return await broadcastOperations(\n ops,\n privateKey\n );\n }\n\n const accessToken = auth?.accessToken;\n if (accessToken) {\n const client = new hs.Client({ accessToken });\n const response = await client.broadcast(ops);\n return response.result;\n }\n\n throw new Error(\n \"[SDK][Broadcast] – cannot broadcast w/o posting key or token\"\n );\n } catch (e) {\n if (e instanceof RPCError) {\n // Normalize raw blockchain rejections (missing authority, RC exhaustion,\n // validation failures) from every broadcast path — sync and async — into\n // a plain Error whose message is preserved for downstream classification\n // (formatError), so React Query captures a handled mutation error.\n throw new Error(e.message);\n }\n throw e\n }\n },\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\nimport hs from \"hivesigner\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport async function broadcastJson(\n username: string | undefined,\n id: string,\n payload: T,\n auth?: AuthContextV2\n) {\n if (!username) {\n throw new Error(\n \"[Core][Broadcast] Attempted to call broadcast API with anon user\"\n );\n }\n const jjson = {\n id,\n required_auths: [],\n required_posting_auths: [username],\n json: JSON.stringify(payload),\n };\n\n if (auth?.broadcast) {\n return auth.broadcast([[\"custom_json\", jjson]], \"posting\");\n }\n\n const postingKey = auth?.postingKey;\n if (postingKey) {\n const privateKey = PrivateKey.fromString(postingKey);\n\n return broadcastOperations(\n [[\"custom_json\", jjson]],\n privateKey\n );\n }\n\n // With hivesigner access token\n const accessToken = auth?.accessToken;\n if (accessToken) {\n const response = await new hs.Client({\n accessToken,\n }).customJson([], [username], id, JSON.stringify(payload));\n return response.result;\n }\n\n /*\n * Adapter, as a last resort rather than first.\n *\n * `auth.broadcast` above is the supported caller-supplied path inherited by\n * AuthContextV2, but the web app's `getSdkAuthContext` does not populate it.\n * A Keychain user whose posting key is not stored and who has no HiveSigner\n * token therefore reached the throw below instead of being asked to sign.\n * This is reachable today from follow and unfollow.\n *\n * Placed last on purpose: every branch above already works for the sessions\n * that reach it, and reordering would change which method signs for people\n * it currently serves. This only claims cases that were previously errors.\n */\n const adapter = auth?.adapter;\n if (adapter) {\n const ops: Parameters>[1] =\n [[\"custom_json\", jjson]];\n\n if (auth?.loginType === \"keychain\" && adapter.broadcastWithKeychain) {\n return adapter.broadcastWithKeychain(username, ops, \"posting\");\n }\n if (auth?.loginType === \"hiveauth\" && adapter.broadcastWithHiveAuth) {\n return adapter.broadcastWithHiveAuth(username, ops, \"posting\");\n }\n }\n\n throw new Error(\n \"[SDK][Broadcast] – cannot broadcast w/o posting key or token\"\n );\n}\n","import type { BroadcastMode } from \"./use-broadcast-mutation\";\nimport type { PlatformAdapter } from \"@/modules/core/types\";\n\n/**\n * Delay (ms) before invalidating chain-derived queries after an async\n * broadcast. ~1.3 Hive blocks (3s/block) so the just-broadcast transaction has\n * landed in a block before we refetch — otherwise the refetch returns pre-tx\n * state (e.g. a stale wallet balance).\n */\nexport const BROADCAST_INCLUSION_DELAY_MS = 4000;\n\n/**\n * Invalidate queries after a broadcast, accounting for broadcast mode.\n *\n * - `'sync'`: the transaction already waited for block inclusion, so refetch\n * immediately (returns the adapter's promise so callers may await it).\n * - `'async'` (default) / undefined: the transaction is only in the mempool, so\n * a refetch now would read pre-tx state — defer by ~1 block.\n *\n * No-ops when the adapter can't invalidate.\n */\nexport function invalidateAfterBroadcast(\n adapter: PlatformAdapter | null | undefined,\n broadcastMode: BroadcastMode | undefined,\n keys: any[][]\n): void | Promise {\n if (!adapter?.invalidateQueries) return;\n if (broadcastMode === \"sync\") {\n // Method call (not an extracted reference) so `this` stays bound to adapter.\n return adapter.invalidateQueries(keys);\n }\n setTimeout(() => adapter.invalidateQueries?.(keys), BROADCAST_INCLUSION_DELAY_MS);\n}\n","export function withTimeoutSignal(timeoutMs: number, signal?: AbortSignal): AbortSignal {\n const timeoutSignal = AbortSignal.timeout(timeoutMs);\n if (!signal) return timeoutSignal;\n\n // AbortSignal.any is available in Chrome 116+, Safari 17.4+, Firefox 124+.\n // Fall back to manual AbortController wiring for older browsers.\n if (typeof AbortSignal.any === \"function\") {\n return AbortSignal.any([signal, timeoutSignal]);\n }\n\n const ac = new AbortController();\n const onAbort = () => {\n const reason = signal.aborted ? signal.reason : timeoutSignal.reason;\n ac.abort(reason);\n signal.removeEventListener(\"abort\", onAbort);\n timeoutSignal.removeEventListener(\"abort\", onAbort);\n };\n if (signal.aborted) {\n ac.abort(signal.reason);\n } else if (timeoutSignal.aborted) {\n ac.abort(timeoutSignal.reason);\n } else {\n signal.addEventListener(\"abort\", onAbort, { once: true });\n timeoutSignal.addEventListener(\"abort\", onAbort, { once: true });\n }\n return ac.signal;\n}\n","import { QueryClient } from \"@tanstack/react-query\";\nimport {\n config as hiveTxConfig,\n setNodes as setHiveTxNodes,\n setRestNodes as setHiveTxRestNodes,\n setRestNodesByApi as setHiveTxRestNodesByApi,\n setUserAgent as setHiveTxUserAgent,\n setResilience as setHiveTxResilience,\n setServerRpcProxy as setHiveTxServerRpcProxy,\n rpcProxyStats,\n type ResilienceOptions,\n type ServerRpcProxyOptions,\n} from \"../../hive-tx\";\nimport type { APIMethods } from \"../../hive-tx/api-types\";\n\n// Safe environment variable access for browser builds\n// In browser builds, tsup will replace process.env.* with literal values at compile time\nconst isDevelopment = (() => {\n try {\n return process.env?.NODE_ENV === 'development';\n } catch {\n return false;\n }\n})();\n\nconst getHeliusApiKey = () => {\n try {\n return process.env?.VITE_HELIUS_API_KEY;\n } catch {\n return undefined;\n }\n};\n\n/** Timeout for internal API calls (search, private API). */\nexport const INTERNAL_API_TIMEOUT_MS = 10_000;\n\n/**\n * Ceiling on `gcTime` for any query that runs during SSR.\n *\n * A long window is fine in a browser or native app, where the cache holds one\n * user's data and lives as long as the session. It is not fine in a server\n * renderer: every query schedules a gc timer, a pending timer is a GC root, and\n * `Query` holds the whole `QueryCache` — so one long-lived entry keeps\n * everything else that request cached reachable for its entire window. A server\n * process then settles at roughly `ingest rate × gcTime`, which is how\n * ecency.com's renderers ended up aborting on the old-space cap rather than\n * levelling off (2026-07-26).\n *\n * Two minutes is far longer than any single render, which is the only window a\n * server-side entry has to be reused before it is dehydrated into the payload.\n *\n * Note this bounds SDK queries at the source. `apps/web` additionally clamps\n * every query through `defaultQueryOptions`, which is what protects it from\n * options defined outside the SDK; hosts that do not clamp get the right\n * behaviour from these defaults alone.\n */\nexport const SERVER_GC_TIME_MS = 2 * 60 * 1000;\n\n/**\n * How `CONFIG.queryClient` is resolved.\n *\n * This used to be a plain `queryClient: new QueryClient()` property — a single\n * instance created at module import and shared by every caller for the lifetime\n * of the process. That is correct in a browser (one process, one user) but wrong\n * under SSR, where one process serves every request: each server render wrote its\n * fetched data into that one cache and nothing ever removed it, so the heap grew\n * monotonically until the renderer hit its old-space limit and aborted.\n *\n * A host that renders on the server registers a resolver (see\n * `ConfigManager.setQueryClientResolver`) which returns the *current request's*\n * client, so cached data dies with the request that produced it. Hosts that\n * genuinely want one long-lived client keep using `setQueryClient`, and callers\n * that configure nothing fall back to a lazily created instance.\n *\n * The resolver is consulted on every read rather than cached here on purpose:\n * request scoping is the host's concern, and only the host can know when one\n * request ends and the next begins.\n */\nlet queryClientResolver: (() => QueryClient) | undefined;\n\n/** Created on first use, and only when no resolver has been registered. */\nlet fallbackQueryClient: QueryClient | undefined;\n\nfunction resolveQueryClient(): QueryClient {\n if (queryClientResolver) {\n return queryClientResolver();\n }\n return (fallbackQueryClient ??= new QueryClient());\n}\n\nexport const CONFIG = {\n privateApiHost: \"https://ecency.com\",\n /**\n * Host for the newsletter relay routes (/api/newsletter/*), which live on\n * the WEB origin (Next.js route handlers), not on the private API service.\n * `undefined` falls back to `privateApiHost` (right for mobile, whose one\n * host serves both); the web client pins it to \"\" so newsletter requests\n * stay same-origin on ANY deployment, hostname regardless.\n */\n newsletterHost: undefined as string | undefined,\n /**\n * Observer used for bridge calls when nobody is logged in. The bridge applies\n * this account's mute list to the response, marking muted authors' posts and\n * comments `stats.gray` so clients can dim or collapse them. Anonymous\n * visitors therefore inherit Ecency's moderation instead of seeing an\n * unfiltered firehose. Apps may override via `ConfigManager.setDefaultObserver`,\n * which expects a real account rather than \"\" (see that setter).\n *\n * Note this only *marks* content: the bridge still returns muted authors'\n * posts, so an observer never shortens a feed.\n */\n defaultObserver: \"ecency\",\n /**\n * First-party client identifier sent as the `X-Ecency-Client` header on\n * search/private API requests. Lets the origin distinguish Ecency's own\n * web/mobile/SSR traffic from third-party integrators (who should use the\n * keyed api.hivesearcher.com backend instead of the public proxy). This is\n * a routing marker, not a secret. Apps may override via\n * `ConfigManager.setClientId` (e.g. \"web\" or \"mobile\") for observability.\n */\n clientId: \"ecency-sdk\",\n imageHost: \"https://i.ecency.com\",\n /** Current Hive RPC nodes. Reads from the unified hive-tx config. */\n get hiveNodes(): string[] {\n return hiveTxConfig.nodes;\n },\n heliusApiKey: getHeliusApiKey(),\n /**\n * The React Query client all SDK code reads through `getQueryClient()`.\n * Backed by a resolver so an SSR host can scope it per request — see the\n * `queryClientResolver` note above. Assigning replaces the resolver with one\n * that always returns the assigned client, preserving the previous\n * \"one client, set once\" behaviour for browser and native hosts.\n */\n get queryClient(): QueryClient {\n return resolveQueryClient();\n },\n set queryClient(client: QueryClient) {\n queryClientResolver = () => client;\n },\n pollsApiHost: \"https://poll.ecency.com\",\n plausibleHost: \"https://pl.ecency.com\",\n // DMCA filtering - can be configured by the app\n dmcaAccounts: [] as string[],\n dmcaTags: [] as string[],\n dmcaPatterns: [] as string[],\n // Pre-compiled regex patterns for performance and security\n dmcaTagRegexes: [] as RegExp[],\n dmcaPatternRegexes: [] as RegExp[],\n // Track if DMCA has been initialized to avoid duplicate logs\n _dmcaInitialized: false,\n};\n\ntype DmcaListsInput = {\n accounts?: string[];\n tags?: string[];\n posts?: string[];\n};\n\nexport namespace ConfigManager {\n export function setQueryClient(client: QueryClient) {\n CONFIG.queryClient = client;\n }\n\n /**\n * Register how the SDK should obtain its React Query client, for hosts where\n * a single shared instance is wrong — principally SSR, where one process\n * serves many requests and a shared cache both leaks memory and risks serving\n * one request's data to another.\n *\n * `resolve` is called on every SDK cache access and should return the client\n * belonging to the request currently being handled. In a Next.js App Router\n * host that means wrapping the factory in React's `cache()`, which memoises\n * per request:\n *\n * ```ts\n * ConfigManager.setQueryClientResolver(() => getQueryClient());\n * ```\n *\n * Registering a resolver supersedes any client previously passed to\n * `setQueryClient`; assigning a client afterwards supersedes the resolver.\n */\n export function setQueryClientResolver(resolve: () => QueryClient) {\n queryClientResolver = resolve;\n }\n\n /**\n * Set the private API host\n * @param host - The private API host URL (e.g., \"https://ecency.com\" or \"\" for relative URLs)\n */\n export function setPrivateApiHost(host: string) {\n CONFIG.privateApiHost = host;\n }\n\n /**\n * Set the host for the newsletter relay routes (/api/newsletter/*), or\n * `undefined` to fall back to the private API host. Use \"\" for same-origin\n * relative requests (the web client's case).\n */\n export function setNewsletterHost(host: string | undefined) {\n CONFIG.newsletterHost = host;\n }\n\n /**\n * Set the first-party client identifier sent as the `X-Ecency-Client` header\n * on search/private API requests (e.g. \"web\" or \"mobile\"). Defaults to\n * \"ecency-sdk\". Used by the origin to tell Ecency's own apps apart from\n * third-party integrators.\n * @param clientId - Short client label\n */\n export function setClientId(clientId: string) {\n CONFIG.clientId = clientId;\n }\n\n /**\n * Set the observer used for bridge calls made without a logged-in user.\n * Defaults to \"ecency\"; a third-party integrator should point this at their\n * own moderation account.\n *\n * Must be a real account. An empty value is rejected rather than treated as\n * an opt-out: consumers resolve the observer with `||`, and `getDiscussion`\n * separately falls back to the post author, so \"\" would not disable mute\n * marking. It would silently observe as someone else while being cached under\n * \"\", leaving the request and its cache key describing different things.\n * @param observer - Hive account whose mute list applies to anonymous reads\n * @throws If given an empty or whitespace-only value\n */\n export function setDefaultObserver(observer: string) {\n if (typeof observer !== \"string\" || observer.trim() === \"\") {\n throw new Error(\n \"setDefaultObserver requires a non-empty Hive account. There is no empty-string opt-out; \" +\n \"observer resolution would fall back to the post author while caching under an empty key.\"\n );\n }\n\n CONFIG.defaultObserver = observer;\n }\n\n /**\n * Get a validated base URL for API requests\n * Returns a valid base URL that can be used with new URL(path, baseUrl)\n *\n * Priority:\n * 1. CONFIG.privateApiHost if set (dev/staging or explicit config)\n * 2. window.location.origin if in browser (production with relative URLs)\n * 3. 'https://ecency.com' as fallback for SSR (production default)\n *\n * @returns A valid base URL string\n * @throws Never throws - always returns a valid URL\n */\n export function getValidatedBaseUrl(): string {\n if (CONFIG.privateApiHost) {\n return CONFIG.privateApiHost;\n }\n\n if (typeof window !== 'undefined' && window.location?.origin) {\n return window.location.origin;\n }\n\n // Fallback for SSR when privateApiHost is empty (production case)\n return 'https://ecency.com';\n }\n\n /**\n * Set the polls API host\n * @param host - The polls API host URL (e.g., \"https://poll.ecency.com\")\n */\n export function setPollsApiHost(host: string) {\n CONFIG.pollsApiHost = host;\n }\n\n /**\n * Set the image host\n * @param host - The image host URL (e.g., \"https://i.ecency.com\")\n */\n export function setImageHost(host: string) {\n CONFIG.imageHost = host;\n }\n\n /**\n * Set Hive RPC nodes, replacing the default list.\n * Delegates to the unified hive-tx `setNodes` (single validated setter,\n * shared with the lean `@ecency/sdk/hive` entry) so node configuration is\n * defined in exactly one place.\n * @param nodes - Array of Hive RPC node URLs\n */\n export function setHiveNodes(nodes: string[]) {\n setHiveTxNodes(nodes);\n }\n\n /**\n * Set the REST-API node list, replacing the default `restNodes`. Lets an app\n * add/remove REST hosts at runtime (e.g. drop an own node being decommissioned,\n * or widen the public pool) without forking + republishing the SDK. Delegates to\n * the unified hive-tx `setRestNodes` (validated, shared with `@ecency/sdk/hive`).\n * @param nodes - Array of REST-capable node URLs (without a trailing slash)\n */\n export function setRestNodes(nodes: string[]) {\n setHiveTxRestNodes(nodes);\n }\n\n /**\n * Merge per-API REST node overrides. For each API a non-empty valid list pins it\n * to those hosts (so `callREST` never wastes its retry budget on a node that\n * 404/503s the API); an empty list removes the pin (falls back to `restNodes`).\n * Other APIs' pins (e.g. the built-in `hivesense`) are preserved. Delegates to the\n * unified hive-tx `setRestNodesByApi`.\n * @param map - Partial map of REST API name → capable node URLs\n */\n export function setRestNodesByApi(map: Partial>) {\n setHiveTxRestNodesByApi(map);\n }\n\n /**\n * Set the User-Agent sent on server-side (Node) requests to Hive nodes.\n * Lets an app label its own SSR/server traffic (otherwise Node's fetch sends a\n * bare `node` UA). No effect in browsers (User-Agent is a forbidden header) or\n * React Native (keeps its native UA). Delegates to the unified hive-tx setter.\n * @param userAgent - The User-Agent string (e.g. \"ecency-web-ssr (+https://ecency.com)\")\n */\n export function setUserAgent(userAgent: string) {\n setHiveTxUserAgent(userAgent);\n }\n\n /**\n * Tune read-call tail-latency resilience: adaptive per-attempt timeouts\n * (default on) and hedged requests (default OFF — a duplicate request races\n * the next healthy node when the primary stalls, bounded by a token bucket so\n * only the slow tail hedges and pool-wide slowness self-disables it). Partial:\n * only the fields provided are changed; invalid values are ignored\n * field-by-field. Delegates to the unified hive-tx `setResilience`.\n * @param opts - e.g. `{ hedge: true }` to opt into hedged reads\n */\n export function setResilience(opts: Partial) {\n setHiveTxResilience(opts);\n }\n\n /**\n * Route allowlisted server-side RPC reads through a read-through cache in\n * front of the node pool (one cache per host, shared by every renderer\n * process). An optimization, never a dependency: any proxy failure falls\n * straight through to the node loop. No effect outside Node; null switches\n * it off. Delegates to the unified hive-tx `setServerRpcProxy`.\n * @param opts - `{ url, headers, timeoutMs, methods }` or null\n */\n export function setServerRpcProxy(opts: ServerRpcProxyOptions | null) {\n setHiveTxServerRpcProxy(opts);\n }\n\n /**\n * The live counters of that proxy path: `served` (answered by the proxy),\n * `fallback` with a per-reason breakdown (the read went to the node pool\n * after a proxy failure) and `skipped` (breaker open). The same object the\n * call path increments, exposed here because the root build carries its own\n * copy of the hive-tx internals; a consumer importing `rpcProxyStats` from\n * the `/hive` entry would read a different, never-incremented instance.\n * Read-only by contract: the web tier prints it, nothing resets it.\n */\n export function getServerRpcProxyStats(): Readonly {\n return rpcProxyStats;\n }\n\n /**\n * Static analysis: Check for known ReDoS-vulnerable patterns\n * @param pattern - Raw regex pattern string\n * @returns Object with risk level and reason\n */\n function analyzeRedosRisk(pattern: string): { safe: boolean; reason?: string } {\n // Check 1: Nested quantifiers (e.g., (a+)+, (a*)+, (a{1,})+)\n if (/(\\([^)]*[*+{][^)]*\\))[*+{]/.test(pattern)) {\n return { safe: false, reason: \"nested quantifiers detected\" };\n }\n\n // Check 2: Alternation with overlapping terms (e.g., (a|a)+, (ab|a)+)\n if (/\\([^|)]*\\|[^)]*\\)[*+{]/.test(pattern)) {\n return { safe: false, reason: \"alternation with quantifier (potential overlap)\" };\n }\n\n // Check 3: Catastrophic backtracking patterns (e.g., (a*)*b, (a+)+b)\n if (/\\([^)]*[*+][^)]*\\)[*+]/.test(pattern)) {\n return { safe: false, reason: \"repeated quantifiers (catastrophic backtracking risk)\" };\n }\n\n // Check 4: Greedy quantifiers followed by optional patterns (e.g., .*.*x, .+.+x)\n if (/\\.\\*\\.\\*/.test(pattern) || /\\.\\+\\.\\+/.test(pattern)) {\n return { safe: false, reason: \"multiple greedy quantifiers on wildcards\" };\n }\n\n // Check 5: Unbounded ranges with wildcards (e.g., .{1,999999})\n const unboundedRange = /\\.?\\{(\\d+),(\\d+)\\}/g;\n let match;\n while ((match = unboundedRange.exec(pattern)) !== null) {\n const [, min, max] = match;\n const range = parseInt(max, 10) - parseInt(min, 10);\n if (range > 1000) {\n return { safe: false, reason: `excessive range: {${min},${max}}` };\n }\n }\n\n return { safe: true };\n }\n\n /**\n * Runtime test: Execute regex against adversarial inputs with timeout\n * @param regex - Compiled regex\n * @returns Object indicating if regex passed runtime test\n */\n function testRegexPerformance(regex: RegExp): { safe: boolean; reason?: string } {\n // Test inputs designed to trigger ReDoS in vulnerable patterns\n const adversarialInputs = [\n // Nested quantifier attack\n \"a\".repeat(50) + \"x\",\n // Alternation attack\n \"ab\".repeat(50) + \"x\",\n // Wildcard attack\n \"x\".repeat(100),\n // Mixed attack\n \"aaa\".repeat(30) + \"bbb\".repeat(30) + \"x\",\n ];\n\n const maxExecutionTime = 5; // 5ms hard limit per test\n\n for (const input of adversarialInputs) {\n const start = Date.now();\n try {\n regex.test(input);\n const duration = Date.now() - start;\n\n if (duration > maxExecutionTime) {\n return {\n safe: false,\n reason: `runtime test exceeded ${maxExecutionTime}ms (took ${duration}ms on input length ${input.length})`\n };\n }\n } catch (err) {\n return { safe: false, reason: `runtime test threw error: ${err}` };\n }\n }\n\n return { safe: true };\n }\n\n /**\n * Safely compile a regex pattern with defense-in-depth validation\n * @param pattern - Raw regex pattern string\n * @param maxLength - Maximum allowed pattern length (default 200)\n * @returns Compiled RegExp or null if invalid/unsafe\n */\n function safeCompileRegex(pattern: string, maxLength = 200): RegExp | null {\n // Use the module-level isDevelopment constant\n\n try {\n // Layer 1: Basic validation\n if (!pattern) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: empty pattern`);\n }\n return null;\n }\n\n if (pattern.length > maxLength) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: length ${pattern.length} exceeds max ${maxLength} - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n // Layer 2: Static ReDoS analysis\n const staticAnalysis = analyzeRedosRisk(pattern);\n if (!staticAnalysis.safe) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: static analysis failed (${staticAnalysis.reason}) - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n // Layer 3: Compilation attempt\n let regex: RegExp;\n try {\n regex = new RegExp(pattern);\n } catch (compileErr) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: compilation failed - pattern: ${pattern.substring(0, 50)}...`, compileErr);\n }\n return null;\n }\n\n // Layer 4: Runtime performance testing\n const runtimeTest = testRegexPerformance(regex);\n if (!runtimeTest.safe) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: runtime test failed (${runtimeTest.reason}) - pattern: ${pattern.substring(0, 50)}...`);\n }\n return null;\n }\n\n return regex;\n } catch (err) {\n if (isDevelopment) {\n console.warn(`[SDK] DMCA pattern rejected: unexpected error - pattern: ${pattern.substring(0, 50)}...`, err);\n }\n return null;\n }\n }\n\n /**\n * Set DMCA filtering lists\n * @param lists - DMCA lists object containing accounts/tags/posts arrays\n */\n export function setDmcaLists(\n lists: DmcaListsInput = {}\n ) {\n const coerceList = (value: unknown): string[] =>\n Array.isArray(value) ? value.filter((item): item is string => typeof item === \"string\") : [];\n\n // Ensure we have a valid object to work with\n const input = lists || {};\n\n const resolved = {\n accounts: coerceList(input.accounts),\n tags: coerceList(input.tags),\n patterns: coerceList(input.posts),\n };\n\n CONFIG.dmcaAccounts = resolved.accounts;\n CONFIG.dmcaTags = resolved.tags;\n CONFIG.dmcaPatterns = resolved.patterns;\n\n // Pre-compile tag regex patterns (tags can be regex)\n CONFIG.dmcaTagRegexes = resolved.tags\n .map((pattern) => safeCompileRegex(pattern))\n .filter((r): r is RegExp => r !== null);\n\n // Post patterns are plain strings for exact matching, not regex\n // No compilation needed - they will be used with simple string comparison\n CONFIG.dmcaPatternRegexes = [];\n\n const rejectedTagCount = resolved.tags.length - CONFIG.dmcaTagRegexes.length;\n\n // Only log once to avoid noise during builds/hot reloads\n // Only show in development mode to avoid cluttering production console\n // Use the module-level isDevelopment constant\n\n if (!CONFIG._dmcaInitialized && isDevelopment) {\n console.log(`[SDK] DMCA configuration loaded:`);\n console.log(` - Accounts: ${resolved.accounts.length}`);\n console.log(` - Tag patterns: ${CONFIG.dmcaTagRegexes.length}/${resolved.tags.length} compiled (${rejectedTagCount} rejected)`);\n console.log(` - Post patterns: ${resolved.patterns.length} (using exact string matching)`);\n\n if (rejectedTagCount > 0) {\n console.warn(`[SDK] ${rejectedTagCount} DMCA tag patterns were rejected due to security validation. Check warnings above for details.`);\n }\n }\n\n CONFIG._dmcaInitialized = true;\n }\n}\n","import {\n InfiniteData,\n QueryClient,\n QueryKey,\n useInfiniteQuery,\n UseInfiniteQueryOptions,\n useQuery,\n UseQueryOptions,\n} from \"@tanstack/react-query\";\nimport { CONFIG } from \"./config\";\n\n/**\n * Builds a client with the SDK's defaults. It is only a factory — request\n * scoping is the host's job, via `ConfigManager.setQueryClientResolver`, since\n * only the host knows where one request ends and the next begins.\n */\nexport function makeQueryClient() {\n return new QueryClient({\n defaultOptions: {\n queries: {\n // With SSR, we usually want to set some default staleTime\n // above 0 to avoid refetching immediately on the client\n // staleTime: 60 * 1000,\n refetchOnWindowFocus: false,\n refetchOnMount: false,\n },\n },\n });\n}\nexport const getQueryClient = () => CONFIG.queryClient;\n\nexport namespace EcencyQueriesManager {\n export function getQueryData(queryKey: QueryKey) {\n const queryClient = getQueryClient();\n return queryClient.getQueryData(queryKey);\n }\n\n export function getInfiniteQueryData(queryKey: QueryKey) {\n const queryClient = getQueryClient();\n return queryClient.getQueryData>(queryKey);\n }\n\n export async function prefetchQuery(options: UseQueryOptions) {\n const queryClient = getQueryClient();\n await queryClient.prefetchQuery(options);\n return getQueryData(options.queryKey);\n }\n\n export async function prefetchInfiniteQuery(\n options: UseInfiniteQueryOptions<\n T,\n Error,\n InfiniteData,\n QueryKey,\n P\n >\n ) {\n const queryClient = getQueryClient();\n await queryClient.prefetchInfiniteQuery(options);\n return getInfiniteQueryData(options.queryKey);\n }\n\n export function generateClientServerQuery(options: UseQueryOptions) {\n return {\n prefetch: () => prefetchQuery(options),\n getData: () => getQueryData(options.queryKey),\n useClientQuery: () => useQuery(options),\n fetchAndGet: () => getQueryClient().fetchQuery(options),\n };\n }\n\n export function generateClientServerInfiniteQuery(\n options: UseInfiniteQueryOptions<\n T,\n Error,\n InfiniteData,\n QueryKey,\n P\n >\n ) {\n return {\n prefetch: () => prefetchInfiniteQuery(options),\n getData: () => getInfiniteQueryData(options.queryKey),\n useClientQuery: () => useInfiniteQuery(options),\n fetchAndGet: () => getQueryClient().fetchInfiniteQuery(options),\n };\n }\n}\n","export function encodeObj(o: any): string {\n return btoa(JSON.stringify(o));\n}\n\nexport function decodeObj(o: any): any {\n let dataToParse = atob(o);\n if (dataToParse[0] !== \"{\") {\n return undefined;\n }\n return JSON.parse(dataToParse);\n}\n","import type { SMTAsset } from \"@/modules/core/hive-tx\";\n\nexport enum Symbol {\n HIVE = \"HIVE\",\n HBD = \"HBD\",\n VESTS = \"VESTS\",\n}\n\nexport enum NaiMap {\n \"@@000000021\" = \"HIVE\",\n \"@@000000013\" = \"HBD\",\n \"@@000000037\" = \"VESTS\",\n}\n\nexport interface Asset {\n amount: number;\n symbol: Symbol;\n}\n\nexport function parseAsset(sval: string | SMTAsset): Asset {\n if (typeof sval === \"string\") {\n const sp = sval.split(\" \");\n return {\n amount: parseFloat(sp[0]),\n // @ts-ignore\n symbol: Symbol[sp[1]],\n };\n } else {\n return {\n amount: parseFloat(sval.amount.toString()) / Math.pow(10, sval.precision),\n // @ts-ignore\n symbol: NaiMap[sval.nai],\n };\n }\n}\n","let cachedFetch: typeof globalThis.fetch | undefined;\n\nexport function getBoundFetch() {\n if (!cachedFetch) {\n if (typeof globalThis.fetch !== \"function\") {\n throw new Error(\"[Ecency][SDK] - global fetch is not available\");\n }\n\n cachedFetch = globalThis.fetch.bind(globalThis);\n }\n\n return cachedFetch;\n}\n","export function isCommunity(value: unknown) {\n return typeof value === \"string\" ? /^hive-\\d+$/.test(value) : false;\n}\n","import { WrappedResponse } from \"../types/pagination\";\n\n/**\n * Type guard to check if response is wrapped with pagination metadata\n */\nexport function isWrappedResponse(response: any): response is WrappedResponse {\n return (\n response &&\n typeof response === \"object\" &&\n \"data\" in response &&\n \"pagination\" in response &&\n Array.isArray(response.data)\n );\n}\n\n/**\n * Normalize response to wrapped format for backwards compatibility\n * If the backend returns old format (array), convert it to wrapped format\n */\nexport function normalizeToWrappedResponse(\n response: T[] | WrappedResponse,\n limit: number\n): WrappedResponse {\n if (isWrappedResponse(response)) {\n return response;\n }\n\n // Old format - just an array\n // Since we don't have pagination metadata, assume no more pages\n return {\n data: Array.isArray(response) ? response : [],\n pagination: {\n total: Array.isArray(response) ? response.length : 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n}\n","export function vestsToHp(vests: number, hivePerMVests: number): number {\n return (vests / 1e6) * hivePerMVests;\n}\n","export function isEmptyDate(s: string | undefined): boolean {\n if (s === undefined) {\n return true;\n }\n\n return parseInt(s.split(\"-\")[0], 10) < 1980;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { DynamicProps } from \"../types\";\nimport { parseAsset } from \"../utils\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n// This query powers wallet/HP/reward math that should stay close to chain state.\n// Keep a short refresh cadence despite the 5 RPC calls.\nconst DYNAMIC_PROPS_REFRESH_MS = 60 * 1000;\n\nexport function getDynamicPropsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.core.dynamicProps(),\n refetchInterval: DYNAMIC_PROPS_REFRESH_MS,\n staleTime: DYNAMIC_PROPS_REFRESH_MS,\n queryFn: async ({ signal }): Promise => {\n // Get raw blockchain data — all five calls are independent, run in parallel.\n // Hardfork properties is wrapped with catch since not all nodes support it.\n const [rawGlobalDynamic, rawFeedHistory, rawChainProps, rawRewardFund, rawHardforkProps] = await Promise.all([\n callRPC(\"condenser_api.get_dynamic_global_properties\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_feed_history\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_chain_properties\", [], undefined, undefined, signal),\n callRPC(\"condenser_api.get_reward_fund\", [\"post\"], undefined, undefined, signal),\n callRPC(\"database_api.get_hardfork_properties\", {}, undefined, undefined, signal)\n .catch(() => ({ current_hardfork_version: \"1.28.0\", last_hardfork: 28 })),\n ]) as [any, any, any, any, any];\n\n // Calculate derived values for backward compatibility\n // parseAsset handles both string format (\"200905388484 HIVE\") and NAI format ({ amount, nai, precision })\n const totalVestingSharesAmount = parseAsset(rawGlobalDynamic.total_vesting_shares).amount;\n const totalVestingFundAmount = parseAsset(rawGlobalDynamic.total_vesting_fund_hive).amount;\n\n // Guard against division by zero/NaN/Infinity\n let hivePerMVests = 0;\n if (\n Number.isFinite(totalVestingSharesAmount) &&\n totalVestingSharesAmount !== 0 &&\n Number.isFinite(totalVestingFundAmount)\n ) {\n hivePerMVests = (totalVestingFundAmount / totalVestingSharesAmount) * 1e6;\n }\n const base = parseAsset(rawFeedHistory.current_median_history.base).amount;\n const quote = parseAsset(rawFeedHistory.current_median_history.quote).amount;\n const fundRecentClaims = parseFloat(rawRewardFund.recent_claims);\n const fundRewardBalance = parseAsset(rawRewardFund.reward_balance).amount;\n const votePowerReserveRate = Number(rawGlobalDynamic.vote_power_reserve_rate ?? 0);\n const authorRewardCurve = rawRewardFund.author_reward_curve ?? \"linear\";\n const contentConstant = Number(rawRewardFund.content_constant ?? 0);\n const currentHardforkVersion = String(rawHardforkProps.current_hardfork_version ?? \"0.0.0\");\n const lastHardfork = Number(rawHardforkProps.last_hardfork ?? 0);\n const hbdPrintRate = rawGlobalDynamic.hbd_print_rate;\n const hbdInterestRate = rawGlobalDynamic.hbd_interest_rate;\n const headBlock = rawGlobalDynamic.head_block_number;\n const totalVestingFund = totalVestingFundAmount;\n const totalVestingShares = totalVestingSharesAmount;\n const virtualSupply = parseAsset(rawGlobalDynamic.virtual_supply).amount;\n const vestingRewardPercent = rawGlobalDynamic.vesting_reward_percent || 0;\n const accountCreationFee = rawChainProps.account_creation_fee;\n\n return {\n // Backward compatible transformed fields (camelCase, parsed)\n hivePerMVests,\n base,\n quote,\n fundRecentClaims,\n fundRewardBalance,\n votePowerReserveRate,\n authorRewardCurve,\n contentConstant,\n currentHardforkVersion,\n lastHardfork,\n hbdPrintRate,\n hbdInterestRate,\n headBlock,\n totalVestingFund,\n totalVestingShares,\n virtualSupply,\n vestingRewardPercent,\n accountCreationFee,\n\n // Raw blockchain data (snake_case, unparsed) for direct use\n // Includes ALL fields from the blockchain responses\n raw: {\n globalDynamic: rawGlobalDynamic,\n feedHistory: rawFeedHistory,\n chainProps: rawChainProps,\n rewardFund: rawRewardFund,\n hardforkProps: rawHardforkProps,\n },\n } as DynamicProps;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface RewardFund {\n id: number;\n name: string;\n reward_balance: string;\n recent_claims: string;\n last_update: string;\n content_constant: string;\n percent_curation_rewards: number;\n percent_content_rewards: number;\n author_reward_curve: string;\n curation_reward_curve: string;\n}\n\n/**\n * Get reward fund information from the blockchain\n * @param fundName - Name of the reward fund (default: 'post')\n */\nexport function getRewardFundQueryOptions(fundName = \"post\") {\n return queryOptions({\n queryKey: QueryKeys.core.rewardFund(fundName),\n queryFn: () =>\n callRPC(\"condenser_api.get_reward_fund\", [\n fundName,\n ]) as Promise,\n });\n}\n","/**\n * Centralized query key definitions for all SDK queries.\n *\n * These key builders are the single source of truth for React Query cache keys.\n * Both SDK query options and web app consumers should reference these\n * instead of using inline string arrays.\n *\n * @example\n * ```typescript\n * import { QueryKeys } from \"@ecency/sdk\";\n *\n * // In query options\n * queryKey: QueryKeys.posts.entry(`/@${author}/${permlink}`)\n *\n * // In cache invalidation\n * queryClient.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) })\n * ```\n */\n/** Strip trailing undefined values so the key works as a prefix for partialMatchKey */\nfunction key(...parts: unknown[]): unknown[] {\n let end = parts.length;\n while (end > 0 && parts[end - 1] === undefined) {\n end--;\n }\n return parts.slice(0, end);\n}\n\nexport const QueryKeys = {\n // ===========================================================================\n // Posts\n // ===========================================================================\n posts: {\n entry: (entryPath: string) => [\"posts\", \"entry\", entryPath],\n postHeader: (author: string, permlink?: string) =>\n [\"posts\", \"post-header\", author, permlink],\n content: (author: string, permlink: string) =>\n [\"posts\", \"content\", author, permlink],\n contentReplies: (author: string, permlink: string) =>\n [\"posts\", \"content-replies\", author, permlink],\n accountPosts: (\n username: string,\n filter: string,\n limit: number,\n observer: string\n ) => [\"posts\", \"account-posts\", username, filter, limit, observer],\n accountPostsPage: (\n username: string,\n filter: string,\n startAuthor: string,\n startPermlink: string,\n limit: number,\n observer: string\n ) =>\n [\n \"posts\",\n \"account-posts-page\",\n username,\n filter,\n startAuthor,\n startPermlink,\n limit,\n observer,\n ],\n userPostVote: (username: string, author: string, permlink: string) =>\n [\"posts\", \"user-vote\", username, author, permlink],\n reblogs: (username: string, limit: number) =>\n [\"posts\", \"reblogs\", username, limit],\n entryActiveVotes: (author?: string, permlink?: string) =>\n [\"posts\", \"entry-active-votes\", author, permlink],\n rebloggedBy: (author: string, permlink: string) =>\n [\"posts\", \"reblogged-by\", author, permlink],\n tips: (author: string, permlink: string) =>\n [\"posts\", \"tips\", author, permlink],\n normalize: (author: string, permlink: string) =>\n [\"posts\", \"normalize\", author, permlink],\n drafts: (activeUsername?: string) =>\n [\"posts\", \"drafts\", activeUsername],\n draftsInfinite: (activeUsername?: string, limit?: number) =>\n key(\"posts\", \"drafts\", \"infinite\", activeUsername, limit),\n schedules: (activeUsername?: string) =>\n [\"posts\", \"schedules\", activeUsername],\n schedulesInfinite: (activeUsername?: string, limit?: number) =>\n key(\"posts\", \"schedules\", \"infinite\", activeUsername, limit),\n fragments: (username?: string) =>\n [\"posts\", \"fragments\", username],\n fragmentsInfinite: (username?: string, limit?: number) =>\n key(\"posts\", \"fragments\", \"infinite\", username, limit),\n images: (username?: string) => [\"posts\", \"images\", username],\n galleryImages: (activeUsername?: string) =>\n [\"posts\", \"gallery-images\", activeUsername],\n imagesInfinite: (username?: string, limit?: number) =>\n key(\"posts\", \"images\", \"infinite\", username, limit),\n promoted: (type: string) => [\"posts\", \"promoted\", type],\n _promotedPrefix: [\"posts\", \"promoted\"],\n accountPostsBlogPrefix: (username: string) =>\n [\"posts\", \"account-posts\", username, \"blog\"] as const,\n postsRanked: (\n sort: string,\n tag: string,\n limit: number,\n observer: string\n ) => [\"posts\", \"posts-ranked\", sort, tag, limit, observer],\n postsRankedPage: (\n sort: string,\n startAuthor: string,\n startPermlink: string,\n limit: number,\n tag: string,\n observer: string\n ) =>\n [\n \"posts\",\n \"posts-ranked-page\",\n sort,\n startAuthor,\n startPermlink,\n limit,\n tag,\n observer,\n ],\n discussions: (\n author: string,\n permlink: string,\n order: string,\n observer: string\n ) => [\"posts\", \"discussions\", author, permlink, order, observer],\n discussion: (author: string, permlink: string, observer: string) =>\n [\"posts\", \"discussion\", author, permlink, observer],\n deletedEntry: (entryPath: string) =>\n [\"posts\", \"deleted-entry\", entryPath],\n commentHistory: (\n author: string,\n permlink: string,\n onlyMeta: boolean\n ) => [\"posts\", \"comment-history\", author, permlink, onlyMeta],\n trendingTags: () => [\"posts\", \"trending-tags\"],\n trendingTagsWithStats: (limit: number) =>\n [\"posts\", \"trending-tags\", \"stats\", limit],\n wavesFeed: (\n params: {\n containers?: string[];\n tag?: string;\n following?: string;\n author?: string;\n observer?: string;\n limit?: number;\n } = {}\n ) => [\n \"posts\",\n \"waves\",\n \"feed\",\n params.tag ?? \"\",\n params.following ?? \"\",\n params.author ?? \"\",\n params.observer ?? \"\",\n params.limit ?? 0,\n [...(params.containers ?? [])].sort().join(\",\")\n ],\n shortsFeed: (\n params: {\n containers?: string[];\n tag?: string;\n author?: string;\n observer?: string;\n limit?: number;\n } = {}\n ) => [\n \"posts\",\n \"waves\",\n \"shorts\",\n params.tag ?? \"\",\n params.author ?? \"\",\n params.observer ?? \"\",\n params.limit ?? 0,\n [...(params.containers ?? [])].sort().join(\",\")\n ],\n wavesByHost: (host: string) =>\n [\"posts\", \"waves\", \"by-host\", host],\n wavesByTag: (host: string, tag: string) =>\n [\"posts\", \"waves\", \"by-tag\", host, tag],\n wavesFollowing: (host: string, username: string) =>\n [\"posts\", \"waves\", \"following\", host, username],\n wavesTrendingTags: (host: string, hours: number) =>\n [\"posts\", \"waves\", \"trending-tags\", host, hours],\n wavesByAccount: (host: string, username: string) =>\n [\"posts\", \"waves\", \"by-account\", host, username],\n wavesTrendingAuthors: (host: string) =>\n [\"posts\", \"waves\", \"trending-authors\", host],\n _prefix: [\"posts\"],\n },\n\n // ===========================================================================\n // Accounts\n // ===========================================================================\n accounts: {\n full: (username?: string) => [\"get-account-full\", username],\n list: (...usernames: string[]) =>\n [\"accounts\", \"list\", ...usernames],\n friends: (\n following: string,\n mode: string,\n followType: string,\n limit: number\n ) => [\"accounts\", \"friends\", following, mode, followType, limit],\n searchFriends: (username: string, mode: string, query: string) =>\n [\"accounts\", \"friends\", \"search\", username, mode, query],\n subscriptions: (username: string) =>\n [\"accounts\", \"subscriptions\", username],\n followCount: (username: string) =>\n [\"accounts\", \"follow-count\", username],\n recoveries: (username: string) =>\n [\"accounts\", \"recoveries\", username],\n pendingRecovery: (username: string) =>\n [\"accounts\", \"recoveries\", username, \"pending-request\"],\n checkWalletPending: (username: string, code: string | null) =>\n [\"accounts\", \"check-wallet-pending\", username, code],\n mutedUsers: (username: string) =>\n [\"accounts\", \"muted-users\", username],\n following: (\n follower: string,\n startFollowing: string,\n followType: string,\n limit: number\n ) =>\n [\n \"accounts\",\n \"following\",\n follower,\n startFollowing,\n followType,\n limit,\n ],\n followers: (\n following: string,\n startFollower: string,\n followType: string,\n limit: number\n ) =>\n [\n \"accounts\",\n \"followers\",\n following,\n startFollower,\n followType,\n limit,\n ],\n search: (query: string, excludeList?: string[]) =>\n [\"accounts\", \"search\", query, excludeList],\n profiles: (accounts: string[], observer: string) =>\n [\"accounts\", \"profiles\", accounts, observer],\n lookup: (query: string, limit: number) =>\n [\"accounts\", \"lookup\", query, limit],\n transactions: (username: string, group: string, limit: number) =>\n [\"accounts\", \"transactions\", username, group, limit],\n favorites: (activeUsername?: string) =>\n [\"accounts\", \"favorites\", activeUsername],\n favoritesInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"favorites\", \"infinite\", activeUsername, limit),\n checkFavorite: (activeUsername: string, targetUsername: string) =>\n [\n \"accounts\",\n \"favorites\",\n \"check\",\n activeUsername,\n targetUsername,\n ],\n favoriteTags: (activeUsername?: string) =>\n [\"accounts\", \"favorite-tags\", activeUsername],\n favoriteTagsInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"favorite-tags\", \"infinite\", activeUsername, limit),\n checkFavoriteTag: (activeUsername: string, tag: string) =>\n [\"accounts\", \"favorite-tags\", \"check\", activeUsername, tag],\n relations: (reference: string | undefined, target: string | undefined) =>\n [\"accounts\", \"relations\", reference, target],\n bots: () => [\"accounts\", \"bots\"],\n voteHistory: (username: string, limit: number) =>\n [\"accounts\", \"vote-history\", username, limit],\n reputations: (query: string, limit: number) =>\n [\"accounts\", \"reputations\", query, limit],\n bookmarks: (activeUsername?: string) =>\n [\"accounts\", \"bookmarks\", activeUsername],\n bookmarksInfinite: (activeUsername?: string, limit?: number) =>\n key(\"accounts\", \"bookmarks\", \"infinite\", activeUsername, limit),\n referrals: (username: string) =>\n [\"accounts\", \"referrals\", username],\n referralsStats: (username: string) =>\n [\"accounts\", \"referrals-stats\", username],\n proMembers: () => [\"accounts\", \"pro-members\"],\n _prefix: [\"accounts\"],\n },\n\n // ===========================================================================\n // Notifications\n // ===========================================================================\n notifications: {\n announcements: () => [\"notifications\", \"announcements\"],\n spotlights: () => [\"notifications\", \"spotlights\"],\n list: (activeUsername?: string, filter?: string) =>\n [\"notifications\", activeUsername, filter],\n unreadCount: (activeUsername?: string) =>\n [\"notifications\", \"unread\", activeUsername],\n settings: (activeUsername?: string) =>\n [\"notifications\", \"settings\", activeUsername],\n _prefix: [\"notifications\"],\n },\n\n // ===========================================================================\n // Core\n // ===========================================================================\n core: {\n rewardFund: (fundName: string) =>\n [\"core\", \"reward-fund\", fundName],\n dynamicProps: () => [\"core\", \"dynamic-props\"],\n chainProperties: () => [\"core\", \"chain-properties\"],\n _prefix: [\"core\"],\n },\n\n // ===========================================================================\n // Communities\n // ===========================================================================\n communities: {\n single: (name?: string, observer?: string) =>\n [\"community\", \"single\", name, observer],\n /** Prefix key for matching all observer variants of a community */\n singlePrefix: (name: string) =>\n [\"community\", \"single\", name] as const,\n context: (username: string, communityName: string) =>\n [\"community\", \"context\", username, communityName],\n rewarded: () => [\"communities\", \"rewarded\"],\n list: (sort: string, query: string, limit: number) =>\n [\"communities\", \"list\", sort, query, limit],\n subscribers: (communityName: string) =>\n [\"communities\", \"subscribers\", communityName],\n subscribersInfinite: (communityName: string) =>\n [\"communities\", \"subscribers\", \"infinite\", communityName],\n accountNotifications: (account: string, limit: number) =>\n [\"communities\", \"account-notifications\", account, limit],\n },\n\n // ===========================================================================\n // Proposals\n // ===========================================================================\n proposals: {\n list: () => [\"proposals\", \"list\"],\n proposal: (id: number) => [\"proposals\", \"proposal\", id],\n votes: (proposalId: number, voter: string, limit: number) =>\n [\"proposals\", \"votes\", proposalId, voter, limit],\n votesPrefix: (proposalId: number) =>\n [\"proposals\", \"votes\", proposalId] as const,\n votesByUser: (voter: string) =>\n [\"proposals\", \"votes\", \"by-user\", voter],\n },\n\n // ===========================================================================\n // Search\n // ===========================================================================\n search: {\n topics: (q: string, limit: number) => [\"search\", \"topics\", q, limit],\n path: (q: string) => [\"search\", \"path\", q],\n account: (q: string, limit: number) =>\n [\"search\", \"account\", q, limit],\n results: (\n q: string,\n sort: string,\n hideLow: boolean | string,\n since?: string,\n scrollId?: string,\n votes?: number\n ) => {\n const normalizedHideLow = typeof hideLow === \"string\" ? hideLow === \"1\" || hideLow === \"true\" : hideLow;\n return [\"search\", q, sort, normalizedHideLow, since, scrollId, votes] as const;\n },\n controversialRising: (what: string, tag: string) =>\n [\"search\", \"controversial-rising\", what, tag],\n similarEntries: (author: string, permlink: string, content?: string) =>\n content\n ? [\"search\", \"similar-entries\", author, permlink, content]\n : [\"search\", \"similar-entries\", author, permlink],\n api: (\n q: string,\n sort: string,\n hideLow: boolean,\n since?: string,\n votes?: number,\n includeNsfw?: boolean\n ) => key(\"search\", \"api\", q, sort, hideLow, since, votes, includeNsfw),\n },\n\n // ===========================================================================\n // Witnesses\n // ===========================================================================\n witnesses: {\n list: (limit: number) => [\"witnesses\", \"list\", limit],\n votes: (username: string | undefined) => [\"witnesses\", \"votes\", username],\n proxy: () => [\"witnesses\", \"proxy\"],\n voters: (\n witness: string,\n page: number,\n pageSize: number,\n sort: string,\n direction: string\n ) => [\"witnesses\", \"voters\", witness, page, pageSize, sort, direction],\n voterCount: (witness: string) =>\n [\"witnesses\", \"voter-count\", witness],\n },\n\n // ===========================================================================\n // Wallet\n // ===========================================================================\n wallet: {\n outgoingRcDelegations: (username: string, limit: number) =>\n [\"wallet\", \"outgoing-rc-delegations\", username, limit],\n vestingDelegations: (username: string, limit: number) =>\n [\"wallet\", \"vesting-delegations\", username, limit],\n withdrawRoutes: (account: string) =>\n [\"wallet\", \"withdraw-routes\", account],\n incomingRc: (username: string) =>\n [\"wallet\", \"incoming-rc\", username],\n conversionRequests: (account: string) =>\n [\"wallet\", \"conversion-requests\", account],\n receivedVestingShares: (username: string) =>\n [\"wallet\", \"received-vesting-shares\", username],\n savingsWithdraw: (account: string) =>\n [\"wallet\", \"savings-withdraw\", account],\n openOrders: (user: string) =>\n [\"wallet\", \"open-orders\", user],\n collateralizedConversionRequests: (account: string) =>\n [\"wallet\", \"collateralized-conversion-requests\", account],\n recurrentTransfers: (username: string) =>\n [\"wallet\", \"recurrent-transfers\", username],\n balanceHistory: (username: string, coinType: string, pageSize: number) =>\n [\"wallet\", \"balance-history\", username, coinType, pageSize],\n aggregatedHistory: (\n username: string,\n coinType: string,\n granularity?: \"yearly\" | \"monthly\" | \"daily\"\n ) =>\n granularity === undefined\n ? [\"wallet\", \"aggregated-history\", username, coinType]\n : [\"wallet\", \"aggregated-history\", username, coinType, granularity],\n portfolio: (\n username: string,\n onlyEnabled: string,\n currency: string\n ) =>\n [\"wallet\", \"portfolio\", \"v2\", username, onlyEnabled, currency],\n },\n\n // ===========================================================================\n // Assets\n // ===========================================================================\n assets: {\n hiveGeneralInfo: (username: string) =>\n [\"assets\", \"hive\", \"general-info\", username],\n hiveTransactions: (username: string, limit: number, filterKey: string) =>\n [\"assets\", \"hive\", \"transactions\", username, limit, filterKey],\n hiveWithdrawalRoutes: (username: string) =>\n [\"assets\", \"hive\", \"withdrawal-routes\", username],\n hiveMetrics: (bucketSeconds: number) =>\n [\"assets\", \"hive\", \"metrics\", bucketSeconds],\n hbdGeneralInfo: (username: string) =>\n [\"assets\", \"hbd\", \"general-info\", username],\n hbdTransactions: (\n username: string,\n limit: number,\n filterKey: string\n ) => [\"assets\", \"hbd\", \"transactions\", username, limit, filterKey],\n hivePowerGeneralInfo: (username: string) =>\n [\"assets\", \"hive-power\", \"general-info\", username],\n hivePowerDelegates: (username: string) =>\n [\"assets\", \"hive-power\", \"delegates\", username],\n hivePowerDelegatings: (username: string) =>\n [\"assets\", \"hive-power\", \"delegatings\", username],\n hivePowerTransactions: (\n username: string,\n limit: number,\n filterKey: string\n ) =>\n [\n \"assets\",\n \"hive-power\",\n \"transactions\",\n username,\n limit,\n filterKey,\n ],\n pointsGeneralInfo: (username: string) =>\n [\"assets\", \"points\", \"general-info\", username],\n pointsTransactions: (username: string, type: string) =>\n [\"assets\", \"points\", \"transactions\", username, type],\n ecencyAssetInfo: (username: string, asset: string, currency: string) =>\n [\"ecency-wallets\", \"asset-info\", username, asset, currency],\n },\n\n // ===========================================================================\n // Market\n // ===========================================================================\n market: {\n statistics: () => [\"market\", \"statistics\"],\n orderBook: (limit: number) => [\"market\", \"order-book\", limit],\n history: (seconds: number, startDate: number, endDate: number) =>\n [\"market\", \"history\", seconds, startDate, endDate],\n feedHistory: () => [\"market\", \"feed-history\"],\n hiveHbdStats: () => [\"market\", \"hive-hbd-stats\"],\n data: (\n coin: string,\n vsCurrency: string,\n fromTs: number,\n toTs: number\n ) => [\"market\", \"data\", coin, vsCurrency, fromTs, toTs],\n tradeHistory: (limit: number, start: number, end: number) =>\n [\"market\", \"trade-history\", limit, start, end],\n currentMedianHistoryPrice: () =>\n [\"market\", \"current-median-history-price\"],\n },\n\n // ===========================================================================\n // Analytics\n // ===========================================================================\n analytics: {\n discoverCuration: (duration: string) =>\n [\"analytics\", \"discover-curation\", duration],\n pageStats: (\n url: string,\n dimensions: string,\n metrics: string,\n dateRange: string\n ) =>\n [\"analytics\", \"page-stats\", url, dimensions, metrics, dateRange],\n discoverLeaderboard: (duration: string) =>\n [\"analytics\", \"discover-leaderboard\", duration],\n },\n\n // ===========================================================================\n // Promotions\n // ===========================================================================\n promotions: {\n promotePrice: () => [\"promotions\", \"promote-price\"],\n boostPlusPrices: () => [\"promotions\", \"boost-plus-prices\"],\n boostPlusAccounts: (account: string) =>\n [\"promotions\", \"boost-plus-accounts\", account],\n },\n\n // ===========================================================================\n // Resource Credits\n // ===========================================================================\n resourceCredits: {\n account: (username: string) =>\n [\"resource-credits\", \"account\", username],\n stats: () => [\"resource-credits\", \"stats\"],\n resourceParams: () => [\"resource-credits\", \"resource-params\"],\n },\n\n // ===========================================================================\n // Points\n // ===========================================================================\n points: {\n points: (username: string, filter: number) =>\n [\"points\", username, filter],\n _prefix: (username: string) => [\"points\", username],\n },\n\n // ===========================================================================\n // Polls\n // ===========================================================================\n polls: {\n details: (author: string, permlink: string) =>\n [\"polls\", \"details\", author, permlink],\n vote: (author?: string, permlink?: string) =>\n author && permlink\n ? [\"polls\", \"vote\", author, permlink]\n : [\"polls\", \"vote\"],\n _prefix: [\"polls\"],\n },\n\n // ===========================================================================\n // Operations\n // ===========================================================================\n operations: {\n chainProperties: () => [\"operations\", \"chain-properties\"],\n },\n\n // ===========================================================================\n // Games\n // ===========================================================================\n games: {\n statusCheck: (gameType: string, username: string) =>\n [\"games\", \"status-check\", gameType, username],\n },\n\n quests: {\n status: (username: string | undefined) => [\"quests\", \"status\", username],\n },\n\n // ===========================================================================\n // Newsletter (digest subscriptions + sender API)\n // ===========================================================================\n newsletter: {\n subscriptions: (username: string | undefined) => [\n \"newsletter\",\n \"subscriptions\",\n username,\n ],\n sender: (type: string, target: string, username: string | undefined) => [\n \"newsletter\",\n \"sender\",\n type,\n target,\n username,\n ],\n issues: (type: string, target: string, username: string | undefined) => [\n \"newsletter\",\n \"issues\",\n type,\n target,\n username,\n ],\n posts: (\n type: string,\n target: string,\n username: string | undefined,\n limit: number,\n ) => [\"newsletter\", \"posts\", type, target, username, limit],\n _prefix: [\"newsletter\"],\n },\n\n // ===========================================================================\n // Support Ecency\n // ===========================================================================\n support: {\n settings: (username: string | undefined) => [\"support\", \"settings\", username],\n _prefix: [\"support\"],\n },\n\n // ===========================================================================\n // Bad Actors\n // ===========================================================================\n badActors: {\n list: () => [\"bad-actors\", \"list\"],\n _prefix: [\"bad-actors\"],\n },\n\n // ===========================================================================\n // Curation desk\n // ===========================================================================\n curation: {\n /** Public feed; `params` is the normalized (defaults dropped) param map. */\n feed: (params: Record = {}) => [\"curation\", \"feed\", params],\n /** Authed roster feed; every sort and filter value is on the key. */\n rosterFeed: (username: string | undefined, params: Record = {}) => [\n \"curation\",\n \"roster-feed\",\n username,\n params,\n ],\n status: () => [\"curation\", \"status\"],\n roster: () => [\"curation\", \"roster\"],\n /**\n * The admin view of the roster: private, per viewer, never shared with the public key.\n * `rosterAdminPrefix` covers every viewer's copy, because the roster it describes is\n * shared: a write by one admin makes the cached copy of any other one stale.\n */\n rosterAdmin: (username: string | undefined) => [\"curation\", \"roster-admin\", username],\n rosterAdminPrefix: () => [\"curation\", \"roster-admin\"],\n recommendations: (params: Record = {}) => [\n \"curation\",\n \"recommendations\",\n params,\n ],\n _recommendationsPrefix: [\"curation\", \"recommendations\"],\n post: (author: string, permlink: string) => [\"curation\", \"post\", author, permlink],\n /** Route 14: one recommender's 90-day scorecard. */\n recommender: (username: string) => [\"curation\", \"recommender\", username],\n /** Mutation key of the recommend and unrecommend broadcast. */\n recommend: () => [\"curation\", \"recommend\"],\n _prefix: [\"curation\"],\n },\n\n // ===========================================================================\n // AI\n // ===========================================================================\n ai: {\n prices: () => [\"ai\", \"prices\"] as const,\n assistPrices: (username?: string) => [\"ai\", \"assist-prices\", username] as const,\n transcribePrice: (username?: string) => [\"ai\", \"transcribe-price\", username] as const,\n images: (username?: string) => [\"ai\", \"images\", username] as const,\n _prefix: [\"ai\"],\n },\n} as const;\n","/**\n * UTF-8 byte length of a string.\n *\n * `TextEncoder` is missing on some runtimes the SDK ships to (React Native /\n * Hermes), and `String.length` is NOT a substitute: it counts UTF-16 code\n * units, so anything non-ASCII is undercounted. Where that number feeds an RC\n * estimate, undercounting means telling someone a post is affordable when the\n * chain will reject it.\n */\nexport function utf8ByteLength(value: string): number {\n if (typeof TextEncoder !== \"undefined\") {\n return new TextEncoder().encode(value).length;\n }\n\n let bytes = 0;\n for (let i = 0; i < value.length; i++) {\n const c = value.charCodeAt(i);\n if (c < 0x80) {\n bytes += 1;\n } else if (c < 0x800) {\n bytes += 2;\n } else if (c >= 0xd800 && c <= 0xdbff && i + 1 < value.length) {\n // surrogate pair encodes as four bytes\n i++;\n bytes += 4;\n } else {\n bytes += 3;\n }\n }\n return bytes;\n}\n\n/** Byte length of Hive's unsigned LEB128 varint for `value`. */\nexport function varintByteLength(value: number): number {\n let count = 0;\n let remaining = value;\n do {\n count++;\n remaining >>>= 7;\n } while (remaining > 0);\n return count;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiImagePriceResponse } from \"../types\";\n\nexport function getAiGeneratePriceQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.prices(),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-generate-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI generation prices: ${response.status}`);\n }\n\n return (await response.json()) as AiImagePriceResponse;\n },\n staleTime: 300_000,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiImageHistoryItem } from \"../types\";\n\n/**\n * Per-user AI image generation history (the backend's last 20 successful generations).\n * The backend resolves the user from the validated code, so no username is sent; the\n * key still carries it so each account caches its own history.\n */\nexport function getAiImagesQueryOptions(username: string | undefined, accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.images(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-images\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI image history: ${response.status}`);\n }\n\n return (await response.json()) as AiImageHistoryItem[];\n },\n staleTime: 30_000,\n // This list is a recovery surface: a generation can complete server-side while the\n // client saw only an error, in which case no success-path invalidation ever runs.\n // Every mount of the history view therefore refetches unconditionally, so opening\n // the tab always shows what the server actually delivered.\n refetchOnMount: \"always\",\n enabled: !!username && !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiAssistPrice } from \"../types\";\n\nexport function getAiAssistPriceQueryOptions(username: string | undefined, accessToken: string) {\n return queryOptions({\n queryKey: QueryKeys.ai.assistPrices(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-assist-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI assist prices: ${response.status}`);\n }\n\n return (await response.json()) as AiAssistPrice[];\n },\n staleTime: 60_000,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"../../core\";\nimport type { AiTranscribePrice } from \"../types\";\n\n/**\n * Dictation pricing. Kept on its own route rather than folded into\n * /private-api/ai-assist-price: that endpoint returns a list of flat-cost actions and\n * shipped clients render every entry as a selectable assist action, so adding a\n * metered one there would surface in older clients as an action they cannot perform.\n *\n * Everything except `free_remaining` is static, so this is cheap to hold and lets the\n * client price a clip locally while the user is still recording.\n */\nexport function getAiTranscribePriceQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.ai.transcribePrice(username),\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-transcribe-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\"\n },\n body: JSON.stringify({ code: accessToken })\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch AI transcribe price: ${response.status}`);\n }\n\n return (await response.json()) as AiTranscribePrice;\n },\n staleTime: 60_000,\n enabled: !!accessToken\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiGenerationResponse } from \"../types\";\n\nexport interface GenerateImageParams {\n prompt: string;\n aspect_ratio?: string;\n power?: number;\n // Pass a stable key to make a retry recover the same paid generation. If omitted a\n // fresh key is generated per call (only dedupes edge/proxy retries, not user retries).\n idempotency_key?: string;\n}\n\n// Generates a key matching the eepoints validator [A-Za-z0-9_-]{8,64}.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\n// What a completed generation invalidates: the Points balance (it changed) and the\n// per-user generation history (the new image belongs there right away). Exported so the\n// side effect stays unit-testable without rendering the hook.\nexport function invalidateGenerateImageCaches(username: string) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username),\n });\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.images(username),\n });\n}\n\nexport function useGenerateImage(\n username: string | undefined,\n accessToken: string | undefined,\n) {\n return useMutation({\n mutationKey: [\"ai\", \"generate-image\"],\n mutationFn: async (params: GenerateImageParams): Promise => {\n if (!username) {\n throw new Error(\n \"[SDK][AI][GenerateImage] – username wasn't provided\"\n );\n }\n\n if (!accessToken) {\n throw new Error(\n \"[SDK][AI][GenerateImage] – access token wasn't found\"\n );\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/ai-generate-image\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code: accessToken,\n us: username,\n prompt: params.prompt,\n aspect_ratio: params.aspect_ratio ?? \"1:1\",\n power: params.power ?? 1,\n idempotency_key: params.idempotency_key ?? makeIdempotencyKey(),\n }),\n }\n );\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n const err = new Error(\n `[SDK][AI][GenerateImage] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n );\n (err as any).status = response.status;\n (err as any).data = parsed;\n throw err;\n }\n\n // 202 = the prediction is paid for and captured but not yet delivered to our image\n // host. Detect it by HTTP status BEFORE parsing (the body may be present or empty)\n // and surface it as a typed error so the caller can retry with the SAME\n // idempotency_key to fetch it — no second prediction, no second charge.\n if (response.status === 202) {\n let pendingData: Record = {};\n try {\n pendingData = await response.json();\n } catch {\n // empty / non-JSON 202 body is fine — the status alone drives recovery\n }\n const err = new Error(\"[SDK][AI][GenerateImage] – delivery pending\");\n (err as any).status = 202;\n (err as any).data = pendingData;\n throw err;\n }\n\n const data = (await response.json()) as AiGenerationResponse;\n\n return data;\n },\n onSuccess: () => {\n if (username) {\n invalidateGenerateImageCaches(username);\n }\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiAssistResponse } from \"../types\";\n\nexport interface AiAssistParams {\n action: string;\n text: string;\n code?: string;\n}\n\n// Generates a key that matches the eepoints validator [A-Za-z0-9_-]{8,64}.\n// Used to dedupe duplicate POSTs caused by edge/proxy retries — same key on\n// retry returns the cached AI output without re-charging or re-calling Claude.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\nexport function useAiAssist(\n username: string | undefined,\n accessToken: string | undefined,\n) {\n return useMutation({\n mutationKey: [\"ai\", \"assist\"],\n mutationFn: async (params: AiAssistParams): Promise => {\n if (!username) {\n throw new Error(\n \"[SDK][AI][Assist] – username wasn't provided\"\n );\n }\n\n if (!accessToken) {\n throw new Error(\n \"[SDK][AI][Assist] – access token wasn't found\"\n );\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/ai-assist\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code: params.code ?? accessToken,\n us: username,\n action: params.action,\n text: params.text,\n idempotency_key: makeIdempotencyKey(),\n }),\n }\n );\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n const err = new Error(\n `[SDK][AI][Assist] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n );\n (err as any).status = response.status;\n (err as any).data = parsed;\n throw err;\n }\n\n return (await response.json()) as AiAssistResponse;\n },\n onSuccess: (data) => {\n if (username) {\n // Invalidate points cache if cost was charged\n if (data.cost > 0) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username),\n });\n }\n // Invalidate assist prices to refresh free_remaining counts\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.assistPrices(username),\n });\n }\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AiTranscribeParams, AiTranscribeResponse } from \"../types\";\n\n// Matches the eepoints validator [A-Za-z0-9_-]{8,64}. Dedupes duplicate POSTs caused\n// by edge/proxy retries -- the same key returns the cached transcript without\n// re-charging or re-calling the vendor.\nfunction makeIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n const arr = new Uint8Array(16);\n if (typeof crypto !== \"undefined\" && typeof crypto.getRandomValues === \"function\") {\n crypto.getRandomValues(arr);\n } else {\n for (let i = 0; i < arr.length; i++) arr[i] = Math.floor(Math.random() * 256);\n }\n return Array.from(arr)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n\n/**\n * Transcribe an audio clip to text, charged per 30 seconds.\n *\n * Sends multipart/form-data rather than JSON because it carries a file. Unlike the\n * other AI mutations the charge is BURNED rather than moved to the treasury, so the\n * points transaction shows up as PointTransactionType.BURNED (997).\n */\nexport function useAiTranscribe(username: string | undefined, accessToken: string | undefined) {\n return useMutation({\n mutationKey: [\"ai\", \"transcribe\"],\n mutationFn: async (params: AiTranscribeParams): Promise => {\n if (!username) {\n throw new Error(\"[SDK][AI][Transcribe] – username wasn't provided\");\n }\n\n // Validate the token actually being sent, not just the bound one. A caller\n // that resolves a fresh token per call (because the bound one can expire\n // during a long recording) legitimately has nothing at hook construction.\n const code = params.code ?? accessToken;\n if (!code) {\n throw new Error(\"[SDK][AI][Transcribe] – access token wasn't found\");\n }\n\n const form = new FormData();\n form.append(\"code\", code);\n // `us` is resolved from the code server-side and is deliberately not sent:\n // upstream burns from whoever it names.\n form.append(\"duration_ms\", String(Math.round(params.durationMs)));\n // Caller-supplied key when there is one. Generating a fresh key per attempt\n // would defeat the dedupe in the one case it exists for: a POST that reached\n // the server whose response was lost. Retrying then would transcribe and\n // charge a second time. Same contract as useGenerateImage.\n form.append(\"idempotency_key\", params.idempotency_key ?? makeIdempotencyKey());\n form.append(\"audio\", params.audio, params.fileName ?? \"clip.webm\");\n\n const fetchApi = getBoundFetch();\n // No Content-Type header: fetch sets it, including the multipart boundary.\n // Setting it by hand drops the boundary and the body becomes unparseable.\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/ai-transcribe\", {\n method: \"POST\",\n body: form\n });\n\n if (!response.ok) {\n const body = await response.text();\n let parsed: Record = {};\n try {\n parsed = JSON.parse(body);\n } catch {\n // not JSON\n }\n\n // Object.assign rather than `as any` casts: callers need `status` to tell a\n // 402 (out of Points) from a 429 (rate limited) from a 400 (clip too long),\n // and this keeps that shape typed.\n throw Object.assign(\n new Error(\n `[SDK][AI][Transcribe] – failed with status ${response.status}${body ? `: ${body}` : \"\"}`\n ),\n { status: response.status, data: parsed }\n );\n }\n\n return (await response.json()) as AiTranscribeResponse;\n },\n onSuccess: (data) => {\n if (username) {\n if (data.cost > 0) {\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.points._prefix(username)\n });\n }\n // Refresh free_remaining, which only Pro members ever have above zero.\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.ai.transcribePrice(username)\n });\n }\n }\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport {\n AccountFollowStats,\n FullAccount,\n} from \"../types\";\nimport { parseProfileMetadata } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/** The raw `condenser_api.get_accounts` row — every FullAccount field except the three\n * this query derives separately (follow_stats + reputation from bridge, profile parsed). */\ntype RawAccount = Omit;\n\n/** Minimal shape read from `bridge.get_profile` (hivemind social profile): it carries\n * the reputation score, the follower/following counts and hivemind's parsed\n * (normalized) profile — the latter is used only to cross-validate the chain row. */\ninterface BridgeProfile {\n reputation?: number;\n stats?: { followers?: number; following?: number };\n metadata?: { profile?: Record };\n}\n\n/** True when the chain row carries no account metadata at all. Legitimate for\n * accounts that never set a profile — but combined with a populated hivemind\n * profile it identifies a node serving stripped account rows. */\nfunction isMetadataStripped(account: RawAccount): boolean {\n return !account.posting_json_metadata && !account.json_metadata;\n}\n\n/** True when a hivemind `metadata.profile` object carries at least one real\n * value. Hivemind emits its fixed profile keys with empty strings for\n * accounts without a profile, so key presence alone proves nothing. */\nfunction hasProfileValues(profile?: Record | null): boolean {\n if (!profile) return false;\n return Object.values(profile).some((value) =>\n typeof value === \"string\" ? value.length > 0 : value != null\n );\n}\n\nexport function getAccountFullQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: QueryKeys.accounts.full(username),\n queryFn: async ({ signal }) => {\n if (!username) {\n return null;\n }\n\n // Fetch the chain account (balances/keys/vesting) and the hivemind profile in\n // parallel — both only need the username. bridge.get_profile carries BOTH the\n // follower/following counts and the reputation score, so it replaces the old\n // second-layer condenser_api.get_follow_count RPC *and* the reputation-api REST\n // call: condenser_api.get_accounts no longer returns a usable reputation (it is 0\n // since the hardfork), and there is no reason to make two extra round-trips for\n // data one profile object already carries.\n const [response, bridgeProfile] = await Promise.all([\n callRPC(\n \"condenser_api.get_accounts\",\n [[username]],\n undefined,\n undefined,\n signal,\n // A correct node always answers get_accounts with an array — a null\n // result in a well-formed envelope is a node fault (observed in the\n // wild), so fail over to the next node instead of misreading it as\n // \"account does not exist\".\n (rows) => Array.isArray(rows)\n ),\n callRPC(\n \"bridge.get_profile\",\n { account: username },\n undefined,\n undefined,\n signal\n ).catch((e): BridgeProfile | null => {\n // A caller cancel (aborted signal) must propagate — only genuine RPC/transport\n // failures degrade to reputation 0 / no follow_stats.\n if (signal?.aborted) throw e;\n return null;\n })\n ]);\n if (!response?.[0]) {\n // The account does not exist (e.g. not yet finalized on-chain during\n // signup). Treat absence as a recoverable null instead of throwing, so\n // consumers (useQuery hooks and fetchQuery callers) surface it as empty\n // data rather than an unhandled rejection / error-boundary crash.\n return null;\n }\n\n let chainAccount = response[0];\n\n // Cross-validate the chain row against the hivemind profile fetched in\n // the same query. Some public nodes serve account rows with BOTH\n // metadata fields stripped to \"\" (observed in the wild) while their own\n // hivemind still returns the real profile — and a merge base built from\n // such a row wipes the user's profile on the next partial\n // account_update2. When the row claims \"no metadata\" but hivemind\n // disagrees, re-read once (failover may pick another node) and otherwise\n // fail the query: an error here is recoverable, a poisoned cache entry\n // is not.\n if (\n isMetadataStripped(chainAccount) &&\n hasProfileValues(bridgeProfile?.metadata?.profile)\n ) {\n // The re-read carries a payload validator: a stripped row is treated\n // as a node fault, so the failover walk moves on to other nodes (and\n // repeat offenders earn a per-API health cooldown) instead of asking\n // the same lying node twice.\n const reread = await callRPC(\n \"condenser_api.get_accounts\",\n [[username]],\n undefined,\n undefined,\n signal,\n (rows) =>\n Array.isArray(rows) &&\n (!rows[0] || !isMetadataStripped(rows[0] as RawAccount))\n );\n if (reread[0] && !isMetadataStripped(reread[0])) {\n chainAccount = reread[0];\n } else {\n throw new Error(\n `[SDK][Accounts] – inconsistent account row for ${username}: empty json metadata while hivemind profile is populated`\n );\n }\n }\n\n const profile = parseProfileMetadata(chainAccount.posting_json_metadata);\n\n // bridge.get_profile.stats → follower/following counts; `reputation` is the\n // computed score (e.g. 78.29). accountReputation() floors an in-range score, so\n // it yields the same value the reputation-api used to return. Both degrade to a\n // safe default if the profile call failed.\n const stats = bridgeProfile?.stats;\n const follow_stats: AccountFollowStats | undefined = stats\n ? {\n account: chainAccount.name,\n follower_count: stats.followers ?? 0,\n following_count: stats.following ?? 0\n }\n : undefined;\n const reputationValue: number = bridgeProfile?.reputation ?? 0;\n\n return {\n name: chainAccount.name,\n owner: chainAccount.owner,\n active: chainAccount.active,\n posting: chainAccount.posting,\n memo_key: chainAccount.memo_key,\n post_count: chainAccount.post_count,\n created: chainAccount.created,\n posting_json_metadata: chainAccount.posting_json_metadata,\n last_vote_time: chainAccount.last_vote_time,\n last_post: chainAccount.last_post,\n json_metadata: chainAccount.json_metadata,\n reward_hive_balance: chainAccount.reward_hive_balance,\n reward_hbd_balance: chainAccount.reward_hbd_balance,\n reward_vesting_hive: chainAccount.reward_vesting_hive,\n reward_vesting_balance: chainAccount.reward_vesting_balance,\n balance: chainAccount.balance,\n hbd_balance: chainAccount.hbd_balance,\n savings_balance: chainAccount.savings_balance,\n savings_hbd_balance: chainAccount.savings_hbd_balance,\n savings_hbd_last_interest_payment:\n chainAccount.savings_hbd_last_interest_payment,\n savings_hbd_seconds_last_update:\n chainAccount.savings_hbd_seconds_last_update,\n savings_hbd_seconds: chainAccount.savings_hbd_seconds,\n next_vesting_withdrawal: chainAccount.next_vesting_withdrawal,\n pending_claimed_accounts: chainAccount.pending_claimed_accounts,\n vesting_shares: chainAccount.vesting_shares,\n delegated_vesting_shares: chainAccount.delegated_vesting_shares,\n received_vesting_shares: chainAccount.received_vesting_shares,\n vesting_withdraw_rate: chainAccount.vesting_withdraw_rate,\n to_withdraw: chainAccount.to_withdraw,\n withdrawn: chainAccount.withdrawn,\n // int64 counters. Condenser serves them unquoted, so normalize here in case a\n // node quotes them, but leave an omitted counter undefined: absent is unknown,\n // and coercing it to 0 would understate every ratio derived from it.\n curation_rewards:\n chainAccount.curation_rewards === undefined\n ? undefined\n : Number(chainAccount.curation_rewards),\n posting_rewards:\n chainAccount.posting_rewards === undefined\n ? undefined\n : Number(chainAccount.posting_rewards),\n witness_votes: chainAccount.witness_votes,\n proxy: chainAccount.proxy,\n recovery_account: chainAccount.recovery_account,\n proxied_vsf_votes: chainAccount.proxied_vsf_votes,\n voting_manabar: chainAccount.voting_manabar,\n voting_power: chainAccount.voting_power,\n downvote_manabar: chainAccount.downvote_manabar,\n follow_stats,\n reputation: reputationValue,\n profile,\n } satisfies FullAccount;\n },\n enabled: !!username,\n staleTime: 60000,\n });\n}\n","import { AccountProfile, FullAccount } from \"../types\";\n\nexport type ProfileTokens = AccountProfile[\"tokens\"];\n\nconst DENIED_KEYS = new Set([\"__proto__\", \"constructor\", \"prototype\"]);\n\nfunction isPlainObject(value: unknown): value is Record {\n if (!value || typeof value !== \"object\" || Array.isArray(value)) {\n return false;\n }\n const proto = Object.getPrototypeOf(value);\n return proto === null || proto === Object.prototype;\n}\n\nfunction deepMerge>(target: T, source: Record): T {\n const result = { ...target } as Record;\n for (const key of Object.keys(source)) {\n if (DENIED_KEYS.has(key)) {\n continue;\n }\n const srcVal = source[key];\n const tgtVal = result[key];\n if (isPlainObject(srcVal) && isPlainObject(tgtVal)) {\n result[key] = deepMerge(tgtVal, srcVal);\n } else {\n result[key] = srcVal;\n }\n }\n return result as T;\n}\n\nexport interface BuildProfileMetadataArgs {\n existingProfile?: AccountProfile;\n profile?: Partial | null;\n tokens?: ProfileTokens | null;\n}\n\nfunction sanitizeTokens(\n tokens?: ProfileTokens | null\n): ProfileTokens | undefined {\n // Guard against corrupted data from blockchain where tokens is not an array\n if (!tokens || !Array.isArray(tokens)) {\n return undefined;\n }\n\n return tokens.map(({ meta, ...rest }) => {\n if (!meta || typeof meta !== \"object\") {\n return { ...rest, meta };\n }\n\n const { privateKey, username, ...safeMeta } = meta;\n return { ...rest, meta: safeMeta };\n });\n}\n\nexport function parseProfileMetadata(\n postingJsonMetadata?: string | null\n): AccountProfile {\n if (!postingJsonMetadata) {\n return {} as AccountProfile;\n }\n\n try {\n const parsed = JSON.parse(postingJsonMetadata);\n if (\n parsed &&\n typeof parsed === \"object\" &&\n parsed.profile &&\n typeof parsed.profile === \"object\"\n ) {\n return parsed.profile as AccountProfile;\n }\n } catch (err) {\n console.warn(\"[SDK] Failed to parse posting_json_metadata:\", err, { length: postingJsonMetadata?.length ?? 0 });\n }\n\n return {} as AccountProfile;\n}\n\nexport function extractAccountProfile(\n data?: Pick | null\n): AccountProfile {\n return parseProfileMetadata(data?.posting_json_metadata);\n}\n\n/**\n * Choose between two account snapshots for a posting-metadata merge base.\n * Prefers `preferred` (typically the freshest cache entry) unless `fallback`\n * carries strictly more profile keys — guarding read-modify-write flows\n * against a snapshot whose metadata was served stripped by a misbehaving node\n * while another snapshot still holds the real profile. A partial update must\n * never shrink the profile while any snapshot still knows the full one.\n */\nexport function pickRicherMetadataSnapshot<\n T extends Pick\n>(\n preferred: T | null | undefined,\n fallback: T | null | undefined\n): T | null | undefined {\n if (!preferred) return fallback;\n if (!fallback) return preferred;\n const preferredKeys = Object.keys(\n parseProfileMetadata(preferred.posting_json_metadata)\n ).length;\n const fallbackKeys = Object.keys(\n parseProfileMetadata(fallback.posting_json_metadata)\n ).length;\n return fallbackKeys > preferredKeys ? fallback : preferred;\n}\n\n/**\n * Parse the FULL root object of posting_json_metadata, not just its `profile`\n * key. Returns {} for missing/invalid input or a non-object root.\n *\n * `parseProfileMetadata` intentionally returns only `parsed.profile`; this\n * helper exists so writers can carry forward any sibling top-level keys that\n * live alongside `profile` (data other Hive apps may store there) instead of\n * dropping them on the next update.\n */\nexport function parsePostingMetadataRoot(\n postingJsonMetadata?: string | null\n): Record {\n if (!postingJsonMetadata) {\n return {};\n }\n\n try {\n const parsed = JSON.parse(postingJsonMetadata);\n if (isPlainObject(parsed)) {\n return parsed;\n }\n } catch (err) {\n console.warn(\"[SDK] Failed to parse posting_json_metadata root:\", err, {\n length: postingJsonMetadata?.length ?? 0,\n });\n }\n\n return {};\n}\n\n/**\n * Build the serialized `posting_json_metadata` string for an account_update2\n * operation. It deep-merges the profile (via {@link buildProfileMetadata}) over\n * the account's CURRENT on-chain profile AND preserves any non-`profile`\n * top-level keys present in the existing metadata, so a partial profile update\n * (e.g. only `pinned` or only `tokens`) never clobbers unrelated fields.\n */\nexport function buildPostingJsonMetadata({\n existingPostingJsonMetadata,\n profile,\n tokens,\n}: {\n existingPostingJsonMetadata?: string | null;\n profile?: Partial | null;\n tokens?: ProfileTokens | null;\n}): string {\n const root = parsePostingMetadataRoot(existingPostingJsonMetadata);\n const existingProfile = isPlainObject(root.profile)\n ? (root.profile as AccountProfile)\n : ({} as AccountProfile);\n\n const mergedProfile = buildProfileMetadata({\n existingProfile,\n profile,\n tokens,\n });\n\n return JSON.stringify({ ...root, profile: mergedProfile });\n}\n\nexport function buildProfileMetadata({\n existingProfile,\n profile,\n tokens,\n}: BuildProfileMetadataArgs): AccountProfile {\n const { tokens: profileTokens, version: _ignoredVersion, ...profileRest } =\n profile ?? {};\n\n const metadata = deepMerge(\n (existingProfile ?? {}) as Record,\n profileRest as Record,\n ) as AccountProfile;\n\n // Clean up corrupted tokens data from blockchain before processing\n if (metadata.tokens && !Array.isArray(metadata.tokens)) {\n metadata.tokens = undefined;\n }\n\n // tokens semantics:\n // undefined → no change, fall back to profileTokens from profile partial\n // null or [] → explicitly clear tokens\n // non-empty array → set tokens\n if (tokens !== undefined) {\n // Explicit intent from caller: null or [] clears, non-empty array sets\n metadata.tokens = tokens && tokens.length > 0 ? tokens : [];\n } else if (profileTokens !== undefined) {\n // Fall back to tokens from profile partial (including empty array to clear)\n metadata.tokens = profileTokens;\n }\n\n metadata.tokens = sanitizeTokens(metadata.tokens);\n metadata.version = 2;\n\n return metadata;\n}\n","import { FullAccount, AccountProfile } from \"../types\";\nimport { parseProfileMetadata } from \"./profile-metadata\";\n\n/**\n * Parses raw account data from Hive API into FullAccount type\n * Handles profile metadata extraction from posting_json_metadata or json_metadata\n */\nexport function parseAccounts(rawAccounts: any[]): FullAccount[] {\n return rawAccounts.map((x) => {\n const account: FullAccount = {\n name: x.name,\n owner: x.owner,\n active: x.active,\n posting: x.posting,\n memo_key: x.memo_key,\n post_count: x.post_count,\n created: x.created,\n reputation: x.reputation,\n posting_json_metadata: x.posting_json_metadata,\n last_vote_time: x.last_vote_time,\n last_post: x.last_post,\n json_metadata: x.json_metadata,\n reward_hive_balance: x.reward_hive_balance,\n reward_hbd_balance: x.reward_hbd_balance,\n reward_vesting_hive: x.reward_vesting_hive,\n reward_vesting_balance: x.reward_vesting_balance,\n balance: x.balance,\n hbd_balance: x.hbd_balance,\n savings_balance: x.savings_balance,\n savings_hbd_balance: x.savings_hbd_balance,\n savings_hbd_last_interest_payment: x.savings_hbd_last_interest_payment,\n savings_hbd_seconds_last_update: x.savings_hbd_seconds_last_update,\n savings_hbd_seconds: x.savings_hbd_seconds,\n next_vesting_withdrawal: x.next_vesting_withdrawal,\n pending_claimed_accounts: x.pending_claimed_accounts,\n vesting_shares: x.vesting_shares,\n delegated_vesting_shares: x.delegated_vesting_shares,\n received_vesting_shares: x.received_vesting_shares,\n vesting_withdraw_rate: x.vesting_withdraw_rate,\n to_withdraw: x.to_withdraw,\n withdrawn: x.withdrawn,\n witness_votes: x.witness_votes,\n proxy: x.proxy,\n recovery_account: x.recovery_account,\n proxied_vsf_votes: x.proxied_vsf_votes,\n voting_manabar: x.voting_manabar,\n voting_power: x.voting_power,\n downvote_manabar: x.downvote_manabar,\n };\n\n // Try to parse profile from posting_json_metadata first\n let profile: AccountProfile | undefined = parseProfileMetadata(\n x.posting_json_metadata\n );\n\n // Fallback to json_metadata if posting_json_metadata didn't have a profile\n if (!profile || Object.keys(profile).length === 0) {\n try {\n const jsonMetadata = JSON.parse(x.json_metadata || \"{}\");\n if (jsonMetadata.profile) {\n profile = jsonMetadata.profile;\n }\n } catch (e) {\n // Ignore parsing errors\n }\n }\n\n // Ensure we always have a profile object\n if (!profile || Object.keys(profile).length === 0) {\n profile = {\n about: \"\",\n cover_image: \"\",\n location: \"\",\n name: \"\",\n profile_image: \"\",\n website: \"\",\n };\n }\n\n return { ...account, profile };\n });\n}\n","/**\n * The chain stores an account name in a `fixed_string` of 16 **bytes**, and hived\n * asserts on the byte length while deserialising the argument, before it ever looks\n * an account up. So a name that is too long does not come back as \"no such account\",\n * it comes back as\n *\n * Assert Exception:in_len <= sizeof(data): Input too large: `` (17)\n * for fixed size string: (16)\n *\n * from `lookup_accounts`, `get_accounts` and anything else taking an\n * `account_name_type`, including plain reads.\n */\nconst HIVE_ACCOUNT_NAME_MAX_BYTES = 16;\n\n/**\n * Bytes, not characters. The two differ exactly where this bug lives: `sebastián.bilbao`\n * is 16 characters but 17 bytes, and `вцпк33ппп43` is 11 characters but 18 bytes. Both\n * pass a `.length <= 16` check and both are rejected by the node.\n */\nexport function accountNameByteLength(value: string): number {\n return new TextEncoder().encode(value).length;\n}\n\n/**\n * Whether a value can be sent to a node as an account name (or as the prefix of one,\n * which `lookup_accounts` takes) without tripping the assert above.\n *\n * This is deliberately only a length check. It is not account-name validation: a\n * caller searching for a prefix is allowed to pass something that is not yet a legal\n * name, and a node answers that honestly with no matches. The only thing that must not\n * happen is a request the node refuses to parse.\n */\nexport function isQueryableAccountName(value: string | undefined | null): boolean {\n if (!value) {\n return false;\n }\n\n return accountNameByteLength(value) <= HIVE_ACCOUNT_NAME_MAX_BYTES;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { parseAccounts } from \"../utils/parse-accounts\";\nimport { FullAccount } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\nexport function getAccountsQueryOptions(usernames: string[]) {\n return queryOptions({\n queryKey: QueryKeys.accounts.list(...usernames),\n enabled: usernames.length > 0,\n queryFn: async (): Promise => {\n // One unholdable name asserts the whole batch, so drop those first. They\n // cannot name an existing account, and an empty result is what a caller\n // checking \"does this account exist\" already handles.\n const queryable = usernames.filter(isQueryableAccountName);\n if (queryable.length === 0) {\n return [];\n }\n\n // A correct node always answers get_accounts with an array — a null\n // result in a well-formed envelope is a node fault (observed in the\n // wild), so the validator makes callRPC fail over to the next node\n // instead of resolving with a payload parseAccounts cannot map over.\n const response = (await callRPC(\n \"condenser_api.get_accounts\",\n [queryable],\n undefined,\n undefined,\n undefined,\n (rows) => Array.isArray(rows)\n )) as any[];\n return parseAccounts(response ?? []);\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountFollowStats } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get follow count (followers and following) for an account\n */\nexport function getFollowCountQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.accounts.followCount(username),\n queryFn: () =>\n callRPC(\"condenser_api.get_follow_count\", [\n username,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of accounts following a user\n *\n * @param following - The account being followed\n * @param startFollower - Pagination start point (account name)\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Maximum number of results (default: 100)\n */\nexport function getFollowersQueryOptions(\n following: string | undefined,\n startFollower: string,\n followType = \"blog\",\n limit = 100\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.followers(following!, startFollower, followType, limit),\n queryFn: () =>\n callRPC(\"condenser_api.get_followers\", [\n following,\n startFollower,\n followType,\n limit,\n ]) as Promise,\n enabled: !!following,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of accounts that a user is following\n *\n * @param follower - The account doing the following\n * @param startFollowing - Pagination start point (account name)\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Maximum number of results (default: 100)\n */\nexport function getFollowingQueryOptions(\n follower: string,\n startFollowing: string,\n followType = \"blog\",\n limit = 100\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.following(follower, startFollowing, followType, limit),\n queryFn: () =>\n callRPC(\"condenser_api.get_following\", [\n follower,\n startFollowing,\n followType,\n limit,\n ]) as Promise,\n enabled: !!follower,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/** `condenser_api.get_following` caps a single response at 1000 rows. */\nconst MUTED_USERS_PAGE_SIZE = 1000;\n\n/**\n * Safety valve for the paging loop: 20 pages is 20k muted accounts, far past\n * any real mute list. Bounds the work if a node ever stops advancing the\n * cursor, so a malformed response degrades to a truncated list rather than an\n * endless request loop.\n */\nconst MUTED_USERS_MAX_PAGES = 20;\n\n/**\n * Get the full list of accounts a user has muted.\n *\n * Pages until the list is exhausted instead of taking the first N. That is\n * load-bearing: this result dims muted authors in feeds and collapses their\n * comments (`entry-list-item-muted-content`, `discussion-list`), so a truncated\n * list silently renders muted accounts as though they were never muted.\n *\n * Takes no limit, on purpose. `QueryKeys.accounts.mutedUsers` keys on the\n * username alone, so a limit parameter meant callers requesting different\n * amounts shared one cache entry and whichever mounted first decided how much\n * of the list every other caller saw.\n *\n * @param username - The account whose mute list to fetch\n */\nexport function getMutedUsersQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: QueryKeys.accounts.mutedUsers(username!),\n queryFn: async () => {\n const muted: string[] = [];\n let start = \"\";\n\n for (let page = 0; page < MUTED_USERS_MAX_PAGES; page++) {\n const response = (await callRPC(\"condenser_api.get_following\", [\n username,\n start,\n \"ignore\",\n MUTED_USERS_PAGE_SIZE,\n ])) as Follow[];\n\n if (!response?.length) {\n break;\n }\n\n let names = response.map((user) => user.following);\n\n // `start` is exclusive on Hive, so a page should not repeat the cursor.\n // Drop it defensively anyway: against a node treating `start` as\n // inclusive, this loop would otherwise re-append the same account until\n // it hit the page cap.\n if (names[0] === start) {\n names = names.slice(1);\n }\n\n if (!names.length) {\n break;\n }\n\n muted.push(...names);\n\n if (response.length < MUTED_USERS_PAGE_SIZE) {\n break;\n }\n\n start = names[names.length - 1];\n }\n\n return muted;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\n/**\n * Lookup accounts by username prefix\n *\n * @param query - Username prefix to search for\n * @param limit - Maximum number of results (default: 50)\n */\nexport function lookupAccountsQueryOptions(query: string, limit = 50) {\n return queryOptions({\n queryKey: QueryKeys.accounts.lookup(query, limit),\n queryFn: async (): Promise => {\n // `lower_bound_name` is an account_name_type, so a prefix the chain cannot\n // hold is an assert rather than an empty result. Callers feed this from raw\n // input (the editor's `@` autocomplete hands over whatever follows the `@`,\n // punctuation included), so answer \"nothing matches\" here instead.\n if (!isQueryableAccountName(query)) {\n return [];\n }\n\n return callRPC(\"condenser_api.lookup_accounts\", [\n query,\n limit,\n ]) as Promise;\n },\n enabled: !!query,\n staleTime: Infinity,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchAccountsByUsernameQueryOptions(\n query: string,\n limit = 5,\n excludeList: string[] = []\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.search(query, excludeList),\n enabled: !!query,\n queryFn: async () => {\n const response = (await callRPC(\"condenser_api.lookup_accounts\", [query, limit])) as string[];\n return response.filter((item) =>\n excludeList.length > 0 ? !excludeList.includes(item) : true\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { AccountProfile } from \"../types\";\n\ntype AccountProfileToken = NonNullable[number];\n\nexport type WalletMetadataCandidate = Partial & {\n currency?: string;\n show?: boolean;\n address?: string;\n publicKey?: string;\n privateKey?: string;\n username?: string;\n};\n\nexport interface CheckUsernameWalletsPendingResponse {\n exist: boolean;\n tokens?: WalletMetadataCandidate[];\n wallets?: WalletMetadataCandidate[];\n}\n\nconst RESERVED_META_KEYS = new Set([\n \"ownerPublicKey\",\n \"activePublicKey\",\n \"postingPublicKey\",\n \"memoPublicKey\",\n]);\n\ninterface WalletsEndpointResponseItem {\n token?: unknown;\n address?: unknown;\n status?: unknown;\n meta?: unknown;\n username?: unknown;\n}\n\nexport function checkUsernameWalletsPendingQueryOptions(\n username: string,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.checkWalletPending(username, code ?? null),\n queryFn: async () => {\n if (!username || !code) {\n return { exist: false } satisfies CheckUsernameWalletsPendingResponse;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/wallets\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n username,\n code,\n }),\n }\n );\n\n if (!response.ok) {\n return { exist: false } satisfies CheckUsernameWalletsPendingResponse;\n }\n\n const payload = (await response.json()) as unknown;\n\n const wallets: WalletMetadataCandidate[] = Array.isArray(payload)\n ? payload.flatMap((item) => {\n if (!item || typeof item !== \"object\") {\n return [];\n }\n\n const walletItem = item as WalletsEndpointResponseItem;\n\n const symbol =\n typeof walletItem.token === \"string\"\n ? walletItem.token\n : undefined;\n\n if (!symbol) {\n return [];\n }\n\n const meta: Record =\n walletItem.meta && typeof walletItem.meta === \"object\"\n ? { ...(walletItem.meta as Record) }\n : {};\n\n const sanitizedMeta: Record = {};\n\n const address =\n typeof walletItem.address === \"string\" && walletItem.address\n ? walletItem.address\n : undefined;\n\n const statusShow =\n typeof walletItem.status === \"number\"\n ? walletItem.status === 3\n : undefined;\n\n const showFlag = statusShow ?? false;\n\n if (address) {\n sanitizedMeta.address = address;\n }\n\n sanitizedMeta.show = showFlag;\n\n const baseCandidate = {\n symbol,\n currency: symbol,\n address,\n show: showFlag,\n type: \"CHAIN\",\n meta: sanitizedMeta,\n } satisfies WalletMetadataCandidate;\n\n const metaTokenCandidates: WalletMetadataCandidate[] = [];\n\n for (const [metaSymbol, metaValue] of Object.entries(meta)) {\n if (typeof metaSymbol !== \"string\") {\n continue;\n }\n\n if (RESERVED_META_KEYS.has(metaSymbol)) {\n continue;\n }\n\n if (typeof metaValue !== \"string\" || !metaValue) {\n continue;\n }\n\n if (!/^[A-Z0-9]{2,10}$/.test(metaSymbol)) {\n continue;\n }\n\n metaTokenCandidates.push({\n symbol: metaSymbol,\n currency: metaSymbol,\n address: metaValue,\n show: showFlag,\n type: \"CHAIN\",\n meta: { address: metaValue, show: showFlag },\n });\n }\n\n return [baseCandidate, ...metaTokenCandidates];\n })\n : [];\n\n return {\n exist: wallets.length > 0,\n tokens: wallets.length ? wallets : undefined,\n wallets: wallets.length ? wallets : undefined,\n } satisfies CheckUsernameWalletsPendingResponse;\n },\n refetchOnMount: true,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { AccountRelationship } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getRelationshipBetweenAccountsQueryOptions(\n reference: string | undefined,\n target: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.relations(reference, target),\n enabled: !!reference && !!target,\n refetchOnMount: false,\n refetchInterval: 3_600_000,\n queryFn: async () => {\n const fallback: AccountRelationship = {\n follows: false,\n ignores: false,\n blacklists: false,\n follows_muted: false,\n follows_blacklists: false,\n };\n\n // `enabled` only gates the automatic useQuery run. fetchQuery and\n // prefetchQuery invoke queryFn regardless, so guard here as well rather\n // than sending a missing account name to the RPC and caching the result.\n if (!reference || !target) {\n return fallback;\n }\n\n const result = await callRPC(\"bridge.get_relationship_between_accounts\", [reference, target]);\n return (result ?? fallback) as AccountRelationship;\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype Subscriptions = string[];\n\nexport function getAccountSubscriptionsQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.subscriptions(username!),\n enabled: !!username,\n queryFn: async ({ signal }) => {\n const response = await callRPC(\"bridge.list_all_subscriptions\", {\n account: username,\n }, undefined, undefined, signal);\n return (response ?? []) as Subscriptions;\n },\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountBookmark } from \"../types\";\n\nexport function getBookmarksQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.bookmarks(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Bookmarks] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n return (await response.json()) as AccountBookmark[];\n },\n });\n}\n\nexport function getBookmarksInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.bookmarksInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/bookmarks?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bookmarks: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountFavorite } from \"../types\";\n\nexport function getFavoritesQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.favorites(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Favorites] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n return (await response.json()) as AccountFavorite[];\n },\n });\n}\n\nexport function getFavoritesInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.favoritesInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/favorites?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch favorites: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\n/**\n * Query options to check if a specific account is in the active user's favorites\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n * @param targetUsername - The username to check if favorited\n * @returns Query options for checking if target is favorited\n */\nexport function checkFavoriteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n targetUsername: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.checkFavorite(activeUsername!, targetUsername!),\n enabled: !!activeUsername && !!code && !!targetUsername,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][Favorites] – missing auth\");\n }\n if (!targetUsername) {\n throw new Error(\"[SDK][Accounts][Favorites] – no target username\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-check\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n account: targetUsername,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Accounts][Favorites] – favorites-check failed with status ${response.status}: ${response.statusText}`\n );\n }\n\n const result = await response.json();\n if (typeof result !== \"boolean\") {\n throw new Error(\n `[SDK][Accounts][Favorites] – favorites-check returned invalid type: expected boolean, got ${typeof result}`\n );\n }\n\n return result;\n },\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { AccountFavoriteTag } from \"../types\";\n\n/**\n * The hashtags the active user follows, newest first.\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n */\nexport function getFavoriteTagsQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.favoriteTags(activeUsername),\n enabled: !!activeUsername && !!code,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorite-tags\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to fetch favorite tags: ${response.status}`);\n }\n return (await response.json()) as AccountFavoriteTag[];\n },\n });\n}\n\nexport function getFavoriteTagsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.favoriteTagsInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/favorite-tags?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch favorite tags: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","const TAG_PATTERN = /^[a-z0-9-]{1,32}$/;\nconst COMMUNITY_PATTERN = /^hive-\\d+$/;\n\n/**\n * The one place a followed tag is normalised before it is sent or used as a cache\n * key: trimmed, lowercased, one leading `#` dropped, then validated. Mirrors the\n * server rule exactly, so a value that passes here is stored as-is.\n *\n * Returns null for anything that is not a usable tag, including a community name\n * (`hive-123456`): communities are subscribed to on chain, not followed as tags.\n */\nexport function normalizeTag(raw: unknown): string | null {\n if (typeof raw !== \"string\") {\n return null;\n }\n\n let tag = raw.trim().toLowerCase();\n if (tag.startsWith(\"#\")) {\n tag = tag.slice(1);\n }\n\n if (!TAG_PATTERN.test(tag) || COMMUNITY_PATTERN.test(tag)) {\n return null;\n }\n\n return tag;\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { normalizeTag } from \"../utils/normalize-tag\";\n\n/**\n * Whether the active user follows a hashtag.\n *\n * The tag is normalised here, so `#Photography` and `photography` share one cache\n * entry and one request. A value that is not a usable tag (or a community name)\n * disables the query and reads as \"not followed\".\n * @param activeUsername - The logged-in user's username\n * @param code - Access token for authentication\n * @param tag - The tag to check, in any spelling\n */\nexport function getFavoriteTagCheckQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n tag: string | undefined\n) {\n const normalized = normalizeTag(tag);\n\n return queryOptions({\n queryKey: QueryKeys.accounts.checkFavoriteTag(activeUsername ?? \"\", normalized ?? \"\"),\n enabled: !!activeUsername && !!code && normalized !== null,\n queryFn: async () => {\n if (!activeUsername || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n if (normalized === null) {\n return false;\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorite-tags-check\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n tag: normalized,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Accounts][FavoriteTags] – favorite-tags-check failed with status ${response.status}: ${response.statusText}`\n );\n }\n\n const result = await response.json();\n if (typeof result !== \"boolean\") {\n throw new Error(\n `[SDK][Accounts][FavoriteTags] – favorite-tags-check returned invalid type: expected boolean, got ${typeof result}`\n );\n }\n\n return result;\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { GetRecoveriesEmailResponse } from \"../types\";\n\nexport function getAccountRecoveriesQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n enabled: !!username && !!code,\n queryKey: QueryKeys.accounts.recoveries(username!),\n queryFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Accounts] Missing username or access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/recoveries\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n }\n );\n\n return response.json() as Promise;\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getAccountPendingRecoveryQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n enabled: !!username,\n queryKey: QueryKeys.accounts.pendingRecovery(username!),\n queryFn: () =>\n callRPC(\"database_api.find_change_recovery_account_requests\", { accounts: [username] }),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountReputation } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { isQueryableAccountName } from \"../utils/account-name-query\";\n\nexport function getAccountReputationsQueryOptions(query: string, limit = 50) {\n return queryOptions({\n queryKey: QueryKeys.accounts.reputations(query, limit),\n enabled: !!query,\n queryFn: async (): Promise => {\n // Same account_name_type argument as lookup_accounts, same assert if the value\n // is longer than the chain can hold.\n if (!query || !isQueryableAccountName(query)) {\n return [];\n }\n\n return callRPC(\"condenser_api.get_account_reputations\", [query, limit]) as Promise;\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { utils } from \"../../../hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Transaction, OperationGroup } from \"../types/transaction\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport { parseAsset, NaiMap } from \"@/modules/core/utils\";\n\nconst ops = utils.operations;\n\nexport const ACCOUNT_OPERATION_GROUPS: Record = {\n transfers: [\n ops.transfer,\n ops.transfer_to_savings,\n ops.transfer_from_savings,\n ops.cancel_transfer_from_savings,\n // The virtual op emitted when a savings withdrawal completes. It used to be a\n // second copy of fill_recurrent_transfer, so a completed savings withdrawal was\n // never returned by the transfers group nor by ALL_ACCOUNT_OPERATIONS.\n ops.fill_transfer_from_savings,\n ops.recurrent_transfer,\n ops.fill_recurrent_transfer,\n ops.escrow_transfer,\n ],\n \"market-orders\": [\n ops.fill_convert_request,\n ops.fill_order,\n ops.fill_collateralized_convert_request,\n ops.limit_order_create2,\n ops.limit_order_create,\n ops.limit_order_cancel,\n ],\n interests: [ops.interest],\n \"stake-operations\": [\n ops.return_vesting_delegation,\n ops.withdraw_vesting,\n ops.transfer_to_vesting,\n ops.set_withdraw_vesting_route,\n ops.update_proposal_votes,\n ops.fill_vesting_withdraw,\n ops.account_witness_proxy,\n ops.delegate_vesting_shares,\n ],\n rewards: [\n ops.author_reward,\n ops.curation_reward,\n ops.producer_reward,\n ops.claim_reward_balance,\n ops.comment_benefactor_reward,\n ops.liquidity_reward,\n ops.proposal_pay,\n ],\n};\n\n/**\n * Every operation any group asks for, de-duplicated. Groups overlap (an op can be\n * meaningful to more than one), and the raw concatenation used to repeat ids in the\n * `operation-types` query string sent to hafah.\n */\nexport const ALL_ACCOUNT_OPERATIONS = Array.from(\n new Set(Object.values(ACCOUNT_OPERATION_GROUPS).flat())\n);\n\ninterface TxPageRaw {\n entries: Transaction[];\n currentPage: number;\n}\n\n/**\n * Cursor for transaction pagination.\n * null = first request (returns newest page, API omits page param).\n * number = specific page to fetch (decrementing for older data).\n */\ntype TxCursor = number | null;\n\ninterface HafahOperation {\n op: {\n type: string;\n value: Record;\n };\n block: number;\n trx_id: string;\n op_pos: number;\n op_type_id: number;\n timestamp: string;\n virtual_op: boolean;\n operation_id: string;\n trx_in_block: number;\n}\n\ninterface HafahResponse {\n total_operations: number;\n total_pages: number;\n operations_result: HafahOperation[];\n}\n\n/**\n * Derive a safe, unique, and chronologically ordered `num` from REST fields.\n *\n * Layout: block * 10_000_000 + trx_in_block * 100 + op_pos\n * - trx_in_block: up to 99_999 (Hive max block size ~65K txs)\n * - op_pos: up to 99 (operations within a single transaction)\n * - Max value: 105_000_000 * 10_000_000 = 1.05e15, within MAX_SAFE_INTEGER (9.007e15)\n */\nfunction deriveNum(entry: HafahOperation): number {\n return entry.block * 10_000_000 + entry.trx_in_block * 100 + entry.op_pos;\n}\n\n/**\n * Strip the `_operation` suffix from the REST API type name\n * to match the Transaction type discriminants (e.g. \"transfer\").\n */\nfunction normalizeOpType(restType: string): string {\n return restType.replace(/_operation$/, \"\");\n}\n\n/**\n * Check if a value is a NAI asset object (e.g. { nai: \"@@000000021\", amount: \"1000\", precision: 3 }).\n */\nfunction isNaiAsset(v: unknown): v is { nai: string; amount: string; precision: number } {\n return typeof v === \"object\" && v !== null && \"nai\" in v && \"amount\" in v && \"precision\" in v;\n}\n\n/**\n * Convert a NAI asset object to a human-readable string like \"1.000 HIVE\".\n * Returns the value unchanged if it's not a NAI object.\n */\nfunction naiToString(v: unknown): unknown {\n if (!isNaiAsset(v)) return v;\n const parsed = parseAsset(v);\n const symbol = NaiMap[v.nai as keyof typeof NaiMap] ?? \"UNKNOWN\";\n return `${parsed.amount.toFixed(v.precision)} ${symbol}`;\n}\n\n/**\n * Convert all NAI asset objects in an operation's value to human-readable strings\n * so downstream renderers that expect \"1.000 HIVE\" don't crash with object values.\n */\nfunction normalizeOpValue(value: Record): Record {\n const result: Record = {};\n for (const [k, v] of Object.entries(value)) {\n result[k] = naiToString(v);\n }\n return result;\n}\n\n/**\n * Get account transaction history with pagination and filtering.\n * Uses the hafah-api REST endpoint for server-side op-type filtering\n * and real pagination metadata.\n *\n * @param username - Account name to get transactions for\n * @param limit - Number of transactions per page\n * @param group - Filter by operation group (transfers, market-orders, etc.)\n */\nexport function getTransactionsInfiniteQueryOptions(\n username?: string,\n limit = 20,\n group: OperationGroup | \"\" = \"\"\n) {\n const operationTypes = group\n ? ACCOUNT_OPERATION_GROUPS[group]\n : ALL_ACCOUNT_OPERATIONS;\n\n return infiniteQueryOptions<\n TxPageRaw,\n Error,\n InfiniteData,\n (string | number)[],\n TxCursor\n >({\n queryKey: QueryKeys.accounts.transactions(username ?? \"\", group, limit),\n initialPageParam: null as TxCursor,\n\n queryFn: async ({ pageParam, signal }: { pageParam: TxCursor; signal?: AbortSignal }) => {\n if (!username) {\n return { entries: [], currentPage: 0 };\n }\n\n const fetchPage = async (page: TxCursor) => {\n const params: Record = {\n \"account-name\": username,\n \"operation-types\": operationTypes.join(\",\"),\n \"page-size\": limit,\n };\n\n // First call: omit page to get newest data\n // Subsequent calls: pass specific page number (decrementing)\n if (page !== null) {\n params.page = page;\n }\n\n return (await callREST(\n \"hafah\",\n \"/accounts/{account-name}/operations\",\n params,\n undefined,\n undefined,\n signal\n )) as HafahResponse;\n };\n\n const toEntries = (response: HafahResponse) =>\n response.operations_result.map((entry) => {\n const type = normalizeOpType(entry.op.type);\n const value = normalizeOpValue(entry.op.value);\n return {\n ...value,\n num: deriveNum(entry),\n type,\n timestamp: entry.timestamp,\n trx_id: entry.trx_id,\n } as Transaction;\n });\n\n const response = await fetchPage(pageParam);\n let entries = toEntries(response);\n let currentPage = pageParam ?? response.total_pages;\n\n // hafah pages oldest-first, so the newest page (what an omitted `page`\n // returns) is the remainder bucket: total_operations mod page-size rows,\n // anywhere from 1 to page-size. Requesting page=total_pages explicitly\n // returns the same short bucket, so the only way to a full-size first\n // screen is chaining the next older page in.\n if (pageParam === null && entries.length < limit && response.total_pages > 1) {\n try {\n const chained = await fetchPage(response.total_pages - 1);\n entries = [...entries, ...toEntries(chained)];\n currentPage = response.total_pages - 1;\n } catch (e) {\n // Caller cancellation is not a node failure: rethrow so the query\n // settles as cancelled instead of resolving with a partial page.\n if (signal?.aborted) {\n throw e;\n }\n // Keep the short remainder page; the cursor stays at total_pages so\n // the page that failed here is fetchNextPage's next target, not lost.\n }\n }\n\n return { entries, currentPage };\n },\n\n getNextPageParam: (lastPage) => {\n const nextPage = lastPage.currentPage - 1;\n return nextPage >= 1 ? nextPage : undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport function getBotsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.accounts.bots(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/public/bots\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bots: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n refetchOnMount: true,\n staleTime: Infinity,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { ReferralItem } from \"../types/referral\";\n\ntype PageParam = { maxId?: number };\n\nexport function getReferralsInfiniteQueryOptions(username: string) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.accounts.referrals(username),\n initialPageParam: { maxId: undefined } as PageParam,\n queryFn: async ({ pageParam }: { pageParam: PageParam }) => {\n const { maxId } = pageParam ?? {};\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(`/private-api/referrals/${username}`, baseUrl);\n\n if (maxId !== undefined) {\n url.searchParams.set(\"max_id\", maxId.toString());\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch referrals: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n getNextPageParam: (lastPage: ReferralItem[]) => {\n const nextMaxId = lastPage?.[lastPage.length - 1]?.id;\n return typeof nextMaxId === \"number\" ? ({ maxId: nextMaxId } as PageParam) : undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { ReferralStat } from \"../types/referral\";\n\ninterface ReferralStatsResponse {\n total?: number;\n rewarded?: number;\n}\n\nexport function getReferralsStatsQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.accounts.referralsStats(username),\n queryFn: async () => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/referrals/${username}/stats`,\n {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch referral stats: ${response.status}`);\n }\n\n const data = await response.json() as ReferralStatsResponse;\n\n if (!data) {\n throw new Error(\"No Referrals for this user!\");\n }\n\n return {\n total: data.total ?? 0,\n rewarded: data.rewarded ?? 0,\n } as ReferralStat;\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow, Profile, FriendsRow } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface FriendsPageParam {\n startFollowing: string;\n}\n\ntype FriendsPage = FriendsRow[];\n\n/**\n * Get list of friends (following/followers) with profile information\n *\n * @param following - The account whose friends to get\n * @param mode - \"following\" or \"followers\"\n * @param followType - Type of follow relationship (default: \"blog\")\n * @param limit - Number of results per page (default: 100)\n * @param enabled - Whether query is enabled (default: true)\n */\nexport function getFriendsInfiniteQueryOptions(\n following: string,\n mode: \"following\" | \"followers\",\n options?: {\n followType?: string;\n limit?: number;\n enabled?: boolean;\n }\n) {\n const { followType = \"blog\", limit = 100, enabled = true } = options ?? {};\n\n return infiniteQueryOptions<\n FriendsPage,\n Error,\n InfiniteData,\n (string | number)[],\n FriendsPageParam\n >({\n queryKey: QueryKeys.accounts.friends(following, mode, followType, limit),\n initialPageParam: { startFollowing: \"\" } as FriendsPageParam,\n enabled,\n refetchOnMount: true,\n\n queryFn: async ({ pageParam }: { pageParam: FriendsPageParam }) => {\n const { startFollowing } = pageParam;\n\n const method = mode === \"following\" ? \"get_following\" : \"get_followers\";\n const response = (await callRPC(`condenser_api.${method}`, [following, startFollowing === \"\" ? null : startFollowing, followType, limit])) as Follow[];\n\n const accountNames = response.map((e) =>\n mode === \"following\" ? e.following : e.follower\n );\n\n // Get profiles via bridge API\n const accounts = (await callRPC(\"bridge.get_profiles\", {\n accounts: accountNames,\n observer: undefined,\n })) as Profile[];\n\n const rows: FriendsPage = (accounts ?? []).map((a) => ({\n name: a.name,\n reputation: a.reputation,\n active: a.active, // Return raw timestamp\n }));\n\n return rows;\n },\n\n getNextPageParam: (lastPage: FriendsPage): FriendsPageParam | undefined =>\n lastPage && lastPage.length === limit\n ? { startFollowing: lastPage[lastPage.length - 1].name }\n : undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Follow, Profile, FriendSearchResult } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nconst SEARCH_LIMIT = 30;\n\n/**\n * Search friends (following/followers) by query string\n *\n * @param username - The account whose friends to search\n * @param mode - \"following\" or \"followers\"\n * @param query - Search query string\n */\nexport function getSearchFriendsQueryOptions(\n username: string,\n mode: \"following\" | \"followers\",\n query: string\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.searchFriends(username, mode, query),\n refetchOnMount: false,\n enabled: false, // Manual query via refetch\n queryFn: async (): Promise => {\n if (!query) return [];\n\n const start = query.slice(0, -1);\n const method = mode === \"following\" ? \"get_following\" : \"get_followers\";\n const response = (await callRPC(`condenser_api.${method}`, [username, start, \"blog\", 1000])) as Follow[];\n\n const accountNames = response\n .map((e) => (mode === \"following\" ? e.following : e.follower))\n .filter((name) => name.toLowerCase().includes(query.toLowerCase()))\n .slice(0, SEARCH_LIMIT);\n\n // Get profiles via bridge API\n const accounts = (await callRPC(\"bridge.get_profiles\", {\n accounts: accountNames,\n observer: undefined,\n })) as Profile[];\n\n return (\n accounts?.map((a) => ({\n name: a.name,\n full_name: a.metadata.profile?.name || \"\",\n reputation: a.reputation,\n active: a.active, // Return raw timestamp\n })) ?? []\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { TrendingTag } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getTrendingTagsQueryOptions(limit = 20) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.trendingTags(),\n queryFn: async ({ pageParam: { afterTag } }) =>\n callRPC(\"condenser_api.get_trending_tags\", [afterTag, limit])\n .then((tags: TrendingTag[]) =>\n tags\n .filter((x) => x.name !== \"\")\n .filter((x) => !x.name.startsWith(\"hive-\"))\n .map((x) => x.name)\n ),\n initialPageParam: { afterTag: \"\" },\n getNextPageParam: (lastPage) =>\n lastPage?.length > 0\n ? { afterTag: lastPage[lastPage.length - 1] }\n : undefined,\n staleTime: 60 * 60 * 1000, // 1 hour — tags change slowly\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { isCommunity } from \"@/modules/core/utils\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { TrendingTag } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getTrendingTagsWithStatsQueryOptions(limit = 250) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.trendingTagsWithStats(limit),\n queryFn: async ({ pageParam: { afterTag } }) =>\n callRPC(\"condenser_api.get_trending_tags\", [afterTag, limit])\n .then((tags: TrendingTag[]) =>\n tags.filter((tag) => tag.name !== \"\").filter((tag) => !isCommunity(tag.name))\n ),\n initialPageParam: { afterTag: \"\" },\n getNextPageParam: (lastPage) =>\n lastPage?.length ? { afterTag: lastPage[lastPage.length - 1].name } : undefined,\n staleTime: Infinity,\n });\n}\n","import { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\n\nexport function getFragmentsQueryOptions(username: string, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.fragments(username),\n queryFn: async () => {\n if (!code) {\n return [];\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n return response.json() as Promise;\n },\n enabled: !!username && !!code,\n });\n}\n\nexport function getFragmentsInfiniteQueryOptions(\n username: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.fragmentsInfinite(username, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!username || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/fragments?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch fragments: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!username && !!code,\n });\n}\n","import { ConfigManager, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\n// TODO: replace any with Entry\nexport function getPromotedPostsQuery(\n type: \"feed\" | \"waves\" = \"feed\"\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.promoted(type),\n queryFn: async () => {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/promoted-entries\", baseUrl);\n if (type === \"waves\") {\n url.searchParams.append(\"short_content\", \"1\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n const data = await response.json();\n return data as T[];\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry, Vote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getEntryActiveVotesQueryOptions(entry?: Entry) {\n return queryOptions({\n queryKey: QueryKeys.posts.entryActiveVotes(entry?.author, entry?.permlink),\n queryFn: async () => {\n return callRPC(\"condenser_api.get_active_votes\", [\n entry?.author,\n entry?.permlink,\n ]) as Promise;\n },\n enabled: !!entry,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { Vote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get a specific user's vote on a post\n * Useful when post has >1000 votes to efficiently get one user's vote\n *\n * @param username - The voter's username\n * @param author - The post author\n * @param permlink - The post permlink\n */\nexport function getUserPostVoteQueryOptions(\n username: string | undefined,\n author: string | undefined,\n permlink: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.userPostVote(username!, author!, permlink!),\n queryFn: async () => {\n const result = await callRPC(\"database_api.list_votes\", {\n start: [username, author, permlink],\n limit: 1,\n order: \"by_voter_comment\"\n });\n\n // Return first vote if found, otherwise null\n return (result?.votes?.[0] || null) as Vote | null;\n },\n enabled: !!username && !!author && !!permlink,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getContentQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.content(author, permlink),\n enabled: !!author && !!permlink,\n queryFn: async (): Promise =>\n callRPC(\"condenser_api.get_content\", [\n author,\n permlink,\n ]) as Promise,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getContentRepliesQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.contentReplies(author, permlink),\n enabled: !!author && !!permlink,\n queryFn: async (): Promise =>\n callRPC(\"condenser_api.get_content_replies\", {\n author,\n permlink,\n }) as Promise,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getPostHeaderQueryOptions(author: string, permlink: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.postHeader(author, permlink),\n queryFn: async () => {\n return callRPC(\"bridge.get_post_header\", {\n author,\n permlink,\n }) as Promise;\n },\n initialData: null,\n });\n}\n","import { CONFIG } from \"@/modules/core\";\nimport { Entry } from \"../types\";\n\n/**\n * Filters and censors entries that match DMCA patterns\n * @param entry - Single entry or array of entries to filter\n * @returns Filtered entry/entries with DMCA content censored.\n * Note: Can return null/undefined if input is falsy - callers should guard against this.\n */\nexport function filterDmcaEntry(entry: Entry): Entry | null | undefined;\nexport function filterDmcaEntry(entries: Entry[]): Entry[];\nexport function filterDmcaEntry(entryOrEntries: Entry | Entry[] | null | undefined): Entry | Entry[] | null | undefined {\n if (Array.isArray(entryOrEntries)) {\n // Array elements are non-null Entries, so applyFilter never returns nullish here.\n return entryOrEntries.map((entry) => applyFilter(entry)) as Entry[];\n }\n return applyFilter(entryOrEntries);\n}\n\nfunction applyFilter(entry: Entry | null | undefined): Entry | null | undefined {\n if (!entry) return entry;\n\n const entryPath = `@${entry.author}/${entry.permlink}`;\n const isDmca =\n CONFIG.dmcaPatterns.includes(entryPath) ||\n CONFIG.dmcaPatternRegexes.some((regex) => regex.test(entryPath));\n\n if (isDmca) {\n return {\n ...entry,\n body: \"This post is not available due to a copyright/fraudulent claim.\",\n title: \"\",\n };\n }\n\n return entry;\n}\n","import { callWithQuorum } from \"../../hive-tx\";\nimport { Entry } from \"@/modules/posts/types\";\n\n/**\n * When the primary node returns null for a get_post call,\n * verify by querying multiple random nodes. If any node\n * returns the post, it exists (the first node was lagging).\n *\n * Uses callWithQuorum(quorum=1) which shuffles and queries\n * nodes in batches. Since it shuffles, it's unlikely to hit\n * the same node that just returned null first.\n */\nexport async function verifyPostOnAlternateNode(\n author: string,\n permlink: string,\n observer: string\n): Promise {\n try {\n const response = await callWithQuorum(\"bridge.get_post\", {\n author,\n permlink,\n observer,\n }, 1);\n\n if (\n response &&\n typeof response === \"object\" &&\n (response as Entry).author === author &&\n (response as Entry).permlink === permlink\n ) {\n return response as Entry;\n }\n } catch {\n // All nodes failed or returned null\n }\n\n return null;\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { verifyPostOnAlternateNode } from \"@/modules/bridge/verify-on-alternate-node\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getPostQueryOptions(\n author: string,\n permlink?: string,\n observer = \"\",\n num?: number\n) {\n const cleanPermlink = permlink?.trim();\n const entryPath = `/@${author}/${cleanPermlink ?? \"\"}`;\n\n return queryOptions({\n queryKey: QueryKeys.posts.entry(entryPath),\n queryFn: async () => {\n if (!cleanPermlink || cleanPermlink === \"undefined\") {\n return null;\n }\n\n // hive-tx tries nodes in order; the first healthy node (index 0) handles this call.\n // If it returns null, verifyPostOnAlternateNode skips index 0 and tries others.\n const response = await callRPC(\"bridge.get_post\", {\n author,\n permlink: cleanPermlink,\n observer,\n });\n\n if (!response) {\n // Primary node returned null — verify on alternate nodes\n // to guard against sync lag returning null for valid posts\n const verified = await verifyPostOnAlternateNode(author, cleanPermlink, observer);\n if (!verified) {\n return null;\n }\n const verifiedEntry = num !== undefined ? { ...verified, num } as Entry : verified as Entry;\n return filterDmcaEntry(verifiedEntry);\n }\n\n const entry = num !== undefined ? { ...response, num } as Entry : response as Entry;\n return filterDmcaEntry(entry);\n },\n enabled:\n !!author &&\n !!permlink &&\n permlink.trim() !== \"\" &&\n permlink.trim() !== \"undefined\",\n });\n}\n","import { CONFIG } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { AccountRelationship, Profile } from \"@/modules/accounts/types\";\nimport { Community } from \"@/modules/communities/types/community\";\nimport { Subscription } from \"@/modules/communities/types/subscription\";\nimport { Entry } from \"@/modules/posts/types\";\nimport { filterDmcaEntry } from \"@/modules/posts/utils/filter-dmca-entries\";\n\ntype BridgeParams = Record | unknown[];\n\nexport function bridgeApiCall(endpoint: string, params: BridgeParams, signal?: AbortSignal): Promise {\n return callRPC(`bridge.${endpoint}`, params, undefined, undefined, signal) as Promise;\n}\n\nexport async function resolvePost(\n post: Entry,\n observer: string,\n num?: number,\n signal?: AbortSignal\n): Promise {\n const { json_metadata: json } = post;\n\n if (json?.original_author && json?.original_permlink && json.tags?.[0] === \"cross-post\") {\n try {\n const resp = await getPost(\n json.original_author,\n json.original_permlink,\n observer,\n num,\n signal\n );\n if (resp) {\n return {\n ...post,\n original_entry: resp,\n num,\n };\n }\n return post;\n } catch {\n return post;\n }\n }\n\n return { ...post, num };\n}\n\nasync function resolvePosts(posts: Entry[], observer: string, signal?: AbortSignal): Promise {\n const validatedPosts = posts.map(validateEntry);\n const resolved = await Promise.all(validatedPosts.map((p) => resolvePost(p, observer, undefined, signal)));\n return filterDmcaEntry(resolved) as Entry[];\n}\n\nexport async function getPostsRanked(\n sort: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n tag: string = \"\",\n observer: string = \"\",\n signal?: AbortSignal\n): Promise {\n const resp = await bridgeApiCall(\"get_ranked_posts\", {\n sort,\n start_author,\n start_permlink,\n limit,\n tag,\n observer,\n }, signal);\n\n if (Array.isArray(resp)) {\n return resolvePosts(resp, observer, signal);\n }\n\n if (resp != null) {\n console.warn(\n `[SDK] get_ranked_posts returned ${typeof resp} instead of an array for sort=${sort}; treating as no results.`\n );\n }\n\n return null;\n}\n\nexport async function getAccountPosts(\n sort: string,\n account: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n observer: string = \"\",\n signal?: AbortSignal\n): Promise {\n if (CONFIG.dmcaAccounts.includes(account)) {\n return [];\n }\n\n const resp = await bridgeApiCall(\"get_account_posts\", {\n sort,\n account,\n start_author,\n start_permlink,\n limit,\n observer,\n }, signal);\n\n if (Array.isArray(resp)) {\n return resolvePosts(resp, observer, signal);\n }\n\n if (resp != null) {\n console.warn(\n `[SDK] get_account_posts returned ${typeof resp} instead of an array for account=${account}, sort=${sort}; treating as no results.`\n );\n }\n\n return null;\n}\n\n/**\n * Validates that an Entry object has required properties with non-null values.\n */\nfunction validateEntry(entry: Entry): Entry {\n const newEntry: Entry = {\n ...entry,\n active_votes: Array.isArray(entry.active_votes) ? [...entry.active_votes] : [],\n beneficiaries: Array.isArray(entry.beneficiaries) ? [...entry.beneficiaries] : [],\n blacklists: Array.isArray(entry.blacklists) ? [...entry.blacklists] : [],\n replies: Array.isArray(entry.replies) ? [...entry.replies] : [],\n stats: entry.stats ? { ...entry.stats } : null,\n };\n\n const requiredStringProps: (keyof Entry)[] = [\n \"author\",\n \"title\",\n \"body\",\n \"created\",\n \"category\",\n \"permlink\",\n \"url\",\n \"updated\",\n ];\n\n for (const prop of requiredStringProps) {\n if (newEntry[prop] == null) {\n (newEntry as any)[prop] = \"\";\n }\n }\n\n if (newEntry.author_reputation == null) {\n newEntry.author_reputation = 0;\n }\n if (newEntry.children == null) {\n newEntry.children = 0;\n }\n if (newEntry.depth == null) {\n newEntry.depth = 0;\n }\n if (newEntry.net_rshares == null) {\n newEntry.net_rshares = 0;\n }\n if (newEntry.payout == null) {\n newEntry.payout = 0;\n }\n if (newEntry.percent_hbd == null) {\n newEntry.percent_hbd = 0;\n }\n\n if (!newEntry.stats) {\n newEntry.stats = {\n flag_weight: 0,\n gray: false,\n hide: false,\n total_votes: 0,\n };\n }\n\n if (newEntry.author_payout_value == null) {\n newEntry.author_payout_value = \"0.000 HBD\";\n }\n if (newEntry.curator_payout_value == null) {\n newEntry.curator_payout_value = \"0.000 HBD\";\n }\n if (newEntry.max_accepted_payout == null) {\n newEntry.max_accepted_payout = \"1000000.000 HBD\";\n }\n if (newEntry.payout_at == null) {\n newEntry.payout_at = \"\";\n }\n if (newEntry.pending_payout_value == null) {\n newEntry.pending_payout_value = \"0.000 HBD\";\n }\n if (newEntry.promoted == null) {\n newEntry.promoted = \"0.000 HBD\";\n }\n\n if (newEntry.is_paidout == null) {\n newEntry.is_paidout = false;\n }\n\n return newEntry;\n}\n\nexport async function getPost(\n author: string = \"\",\n permlink: string = \"\",\n observer: string = \"\",\n num?: number,\n signal?: AbortSignal\n): Promise {\n const resp = await bridgeApiCall(\"get_post\", {\n author,\n permlink,\n observer,\n }, signal);\n\n if (resp) {\n const validatedEntry = validateEntry(resp);\n const post = await resolvePost(validatedEntry, observer, num, signal);\n return filterDmcaEntry(post) as Entry;\n }\n\n return undefined;\n}\n\nexport async function getPostHeader(\n author: string = \"\",\n permlink: string = \"\"\n): Promise {\n const resp = await bridgeApiCall(\"get_post_header\", {\n author,\n permlink,\n });\n return resp ? validateEntry(resp) : resp;\n}\n\nexport async function getDiscussion(\n author: string,\n permlink: string,\n observer?: string\n): Promise | null> {\n const resp = await bridgeApiCall | null>(\"get_discussion\", {\n author,\n permlink,\n observer: observer || author,\n });\n\n if (resp) {\n const validatedResp: Record = {};\n for (const [key, entry] of Object.entries(resp)) {\n validatedResp[key] = validateEntry(entry);\n }\n return validatedResp;\n }\n return resp;\n}\n\nexport async function getCommunity(\n name: string,\n observer: string | undefined = \"\"\n): Promise {\n return bridgeApiCall(\"get_community\", { name, observer });\n}\n\nexport async function getCommunities(\n last: string = \"\",\n limit: number = 100,\n query?: string | null,\n sort: string = \"rank\",\n observer: string = \"\"\n): Promise {\n return bridgeApiCall(\"list_communities\", {\n last,\n limit,\n query,\n sort,\n observer,\n });\n}\n\nexport async function normalizePost(post: unknown): Promise {\n const resp = await bridgeApiCall(\"normalize_post\", { post });\n return resp ? validateEntry(resp) : resp;\n}\n\nexport async function getSubscriptions(account: string): Promise {\n return bridgeApiCall(\"list_all_subscriptions\", { account });\n}\n\nexport async function getSubscribers(community: string): Promise {\n return bridgeApiCall(\"list_subscribers\", { community });\n}\n\nexport async function getRelationshipBetweenAccounts(\n follower: string,\n following: string\n): Promise {\n return bridgeApiCall(\"get_relationship_between_accounts\", [\n follower,\n following,\n ]);\n}\n\nexport async function getProfiles(\n accounts: string[],\n observer?: string\n): Promise {\n return bridgeApiCall(\"get_profiles\", { accounts, observer });\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getDiscussion } from \"@/modules/bridge\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport enum SortOrder {\n trending = \"trending\",\n author_reputation = \"author_reputation\",\n votes = \"votes\",\n created = \"created\",\n}\n\nfunction parseAsset(value: string): { amount: number; symbol: string } {\n const match = value.match(/^(\\d+\\.?\\d*)\\s*([A-Z]+)$/);\n if (!match) return { amount: 0, symbol: \"\" };\n return {\n amount: parseFloat(match[1]),\n symbol: match[2],\n };\n}\n\nexport function sortDiscussions(\n entry: Entry,\n discussion: Entry[],\n order: SortOrder\n) {\n const allPayout = (c: Entry) =>\n parseAsset(c.pending_payout_value).amount +\n parseAsset(c.author_payout_value).amount +\n parseAsset(c.curator_payout_value).amount;\n\n const absNegative = (a: Entry) => a.net_rshares < 0;\n const isPinned = (a: Entry) =>\n entry.json_metadata?.pinned_reply === `${a.author}/${a.permlink}`;\n\n const sortOrders = {\n trending: (a: Entry, b: Entry) => {\n if (absNegative(a)) {\n return 1;\n }\n\n if (absNegative(b)) {\n return -1;\n }\n\n const _a = allPayout(a);\n const _b = allPayout(b);\n if (_a !== _b) {\n return _b - _a;\n }\n\n return 0;\n },\n author_reputation: (a: Entry, b: Entry) => {\n const keyA = a.author_reputation;\n const keyB = b.author_reputation;\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n votes: (a: Entry, b: Entry) => {\n const keyA = a.children;\n const keyB = b.children;\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n created: (a: Entry, b: Entry) => {\n if (absNegative(a)) {\n return 1;\n }\n\n if (absNegative(b)) {\n return -1;\n }\n\n const keyA = Date.parse(a.created);\n const keyB = Date.parse(b.created);\n\n if (keyA > keyB) return -1;\n if (keyA < keyB) return 1;\n\n return 0;\n },\n };\n\n const sorted = discussion.sort(sortOrders[order]);\n const pinnedIndex = sorted.findIndex((i) => isPinned(i));\n const pinned = sorted[pinnedIndex];\n if (pinnedIndex >= 0) {\n sorted.splice(pinnedIndex, 1);\n sorted.unshift(pinned);\n }\n return sorted;\n}\n\nexport function getDiscussionsQueryOptions(\n entry: Entry,\n order: SortOrder = SortOrder.created,\n enabled: boolean = true,\n observer?: string\n) {\n // Anonymous readers fall back to CONFIG.defaultObserver rather than the post\n // author. Author-as-observer only helps the minority of authors who curate a\n // mute list; everyone else's comment section came back unfiltered, so the\n // shared moderation account is the better default for logged-out traffic.\n const resolvedObserver = observer || CONFIG.defaultObserver;\n\n return queryOptions({\n queryKey: QueryKeys.posts.discussions(entry?.author, entry?.permlink, order, resolvedObserver),\n queryFn: async () => {\n if (!entry) {\n return [];\n }\n\n const response = await callRPC(\"bridge.get_discussion\", {\n author: entry.author,\n permlink: entry.permlink,\n observer: resolvedObserver,\n });\n\n const results = response\n ? Array.from(Object.values(response as Record))\n : [];\n return filterDmcaEntry(results);\n },\n enabled: enabled && !!entry,\n select: (data: Entry[]) => sortDiscussions(entry, data, order),\n // Preserve optimistic entries during refetch by using structural sharing\n // This ensures newly added comments (is_optimistic: true) aren't wiped out\n // when blockchain hasn't indexed them yet\n structuralSharing: (oldData, newData) => {\n if (!oldData || !newData) return newData;\n\n // Find optimistic entries in old data that aren't in new data yet\n const optimisticEntries = (oldData as Entry[]).filter(\n (entry: Entry) => entry.is_optimistic === true\n );\n\n const fetchedPermlinks = new Set(\n (newData as Entry[]).map((e: Entry) => `${e.author}/${e.permlink}`)\n );\n\n const missingOptimistic = optimisticEntries.filter(\n (opt: Entry) => !fetchedPermlinks.has(`${opt.author}/${opt.permlink}`)\n );\n\n // If there are optimistic entries missing from new data, preserve them\n if (missingOptimistic.length > 0) {\n return [...(newData as Entry[]), ...missingOptimistic];\n }\n\n return newData;\n },\n });\n}\n\nexport function getDiscussionQueryOptions(\n author: string,\n permlink: string,\n observer?: string,\n enabled = true\n) {\n const resolvedObserver = observer || CONFIG.defaultObserver;\n\n return queryOptions({\n queryKey: QueryKeys.posts.discussion(author, permlink, resolvedObserver),\n enabled: enabled && !!author && !!permlink,\n queryFn: async () =>\n getDiscussion(author, permlink, resolvedObserver) as Promise | null>,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getAccountPosts } from \"@/modules/bridge\";\n\ntype PageParam = {\n author: string | undefined;\n permlink: string | undefined;\n hasNextPage: boolean;\n};\ntype Page = Entry[];\n\nexport function getAccountPostsInfiniteQueryOptions(\n username: string | undefined,\n filter = \"posts\",\n limit = 20,\n observer = \"\",\n enabled = true\n) {\n return infiniteQueryOptions<\n Page,\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.posts.accountPosts(username ?? \"\", filter, limit, observer),\n enabled: !!username && enabled,\n initialPageParam: {\n author: undefined,\n permlink: undefined,\n hasNextPage: true,\n } as PageParam,\n\n queryFn: async ({ pageParam, signal }) => {\n if (!pageParam?.hasNextPage || !username) return [];\n\n const response = await getAccountPosts(\n filter,\n username,\n pageParam.author ?? \"\",\n pageParam.permlink ?? \"\",\n limit,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n\n getNextPageParam: (lastPage: Page): PageParam | undefined => {\n const last = lastPage?.[lastPage.length - 1];\n // Only consider there's a next page if we got a full page of results\n // A partial page means we've reached the end\n const hasNextPage = (lastPage?.length ?? 0) === limit;\n\n if (!hasNextPage) {\n return undefined;\n }\n\n return {\n author: last?.author,\n permlink: last?.permlink,\n hasNextPage,\n };\n },\n });\n}\n\nexport function getAccountPostsQueryOptions(\n username: string | undefined,\n filter = \"posts\",\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit = 20,\n observer = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.accountPostsPage(username ?? \"\", filter, start_author, start_permlink, limit, observer),\n enabled: !!username && enabled,\n queryFn: async ({ signal } = {} as any) => {\n if (!username) {\n return [];\n }\n\n const response = await getAccountPosts(\n filter,\n username,\n start_author,\n start_permlink,\n limit,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n });\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Entry } from \"../types\";\nimport { filterDmcaEntry } from \"../utils/filter-dmca-entries\";\nimport { getPostsRanked } from \"@/modules/bridge\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype PageParam = {\n author: string | undefined;\n permlink: string | undefined;\n};\n\ninterface GetPostsRankedOptions {\n resolvePosts?: boolean;\n}\n\n/**\n * `select` runs on every render, and React Query only reuses its previous\n * result when both the data and the select function are unchanged. These\n * options are rebuilt on each render, so an inline arrow would be a new\n * function every time and every page would be re-sorted on every render.\n * One stable function per sort keeps that memoization working.\n */\nconst displaySelects = new Map<\n string,\n (data: InfiniteData) => InfiniteData\n>();\n\nfunction displaySelect(sort: string) {\n let select = displaySelects.get(sort);\n if (!select) {\n select = (data) => ({\n ...data,\n pages: data.pages.map((page) => orderForDisplay(page, sort)),\n });\n displaySelects.set(sort, select);\n }\n return select;\n}\n\n/**\n * Display order for one page.\n *\n * Pinned entries are captured before the created-date sort: the bridge surfaces\n * them at the head of the response in the community moderators' chosen order,\n * which the sort would scatter by age. Every pin is kept, since an earlier\n * post-sort find() kept one and silently dropped the rest, so multi-pin\n * communities never displayed their other pinned posts. Pins only occur on the\n * first page, cursor pages return none, so this is a no-op elsewhere.\n *\n * Applied in `select` rather than in the query function so it cannot reach the\n * pagination cursor.\n */\nfunction orderForDisplay(page: Entry[], sort: string): Entry[] {\n const pinned = page.filter((entry) => entry.stats?.is_pinned);\n const rest = page.filter((entry) => !entry.stats?.is_pinned);\n\n if (sort === \"hot\") {\n return [...pinned, ...rest];\n }\n\n const byCreated = [...rest].sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n return [...pinned, ...byCreated];\n}\n\nexport function getPostsRankedInfiniteQueryOptions(\n sort: string,\n tag: string,\n limit = 20,\n observer = \"\",\n enabled = true,\n _options: GetPostsRankedOptions = {}\n) {\n return infiniteQueryOptions<\n Entry[],\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.posts.postsRanked(sort, tag, limit, observer),\n queryFn: async ({ pageParam, signal }: { pageParam: PageParam; signal: AbortSignal }) => {\n let sanitizedTag = tag;\n if (CONFIG.dmcaTagRegexes.some((regex) => regex.test(tag))) {\n sanitizedTag = \"\";\n }\n\n const response = await callRPC(\"bridge.get_ranked_posts\", {\n sort,\n start_author: pageParam.author,\n start_permlink: pageParam.permlink,\n limit,\n tag: sanitizedTag,\n observer,\n }, undefined, undefined, signal);\n\n if (response === null || response === undefined) {\n return [];\n }\n\n if (!Array.isArray(response)) {\n throw new Error(\n `[SDK] get_ranked_posts returned ${typeof response} for sort=${sort}`\n );\n }\n\n // Kept in the bridge's own order. getNextPageParam takes the cursor from\n // the last entry of the page this returns, and the bridge continues from\n // that entry in ITS ranking, so reordering here made the next request\n // start from the middle of the previous ranked page: for trending, payout\n // and muted the last entry by date is not the last entry by rank, and\n // scrolling repeated some posts and skipped others. Display order is\n // applied in `select`, which React Query runs after pagination.\n return filterDmcaEntry(response as Entry[]);\n },\n select: displaySelect(sort),\n enabled,\n initialPageParam: {\n author: undefined,\n permlink: undefined,\n } as PageParam,\n getNextPageParam: (lastPage: Entry[]) => {\n // React Query reads \"there is no next page\" from undefined alone, so\n // returning an object here always left it true. An infinite list\n // then keeps calling fetchNextPage at the end of the feed, appending an\n // empty page each time: the query state churns and the cache grows for as\n // long as the reader sits at the bottom.\n const last = lastPage?.[lastPage.length - 1];\n if (!last) {\n return undefined;\n }\n\n return { author: last.author, permlink: last.permlink };\n },\n });\n}\n\nexport function getPostsRankedQueryOptions(\n sort: string,\n start_author: string = \"\",\n start_permlink: string = \"\",\n limit: number = 20,\n tag: string = \"\",\n observer: string = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.postsRankedPage(sort, start_author, start_permlink, limit, tag, observer),\n enabled,\n queryFn: async ({ signal } = {} as any) => {\n let sanitizedTag = tag;\n if (CONFIG.dmcaTagRegexes.some((regex) => regex.test(tag))) {\n sanitizedTag = \"\";\n }\n\n const response = await getPostsRanked(\n sort,\n start_author,\n start_permlink,\n limit,\n sanitizedTag,\n observer,\n signal\n );\n\n return filterDmcaEntry(response ?? []) as Entry[];\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface BlogEntry {\n author: string;\n permlink: string;\n blog: string;\n reblog_on: string;\n reblogged_on: string;\n entry_id: number;\n}\n\nexport interface Reblog {\n author: string;\n permlink: string;\n}\n\nexport function getReblogsQueryOptions(\n username?: string,\n activeUsername?: string,\n limit = 200\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.reblogs(username ?? \"\", limit),\n queryFn: async () => {\n const response = (await callRPC(\"condenser_api.get_blog_entries\", [\n username ?? activeUsername,\n 0,\n limit,\n ])) as BlogEntry[];\n\n return response\n .filter(\n (i) =>\n i.author !== activeUsername &&\n !i.reblogged_on.startsWith(\"1970-\")\n )\n .map((i) => ({ author: i.author, permlink: i.permlink })) as Reblog[];\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get list of usernames who reblogged a specific post\n */\nexport function getRebloggedByQueryOptions(author?: string, permlink?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.rebloggedBy(author ?? \"\", permlink ?? \"\"),\n queryFn: async () => {\n if (!author || !permlink) {\n return [];\n }\n\n const response = (await callRPC(\"condenser_api.get_reblogged_by\", [author, permlink])) as string[];\n\n return Array.isArray(response) ? response : [];\n },\n enabled: !!author && !!permlink,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { Schedule } from \"../types/schedule\";\n\nexport function getSchedulesQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.schedules(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch schedules: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getSchedulesInfiniteQueryOptions(\n activeUsername: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.schedulesInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/schedules?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch schedules: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { Draft } from \"../types/draft\";\n\nexport function getDraftsQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.drafts(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch drafts: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getDraftsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.draftsInfinite(activeUsername, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!activeUsername || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/drafts?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch drafts: ${response.status}`);\n }\n\n const json = await response.json();\n // Normalize response for backwards compatibility\n // If backend doesn't support wrapped format yet, it returns Draft[]\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!activeUsername && !!code,\n });\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, normalizeToWrappedResponse, QueryKeys } from \"@/modules/core\";\nimport { UserImage } from \"../types/user-image\";\n\nasync function fetchUserImages(code: string | undefined): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch images: ${response.status}`);\n }\n\n return response.json() as Promise;\n}\n\nexport function getImagesQueryOptions(username?: string, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.images(username),\n queryFn: async () => {\n if (!username || !code) {\n return [];\n }\n return fetchUserImages(code);\n },\n enabled: !!username && !!code,\n });\n}\n\nexport function getGalleryImagesQueryOptions(activeUsername: string | undefined, code?: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.galleryImages(activeUsername),\n queryFn: async () => {\n if (!activeUsername || !code) {\n return [];\n }\n return fetchUserImages(code);\n },\n enabled: !!activeUsername && !!code,\n });\n}\n\nexport function getImagesInfiniteQueryOptions(\n username: string | undefined,\n code?: string,\n limit: number = 10\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.imagesInfinite(username, limit),\n queryFn: async ({ pageParam = 0 }) => {\n if (!username || !code) {\n return {\n data: [],\n pagination: {\n total: 0,\n limit,\n offset: 0,\n has_next: false,\n },\n };\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/images?format=wrapped&offset=${pageParam}&limit=${limit}`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n }),\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch images: ${response.status}`);\n }\n\n const json = await response.json();\n return normalizeToWrappedResponse(json, limit);\n },\n initialPageParam: 0,\n getNextPageParam: (lastPage) => {\n if (lastPage.pagination.has_next) {\n return lastPage.pagination.offset + lastPage.pagination.limit;\n }\n return undefined;\n },\n enabled: !!username && !!code,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { CommentHistory } from \"../types/comment-history\";\n\nexport function getCommentHistoryQueryOptions(author: string, permlink: string, onlyMeta = false) {\n return queryOptions({\n queryKey: QueryKeys.posts.commentHistory(author, permlink, onlyMeta),\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/comment-history\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink,\n onlyMeta: onlyMeta ? \"1\" : \"\",\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch comment history: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!author && !!permlink,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { CommentHistory } from \"../types/comment-history\";\n\nfunction makeEntryPath(author: string, permlink: string): string {\n const cleanAuthor = author?.trim();\n const cleanPermlink = permlink?.trim();\n\n if (!cleanAuthor || !cleanPermlink) {\n throw new Error(\"Invalid entry path: author and permlink are required\");\n }\n\n // Normalize by removing any leading @ or / characters\n const normalizedAuthor = cleanAuthor.replace(/^@+/, \"\");\n const normalizedPermlink = cleanPermlink.replace(/^\\/+/, \"\");\n\n if (!normalizedAuthor || !normalizedPermlink) {\n throw new Error(\"Invalid entry path: author and permlink cannot be empty after normalization\");\n }\n\n return `@${normalizedAuthor}/${normalizedPermlink}`;\n}\n\nexport interface DeletedEntry {\n body: string;\n title: string;\n tags: string[];\n}\n\nexport function getDeletedEntryQueryOptions(author: string, permlink: string) {\n const cleanPermlink = permlink?.trim();\n const cleanAuthor = author?.trim();\n const isValid =\n !!cleanAuthor && !!cleanPermlink && cleanPermlink !== \"undefined\";\n\n const entryPath = isValid ? makeEntryPath(cleanAuthor, cleanPermlink) : \"\";\n\n return queryOptions({\n queryKey: QueryKeys.posts.deletedEntry(entryPath),\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/comment-history\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink: cleanPermlink || \"\",\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch comment history: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n select: (history): DeletedEntry | null => {\n if (!history?.list?.[0]) {\n return null;\n }\n const { body, title, tags } = history.list[0];\n return {\n body,\n title,\n tags,\n };\n },\n enabled: isValid,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { PostTipsResponse } from \"../types/post-tip\";\n\n/**\n * Tips for a single post.\n *\n * Addressed as a GET so the response can be cached. This was a POST, which no\n * cache may store, so the same tip totals were refetched on every mount. The\n * endpoint keys off nothing but author and permlink and needs no auth, and now\n * serves a Cache-Control, so a repeat read can come from the browser instead of\n * the network.\n *\n * `staleTime` is kept at or below the endpoint's own cache window rather than\n * extending it. react-query cannot see how old a response already was when\n * `fetch` served it from the browser cache, so it restarts its window from zero\n * on a body that may already be near expiry; worst-case staleness is the two\n * windows added together.\n */\nexport function getPostTipsQueryOptions(author: string, permlink: string, isEnabled = true) {\n return queryOptions({\n queryKey: QueryKeys.posts.tips(author, permlink),\n queryFn: async () => {\n const path = `/private-api/post-tips/${encodeURIComponent(author)}/${encodeURIComponent(permlink)}`;\n const response = await fetch(CONFIG.privateApiHost + path, {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch post tips: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!author && !!permlink && isEnabled,\n staleTime: 60 * 1000,\n });\n}\n","import { Entry, WaveEntry } from \"../types\";\nimport { getDiscussionsQueryOptions, SortOrder } from \"../queries/get-discussions-query-options\";\nimport { CONFIG } from \"@/modules/core\";\n\ntype EntryWithPostId = Entry & { post_id: number };\n\nfunction normalizeContainer(entry: EntryWithPostId, host: string): WaveEntry {\n return {\n ...entry,\n id: entry.id ?? entry.post_id,\n // The private-api waves feeds send the publish time as `timestamp`, not `created`.\n created: entry.created ?? (entry as unknown as { timestamp?: string }).timestamp,\n host\n } as WaveEntry;\n}\n\nfunction normalizeParent(entry: EntryWithPostId): Entry {\n return {\n ...entry,\n id: entry.id ?? entry.post_id\n } as Entry;\n}\n\nexport function normalizeWaveEntryFromApi(\n entry:\n | (Entry & { post_id: number; container?: EntryWithPostId | null; parent?: EntryWithPostId | null })\n | null\n | undefined,\n host: string\n): WaveEntry | null {\n if (!entry) {\n return null;\n }\n\n const containerSource = entry.container ?? entry;\n const container = normalizeContainer(containerSource, host);\n\n const parent = entry.parent ? normalizeParent(entry.parent) : undefined;\n\n return {\n ...entry,\n id: entry.id ?? entry.post_id,\n // The private-api waves feeds (following / tag / account) send the publish\n // time as `timestamp`, not `created`; map it so the relative time renders on\n // every card (the For You feed already carries a real `created` from Hive RPC).\n created: entry.created ?? (entry as unknown as { timestamp?: string }).timestamp,\n // The private-api waves feeds omit max_accepted_payout; default it (and the\n // payout strings) to the Hive shape so payout-rendering consumers run their\n // pending+author+curator summation instead of treating the value as missing.\n max_accepted_payout: entry.max_accepted_payout || \"1000000.000 HBD\",\n pending_payout_value: entry.pending_payout_value || \"0.000 HBD\",\n author_payout_value: entry.author_payout_value || \"0.000 HBD\",\n curator_payout_value: entry.curator_payout_value || \"0.000 HBD\",\n host,\n container,\n parent\n } as WaveEntry;\n}\n\nexport function toEntryArray(x: unknown): Entry[] {\n return Array.isArray(x) ? (x as Entry[]) : [];\n}\n\nexport async function getVisibleFirstLevelThreadItems(\n container: WaveEntry\n): Promise {\n const queryOptions = getDiscussionsQueryOptions(container, SortOrder.created, true);\n const discussionItemsRaw = await CONFIG.queryClient.fetchQuery(queryOptions);\n const discussionItems = toEntryArray(discussionItemsRaw);\n\n if (discussionItems.length <= 1) {\n return [];\n }\n\n const firstLevelItems = discussionItems.filter(\n ({ parent_author, parent_permlink }) =>\n parent_author === container.author && parent_permlink === container.permlink\n );\n\n if (firstLevelItems.length === 0) {\n return [];\n }\n\n const visibleItems = firstLevelItems.filter((item) => !item.stats?.gray);\n\n return visibleItems;\n}\n\nexport function mapThreadItemsToWaveEntries(\n items: Entry[],\n container: WaveEntry,\n host: string\n): WaveEntry[] {\n if (items.length === 0) {\n return [];\n }\n\n return items\n .map((item) => {\n const parent = items.find(\n (i) =>\n i.author === item.parent_author &&\n i.permlink === item.parent_permlink &&\n i.author !== host\n );\n\n return {\n ...item,\n id: item.post_id,\n host,\n container,\n parent\n } as WaveEntry;\n })\n .filter((entry) => entry.container.post_id !== entry.post_id)\n .sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n}\n","import { infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\nconst DEFAULT_FEED_LIMIT = 20;\n\ntype WavesFeedRow = Entry & {\n post_id: number;\n // The wave's container account (e.g. ecency.waves, leothreads), so a mixed\n // cross-container feed can be rendered and acted on per item.\n host?: string;\n // Opaque keyset cursor pointing just past this row.\n _cursor?: string;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport type WavesFeedEntry = WaveEntry & { _cursor?: string };\n\nexport interface WavesFeedParams {\n /** Scope to one or more container accounts; omit for the full combined feed. */\n containers?: string[];\n /** Only waves carrying this tag (across all containers). */\n tag?: string;\n /** Only waves from accounts this user follows (across all containers). */\n following?: string;\n /** Only this author's waves (across all containers); the per-author feed. */\n author?: string;\n /**\n * The viewing user; exclude authors they currently mute. Ecency's own\n * moderation mutes are applied by esync regardless of this value, so leaving\n * it unset drops the viewer's personal mutes, not the platform ones.\n */\n observer?: string;\n /** Page size (default 20). */\n limit?: number;\n}\n\ninterface NormalizedFeedParams {\n containers: string[];\n tag?: string;\n following?: string;\n author?: string;\n observer?: string;\n limit: number;\n}\n\nfunction normalizeParams(params: WavesFeedParams): NormalizedFeedParams {\n return {\n containers: params.containers ?? [],\n tag: params.tag?.trim() || undefined,\n following: params.following?.trim().toLowerCase() || undefined,\n author: params.author?.trim().toLowerCase() || undefined,\n observer: params.observer?.trim().toLowerCase() || undefined,\n limit: params.limit ?? DEFAULT_FEED_LIMIT\n };\n}\n\nasync function fetchWavesFeedPage(\n { containers, tag, following, author, observer, limit }: NormalizedFeedParams,\n cursor: string | undefined,\n signal?: AbortSignal\n): Promise {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/feed\", baseUrl);\n url.searchParams.set(\"limit\", String(limit));\n if (cursor) {\n url.searchParams.set(\"cursor\", cursor);\n }\n containers.forEach((container) => url.searchParams.append(\"container\", container));\n if (tag) {\n url.searchParams.set(\"tag\", tag);\n }\n if (following) {\n url.searchParams.set(\"following\", following);\n }\n if (author) {\n url.searchParams.set(\"author\", author);\n }\n if (observer) {\n url.searchParams.set(\"observer\", observer);\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves feed: ${response.status}`);\n }\n\n const data = (await response.json()) as WavesFeedRow[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n return data\n .map((row) => {\n const entry = normalizeWaveEntryFromApi(row, row.host ?? \"\");\n if (!entry) {\n return null;\n }\n return { ...entry, _cursor: row._cursor } as WavesFeedEntry;\n })\n .filter((entry): entry is WavesFeedEntry => Boolean(entry));\n}\n\n/**\n * Combined cross-container waves feed (the chronological \"For You\" stream, and\n * the Following / Tag feeds via filters).\n *\n * A single esync-backed call returns the newest waves across every indexed\n * container, already merged and time-ordered, with keyset (cursor) pagination,\n * replacing the per-container chain-RPC scan. The optional `tag` / `following`\n * filters narrow the same stream without changing the cursor.\n */\nexport function getWavesFeedQueryOptions(params: WavesFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, following, author, observer, limit } = normalized;\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesFeed({ containers, tag, following, author, observer, limit }),\n initialPageParam: undefined as string | undefined,\n\n queryFn: ({ pageParam, signal }) => fetchWavesFeedPage(normalized, pageParam, signal),\n\n // Keyset pagination. A short page (fewer than `limit` rows) is the\n // end-of-feed signal; on a full page the server always returns the next\n // cursor on the last row. Stopping (rather than looping) is the safe\n // fallback if that cursor were ever absent.\n getNextPageParam: (lastPage: WavesFeedEntry[]) => {\n if (lastPage.length < limit) {\n return undefined;\n }\n return lastPage[lastPage.length - 1]?._cursor;\n }\n });\n}\n\n/**\n * Page-one of the combined feed as a plain (non-infinite) query under a distinct\n * key, for the \"new waves\" poll. Separate from {@link getWavesFeedQueryOptions}\n * so refreshing it never truncates the infinite feed's loaded pages.\n */\nexport function getWavesLatestFeedQueryOptions(params: WavesFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, following, author, observer, limit } = normalized;\n\n return queryOptions({\n queryKey: [\n ...QueryKeys.posts.wavesFeed({ containers, tag, following, author, observer, limit }),\n \"latest\"\n ],\n staleTime: 0,\n queryFn: ({ signal }) => fetchWavesFeedPage(normalized, undefined, signal)\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\nconst DEFAULT_FEED_LIMIT = 20;\n\n/** The 3Speak video a short embeds, as returned by esync /api/waves/shorts. */\nexport interface ShortVideo {\n platform: string;\n author: string;\n permlink: string;\n embed_url: string;\n thumbnail_url: string | null;\n duration_secs: number | null;\n}\n\ntype ShortsFeedRow = Entry & {\n post_id: number;\n host?: string;\n video?: ShortVideo;\n _cursor?: string;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport type ShortsFeedEntry = WaveEntry & {\n /** The embedded 3Speak video reference for the reels player. */\n video?: ShortVideo;\n _cursor?: string;\n};\n\nexport interface ShortsFeedParams {\n /** Scope to one or more container accounts; omit for the full combined feed. */\n containers?: string[];\n /** Only shorts carrying this tag (across all containers). */\n tag?: string;\n /** Only this author's shorts (across all containers). */\n author?: string;\n /**\n * The viewing user; exclude authors they currently mute. Ecency's own\n * moderation mutes are applied by esync regardless of this value.\n */\n observer?: string;\n /** Page size (default 20). */\n limit?: number;\n}\n\ninterface NormalizedShortsParams {\n containers: string[];\n tag?: string;\n author?: string;\n observer?: string;\n limit: number;\n}\n\nfunction normalizeParams(params: ShortsFeedParams): NormalizedShortsParams {\n return {\n containers: params.containers ?? [],\n tag: params.tag?.trim() || undefined,\n author: params.author?.trim().toLowerCase() || undefined,\n observer: params.observer?.trim().toLowerCase() || undefined,\n limit: params.limit ?? DEFAULT_FEED_LIMIT\n };\n}\n\nasync function fetchShortsFeedPage(\n { containers, tag, author, observer, limit }: NormalizedShortsParams,\n cursor: string | undefined,\n signal?: AbortSignal\n): Promise {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/shorts\", baseUrl);\n url.searchParams.set(\"limit\", String(limit));\n if (cursor) {\n url.searchParams.set(\"cursor\", cursor);\n }\n containers.forEach((container) => url.searchParams.append(\"container\", container));\n if (tag) {\n url.searchParams.set(\"tag\", tag);\n }\n if (author) {\n url.searchParams.set(\"author\", author);\n }\n if (observer) {\n url.searchParams.set(\"observer\", observer);\n }\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch shorts feed: ${response.status}`);\n }\n\n const data = (await response.json()) as ShortsFeedRow[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n return data\n .map((row) => {\n const entry = normalizeWaveEntryFromApi(row, row.host ?? \"\");\n if (!entry) {\n return null;\n }\n return {\n ...entry,\n // A lightweight feed row may omit active_votes; EntryVoteBtn (which uses\n // this entry as React Query initialData) calls .some() on it, so default\n // to an empty array to avoid a crash before the full post query loads.\n active_votes: entry.active_votes ?? [],\n video: row.video,\n _cursor: row._cursor\n } as ShortsFeedEntry;\n })\n .filter((entry): entry is ShortsFeedEntry => Boolean(entry));\n}\n\n/**\n * Combined cross-container shorts (reels) feed: waves that embed a 3Speak video.\n *\n * Backed by esync /api/waves/shorts (via /private-api/waves/shorts). Same shape,\n * keyset pagination and filters as {@link getWavesFeedQueryOptions}, plus a\n * `video` block per item for the vertical reels player. There is no `following`\n * filter in v1.\n */\nexport function getShortsFeedQueryOptions(params: ShortsFeedParams = {}) {\n const normalized = normalizeParams(params);\n const { containers, tag, author, observer, limit } = normalized;\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.shortsFeed({ containers, tag, author, observer, limit }),\n initialPageParam: undefined as string | undefined,\n\n queryFn: ({ pageParam, signal }) => fetchShortsFeedPage(normalized, pageParam, signal),\n\n // Keyset pagination: a short page (fewer than `limit` rows) ends the feed;\n // on a full page the server returns the next cursor on the last row.\n getNextPageParam: (lastPage: ShortsFeedEntry[]) => {\n if (lastPage.length < limit) {\n return undefined;\n }\n return lastPage[lastPage.length - 1]?._cursor;\n }\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport {\n getVisibleFirstLevelThreadItems,\n mapThreadItemsToWaveEntries\n} from \"../utils/waves-helpers\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nconst THREAD_CONTAINER_BATCH_SIZE = 5;\nconst MAX_CONTAINERS_TO_SCAN = 50;\n\ninterface ThreadsResult {\n entries: WaveEntry[];\n}\n\nasync function getThreads(\n host: string,\n pageParam?: WaveEntry\n): Promise {\n let startAuthor = pageParam?.author;\n let startPermlink = pageParam?.permlink;\n let scannedContainers = 0;\n let skipContainerId = pageParam?.post_id;\n\n while (scannedContainers < MAX_CONTAINERS_TO_SCAN) {\n interface AccountPostsParams {\n sort: string;\n account: string;\n limit: number;\n start_author?: string;\n start_permlink?: string;\n }\n\n const rpcParams: AccountPostsParams = {\n sort: \"posts\", // ProfileFilter.posts\n account: host,\n limit: THREAD_CONTAINER_BATCH_SIZE,\n ...(startAuthor ? { start_author: startAuthor } : {}),\n ...(startPermlink ? { start_permlink: startPermlink } : {})\n };\n\n let containers: WaveEntry[];\n try {\n containers = (await callRPC(\"bridge.get_account_posts\", rpcParams)) as WaveEntry[];\n } catch (err) {\n console.error(\"[SDK] getThreads get_account_posts error:\", err);\n return null;\n }\n\n if (!containers || containers.length === 0) {\n return null;\n }\n\n const normalizedContainers = containers.map((container) => {\n container.id = container.post_id;\n container.host = host;\n return container;\n });\n\n for (const container of normalizedContainers) {\n if (skipContainerId && container.post_id === skipContainerId) {\n skipContainerId = undefined;\n continue;\n }\n\n scannedContainers += 1;\n\n if (container.stats?.gray) {\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n let visibleItems: Entry[];\n try {\n visibleItems = await getVisibleFirstLevelThreadItems(container);\n } catch (err) {\n // A transient bridge.get_discussion failure (RPC timeout, node error, or\n // an oversized response on a large late-day container) must not collapse\n // the whole feed. Treat this container as temporarily unavailable and scan\n // the next one — mirroring the empty-container handling below and the\n // get_account_posts guard above. The query's refetch interval retries it.\n console.error(\"[SDK] getThreads get_discussion error:\", err);\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n if (visibleItems.length === 0) {\n startAuthor = container.author;\n startPermlink = container.permlink;\n continue;\n }\n\n return {\n entries: mapThreadItemsToWaveEntries(visibleItems, container, host)\n };\n }\n\n const lastContainer = normalizedContainers[normalizedContainers.length - 1];\n\n if (!lastContainer) {\n return null;\n }\n\n startAuthor = lastContainer.author;\n startPermlink = lastContainer.permlink;\n }\n\n return null;\n}\n\n// Page = array of WaveEntry; Cursor = WaveEntry (container) or undefined\ntype WavesPage = WaveEntry[];\ntype WavesCursor = WaveEntry | undefined;\n\nexport function getWavesByHostQueryOptions(host: string) {\n return infiniteQueryOptions<\n WavesPage,\n Error,\n InfiniteData,\n string[],\n WavesCursor\n >({\n queryKey: QueryKeys.posts.wavesByHost(host),\n initialPageParam: undefined as WavesCursor,\n\n queryFn: async ({ pageParam }: { pageParam: WavesCursor }) => {\n const result = await getThreads(host, pageParam);\n if (!result) return []; // no items to show for this page\n\n return result.entries;\n },\n\n getNextPageParam: (lastPage: WavesPage): WavesCursor => lastPage?.[0]?.container,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ntype WavesTagEntryResponse = Entry & {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nconst DEFAULT_TAG_FEED_LIMIT = 40;\n\nexport function getWavesByTagQueryOptions(host: string, tag: string, limit = DEFAULT_TAG_FEED_LIMIT) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesByTag(host, tag),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/tags\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"tag\", tag);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves by tag: ${response.status}`);\n }\n\n const data = await response.json() as WavesTagEntryResponse[];\n\n const result = data\n .slice(0, limit)\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n return result.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves by tag\", error);\n return [];\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ntype WavesFollowingEntry = Entry & {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n};\n\nexport function getWavesFollowingQueryOptions(host: string, username?: string) {\n const normalizedUsername = username?.trim().toLowerCase();\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesFollowing(host, normalizedUsername ?? \"\"),\n enabled: Boolean(normalizedUsername),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n if (!normalizedUsername) {\n return [];\n }\n\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/following\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"username\", normalizedUsername);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves following feed: ${response.status}`);\n }\n\n const data = await response.json() as WavesFollowingEntry[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n const flattened = data\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n if (flattened.length === 0) {\n return [];\n }\n\n return flattened.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves following feed\", error);\n return [];\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { WaveTrendingTag } from \"../types\";\n\ninterface WavesTrendingTagResponse {\n tag: string;\n posts: number;\n}\n\nexport function getWavesTrendingTagsQueryOptions(host?: string, hours = 24) {\n // Omit the container for combined trending tags across all containers.\n const container = host?.trim() || undefined;\n\n return queryOptions({\n queryKey: QueryKeys.posts.wavesTrendingTags(container ?? \"\", hours),\n queryFn: async ({ signal }): Promise => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/trending/tags\", baseUrl);\n if (container) {\n url.searchParams.set(\"container\", container);\n }\n url.searchParams.set(\"hours\", hours.toString());\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves trending tags: ${response.status}`);\n }\n\n const data = await response.json() as WavesTrendingTagResponse[];\n\n return data.map(({ tag, posts }) => ({ tag, posts }));\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves trending tags\", error);\n return [];\n }\n }\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { Entry, WaveEntry } from \"../types\";\nimport { normalizeWaveEntryFromApi } from \"../utils/waves-helpers\";\n\ninterface WavesAccountEntry extends Entry {\n post_id: number;\n container?: (Entry & { post_id: number }) | null;\n parent?: (Entry & { post_id: number }) | null;\n}\n\nexport function getWavesByAccountQueryOptions(host: string, username?: string) {\n const normalizedUsername = username?.trim().toLowerCase();\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.posts.wavesByAccount(host, normalizedUsername ?? \"\"),\n enabled: Boolean(normalizedUsername),\n initialPageParam: undefined,\n\n queryFn: async ({ signal }) => {\n if (!normalizedUsername) {\n return [];\n }\n\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/account\", baseUrl);\n url.searchParams.set(\"container\", host);\n url.searchParams.set(\"username\", normalizedUsername);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves for account: ${response.status}`);\n }\n\n const data = await response.json() as WavesAccountEntry[];\n\n if (!Array.isArray(data) || data.length === 0) {\n return [];\n }\n\n const flattened = data\n .map((entry) => normalizeWaveEntryFromApi(entry, host))\n .filter((entry): entry is WaveEntry => Boolean(entry));\n\n if (flattened.length === 0) {\n return [];\n }\n\n return flattened.sort(\n (a, b) => new Date(b.created).getTime() - new Date(a.created).getTime()\n );\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves for account\", error);\n throw error;\n }\n },\n\n getNextPageParam: () => undefined,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConfigManager, QueryKeys } from \"@/modules/core\";\nimport { WaveTrendingAuthor } from \"../types\";\n\nexport function getWavesTrendingAuthorsQueryOptions(host: string) {\n return queryOptions({\n queryKey: QueryKeys.posts.wavesTrendingAuthors(host),\n queryFn: async ({ signal }): Promise => {\n try {\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/waves/trending/authors\", baseUrl);\n url.searchParams.set(\"container\", host);\n\n const response = await fetch(url.toString(), {\n method: \"GET\",\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch waves trending authors: ${response.status}`);\n }\n\n const data = await response.json() as WaveTrendingAuthor[];\n\n return data.map(({ author, posts }) => ({ author, posts }));\n } catch (error) {\n console.error(\"[SDK] Failed to fetch waves trending authors\", error);\n throw error;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry } from \"../types\";\nimport { normalizePost } from \"@/modules/bridge\";\n\nexport function getNormalizePostQueryOptions(\n post: { author?: string; permlink?: string } | undefined,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.posts.normalize(post?.author ?? \"\", post?.permlink ?? \"\"),\n enabled: enabled && !!post,\n queryFn: async () => normalizePost(post) as Promise,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core/config\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Entry } from \"@/modules/posts/types\";\nimport { getPostQueryOptions } from \"@/modules/posts/queries\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ninterface VoteOperationDetails {\n voter: string;\n author: string;\n permlink: string;\n weight: number;\n}\n\ninterface AccountVoteHistoryItem {\n timestamp: string;\n op: [string, VoteOperationDetails];\n}\n\ntype AccountVoteHistoryRecord = [number, AccountVoteHistoryItem];\n\ninterface VoteHistoryResult extends VoteOperationDetails {\n num: number;\n timestamp: string;\n}\n\nexport interface VoteHistoryPageParam {\n start: number;\n}\n\nexport interface VoteHistoryPage {\n lastDate: number;\n lastItemFetched: number;\n entries: Entry[];\n}\n\nfunction isEntry(x: unknown): x is Entry {\n return (\n !!x &&\n typeof x === \"object\" &&\n \"author\" in x &&\n \"permlink\" in x &&\n \"active_votes\" in x\n );\n}\n\n/**\n * Calculate days since a date\n */\nfunction getDays(createdDate: string): number {\n const past = new Date(createdDate);\n const now = new Date();\n const diffMs = now.getTime() - past.getTime();\n return diffMs / (1000 * 60 * 60 * 24);\n}\n\n/**\n * Get account vote history with entries\n *\n * @param username - Account name to get vote history for\n * @param limit - Number of history items per page (default: 20)\n * @param filters - Additional filters to pass to get_account_history\n * @param dayLimit - Only include votes from last N days (default: 7)\n */\nexport function getAccountVoteHistoryInfiniteQueryOptions(\n username: string,\n options?: {\n limit?: number;\n filters?: F[];\n dayLimit?: number;\n }\n) {\n const { limit = 20, filters = [], dayLimit = 7.0 } = options ?? {};\n\n return infiniteQueryOptions<\n VoteHistoryPage,\n Error,\n InfiniteData,\n (string | number)[],\n VoteHistoryPageParam\n >({\n queryKey: QueryKeys.accounts.voteHistory(username, limit),\n initialPageParam: { start: -1 },\n\n queryFn: async ({ pageParam }: { pageParam: VoteHistoryPageParam }) => {\n const { start } = pageParam;\n\n const response = (await callRPC(\"condenser_api.get_account_history\", [username, start, limit, ...filters])) as AccountVoteHistoryRecord[];\n\n const mappedResults: VoteHistoryResult[] = response.map(([num, historyObj]) => ({\n ...historyObj.op[1],\n num,\n timestamp: historyObj.timestamp,\n }));\n\n const result = mappedResults.filter(\n (filtered) =>\n filtered.voter === username &&\n filtered.weight !== 0 &&\n getDays(filtered.timestamp) <= dayLimit\n );\n\n const entries: Entry[] = [];\n for (const obj of result) {\n const post = await CONFIG.queryClient.fetchQuery(\n getPostQueryOptions(obj.author, obj.permlink)\n );\n if (isEntry(post)) entries.push(post);\n }\n\n const [firstHistory] = response;\n\n return {\n lastDate: firstHistory ? getDays(firstHistory[1].timestamp) : 0,\n lastItemFetched: firstHistory ? firstHistory[0] : start,\n entries,\n };\n },\n\n getNextPageParam: (lastPage: VoteHistoryPage): VoteHistoryPageParam => ({\n start: lastPage.lastItemFetched,\n }),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Profile } from \"../types\";\nimport { getProfiles } from \"@/modules/bridge\";\n\nexport function getProfilesQueryOptions(\n accounts: string[],\n observer?: string,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.accounts.profiles(accounts, observer ?? \"\"),\n enabled: enabled && accounts.length > 0,\n queryFn: async () => getProfiles(accounts, observer) as Promise,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport type {\n BalanceCoinType,\n BalanceHistoryEntry,\n BalanceHistoryResponse,\n} from \"../types\";\n\ninterface BalanceHistoryPage {\n entries: BalanceHistoryEntry[];\n currentPage: number;\n}\n\n/**\n * Cursor for balance history pagination.\n * null = first request (returns the newest page).\n * number = specific page to fetch (decrementing for older data).\n */\ntype BalanceHistoryCursor = number | null;\n\n/**\n * Get balance history for an account with pagination, newest first.\n * Uses the balance-api REST endpoint with direction=desc.\n *\n * Pagination: first call omits `page` to get the newest data.\n * The response includes `total_pages` so we know the current page number.\n * Subsequent calls decrement the page number to load older data.\n *\n * @param username - Account name\n * @param coinType - HIVE, HBD, or VESTS\n * @param pageSize - Number of entries per page\n */\nexport function getBalanceHistoryInfiniteQueryOptions(\n username?: string,\n coinType: BalanceCoinType = \"HIVE\",\n pageSize = 200\n) {\n return infiniteQueryOptions<\n BalanceHistoryPage,\n Error,\n InfiniteData,\n (string | number)[],\n BalanceHistoryCursor\n >({\n queryKey: QueryKeys.wallet.balanceHistory(\n username ?? \"\",\n coinType,\n pageSize\n ),\n initialPageParam: null as BalanceHistoryCursor,\n\n queryFn: async ({ pageParam, signal }) => {\n if (!username) {\n return { entries: [], currentPage: 0 };\n }\n\n const params: Record = {\n \"account-name\": username,\n \"coin-type\": coinType,\n \"page-size\": pageSize,\n direction: \"desc\",\n };\n\n // First call: omit page to get newest data\n // Subsequent calls: pass specific page number\n if (pageParam !== null) {\n params.page = pageParam;\n }\n\n const response = (await callREST(\n \"balance\",\n \"/accounts/{account-name}/balance-history\",\n params,\n undefined,\n undefined,\n signal\n )) as BalanceHistoryResponse;\n\n return {\n entries: response.operations_result,\n currentPage: pageParam ?? response.total_pages,\n };\n },\n\n getNextPageParam: (lastPage) => {\n // Decrement page to go further back in time\n const nextPage = lastPage.currentPage - 1;\n return nextPage >= 1 ? nextPage : undefined;\n },\n\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport type { AggregatedBalanceEntry, BalanceCoinType } from \"../types\";\n\nexport type BalanceAggregationGranularity = \"yearly\" | \"monthly\" | \"daily\";\n\n/**\n * Get aggregated balance history for an account.\n * Uses the balance-api REST endpoint - enables yearly/monthly/daily summary\n * widgets that are impossible via RPC.\n *\n * @param username - Account name\n * @param coinType - HIVE, HBD, or VESTS\n * @param granularity - yearly (default), monthly, or daily\n */\nexport function getAggregatedBalanceQueryOptions(\n username?: string,\n coinType: BalanceCoinType = \"HIVE\",\n granularity: BalanceAggregationGranularity = \"yearly\"\n) {\n return queryOptions({\n queryKey: QueryKeys.wallet.aggregatedHistory(\n username ?? \"\",\n coinType,\n granularity\n ),\n\n queryFn: async () => {\n if (!username) {\n return [];\n }\n\n return (await callREST(\n \"balance\",\n \"/accounts/{account-name}/aggregated-history\",\n {\n \"account-name\": username,\n \"coin-type\": coinType,\n granularity,\n }\n )) as AggregatedBalanceEntry[];\n },\n\n enabled: !!username,\n staleTime: 60_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport interface ProMembersResponse {\n /** Usernames of active Ecency Pro members. */\n members: string[];\n count: number;\n}\n\n/**\n * Public, cached roster of Ecency Pro members. Backed by a lightweight private-api\n * endpoint (no auth) so any surface can decorate a username with a Pro badge without\n * a per-user request.\n *\n * `staleTime` is deliberately shorter than the endpoint's own cache window and is\n * NOT raised to match it. react-query has no idea how old a response already was\n * when `fetch` served it from the browser cache: it treats a nine-minute-old\n * cached body as freshly fetched and starts its own window from zero. Worst-case\n * staleness is therefore the endpoint's window plus this one, so raising this to\n * match the server would roughly double it rather than align it.\n */\nexport function getProMembersQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.accounts.proMembers(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/pro-members\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch pro members: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n staleTime: 5 * 60 * 1000,\n });\n}\n\n/** Lowercased set of member usernames for O(1), case-insensitive membership checks. */\nexport function proMembersSet(members?: string[]): Set {\n return new Set((members ?? []).map((m) => m.toLowerCase()));\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { useQuery, useQueryClient } from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { AccountProfile, FullAccount } from \"../types\";\nimport {\n buildPostingJsonMetadata,\n buildProfileMetadata,\n extractAccountProfile,\n pickRicherMetadataSnapshot,\n} from \"../utils/profile-metadata\";\n\ninterface Payload {\n profile: Partial;\n tokens: AccountProfile[\"tokens\"];\n}\n\n/**\n * React Query mutation hook for updating account profile metadata.\n *\n * This mutation broadcasts an account_update2 operation to update the user's\n * profile information (name, about, location, avatar, cover image, etc.).\n *\n * @param username - The username to update (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Profile Fields:**\n * - name: Display name\n * - about: Bio/description\n * - location: Location\n * - website: Website URL\n * - profile_image: Avatar URL\n * - cover_image: Cover/banner URL\n * - tokens: Social tokens (Twitter, Facebook, etc.)\n * - version: Profile metadata version (auto-set to 2)\n *\n * **Authentication:**\n * - Uses posting authority (account_update2 operation)\n * - Supports all auth methods via platform adapter\n *\n * **Post-Broadcast Actions:**\n * - Optimistically updates account cache with new profile data\n * - Invalidates account cache to refetch from blockchain\n *\n * @example\n * ```typescript\n * const updateProfile = useAccountUpdate(username, {\n * adapter: myAdapter,\n * });\n *\n * // Update profile\n * updateProfile.mutate({\n * profile: {\n * name: \"John Doe\",\n * about: \"Hive enthusiast\",\n * profile_image: \"https://...\",\n * }\n * });\n * ```\n */\nexport function useAccountUpdate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n const queryClient = useQueryClient();\n\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useBroadcastMutation(\n [\"accounts\", \"update\"],\n username,\n (payload: Partial) => {\n // Prefer the freshest cached snapshot. onMutate has just refetched the\n // account from chain, so this usually reflects the current on-chain\n // profile rather than a possibly stale/unloaded render-time value. If\n // the cache instead holds a metadata-poorer row than the render-time\n // snapshot (e.g. a node served a stripped account row), the richer\n // snapshot wins — a partial update must never shrink the profile while\n // any snapshot still knows the full one.\n const account = pickRicherMetadataSnapshot(\n queryClient.getQueryData(\n getAccountFullQueryOptions(username).queryKey\n ),\n data\n );\n\n if (!account) {\n throw new Error(\"[SDK][Accounts] – cannot update not existing account\");\n }\n\n return [\n [\n \"account_update2\",\n {\n account: username!,\n json_metadata: \"\",\n extensions: [] as [],\n // Read-modify-write the FULL on-chain metadata: deep-merge the\n // profile and preserve any non-`profile` top-level keys, so a\n // partial update never wipes unrelated fields.\n posting_json_metadata: buildPostingJsonMetadata({\n existingPostingJsonMetadata: account.posting_json_metadata,\n profile: payload.profile,\n tokens: payload.tokens,\n }),\n },\n ],\n ];\n },\n async (_data: unknown, variables: Partial) => {\n // Optimistic cache update\n queryClient.setQueryData(\n getAccountFullQueryOptions(username).queryKey,\n (data) => {\n if (!data) {\n return data;\n }\n\n const obj = JSON.parse(JSON.stringify(data)) as FullAccount;\n obj.profile = buildProfileMetadata({\n existingProfile: extractAccountProfile(data),\n profile: variables.profile,\n tokens: variables.tokens,\n });\n\n return obj;\n }\n );\n\n // Invalidate cache to refetch from blockchain\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username)\n ]);\n },\n auth,\n undefined,\n {\n broadcastMode,\n // Before merging, force a fresh on-chain read so a stale or unloaded\n // cached snapshot cannot cause a partial update (e.g. pinning a post,\n // which sets only `pinned`) to overwrite the existing profile with a\n // near-empty object. Best-effort: if the refetch fails, the op builder\n // falls back to the cached snapshot.\n onMutate: async () => {\n if (!username) {\n return;\n }\n try {\n await queryClient.fetchQuery({\n ...getAccountFullQueryOptions(username),\n staleTime: 0,\n });\n } catch {\n // Ignore – fall back to whatever is already cached.\n }\n },\n }\n );\n}\n","import { broadcastJson, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { AuthContext } from \"@/modules/core/types\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { getRelationshipBetweenAccountsQueryOptions, getAccountFullQueryOptions } from \"../queries\";\nimport { AccountRelationship } from \"../types\";\n\ntype Kind = \"toggle-ignore\" | \"toggle-follow\";\n\nexport function useAccountRelationsUpdate(\n reference: string | undefined,\n target: string | undefined,\n auth: AuthContext | undefined,\n onSuccess: (data: Partial | undefined) => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"relation\", \"update\", reference, target],\n mutationFn: async (kind: Kind) => {\n const relationsQuery = getRelationshipBetweenAccountsQueryOptions(\n reference!,\n target!\n );\n await getQueryClient().prefetchQuery(relationsQuery);\n const actualRelation = getQueryClient().getQueryData(\n relationsQuery.queryKey\n );\n\n await broadcastJson(\n reference,\n \"follow\",\n [\n \"follow\",\n {\n follower: reference,\n following: target,\n what: [\n ...(kind === \"toggle-ignore\" && !actualRelation?.ignores\n ? [\"ignore\"]\n : []),\n ...(kind === \"toggle-follow\" && !actualRelation?.follows\n ? [\"blog\"]\n : []),\n ],\n },\n ],\n auth\n );\n\n return {\n ...actualRelation,\n ignores:\n kind === \"toggle-ignore\"\n ? !actualRelation?.ignores\n : actualRelation?.ignores,\n follows:\n kind === \"toggle-follow\"\n ? !actualRelation?.follows\n : actualRelation?.follows,\n } satisfies Partial;\n },\n onError,\n onSuccess(data) {\n onSuccess(data);\n\n getQueryClient().setQueryData(\n QueryKeys.accounts.relations(reference!, target!),\n data\n );\n\n // Invalidate account query to refetch follow stats (follower_count, following_count)\n // This is needed because profile pages use staleTime: Infinity for performance\n if (target) {\n getQueryClient().invalidateQueries(\n getAccountFullQueryOptions(target)\n );\n }\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Content Operations\n * Operations for creating, voting, and managing content on Hive blockchain\n */\n\n/**\n * Builds a vote operation.\n * @param voter - Account casting the vote\n * @param author - Author of the post/comment\n * @param permlink - Permlink of the post/comment\n * @param weight - Vote weight (-10000 to 10000, where 10000 = 100% upvote, -10000 = 100% downvote)\n * @returns Vote operation\n */\nexport function buildVoteOp(\n voter: string,\n author: string,\n permlink: string,\n weight: number\n): Operation {\n if (!voter || !author || !permlink) {\n throw new Error(\"[SDK][buildVoteOp] Missing required parameters\");\n }\n if (weight < -10000 || weight > 10000) {\n throw new Error(\"[SDK][buildVoteOp] Weight must be between -10000 and 10000\");\n }\n\n return [\n \"vote\",\n {\n voter,\n author,\n permlink,\n weight,\n },\n ];\n}\n\n/**\n * Builds a comment operation (for posts or replies).\n * @param author - Author of the comment/post\n * @param permlink - Permlink of the comment/post\n * @param parentAuthor - Parent author (empty string for top-level posts)\n * @param parentPermlink - Parent permlink (category/tag for top-level posts)\n * @param title - Title of the post (empty for comments)\n * @param body - Content body (required - cannot be empty)\n * @param jsonMetadata - JSON metadata object\n * @returns Comment operation\n */\nexport function buildCommentOp(\n author: string,\n permlink: string,\n parentAuthor: string,\n parentPermlink: string,\n title: string,\n body: string,\n jsonMetadata: Record\n): Operation {\n // Every comment mutation (create, update, cross-post) goes through this\n // builder, so it is the one place the required fields are checked. Naming the\n // missing ones makes the report actionable instead of a bare assertion.\n const missing: string[] = [];\n if (!author) missing.push(\"author\");\n if (!permlink) missing.push(\"permlink\");\n if (parentPermlink === undefined) missing.push(\"parentPermlink\");\n if (!body) missing.push(\"body\");\n if (missing.length > 0) {\n throw new Error(`[SDK][buildCommentOp] Missing required parameters: ${missing.join(\", \")}`);\n }\n\n return [\n \"comment\",\n {\n parent_author: parentAuthor,\n parent_permlink: parentPermlink,\n author,\n permlink,\n title,\n body,\n json_metadata: JSON.stringify(jsonMetadata),\n },\n ];\n}\n\n/**\n * Builds a comment options operation (for setting beneficiaries, rewards, etc.).\n * @param author - Author of the comment/post\n * @param permlink - Permlink of the comment/post\n * @param maxAcceptedPayout - Maximum accepted payout (e.g., \"1000000.000 HBD\")\n * @param percentHbd - Percent of payout in HBD (10000 = 100%)\n * @param allowVotes - Allow votes on this content\n * @param allowCurationRewards - Allow curation rewards\n * @param extensions - Extensions array (for beneficiaries, etc.)\n * @returns Comment options operation\n */\nexport function buildCommentOptionsOp(\n author: string,\n permlink: string,\n maxAcceptedPayout: string,\n percentHbd: number,\n allowVotes: boolean,\n allowCurationRewards: boolean,\n extensions: any[]\n): Operation {\n if (!author || !permlink) {\n throw new Error(\"[SDK][buildCommentOptionsOp] Missing required parameters\");\n }\n\n return [\n \"comment_options\",\n {\n author,\n permlink,\n max_accepted_payout: maxAcceptedPayout,\n percent_hbd: percentHbd,\n allow_votes: allowVotes,\n allow_curation_rewards: allowCurationRewards,\n extensions,\n },\n ];\n}\n\n/**\n * Builds a delete comment operation.\n * @param author - Author of the comment/post to delete\n * @param permlink - Permlink of the comment/post to delete\n * @returns Delete comment operation\n */\nexport function buildDeleteCommentOp(author: string, permlink: string): Operation {\n if (!author || !permlink) {\n throw new Error(\"[SDK][buildDeleteCommentOp] Missing required parameters\");\n }\n\n return [\n \"delete_comment\",\n {\n author,\n permlink,\n },\n ];\n}\n\n/**\n * Builds a reblog operation (custom_json).\n * @param account - Account performing the reblog\n * @param author - Original post author\n * @param permlink - Original post permlink\n * @param deleteReblog - If true, removes the reblog\n * @returns Custom JSON operation for reblog\n */\nexport function buildReblogOp(\n account: string,\n author: string,\n permlink: string,\n deleteReblog: boolean = false\n): Operation {\n if (!account || !author || !permlink) {\n throw new Error(\"[SDK][buildReblogOp] Missing required parameters\");\n }\n\n const json: any = {\n account,\n author,\n permlink,\n };\n\n if (deleteReblog) {\n json.delete = \"delete\";\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\"reblog\", json]),\n required_auths: [],\n required_posting_auths: [account],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Wallet Operations\n * Operations for managing tokens, savings, vesting, and conversions\n */\n\n/**\n * Builds a transfer operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Transfer operation\n */\nexport function buildTransferOp(\n from: string,\n to: string,\n amount: string,\n memo: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferOp] Missing required parameters\");\n }\n\n return [\n \"transfer\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n },\n ];\n}\n\n/**\n * Builds multiple transfer operations for multiple recipients.\n * @param from - Sender account\n * @param destinations - Comma or space separated list of recipient accounts\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Array of transfer operations\n */\nexport function buildMultiTransferOps(\n from: string,\n destinations: string,\n amount: string,\n memo: string\n): Operation[] {\n if (!from || !destinations || !amount) {\n throw new Error(\"[SDK][buildMultiTransferOps] Missing required parameters\");\n }\n\n // Split the destination input into an array of usernames\n const destArray = destinations\n .trim()\n .split(/[\\s,]+/)\n .filter(Boolean);\n\n // Create a transfer operation for each destination username\n return destArray.map((dest) =>\n buildTransferOp(from, dest.trim(), amount, memo)\n );\n}\n\n/**\n * Builds a recurrent transfer operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @param recurrence - Recurrence in hours\n * @param executions - Number of executions (2 = executes twice)\n * @returns Recurrent transfer operation\n */\nexport function buildRecurrentTransferOp(\n from: string,\n to: string,\n amount: string,\n memo: string,\n recurrence: number,\n executions: number\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildRecurrentTransferOp] Missing required parameters\");\n }\n if (recurrence < 24) {\n throw new Error(\"[SDK][buildRecurrentTransferOp] Recurrence must be at least 24 hours\");\n }\n\n return [\n \"recurrent_transfer\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n recurrence,\n executions,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds a transfer to savings operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @returns Transfer to savings operation\n */\nexport function buildTransferToSavingsOp(\n from: string,\n to: string,\n amount: string,\n memo: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferToSavingsOp] Missing required parameters\");\n }\n\n return [\n \"transfer_to_savings\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n },\n ];\n}\n\n/**\n * Builds a transfer from savings operation.\n * @param from - Sender account\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"1.000 HIVE\")\n * @param memo - Transfer memo\n * @param requestId - Unique request ID (use timestamp)\n * @returns Transfer from savings operation\n */\nexport function buildTransferFromSavingsOp(\n from: string,\n to: string,\n amount: string,\n memo: string,\n requestId: number\n): Operation {\n if (!from || !to || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildTransferFromSavingsOp] Missing required parameters\");\n }\n\n return [\n \"transfer_from_savings\",\n {\n from,\n to,\n amount,\n memo: memo || \"\",\n request_id: requestId,\n },\n ];\n}\n\n/**\n * Builds a cancel transfer from savings operation.\n * @param from - Account that initiated the savings withdrawal\n * @param requestId - Request ID to cancel\n * @returns Cancel transfer from savings operation\n */\nexport function buildCancelTransferFromSavingsOp(\n from: string,\n requestId: number\n): Operation {\n if (!from || requestId === undefined) {\n throw new Error(\"[SDK][buildCancelTransferFromSavingsOp] Missing required parameters\");\n }\n\n return [\n \"cancel_transfer_from_savings\",\n {\n from,\n request_id: requestId,\n },\n ];\n}\n\n/**\n * Builds operations to claim savings interest.\n * Creates a transfer_from_savings and immediately cancels it to claim interest.\n * @param from - Account claiming interest\n * @param to - Receiver account\n * @param amount - Amount with asset symbol (e.g., \"0.001 HIVE\")\n * @param memo - Transfer memo\n * @param requestId - Unique request ID\n * @returns Array of operations [transfer_from_savings, cancel_transfer_from_savings]\n */\nexport function buildClaimInterestOps(\n from: string,\n to: string,\n amount: string,\n memo: string,\n requestId: number\n): Operation[] {\n if (!from || !to || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildClaimInterestOps] Missing required parameters\");\n }\n\n return [\n buildTransferFromSavingsOp(from, to, amount, memo, requestId),\n buildCancelTransferFromSavingsOp(from, requestId),\n ];\n}\n\n/**\n * Builds a transfer to vesting operation (power up).\n * @param from - Account sending HIVE\n * @param to - Account receiving Hive Power\n * @param amount - Amount with HIVE symbol (e.g., \"1.000 HIVE\")\n * @returns Transfer to vesting operation\n */\nexport function buildTransferToVestingOp(\n from: string,\n to: string,\n amount: string\n): Operation {\n if (!from || !to || !amount) {\n throw new Error(\"[SDK][buildTransferToVestingOp] Missing required parameters\");\n }\n\n return [\n \"transfer_to_vesting\",\n {\n from,\n to,\n amount,\n },\n ];\n}\n\n/**\n * Builds a withdraw vesting operation (power down).\n * @param account - Account withdrawing vesting\n * @param vestingShares - Amount of VESTS to withdraw (e.g., \"1.000000 VESTS\")\n * @returns Withdraw vesting operation\n */\nexport function buildWithdrawVestingOp(\n account: string,\n vestingShares: string\n): Operation {\n if (!account || !vestingShares) {\n throw new Error(\"[SDK][buildWithdrawVestingOp] Missing required parameters\");\n }\n\n return [\n \"withdraw_vesting\",\n {\n account,\n vesting_shares: vestingShares,\n },\n ];\n}\n\n/**\n * Builds a delegate vesting shares operation (HP delegation).\n * @param delegator - Account delegating HP\n * @param delegatee - Account receiving HP delegation\n * @param vestingShares - Amount of VESTS to delegate (e.g., \"1000.000000 VESTS\")\n * @returns Delegate vesting shares operation\n */\nexport function buildDelegateVestingSharesOp(\n delegator: string,\n delegatee: string,\n vestingShares: string\n): Operation {\n if (!delegator || !delegatee || !vestingShares) {\n throw new Error(\"[SDK][buildDelegateVestingSharesOp] Missing required parameters\");\n }\n\n return [\n \"delegate_vesting_shares\",\n {\n delegator,\n delegatee,\n vesting_shares: vestingShares,\n },\n ];\n}\n\n/**\n * Builds a set withdraw vesting route operation.\n * @param fromAccount - Account withdrawing vesting\n * @param toAccount - Account receiving withdrawn vesting\n * @param percent - Percentage to route (0-10000, where 10000 = 100%)\n * @param autoVest - Auto convert to vesting\n * @returns Set withdraw vesting route operation\n */\nexport function buildSetWithdrawVestingRouteOp(\n fromAccount: string,\n toAccount: string,\n percent: number,\n autoVest: boolean\n): Operation {\n if (!fromAccount || !toAccount || percent === undefined) {\n throw new Error(\"[SDK][buildSetWithdrawVestingRouteOp] Missing required parameters\");\n }\n if (percent < 0 || percent > 10000) {\n throw new Error(\"[SDK][buildSetWithdrawVestingRouteOp] Percent must be between 0 and 10000\");\n }\n\n return [\n \"set_withdraw_vesting_route\",\n {\n from_account: fromAccount,\n to_account: toAccount,\n percent,\n auto_vest: autoVest,\n },\n ];\n}\n\n/**\n * Builds a convert operation (HBD to HIVE).\n * @param owner - Account converting HBD\n * @param amount - Amount of HBD to convert (e.g., \"1.000 HBD\")\n * @param requestId - Unique request ID (use timestamp)\n * @returns Convert operation\n */\nexport function buildConvertOp(\n owner: string,\n amount: string,\n requestId: number\n): Operation {\n if (!owner || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildConvertOp] Missing required parameters\");\n }\n\n return [\n \"convert\",\n {\n owner,\n amount,\n requestid: requestId,\n },\n ];\n}\n\n/**\n * Builds a collateralized convert operation (HIVE to HBD via collateral).\n * @param owner - Account converting HIVE\n * @param amount - Amount of HIVE to convert (e.g., \"1.000 HIVE\")\n * @param requestId - Unique request ID (use timestamp)\n * @returns Collateralized convert operation\n */\nexport function buildCollateralizedConvertOp(\n owner: string,\n amount: string,\n requestId: number\n): Operation {\n if (!owner || !amount || requestId === undefined) {\n throw new Error(\"[SDK][buildCollateralizedConvertOp] Missing required parameters\");\n }\n\n return [\n \"collateralized_convert\",\n {\n owner,\n amount,\n requestid: requestId,\n },\n ];\n}\n\n/**\n * Builds a Hive Engine custom_json operation.\n * @param from - Account performing the operation\n * @param contractAction - Engine contract action (e.g., \"transfer\", \"stake\")\n * @param contractPayload - Payload for the contract action\n * @param contractName - Engine contract name (defaults to \"tokens\")\n * @returns Custom JSON operation\n */\nexport function buildEngineOp(\n from: string,\n contractAction: string,\n contractPayload: Record,\n contractName = \"tokens\"\n): Operation {\n return [\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [from],\n required_posting_auths: [],\n json: JSON.stringify({ contractName, contractAction, contractPayload }),\n }];\n}\n\n/**\n * Builds a scot_claim_token operation (posting authority).\n * @param account - Account claiming rewards\n * @param tokens - Array of token symbols to claim\n * @returns Custom JSON operation\n */\nexport function buildEngineClaimOp(\n account: string,\n tokens: string[]\n): Operation {\n return [\"custom_json\", {\n id: \"scot_claim_token\",\n required_auths: [],\n required_posting_auths: [account],\n json: JSON.stringify(tokens.map((symbol) => ({ symbol }))),\n }];\n}\n\n/**\n * Builds a delegate RC operation (custom_json).\n * @param from - Account delegating RC\n * @param delegatees - Single delegatee or comma-separated list\n * @param maxRc - Maximum RC to delegate (in mana units)\n * @returns Custom JSON operation for RC delegation\n */\nexport function buildDelegateRcOp(\n from: string,\n delegatees: string,\n maxRc: string | number\n): Operation {\n if (!from || !delegatees || maxRc === undefined) {\n throw new Error(\"[SDK][buildDelegateRcOp] Missing required parameters\");\n }\n\n const delegateeArray = delegatees.includes(\",\")\n ? delegatees.split(\",\").map((d) => d.trim())\n : [delegatees];\n\n return [\n \"custom_json\",\n {\n id: \"rc\",\n json: JSON.stringify([\n \"delegate_rc\",\n {\n from,\n delegatees: delegateeArray,\n max_rc: maxRc,\n },\n ]),\n required_auths: [],\n required_posting_auths: [from],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Social Operations\n * Operations for following, muting, and managing social relationships\n */\n\n/**\n * Builds a follow operation (custom_json).\n * @param follower - Account following\n * @param following - Account to follow\n * @returns Custom JSON operation for follow\n */\nexport function buildFollowOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildFollowOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [\"blog\"],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an unfollow operation (custom_json).\n * @param follower - Account unfollowing\n * @param following - Account to unfollow\n * @returns Custom JSON operation for unfollow\n */\nexport function buildUnfollowOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildUnfollowOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an ignore/mute operation (custom_json).\n * @param follower - Account ignoring\n * @param following - Account to ignore\n * @returns Custom JSON operation for ignore\n */\nexport function buildIgnoreOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildIgnoreOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"follow\",\n json: JSON.stringify([\n \"follow\",\n {\n follower,\n following,\n what: [\"ignore\"],\n },\n ]),\n required_auths: [],\n required_posting_auths: [follower],\n },\n ];\n}\n\n/**\n * Builds an unignore/unmute operation (custom_json).\n * @param follower - Account unignoring\n * @param following - Account to unignore\n * @returns Custom JSON operation for unignore\n */\nexport function buildUnignoreOp(follower: string, following: string): Operation {\n if (!follower || !following) {\n throw new Error(\"[SDK][buildUnignoreOp] Missing required parameters\");\n }\n\n return buildUnfollowOp(follower, following);\n}\n\n/**\n * Builds a Hive Notify set last read operation (custom_json).\n * @param username - Account setting last read\n * @param date - ISO date string (defaults to now)\n * @returns Array of custom JSON operations for setting last read\n */\nexport function buildSetLastReadOps(username: string, date?: string): Operation[] {\n if (!username) {\n throw new Error(\"[SDK][buildSetLastReadOps] Missing required parameters\");\n }\n\n const lastReadDate = date || new Date().toISOString().split(\".\")[0];\n\n const notifyOp: Operation = [\n \"custom_json\",\n {\n id: \"notify\",\n json: JSON.stringify([\"setLastRead\", { date: lastReadDate }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n\n const ecencyNotifyOp: Operation = [\n \"custom_json\",\n {\n id: \"ecency_notify\",\n json: JSON.stringify([\"setLastRead\", { date: lastReadDate }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n\n return [notifyOp, ecencyNotifyOp];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Governance Operations\n * Operations for witness voting, proposals, and proxy management\n */\n\n/**\n * Builds an account witness vote operation.\n * @param account - Account voting\n * @param witness - Witness account name\n * @param approve - True to approve, false to disapprove\n * @returns Account witness vote operation\n */\nexport function buildWitnessVoteOp(\n account: string,\n witness: string,\n approve: boolean\n): Operation {\n if (!account || !witness || approve === undefined) {\n throw new Error(\"[SDK][buildWitnessVoteOp] Missing required parameters\");\n }\n\n return [\n \"account_witness_vote\",\n {\n account,\n witness,\n approve,\n },\n ];\n}\n\n/**\n * Builds an account witness proxy operation.\n * @param account - Account setting proxy\n * @param proxy - Proxy account name (empty string to remove proxy)\n * @returns Account witness proxy operation\n */\nexport function buildWitnessProxyOp(account: string, proxy: string): Operation {\n if (!account || proxy === undefined) {\n throw new Error(\"[SDK][buildWitnessProxyOp] Missing required parameters\");\n }\n\n return [\n \"account_witness_proxy\",\n {\n account,\n proxy,\n },\n ];\n}\n\n/**\n * Payload for proposal creation\n */\nexport interface ProposalCreatePayload {\n receiver: string;\n subject: string;\n permlink: string;\n start: string;\n end: string;\n dailyPay: string;\n}\n\n/**\n * Builds a create proposal operation.\n * @param creator - Account creating the proposal\n * @param payload - Proposal details (must include start, end, and dailyPay)\n * @returns Create proposal operation\n */\nexport function buildProposalCreateOp(\n creator: string,\n payload: ProposalCreatePayload\n): Operation {\n // Validate required fields including start, end, and dailyPay\n if (\n !creator ||\n !payload.receiver ||\n !payload.subject ||\n !payload.permlink ||\n !payload.start ||\n !payload.end ||\n !payload.dailyPay\n ) {\n throw new Error(\"[SDK][buildProposalCreateOp] Missing required parameters\");\n }\n\n // Validate date format by attempting to parse them\n const startDate = new Date(payload.start);\n const endDate = new Date(payload.end);\n if (startDate.toString() === 'Invalid Date' || endDate.toString() === 'Invalid Date') {\n throw new Error(\n \"[SDK][buildProposalCreateOp] Invalid date format: start and end must be valid ISO date strings\"\n );\n }\n\n return [\n \"create_proposal\",\n {\n creator,\n receiver: payload.receiver,\n start_date: payload.start,\n end_date: payload.end,\n daily_pay: payload.dailyPay,\n subject: payload.subject,\n permlink: payload.permlink,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds an update proposal votes operation.\n * @param voter - Account voting\n * @param proposalIds - Array of proposal IDs\n * @param approve - True to approve, false to disapprove\n * @returns Update proposal votes operation\n */\nexport function buildProposalVoteOp(\n voter: string,\n proposalIds: number[],\n approve: boolean\n): Operation {\n if (!voter || !proposalIds || proposalIds.length === 0 || approve === undefined) {\n throw new Error(\"[SDK][buildProposalVoteOp] Missing required parameters\");\n }\n\n return [\n \"update_proposal_votes\",\n {\n voter,\n proposal_ids: proposalIds,\n approve,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds a remove proposal operation.\n * @param proposalOwner - Owner of the proposal\n * @param proposalIds - Array of proposal IDs to remove\n * @returns Remove proposal operation\n */\nexport function buildRemoveProposalOp(\n proposalOwner: string,\n proposalIds: number[]\n): Operation {\n if (!proposalOwner || !proposalIds || proposalIds.length === 0) {\n throw new Error(\"[SDK][buildRemoveProposalOp] Missing required parameters\");\n }\n\n return [\n \"remove_proposal\",\n {\n proposal_owner: proposalOwner,\n proposal_ids: proposalIds,\n extensions: [],\n },\n ];\n}\n\n/**\n * Builds an update proposal operation.\n * @param proposalId - Proposal ID to update (must be a valid number, including 0)\n * @param creator - Account that created the proposal\n * @param dailyPay - New daily pay amount\n * @param subject - New subject\n * @param permlink - New permlink\n * @returns Update proposal operation\n */\nexport function buildUpdateProposalOp(\n proposalId: number,\n creator: string,\n dailyPay: string,\n subject: string,\n permlink: string\n): Operation {\n // Validate proposalId properly - check for undefined/null instead of falsy\n // This allows proposalId of 0 which is a valid proposal ID\n if (\n proposalId === undefined ||\n proposalId === null ||\n typeof proposalId !== 'number' ||\n !creator ||\n !dailyPay ||\n !subject ||\n !permlink\n ) {\n throw new Error(\"[SDK][buildUpdateProposalOp] Missing required parameters\");\n }\n\n return [\n \"update_proposal\",\n {\n proposal_id: proposalId,\n creator,\n daily_pay: dailyPay,\n subject,\n permlink,\n extensions: [],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Community Operations\n * Operations for managing Hive communities\n */\n\n/**\n * Builds a subscribe to community operation (custom_json).\n * @param username - Account subscribing\n * @param community - Community name (e.g., \"hive-123456\")\n * @returns Custom JSON operation for subscribe\n */\nexport function buildSubscribeOp(username: string, community: string): Operation {\n if (!username || !community) {\n throw new Error(\"[SDK][buildSubscribeOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"subscribe\", { community }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds an unsubscribe from community operation (custom_json).\n * @param username - Account unsubscribing\n * @param community - Community name (e.g., \"hive-123456\")\n * @returns Custom JSON operation for unsubscribe\n */\nexport function buildUnsubscribeOp(username: string, community: string): Operation {\n if (!username || !community) {\n throw new Error(\"[SDK][buildUnsubscribeOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"unsubscribe\", { community }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a set user role in community operation (custom_json).\n * @param username - Account setting the role (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Account to set role for\n * @param role - Role name (e.g., \"admin\", \"mod\", \"member\", \"guest\")\n * @returns Custom JSON operation for setRole\n */\nexport function buildSetRoleOp(\n username: string,\n community: string,\n account: string,\n role: string\n): Operation {\n if (!username || !community || !account || !role) {\n throw new Error(\n `[SDK][buildSetRoleOp] Missing required parameters: username=${username}, community=${community}, account=${account}, role=${role}`\n );\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"setRole\", { community, account, role }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Community properties for update\n */\nexport interface CommunityProps {\n title: string;\n about: string;\n lang: string;\n description: string;\n flag_text: string;\n is_nsfw: boolean;\n}\n\n/**\n * Builds an update community properties operation (custom_json).\n * @param username - Account updating (must be community admin)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param props - Properties to update\n * @returns Custom JSON operation for updateProps\n */\nexport function buildUpdateCommunityOp(\n username: string,\n community: string,\n props: CommunityProps\n): Operation {\n if (!username || !community || !props) {\n throw new Error(\"[SDK][buildUpdateCommunityOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"updateProps\", { community, props }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a pin/unpin post in community operation (custom_json).\n * @param username - Account pinning (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param pin - True to pin, false to unpin\n * @returns Custom JSON operation for pinPost/unpinPost\n */\nexport function buildPinPostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n pin: boolean\n): Operation {\n if (!username || !community || !account || !permlink || pin === undefined) {\n throw new Error(\"[SDK][buildPinPostOp] Missing required parameters\");\n }\n\n const action = pin ? \"pinPost\" : \"unpinPost\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, permlink }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a mute/unmute post in community operation (custom_json).\n * @param username - Account muting (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param notes - Mute reason/notes\n * @param mute - True to mute, false to unmute\n * @returns Custom JSON operation for mutePost/unmutePost\n */\nexport function buildMutePostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n notes: string,\n mute: boolean\n): Operation {\n if (\n !username ||\n !community ||\n !account ||\n !permlink ||\n mute === undefined\n ) {\n throw new Error(\"[SDK][buildMutePostOp] Missing required parameters\");\n }\n\n const action = mute ? \"mutePost\" : \"unmutePost\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, permlink, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a mute/unmute user in community operation (custom_json).\n * @param username - Account performing mute (must have permission)\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Account to mute/unmute\n * @param notes - Mute reason/notes\n * @param mute - True to mute, false to unmute\n * @returns Custom JSON operation for muteUser/unmuteUser\n */\nexport function buildMuteUserOp(\n username: string,\n community: string,\n account: string,\n notes: string,\n mute: boolean\n): Operation {\n if (!username || !community || !account || mute === undefined) {\n throw new Error(\"[SDK][buildMuteUserOp] Missing required parameters\");\n }\n\n const action = mute ? \"muteUser\" : \"unmuteUser\";\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([action, { community, account, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n\n/**\n * Builds a flag post in community operation (custom_json).\n * @param username - Account flagging\n * @param community - Community name (e.g., \"hive-123456\")\n * @param account - Post author\n * @param permlink - Post permlink\n * @param notes - Flag reason/notes\n * @returns Custom JSON operation for flagPost\n */\nexport function buildFlagPostOp(\n username: string,\n community: string,\n account: string,\n permlink: string,\n notes: string\n): Operation {\n if (!username || !community || !account || !permlink) {\n throw new Error(\"[SDK][buildFlagPostOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"community\",\n json: JSON.stringify([\"flagPost\", { community, account, permlink, notes }]),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Market Operations\n * Operations for trading on the internal Hive market\n */\n\n/**\n * Transaction type for buy/sell operations\n */\nexport enum BuySellTransactionType {\n Buy = \"buy\",\n Sell = \"sell\",\n}\n\n/**\n * Order ID prefix for different order types\n */\nexport enum OrderIdPrefix {\n EMPTY = \"\",\n SWAP = \"9\",\n}\n\n/**\n * Builds a limit order create operation.\n * @param owner - Account creating the order\n * @param amountToSell - Amount and asset to sell\n * @param minToReceive - Minimum amount and asset to receive\n * @param fillOrKill - If true, order must be filled immediately or cancelled\n * @param expiration - Expiration date (ISO string)\n * @param orderId - Unique order ID\n * @returns Limit order create operation\n */\nexport function buildLimitOrderCreateOp(\n owner: string,\n amountToSell: string,\n minToReceive: string,\n fillOrKill: boolean,\n expiration: string,\n orderId: number\n): Operation {\n if (!owner || !amountToSell || !minToReceive || !expiration || orderId === undefined) {\n throw new Error(\"[SDK][buildLimitOrderCreateOp] Missing required parameters\");\n }\n\n return [\n \"limit_order_create\",\n {\n owner,\n orderid: orderId,\n amount_to_sell: amountToSell,\n min_to_receive: minToReceive,\n fill_or_kill: fillOrKill,\n expiration,\n },\n ];\n}\n\n/**\n * Helper to format number to 3 decimal places\n */\nfunction formatNumber(value: number, decimals: number = 3): string {\n return value.toFixed(decimals);\n}\n\n/**\n * Builds a limit order create operation with automatic formatting.\n * This is a convenience method that handles buy/sell logic and formatting.\n *\n * For Buy orders: You're buying HIVE with HBD\n * - amountToSell: HBD amount you're spending\n * - minToReceive: HIVE amount you want to receive\n *\n * For Sell orders: You're selling HIVE for HBD\n * - amountToSell: HIVE amount you're selling\n * - minToReceive: HBD amount you want to receive\n *\n * @param owner - Account creating the order\n * @param amountToSell - Amount to sell (number)\n * @param minToReceive - Minimum to receive (number)\n * @param orderType - Buy or Sell\n * @param idPrefix - Order ID prefix\n * @returns Limit order create operation\n */\nexport function buildLimitOrderCreateOpWithType(\n owner: string,\n amountToSell: number,\n minToReceive: number,\n orderType: BuySellTransactionType,\n idPrefix: OrderIdPrefix = OrderIdPrefix.EMPTY\n): Operation {\n // Validate numeric inputs\n if (\n !owner ||\n orderType === undefined ||\n !Number.isFinite(amountToSell) ||\n amountToSell <= 0 ||\n !Number.isFinite(minToReceive) ||\n minToReceive <= 0\n ) {\n throw new Error(\"[SDK][buildLimitOrderCreateOpWithType] Missing or invalid parameters\");\n }\n\n // Calculate expiration (27 days from now)\n const expiration = new Date(Date.now());\n expiration.setDate(expiration.getDate() + 27);\n const expirationStr = expiration.toISOString().split(\".\")[0];\n\n // Generate order ID\n const orderId = Number(\n `${idPrefix}${Math.floor(Date.now() / 1000)\n .toString()\n .slice(2)}`\n );\n\n // Format amounts based on order type\n // Buy: Sell HBD to buy HIVE\n // Sell: Sell HIVE to buy HBD\n const formattedAmountToSell =\n orderType === BuySellTransactionType.Buy\n ? `${formatNumber(amountToSell, 3)} HBD`\n : `${formatNumber(amountToSell, 3)} HIVE`;\n\n const formattedMinToReceive =\n orderType === BuySellTransactionType.Buy\n ? `${formatNumber(minToReceive, 3)} HIVE`\n : `${formatNumber(minToReceive, 3)} HBD`;\n\n return buildLimitOrderCreateOp(\n owner,\n formattedAmountToSell,\n formattedMinToReceive,\n false,\n expirationStr,\n orderId\n );\n}\n\n/**\n * Builds a limit order cancel operation.\n * @param owner - Account cancelling the order\n * @param orderId - Order ID to cancel\n * @returns Limit order cancel operation\n */\nexport function buildLimitOrderCancelOp(owner: string, orderId: number): Operation {\n if (!owner || orderId === undefined) {\n throw new Error(\"[SDK][buildLimitOrderCancelOp] Missing required parameters\");\n }\n\n return [\n \"limit_order_cancel\",\n {\n owner,\n orderid: orderId,\n },\n ];\n}\n\n/**\n * Builds a claim reward balance operation.\n * @param account - Account claiming rewards\n * @param rewardHive - HIVE reward to claim (e.g., \"0.000 HIVE\")\n * @param rewardHbd - HBD reward to claim (e.g., \"0.000 HBD\")\n * @param rewardVests - VESTS reward to claim (e.g., \"0.000000 VESTS\")\n * @returns Claim reward balance operation\n */\nexport function buildClaimRewardBalanceOp(\n account: string,\n rewardHive: string,\n rewardHbd: string,\n rewardVests: string\n): Operation {\n if (!account || !rewardHive || !rewardHbd || !rewardVests) {\n throw new Error(\"[SDK][buildClaimRewardBalanceOp] Missing required parameters\");\n }\n\n return [\n \"claim_reward_balance\",\n {\n account,\n reward_hive: rewardHive,\n reward_hbd: rewardHbd,\n reward_vests: rewardVests,\n },\n ];\n}\n","import type { Operation, Authority } from \"../../../hive-tx\";\n\nexport type { Authority };\n\n/**\n * Account Operations\n * Operations for managing accounts, keys, and permissions\n */\n\n/**\n * Builds an account update operation.\n * @param account - Account name\n * @param owner - Owner authority (optional)\n * @param active - Active authority (optional)\n * @param posting - Posting authority (optional)\n * @param memoKey - Memo public key\n * @param jsonMetadata - Account JSON metadata\n * @returns Account update operation\n */\nexport function buildAccountUpdateOp(\n account: string,\n owner: Authority | undefined,\n active: Authority | undefined,\n posting: Authority | undefined,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !memoKey) {\n throw new Error(\"[SDK][buildAccountUpdateOp] Missing required parameters\");\n }\n\n return [\n \"account_update\",\n {\n account,\n owner,\n active,\n posting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds an account update2 operation (for posting_json_metadata).\n * @param account - Account name\n * @param jsonMetadata - Account JSON metadata (legacy, usually empty)\n * @param postingJsonMetadata - Posting JSON metadata string\n * @param extensions - Extensions array\n * @returns Account update2 operation\n */\nexport function buildAccountUpdate2Op(\n account: string,\n jsonMetadata: string,\n postingJsonMetadata: string,\n extensions: any[]\n): Operation {\n if (!account || postingJsonMetadata === undefined) {\n throw new Error(\"[SDK][buildAccountUpdate2Op] Missing required parameters\");\n }\n\n return [\n \"account_update2\",\n {\n account,\n json_metadata: jsonMetadata || \"\",\n posting_json_metadata: postingJsonMetadata,\n extensions: (extensions || []) as [],\n },\n ];\n}\n\n/**\n * Public keys for account creation\n */\nexport interface AccountKeys {\n ownerPublicKey: string;\n activePublicKey: string;\n postingPublicKey: string;\n memoPublicKey: string;\n}\n\n/**\n * Builds an account create operation.\n * @param creator - Creator account name\n * @param newAccountName - New account name\n * @param keys - Public keys for the new account\n * @param fee - Creation fee (e.g., \"3.000 HIVE\")\n * @returns Account create operation\n */\nexport function buildAccountCreateOp(\n creator: string,\n newAccountName: string,\n keys: AccountKeys,\n fee: string\n): Operation {\n if (!creator || !newAccountName || !keys || !fee) {\n throw new Error(\"[SDK][buildAccountCreateOp] Missing required parameters\");\n }\n\n const owner: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.ownerPublicKey, 1]],\n };\n\n const active: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.activePublicKey, 1]],\n };\n\n const posting: Authority = {\n weight_threshold: 1,\n account_auths: [[\"ecency.app\", 1]],\n key_auths: [[keys.postingPublicKey, 1]],\n };\n\n return [\n \"account_create\",\n {\n creator,\n new_account_name: newAccountName,\n owner,\n active,\n posting,\n memo_key: keys.memoPublicKey,\n json_metadata: \"\",\n fee,\n },\n ] satisfies Operation;\n}\n\n/**\n * Builds a create claimed account operation (using account creation tokens).\n * @param creator - Creator account name\n * @param newAccountName - New account name\n * @param keys - Public keys for the new account\n * @returns Create claimed account operation\n */\nexport function buildCreateClaimedAccountOp(\n creator: string,\n newAccountName: string,\n keys: AccountKeys\n): Operation {\n if (!creator || !newAccountName || !keys) {\n throw new Error(\"[SDK][buildCreateClaimedAccountOp] Missing required parameters\");\n }\n\n const owner: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.ownerPublicKey, 1]],\n };\n\n const active: Authority = {\n weight_threshold: 1,\n account_auths: [],\n key_auths: [[keys.activePublicKey, 1]],\n };\n\n const posting: Authority = {\n weight_threshold: 1,\n account_auths: [[\"ecency.app\", 1]],\n key_auths: [[keys.postingPublicKey, 1]],\n };\n\n return [\n \"create_claimed_account\",\n {\n creator,\n new_account_name: newAccountName,\n owner,\n active,\n posting,\n memo_key: keys.memoPublicKey,\n json_metadata: \"\",\n extensions: [] as [],\n },\n ];\n}\n\n/**\n * Builds a claim account operation.\n * @param creator - Account claiming the token\n * @param fee - Fee for claiming (usually \"0.000 HIVE\" for RC-based claims)\n * @returns Claim account operation\n */\nexport function buildClaimAccountOp(creator: string, fee: string): Operation {\n if (!creator || !fee) {\n throw new Error(\"[SDK][buildClaimAccountOp] Missing required parameters\");\n }\n\n return [\n \"claim_account\",\n {\n creator,\n fee,\n extensions: [] as [],\n },\n ];\n}\n\n/**\n * Builds an operation to grant posting permission to another account.\n * Helper that modifies posting authority to add an account.\n * @param account - Account granting permission\n * @param currentPosting - Current posting authority\n * @param grantedAccount - Account to grant permission to\n * @param weightThreshold - Weight threshold of the granted account\n * @param memoKey - Memo public key (required by Hive blockchain)\n * @param jsonMetadata - Account JSON metadata (required by Hive blockchain)\n * @returns Account update operation with modified posting authority\n */\nexport function buildGrantPostingPermissionOp(\n account: string,\n currentPosting: Authority,\n grantedAccount: string,\n weightThreshold: number,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !currentPosting || !grantedAccount || !memoKey) {\n throw new Error(\"[SDK][buildGrantPostingPermissionOp] Missing required parameters\");\n }\n\n // Find existing account or create new entry to prevent duplicates\n const existingIndex = currentPosting.account_auths.findIndex(\n ([acc]) => acc === grantedAccount\n );\n\n const newAccountAuths = [...currentPosting.account_auths];\n if (existingIndex >= 0) {\n // Update existing entry with new weight\n newAccountAuths[existingIndex] = [grantedAccount, weightThreshold];\n } else {\n // Add new entry\n newAccountAuths.push([grantedAccount, weightThreshold]);\n }\n\n const newPosting: Authority = {\n ...currentPosting,\n account_auths: newAccountAuths,\n };\n\n // Sort account_auths alphabetically for consistency\n newPosting.account_auths.sort((a, b) => (a[0] > b[0] ? 1 : -1));\n\n return [\n \"account_update\",\n {\n account,\n posting: newPosting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds an operation to revoke posting permission from an account.\n * Helper that modifies posting authority to remove an account.\n * @param account - Account revoking permission\n * @param currentPosting - Current posting authority\n * @param revokedAccount - Account to revoke permission from\n * @param memoKey - Memo public key (required by Hive blockchain)\n * @param jsonMetadata - Account JSON metadata (required by Hive blockchain)\n * @returns Account update operation with modified posting authority\n */\nexport function buildRevokePostingPermissionOp(\n account: string,\n currentPosting: Authority,\n revokedAccount: string,\n memoKey: string,\n jsonMetadata: string\n): Operation {\n if (!account || !currentPosting || !revokedAccount || !memoKey) {\n throw new Error(\"[SDK][buildRevokePostingPermissionOp] Missing required parameters\");\n }\n\n const newPosting: Authority = {\n ...currentPosting,\n account_auths: currentPosting.account_auths.filter(\n ([acc]) => acc !== revokedAccount\n ),\n };\n\n return [\n \"account_update\",\n {\n account,\n posting: newPosting,\n memo_key: memoKey,\n json_metadata: jsonMetadata,\n },\n ];\n}\n\n/**\n * Builds a change recovery account operation.\n * @param accountToRecover - Account to change recovery account for\n * @param newRecoveryAccount - New recovery account name\n * @param extensions - Extensions array\n * @returns Change recovery account operation\n */\nexport function buildChangeRecoveryAccountOp(\n accountToRecover: string,\n newRecoveryAccount: string,\n extensions: any[] = []\n): Operation {\n if (!accountToRecover || !newRecoveryAccount) {\n throw new Error(\"[SDK][buildChangeRecoveryAccountOp] Missing required parameters\");\n }\n\n return [\n \"change_recovery_account\",\n {\n account_to_recover: accountToRecover,\n new_recovery_account: newRecoveryAccount,\n extensions: extensions as [],\n },\n ];\n}\n\n/**\n * Builds a request account recovery operation.\n * @param recoveryAccount - Recovery account performing the recovery\n * @param accountToRecover - Account to recover\n * @param newOwnerAuthority - New owner authority\n * @param extensions - Extensions array\n * @returns Request account recovery operation\n */\nexport function buildRequestAccountRecoveryOp(\n recoveryAccount: string,\n accountToRecover: string,\n newOwnerAuthority: Authority,\n extensions: any[] = []\n): Operation {\n if (!recoveryAccount || !accountToRecover || !newOwnerAuthority) {\n throw new Error(\"[SDK][buildRequestAccountRecoveryOp] Missing required parameters\");\n }\n\n return [\n \"request_account_recovery\",\n {\n recovery_account: recoveryAccount,\n account_to_recover: accountToRecover,\n new_owner_authority: newOwnerAuthority,\n extensions: extensions as [],\n },\n ];\n}\n\n/**\n * Builds a recover account operation.\n * @param accountToRecover - Account to recover\n * @param newOwnerAuthority - New owner authority\n * @param recentOwnerAuthority - Recent owner authority (for proof)\n * @param extensions - Extensions array\n * @returns Recover account operation\n */\nexport function buildRecoverAccountOp(\n accountToRecover: string,\n newOwnerAuthority: Authority,\n recentOwnerAuthority: Authority,\n extensions: any[] = []\n): Operation {\n if (!accountToRecover || !newOwnerAuthority || !recentOwnerAuthority) {\n throw new Error(\"[SDK][buildRecoverAccountOp] Missing required parameters\");\n }\n\n return [\n \"recover_account\",\n {\n account_to_recover: accountToRecover,\n new_owner_authority: newOwnerAuthority,\n recent_owner_authority: recentOwnerAuthority,\n extensions: extensions as [],\n },\n ];\n}\n","import type { Operation } from \"../../../hive-tx\";\n\n/**\n * Ecency-Specific Operations\n * Custom operations for Ecency platform features (Points, Boost, Promote, etc.)\n */\n\n/**\n * Builds an Ecency Boost Plus subscription operation (custom_json).\n * @param user - User account\n * @param account - Account to subscribe\n * @param duration - Subscription duration in days (must be a valid finite number)\n * @returns Custom JSON operation for boost plus\n */\nexport function buildBoostPlusOp(\n user: string,\n account: string,\n duration: number\n): Operation {\n // Validate required parameters and ensure duration is a finite number (reject NaN, Infinity)\n if (!user || !account || !Number.isFinite(duration)) {\n throw new Error(\"[SDK][buildBoostPlusOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_boost_plus\",\n json: JSON.stringify({\n user,\n account,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds an Ecency RC top-up operation (custom_json): a short-term, RC-only\n * delegation to the user's OWN account, paid for with Ecency Points. Distinct\n * from Boost Plus (which delegates Hive Power). The RC amount is fixed\n * server-side, so the user only chooses a duration. Signed with active\n * authority because it spends Points. The actual on-chain `delegate_rc` is\n * broadcast by the Ecency relay account, not here.\n * @param user - User account (payer and recipient of the RC)\n * @param duration - Delegation duration in days (must be a valid finite number)\n * @returns Custom JSON operation for the RC top-up\n */\nexport function buildRcDelegationOp(user: string, duration: number): Operation {\n if (!user || !Number.isInteger(duration) || duration <= 0) {\n throw new Error(\"[SDK][buildRcDelegationOp] Missing or invalid parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_rc_delegation\",\n json: JSON.stringify({\n user,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds an Ecency promote operation (custom_json).\n * @param user - User account\n * @param author - Post author\n * @param permlink - Post permlink\n * @param duration - Promotion duration in days (must be a valid finite number)\n * @returns Custom JSON operation for promote\n */\nexport function buildPromoteOp(\n user: string,\n author: string,\n permlink: string,\n duration: number\n): Operation {\n // Validate required parameters and ensure duration is a finite number (reject NaN, Infinity)\n if (!user || !author || !permlink || !Number.isFinite(duration)) {\n throw new Error(\"[SDK][buildPromoteOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_promote\",\n json: JSON.stringify({\n user,\n author,\n permlink,\n duration,\n }),\n required_auths: [user],\n required_posting_auths: [],\n },\n ];\n}\n\nconst CURATION_REASONS = [\"quality\", \"underrated\", \"newcomer\", \"other\"] as const;\ntype CurationRecommendReason = (typeof CURATION_REASONS)[number];\n\n/**\n * Builds a curation recommendation operation (custom_json, posting authority).\n * The desk indexes `ecency_curation` ops from the chain; there is no write route.\n * @param recommender - Account recommending the post (signs with posting)\n * @param author - Post author\n * @param permlink - Post permlink\n * @param reason - One of quality, underrated, newcomer, other (defaults to quality)\n * @returns Custom JSON operation with id \"ecency_curation\"\n */\nexport function buildCurationRecommendOp(\n recommender: string,\n author: string,\n permlink: string,\n reason: CurationRecommendReason = \"quality\"\n): Operation {\n if (!recommender || !author || !permlink) {\n throw new Error(\"[SDK][buildCurationRecommendOp] Missing required parameters\");\n }\n if (!CURATION_REASONS.includes(reason)) {\n throw new Error(\"[SDK][buildCurationRecommendOp] Unknown reason\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_curation\",\n json: JSON.stringify({\n v: 1,\n op: \"recommend\",\n author,\n permlink,\n reason,\n }),\n required_auths: [],\n required_posting_auths: [recommender],\n },\n ];\n}\n\n/**\n * Builds a curation recommendation withdrawal (custom_json, posting authority).\n * @param recommender - Account withdrawing its recommendation\n * @param author - Post author\n * @param permlink - Post permlink\n * @returns Custom JSON operation with id \"ecency_curation\" and op \"unrecommend\"\n */\nexport function buildCurationUnrecommendOp(\n recommender: string,\n author: string,\n permlink: string\n): Operation {\n if (!recommender || !author || !permlink) {\n throw new Error(\"[SDK][buildCurationUnrecommendOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_curation\",\n json: JSON.stringify({\n v: 1,\n op: \"unrecommend\",\n author,\n permlink,\n }),\n required_auths: [],\n required_posting_auths: [recommender],\n },\n ];\n}\n\n/**\n * Builds an Ecency point transfer operation (custom_json).\n * @param sender - Sender account\n * @param receiver - Receiver account\n * @param amount - Amount to transfer\n * @param memo - Transfer memo\n * @returns Custom JSON operation for point transfer\n */\nexport function buildPointTransferOp(\n sender: string,\n receiver: string,\n amount: string,\n memo: string\n): Operation {\n if (!sender || !receiver || !amount) {\n throw new Error(\"[SDK][buildPointTransferOp] Missing required parameters\");\n }\n\n // Normalize \"POINTS\" to \"POINT\" — backend expects singular form\n const normalizedAmount = amount.replace(/POINTS\\b/, \"POINT\");\n\n return [\n \"custom_json\",\n {\n id: \"ecency_point_transfer\",\n json: JSON.stringify({\n sender,\n receiver,\n amount: normalizedAmount,\n memo: memo || \"\",\n }),\n required_auths: [sender],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds multiple Ecency point transfer operations for multiple recipients.\n * @param sender - Sender account\n * @param destinations - Comma or space separated list of recipients\n * @param amount - Amount to transfer\n * @param memo - Transfer memo\n * @returns Array of custom JSON operations for point transfers\n */\nexport function buildMultiPointTransferOps(\n sender: string,\n destinations: string,\n amount: string,\n memo: string\n): Operation[] {\n if (!sender || !destinations || !amount) {\n throw new Error(\"[SDK][buildMultiPointTransferOps] Missing required parameters\");\n }\n\n // Split the destination input into an array of usernames\n const destArray = destinations\n .trim()\n .split(/[\\s,]+/)\n .filter(Boolean);\n\n // Validate parsed destinations\n if (destArray.length === 0) {\n throw new Error(\"[SDK][buildMultiPointTransferOps] Missing valid destinations\");\n }\n\n // Create a point transfer operation for each destination\n return destArray.map((dest) =>\n buildPointTransferOp(sender, dest.trim(), amount, memo)\n );\n}\n\n/**\n * Builds an Ecency community rewards registration operation (custom_json).\n * @param name - Account name to register\n * @returns Custom JSON operation for community registration\n */\nexport function buildCommunityRegistrationOp(name: string): Operation {\n if (!name) {\n throw new Error(\"[SDK][buildCommunityRegistrationOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: \"ecency_registration\",\n json: JSON.stringify({\n name,\n }),\n required_auths: [name],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds a generic active authority custom_json operation.\n * Used for various Ecency operations that require active authority.\n * @param username - Account performing the operation\n * @param operationId - Custom JSON operation ID\n * @param json - JSON payload\n * @returns Custom JSON operation with active authority\n */\nexport function buildActiveCustomJsonOp(\n username: string,\n operationId: string,\n json: Record\n): Operation {\n if (!username || !operationId || !json) {\n throw new Error(\"[SDK][buildActiveCustomJsonOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: operationId,\n json: JSON.stringify(json),\n required_auths: [username],\n required_posting_auths: [],\n },\n ];\n}\n\n/**\n * Builds a generic posting authority custom_json operation.\n * Used for various operations that require posting authority.\n * @param username - Account performing the operation\n * @param operationId - Custom JSON operation ID\n * @param json - JSON payload\n * @returns Custom JSON operation with posting authority\n */\nexport function buildPostingCustomJsonOp(\n username: string,\n operationId: string,\n json: Record | any[]\n): Operation {\n if (!username || !operationId || !json) {\n throw new Error(\"[SDK][buildPostingCustomJsonOp] Missing required parameters\");\n }\n\n return [\n \"custom_json\",\n {\n id: operationId,\n json: JSON.stringify(json),\n required_auths: [],\n required_posting_auths: [username],\n },\n ];\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildFollowOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for following an account.\n */\nexport interface FollowPayload {\n /** Account to follow */\n following: string;\n}\n\n/**\n * React Query mutation hook for following an account.\n *\n * This mutation broadcasts a follow operation to the Hive blockchain,\n * adding the target account to the follower's \"blog\" follow list.\n *\n * @param username - The username of the follower (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates relationship cache to show updated follow status\n * - Invalidates account cache to refetch updated follower/following counts\n *\n * @example\n * ```typescript\n * const followMutation = useFollow(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Follow an account\n * followMutation.mutate({\n * following: 'alice'\n * });\n * ```\n */\nexport function useFollow(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"follow\"],\n username,\n ({ following }) => [\n buildFollowOp(username!, following)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.relations(username!, variables.following),\n QueryKeys.accounts.full(variables.following),\n QueryKeys.accounts.followCount(variables.following),\n QueryKeys.accounts.followCount(username!)\n ]);\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUnfollowOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for unfollowing an account.\n */\nexport interface UnfollowPayload {\n /** Account to unfollow */\n following: string;\n}\n\n/**\n * React Query mutation hook for unfollowing an account.\n *\n * This mutation broadcasts an unfollow operation to the Hive blockchain,\n * removing the target account from the follower's follow list.\n *\n * @param username - The username of the follower (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates relationship cache to show updated follow status\n * - Invalidates account cache to refetch updated follower/following counts\n *\n * @example\n * ```typescript\n * const unfollowMutation = useUnfollow(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Unfollow an account\n * unfollowMutation.mutate({\n * following: 'alice'\n * });\n * ```\n */\nexport function useUnfollow(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"unfollow\"],\n username,\n ({ following }) => [\n buildUnfollowOp(username!, following)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.relations(username!, variables.following),\n QueryKeys.accounts.full(variables.following),\n QueryKeys.accounts.followCount(variables.following),\n QueryKeys.accounts.followCount(username!)\n ]);\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\ninterface Payload {\n author: string;\n permlink: string;\n}\n\nexport function useBookmarkAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"bookmarks\", \"add\", username],\n mutationFn: async ({ author, permlink }: Payload) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Bookmarks] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks-add\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n author,\n permlink,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: () => {\n onSuccess();\n getQueryClient().invalidateQueries({\n queryKey: [\"accounts\", \"bookmarks\", username],\n });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useBookmarkDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"bookmarks\", \"delete\", username],\n mutationFn: async (bookmarkId: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Bookmarks] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/bookmarks-delete\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n id: bookmarkId,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: () => {\n onSuccess();\n getQueryClient().invalidateQueries({\n queryKey: [\"accounts\", \"bookmarks\", username],\n });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useAccountFavoriteAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorites\", \"add\", username],\n mutationFn: async (account: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Favorites] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-add\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n account,\n code,\n }),\n }\n );\n return response.json();\n },\n onSuccess: (_data, account) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favorites(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoritesInfinite(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavorite(username!, account) });\n },\n onError,\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation, InfiniteData } from \"@tanstack/react-query\";\nimport { AccountFavorite } from \"../../types\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useAccountFavoriteDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorites\", \"delete\", username],\n mutationFn: async (account: string) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Account][Favorites] – missing auth\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/favorites-delete\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n account,\n code,\n }),\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to delete favorite: ${response.status}`);\n }\n return response.json();\n },\n onMutate: async (account: string) => {\n if (!username) {\n return;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.accounts.favorites(username);\n const infinitePrefix = QueryKeys.accounts.favoritesInfinite(username);\n const checkKey = QueryKeys.accounts.checkFavorite(username, account);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n qc.cancelQueries({ queryKey: checkKey }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((f) => f.account !== account)\n );\n }\n\n const previousCheck = qc.getQueryData(checkKey);\n qc.setQueryData(checkKey, false);\n\n const infiniteQueries = qc.getQueriesData>>({\n queryKey: infinitePrefix,\n });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((f) => f.account !== account),\n })),\n });\n }\n }\n\n return { previousList, previousInfinite, previousCheck };\n },\n onSuccess: (_data, account) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favorites(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoritesInfinite(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavorite(username!, account) });\n },\n onError: (err, account, context) => {\n const qc = getQueryClient();\n if (context?.previousList) {\n qc.setQueryData(QueryKeys.accounts.favorites(username), context.previousList);\n }\n if (context?.previousInfinite) {\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n }\n if (context?.previousCheck !== undefined) {\n qc.setQueryData(\n QueryKeys.accounts.checkFavorite(username!, account),\n context.previousCheck\n );\n }\n onError(err);\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { AccountFavoriteTag } from \"../../types\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\n\nasync function favoriteTagRequest(\n route: \"favorite-tags-add\" | \"favorite-tags-delete\",\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n if (!username || !code) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – missing auth\");\n }\n // Normalised before it leaves the client, so the request, the cache key and the\n // stored row all agree on the spelling.\n const normalized = normalizeTag(tag);\n if (normalized === null) {\n throw new Error(\"[SDK][Accounts][FavoriteTags] – invalid tag\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/\" + route, {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n tag: normalized,\n code,\n }),\n });\n if (!response.ok) {\n throw new Error(`Failed to ${route === \"favorite-tags-add\" ? \"add\" : \"delete\"} favorite tag: ${response.status}`);\n }\n return (await response.json()) as AccountFavoriteTag[];\n}\n\n/** Follow a hashtag. Resolves to the updated list, newest first. */\nexport function addFavoriteTagRequest(\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n return favoriteTagRequest(\"favorite-tags-add\", username, code, tag);\n}\n\n/** Unfollow a hashtag. Resolves to the updated list, newest first. */\nexport function deleteFavoriteTagRequest(\n username: string | undefined,\n code: string | undefined,\n tag: string\n): Promise {\n return favoriteTagRequest(\"favorite-tags-delete\", username, code, tag);\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\nimport { addFavoriteTagRequest } from \"./requests\";\n\nexport function useFavoriteTagAdd(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"accounts\", \"favorite-tags\", \"add\", username],\n mutationFn: (tag: string) => addFavoriteTagRequest(username, code, tag),\n onSuccess: (_data, tag) => {\n onSuccess();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTags(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTagsInfinite(username) });\n qc.invalidateQueries({\n queryKey: QueryKeys.accounts.checkFavoriteTag(username!, normalizeTag(tag) ?? tag),\n });\n },\n onError,\n });\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { WrappedResponse } from \"@/modules/core/types\";\nimport { InfiniteData, QueryKey, useMutation, UseMutationOptions } from \"@tanstack/react-query\";\nimport { AccountFavoriteTag } from \"../../types\";\nimport { normalizeTag } from \"../../utils/normalize-tag\";\nimport { deleteFavoriteTagRequest } from \"./requests\";\n\ntype InfinitePages = InfiniteData>;\n\ninterface DeleteContext {\n normalized: string;\n previousList: AccountFavoriteTag[] | undefined;\n previousInfinite: Map;\n /** `undefined` when the check query had no cached value before the mutation. */\n previousCheck: boolean | undefined;\n}\n\n/**\n * The mutation options behind useFavoriteTagDelete, exported so the cache\n * behaviour can be exercised without rendering a hook.\n *\n * The tag is removed from the list, the infinite pages and the check entry\n * optimistically. On failure the snapshots are put back for an instant revert, and\n * then every touched key is invalidated anyway: a snapshot taken while another\n * delete was in flight still holds that other tag, so the restore alone would\n * resurrect it. The refetch is what makes the cache converge.\n */\nexport function favoriteTagDeleteMutationOptions(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n): UseMutationOptions {\n const invalidateAll = (normalized: string | undefined) => {\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTags(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.favoriteTagsInfinite(username) });\n if (normalized) {\n qc.invalidateQueries({ queryKey: QueryKeys.accounts.checkFavoriteTag(username!, normalized) });\n }\n };\n\n return {\n mutationKey: [\"accounts\", \"favorite-tags\", \"delete\", username],\n mutationFn: (tag: string) => deleteFavoriteTagRequest(username, code, tag),\n onMutate: async (tag: string) => {\n const normalized = normalizeTag(tag);\n if (!username || normalized === null) {\n return undefined;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.accounts.favoriteTags(username);\n const infinitePrefix = QueryKeys.accounts.favoriteTagsInfinite(username);\n const checkKey = QueryKeys.accounts.checkFavoriteTag(username, normalized);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n qc.cancelQueries({ queryKey: checkKey }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((f) => f.tag !== normalized)\n );\n }\n\n const previousCheck = qc.getQueryData(checkKey);\n qc.setQueryData(checkKey, false);\n\n const infiniteQueries = qc.getQueriesData({ queryKey: infinitePrefix });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((f) => f.tag !== normalized),\n })),\n });\n }\n }\n\n return { normalized, previousList, previousInfinite, previousCheck };\n },\n onSuccess: (_data, tag) => {\n onSuccess();\n invalidateAll(normalizeTag(tag) ?? undefined);\n },\n onError: (err, _tag, context) => {\n const qc = getQueryClient();\n if (context) {\n if (context.previousList) {\n qc.setQueryData(QueryKeys.accounts.favoriteTags(username), context.previousList);\n }\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n const checkKey = QueryKeys.accounts.checkFavoriteTag(username!, context.normalized);\n if (context.previousCheck !== undefined) {\n qc.setQueryData(checkKey, context.previousCheck);\n } else {\n // Nothing was cached before, so the optimistic `false` must not outlive\n // the failure as if it were an answer from the server.\n qc.removeQueries({ queryKey: checkKey, exact: true });\n }\n }\n invalidateAll(context?.normalized);\n onError(err);\n },\n };\n}\n\nexport function useFavoriteTagDelete(\n username: string | undefined,\n code: string | undefined,\n onSuccess: () => void,\n onError: (e: Error) => void\n) {\n return useMutation(favoriteTagDeleteMutationOptions(username, code, onSuccess, onError));\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport type { Authority } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\nexport interface Keys {\n owner: PrivateKey;\n active: PrivateKey;\n posting: PrivateKey;\n memo_key: PrivateKey;\n}\n\ninterface Payload {\n keepCurrent?: boolean;\n currentKey: PrivateKey;\n keys: Keys[];\n keysToRevoke?: string[]; // Deprecated: will be treated as revoking from all authorities\n keysToRevokeByAuthority?: Partial>; // Authority-specific revocation\n}\n\nexport function dedupeAndSortKeyAuths(\n existing: Authority[\"key_auths\"],\n additions: [string, number][]\n): Authority[\"key_auths\"] {\n const merged = new Map();\n\n existing.forEach(([key, weight]) => {\n merged.set(key.toString(), weight);\n });\n\n additions.forEach(([key, weight]) => {\n merged.set(key.toString(), weight);\n });\n\n return Array.from(merged.entries())\n .sort(([keyA], [keyB]) => keyA.localeCompare(keyB))\n .map(([key, weight]) => [key, weight] as [string, number]);\n}\n\ntype UpdateKeyAuthsOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountUpdateKeyAuths(\n username: string,\n options?: UpdateKeyAuthsOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"keys-update\", username],\n mutationFn: async ({\n keys,\n keepCurrent = false,\n currentKey,\n keysToRevoke = [],\n keysToRevokeByAuthority = {}\n }: Payload) => {\n if (keys.length === 0) {\n throw new Error(\n \"[SDK][Update password] – no new keys provided\"\n );\n }\n\n if (!accountData) {\n throw new Error(\n \"[SDK][Update password] – cannot update keys for anon user\"\n );\n }\n\n const prepareAuth = (keyName: keyof Keys) => {\n const auth: Authority = JSON.parse(JSON.stringify(accountData[keyName]));\n\n // Get keys to revoke for this specific authority\n const keysToRevokeForAuthority = keysToRevokeByAuthority[keyName] || [];\n // Fallback to global keysToRevoke for backwards compatibility\n const allKeysToRevoke = [\n ...keysToRevokeForAuthority,\n ...(keysToRevokeByAuthority[keyName] === undefined ? keysToRevoke : [])\n ];\n\n // Filter out keys to revoke from existing keys (authority-specific)\n const existingKeys = keepCurrent\n ? auth.key_auths.filter(([key]) => !allKeysToRevoke.includes(key.toString()))\n : [];\n\n auth.key_auths = dedupeAndSortKeyAuths(\n existingKeys,\n keys.map(\n (values, i) =>\n [values[keyName].createPublic().toString(), i + 1] as [\n string,\n number,\n ]\n )\n );\n\n return auth;\n };\n\n return broadcastOperations(\n [[\"account_update\", {\n account: username,\n json_metadata: accountData.json_metadata,\n owner: prepareAuth(\"owner\"),\n active: prepareAuth(\"active\"),\n posting: prepareAuth(\"posting\"),\n // Always use new memo key when adding new keys\n memo_key: keys[0].memo_key.createPublic().toString(),\n }]],\n currentKey\n );\n },\n ...options,\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { useAccountUpdateKeyAuths } from \"./use-account-update-key-auths\";\n\ninterface Payload {\n newPassword: string;\n currentPassword: string;\n keepCurrent?: boolean;\n}\n\n/**\n * Only native Hive and custom passwords could be updated here\n * Seed based password cannot be updated here, it will be in an account always for now\n */\ntype UpdatePasswordOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountUpdatePassword(\n username: string,\n options?: UpdatePasswordOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n const { mutateAsync: updateKeys } = useAccountUpdateKeyAuths(username);\n\n return useMutation({\n mutationKey: [\"accounts\", \"password-update\", username],\n mutationFn: async ({\n newPassword,\n currentPassword,\n keepCurrent,\n }: Payload) => {\n if (!accountData) {\n throw new Error(\n \"[SDK][Update password] – cannot update password for anon user\"\n );\n }\n const currentKey = PrivateKey.fromLogin(\n username,\n currentPassword,\n \"owner\"\n );\n\n return updateKeys({\n currentKey,\n keepCurrent,\n keys: [\n {\n owner: PrivateKey.fromLogin(username, newPassword, \"owner\"),\n active: PrivateKey.fromLogin(username, newPassword, \"active\"),\n posting: PrivateKey.fromLogin(username, newPassword, \"posting\"),\n memo_key: PrivateKey.fromLogin(username, newPassword, \"memo\"),\n },\n ],\n });\n },\n ...options,\n });\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n useQueryClient,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { FullAccount } from \"../types\";\nimport hs from \"hivesigner\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ntype SignType = \"key\" | \"keychain\" | \"hivesigner\";\n\ninterface CommonPayload {\n accountName: string;\n type: SignType;\n key?: PrivateKey;\n}\n\ntype RevokePostingOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n> & {\n hsCallbackUrl?: string;\n};\n\nexport function useAccountRevokePosting(\n username: string | undefined,\n options: RevokePostingOptions,\n auth?: AuthContextV2\n) {\n const queryClient = useQueryClient();\n\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"revoke-posting\", data?.name],\n mutationFn: async ({ accountName, type, key }: CommonPayload) => {\n if (!data) {\n throw new Error(\n \"[SDK][Accounts] – cannot revoke posting for anonymous user\"\n );\n }\n\n const posting = JSON.parse(JSON.stringify(data.posting)) as FullAccount[\"posting\"];\n\n posting.account_auths = posting.account_auths.filter(\n ([account]) => account !== accountName\n );\n\n const operationBody = {\n account: data.name,\n posting,\n memo_key: data.memo_key,\n json_metadata: data.json_metadata,\n };\n\n if (type === \"key\" && key) {\n return broadcastOperations([[\"account_update\", operationBody]], key);\n } else if (type === \"keychain\") {\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Accounts] – missing keychain broadcaster\");\n }\n return auth.adapter.broadcastWithKeychain(\n data.name,\n [[\"account_update\", operationBody]],\n \"active\"\n );\n } else {\n if (!options.hsCallbackUrl && process.env.NODE_ENV === \"development\") {\n console.warn(\"[SDK][Accounts] hsCallbackUrl not provided for HiveSigner revoke-posting; user will not be redirected after signing.\");\n }\n return hs.sendOperation(\n [\"account_update\", operationBody],\n options.hsCallbackUrl ? { callback: options.hsCallbackUrl } : {},\n () => {}\n );\n }\n },\n onError: options.onError,\n onSuccess: (resp, payload, ctx) => {\n (options.onSuccess as\n | ((data: unknown, variables: CommonPayload, context: unknown) => unknown)\n | undefined)?.(resp, payload, ctx);\n queryClient.setQueryData(\n getAccountFullQueryOptions(username).queryKey,\n (data) =>\n ({\n ...data,\n posting: {\n ...data?.posting,\n account_auths:\n data?.posting?.account_auths?.filter(\n ([account]) => account !== payload.accountName\n ) ?? [],\n },\n }) as FullAccount\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { PrivateKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ntype SignType = \"key\" | \"keychain\" | \"hivesigner\" | \"ecency\";\n\ninterface CommonPayload {\n accountName: string;\n type: SignType;\n key?: PrivateKey;\n email?: string;\n}\n\ntype UpdateRecoveryOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n> & {\n hsCallbackUrl?: string;\n};\n\nexport function useAccountUpdateRecovery(\n username: string | undefined,\n code: string | undefined,\n options: UpdateRecoveryOptions,\n auth?: AuthContextV2\n) {\n const { data } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"recovery\", data?.name],\n mutationFn: async ({ accountName, type, key, email }: CommonPayload) => {\n if (!data) {\n throw new Error(\n \"[SDK][Accounts] – cannot change recovery for anonymous user\"\n );\n }\n\n const operationBody = {\n account_to_recover: data.name,\n new_recovery_account: accountName,\n extensions: [] as [],\n };\n\n if (type === \"ecency\") {\n if (!code) {\n throw new Error(\"[SDK][Accounts] – missing access token\");\n }\n const fetchApi = getBoundFetch();\n\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/recoveries-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n code,\n email,\n publicKeys: [\n ...data.owner.key_auths,\n ...data.active.key_auths,\n ...data.posting.key_auths,\n data.memo_key,\n ],\n }),\n });\n\n // Raw fetch resolves on 4xx/5xx, so guard explicitly — otherwise the\n // caller's onSuccess shows a \"recovery updated\" toast on a failed request.\n // (The missing Content-Type header also made the backend skip JSON parsing.)\n if (!response.ok) {\n throw new Error(`[SDK][Accounts] Failed to add recovery: ${response.status}`);\n }\n\n return response;\n } else if (type === \"key\" && key) {\n return broadcastOperations(\n [[\"change_recovery_account\", operationBody]],\n key\n );\n } else if (type === \"keychain\") {\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Accounts] – missing keychain broadcaster\");\n }\n return auth.adapter.broadcastWithKeychain(data.name, [[\"change_recovery_account\", operationBody]], \"owner\");\n } else {\n if (!options.hsCallbackUrl && process.env.NODE_ENV === \"development\") {\n console.warn(\"[SDK][Accounts] hsCallbackUrl not provided for HiveSigner update-recovery; user will not be redirected after signing.\");\n }\n return hs.sendOperation(\n [\"change_recovery_account\", operationBody],\n options.hsCallbackUrl ? { callback: options.hsCallbackUrl } : {},\n () => {}\n );\n }\n },\n onError: options.onError,\n onSuccess: options.onSuccess,\n });\n}\n","import { PublicKey } from \"../../../hive-tx\";\nimport type { Authority } from \"../../../hive-tx\";\nimport { FullAccount } from \"../types\";\n\n/**\n * Check whether an authority would still meet its weight_threshold\n * after removing the given keys. This prevents revoking keys that\n * would leave an authority unable to sign (especially for multisig).\n */\nexport function canRevokeFromAuthority(\n auth: Authority,\n revokingKeyStrs: Set\n): boolean {\n const remainingWeight = auth.key_auths\n .filter(([key]) => !revokingKeyStrs.has(String(key)))\n .reduce((sum, [, weight]) => sum + weight, 0);\n\n // account_auths also contribute weight\n const accountWeight = (auth.account_auths ?? []).reduce(\n (sum: number, [, weight]: [string, number]) => sum + weight,\n 0\n );\n\n return (remainingWeight + accountWeight) >= auth.weight_threshold;\n}\n\n/**\n * Build an account_update operation that removes the given public keys\n * from the relevant authorities.\n *\n * Only includes the `owner` field when a revoking key actually exists\n * in the owner authority - omitting it allows active-level signing.\n *\n * Returns the operation payload (without the \"account_update\" tag) so\n * callers can wrap it as needed for their broadcast method.\n */\nexport function buildRevokeKeysOp(\n accountData: FullAccount,\n revokingKeys: PublicKey[]\n) {\n const revokingKeyStrs = new Set(revokingKeys.map((k) => k.toString()));\n\n const hasAnyKeyInAuth = (auth: Authority) =>\n auth.key_auths.some(\n ([key]: [string | PublicKey, number]) => revokingKeyStrs.has(String(key))\n );\n\n const prepareAuth = (auth: Authority): Authority => {\n const clone: Authority = JSON.parse(JSON.stringify(auth));\n clone.key_auths = clone.key_auths.filter(\n ([key]) => !revokingKeyStrs.has(key.toString())\n );\n return clone;\n };\n\n const needsOwnerUpdate = hasAnyKeyInAuth(accountData.owner);\n\n return {\n account: accountData.name,\n json_metadata: accountData.json_metadata,\n owner: needsOwnerUpdate ? prepareAuth(accountData.owner) : undefined,\n active: prepareAuth(accountData.active),\n posting: prepareAuth(accountData.posting),\n memo_key: accountData.memo_key\n };\n}\n","import { PrivateKey, PublicKey } from \"../../../hive-tx\";\nimport {\n useMutation,\n useQuery,\n type UseMutationOptions,\n} from \"@tanstack/react-query\";\nimport { getAccountFullQueryOptions } from \"../queries\";\nimport { buildRevokeKeysOp } from \"./build-revoke-keys-op\";\nimport { broadcastOperations } from \"@/modules/core/hive-tx\";\n\ninterface Payload {\n currentKey: PrivateKey;\n /** Keys to revoke. Accepts a single key or an array. */\n revokingKey: PublicKey | PublicKey[];\n}\n\n/**\n * Revoke one or more keys from an account on the Hive blockchain.\n *\n * When revoking keys that exist only in active/posting authorities,\n * the owner field is omitted from the operation so active-level\n * signing is sufficient.\n */\ntype RevokeKeyOptions = Pick<\n UseMutationOptions,\n \"onSuccess\" | \"onError\"\n>;\n\nexport function useAccountRevokeKey(\n username: string | undefined,\n options?: RevokeKeyOptions\n) {\n const { data: accountData } = useQuery(getAccountFullQueryOptions(username));\n\n return useMutation({\n mutationKey: [\"accounts\", \"revoke-key\", accountData?.name],\n mutationFn: async ({ currentKey, revokingKey }: Payload) => {\n if (!accountData) {\n throw new Error(\n \"[SDK][Revoke key] – cannot update keys for anon user\"\n );\n }\n\n const revokingKeys = Array.isArray(revokingKey) ? revokingKey : [revokingKey];\n const op = buildRevokeKeysOp(accountData, revokingKeys);\n\n return broadcastOperations([[\"account_update\", op]], currentKey);\n },\n ...options,\n });\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildClaimAccountOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for claiming account creation tokens.\n */\nexport interface ClaimAccountPayload {\n /** Creator account claiming the token */\n creator: string;\n /** Fee for claiming (usually \"0.000 HIVE\" for RC-based claims) */\n fee?: string;\n}\n\n/**\n * React Query mutation hook for claiming account creation tokens.\n *\n * This mutation broadcasts a claim_account operation to claim an account\n * creation token using Resource Credits (RC). The claimed token can later\n * be used to create a new account for free using the create_claimed_account\n * operation.\n *\n * @param username - The username claiming the account token (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates account cache to update pending_claimed_accounts count\n * - Updates account query data to set pending_claimed_accounts = 0 optimistically\n *\n * **Operation Details:**\n * - Uses native claim_account operation\n * - Fee: \"0.000 HIVE\" (uses RC instead of HIVE)\n * - Authority: Active key (required for claiming)\n *\n * **RC Requirements:**\n * - Requires sufficient Resource Credits (RC)\n * - RC amount varies based on network conditions\n * - Claiming without sufficient RC will fail\n *\n * **Use Case:**\n * - Claim tokens in advance when RC is available\n * - Create accounts later without paying HIVE fee\n * - Useful for onboarding services and apps\n *\n * @example\n * ```typescript\n * const claimMutation = useClaimAccount(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Claim account token using RC\n * claimMutation.mutate({\n * creator: 'alice',\n * fee: '0.000 HIVE'\n * });\n * ```\n */\nexport function useClaimAccount(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"claimAccount\"],\n username,\n ({ creator, fee = \"0.000 HIVE\" }) => [\n buildClaimAccountOp(creator, fee)\n ],\n async (_result: any, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(variables.creator),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildGrantPostingPermissionOp, type Authority } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface GrantPostingPermissionPayload {\n currentPosting: Authority;\n grantedAccount: string;\n weightThreshold: number;\n memoKey: string;\n jsonMetadata: string;\n}\n\nexport function useGrantPostingPermission(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"grant-posting-permission\"],\n username,\n (payload) => [\n buildGrantPostingPermissionOp(\n username!,\n payload.currentPosting,\n payload.grantedAccount,\n payload.weightThreshold,\n payload.memoKey,\n payload.jsonMetadata\n )\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildAccountCreateOp, buildCreateClaimedAccountOp, type AccountKeys } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface CreateAccountPayload {\n newAccountName: string;\n keys: AccountKeys;\n fee: string;\n /** If true, uses a claimed account token instead of paying the fee */\n useClaimed?: boolean;\n}\n\nexport function useCreateAccount(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"accounts\", \"create\"],\n username,\n (payload) => [\n payload.useClaimed\n ? buildCreateClaimedAccountOp(username!, payload.newAccountName, payload.keys)\n : buildAccountCreateOp(username!, payload.newAccountName, payload.keys, payload.fee)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { parseAsset } from \"@/modules/core/utils\";\nimport { DynamicProps } from \"@/modules/core/types\";\nimport { FullAccount } from \"../types\";\nimport { calculateVPMana, calculateRCMana } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\n\nconst HIVE_VOTING_MANA_REGENERATION_SECONDS = 5 * 60 * 60 * 24; // 5 days\nconst HIVE_100_PERCENT = 10000;\nconst HIVE_VOTE_DUST_THRESHOLD = 50_000_000;\n\nfunction getEffectiveVests(account: FullAccount): number {\n const vesting = parseAsset(account.vesting_shares).amount;\n const received = parseAsset(account.received_vesting_shares).amount;\n const delegated = parseAsset(account.delegated_vesting_shares).amount;\n const withdrawRate = parseAsset(account.vesting_withdraw_rate).amount;\n const alreadyWithdrawn =\n (Number(account.to_withdraw) - Number(account.withdrawn)) / 1e6;\n const withdrawVests = Math.min(withdrawRate, alreadyWithdrawn);\n\n return vesting + received - delegated - withdrawVests;\n}\n\nfunction vestsToRshares(vests: number, votingPowerValue: number, votePerc: number): number {\n const vestingShares = vests * 1e6;\n const power = (votingPowerValue * votePerc) / 1e4 / 50 + 1;\n return (power * vestingShares) / 1e4;\n}\n\nfunction hasStableVoteHardfork(dynamicProps: DynamicProps): boolean {\n if (Number.isFinite(dynamicProps.lastHardfork)) {\n return dynamicProps.lastHardfork >= 28;\n }\n\n const [major = \"0\", minor = \"0\"] = (dynamicProps.currentHardforkVersion ?? \"0.0.0\").split(\".\");\n return Number(major) > 1 || (Number(major) === 1 && Number(minor) >= 28);\n}\n\nfunction stableVoteRshares(\n account: FullAccount,\n dynamicProps: DynamicProps,\n weight: number\n): number {\n const reserveRate =\n dynamicProps.votePowerReserveRate ||\n Number(dynamicProps.raw?.globalDynamic?.vote_power_reserve_rate ?? 0);\n\n if (!Number.isFinite(reserveRate) || reserveRate <= 0) {\n return 0;\n }\n\n const effectiveVests = getEffectiveVests(account);\n if (!Number.isFinite(effectiveVests) || effectiveVests <= 0) {\n return 0;\n }\n\n const vestingShares = effectiveVests * 1e6;\n const usedMana =\n Math.ceil(\n (vestingShares * weight * 60 * 60 * 24) /\n HIVE_100_PERCENT /\n (reserveRate * HIVE_VOTING_MANA_REGENERATION_SECONDS)\n );\n\n const mana = calculateVPMana(account);\n const currentMana = Math.min(mana.current_mana, mana.max_mana);\n\n if (!Number.isFinite(currentMana) || usedMana > currentMana) {\n return 0;\n }\n\n return Math.max(usedMana - HIVE_VOTE_DUST_THRESHOLD, 0);\n}\n\nexport function votingRshares(\n account: FullAccount,\n dynamicProps: DynamicProps,\n votingPowerValue: number,\n weight: number = 10000\n): number {\n if (!Number.isFinite(votingPowerValue) || !Number.isFinite(weight)) {\n return 0;\n }\n\n if (hasStableVoteHardfork(dynamicProps)) {\n return stableVoteRshares(account, dynamicProps, weight);\n }\n\n let totalVests = 0;\n try {\n totalVests = getEffectiveVests(account);\n if (!Number.isFinite(totalVests)) {\n return 0;\n }\n } catch {\n return 0;\n }\n\n return vestsToRshares(totalVests, votingPowerValue, weight);\n}\n\nexport function votingPower(account: FullAccount): number {\n const calc = calculateVPMana(account);\n return calc.percentage / 100;\n}\n\nexport function powerRechargeTime(power: number) {\n if (!Number.isFinite(power)) {\n throw new TypeError(\"Voting power must be a finite number\");\n }\n if (power < 0 || power > 100) {\n throw new RangeError(\"Voting power must be between 0 and 100\");\n }\n const missingPower = 100 - power;\n return (\n (missingPower * 100 * HIVE_VOTING_MANA_REGENERATION_SECONDS) / 10000\n );\n}\n\nexport function downVotingPower(account: FullAccount): number {\n const totalShares =\n parseFloat(account.vesting_shares) +\n parseFloat(account.received_vesting_shares) -\n parseFloat(account.delegated_vesting_shares);\n const elapsed = Math.floor(Date.now() / 1000) - account.downvote_manabar.last_update_time;\n const maxMana = (totalShares * 1000000) / 4;\n\n if (maxMana <= 0) {\n return 0;\n }\n\n let currentMana =\n parseFloat(account.downvote_manabar.current_mana.toString()) +\n (elapsed * maxMana) / HIVE_VOTING_MANA_REGENERATION_SECONDS;\n\n if (currentMana > maxMana) {\n currentMana = maxMana;\n }\n const currentManaPerc = (currentMana * 100) / maxMana;\n\n if (isNaN(currentManaPerc)) {\n return 0;\n }\n\n if (currentManaPerc > 100) {\n return 100;\n }\n return currentManaPerc;\n}\n\n/**\n * Rewards/stake coefficient, known on Hive as the KE ratio: every VEST ever paid out\n * to the account as curation rewards or as the vested half of an author payout, over\n * the VESTS it still holds and has not delegated away. Both sides are VESTS, so the\n * value is independent of the HIVE price and of the global VESTS/HP rate.\n *\n * Returns null when the account carries no undelegated stake, where the ratio is\n * undefined rather than zero.\n *\n * Limits worth repeating wherever this is displayed: `posting_rewards` counts only the\n * vested half of an author payout, the denominator ignores stake delegated TO the\n * account (so an account curating with received delegation scores high), and the value\n * climbs during a power-down because the numerator is frozen history.\n */\nexport function rewardsToStakeRatio(account: FullAccount): number | null {\n // Absent counters are unknown, not zero. A row that omits one (or a cache entry\n // dehydrated by an older build, which omits both) would otherwise produce a\n // confident but understated ratio, which is worse than showing nothing.\n const { curation_rewards: curation, posting_rewards: posting } = account;\n if (curation === undefined || posting === undefined) {\n return null;\n }\n\n const rewards = curation + posting;\n const ownVests =\n parseAsset(account.vesting_shares).amount -\n parseAsset(account.delegated_vesting_shares).amount;\n\n // The SDK's parseAsset hands back a raw parseFloat, so a malformed asset string\n // reaches here as NaN rather than 0. Both sides need the finite check.\n if (!Number.isFinite(rewards) || !Number.isFinite(ownVests) || ownVests <= 0) {\n return null;\n }\n\n return rewards / ownVests;\n}\n\nexport function rcPower(account: RCAccount): number {\n const calc = calculateRCMana(account);\n return calc.percentage / 100;\n}\n\nexport function votingValue(\n account: FullAccount,\n dynamicProps: DynamicProps,\n votingPowerValue: number,\n weight: number = 10000\n): number {\n if (!Number.isFinite(votingPowerValue) || !Number.isFinite(weight)) {\n return 0;\n }\n const { fundRecentClaims, fundRewardBalance, base, quote } = dynamicProps;\n\n if (\n !Number.isFinite(fundRecentClaims) ||\n !Number.isFinite(fundRewardBalance) ||\n !Number.isFinite(base) ||\n !Number.isFinite(quote)\n ) {\n return 0;\n }\n\n if (fundRecentClaims === 0 || quote === 0) {\n return 0;\n }\n\n const rShares = votingRshares(account, dynamicProps, votingPowerValue, weight);\n\n if (!Number.isFinite(rShares)) {\n return 0;\n }\n\n return (rShares / fundRecentClaims) * fundRewardBalance * (base / quote);\n}\n","import type { Operation } from \"../../hive-tx\";\n\n/**\n * Authority levels for Hive blockchain operations.\n * - posting: Social operations (voting, commenting, reblogging)\n * - active: Financial and account management operations\n * - owner: Critical security operations (key changes, account recovery)\n * - memo: Memo encryption/decryption (rarely used for signing)\n */\nexport type AuthorityLevel = 'posting' | 'active' | 'owner' | 'memo';\n\n/**\n * Maps operation types to their required authority level.\n *\n * This mapping is used to determine which key is needed to sign a transaction,\n * enabling smart auth fallback and auth upgrade UI.\n *\n * @remarks\n * - Most social operations (vote, comment, reblog) require posting authority\n * - Financial operations (transfer, withdraw) require active authority\n * - Account management operations require active authority\n * - Security operations (password change, account recovery) require owner authority\n * - custom_json requires dynamic detection based on required_auths vs required_posting_auths\n */\nexport const OPERATION_AUTHORITY_MAP: Record = {\n // Posting authority operations\n vote: 'posting',\n comment: 'posting',\n delete_comment: 'posting',\n comment_options: 'posting',\n claim_reward_balance: 'posting',\n\n // Active authority operations - Financial\n cancel_transfer_from_savings: 'active',\n collateralized_convert: 'active',\n convert: 'active',\n delegate_vesting_shares: 'active',\n recurrent_transfer: 'active',\n set_withdraw_vesting_route: 'active',\n transfer: 'active',\n transfer_from_savings: 'active',\n transfer_to_savings: 'active',\n transfer_to_vesting: 'active',\n withdraw_vesting: 'active',\n\n // Active authority operations - Market\n limit_order_create: 'active',\n limit_order_cancel: 'active',\n\n // Active authority operations - Account Management\n account_update: 'active',\n account_update2: 'active',\n claim_account: 'active',\n create_claimed_account: 'active',\n\n // Active authority operations - Governance\n account_witness_proxy: 'active',\n account_witness_vote: 'active',\n remove_proposal: 'active',\n update_proposal_votes: 'active',\n\n // Owner authority operations - Security & Account Recovery\n change_recovery_account: 'owner',\n request_account_recovery: 'owner',\n recover_account: 'owner',\n reset_account: 'owner',\n set_reset_account: 'owner',\n\n // Note: Some operations are handled separately via content inspection:\n // - custom_json: via getCustomJsonAuthority() - posting or active based on required_auths\n // - create_proposal/update_proposal: via getProposalAuthority() - typically active\n};\n\n/**\n * Determines authority required for a custom_json operation.\n *\n * Custom JSON operations can require either posting or active authority\n * depending on which field is populated:\n * - required_auths (active authority)\n * - required_posting_auths (posting authority)\n *\n * @param customJsonOp - The custom_json operation to inspect\n * @returns 'active' if requires active authority, 'posting' if requires posting authority\n *\n * @example\n * ```typescript\n * // Reblog operation (posting authority)\n * const reblogOp: Operation = ['custom_json', {\n * required_auths: [],\n * required_posting_auths: ['alice'],\n * id: 'reblog',\n * json: '...'\n * }];\n * getCustomJsonAuthority(reblogOp); // Returns 'posting'\n *\n * // Some active authority custom_json\n * const activeOp: Operation = ['custom_json', {\n * required_auths: ['alice'],\n * required_posting_auths: [],\n * id: 'some_active_op',\n * json: '...'\n * }];\n * getCustomJsonAuthority(activeOp); // Returns 'active'\n * ```\n */\nexport function getCustomJsonAuthority(customJsonOp: Operation): AuthorityLevel {\n const opType = customJsonOp[0];\n const payload = customJsonOp[1];\n\n if (opType !== 'custom_json') {\n throw new Error('Operation is not a custom_json operation');\n }\n\n // Type assertion for custom_json payload\n const customJson = payload as {\n required_auths?: string[];\n required_posting_auths?: string[];\n id: string;\n json: string;\n };\n\n // If required_auths is set and non-empty, needs active authority\n if (customJson.required_auths && customJson.required_auths.length > 0) {\n return 'active';\n }\n\n // If only required_posting_auths is set, needs posting authority\n if (customJson.required_posting_auths && customJson.required_posting_auths.length > 0) {\n return 'posting';\n }\n\n // Default to posting for custom_json (most common case)\n return 'posting';\n}\n\n/**\n * Determines authority required for a proposal operation.\n *\n * Proposal operations (create_proposal, update_proposal) typically require\n * active authority as they involve financial commitments and funding allocations.\n *\n * @param proposalOp - The proposal operation to inspect\n * @returns 'active' authority requirement\n *\n * @remarks\n * Unlike custom_json, proposal operations don't have explicit required_auths fields.\n * They always use the creator's authority, which defaults to active for financial\n * operations involving the DAO treasury.\n *\n * @example\n * ```typescript\n * const proposalOp: Operation = ['create_proposal', {\n * creator: 'alice',\n * receiver: 'bob',\n * subject: 'My Proposal',\n * permlink: 'my-proposal',\n * start: '2026-03-01T00:00:00',\n * end: '2026-04-01T00:00:00',\n * daily_pay: '100.000 HBD',\n * extensions: []\n * }];\n * getProposalAuthority(proposalOp); // Returns 'active'\n * ```\n */\nexport function getProposalAuthority(proposalOp: Operation): AuthorityLevel {\n const opType = proposalOp[0];\n\n if (opType !== 'create_proposal' && opType !== 'update_proposal') {\n throw new Error('Operation is not a proposal operation');\n }\n\n // Proposal operations require active authority for financial operations\n return 'active';\n}\n\n/**\n * Determines the required authority level for any operation.\n *\n * Uses the OPERATION_AUTHORITY_MAP for standard operations, and dynamic\n * detection for custom_json operations.\n *\n * @param op - The operation to check\n * @returns 'posting' or 'active' authority requirement\n *\n * @example\n * ```typescript\n * const voteOp: Operation = ['vote', { voter: 'alice', author: 'bob', permlink: 'post', weight: 10000 }];\n * getOperationAuthority(voteOp); // Returns 'posting'\n *\n * const transferOp: Operation = ['transfer', { from: 'alice', to: 'bob', amount: '1.000 HIVE', memo: '' }];\n * getOperationAuthority(transferOp); // Returns 'active'\n * ```\n */\nexport function getOperationAuthority(op: Operation): AuthorityLevel {\n const opType = op[0];\n\n // Special handling for custom_json - requires content inspection\n if (opType === 'custom_json') {\n return getCustomJsonAuthority(op);\n }\n\n // Special handling for proposal operations - requires content inspection\n if (opType === 'create_proposal' || opType === 'update_proposal') {\n return getProposalAuthority(op);\n }\n\n // Use mapping for standard operations, default to posting if unknown\n return OPERATION_AUTHORITY_MAP[opType] ?? 'posting';\n}\n\n/**\n * Determines the highest authority level required for a list of operations.\n *\n * Useful when broadcasting multiple operations together - the highest authority\n * level required by any operation determines what key is needed for the batch.\n *\n * Authority hierarchy: owner > active > posting > memo\n *\n * @param ops - Array of operations\n * @returns Highest authority level required ('owner', 'active', or 'posting')\n *\n * @example\n * ```typescript\n * const ops: Operation[] = [\n * ['vote', { ... }], // posting\n * ['comment', { ... }], // posting\n * ];\n * getRequiredAuthority(ops); // Returns 'posting'\n *\n * const mixedOps: Operation[] = [\n * ['comment', { ... }], // posting\n * ['transfer', { ... }], // active\n * ];\n * getRequiredAuthority(mixedOps); // Returns 'active'\n *\n * const securityOps: Operation[] = [\n * ['transfer', { ... }], // active\n * ['change_recovery_account', { ... }], // owner\n * ];\n * getRequiredAuthority(securityOps); // Returns 'owner'\n * ```\n */\nexport function getRequiredAuthority(ops: Operation[]): AuthorityLevel {\n let highestAuthority: AuthorityLevel = 'posting';\n\n for (const op of ops) {\n const authority = getOperationAuthority(op);\n\n // Owner is highest - return immediately\n if (authority === 'owner') {\n return 'owner';\n }\n\n // Active is higher than posting\n if (authority === 'active' && highestAuthority === 'posting') {\n highestAuthority = 'active';\n }\n\n // Memo is lowest (same level as posting)\n // If we see memo but only have posting, stick with posting\n }\n\n return highestAuthority;\n}\n","import { PrivateKey } from \"../../../hive-tx\";\nimport type { Operation } from \"../../../hive-tx\";\nimport { isWif, broadcastOperations } from \"@/modules/core/hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\n\nexport function useSignOperationByKey(username: string | undefined) {\n return useMutation({\n mutationKey: [\"operations\", \"sign\", username],\n mutationFn: ({\n operation,\n keyOrSeed,\n }: {\n operation: Operation;\n keyOrSeed: string;\n }) => {\n if (!username) {\n throw new Error(\"[Operations][Sign] – cannot sign op with anon user\");\n }\n\n let privateKey: PrivateKey;\n if (keyOrSeed.split(\" \").length === 12) {\n privateKey = PrivateKey.fromLogin(username, keyOrSeed, \"active\");\n } else if (isWif(keyOrSeed)) {\n privateKey = PrivateKey.fromString(keyOrSeed);\n } else {\n privateKey = PrivateKey.from(keyOrSeed);\n }\n\n return broadcastOperations(\n [operation],\n privateKey\n );\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport function useSignOperationByKeychain(\n username: string | undefined,\n auth?: AuthContextV2,\n keyType: \"owner\" | \"active\" | \"posting\" | \"memo\" = \"active\"\n) {\n return useMutation({\n mutationKey: [\"operations\", \"sign-keychain\", username],\n mutationFn: ({ operation }: { operation: Operation }) => {\n if (!username) {\n throw new Error(\n \"[SDK][Keychain] – cannot sign operation with anon user\"\n );\n }\n if (!auth?.adapter?.broadcastWithKeychain) {\n throw new Error(\"[SDK][Keychain] – missing keychain broadcaster\");\n }\n\n return auth.adapter.broadcastWithKeychain(username, [operation], keyType);\n },\n });\n}\n","import type { Operation } from \"../../../hive-tx\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\n\nexport function useSignOperationByHivesigner(callbackUri = \"/\") {\n return useMutation({\n mutationKey: [\"operations\", \"sign-hivesigner\", callbackUri],\n mutationFn: async ({ operation }: { operation: Operation }) => {\n return hs.sendOperation(operation, { callback: callbackUri }, () => {});\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getChainPropertiesQueryOptions() {\n return queryOptions({\n queryKey: [\"operations\", \"chain-properties\"],\n queryFn: async () => {\n return await callRPC(\"condenser_api.get_chain_properties\", []);\n },\n });\n}\n","import { Fragment } from \"../types\";\n\n/**\n * Build the cache entry for an edited fragment.\n *\n * The `/private-api/fragments-update` endpoint returns only a minimal\n * acknowledgement, not the full fragment. Writing that response straight into\n * the query cache blanked out the edited snippet (the reported bug), so the\n * updated record is built from the values the user actually submitted, merged\n * over whatever fields the response does carry, on top of the existing cached\n * fragment (preserving id/created).\n */\nexport function applyFragmentUpdate(\n existing: Fragment,\n response: Partial | null | undefined,\n vars: { title: string; body: string }\n): Fragment {\n return {\n ...existing,\n ...(response ?? {}),\n title: vars.title,\n body: vars.body\n };\n}\n\n/**\n * Build the cache entry for a newly added fragment. Reaffirms the submitted\n * title/body over the server acknowledgement so a fresh snippet never renders\n * blank if the response omits them, while keeping any server-provided\n * id/timestamps.\n */\nexport function buildAddedFragment(\n response: Fragment | null | undefined,\n vars: { title: string; body: string }\n): Fragment {\n return {\n ...(response ?? {}),\n title: vars.title,\n body: vars.body\n } as Fragment;\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { buildAddedFragment } from \"../utils/fragment-cache-helpers\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useAddFragment(username: string, code: string | undefined) {\n return useMutation({\n mutationKey: [\"posts\", \"add-fragment\", username],\n mutationFn: async ({ title, body }: { title: string; body: string }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments-add\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n title,\n body,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n // Raw fetch resolves on 4xx/5xx, so a JSON error response would otherwise run\n // onSuccess and insert a bogus fragment into the cache. Throw instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to add fragment: ${response.status}`);\n }\n return response.json() as Promise;\n },\n onSuccess(response, variables) {\n const queryClient = getQueryClient();\n\n // Reaffirm the submitted title/body over the server acknowledgement so a\n // freshly added snippet never renders blank if the response omits them,\n // while keeping any server-provided id/timestamps.\n const newFragment = buildAddedFragment(response, variables);\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) => [newFragment, ...(data ?? [])]\n );\n\n // Update infinite query cache - add new fragment to first page\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page, index) =>\n index === 0\n ? { ...page, data: [newFragment, ...page.data] }\n : page\n ),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { applyFragmentUpdate } from \"../utils/fragment-cache-helpers\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useEditFragment(\n username: string,\n code: string | undefined\n) {\n return useMutation({\n mutationKey: [\"posts\", \"edit-fragment\", username],\n mutationFn: async ({\n fragmentId,\n title,\n body\n }: {\n fragmentId: string;\n title: string;\n body: string;\n }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/fragments-update\",\n {\n method: \"POST\",\n body: JSON.stringify({\n code,\n id: fragmentId,\n title,\n body,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n // Raw fetch resolves on 4xx/5xx, so a JSON error response would otherwise run\n // onSuccess and overwrite the cached fragment with bogus data. Throw instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to update fragment: ${response.status}`);\n }\n return response.json() as Promise;\n },\n onSuccess(response, variables) {\n const queryClient = getQueryClient();\n\n // The /fragments-update endpoint returns a minimal acknowledgement, not the\n // full fragment, so writing the raw response into the cache blanked out the\n // edited snippet. Rebuild the fragment from the submitted values instead.\n const applyUpdate = (fragment: Fragment): Fragment =>\n applyFragmentUpdate(fragment, response, variables);\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) =>\n data?.map((fragment) =>\n fragment.id === variables.fragmentId ? applyUpdate(fragment) : fragment\n ) ?? []\n );\n\n // Update infinite query cache - update fragment in all pages\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.map((fragment) =>\n fragment.id === variables.fragmentId ? applyUpdate(fragment) : fragment\n ),\n })),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { Fragment } from \"../types\";\nimport { getFragmentsQueryOptions } from \"../queries\";\nimport { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useRemoveFragment(\n username: string,\n code: string | undefined\n) {\n return useMutation({\n mutationKey: [\"posts\", \"remove-fragment\", username],\n mutationFn: async ({ fragmentId }: { fragmentId: string }) => {\n if (!code) {\n throw new Error(\"[SDK][Posts] Missing access token\");\n }\n const fetchApi = getBoundFetch();\n\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/fragments-delete\", {\n method: \"POST\",\n body: JSON.stringify({\n code,\n id: fragmentId,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n // getBoundFetch returns the raw fetch, so a 401/403/500 resolves rather than\n // rejects. Without this guard onSuccess would run and strip the fragment from\n // cache on a failed delete (false success). Throw so onError fires instead.\n if (!response.ok) {\n throw new Error(`[SDK][Posts] Failed to delete fragment: ${response.status}`);\n }\n\n return response;\n },\n onSuccess(_data, variables) {\n const queryClient = getQueryClient();\n\n // Update regular query cache\n queryClient.setQueryData(\n getFragmentsQueryOptions(username, code).queryKey,\n (data) => [...(data ?? [])].filter(({ id }) => id !== variables.fragmentId)\n );\n\n // Update infinite query cache - remove fragment from all pages\n queryClient.setQueriesData>>(\n { queryKey: [\"posts\", \"fragments\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.filter((fragment) => fragment.id !== variables.fragmentId),\n })),\n };\n }\n );\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { ApiNotification, ApiNotificationSetting } from \"@/modules/notifications\";\nimport { Draft, DraftMetadata } from \"@/modules/posts/types/draft\";\nimport { Schedule } from \"@/modules/posts/types/schedule\";\nimport { ApiResponse } from \"./types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nasync function parseJsonResponse(response: Response): Promise {\n if (!response.ok) {\n let errorData: unknown = undefined;\n try {\n errorData = await response.json();\n } catch {\n errorData = undefined;\n }\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = errorData;\n throw error;\n }\n\n // Handle empty responses gracefully (e.g., 204 No Content or empty body)\n const text = await response.text();\n if (!text || text.trim() === \"\") {\n return \"\" as T;\n }\n\n try {\n return JSON.parse(text) as T;\n } catch (e) {\n // If JSON parsing fails, return empty string as fallback\n console.warn(\"[SDK] Failed to parse JSON response:\", e, \"Response:\", text);\n return \"\" as T;\n }\n}\n\nexport async function signUp(\n username: string,\n email: string,\n referral: string,\n captchaToken?: string\n): Promise>> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/account-create\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username, email, referral, captcha_token: captchaToken }),\n });\n\n const data = await parseJsonResponse>(response);\n return { status: response.status, data };\n}\n\nexport async function subscribeEmail(\n email: string\n): Promise>> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/subscribe\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ email }),\n });\n\n const data = await parseJsonResponse>(response);\n return { status: response.status, data };\n}\n\nexport async function usrActivity(\n code: string | undefined,\n ty: number,\n bl: string | number = \"\",\n tx: string | number = \"\"\n): Promise {\n const params: {\n code: string | undefined;\n ty: number;\n bl?: string | number;\n tx?: string | number;\n } = { code, ty };\n\n if (bl) {\n params.bl = bl;\n }\n if (tx) {\n params.tx = tx;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/usr-activity\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(params),\n });\n\n await parseJsonResponse(response);\n}\n\nexport async function getNotifications(\n code: string | undefined,\n filter: string | null,\n since: string | null = null,\n user: string | null = null\n): Promise {\n const data: { code: string | undefined; filter?: string; since?: string; user?: string } = {\n code,\n };\n\n if (filter) {\n data.filter = filter;\n }\n\n if (since) {\n data.since = since;\n }\n\n if (user) {\n data.user = user;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/notifications\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function saveNotificationSetting(\n code: string | undefined,\n username: string,\n system: string,\n allows_notify: number,\n notify_types: number[],\n token: string\n): Promise {\n const data = {\n code,\n username,\n token,\n system,\n allows_notify,\n notify_types,\n };\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/register-device\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function getNotificationSetting(\n code: string | undefined,\n username: string,\n token: string\n): Promise {\n const data = { code, username, token };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/detail-device\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function markNotifications(\n code: string | undefined,\n id?: string\n): Promise> {\n const data: { code: string | undefined; id?: string } = {\n code,\n };\n if (id) {\n data.id = id;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/notifications/mark\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addImage(code: string | undefined, url: string): Promise> {\n const data = { code, url };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\n// Upload always targets the canonical Ecency image server, even when\n// the user has changed their viewing proxy (e.g. images.hive.blog).\n// i.ecency.com is the same imagehoster endpoint as images.ecency.com\n// (identical backend / token validation); it is the canonical host\n// because some ISPs SNI-filter the images.ecency.com hostname.\nconst UPLOAD_HOST = \"https://i.ecency.com\";\n\nexport async function uploadImage(\n file: File,\n token: string,\n signal?: AbortSignal\n): Promise<{ url: string }> {\n const fetchApi = getBoundFetch();\n const formData = new FormData();\n formData.append(\"file\", file);\n\n const response = await fetchApi(`${UPLOAD_HOST}/hs/${token}`, {\n method: \"POST\",\n body: formData,\n signal,\n });\n\n return parseJsonResponse<{ url: string }>(response);\n}\n\n/**\n * Upload image using posting key signature (/:username/:signature path).\n * Works with any compatible image server (images.ecency.com, images.hive.blog).\n * The signature is sha256(\"ImageSigningChallenge\" + fileData) signed with the posting key.\n */\nexport async function uploadImageWithSignature(\n file: File,\n username: string,\n signature: string,\n signal?: AbortSignal\n): Promise<{ url: string }> {\n const fetchApi = getBoundFetch();\n const formData = new FormData();\n formData.append(\"file\", file);\n\n const response = await fetchApi(`${CONFIG.imageHost}/${username}/${signature}`, {\n method: \"POST\",\n body: formData,\n signal,\n });\n\n return parseJsonResponse<{ url: string }>(response);\n}\n\nexport async function deleteImage(\n code: string | undefined,\n imageId: string\n): Promise> {\n const data = { code, id: imageId };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/images-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addDraft(\n code: string | undefined,\n title: string,\n body: string,\n tags: string,\n meta: DraftMetadata\n): Promise<{ drafts: Draft[] }> {\n const data = { code, title, body, tags, meta };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ drafts: Draft[] }>(response);\n}\n\nexport async function updateDraft(\n code: string | undefined,\n draftId: string,\n title: string,\n body: string,\n tags: string,\n meta: DraftMetadata\n): Promise<{ drafts: Draft[] }> {\n const data = { code, id: draftId, title, body, tags, meta };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-update\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ drafts: Draft[] }>(response);\n}\n\nexport async function deleteDraft(\n code: string | undefined,\n draftId: string\n): Promise> {\n const data = { code, id: draftId };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/drafts-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function addSchedule(\n code: string | undefined,\n permlink: string,\n title: string,\n body: string,\n meta: Record,\n options: Record | null,\n schedule: string,\n reblog: boolean\n): Promise> {\n const data: Record = {\n code,\n permlink,\n title,\n body,\n meta,\n schedule,\n reblog,\n };\n\n if (options) {\n data.options = options;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-add\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function deleteSchedule(\n code: string | undefined,\n id: string\n): Promise> {\n const data = { code, id };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-delete\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse>(response);\n}\n\nexport async function moveSchedule(code: string | undefined, id: string): Promise {\n const data = { code, id };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/schedules-move\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse(response);\n}\n\nexport async function getPromotedPost(\n code: string | undefined,\n author: string,\n permlink: string\n): Promise<{ author: string; permlink: string } | \"\"> {\n const data = { code, author, permlink };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/promoted-post\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n });\n\n return parseJsonResponse<{ author: string; permlink: string } | \"\">(response);\n}\n\nexport async function onboardEmail(\n username: string,\n email: string,\n friend: string\n): Promise> {\n const dataBody = {\n username,\n email,\n friend,\n };\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/account-create-friend\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(dataBody),\n }\n );\n\n return parseJsonResponse>(response);\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addDraft } from \"@/modules/private-api/requests\";\nimport { DraftMetadata } from \"../types\";\n\nexport function useAddDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"add\", username],\n mutationFn: async ({\n title,\n body,\n tags,\n meta,\n }: {\n title: string;\n body: string;\n tags: string;\n meta: DraftMetadata;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for addDraft\");\n }\n return addDraft(code, title, body, tags, meta);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full drafts list from the response (API returns complete list)\n if (data?.drafts) {\n qc.setQueryData(QueryKeys.posts.drafts(username), data.drafts);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n }\n // Also invalidate the infinite query so the drafts list refetches\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { updateDraft } from \"@/modules/private-api/requests\";\nimport { DraftMetadata } from \"../types\";\n\nexport function useUpdateDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"update\", username],\n mutationFn: async ({\n draftId,\n title,\n body,\n tags,\n meta,\n }: {\n draftId: string;\n title: string;\n body: string;\n tags: string;\n meta: DraftMetadata;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for updateDraft\");\n }\n return updateDraft(code, draftId, title, body, tags, meta);\n },\n onSuccess: () => {\n onSuccess?.();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError,\n });\n}\n","import { InfiniteData, useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { deleteDraft } from \"@/modules/private-api/requests\";\nimport type { Draft } from \"../types\";\nimport type { WrappedResponse } from \"@/modules/core/types\";\n\nexport function useDeleteDraft(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"drafts\", \"delete\", username],\n mutationFn: async ({ draftId }: { draftId: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteDraft\");\n }\n return deleteDraft(code, draftId);\n },\n onMutate: async ({ draftId }) => {\n if (!username) {\n return;\n }\n\n const qc = getQueryClient();\n const listKey = QueryKeys.posts.drafts(username);\n const infinitePrefix = QueryKeys.posts.draftsInfinite(username);\n\n await Promise.all([\n qc.cancelQueries({ queryKey: listKey }),\n qc.cancelQueries({ queryKey: infinitePrefix }),\n ]);\n\n const previousList = qc.getQueryData(listKey);\n if (previousList) {\n qc.setQueryData(\n listKey,\n previousList.filter((d) => d._id !== draftId)\n );\n }\n\n const infiniteQueries = qc.getQueriesData>>({\n queryKey: infinitePrefix,\n });\n const previousInfinite = new Map(infiniteQueries);\n for (const [key, data] of infiniteQueries) {\n if (data) {\n qc.setQueryData(key, {\n ...data,\n pages: data.pages.map((page) => ({\n ...page,\n data: page.data.filter((d) => d._id !== draftId),\n })),\n });\n }\n }\n\n return { previousList, previousInfinite };\n },\n onSuccess: () => {\n onSuccess?.();\n const qc = getQueryClient();\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n qc.invalidateQueries({ queryKey: QueryKeys.posts.draftsInfinite(username) });\n },\n onError: (err, _variables, context) => {\n const qc = getQueryClient();\n if (context?.previousList) {\n qc.setQueryData(QueryKeys.posts.drafts(username), context.previousList);\n }\n if (context?.previousInfinite) {\n for (const [key, data] of context.previousInfinite) {\n qc.setQueryData(key, data);\n }\n }\n onError?.(err);\n },\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addSchedule } from \"@/modules/private-api/requests\";\n\nexport function useAddSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"add\", username],\n mutationFn: async ({\n permlink,\n title,\n body,\n meta,\n options,\n schedule,\n reblog,\n }: {\n permlink: string;\n title: string;\n body: string;\n meta: Record;\n options: Record | null;\n schedule: string;\n reblog: boolean;\n }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for addSchedule\");\n }\n return addSchedule(code, permlink, title, body, meta, options, schedule, reblog);\n },\n onSuccess: () => {\n onSuccess?.();\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.posts.schedules(username),\n });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { deleteSchedule } from \"@/modules/private-api/requests\";\n\nexport function useDeleteSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"delete\", username],\n mutationFn: async ({ id }: { id: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteSchedule\");\n }\n return deleteSchedule(code, id);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full schedules list from the response (API returns complete list)\n if (data) {\n qc.setQueryData(QueryKeys.posts.schedules(username), data);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.schedules(username) });\n }\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { moveSchedule } from \"@/modules/private-api/requests\";\n\nexport function useMoveSchedule(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"schedules\", \"move\", username],\n mutationFn: async ({ id }: { id: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for moveSchedule\");\n }\n return moveSchedule(code, id);\n },\n onSuccess: (data) => {\n onSuccess?.();\n const qc = getQueryClient();\n // Set the full schedules list from the response (API returns complete list)\n if (data) {\n qc.setQueryData(QueryKeys.posts.schedules(username), data);\n } else {\n qc.invalidateQueries({ queryKey: QueryKeys.posts.schedules(username) });\n }\n // Also invalidate drafts since moving a schedule creates a draft\n qc.invalidateQueries({ queryKey: QueryKeys.posts.drafts(username) });\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { addImage } from \"@/modules/private-api/requests\";\n\n/**\n * Hook to add an image URL to the user's Ecency gallery\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful addition\n * @param onError - Optional callback on error\n *\n * @example\n * const addImageMutation = useAddImage(username, code);\n * addImageMutation.mutate({ url: 'https://...' });\n */\nexport function useAddImage(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"add\", username],\n mutationFn: async ({ url, code: nextCode }: { url: string; code?: string }) => {\n const effectiveCode = nextCode ?? code;\n\n if (!username || !effectiveCode) {\n throw new Error(\"[SDK][Posts] – missing auth for addImage\");\n }\n return addImage(effectiveCode, url);\n },\n onSuccess: () => {\n onSuccess?.();\n getQueryClient().invalidateQueries({\n queryKey: QueryKeys.posts.images(username),\n });\n },\n onError,\n });\n}\n","import { useMutation, type InfiniteData } from \"@tanstack/react-query\";\nimport { getQueryClient } from \"@/modules/core\";\nimport { deleteImage } from \"@/modules/private-api/requests\";\nimport type { UserImage } from \"../types\";\nimport type { WrappedResponse } from \"@/modules/core/types\";\n\n/**\n * Hook to delete an image from the user's Ecency gallery\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful deletion\n * @param onError - Optional callback on error\n *\n * @example\n * const deleteImageMutation = useDeleteImage(username, code);\n * deleteImageMutation.mutate({ imageId: '123' });\n */\nexport function useDeleteImage(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: () => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"delete\", username],\n mutationFn: async ({ imageId }: { imageId: string }) => {\n if (!username || !code) {\n throw new Error(\"[SDK][Posts] – missing auth for deleteImage\");\n }\n return deleteImage(code, imageId);\n },\n onSuccess: (_data, variables) => {\n onSuccess?.();\n const qc = getQueryClient();\n const { imageId } = variables;\n\n // Optimistic removal from regular cache\n qc.setQueryData(\n [\"posts\", \"images\", username],\n (prev) => prev?.filter((img) => img._id !== imageId)\n );\n\n // Optimistic removal from infinite cache pages\n qc.setQueriesData>>(\n { queryKey: [\"posts\", \"images\", \"infinite\", username] },\n (oldData) => {\n if (!oldData) return oldData;\n return {\n ...oldData,\n pages: oldData.pages.map((page) => ({\n ...page,\n data: page.data.filter((img) => img._id !== imageId),\n })),\n };\n }\n );\n },\n onError,\n });\n}\n","import { useMutation } from \"@tanstack/react-query\";\nimport { uploadImage } from \"@/modules/private-api/requests\";\n\n/**\n * Hook to upload an image file to Ecency image hosting\n *\n * @param onSuccess - Optional callback on successful upload, receives { url: string }\n * @param onError - Optional callback on error\n *\n * Note: This hook uploads to Ecency's image server and requires a signature token.\n * The token should be generated using the user's posting key signature.\n *\n * @example\n * const uploadMutation = useUploadImage(\n * (data) => console.log('Uploaded:', data.url)\n * );\n * uploadMutation.mutate({ file, token });\n */\nexport function useUploadImage(\n onSuccess?: (data: { url: string }) => void,\n onError?: (e: Error) => void\n) {\n return useMutation({\n mutationKey: [\"posts\", \"images\", \"upload\"],\n mutationFn: async ({\n file,\n token,\n signal,\n }: {\n file: File;\n token: string;\n signal?: AbortSignal;\n }) => {\n return uploadImage(file, token, signal);\n },\n onSuccess,\n onError,\n });\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { Entry, EntryVote } from \"../types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\n\nfunction makeEntryPath(author: string, permlink: string) {\n return `/@${author}/${permlink}`;\n}\n\nfunction getEntryFromCache(\n author: string,\n permlink: string,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n return queryClient.getQueryData(\n QueryKeys.posts.entry(makeEntryPath(author, permlink))\n );\n}\n\nfunction setEntryInCache(entry: Entry, qc?: QueryClient) {\n const queryClient = qc ?? getQueryClient();\n queryClient.setQueryData(\n QueryKeys.posts.entry(makeEntryPath(entry.author, entry.permlink)),\n entry\n );\n}\n\nfunction mutateEntry(\n author: string,\n permlink: string,\n updater: (entry: Entry) => Entry,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n const path = makeEntryPath(author, permlink);\n const existing = queryClient.getQueryData(QueryKeys.posts.entry(path));\n if (!existing) return undefined;\n\n const updated = updater(existing);\n queryClient.setQueryData(QueryKeys.posts.entry(path), updated);\n return existing;\n}\n\n/**\n * SDK-level entry cache utilities. These operate on SDK cache keys\n * ([\"posts\", \"entry\", \"/@author/permlink\"]).\n *\n * Web layer can bridge these to its own QueryIdentifiers.ENTRY keys\n * during the migration period.\n */\nexport namespace EntriesCacheManagement {\n export function updateVotes(\n author: string,\n permlink: string,\n votes: EntryVote[],\n payout: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n active_votes: votes,\n stats: {\n ...(entry.stats || {\n gray: false,\n hide: false,\n flag_weight: 0,\n total_votes: 0,\n }),\n total_votes: votes.length,\n flag_weight: entry.stats?.flag_weight || 0,\n },\n total_votes: votes.length,\n payout,\n pending_payout_value: String(payout),\n }),\n qc\n );\n }\n\n export function updateReblogsCount(\n author: string,\n permlink: string,\n count: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n reblogs: count,\n }),\n qc\n );\n }\n\n export function updateRepliesCount(\n author: string,\n permlink: string,\n count: number,\n qc?: QueryClient\n ) {\n mutateEntry(\n author,\n permlink,\n (entry) => ({\n ...entry,\n children: count,\n }),\n qc\n );\n }\n\n export function addReply(\n reply: Entry,\n parentAuthor: string,\n parentPermlink: string,\n qc?: QueryClient\n ) {\n mutateEntry(\n parentAuthor,\n parentPermlink,\n (entry) => ({\n ...entry,\n children: entry.children + 1,\n replies: [reply, ...entry.replies],\n }),\n qc\n );\n }\n\n export function updateEntries(entries: Entry[], qc?: QueryClient) {\n entries.forEach((entry) => setEntryInCache(entry, qc));\n }\n\n export function invalidateEntry(\n author: string,\n permlink: string,\n qc?: QueryClient\n ) {\n const queryClient = qc ?? getQueryClient();\n queryClient.invalidateQueries({\n queryKey: QueryKeys.posts.entry(makeEntryPath(author, permlink)),\n });\n }\n\n export function getEntry(\n author: string,\n permlink: string,\n qc?: QueryClient\n ): Entry | undefined {\n return getEntryFromCache(author, permlink, qc);\n }\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\nimport { EntriesCacheManagement } from \"../cache/entries-cache-management\";\n\n/**\n * Whether the cached active_votes list already reflects the broadcast vote:\n * the voter is present for a vote (weight !== 0) or absent for an unvote\n * (weight === 0). Used to avoid stacking the SDK's post-broadcast optimistic\n * update on top of a platform-level optimistic update applied at press time.\n */\nexport function isVoteAlreadyReflected(\n activeVotes: Array<{ voter: string }>,\n voter: string | undefined,\n weight: number\n): boolean {\n const hasVoterRecord = activeVotes.some((v) => v.voter === voter);\n return weight !== 0 ? hasVoterRecord : !hasVoterRecord;\n}\n\n/**\n * Payload for voting on a post or comment.\n */\nexport interface VotePayload {\n /** Author of the post/comment to vote on */\n author: string;\n /** Permlink of the post/comment to vote on */\n permlink: string;\n /** Vote weight (-10000 to 10000, where 10000 = 100% upvote, -10000 = 100% downvote) */\n weight: number;\n /** Optional estimated payout change for optimistic UI */\n estimated?: number;\n}\n\n/**\n * Post-broadcast optimistic cache update for a vote: replaces the voter's\n * active_votes record and bumps the payout by `estimated`. Skipped when the\n * cached entry already reflects this vote (voter present for a vote, absent\n * for an unvote): platforms with their own at-press optimistic layer (e.g.\n * the mobile app) have applied it by the time the broadcast resolves, and\n * stacking a second update here double-counts the payout and clobbers the\n * platform's richer vote record until the deferred invalidation.\n */\nexport function applyVoteCacheUpdate(\n username: string | undefined,\n variables: VotePayload,\n qc?: QueryClient\n): void {\n const entry = EntriesCacheManagement.getEntry(variables.author, variables.permlink, qc);\n if (\n !entry?.active_votes ||\n isVoteAlreadyReflected(entry.active_votes, username, variables.weight)\n ) {\n return;\n }\n const newVotes = [\n ...entry.active_votes.filter((v) => v.voter !== username),\n ...(variables.weight !== 0 ? [{ rshares: variables.weight, voter: username! }] : [])\n ];\n const newPayout = entry.payout + (variables.estimated ?? 0);\n EntriesCacheManagement.updateVotes(\n variables.author,\n variables.permlink,\n newVotes,\n newPayout,\n qc\n );\n}\n\n/**\n * React Query mutation hook for voting on posts and comments.\n *\n * This mutation broadcasts a vote operation to the Hive blockchain,\n * supporting upvotes (positive weight) and downvotes (negative weight).\n *\n * @param username - The username of the voter (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 120) if adapter.recordActivity is available\n * - Invalidates post cache to refetch updated vote data\n * - Invalidates voting power cache to show updated VP\n *\n * **Vote Weight:**\n * - 10000 = 100% upvote\n * - 0 = remove vote\n * - -10000 = 100% downvote\n *\n * @example\n * ```typescript\n * const voteMutation = useVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Upvote a post\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: 10000\n * });\n *\n * // Remove vote\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: 0\n * });\n *\n * // Downvote\n * voteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * weight: -10000\n * });\n * ```\n *\n * @remarks\n * broadcastMode: async — Votes don't require block confirmation.\n * The vote is accepted into the mempool immediately; UI can optimistically update.\n */\nexport function useVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"vote\"],\n username,\n ({ author, permlink, weight }) => [\n buildVoteOp(username!, author, permlink, weight)\n ],\n async (result: any, variables) => {\n // Optimistic vote list + payout update (no-op when the cache already\n // reflects this vote — see applyVoteCacheUpdate).\n applyVoteCacheUpdate(username, variables);\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(120, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation — deferred for async broadcasts since onSuccess fires\n // at mempool acceptance before block inclusion.\n if (auth?.adapter?.invalidateQueries) {\n const doInvalidate = () => {\n auth.adapter!.invalidateQueries!([\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n QueryKeys.accounts.full(username)\n ]);\n };\n const mode = broadcastMode ?? 'async';\n if (mode === 'async') {\n setTimeout(doInvalidate, 4000);\n } else {\n doInvalidate();\n }\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys, getQueryClient } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildReblogOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { EntriesCacheManagement } from \"../cache/entries-cache-management\";\n\n/**\n * Payload for reblogging a post.\n */\nexport interface ReblogPayload {\n /** Original post author */\n author: string;\n /** Original post permlink */\n permlink: string;\n /** If true, removes the reblog instead of creating it */\n deleteReblog?: boolean;\n}\n\n/**\n * React Query mutation hook for reblogging posts.\n *\n * This mutation broadcasts a custom_json operation to reblog (or un-reblog)\n * a post to the user's blog feed.\n *\n * @param username - The username performing the reblog (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 130) if adapter.recordActivity is available\n * - Invalidates blog feed cache to show the reblogged post\n * - Invalidates post cache to update reblog status\n *\n * **Reblog vs Delete:**\n * - deleteReblog: false (default) - Creates a reblog\n * - deleteReblog: true - Removes an existing reblog\n *\n * @example\n * ```typescript\n * const reblogMutation = useReblog(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Reblog a post\n * reblogMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post'\n * });\n *\n * // Remove a reblog\n * reblogMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post',\n * deleteReblog: true\n * });\n * ```\n */\nexport function useReblog(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"reblog\"],\n username,\n ({ author, permlink, deleteReblog }) => [\n buildReblogOp(username!, author, permlink, deleteReblog ?? false)\n ],\n async (result: any, variables) => {\n // Optimistic reblog count update\n const entry = EntriesCacheManagement.getEntry(variables.author, variables.permlink);\n if (entry) {\n const newCount = Math.max(0, (entry.reblogs ?? 0) + (variables.deleteReblog ? -1 : 1));\n EntriesCacheManagement.updateReblogsCount(variables.author, variables.permlink, newCount);\n }\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(130, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation — deferred for async broadcasts since onSuccess fires\n // at mempool acceptance before block inclusion.\n const invalidate = () => {\n const qc = getQueryClient();\n qc.invalidateQueries({\n queryKey: QueryKeys.posts.accountPostsBlogPrefix(username!),\n });\n if (auth?.adapter?.invalidateQueries) {\n auth.adapter.invalidateQueries([\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n QueryKeys.posts.rebloggedBy(variables.author, variables.permlink),\n ]);\n }\n };\n const mode = broadcastMode ?? 'async';\n if (mode === 'async') {\n setTimeout(invalidate, 4000);\n } else {\n invalidate();\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\n/**\n * Beneficiary account and weight.\n */\nexport interface Beneficiary {\n /** Beneficiary account name */\n account: string;\n /** Beneficiary weight (10000 = 100%) */\n weight: number;\n}\n\n/**\n * Payload for creating a comment or post.\n */\nexport interface CommentPayload {\n /** Author of the comment/post */\n author: string;\n /** Permlink of the comment/post */\n permlink: string;\n /** Parent author (empty string for top-level posts) */\n parentAuthor: string;\n /** Parent permlink (category/tag for top-level posts) */\n parentPermlink: string;\n /** Title of the post (empty for comments) */\n title: string;\n /** Content body */\n body: string;\n /** JSON metadata object */\n jsonMetadata: Record;\n /**\n * Optional: set when this operation edits existing content rather than creating it.\n *\n * A `comment` operation is byte-identical for a create and an update, so only the\n * caller knows which it is. When set, no content activity is recorded. Activity\n * rewards content creation. Without this, an edit of content published elsewhere\n * is credited as content created here. Never broadcast.\n */\n isUpdate?: boolean;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"1000000.000 HBD\") */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n /** Beneficiaries array */\n beneficiaries?: Beneficiary[];\n };\n}\n\n/**\n * React Query mutation hook for creating posts and comments.\n *\n * This mutation broadcasts a comment operation (and optionally comment_options)\n * to create a new post or reply on the Hive blockchain.\n *\n * @param username - The username creating the comment/post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 100 for posts, 110 for comments) if adapter.recordActivity is\n * available, unless the payload sets `isUpdate`\n * - Invalidates feed caches to show the new content\n * - Invalidates parent post cache if this is a reply\n *\n * **Operations:**\n * - Always includes a comment operation\n * - Optionally includes comment_options operation for beneficiaries/rewards\n *\n * **Post vs Comment:**\n * - Post: parentAuthor = \"\", parentPermlink = category/tag\n * - Comment: parentAuthor = parent author, parentPermlink = parent permlink\n *\n * @example\n * ```typescript\n * const commentMutation = useComment(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Create a post\n * commentMutation.mutate({\n * author: 'alice',\n * permlink: 'my-awesome-post-20260209',\n * parentAuthor: '',\n * parentPermlink: 'technology',\n * title: 'My Awesome Post',\n * body: 'This is the post content...',\n * jsonMetadata: {\n * tags: ['technology', 'hive'],\n * app: 'ecency/3.0.0'\n * },\n * options: {\n * beneficiaries: [\n * { account: 'ecency', weight: 500 }\n * ]\n * }\n * });\n *\n * // Create a comment\n * commentMutation.mutate({\n * author: 'bob',\n * permlink: 're-alice-my-awesome-post-20260209',\n * parentAuthor: 'alice',\n * parentPermlink: 'my-awesome-post-20260209',\n * title: '',\n * body: 'Great post!',\n * jsonMetadata: { app: 'ecency/3.0.0' }\n * });\n * ```\n */\n/**\n * Resolve which content activity a broadcast earns, or `null` for none.\n *\n * Content activity rewards publishing, so an update earns nothing: the `comment`\n * operation an edit broadcasts is indistinguishable from a create on chain, which\n * leaves the caller as the only party that can tell them apart. Without this, editing\n * a post first published on another frontend is credited here as a post.\n */\nexport function resolveContentActivityType(\n payload: Pick\n): 100 | 110 | null {\n if (payload.isUpdate) {\n return null;\n }\n\n return payload.parentAuthor ? 110 : 100;\n}\n\nexport function useComment(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"comment\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n payload.parentAuthor,\n payload.parentPermlink,\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n beneficiaries = []\n } = payload.options;\n\n const extensions: any[] = [];\n\n // Add beneficiaries extension if provided\n if (beneficiaries.length > 0) {\n // Sort beneficiaries alphabetically by account name (required by blockchain)\n const sortedBeneficiaries = [...beneficiaries].sort((a, b) =>\n a.account.localeCompare(b.account)\n );\n\n extensions.push([\n 0,\n {\n beneficiaries: sortedBeneficiaries.map(b => ({\n account: b.account,\n weight: b.weight\n }))\n }\n ]);\n }\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n extensions\n )\n );\n }\n\n return operations;\n },\n async (result: any, variables) => {\n // Determine if this is a post or comment\n const isPost = !variables.parentAuthor;\n const activityType = resolveContentActivityType(variables);\n\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (activityType !== null && auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(activityType, txId, result?.block_num).catch(() => {});\n }\n\n // Cache invalidation (always runs regardless of recordActivity outcome)\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username),\n QueryKeys.resourceCredits.account(username!)\n ];\n\n // If this is a reply, invalidate parent post and discussions\n if (!isPost) {\n // Invalidate parent entry\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n // Invalidate discussions (matches all sort orders)\n // Use partial key to match all sort order variants\n // For nested replies, use rootAuthor/rootPermlink to match the root post's discussions\n // Fall back to parentAuthor/parentPermlink for direct replies to posts\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n }\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { Entry } from \"../types\";\nimport type { QueryClient } from \"@tanstack/react-query\";\n\n/**\n * Adds an optimistic entry to all discussions caches for the given root post.\n * Uses predicate matching to find all sort order variants.\n */\nexport function addOptimisticDiscussionEntry(\n entry: Entry,\n rootAuthor: string,\n rootPermlink: string,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n const queries = queryClient.getQueriesData({\n predicate: (query) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === rootAuthor &&\n key[3] === rootPermlink\n );\n },\n });\n\n for (const [queryKey, data] of queries) {\n if (data) {\n queryClient.setQueryData(queryKey, [entry, ...data]);\n }\n }\n}\n\n/**\n * Removes an entry from all discussions caches for the given root post.\n * Returns the previous state for rollback.\n */\nexport function removeOptimisticDiscussionEntry(\n author: string,\n permlink: string,\n rootAuthor: string,\n rootPermlink: string,\n qc?: QueryClient\n): Map {\n const queryClient = qc ?? getQueryClient();\n const snapshots = new Map();\n\n const queries = queryClient.getQueriesData({\n predicate: (query) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === rootAuthor &&\n key[3] === rootPermlink\n );\n },\n });\n\n for (const [queryKey, data] of queries) {\n if (data) {\n snapshots.set(queryKey, data);\n queryClient.setQueryData(\n queryKey,\n data.filter(\n (e) => e.author !== author || e.permlink !== permlink\n )\n );\n }\n }\n\n return snapshots;\n}\n\n/**\n * Restores discussion cache snapshots (for rollback on error).\n */\nexport function restoreDiscussionSnapshots(\n snapshots: Map,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n for (const [queryKey, data] of snapshots) {\n queryClient.setQueryData(queryKey, data);\n }\n}\n\n/**\n * Updates a specific entry in the SDK entry cache.\n * Returns the previous entry for rollback.\n */\nexport function updateEntryInCache(\n author: string,\n permlink: string,\n updates: Partial,\n qc?: QueryClient\n): Entry | undefined {\n const queryClient = qc ?? getQueryClient();\n const path = `/@${author}/${permlink}`;\n const previous = queryClient.getQueryData(QueryKeys.posts.entry(path));\n\n if (previous) {\n queryClient.setQueryData(QueryKeys.posts.entry(path), {\n ...previous,\n ...updates,\n });\n }\n\n return previous;\n}\n\n/**\n * Restores an entry in cache (for rollback on error).\n */\nexport function restoreEntryInCache(\n author: string,\n permlink: string,\n entry: Entry,\n qc?: QueryClient\n) {\n const queryClient = qc ?? getQueryClient();\n const path = `/@${author}/${permlink}`;\n queryClient.setQueryData(QueryKeys.posts.entry(path), entry);\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildDeleteCommentOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport {\n removeOptimisticDiscussionEntry,\n restoreDiscussionSnapshots,\n} from \"../cache/discussions-cache-utils\";\nimport type { Entry } from \"../types\";\n\n/**\n * Payload for deleting a comment or post.\n */\nexport interface DeleteCommentPayload {\n /** Author of the comment/post to delete */\n author: string;\n /** Permlink of the comment/post to delete */\n permlink: string;\n /** Optional: Parent author (for cache invalidation of discussions) */\n parentAuthor?: string;\n /** Optional: Parent permlink (for cache invalidation of discussions) */\n parentPermlink?: string;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n}\n\n/**\n * React Query mutation hook for deleting posts and comments.\n *\n * This mutation broadcasts a delete_comment operation to the Hive blockchain.\n * Includes optimistic removal from discussions cache with rollback on error.\n *\n * @param username - The username deleting the comment/post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n */\nexport function useDeleteComment(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"deleteComment\"],\n username,\n ({ author, permlink }) => [\n buildDeleteCommentOp(author, permlink)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username)\n ];\n\n // If this is a reply, invalidate parent post and discussions\n if (variables.parentAuthor && variables.parentPermlink) {\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n }\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n {\n broadcastMode,\n // Optimistic removal: remove from discussions cache before broadcast\n onMutate: async (variables) => {\n const rootAuthor = variables.rootAuthor || variables.parentAuthor;\n const rootPermlink = variables.rootPermlink || variables.parentPermlink;\n\n if (rootAuthor && rootPermlink) {\n const snapshots = removeOptimisticDiscussionEntry(\n variables.author,\n variables.permlink,\n rootAuthor,\n rootPermlink\n );\n return { snapshots };\n }\n return {};\n },\n // Rollback on error: restore discussions cache\n onError: (_error, _variables, context) => {\n const { snapshots } = (context as { snapshots?: Map }) ?? {};\n if (snapshots) {\n restoreDiscussionSnapshots(snapshots);\n }\n },\n }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\n/**\n * Payload for creating a cross-post.\n */\nexport interface CrossPostPayload {\n /** Author of the cross-post (current user) */\n author: string;\n /** Permlink of the cross-post (usually: original-permlink-community-id) */\n permlink: string;\n /** Community ID to cross-post to (used as parent_permlink) */\n parentPermlink: string;\n /** Title of the cross-post (same as original) */\n title: string;\n /** Body of the cross-post (includes reference to original) */\n body: string;\n /** JSON metadata (must include original_author, original_permlink, tags, app) */\n jsonMetadata: Record;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"0.000 HBD\" for declined payout) */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n };\n}\n\n/**\n * React Query mutation hook for creating cross-posts.\n *\n * A cross-post is a special type of post that references an original post\n * and publishes it to a different community.\n *\n * @param username - The username creating the cross-post (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates feed/blog caches to show the new cross-post\n *\n * **Operations:**\n * - Always includes a comment operation (with empty parent_author for top-level post)\n * - Optionally includes comment_options operation for rewards/beneficiaries\n *\n * **Metadata Requirements:**\n * The jsonMetadata must include:\n * - `original_author`: Author of the original post\n * - `original_permlink`: Permlink of the original post\n * - `tags`: Tags for the cross-post (typically [\"cross-post\"])\n * - `app`: Application identifier (e.g., \"ecency/3.0.0-vision\")\n *\n * @example\n * ```typescript\n * const crossPostMutation = useCrossPost(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Create a cross-post\n * crossPostMutation.mutate({\n * author: 'alice',\n * permlink: 'great-post-hive-123456',\n * parentPermlink: 'hive-123456', // community ID\n * title: 'Great Post',\n * body: 'This is a cross post of [@bob/great-post](/technology/@bob/great-post) by @alice.

Check this out!',\n * jsonMetadata: {\n * app: 'ecency/3.0.0-vision',\n * tags: ['cross-post'],\n * original_author: 'bob',\n * original_permlink: 'great-post'\n * },\n * options: {\n * maxAcceptedPayout: '0.000 HBD',\n * allowCurationRewards: false\n * }\n * });\n * ```\n */\nexport function useCrossPost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"cross-post\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation (empty parent_author for top-level post)\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n \"\", // empty parent_author for top-level post\n payload.parentPermlink, // community ID\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n } = payload.options;\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n [] // No beneficiaries for cross-posts\n )\n );\n }\n\n return operations;\n },\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.accounts.full(username),\n // Invalidate target community feed so cross-post appears\n {\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"posts-ranked\" &&\n key[3] === variables.parentPermlink\n );\n }\n }\n ];\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommentOp, buildCommentOptionsOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\nimport type { Beneficiary } from \"./use-comment\";\n\n/**\n * Payload for updating a reply/comment.\n */\nexport interface UpdateReplyPayload {\n /** Author of the comment/post */\n author: string;\n /** Permlink of the comment/post being updated */\n permlink: string;\n /** Parent author */\n parentAuthor: string;\n /** Parent permlink */\n parentPermlink: string;\n /** Title (empty for comments) */\n title: string;\n /** Updated content body */\n body: string;\n /** Updated JSON metadata object */\n jsonMetadata: Record;\n /** Optional: Root post author (for nested replies, used for discussions cache invalidation) */\n rootAuthor?: string;\n /** Optional: Root post permlink (for nested replies, used for discussions cache invalidation) */\n rootPermlink?: string;\n /** Optional: Comment options (beneficiaries, rewards) */\n options?: {\n /** Maximum accepted payout (e.g., \"1000000.000 HBD\") */\n maxAcceptedPayout?: string;\n /** Percent of payout in HBD (10000 = 100%) */\n percentHbd?: number;\n /** Allow votes on this content */\n allowVotes?: boolean;\n /** Allow curation rewards */\n allowCurationRewards?: boolean;\n /** Beneficiaries array */\n beneficiaries?: Beneficiary[];\n };\n}\n\n/**\n * React Query mutation hook for updating existing replies/comments.\n *\n * This mutation broadcasts a comment operation (and optionally comment_options)\n * to update an existing reply/comment on the Hive blockchain.\n *\n * @param username - The username updating the comment (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates parent post cache to reflect the updated comment\n * - Invalidates discussions cache (all sort orders)\n * - Invalidates RC cache (RC decreases after updating)\n *\n * **Operations:**\n * - Always includes a comment operation\n * - Optionally includes comment_options operation for beneficiaries/rewards\n *\n * **Important:**\n * - Updates use the same comment operation as creating new comments\n * - The blockchain identifies this as an update based on matching author/permlink\n * - Only the author can update their own content\n * - Content can only be updated before payout (within 7 days)\n *\n * @example\n * ```typescript\n * const updateReplyMutation = useUpdateReply(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Update a reply\n * updateReplyMutation.mutate({\n * author: 'alice',\n * permlink: 're-bob-my-post-20260209',\n * parentAuthor: 'bob',\n * parentPermlink: 'my-post-20260209',\n * title: '',\n * body: 'Updated comment content!',\n * jsonMetadata: {\n * tags: ['comment'],\n * app: 'ecency/3.0.0-vision'\n * },\n * rootAuthor: 'bob',\n * rootPermlink: 'my-post-20260209'\n * });\n * ```\n */\nexport function useUpdateReply(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"posts\", \"update-reply\"],\n username,\n (payload) => {\n const operations: Operation[] = [];\n\n // Main comment operation (same operation for create and update)\n operations.push(\n buildCommentOp(\n payload.author,\n payload.permlink,\n payload.parentAuthor,\n payload.parentPermlink,\n payload.title,\n payload.body,\n payload.jsonMetadata\n )\n );\n\n // Optional comment options operation\n if (payload.options) {\n const {\n maxAcceptedPayout = \"1000000.000 HBD\",\n percentHbd = 10000,\n allowVotes = true,\n allowCurationRewards = true,\n beneficiaries = []\n } = payload.options;\n\n const extensions: any[] = [];\n\n // Add beneficiaries extension if provided\n if (beneficiaries.length > 0) {\n // Sort beneficiaries alphabetically by account name (required by blockchain)\n const sortedBeneficiaries = [...beneficiaries].sort((a, b) =>\n a.account.localeCompare(b.account)\n );\n\n extensions.push([\n 0,\n {\n beneficiaries: sortedBeneficiaries.map(b => ({\n account: b.account,\n weight: b.weight\n }))\n }\n ]);\n }\n\n operations.push(\n buildCommentOptionsOp(\n payload.author,\n payload.permlink,\n maxAcceptedPayout,\n percentHbd,\n allowVotes,\n allowCurationRewards,\n extensions\n )\n );\n }\n\n return operations;\n },\n async (_result: any, variables) => {\n // No activity is recorded here. Activity rewards creating content. Every\n // broadcast from this mutation edits content that already exists.\n\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n QueryKeys.resourceCredits.account(username!)\n ];\n\n // Invalidate parent entry\n queriesToInvalidate.push(\n QueryKeys.posts.entry(`/@${variables.parentAuthor}/${variables.parentPermlink}`)\n );\n\n // Invalidate discussions (matches all sort orders)\n // Use partial key to match all sort order variants\n // For nested replies, use rootAuthor/rootPermlink to match the root post's discussions\n // Fall back to parentAuthor/parentPermlink for direct replies to posts\n const discussionsAuthor = variables.rootAuthor || variables.parentAuthor;\n const discussionsPermlink = variables.rootPermlink || variables.parentPermlink;\n\n queriesToInvalidate.push({\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"discussions\" &&\n key[2] === discussionsAuthor &&\n key[3] === discussionsPermlink\n );\n }\n });\n\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildPromoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for promoting a post using Ecency Points.\n */\nexport interface PromotePayload {\n /** Post author */\n author: string;\n /** Post permlink */\n permlink: string;\n /** Promotion duration in days */\n duration: number;\n}\n\n/**\n * React Query mutation hook for promoting posts.\n *\n * This mutation broadcasts a custom_json operation to promote a post\n * using Ecency Points. The post will appear in promoted feeds for the\n * specified duration.\n *\n * @param username - The username promoting the post (required for broadcast, deducts points from this user)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates promoted posts cache to show newly promoted content\n * - Invalidates user points balance\n * - Invalidates post cache to update promotion status\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"ecency_promote\"\n * - JSON: {\"user\": \"username\", \"author\": \"postauthor\", \"permlink\": \"postpermlink\", \"duration\": 7}\n * - Authority: Active key (required for point spending)\n *\n * **Cost:**\n * - Costs Ecency Points based on duration\n * - User must have sufficient points balance\n *\n * @example\n * ```typescript\n * const promoteMutation = usePromote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Promote a post for 7 days\n * promoteMutation.mutate({\n * author: 'alice',\n * permlink: 'my-great-post',\n * duration: 7\n * });\n * ```\n */\nexport function usePromote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"ecency\", \"promote\"],\n username,\n ({ author, permlink, duration }) => [\n buildPromoteOp(username!, author, permlink, duration)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n // Invalidate promoted posts feed\n [...QueryKeys.posts._promotedPrefix],\n // Invalidate user points balance\n [...QueryKeys.points._prefix(username!)],\n // Invalidate specific post cache to update promotion status\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { Entry } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport type ValidatePostCreatingOptions = {\n delays?: number[];\n};\n\nconst DEFAULT_VALIDATE_POST_DELAYS = [3000, 3000, 3000];\n\nconst delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));\n\nasync function getContent(author: string, permlink: string): Promise {\n return callRPC(\"condenser_api.get_content\", [\n author,\n permlink,\n ]) as Promise;\n}\n\nexport async function validatePostCreating(\n author: string,\n permlink: string,\n attempts = 0,\n options?: ValidatePostCreatingOptions\n) {\n const delays = options?.delays ?? DEFAULT_VALIDATE_POST_DELAYS;\n\n let response: Entry | undefined;\n try {\n response = await getContent(author, permlink);\n } catch (e) {\n response = undefined;\n }\n\n if (response || attempts >= delays.length) {\n return;\n }\n\n const waitMs = delays[attempts];\n if (waitMs > 0) {\n await delay(waitMs);\n }\n\n return validatePostCreating(author, permlink, attempts + 1, options);\n}\n","export * from \"./use-record-activity\";\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\n\ntype ActivityType =\n // Editor related\n | \"post-created\"\n | \"post-updated\"\n | \"post-scheduled\"\n | \"draft-created\"\n | \"video-published\"\n\n // Legacy editor related\n | \"legacy-post-created\"\n | \"legacy-post-updated\"\n | \"legacy-post-scheduled\"\n | \"legacy-draft-created\"\n | \"legacy-video-published\"\n\n // Perks related\n | \"perks-points-by-qr\"\n | \"perks-account-boost\"\n | \"perks-promote\"\n | \"perks-boost-plus\"\n | \"points-claimed\"\n | \"spin-rolled\"\n\n // Signup related\n | \"signed-up-with-wallets\"\n | \"signed-up-with-email\";\n\nexport interface RecordActivityOptions {\n url?: string;\n domain?: string;\n}\n\n/**\n * Get current location info safely (works in browser and Node.js)\n * Returns empty strings in non-browser environments\n */\nfunction getLocationInfo(): { url: string; domain: string } {\n if (typeof window !== \"undefined\" && window.location) {\n return {\n url: window.location.href,\n domain: window.location.host,\n };\n }\n return { url: \"\", domain: \"\" };\n}\n\nexport function useRecordActivity(\n username: string | undefined,\n activityType: ActivityType,\n options?: RecordActivityOptions\n) {\n return useMutation({\n mutationKey: [\"analytics\", activityType],\n mutationFn: async () => {\n if (!activityType) {\n throw new Error(\"[SDK][Analytics] – no activity type provided\");\n }\n const fetchApi = getBoundFetch();\n\n // Use provided values or auto-detect from browser environment\n // Falls back to empty strings in non-browser environments (Node.js, React Native, etc.)\n const locationInfo = getLocationInfo();\n const url = options?.url ?? locationInfo.url;\n const domain = options?.domain ?? locationInfo.domain;\n\n try {\n await fetchApi(CONFIG.plausibleHost + \"/api/event\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n name: activityType,\n url,\n domain,\n props: {\n username,\n },\n }),\n });\n } catch {\n // Analytics is fire-and-forget - network failures, ad blockers,\n // and CORS issues should not bubble up as user-facing errors\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { LeaderBoardDuration, LeaderBoardItem } from \"../types\";\n\nexport function getDiscoverLeaderboardQueryOptions(duration: LeaderBoardDuration) {\n return queryOptions({\n queryKey: [\"analytics\", \"discover-leaderboard\", duration],\n queryFn: async ({ signal }) => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/leaderboard/${duration}`,\n { signal }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch leaderboard: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { CurationDuration, CurationItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getDiscoverCurationQueryOptions(duration: CurationDuration) {\n return queryOptions({\n queryKey: [\"analytics\", \"discover-curation\", duration],\n queryFn: async ({ signal }) => {\n const response = await fetch(\n CONFIG.privateApiHost + `/private-api/curation/${duration}`,\n { signal }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch curation data: ${response.status}`);\n }\n\n const data = (await response.json()) as CurationItem[];\n\n // Fetch account data for efficiency calculation\n const accounts = data.map((item) => item.account);\n const accountsResponse = await callRPC(\"condenser_api.get_accounts\", [accounts]);\n\n // Calculate efficiency for each curator\n for (let index = 0; index < accountsResponse.length; index++) {\n const element = accountsResponse[index];\n const curator = data[index];\n\n // Convert Asset to string if needed\n const vestingShares = typeof element.vesting_shares === 'string'\n ? element.vesting_shares\n : element.vesting_shares.toString();\n const receivedVestingShares = typeof element.received_vesting_shares === 'string'\n ? element.received_vesting_shares\n : element.received_vesting_shares.toString();\n const delegatedVestingShares = typeof element.delegated_vesting_shares === 'string'\n ? element.delegated_vesting_shares\n : element.delegated_vesting_shares.toString();\n const vestingWithdrawRate = typeof element.vesting_withdraw_rate === 'string'\n ? element.vesting_withdraw_rate\n : element.vesting_withdraw_rate.toString();\n\n const effectiveVest: number =\n parseFloat(vestingShares) +\n parseFloat(receivedVestingShares) -\n parseFloat(delegatedVestingShares) -\n parseFloat(vestingWithdrawRate);\n // `hp` is the reward in Hive Power; the denominator stays in VESTS, which\n // is what the ranking has always compared. Every curator is scaled the\n // same way, so the ordering is unaffected by the unit mismatch.\n curator.efficiency = curator.hp / effectiveVest;\n }\n\n // Sort by efficiency descending\n data.sort((a: CurationItem, b: CurationItem) => b.efficiency - a.efficiency);\n\n return data;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { PageStatsResponse } from \"../types\";\n\n/**\n * Get page statistics from the private analytics API\n *\n * @param url - URL to get stats for\n * @param dimensions - Dimensions to query (default: [])\n * @param metrics - Metrics to query (default: [\"visitors\", \"pageviews\", \"visit_duration\"])\n * @param dateRange - Date range for the query (e.g. \"day\", \"7d\", \"30d\", \"all\")\n */\nexport function getPageStatsQueryOptions(\n url: string,\n dimensions: string[] = [],\n metrics: string[] = [\"visitors\", \"pageviews\", \"visit_duration\"],\n dateRange?: string\n) {\n // Sort arrays to ensure stable query keys regardless of input order\n const sortedDimensions = [...dimensions].sort();\n const sortedMetrics = [...metrics].sort();\n\n return queryOptions({\n queryKey: [\"analytics\", \"page-stats\", url, sortedDimensions, sortedMetrics, dateRange],\n queryFn: async ({ signal }) => {\n const response = await fetch(CONFIG.privateApiHost + \"/api/stats\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n metrics,\n url: encodeURIComponent(url),\n dimensions,\n date_range: dateRange,\n }),\n signal,\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch page stats: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n enabled: !!url,\n // Analytics data should always be fresh - users expect current stats when changing range\n staleTime: 0,\n });\n}\n","/**\n * 3Speak takes an 11% beneficiary share on posts that embed one of its videos.\n *\n * This lives in the SDK because the rule is a payout contract that both the web app and the\n * mobile app have to apply identically. It was previously duplicated in each, which meant a\n * change to the weight, or to what counts as an embed, could land on one platform and not the\n * other and silently misroute revenue.\n */\n\n/** A beneficiary route as it appears in `comment_options`. */\nexport interface ThreeSpeakBeneficiaryRoute {\n account: string;\n weight: number;\n src?: string;\n}\n\nexport const THREESPEAK_BENEFICIARY_ACCOUNT = \"threespeakfund\";\n\n/** Beneficiary weight in basis points: 1100 = 11%. */\nexport const THREESPEAK_BENEFICIARY_WEIGHT = 1100;\n\n/**\n * Whether the body embeds a 3Speak video.\n *\n * Matches an actual embed url (e.g. `https://play.3speak.tv/embed?v=user/id`), not a plain\n * text mention of \"3speak.tv/embed\", which would otherwise attach an 11% route to a post that\n * merely talks about 3Speak.\n *\n * `3speak.tv` must be the host, either bare or under dot-delimited subdomains. The previous\n * `[a-z.]*` prefix also matched a lookalike domain such as `fake3speak.tv`, which would have\n * routed 11% of a user's rewards to threespeakfund for a video 3Speak never hosted. Matching\n * is case-insensitive because hostnames are, and a missed match means the route is silently\n * not attached rather than anything failing loudly.\n *\n * Note this requires an `/embed` path segment. The embed url is not built locally, it comes\n * back from 3Speak on upload, so if that shape ever changes this predicate stops recognising\n * it and the route is silently not attached.\n */\nexport function hasThreeSpeakEmbed(body: string): boolean {\n return /https?:\\/\\/([a-z0-9-]+\\.)*3speak\\.tv\\/embed[?/]/i.test(body);\n}\n\n/**\n * Ensures the 3Speak beneficiary is present, at the correct weight, when the body embeds a\n * 3Speak video. Other beneficiaries are preserved and the input is never mutated. Returns the\n * original array reference untouched when there is nothing to change, so callers can use it as\n * a cheap equality check.\n */\nexport function enforceThreeSpeakBeneficiary(\n beneficiaries: T[],\n body: string\n): (T | ThreeSpeakBeneficiaryRoute)[] {\n if (!hasThreeSpeakEmbed(body)) {\n return beneficiaries;\n }\n\n const existing = beneficiaries.find((b) => b.account === THREESPEAK_BENEFICIARY_ACCOUNT);\n\n if (existing && existing.weight === THREESPEAK_BENEFICIARY_WEIGHT) {\n return beneficiaries;\n }\n\n if (existing) {\n return beneficiaries.map((b) =>\n b.account === THREESPEAK_BENEFICIARY_ACCOUNT\n ? { ...b, weight: THREESPEAK_BENEFICIARY_WEIGHT }\n : b\n );\n }\n\n return [\n ...beneficiaries,\n { account: THREESPEAK_BENEFICIARY_ACCOUNT, weight: THREESPEAK_BENEFICIARY_WEIGHT }\n ];\n}\n\n/** Whether a beneficiary entry is the 3Speak route, which the UI locks from editing. */\nexport function isThreeSpeakBeneficiary(account: string): boolean {\n return account === THREESPEAK_BENEFICIARY_ACCOUNT;\n}\n","export * from \"./get-account-token-query-options\";\nexport * from \"./get-account-videos-query-options\";\n","export * from \"./get-decode-memo-query-options\";\n","import { queryOptions } from \"@tanstack/react-query\";\nimport hs from \"hivesigner\";\n\nexport function getDecodeMemoQueryOptions(\n username: string,\n memo: string,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"hivesigner\", \"decode-memo\", username],\n queryFn: async () => {\n if (accessToken) {\n const hsClient = new hs.Client({\n accessToken,\n });\n return hsClient.decode(memo);\n }\n },\n });\n}\n","import * as queries from \"./queries\";\n\nconst HiveSignerIntegration = {\n queries,\n};\n\nexport { HiveSignerIntegration };\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { HiveSignerIntegration } from \"../../hivesigner\";\nimport { getBoundFetch, getQueryClient } from \"@/modules/core\";\n\nexport function getAccountTokenQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"3speak\", \"authenticate\", username],\n enabled: !!username && !!accessToken,\n queryFn: async () => {\n if (!username || !accessToken) {\n throw new Error(\"[SDK][Integrations][3Speak] – anon user\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://studio.3speak.tv/mobile/login?username=${username}&hivesigner=true`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n const memoQueryOptions =\n HiveSignerIntegration.queries.getDecodeMemoQueryOptions(\n username,\n (await response.json()).memo,\n accessToken\n );\n await getQueryClient().prefetchQuery(memoQueryOptions);\n const { memoDecoded } = getQueryClient().getQueryData(\n memoQueryOptions.queryKey\n );\n\n return memoDecoded.replace(\"#\", \"\");\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ThreeSpeakVideo } from \"../types\";\nimport { getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { getAccountTokenQueryOptions } from \"./get-account-token-query-options\";\n\nexport function getAccountVideosQueryOptions(\n username: string | undefined,\n accessToken: string | undefined\n) {\n return queryOptions({\n queryKey: [\"integrations\", \"3speak\", \"videos\", username],\n enabled: !!username && !!accessToken,\n queryFn: async () => {\n if (!username || !accessToken) {\n throw new Error(\"[SDK][Integrations][3Speak] – anon user\");\n }\n\n const tokenQueryOptions = getAccountTokenQueryOptions(\n username,\n accessToken\n );\n\n await getQueryClient().prefetchQuery(tokenQueryOptions);\n const token = getQueryClient().getQueryData(tokenQueryOptions.queryKey);\n if (!token) {\n throw new Error(\"[SDK][Integrations][3Speak] – missing account token\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://studio.3speak.tv/mobile/api/my-videos`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Bearer ${token}`,\n },\n }\n );\n return (await response.json()) as ThreeSpeakVideo[];\n },\n });\n}\n","export * from \"./types\";\nexport * from \"./functions\";\nimport * as queries from \"./queries\";\n\nconst ThreeSpeakIntegration = {\n queries,\n};\n\nexport { ThreeSpeakIntegration };\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getBoundFetch } from \"@/modules/core\";\n\nexport function getHivePoshLinksQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"integrations\", \"hiveposh\", \"links\", username],\n retry: false, // Don't retry on user not found errors\n queryFn: async () => {\n try {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `https://hiveposh.com/api/v0/linked-accounts/${username}`,\n {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n // Handle 400 error when user is not registered on HivePosh\n if (response.status === 400) {\n const errorData = await response.json().catch(() => ({}));\n // Silently return null for \"User Not Connected\" errors\n if (errorData?.message === \"User Not Connected\") {\n return null;\n }\n }\n\n if (!response.ok) {\n return null;\n }\n\n const data = await response.json();\n\n return {\n twitter: {\n username: data.twitter_username,\n profile: data.twitter_profile,\n },\n reddit: {\n username: data.reddit_username,\n profile: data.reddit_profile,\n },\n } satisfies Record<\n \"twitter\" | \"reddit\",\n { username: string; profile: string }\n >;\n } catch (err) {\n // Silently handle all HivePosh API errors\n return null;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch } from \"@/modules/core\";\n\nexport interface StatsResponse {\n results: [\n {\n metrics: number[];\n dimensions: string[];\n },\n ];\n query: {\n site_id: string;\n metrics: string[];\n date_range: string[];\n filters: string[];\n };\n}\ninterface UseStatsQueryOptions {\n url: string;\n dimensions?: string[];\n metrics?: string[];\n /**\n * Which dimension the `url` is matched against. `event:page` (default) matches\n * any visit that viewed the page; `visit:entry_page` matches only visits that\n * landed on it. The API route validates this against an allow-list.\n */\n filterBy?: \"event:page\" | \"visit:entry_page\";\n /**\n * Plausible `date_range`. Pass a tuple `[from, to]` (ISO `YYYY-MM-DD`) to scope\n * the query — e.g. a post's creation date through today. Scoping is essential:\n * ClickHouse orders events by `(site_id, toDate(timestamp), …)` and partitions\n * by month, so a bounded range prunes to a few granules instead of scanning the\n * whole history. Omitting it falls back to the route default (`\"all\"`), which on\n * a high-traffic site is a multi-second full scan. Plausible also accepts the\n * relative keywords `\"day\"`, `\"7d\"`, `\"30d\"`, `\"all\"`.\n */\n dateRange?: string | [string, string];\n enabled?: boolean;\n}\n\nexport function getStatsQueryOptions({\n url,\n dimensions = [],\n metrics = [\"visitors\", \"pageviews\", \"visit_duration\"],\n filterBy = \"event:page\",\n dateRange,\n enabled = true,\n}: UseStatsQueryOptions) {\n return queryOptions({\n queryKey: [\"integrations\", \"plausible\", url, dimensions, metrics, filterBy, dateRange],\n queryFn: async () => {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(`${CONFIG.privateApiHost}/api/stats`, {\n method: \"POST\",\n body: JSON.stringify({\n metrics,\n url: encodeURIComponent(url),\n dimensions,\n filterBy,\n // Only forward a range when set, so the route keeps owning the default.\n ...(dateRange ? { date_range: dateRange } : {}),\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n // The proxy route returns 5xx (504/502) with an empty body on a Plausible\n // timeout/transport error, and Plausible itself can return a 4xx error JSON.\n // Without this guard those parse into an object with no `results`, and the UI\n // silently renders 0 — indistinguishable from a real zero. Throw instead so\n // React Query surfaces the error and retries.\n if (!response.ok) {\n throw new Error(`Failed to fetch Plausible stats: ${response.status}`);\n }\n\n return (await response.json()) as StatsResponse;\n },\n enabled: !!url && enabled,\n // Stats queries are now date-scoped and cheap; a single retry rides out a\n // transient slow scan without re-introducing the all-time pile-up.\n retry: 1,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getRcStatsQueryOptions() {\n return queryOptions({\n queryKey: [\"resource-credits\", \"stats\"],\n queryFn: async () => {\n const response = await callRPC(\"rc_api.get_rc_stats\", {});\n return response.rc_stats;\n },\n });\n}\n","import { callRPC } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getAccountRcQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"resource-credits\", \"account\", username],\n queryFn: async (): Promise => {\n const result = await callRPC(\"rc_api.find_rc_accounts\", {\n accounts: [username],\n });\n return result.rc_accounts;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { RcResourceParams } from \"../types/resource-params\";\n\n/**\n * Curve coefficients and sizing constants used to price resource usage.\n *\n * These only change at a hardfork, so the entry is kept for the session:\n * `gcTime: Infinity` is the one value that schedules no gc timer at all, so it\n * does not hold a request's query cache open on the server the way a long\n * finite window would.\n *\n * `staleTime` stays bounded on purpose. Making it infinite too would mean a\n * long-lived session keeps pricing with pre-hardfork coefficients forever,\n * quietly producing wrong RC estimates with no way to recover short of a\n * reload. A day is long enough that this is effectively never refetched, and\n * short enough that a hardfork corrects itself.\n */\nexport function getRcResourceParamsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.resourceCredits.resourceParams(),\n staleTime: 24 * 60 * 60 * 1000,\n gcTime: Infinity,\n queryFn: async () => (await callRPC(\"rc_api.get_resource_params\", {})) as RcResourceParams\n });\n}\n","/** Shape returned by `rc_api.get_resource_params`. Numbers arrive as strings. */\nexport interface RcPriceCurveParams {\n coeff_a: string | number;\n coeff_b: string | number;\n shift: string | number;\n}\n\nexport interface RcResourceDynamicsParams {\n resource_unit: string | number;\n budget_per_time_unit: string | number;\n pool_eq: string | number;\n max_pool_size: string | number;\n}\n\nexport interface RcResourceParamEntry {\n resource_dynamics_params: RcResourceDynamicsParams;\n price_curve_params: RcPriceCurveParams;\n}\n\n/**\n * Per-operation and per-transaction sizing constants. Only the members this\n * module needs are declared; the node returns many more.\n */\nexport interface RcSizeInfo {\n resource_state_bytes: {\n comment_base_size: number;\n comment_permlink_char_size: number;\n comment_beneficiaries_member_size: number;\n vote_size: number;\n transaction_base_size: number;\n [key: string]: number;\n };\n resource_execution_time: {\n comment_time: number;\n comment_options_time: number;\n vote_time: number;\n transaction_time: number;\n verify_authority_time: number;\n [key: string]: number;\n };\n [key: string]: Record;\n}\n\nexport interface RcResourceParams {\n resource_params: Record;\n size_info: RcSizeInfo;\n}\n\n/**\n * Resource order is consensus-defined (`HIVE_RC_NUM_RESOURCE_TYPES`) and the\n * `pool`, `share` and `budget` arrays in rc_stats are indexed by it.\n */\nexport const RC_RESOURCE_NAMES = [\n \"resource_history_bytes\",\n \"resource_new_accounts\",\n \"resource_market_bytes\",\n \"resource_state_bytes\",\n \"resource_execution_time\"\n] as const;\n\nexport type RcResourceName = (typeof RC_RESOURCE_NAMES)[number];\n\nexport interface RcCostBreakdown {\n resource: RcResourceName;\n usage: number;\n cost: number;\n}\n","import { utf8ByteLength, varintByteLength } from \"@/modules/core/utf8\";\nimport {\n RC_RESOURCE_NAMES,\n type RcCostBreakdown,\n type RcPriceCurveParams,\n type RcResourceName,\n type RcResourceParams,\n type RcSizeInfo\n} from \"../types/resource-params\";\nimport type { RcStats } from \"../types/stats\";\n\n/**\n * What the chain actually charges for publishing a comment, rather than the\n * network-average cost of an average comment.\n *\n * The average is a poor guide for posts: it is dominated by short replies,\n * while a long post is charged mostly on `history_bytes`, which is the\n * serialized transaction size. A real case: an account holding 21.3B RC was\n * told it could afford 17 posts, then a 46,620-byte post was rejected needing\n * 23.3B RC, more than that account's entire maximum.\n *\n * This is a direct port of `resource_credits::compute_cost` and the\n * `comment_operation` arm of `count_resources` from hive, so it tracks what\n * the node does instead of approximating it. Verified against a real\n * rejection: usage reproduces exactly and total cost lands within 0.3%, the\n * residual coming from `share` being published rounded to four digits.\n */\n\n/**\n * Fixed transaction header: ref_block_num(2) + ref_block_prefix(4) +\n * expiration(4) + the extensions varint(1).\n */\nconst TRANSACTION_HEADER_BYTES = 11;\n/** Compact signature, 65 bytes each. */\nconst SIGNATURE_BYTES = 65;\n/** asset = amount int64(8) + precision(1) + symbol(7). */\nconst ASSET_BYTES = 16;\n\nconst big = (v: string | number): bigint => BigInt(typeof v === \"string\" ? v : Math.trunc(v));\n\n/**\n * Port of `resource_credits::compute_cost` (libraries/chain/rc/rc_utility.cpp).\n *\n * BigInt is required, not stylistic: `coeff_a` is ~1.05e19, well past\n * Number.MAX_SAFE_INTEGER, so float arithmetic loses the low bits and the\n * result drifts.\n */\nexport function computeResourceCost(\n curve: RcPriceCurveParams,\n pool: number,\n resourceCount: number,\n regenShare: number\n): number {\n if (resourceCount <= 0 || regenShare <= 0) {\n return 0;\n }\n\n const coeffA = big(curve.coeff_a);\n const coeffB = big(curve.coeff_b);\n const shift = big(curve.shift);\n\n // The node shifts before multiplying by the resource count, because\n // regen * coeff_a already risks overflowing 128 bits. Order matters.\n let num = (big(regenShare) * coeffA) >> shift;\n num += 1n;\n num *= big(resourceCount);\n\n const denom = coeffB + (pool > 0 ? big(pool) : 0n);\n if (denom === 0n) {\n return 0;\n }\n\n return Number(num / denom + 1n);\n}\n\nexport interface CommentResourceUsageInput {\n /** Byte length of the serialized transaction. */\n transactionBytes: number;\n permlinkLength: number;\n /** Signatures on the transaction; a normal post carries one. */\n signatures?: number;\n /**\n * Beneficiary count on the companion comment_options, when publish appends\n * one. The chain counts resources for every operation in the transaction,\n * not just the comment.\n */\n beneficiaries?: number;\n hasCommentOptions?: boolean;\n}\n\n/**\n * Port of the `comment_operation` and `comment_options_operation` arms of\n * `count_resources` (libraries/chain/rc/resource_count.cpp). Reproduces the\n * chain's numbers exactly, see the spec.\n */\nexport function countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength,\n signatures = 1,\n beneficiaries = 0,\n hasCommentOptions = false\n }: CommentResourceUsageInput,\n sizeInfo: RcSizeInfo\n): Record {\n const state = sizeInfo.resource_state_bytes;\n const exec = sizeInfo.resource_execution_time;\n\n return {\n resource_history_bytes: transactionBytes,\n resource_new_accounts: 0,\n resource_market_bytes: 0,\n resource_state_bytes:\n state.comment_base_size +\n state.comment_permlink_char_size * permlinkLength +\n state.transaction_base_size +\n // comment_payout_beneficiaries is visited from comment_options\n state.comment_beneficiaries_member_size * beneficiaries,\n resource_execution_time:\n exec.comment_time +\n exec.transaction_time +\n exec.verify_authority_time * signatures +\n (hasCommentOptions ? exec.comment_options_time : 0)\n };\n}\n\nexport interface CommentLike {\n author: string;\n permlink: string;\n parent_author: string;\n parent_permlink: string;\n title: string;\n body: string;\n json_metadata: string;\n}\n\n\n/** A beneficiary route as it appears in comment_options extensions. */\nexport interface BeneficiaryRoute {\n account: string;\n weight: number;\n}\n\n/**\n * The comment_options operation publish appends when the author sets\n * beneficiaries or a non-default reward split.\n */\nexport interface CommentOptionsLike {\n beneficiaries?: BeneficiaryRoute[];\n}\n\n/** Serialized bytes of one string field: its varint length plus its bytes. */\nconst stringFieldBytes = (value: string): number => {\n const length = utf8ByteLength(value);\n return varintByteLength(length) + length;\n};\n\nconst commentOperationBytes = (op: CommentLike): number =>\n 1 + // operation variant id\n stringFieldBytes(op.parent_author) +\n stringFieldBytes(op.parent_permlink) +\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n stringFieldBytes(op.title) +\n stringFieldBytes(op.body) +\n stringFieldBytes(op.json_metadata);\n\nconst commentOptionsBytes = (op: CommentLike, options: CommentOptionsLike): number => {\n const beneficiaries = options.beneficiaries ?? [];\n let bytes =\n 1 + // operation variant id\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n ASSET_BYTES + // max_accepted_payout\n 2 + // percent_hbd\n 2; // allow_votes + allow_curation_rewards\n\n bytes += varintByteLength(beneficiaries.length > 0 ? 1 : 0);\n if (beneficiaries.length > 0) {\n bytes += 1 + varintByteLength(beneficiaries.length); // extension variant id + route count\n beneficiaries.forEach((route) => {\n bytes += stringFieldBytes(route.account) + 2; // weight is uint16\n });\n }\n return bytes;\n};\n\nexport interface CommentTransactionInput {\n op: CommentLike;\n /** Present when publish appends comment_options for beneficiaries or rewards. */\n options?: CommentOptionsLike;\n signatures?: number;\n}\n\n/**\n * Serialized size of the transaction that will carry this comment.\n *\n * This models Hive's binary encoding rather than approximating it: a fixed\n * header, one varint-prefixed field per string, and 65 bytes per signature.\n * Verified byte-exact against eight real transactions read back with\n * `get_transaction_hex`, including one carrying comment_options.\n */\nexport function estimateCommentTransactionBytes({\n op,\n options,\n signatures = 1\n}: CommentTransactionInput): number {\n const operations = [commentOperationBytes(op)];\n if (options) {\n operations.push(commentOptionsBytes(op, options));\n }\n\n return (\n TRANSACTION_HEADER_BYTES +\n varintByteLength(operations.length) +\n operations.reduce((sum, bytes) => sum + bytes, 0) +\n varintByteLength(signatures) +\n SIGNATURE_BYTES * signatures\n );\n}\n\nexport interface EstimateCommentRcCostInput {\n op: CommentLike;\n /** Companion comment_options, when the author set beneficiaries or rewards. */\n options?: CommentOptionsLike;\n rcParams: RcResourceParams | undefined;\n rcStats: Pick | undefined;\n signatures?: number;\n}\n\nexport interface CommentRcCostEstimate {\n /** False until both queries have resolved; callers must not warn on this. */\n ready: boolean;\n cost: number;\n transactionBytes: number;\n breakdown: RcCostBreakdown[];\n}\n\nconst EMPTY: CommentRcCostEstimate = {\n ready: false,\n cost: 0,\n transactionBytes: 0,\n breakdown: []\n};\n\n/** Total RC the chain will charge to broadcast this comment. */\nexport function estimateCommentRcCost({\n op,\n options,\n rcParams,\n rcStats,\n signatures = 1\n}: EstimateCommentRcCostInput): CommentRcCostEstimate {\n if (!rcParams?.resource_params || !rcParams.size_info || !rcStats?.pool || !rcStats.share) {\n return EMPTY;\n }\n\n const transactionBytes = estimateCommentTransactionBytes({ op, options, signatures });\n const usage = countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength: utf8ByteLength(op.permlink),\n signatures,\n beneficiaries: options?.beneficiaries?.length ?? 0,\n hasCommentOptions: !!options\n },\n rcParams.size_info\n );\n\n const regen = Number(rcStats.regen);\n let cost = 0;\n const breakdown: RcCostBreakdown[] = [];\n\n RC_RESOURCE_NAMES.forEach((name, index) => {\n const entry = rcParams.resource_params[name];\n const pool = Number(rcStats.pool[index] ?? 0);\n const share = Number(rcStats.share[index] ?? 0);\n if (!entry || share <= 0) {\n return;\n }\n\n // `usage` is scaled by the resource unit before pricing. It is 1 for the\n // resources a comment touches, but market bytes and new accounts are not.\n const scaled = usage[name] * Number(entry.resource_dynamics_params.resource_unit ?? 1);\n // rc_stats publishes `share` as weight/divisor scaled to 10,000. Kept in\n // BigInt: regen is ~2.4e12 and the product is past the safe-integer range\n // for larger shares.\n const regenShare = Number((BigInt(regen) * BigInt(share)) / 10000n);\n const resourceCost = computeResourceCost(entry.price_curve_params, pool, scaled, regenShare);\n\n cost += resourceCost;\n breakdown.push({ resource: name, usage: scaled, cost: resourceCost });\n });\n\n return { ready: true, cost, transactionBytes, breakdown };\n}\n","import {\n RC_RESOURCE_NAMES,\n type RcCostBreakdown,\n type RcResourceName,\n type RcResourceParams\n} from \"../types/resource-params\";\nimport type { RcStats } from \"../types/stats\";\nimport { computeResourceCost } from \"./estimate-comment-rc-cost\";\n\nexport type RcResourceUsage = Record;\n\nexport interface RcPricedUsage {\n cost: number;\n breakdown: RcCostBreakdown[];\n}\n\n/**\n * Turns per-resource usage into an RC cost.\n *\n * This is the single pricing path. Every RC figure the app shows, the publish\n * warning, the comment warning, the vote warning and the credits tooltip, goes\n * through here, so they cannot disagree with each other or with the chain.\n */\nexport function priceRcUsage(\n usage: RcResourceUsage,\n rcParams: RcResourceParams,\n rcStats: Pick\n): RcPricedUsage {\n const regen = Number(rcStats.regen);\n let cost = 0;\n const breakdown: RcCostBreakdown[] = [];\n\n RC_RESOURCE_NAMES.forEach((name, index) => {\n const entry = rcParams.resource_params[name];\n const pool = Number(rcStats.pool[index] ?? 0);\n const share = Number(rcStats.share[index] ?? 0);\n if (!entry || share <= 0) {\n return;\n }\n\n const scaled = usage[name] * Number(entry.resource_dynamics_params.resource_unit ?? 1);\n // rc_stats publishes `share` as weight/divisor scaled to 10,000. Kept in\n // BigInt: regen is ~2.4e12 and the product leaves the safe-integer range.\n const regenShare = Number((BigInt(regen) * BigInt(share)) / 10000n);\n const resourceCost = computeResourceCost(entry.price_curve_params, pool, scaled, regenShare);\n\n cost += resourceCost;\n breakdown.push({ resource: name, usage: scaled, cost: resourceCost });\n });\n\n return { cost, breakdown };\n}\n","import { utf8ByteLength, varintByteLength } from \"@/modules/core/utf8\";\nimport type { RcResourceName, RcSizeInfo } from \"../types/resource-params\";\nimport type { RcResourceUsage } from \"./price-rc-usage\";\n\n/**\n * Ports of the per-operation arms of `count_resources`\n * (hive/libraries/chain/rc/resource_count.cpp).\n *\n * Every operation charges three things: the serialized transaction size as\n * history_bytes, a per-operation state footprint, and execution time. Only the\n * middle two differ per operation, which is why they live together here.\n */\n\n/** Fixed header: ref_block_num(2) + ref_block_prefix(4) + expiration(4) + extensions varint(1). */\nexport const TRANSACTION_HEADER_BYTES = 11;\nexport const SIGNATURE_BYTES = 65;\n\nexport const stringFieldBytes = (value: string): number => {\n const length = utf8ByteLength(value);\n return varintByteLength(length) + length;\n};\n\nconst emptyUsage = (): RcResourceUsage => ({\n resource_history_bytes: 0,\n resource_new_accounts: 0,\n resource_market_bytes: 0,\n resource_state_bytes: 0,\n resource_execution_time: 0\n});\n\nexport interface VoteLike {\n voter: string;\n author: string;\n permlink: string;\n}\n\n/** Serialized size of a transaction carrying a single vote. */\nexport function estimateVoteTransactionBytes(op: VoteLike, signatures = 1): number {\n const operationBytes =\n 1 + // operation variant id\n stringFieldBytes(op.voter) +\n stringFieldBytes(op.author) +\n stringFieldBytes(op.permlink) +\n 2; // weight, int16\n\n return (\n TRANSACTION_HEADER_BYTES +\n varintByteLength(1) +\n operationBytes +\n varintByteLength(signatures) +\n SIGNATURE_BYTES * signatures\n );\n}\n\n/**\n * A vote's footprint is fixed: `vote_size` state bytes and `vote_time`\n * execution time, regardless of the post being voted on.\n */\nexport function countVoteResourceUsage(\n { transactionBytes, signatures = 1 }: { transactionBytes: number; signatures?: number },\n sizeInfo: RcSizeInfo\n): RcResourceUsage {\n const state = sizeInfo.resource_state_bytes;\n const exec = sizeInfo.resource_execution_time;\n\n return {\n ...emptyUsage(),\n resource_history_bytes: transactionBytes,\n resource_state_bytes: state.vote_size + state.transaction_base_size,\n resource_execution_time:\n exec.vote_time + exec.transaction_time + exec.verify_authority_time * signatures\n };\n}\n\n/** Resource names, re-exported so callers do not reach into the types module. */\nexport type { RcResourceName };\n","import { calculateRCMana } from \"@/modules/core/hive-tx\";\nimport type { RCAccount } from \"@/modules/core/hive-tx\";\nimport type { RcStats } from \"../types/stats\";\nimport type { RcResourceParams } from \"../types/resource-params\";\nimport { priceRcUsage } from \"./price-rc-usage\";\nimport {\n countVoteResourceUsage,\n estimateVoteTransactionBytes,\n type VoteLike\n} from \"./count-operation-usage\";\nimport {\n countCommentResourceUsage,\n estimateCommentTransactionBytes,\n type CommentLike,\n type CommentOptionsLike\n} from \"./estimate-comment-rc-cost\";\n\n/**\n * Operations the RC pre-check can estimate. Mirrors the keys exposed by\n * `rc_api.get_rc_stats` (see {@link RcStats}[\"ops\"]).\n */\nexport type RcPrecheckOperation = keyof RcStats[\"ops\"];\n\n/** The operation about to be broadcast, when the caller has it. */\nexport type RcPrecheckPayload =\n | { kind: \"comment\"; op: CommentLike; options?: CommentOptionsLike }\n | { kind: \"vote\"; op: VoteLike };\n\nexport interface RcPrecheckInput {\n /** From `getAccountRcQueryOptions(username)` -> rcAccounts[0]. */\n rcAccount: RCAccount | null | undefined;\n /** From `getRcStatsQueryOptions()`. */\n rcStats: RcStats | null | undefined;\n /** The operation the user is about to broadcast. */\n operation: RcPrecheckOperation;\n /**\n * From `getRcResourceParamsQueryOptions()`. Required for an exact estimate;\n * without it the result is not ready rather than silently approximate.\n */\n rcParams?: RcResourceParams | null;\n /**\n * The actual operation about to be broadcast. Supplying it is what makes the\n * estimate exact, because cost is dominated by the serialized transaction\n * size. Without it a minimal operation of that type is priced instead, which\n * is a lower bound: it can miss a marginal case but never invents one.\n */\n payload?: RcPrecheckPayload;\n /**\n * What to price when no payload is supplied.\n *\n * - `\"minimal\"` (default) prices the smallest operation of that type. It is\n * a lower bound, so a pre-submit warning is never invented for an\n * operation that would have succeeded.\n * - `\"average\"` prices the network average the chain publishes. Right for\n * \"how many of these can I afford\" displays, where there is no specific\n * operation in hand and the smallest conceivable one would flatter the\n * count.\n */\n fallback?: \"minimal\" | \"average\";\n /**\n * Safety multiplier applied to the operation cost when deciding\n * whether the broadcast will \"likely fail\". Actual on-chain cost varies with\n * network load, so we keep headroom. Defaults to 1.2.\n */\n buffer?: number;\n}\n\nexport interface RcPrecheckResult {\n /** Both inputs were available, so the estimate is meaningful. */\n ready: boolean;\n /** Current RC mana of the account. */\n currentMana: number;\n /** Maximum RC mana of the account. */\n maxMana: number;\n /**\n * RC cost of the operation itself.\n *\n * Named `avgCost` for backwards compatibility; it is no longer an average.\n * @deprecated prefer `cost`.\n */\n avgCost: number;\n /** RC cost of the operation, computed the way the chain computes it. */\n cost: number;\n /** Serialized transaction size, the dominant term for a comment. */\n transactionBytes: number;\n /** Average cost padded by `buffer`. */\n estimatedCost: number;\n /** `currentMana` is below the padded estimate -> broadcast likely fails. */\n willLikelyFail: boolean;\n /** RC shortfall vs the padded estimate (0 when not failing). */\n deficit: number;\n /** Roughly how many such operations the account can still afford. */\n remaining: number;\n}\n\nconst EMPTY: RcPrecheckResult = {\n ready: false,\n currentMana: 0,\n maxMana: 0,\n avgCost: 0,\n cost: 0,\n transactionBytes: 0,\n estimatedCost: 0,\n willLikelyFail: false,\n deficit: 0,\n remaining: 0,\n};\n\n/**\n * Pure, client-side estimate of whether an account has enough Resource Credits\n * to broadcast an operation, used to warn the user BEFORE they submit instead\n * of failing afterwards with the chain's \"Please wait to transact\" error.\n *\n * Costs are computed the way the chain computes them, from the actual\n * operation, not from the network-wide average. The average is dominated by\n * short replies and badly misleads on posts: it once told an account holding\n * 21.3B RC that it could afford 17 posts, and the next post it tried needed\n * 23.3B.\n *\n * Still a hint, never a hard gate: the buffer covers pool drift between the\n * estimate and the broadcast, and the publish/comment/vote action must stay\n * non-blocking.\n */\nexport function estimateRcPrecheck({\n rcAccount,\n rcStats,\n rcParams,\n operation,\n payload,\n fallback = \"minimal\",\n buffer = 1.2,\n}: RcPrecheckInput): RcPrecheckResult {\n if (!rcAccount || !rcStats?.ops) {\n return EMPTY;\n }\n\n const { current_mana: currentMana, max_mana: maxMana } = calculateRCMana(rcAccount);\n\n const priced = priceOperation(operation, payload, fallback, rcParams, rcStats);\n if (!priced) {\n // Nothing to price against: reporting \"ready\" here would be a silent\n // all-clear, which is the one answer a pre-check must never invent.\n return { ...EMPTY, currentMana, maxMana };\n }\n\n const { cost, transactionBytes } = priced;\n const safeBuffer = Number.isFinite(buffer) && buffer > 0 ? buffer : 1.2;\n const estimatedCost = cost * safeBuffer;\n const willLikelyFail = currentMana < estimatedCost;\n\n return {\n ready: true,\n currentMana,\n maxMana,\n avgCost: cost,\n cost,\n transactionBytes,\n estimatedCost,\n willLikelyFail,\n deficit: willLikelyFail ? Math.ceil(estimatedCost - currentMana) : 0,\n remaining: Math.floor(currentMana / cost),\n };\n}\n\n/**\n * Prices whichever operation the caller is about to broadcast.\n *\n * Comments and votes are the two operations whose cost swings with what the\n * user wrote, so they are priced from the payload, and pricing them needs the\n * curve parameters. Every other operation the type advertises (transfer,\n * custom_json, ...) is fixed-shape and takes the network average the chain\n * publishes, which needs nothing else.\n *\n * When no payload is supplied a minimal operation is priced. That is\n * deliberately a lower bound: it can miss a marginal case, but it never warns\n * about one that would have succeeded.\n *\n * Returns null when the answer would have to be invented, so the caller\n * reports \"not ready\" rather than a zero-cost all-clear.\n */\nfunction priceOperation(\n operation: RcPrecheckOperation,\n payload: RcPrecheckPayload | undefined,\n fallback: \"minimal\" | \"average\",\n rcParams: RcResourceParams | null | undefined,\n rcStats: RcStats\n): { cost: number; transactionBytes: number } | null {\n const average = averageCost(rcStats, operation);\n const pricedFromPayload =\n operation === \"comment_operation\" || operation === \"vote_operation\";\n\n // The average is a number the node already returned. It needs no curve\n // parameters, so a caller pricing a transfer must not be blocked waiting on\n // them, which is how every operation outside these two is priced.\n if (!pricedFromPayload || (!payload && fallback === \"average\")) {\n return average;\n }\n\n // Asked to price a real comment or vote without the inputs to do it. The\n // honest answer is \"not ready\": falling back to the average here is exactly\n // what told an account holding 21.3B RC it could afford 17 more posts.\n if (!rcParams?.resource_params || !rcParams.size_info || !rcStats.pool || !rcStats.share) {\n return null;\n }\n\n const stats = { pool: rcStats.pool, regen: rcStats.regen, share: rcStats.share };\n\n if (operation === \"vote_operation\") {\n const op: VoteLike = payload?.kind === \"vote\" ? payload.op : MINIMAL_VOTE;\n const transactionBytes = estimateVoteTransactionBytes(op);\n const usage = countVoteResourceUsage({ transactionBytes }, rcParams.size_info);\n return { cost: priceRcUsage(usage, rcParams, stats).cost, transactionBytes };\n }\n\n const op: CommentLike = payload?.kind === \"comment\" ? payload.op : MINIMAL_COMMENT;\n const options = payload?.kind === \"comment\" ? payload.options : undefined;\n const transactionBytes = estimateCommentTransactionBytes({ op, options });\n const usage = countCommentResourceUsage(\n {\n transactionBytes,\n permlinkLength: op.permlink.length,\n beneficiaries: options?.beneficiaries?.length ?? 0,\n hasCommentOptions: !!options\n },\n rcParams.size_info\n );\n return { cost: priceRcUsage(usage, rcParams, stats).cost, transactionBytes };\n}\n\n/** The network average the chain publishes for an operation, when it has one. */\nfunction averageCost(\n rcStats: RcStats,\n operation: RcPrecheckOperation\n): { cost: number; transactionBytes: number } | null {\n const cost = rcStats.ops[operation]?.avg_cost;\n return typeof cost === \"number\" && cost > 0 ? { cost, transactionBytes: 0 } : null;\n}\n\n/** Smallest realistic operations, used only when the caller has no payload yet. */\nconst MINIMAL_COMMENT: CommentLike = {\n author: \"aaaaaaaaaa\",\n permlink: \"aaaaaaaaaaaaaaaaaaaa\",\n parent_author: \"\",\n parent_permlink: \"hive-100000\",\n title: \"\",\n body: \"\",\n json_metadata: \"{}\"\n};\n\nconst MINIMAL_VOTE: VoteLike = {\n voter: \"aaaaaaaaaa\",\n author: \"aaaaaaaaaa\",\n permlink: \"aaaaaaaaaaaaaaaaaaaa\"\n};\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { GetGameStatus } from \"../types\";\n\nexport function getGameStatusCheckQueryOptions(\n username: string | undefined,\n code: string | undefined,\n gameType: \"spin\"\n) {\n return queryOptions({\n queryKey: [\"games\", \"status-check\", gameType, username],\n enabled: !!username && !!code,\n queryFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Games] – missing auth\");\n }\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/get-game\",\n {\n method: \"POST\",\n body: JSON.stringify({\n game_type: gameType,\n code,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n return (await response.json()) as GetGameStatus;\n },\n });\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { GameClaim } from \"../types\";\nimport { useRecordActivity } from \"@/modules/analytics/mutations\";\n\n/**\n * POST a single game claim and return the parsed JSON body.\n *\n * A failed post-game comes back from the edge as an HTML gateway page (a 502 was\n * the trail on ECENCY-NEXT-1FCJ), and `response.json()` on that throws a bare\n * `SyntaxError` naming neither the endpoint nor the cause. Check the status and\n * the content type first, then fail with a STABLE, low-cardinality message\n * (content type + status, never the raw body) so these group as a single Sentry\n * issue instead of fragmenting on every distinct error page.\n *\n * Exported for unit testing; the hook below wraps it.\n */\nexport async function gameClaimRequest(\n code: string,\n gameType: \"spin\",\n key: string\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/post-game\",\n {\n method: \"POST\",\n body: JSON.stringify({\n game_type: gameType,\n code,\n key,\n }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n // Media types are case-insensitive; normalise once and reuse in every branch.\n const contentType = (response.headers.get(\"content-type\") ?? \"\")\n .split(\";\")[0]\n .trim()\n .toLowerCase();\n const body = await response.text();\n\n if (!response.ok) {\n // Only fold a short JSON error body into the message; an HTML gateway page\n // (e.g. 502/503) would otherwise fragment the Sentry group per distinct page.\n const detail =\n body && contentType.includes(\"json\") ? `: ${body.slice(0, 200)}` : \"\";\n throw new Error(\n `[SDK][Games] – failed with status ${response.status}${detail}`\n );\n }\n\n if (!contentType.includes(\"json\")) {\n throw new Error(\n `[SDK][Games] – expected JSON but received \"${contentType || \"empty\"}\" response (status ${response.status})`\n );\n }\n\n try {\n return JSON.parse(body) as GameClaim;\n } catch {\n throw new Error(\n `[SDK][Games] – malformed JSON response (status ${response.status})`\n );\n }\n}\n\nexport function useGameClaim(\n username: string | undefined,\n code: string | undefined,\n gameType: \"spin\",\n key: string\n) {\n const { mutateAsync: recordActivity } = useRecordActivity(\n username,\n \"spin-rolled\"\n );\n\n return useMutation({\n mutationKey: [\"games\", \"post\", gameType, username],\n mutationFn: async () => {\n if (!username || !code) {\n throw new Error(\"[SDK][Games] – missing auth\");\n }\n\n return gameClaimRequest(code, gameType, key);\n },\n onSuccess() {\n recordActivity();\n },\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { QuestsResponse } from \"../types\";\n\n/**\n * Read-only daily/weekly/monthly quest progress for a user. Aggregates the existing\n * points ledger (no auth required — same sensitivity as `/private-api/points`).\n */\nexport function getQuestsQueryOptions(username: string | undefined) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.quests.status(name),\n enabled: !!name,\n queryFn: async () => {\n if (!name) {\n throw new Error(\"[SDK][Quests] – username wasn't provided\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/quests\",\n {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ username: name }),\n },\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch quests: ${response.status}`);\n }\n\n return (await response.json()) as QuestsResponse;\n },\n staleTime: 30000,\n refetchOnMount: true,\n });\n}\n","/**\n * Shared quest catalog — the single source of truth for which quests exist, their\n * encouraging goals, copy keys and icon hints. Lives in the SDK so the web and mobile\n * clients render an identical, harmonized set. The backend (`/private-api/quests`)\n * returns raw progress + the reward `cap`; this catalog layers the presentation.\n *\n * `goal` is an *encouraging, reachable* daily target and is intentionally independent of\n * the backend reward `cap` (the point at which the existing reward decays to ~0). It is\n * tunable here without any backend change.\n */\n\nexport type QuestTier = \"daily\" | \"weekly\" | \"monthly\";\n\nexport interface QuestCatalogEntry {\n id: string;\n tier: QuestTier;\n /** encouraging, reachable target for the period (tunable, not the reward cap) */\n goal: number;\n /** i18n key suffix; clients resolve e.g. `quests..title` / `.desc` */\n i18nKey: string;\n /** semantic icon hint; each client maps it to its own icon set */\n icon: string;\n}\n\nexport const QUEST_CATALOG: QuestCatalogEntry[] = [\n // Daily\n { id: \"checkin\", tier: \"daily\", goal: 1, i18nKey: \"checkin\", icon: \"check-circle\" },\n { id: \"post\", tier: \"daily\", goal: 1, i18nKey: \"post\", icon: \"pencil\" },\n { id: \"comment\", tier: \"daily\", goal: 3, i18nKey: \"comment\", icon: \"comment\" },\n { id: \"vote\", tier: \"daily\", goal: 10, i18nKey: \"vote\", icon: \"chevron-up-circle\" },\n { id: \"reblog\", tier: \"daily\", goal: 1, i18nKey: \"reblog\", icon: \"repeat\" },\n { id: \"spin\", tier: \"daily\", goal: 1, i18nKey: \"spin\", icon: \"gift\" },\n // Weekly\n { id: \"post\", tier: \"weekly\", goal: 5, i18nKey: \"post\", icon: \"pencil\" },\n { id: \"comment\", tier: \"weekly\", goal: 15, i18nKey: \"comment\", icon: \"comment\" },\n { id: \"vote\", tier: \"weekly\", goal: 50, i18nKey: \"vote\", icon: \"chevron-up-circle\" },\n { id: \"reblog\", tier: \"weekly\", goal: 5, i18nKey: \"reblog\", icon: \"repeat\" },\n // Monthly\n { id: \"post\", tier: \"monthly\", goal: 20, i18nKey: \"post\", icon: \"pencil\" },\n];\n\nexport function getQuestCatalogEntry(tier: QuestTier, id: string) {\n return QUEST_CATALOG.find((q) => q.tier === tier && q.id === id);\n}\n\n/**\n * Shortest body that earns points and counts toward the post/comment quests.\n *\n * MIRRORS the ePoints `CONTENT_MIN_LENGTH` - the backend is the source of truth and\n * rejects anything at or below it, silently. This exists so a client can say so in the\n * composer instead of leaving the user to wonder why their reply never counted.\n */\nexport const QUEST_MIN_CONTENT_LENGTH = 25;\n\n/**\n * The length the backend actually measures. URLs are stripped first, so a reply that is\n * nothing but an image link measures as empty however long it looks. Mirrors the\n * `http(s)://\\S+` strip in the ePoints verifier, including the absence of any trimming.\n *\n * Counts code points, not UTF-16 code units, because the backend measures with Python's\n * `len` on a str. `String.length` would score an astral character (most emoji) as 2,\n * so a reply of 13 emoji would look like 26 here and 13 there: the client would promise\n * points the backend then refuses, which is the exact confusion this is meant to end.\n */\nexport function measureQuestContentLength(body: string | null | undefined): number {\n return Array.from((body ?? \"\").replace(/https?:\\/\\/\\S+/g, \"\")).length;\n}\n\n/**\n * Whether a post or comment body is long enough to earn points and quest credit.\n * Strictly greater than the minimum, matching the backend comparison.\n */\nexport function earnsQuestContentCredit(body: string | null | undefined): boolean {\n return measureQuestContentLength(body) > QUEST_MIN_CONTENT_LENGTH;\n}\n\n// Streak Freeze display config. MIRRORS the ePoints constants\n// (STREAK_FREEZE_PRICE / STREAK_FREEZE_MAX_OWNED) — the server is the source of truth\n// and validates every purchase; these drive the label + button state only, so a drift\n// here never over-charges (the buy is priced server-side).\nexport const STREAK_FREEZE_PRICE = 300;\nexport const STREAK_FREEZE_MAX_OWNED = 2;\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { StreakFreezeBuyResult } from \"../types\";\n\n/** A fresh idempotency key per purchase; guarded for runtimes without crypto.randomUUID. */\nfunction genIdempotencyKey(): string {\n if (typeof crypto !== \"undefined\" && typeof crypto.randomUUID === \"function\") {\n return crypto.randomUUID();\n }\n return `${Date.now()}-${Math.random().toString(36).slice(2)}`;\n}\n\n/**\n * POST a single streak-freeze purchase. Throws on a non-2xx with the server's\n * `.status` + parsed `.data` attached so the caller can branch on 402 (insufficient)\n * / 409 (max owned). Exported for unit testing; the hook below wraps it.\n */\nexport async function buyStreakFreezeRequest(\n code: string\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/streak-freeze/buy\",\n {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ code, idempotency_key: genIdempotencyKey() }),\n }\n );\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to buy streak freeze: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as StreakFreezeBuyResult;\n}\n\n/**\n * Buy one streak freeze (a Points-only sink). The server debits Points, caps owned\n * inventory, and is idempotent per key. On success the quests + points caches are\n * invalidated so the owned count and balance refresh. A 402 (insufficient) / 409 (max\n * owned) is rethrown with `.status` + `.data` so the caller can route to a Points top-up.\n */\nexport function useBuyStreakFreeze(\n username: string | undefined,\n code: string | undefined\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"streak-freeze\", \"buy\", name],\n mutationFn: async () => {\n if (!name || !code) {\n throw new Error(\"[SDK][StreakFreeze] – missing auth\");\n }\n return buyStreakFreezeRequest(code);\n },\n onSuccess() {\n // Balance only changes on a successful debit.\n if (name) {\n queryClient.invalidateQueries({ queryKey: QueryKeys.points._prefix(name) });\n }\n },\n onSettled() {\n // Refresh freezes_owned on success AND error: a 409 (max owned) means the\n // client's count is stale, and without this the \"Protect streak\" button would\n // never hide and the user could keep re-triggering 409s.\n if (name) {\n queryClient.invalidateQueries({ queryKey: QueryKeys.quests.status(name) });\n }\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSubscribeOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for subscribing to a community.\n */\nexport interface SubscribeCommunityPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n}\n\n/**\n * React Query mutation hook for subscribing to a community.\n *\n * This mutation broadcasts a subscribe operation to the Hive blockchain,\n * adding the community to the user's subscription list.\n *\n * @param username - The username subscribing (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates subscriptions cache to show updated subscription list\n * - Invalidates community cache to refetch updated subscriber count\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"subscribe\", {\"community\": \"hive-123456\"}]\n * - Authority: Posting key\n *\n * @example\n * ```typescript\n * const subscribeMutation = useSubscribeCommunity(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Subscribe to a community\n * subscribeMutation.mutate({\n * community: 'hive-123456'\n * });\n * ```\n */\nexport function useSubscribeCommunity(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"subscribe\"],\n username,\n ({ community }) => [\n buildSubscribeOp(username!, community)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.subscriptions(username!),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n QueryKeys.communities.context(username!, variables.community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUnsubscribeOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for unsubscribing from a community.\n */\nexport interface UnsubscribeCommunityPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n}\n\n/**\n * React Query mutation hook for unsubscribing from a community.\n *\n * This mutation broadcasts an unsubscribe operation to the Hive blockchain,\n * removing the community from the user's subscription list.\n *\n * @param username - The username unsubscribing (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates subscriptions cache to show updated subscription list\n * - Invalidates community cache to refetch updated subscriber count\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"unsubscribe\", {\"community\": \"hive-123456\"}]\n * - Authority: Posting key\n *\n * @example\n * ```typescript\n * const unsubscribeMutation = useUnsubscribeCommunity(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Unsubscribe from a community\n * unsubscribeMutation.mutate({\n * community: 'hive-123456'\n * });\n * ```\n */\nexport function useUnsubscribeCommunity(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"unsubscribe\"],\n username,\n ({ community }) => [\n buildUnsubscribeOp(username!, community)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.subscriptions(username!),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n QueryKeys.communities.context(username!, variables.community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'sync' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildMutePostOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for muting/unmuting a post in a community.\n */\nexport interface MutePostPayload {\n /** Community name (e.g., \"hive-123456\") */\n community: string;\n /** Post author */\n author: string;\n /** Post permlink */\n permlink: string;\n /** Mute reason/notes (required even for unmute) */\n notes: string;\n /** True to mute, false to unmute */\n mute: boolean;\n}\n\n/**\n * React Query mutation hook for muting/unmuting posts in a community.\n *\n * This mutation broadcasts a custom_json operation to mute (or unmute)\n * a post within a community. Only community moderators/admins can mute posts.\n *\n * @param username - The username performing the mute (required for broadcast, must have permission)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community posts cache to hide muted content\n * - Invalidates post cache to update mute status\n * - Invalidates feed cache to remove muted posts from feeds\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"mutePost\", {\"community\": \"hive-123456\", \"account\": \"author\", \"permlink\": \"post\", \"notes\": \"reason\"}]\n * - Action (unmute): [\"unmutePost\", {\"community\": \"hive-123456\", \"account\": \"author\", \"permlink\": \"post\", \"notes\": \"reason\"}]\n * - Authority: Posting key\n *\n * **Mute vs Unmute:**\n * - mute: true - Mutes the post (hides from community feed)\n * - mute: false - Unmutes the post (restores to community feed)\n *\n * **Permission:**\n * - Only community moderators and admins can mute/unmute posts\n * - Attempting to mute without permission will fail with an error\n *\n * @example\n * ```typescript\n * const mutePostMutation = useMutePost(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Mute a post\n * mutePostMutation.mutate({\n * community: 'hive-123456',\n * author: 'alice',\n * permlink: 'my-post',\n * notes: 'Violates community guidelines',\n * mute: true\n * });\n *\n * // Unmute a post\n * mutePostMutation.mutate({\n * community: 'hive-123456',\n * author: 'alice',\n * permlink: 'my-post',\n * notes: 'Resolved after editing',\n * mute: false\n * });\n * ```\n */\nexport function useMutePost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"mutePost\"],\n username,\n ({ community, author, permlink, notes, mute }) => [\n buildMutePostOp(username!, community, author, permlink, notes, mute)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n const queriesToInvalidate: any[] = [\n // Invalidate specific post cache to update mute status\n QueryKeys.posts.entry(`/@${variables.author}/${variables.permlink}`),\n // Invalidate community data\n [\"community\", \"single\", variables.community],\n // Invalidate community feed/posts (matches all sort orders, limits, observers)\n {\n predicate: (query: any) => {\n const key = query.queryKey;\n return (\n Array.isArray(key) &&\n key[0] === \"posts\" &&\n key[1] === \"posts-ranked\" &&\n key[3] === variables.community\n );\n }\n }\n ];\n await auth.adapter.invalidateQueries(queriesToInvalidate);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'sync' }\n );\n}\n","import { useBroadcastMutation, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSetRoleOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Community, CommunityTeam } from \"../types\";\n\n/**\n * Payload for setting a user's role in a community.\n */\nexport interface SetCommunityRolePayload {\n /** Account to set role for */\n account: string;\n /** Role name (e.g., \"admin\", \"mod\", \"member\", \"guest\") */\n role: string;\n}\n\n/**\n * React Query mutation hook for setting a user's role in a community.\n *\n * This mutation broadcasts a setRole operation to the Hive blockchain,\n * updating the role of a community member. Only users with appropriate\n * permissions (community owner/admin) can set roles.\n *\n * @param community - Community name (e.g., \"hive-123456\")\n * @param username - The username setting the role (required for broadcast, must have permission)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to refetch updated team member list\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"setRole\", {\"community\": \"hive-123456\", \"account\": \"user\", \"role\": \"mod\"}]\n * - Authority: Posting key\n *\n * **Role Types:**\n * - \"owner\" - Community owner (full permissions)\n * - \"admin\" - Administrator (can manage settings and team)\n * - \"mod\" - Moderator (can mute posts/users)\n * - \"member\" - Regular member (no special permissions)\n * - \"guest\" - Remove user from team (empty string also works)\n *\n * @example\n * ```typescript\n * const setRoleMutation = useSetCommunityRole('hive-123456', username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Set a user as moderator\n * setRoleMutation.mutate({\n * account: 'alice',\n * role: 'mod'\n * });\n *\n * // Remove a user from the team\n * setRoleMutation.mutate({\n * account: 'bob',\n * role: 'guest'\n * });\n * ```\n */\nexport function useSetCommunityRole(\n community: string,\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"set-role\", community],\n username,\n ({ account, role }) => [\n buildSetRoleOp(username!, community, account, role)\n ],\n async (_result: any, variables) => {\n // Optimistic team update in community cache\n // Query key is [\"community\",\"single\",name,observer] — observer varies, so use predicate\n const qc = getQueryClient();\n qc.setQueriesData(\n { queryKey: QueryKeys.communities.singlePrefix(community) },\n (prev) => {\n if (!prev) return prev;\n const team: CommunityTeam = [...(prev.team ?? [])];\n const idx = team.findIndex(([name]) => name === variables.account);\n if (idx >= 0) {\n team[idx] = [team[idx][0], variables.role, team[idx][2] ?? \"\"];\n } else {\n team.push([variables.account, variables.role, \"\"]);\n }\n return { ...prev, team };\n }\n );\n\n // Cache invalidation — prefix-match all community single queries + context for affected user\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n [...QueryKeys.communities.singlePrefix(community)],\n QueryKeys.communities.context(variables.account, community)\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, getQueryClient, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildUpdateCommunityOp, type CommunityProps } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Community } from \"../types\";\n\n/**\n * Payload for updating community properties.\n * Matches the CommunityProps interface from builders.\n */\nexport type UpdateCommunityPayload = CommunityProps;\n\n/**\n * React Query mutation hook for updating community properties.\n *\n * This mutation broadcasts an updateProps operation to the Hive blockchain,\n * modifying the community's metadata and settings. Only community admins\n * can update community properties.\n *\n * @param community - Community name (e.g., \"hive-123456\")\n * @param username - The username updating the community (required for broadcast, must be admin)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to refetch updated properties\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"community\"\n * - Action: [\"updateProps\", {\"community\": \"hive-123456\", \"props\": {...}}]\n * - Authority: Posting key\n *\n * **Properties:**\n * - title - Community display title\n * - about - Short description/tagline\n * - lang - Primary language code (e.g., \"en\")\n * - description - Full community description (markdown supported)\n * - flag_text - Custom text shown when flagging posts\n * - is_nsfw - Whether community contains NSFW content\n *\n * @example\n * ```typescript\n * const updateMutation = useUpdateCommunity('hive-123456', username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Update community properties\n * updateMutation.mutate({\n * title: 'My Awesome Community',\n * about: 'A place for awesome people',\n * lang: 'en',\n * description: '# Welcome\\nThis is our community description',\n * flag_text: 'Please explain why this content violates our rules',\n * is_nsfw: false\n * });\n * ```\n */\nexport function useUpdateCommunity(\n community: string,\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"update\", community],\n username,\n (props) => [\n buildUpdateCommunityOp(username!, community, props)\n ],\n async (_result: any, variables) => {\n // Optimistic property merge in community cache\n // Query key is [\"community\",\"single\",name,observer] — observer varies, so use predicate\n const qc = getQueryClient();\n qc.setQueriesData(\n { queryKey: QueryKeys.communities.singlePrefix(community) },\n (prev) => {\n if (!prev) return prev;\n return { ...prev, ...(variables as unknown as Partial) };\n }\n );\n\n // Cache invalidation — prefix-match all community single queries\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n [...QueryKeys.communities.singlePrefix(community)]\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildCommunityRegistrationOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for community rewards registration.\n */\nexport interface CommunityRewardsRegisterPayload {\n /** Community account name (usually the community creator's account) */\n name: string;\n}\n\n/**\n * React Query mutation hook for registering to receive community rewards.\n *\n * This mutation broadcasts a custom_json operation to register a community\n * account to receive Ecency Points rewards for community activity.\n *\n * @param username - The username registering for community rewards (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates community cache to update registration status\n * - Invalidates points balance to reflect potential initial rewards\n *\n * **Operation Details:**\n * - Uses custom_json operation with id \"ecency_registration\"\n * - JSON: {\"name\": \"communityname\"}\n * - Authority: Active key (required for registration)\n *\n * **Purpose:**\n * - Enables communities to receive Ecency Points for activity\n * - One-time registration per community\n * - Can only be done by the community owner/creator\n *\n * @example\n * ```typescript\n * const registerMutation = useRegisterCommunityRewards(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Register community for rewards\n * registerMutation.mutate({\n * name: 'hive-123456'\n * });\n * ```\n */\nexport function useRegisterCommunityRewards(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"registerRewards\"],\n username,\n ({ name }) => [\n buildCommunityRegistrationOp(name)\n ],\n async (_result: any, variables) => {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n // Invalidate community cache to update registration status\n [...QueryKeys.communities.singlePrefix(variables.name)],\n // Invalidate points balance\n [...QueryKeys.points._prefix(username!)],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildPinPostOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface PinPostPayload {\n community: string;\n account: string;\n permlink: string;\n pin: boolean;\n}\n\nexport function usePinPost(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"communities\", \"pin-post\"],\n username,\n ({ community, account, permlink, pin }) => [\n buildPinPostOp(username!, community, account, permlink, pin)\n ],\n async (_result, variables) => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.posts.entry(`/@${variables.account}/${variables.permlink}`),\n [...QueryKeys.communities.singlePrefix(variables.community)],\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { Communities } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getCommunitiesQueryOptions(\n sort: string,\n query?: string,\n limit = 100,\n observer: string | undefined = undefined,\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.list(sort, query ?? \"\", limit),\n enabled,\n queryFn: async () => {\n const response = await callRPC(\"bridge.list_communities\", {\n last: \"\",\n limit,\n sort: sort === \"hot\" ? \"rank\" : sort,\n query: query ? query : null,\n observer,\n });\n return (\n response\n ? sort === \"hot\"\n ? response.sort(() => Math.random() - 0.5)\n : response\n : []\n ) as Communities;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { CommunityRole } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getCommunityContextQueryOptions(\n username: string | undefined,\n communityName: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.context(username!, communityName!),\n enabled: !!username && !!communityName,\n queryFn: async () => {\n const response = await callRPC(\"bridge.get_community_context\", {\n account: username,\n name: communityName,\n });\n\n return {\n role: response?.role ?? \"guest\",\n subscribed: response?.subscribed ?? false,\n } satisfies {\n role: CommunityRole;\n subscribed: boolean;\n };\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Community } from \"../types/community\";\nimport { getCommunity } from \"@/modules/bridge\";\nimport { QueryKeys } from \"@/modules/core\";\n\nexport function getCommunityQueryOptions(\n name: string | undefined,\n observer: string | undefined = \"\",\n enabled = true\n) {\n return queryOptions({\n queryKey: QueryKeys.communities.single(name, observer),\n enabled: enabled && !!name,\n queryFn: async () => getCommunity(name ?? \"\", observer) as Promise,\n });\n}\n","import {\n InfiniteData,\n infiniteQueryOptions,\n queryOptions\n} from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { Subscription } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * hivemind caps `bridge.list_subscribers` at 100 rows per call, regardless of a\n * larger requested limit.\n */\nexport const SUBSCRIBERS_PAGE_SIZE = 100;\n\ntype SubscribersPage = Subscription[];\ntype SubscribersCursor = string | null;\n\n/**\n * Fetches one page of subscribers.\n *\n * `last` is omitted on the first page rather than passed as an empty string:\n * hivemind reads `\"\"` as a real cursor positioned before the first account and\n * returns zero rows.\n */\nasync function fetchSubscribersPage(\n communityName: string,\n last: SubscribersCursor\n): Promise {\n const response = await callRPC(\"bridge.list_subscribers\", {\n community: communityName,\n limit: SUBSCRIBERS_PAGE_SIZE,\n ...(last ? { last } : {})\n });\n return (response as Subscription[] | null) ?? [];\n}\n\n/**\n * Get the first page of subscribers for a community.\n *\n * @deprecated Returns at most {@link SUBSCRIBERS_PAGE_SIZE} subscribers, which\n * for most communities is a small fraction of the total while looking like the\n * complete list. Prefer {@link getCommunitySubscribersInfiniteQueryOptions}\n * unless a single page is genuinely all that is wanted.\n *\n * @param communityName - The community name (e.g., \"hive-123456\")\n */\nexport function getCommunitySubscribersQueryOptions(communityName: string) {\n return queryOptions({\n queryKey: QueryKeys.communities.subscribers(communityName),\n queryFn: async () => fetchSubscribersPage(communityName, null),\n staleTime: 60000\n });\n}\n\n/**\n * Get all subscribers for a community, paged with hivemind's `last` cursor.\n *\n * @param communityName - The community name (e.g., \"hive-123456\")\n */\nexport function getCommunitySubscribersInfiniteQueryOptions(\n communityName: string\n) {\n return infiniteQueryOptions<\n SubscribersPage,\n Error,\n InfiniteData,\n string[],\n SubscribersCursor\n >({\n queryKey: QueryKeys.communities.subscribersInfinite(communityName),\n initialPageParam: null as SubscribersCursor,\n queryFn: async ({ pageParam }: { pageParam: SubscribersCursor }) =>\n fetchSubscribersPage(communityName, pageParam),\n // The cursor is the previous page's last account name. A short page is the\n // end of the list.\n getNextPageParam: (lastPage: SubscribersPage): SubscribersCursor =>\n lastPage?.length >= SUBSCRIBERS_PAGE_SIZE\n ? lastPage[lastPage.length - 1]?.[0] ?? null\n : null,\n staleTime: 60000\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { AccountNotification } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\ntype NotifPage = AccountNotification[];\ntype NotifCursor = number | null;\n\n/**\n * Get account notifications for a community (bridge API)\n *\n * @param account - The account/community name\n * @param limit - Number of notifications per page\n */\nexport function getAccountNotificationsInfiniteQueryOptions(\n account: string,\n limit: number\n) {\n return infiniteQueryOptions<\n NotifPage,\n Error,\n InfiniteData,\n (string | number)[],\n NotifCursor\n >({\n queryKey: QueryKeys.communities.accountNotifications(account, limit),\n initialPageParam: null as NotifCursor,\n\n // Errors are deliberately not caught. Returning [] on failure made an RPC\n // outage indistinguishable from an empty log: `isError` never became true,\n // so consumers rendered \"no activity\" for a failed request, and a failed\n // page produced no cursor and silently ended pagination. Let React Query\n // own the error so `isError` and retry behave normally.\n queryFn: async ({ pageParam }: { pageParam: NotifCursor }) => {\n const response = await callRPC(\"bridge.account_notifications\", {\n account,\n limit,\n last_id: pageParam ?? undefined,\n });\n return (response as AccountNotification[] | null) ?? [];\n },\n\n // A short page is the end of the log. Keying on \"empty\" alone would also\n // treat a truncated page as the end.\n getNextPageParam: (lastPage: NotifPage): NotifCursor =>\n lastPage?.length >= limit ? lastPage[lastPage.length - 1].id : null,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { RewardedCommunity } from \"../types/rewarded-community\";\n\nexport function getRewardedCommunitiesQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.communities.rewarded(),\n queryFn: async () => {\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/rewarded-communities\",\n {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch rewarded communities: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","export enum ROLES {\n OWNER = \"owner\",\n ADMIN = \"admin\",\n MOD = \"mod\",\n MEMBER = \"member\",\n GUEST = \"guest\",\n MUTED = \"muted\",\n}\n\nexport const roleMap: Record = {\n [ROLES.OWNER]: [\n ROLES.ADMIN,\n ROLES.MOD,\n ROLES.MEMBER,\n ROLES.GUEST,\n ROLES.MUTED,\n ],\n [ROLES.ADMIN]: [ROLES.MOD, ROLES.MEMBER, ROLES.GUEST, ROLES.MUTED],\n [ROLES.MOD]: [ROLES.MEMBER, ROLES.GUEST, ROLES.MUTED],\n};\n\nexport type CommunityTeam = Array>;\nexport type CommunityRole = (typeof ROLES)[keyof typeof ROLES]; // \"owner\" | \"member\" | ...\nexport type CommunityType = \"Topic\" | \"Journal\" | \"Council\";\n\nexport interface Community {\n about: string;\n admins?: string[];\n avatar_url: string;\n created_at: string;\n description: string;\n flag_text: string;\n id: number;\n is_nsfw: boolean;\n lang: string;\n name: string;\n num_authors: number;\n num_pending: number;\n subscribers: number;\n sum_pending: number;\n settings?: any;\n team: CommunityTeam;\n title: string;\n type_id: number;\n}\n\nexport type Communities = Community[];\n","import { CommunityRole, CommunityType, ROLES } from \"../types\";\n\nexport function getCommunityType(name: string, type_id: number): CommunityType {\n if (name.startsWith(\"hive-3\") || type_id === 3) return \"Council\";\n if (name.startsWith(\"hive-2\") || type_id === 2) return \"Journal\";\n return \"Topic\";\n}\n\nexport function getCommunityPermissions({\n communityType,\n userRole,\n subscribed,\n}: {\n communityType: CommunityType;\n userRole: CommunityRole;\n subscribed: boolean;\n}) {\n const canPost = (() => {\n if (userRole === ROLES.MUTED) return false;\n\n if (communityType === \"Topic\") return true;\n\n // Journal & Council\n return [ROLES.OWNER, ROLES.ADMIN, ROLES.MOD, ROLES.MEMBER].includes(\n userRole\n );\n })();\n\n const canComment = (() => {\n if (userRole === ROLES.MUTED) return false;\n\n switch (communityType) {\n case \"Topic\":\n return true;\n case \"Journal\":\n return userRole !== ROLES.GUEST || subscribed;\n case \"Council\":\n return canPost;\n }\n })();\n\n const isModerator = [ROLES.OWNER, ROLES.ADMIN, ROLES.MOD].includes(userRole);\n\n return {\n canPost,\n canComment,\n isModerator,\n };\n}\n","import { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\nexport function getNotificationsUnreadCountQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.unreadCount(activeUsername),\n queryFn: async () => {\n // fetchQuery and refetch() ignore `enabled`, so a synthetic 0 returned here would be\n // cached as a real count. Same as the settings query: no code, no result.\n if (!code) {\n throw new Error(\"Missing access token\");\n }\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/notifications/unread`,\n {\n method: \"POST\",\n body: JSON.stringify({ code }),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n const data = (await response.json()) as { count: number };\n return data.count;\n },\n enabled: !!activeUsername && !!code,\n // Placeholder, not initialData: initial data is stamped as fetched at creation,\n // so under a non-zero staleTime it counted as a fresh 0. fetchQuery returned it\n // without a request and observers skipped the fetch on mount until the next\n // refetchInterval. A placeholder still gives observers a number while loading.\n placeholderData: 0,\n refetchInterval: 60000,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { NotificationFilter } from \"../enums\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { ApiNotification } from \"../types\";\n\nexport function getNotificationsInfiniteQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n filter: NotificationFilter | undefined = undefined\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.notifications.list(activeUsername, filter),\n queryFn: async ({ pageParam }) => {\n if (!code) {\n return [];\n }\n const data = {\n code,\n filter,\n since: pageParam,\n user: undefined,\n };\n\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/notifications\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(data),\n }\n );\n\n if (!response.ok) {\n return [];\n }\n\n try {\n return (await response.json()) as ApiNotification[];\n } catch {\n return [];\n }\n },\n enabled: !!activeUsername && !!code,\n // No initialData here: an empty seed counts as fresh for the whole staleTime,\n // so consumers that only read `data` would render an empty list with no fetch.\n initialPageParam: \"\",\n getNextPageParam: (lastPage) => lastPage?.[lastPage.length - 1]?.id ?? \"\",\n refetchOnMount: true,\n });\n}\n","export enum NotificationFilter {\n VOTES = \"rvotes\",\n MENTIONS = \"mentions\",\n FAVORITES = \"nfavorites\",\n BOOKMARKS = \"nbookmarks\",\n FOLLOWS = \"follows\",\n REPLIES = \"replies\",\n REBLOGS = \"reblogs\",\n TRANSFERS = \"transfers\",\n DELEGATIONS = \"delegations\",\n PAYOUTS = \"payouts\",\n SCHEDULED_PUBLISHED = \"scheduled_published\",\n // Filter path is plural while the notification `type` string is singular\n // (`account_update`) - enotify routes on the plural form.\n ACCOUNT_UPDATES = \"account_updates\",\n WEEKLY_EARNINGS = \"weekly_earnings\",\n TAGS = \"tags\",\n}\n","// Values are enotify's ACTIVITY_MAIN_TYPE_* ints and are validated server-side at\n// device registration, so they must match enotify constants.py exactly. Note payouts\n// is 19: the original 16 is commented out upstream and must not be reused.\nexport enum NotifyTypes {\n VOTE = 1,\n MENTION = 2,\n FOLLOW = 3,\n COMMENT = 4,\n RE_BLOG = 5,\n TRANSFERS = 6,\n DELEGATIONS = 10,\n FAVORITES = 13,\n BOOKMARKS = 15,\n PAYOUTS = 19,\n ACCOUNT_UPDATE = 20,\n WEEKLY_EARNINGS = 21,\n SCHEDULED_PUBLISHED = 22,\n TAGS = 23,\n ALLOW_NOTIFY = \"ALLOW_NOTIFY\",\n}\n\nexport const ALL_NOTIFY_TYPES = [\n NotifyTypes.VOTE,\n NotifyTypes.MENTION,\n NotifyTypes.FOLLOW,\n NotifyTypes.COMMENT,\n NotifyTypes.RE_BLOG,\n NotifyTypes.TRANSFERS,\n NotifyTypes.DELEGATIONS,\n NotifyTypes.FAVORITES,\n NotifyTypes.BOOKMARKS,\n NotifyTypes.PAYOUTS,\n NotifyTypes.ACCOUNT_UPDATE,\n NotifyTypes.WEEKLY_EARNINGS,\n NotifyTypes.SCHEDULED_PUBLISHED,\n NotifyTypes.TAGS,\n] as const;\n\nexport enum NotificationViewType {\n ALL = \"All\",\n UNREAD = \"Unread\",\n READ = \"Read\",\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ApiNotificationSetting } from \"../types\";\nimport { ALL_NOTIFY_TYPES } from \"../enums\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\n\nexport function getNotificationsSettingsQueryOptions(\n activeUsername: string | undefined,\n code: string | undefined,\n initialMuted?: boolean\n) {\n return queryOptions({\n queryKey: QueryKeys.notifications.settings(activeUsername),\n queryFn: async () => {\n let token = activeUsername + \"-web\";\n if (!code) {\n throw new Error(\"Missing access token\");\n }\n const response = await fetch(\n CONFIG.privateApiHost + \"/private-api/detail-device\",\n {\n body: JSON.stringify({\n code,\n username: activeUsername,\n token,\n }),\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }\n );\n if (!response.ok) {\n throw new Error(`Failed to fetch notification settings: ${response.status}`);\n }\n return response.json() as Promise;\n },\n enabled: !!activeUsername && !!code,\n refetchOnMount: false,\n initialData: () => {\n return {\n status: 0,\n system: \"web\",\n allows_notify: 0,\n notify_types: initialMuted ? [] : ([...ALL_NOTIFY_TYPES] as number[]),\n } as ApiNotificationSetting;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { Announcement } from \"../types/announcement\";\n\nexport function getAnnouncementsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.notifications.announcements(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/announcements\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch announcements: ${response.status}`);\n }\n\n const data = await response.json() as Announcement[];\n return data || [];\n },\n staleTime: 3_600_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys } from \"@/modules/core\";\nimport { Spotlight } from \"../types/spotlight\";\n\n// `_accessToken` is accepted for call-site parity with mobile (which passes one) but is\n// intentionally unused: the spotlights endpoint is anonymous and only filters by date window.\nexport function getSpotlightsQueryOptions(_accessToken?: string) {\n return queryOptions({\n queryKey: QueryKeys.notifications.spotlights(),\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/spotlights\", {\n method: \"GET\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch spotlights: ${response.status}`);\n }\n\n const data = (await response.json()) as Spotlight[];\n return data || [];\n },\n staleTime: 3_600_000,\n });\n}\n","import { useMutation, QueryKey, InfiniteData } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { markNotifications } from \"@/modules/private-api/requests\";\nimport { ApiNotification } from \"../types\";\n\ntype NotificationPage = ApiNotification[];\ntype InfiniteNotificationData = InfiniteData;\n\nfunction markNotificationRead(item: ApiNotification, id?: string): ApiNotification {\n return {\n ...item,\n read: (!id || id === item.id ? 1 : item.read) as 0 | 1,\n };\n}\n\nfunction isInfiniteData(data: unknown): data is InfiniteNotificationData {\n return (\n typeof data === \"object\" &&\n data !== null &&\n \"pages\" in data &&\n \"pageParams\" in data &&\n Array.isArray((data as InfiniteNotificationData).pages)\n );\n}\n\n/**\n * Hook to mark notifications as read with optimistic updates\n *\n * @param username - Current user's username\n * @param code - Access token for authentication\n * @param onSuccess - Optional callback on successful mutation, receives unread count\n * @param onError - Optional callback on error\n *\n * @returns Mutation hook that accepts { id?: string }\n *\n * @example\n * ```typescript\n * const markAsRead = useMarkNotificationsRead(username, code);\n *\n * // Mark specific notification\n * markAsRead.mutate({ id: \"notification-id\" });\n *\n * // Mark all notifications (omit id)\n * markAsRead.mutate({});\n * ```\n */\nexport function useMarkNotificationsRead(\n username: string | undefined,\n code: string | undefined,\n onSuccess?: (unreadCount?: number) => void,\n onError?: (e: Error) => void\n) {\n const queryClient = getQueryClient();\n\n return useMutation({\n mutationKey: [\"notifications\", \"mark-read\", username],\n\n mutationFn: async ({ id }: { id?: string }) => {\n if (!username || !code) {\n if (process.env.NODE_ENV !== \"production\") {\n console.warn(\"[SDK][Notifications] – missing auth for markNotifications\");\n }\n return;\n }\n return markNotifications(code, id);\n },\n\n // Optimistic update: Immediately mark notifications as read in cache\n onMutate: async ({ id }: { id?: string }) => {\n // Skip optimistic updates when auth is not available\n if (!username || !code) {\n return { previousData: [] };\n }\n\n // Cancel any outgoing refetches to prevent overwriting optimistic update\n await queryClient.cancelQueries({ queryKey: QueryKeys.notifications._prefix });\n\n // Snapshot current state for rollback\n const previousData: Array<[QueryKey, unknown]> = [];\n\n // Update infinite notification list queries (pages structure)\n const infiniteQueries = queryClient.getQueriesData({\n queryKey: QueryKeys.notifications._prefix,\n predicate: (query) => {\n const data = query.state.data;\n return isInfiniteData(data);\n },\n });\n\n infiniteQueries.forEach(([queryKey, data]) => {\n if (data && isInfiniteData(data)) {\n previousData.push([queryKey, data]);\n\n const updatedData: InfiniteNotificationData = {\n ...data,\n pages: data.pages.map((page) =>\n page.map((item) => markNotificationRead(item, id))\n ),\n };\n\n queryClient.setQueryData(queryKey, updatedData);\n }\n });\n\n // Optimistically decrement unread count\n const unreadKey = QueryKeys.notifications.unreadCount(username);\n const currentUnread = queryClient.getQueryData(unreadKey);\n if (typeof currentUnread === \"number\" && currentUnread > 0) {\n previousData.push([unreadKey, currentUnread]);\n\n if (!id) {\n // Mark all: set to 0\n queryClient.setQueryData(unreadKey, 0);\n } else {\n // Mark single: only decrement if the notification is currently unread\n const isUnread = infiniteQueries.some(([, d]) =>\n d?.pages.some((page) =>\n page.some((item) => item.id === id && item.read === 0)\n )\n );\n if (isUnread) {\n queryClient.setQueryData(unreadKey, currentUnread - 1);\n }\n }\n }\n\n // Return context for rollback\n return { previousData };\n },\n\n onSuccess: (response) => {\n // Extract unread count from response if available\n const unreadCount = typeof response === \"object\" && response !== null\n ? (response as { unread?: number }).unread\n : undefined;\n\n // Update unread count cache with server value\n if (typeof unreadCount === \"number\") {\n queryClient.setQueryData(\n QueryKeys.notifications.unreadCount(username),\n unreadCount\n );\n }\n\n onSuccess?.(unreadCount);\n },\n\n // Rollback optimistic update on error\n onError: (error, _variables, context) => {\n // Restore previous state\n if (context?.previousData) {\n context.previousData.forEach(([queryKey, data]) => {\n queryClient.setQueryData(queryKey, data);\n });\n }\n\n onError?.(error as Error);\n },\n\n // Always refetch after mutation settles\n onSettled: () => {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.notifications._prefix,\n });\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildSetLastReadOps } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface SetLastReadPayload {\n date?: string;\n}\n\nexport function useSetLastRead(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"notifications\", \"set-last-read\"],\n username,\n ({ date }) => buildSetLastReadOps(username!, date),\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.notifications.unreadCount(username),\n ]);\n }\n },\n auth,\n 'posting',\n { broadcastMode: broadcastMode ?? 'async' }\n );\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Proposal } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get a single proposal by ID\n */\nexport function getProposalQueryOptions(id: number) {\n return queryOptions({\n queryKey: [\"proposals\", \"proposal\", id],\n queryFn: async () => {\n const r = await callRPC(\"condenser_api.find_proposals\", [[id]]);\n const proposal = r[0];\n\n // Determine proposal status based on dates\n if (new Date(proposal.start_date) < new Date() && new Date(proposal.end_date) >= new Date()) {\n proposal.status = \"active\";\n } else if (new Date(proposal.end_date) < new Date()) {\n proposal.status = \"expired\";\n } else {\n proposal.status = \"inactive\";\n }\n\n return proposal as Proposal;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { Proposal } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get all proposals, sorted with expired proposals at the end\n */\nexport function getProposalsQueryOptions() {\n return queryOptions({\n queryKey: [\"proposals\", \"list\"],\n queryFn: async () => {\n const response = (await callRPC(\"database_api.list_proposals\", {\n start: [-1],\n limit: 500,\n order: \"by_total_votes\",\n order_direction: \"descending\",\n status: \"all\",\n })) as { proposals: Proposal[] };\n\n const proposals = response.proposals;\n const expired = proposals.filter((x) => x.status === \"expired\");\n const others = proposals.filter((x) => x.status !== \"expired\");\n\n return [...others, ...expired];\n },\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { ProposalVote } from \"../types\";\nimport { FullAccount } from \"@/modules/accounts\";\nimport { parseAccounts } from \"@/modules/accounts/utils\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n// One page = array of enriched vote rows\nexport type ProposalVoteRow = {\n id: number;\n voter: string;\n voterAccount: FullAccount;\n};\n\ntype Cursor = string; // we paginate by last voter name\n\n/**\n * Get proposal votes with pagination and enriched voter account data\n *\n * @param proposalId - The proposal ID\n * @param voter - Starting voter for pagination\n * @param limit - Number of votes per page\n */\nexport function getProposalVotesInfiniteQueryOptions(\n proposalId: number,\n voter: string,\n limit: number\n) {\n return infiniteQueryOptions<\n ProposalVoteRow[],\n Error,\n InfiniteData,\n (string | number)[],\n Cursor\n >({\n queryKey: [\"proposals\", \"votes\", proposalId, voter, limit],\n initialPageParam: voter as Cursor,\n refetchOnMount: true,\n staleTime: 0, // Always refetch on mount\n\n queryFn: async ({ pageParam }: { pageParam: Cursor }) => {\n const startParam = pageParam ?? voter;\n\n const response = (await callRPC(\"condenser_api.list_proposal_votes\", [\n [proposalId, startParam],\n limit,\n \"by_proposal_voter\",\n ])) as ProposalVote[];\n\n const list = response\n .filter((x) => x.proposal?.proposal_id === proposalId)\n .map((x) => ({ id: x.id, voter: x.voter }));\n\n const rawAccounts = await callRPC(\"condenser_api.get_accounts\", [list.map((l) => l.voter)]);\n const accounts = parseAccounts(rawAccounts);\n\n const page: ProposalVoteRow[] = list.map((i) => ({\n ...i,\n voterAccount: accounts.find((a) => i.voter === a.name)!,\n }));\n\n return page;\n },\n\n getNextPageParam: (lastPage: ProposalVoteRow[]): Cursor | undefined => {\n const last = lastPage?.[lastPage.length - 1];\n return last?.voter ?? undefined;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ProposalVote } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Fetches ALL proposal votes for a specific user in a single query.\n * Much more efficient than querying each proposal individually.\n * Uses \"by_voter_proposal\" order to get all votes by a user.\n */\nexport function getUserProposalVotesQueryOptions(voter: string) {\n return queryOptions({\n queryKey: [\"proposals\", \"votes\", \"by-user\", voter],\n enabled: !!voter && voter !== \"\",\n staleTime: 60 * 1000, // Cache for 1 minute\n queryFn: async () => {\n if (!voter || voter === \"\") {\n return [];\n }\n\n const response = (await callRPC(\"database_api.list_proposal_votes\", {\n start: [voter],\n limit: 1000,\n order: \"by_voter_proposal\",\n order_direction: \"ascending\",\n status: \"votable\",\n })) as { proposal_votes: ProposalVote[] };\n\n // Filter to only this user's votes (API might return votes after this user alphabetically)\n const userVotes = (response.proposal_votes || []).filter((vote) => vote.voter === voter);\n\n return userVotes;\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildProposalVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for voting on proposals.\n */\nexport interface ProposalVotePayload {\n /** Array of proposal IDs to vote on */\n proposalIds: number[];\n /** True to approve, false to disapprove */\n approve: boolean;\n}\n\n/**\n * React Query mutation hook for voting on Hive proposals.\n *\n * This mutation broadcasts an update_proposal_votes operation to vote on\n * one or more proposals in the Hive Decentralized Fund (HDF).\n *\n * @param username - The username voting on proposals (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Records activity (type 150) if adapter.recordActivity is available\n * - Invalidates proposal list cache to show updated vote status\n * - Invalidates voter's proposal votes cache\n *\n * **Multiple Proposals:**\n * - You can vote on multiple proposals in a single transaction\n * - All proposals receive the same vote (approve or disapprove)\n * - Proposal IDs are integers, not strings\n *\n * **Vote Types:**\n * - approve: true - Vote in favor of the proposal(s)\n * - approve: false - Remove your vote from the proposal(s)\n *\n * @example\n * ```typescript\n * const proposalVoteMutation = useProposalVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Approve a single proposal\n * proposalVoteMutation.mutate({\n * proposalIds: [123],\n * approve: true\n * });\n *\n * // Approve multiple proposals\n * proposalVoteMutation.mutate({\n * proposalIds: [123, 124, 125],\n * approve: true\n * });\n *\n * // Remove vote from a proposal\n * proposalVoteMutation.mutate({\n * proposalIds: [123],\n * approve: false\n * });\n * ```\n */\nexport function useProposalVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"proposals\", \"vote\"],\n username,\n ({ proposalIds, approve }) => [\n buildProposalVoteOp(username!, proposalIds, approve)\n ],\n async (result: any) => {\n // Wrap post-broadcast side-effects in try-catch to prevent propagating errors\n try {\n // Activity tracking (fire-and-forget — non-critical, shouldn't block mutation completion)\n // Async broadcasts return BroadcastResult ({ tx_id, status }) instead of TransactionConfirmation,\n // so fall back to tx_id when id is absent.\n const txId = result?.id ?? result?.tx_id;\n if (auth?.adapter?.recordActivity && txId) {\n auth.adapter.recordActivity(150, txId, result?.block_num).catch((error) => {\n console.debug(\"[SDK][Proposals][useProposalVote] recordActivity failed\", {\n activityType: 150,\n blockNum: result?.block_num,\n transactionId: txId,\n error\n });\n });\n }\n\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.proposals.list(),\n QueryKeys.proposals.votesByUser(username!)\n ]);\n }\n } catch (error) {\n // Log but don't rethrow - don't fail mutation due to side-effect errors\n console.warn('[useProposalVote] Post-broadcast side-effect failed:', error);\n }\n },\n auth,\n 'active', // Use active authority for proposal votes (required by blockchain)\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildProposalCreateOp, type ProposalCreatePayload } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport { type ProposalCreatePayload };\n\nexport function useProposalCreate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"proposals\", \"create\"],\n username,\n (payload) => [\n buildProposalCreateOp(username!, payload)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.proposals.list(),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { DelegatedVestingShare } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get vesting delegations for an account with infinite scroll support\n *\n * @param username - The account username\n * @param limit - Maximum number of results per page (default: 50)\n */\nexport function getVestingDelegationsQueryOptions(\n username?: string,\n limit = 50\n) {\n return infiniteQueryOptions({\n queryKey: [\"wallet\", \"vesting-delegations\", username, limit],\n initialPageParam: \"\" as string,\n queryFn: async ({ pageParam }: { pageParam: string }) => {\n // Request one extra item on subsequent pages to handle inclusive cursor\n const fetchLimit = pageParam ? limit + 1 : limit;\n\n const result = await callRPC(\"condenser_api.get_vesting_delegations\", [\n username,\n pageParam || \"\",\n fetchLimit,\n ]) as DelegatedVestingShare[];\n\n // Filter out duplicate first item on subsequent pages\n // Hive API is inclusive of the 'from' cursor\n if (pageParam && result.length > 0 && result[0]?.delegatee === pageParam) {\n // Return at most limit items after removing the duplicate\n return result.slice(1, limit + 1);\n }\n\n return result;\n },\n getNextPageParam: (lastPage: DelegatedVestingShare[]) => {\n // If we got fewer results than limit, we've reached the end\n if (!lastPage || lastPage.length < limit) {\n return undefined;\n }\n\n // Return the last delegatee as cursor for next page\n const lastDelegation = lastPage[lastPage.length - 1];\n return lastDelegation?.delegatee;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { AccountDelegations } from \"../types\";\nimport { callREST } from \"@/modules/core/hive-tx\";\n\n/**\n * Account vesting delegations via the HAF balance-api REST endpoint\n * (`/balance-api/accounts/{account-name}/delegations`).\n *\n * Unlike `condenser_api.get_vesting_delegations` (see\n * {@link getHivePowerDelegatesInfiniteQueryOptions}), this returns the\n * complete outgoing AND incoming lists in a single request, with `callREST`\n * handling multi-node failover. `amount` is raw vests (vests * 10^6).\n */\nexport function getAccountDelegationsQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"assets\", \"account-delegations\", username],\n enabled: !!username,\n queryFn: ({ signal }) =>\n callREST(\n \"balance\",\n \"/accounts/{account-name}/delegations\",\n { \"account-name\": username },\n undefined,\n undefined,\n signal\n ) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { VestingDelegationExpiration } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get expiring vesting delegations for an account.\n *\n * When a delegation is removed (set to 0 VESTS), the HP doesn't return\n * immediately — it enters a 5-day cooldown. This query fetches those\n * in-flight expirations so they can be shown alongside active delegations.\n *\n * Uses database_api.find_vesting_delegation_expirations which returns\n * vesting_shares as NAI asset objects ({amount, nai, precision}).\n *\n * @param username - The delegator account username\n */\nexport function getVestingDelegationExpirationsQueryOptions(username?: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"vesting-delegation-expirations\", username],\n queryFn: async () => {\n if (!username) return [];\n const result = await callRPC(\"database_api.find_vesting_delegation_expirations\", { account: username }) as { delegations: VestingDelegationExpiration[] };\n return result.delegations;\n },\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { ConversionRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HBD to HIVE conversion requests for an account\n *\n * @param account - The account username\n */\nexport function getConversionRequestsQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"conversion-requests\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_conversion_requests\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.requestid - b.requestid),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CollateralizedConversionRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get collateralized HIVE to HBD conversion requests for an account\n *\n * @param account - The account username\n */\nexport function getCollateralizedConversionRequestsQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"collateralized-conversion-requests\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_collateralized_conversion_requests\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.requestid - b.requestid),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { SavingsWithdrawRequest } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get pending savings withdrawal requests for an account\n *\n * @param account - The account username\n */\nexport function getSavingsWithdrawFromQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"savings-withdraw\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_savings_withdraw_from\", [\n account,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.request_id - b.request_id),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { WithdrawRoute } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get power down (vesting withdrawal) routes for an account\n *\n * @param account - The account username\n */\nexport function getWithdrawRoutesQueryOptions(account: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"withdraw-routes\", account],\n queryFn: () =>\n callRPC(\"condenser_api.get_withdraw_routes\", [\n account,\n \"outgoing\",\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OpenOrdersData } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get open market orders for an account\n *\n * @param user - The account username\n */\nexport function getOpenOrdersQueryOptions(user: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"open-orders\", user],\n queryFn: () =>\n callRPC(\"condenser_api.get_open_orders\", [\n user,\n ]) as Promise,\n select: (data) => data.sort((a, b) => a.orderid - b.orderid),\n enabled: !!user,\n });\n}\n","import { InfiniteData, infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { RcDirectDelegation, RcDirectDelegationsResponse } from \"../types/rc-direct-delegation\";\n\ntype RcPage = RcDirectDelegation[];\ntype RcCursor = string | null;\n\n/**\n * Get outgoing RC delegations for an account\n *\n * @param username - Account name to get delegations for\n * @param limit - Number of delegations per page\n */\nexport function getOutgoingRcDelegationsInfiniteQueryOptions(username: string, limit = 100) {\n return infiniteQueryOptions<\n RcPage,\n Error,\n InfiniteData,\n (string | number)[],\n RcCursor\n >({\n queryKey: [\"wallet\", \"outgoing-rc-delegations\", username, limit],\n initialPageParam: null as RcCursor,\n\n queryFn: async ({ pageParam }: { pageParam: RcCursor }) => {\n const response = await callRPC(\"rc_api.list_rc_direct_delegations\", {\n start: [username, pageParam ?? \"\"],\n limit,\n })\n .then((r: any) => r as RcDirectDelegationsResponse);\n\n let delegations: RcDirectDelegation[] = response.rc_direct_delegations || [];\n\n // Filter out the starting delegation when paginating\n if (pageParam) {\n delegations = delegations.filter((delegation) => delegation.to !== pageParam);\n }\n\n return delegations;\n },\n\n getNextPageParam: (lastPage: RcPage): RcCursor =>\n lastPage.length === limit ? lastPage[lastPage.length - 1].to : null,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { IncomingRcResponse } from \"../types\";\n\nexport function getIncomingRcQueryOptions(username: string | undefined) {\n return queryOptions({\n queryKey: [\"wallet\", \"incoming-rc\", username],\n enabled: !!username,\n queryFn: async (): Promise => {\n if (!username) {\n throw new Error(\"[SDK][Wallet] - Missing username for incoming RC\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n `${CONFIG.privateApiHost}/private-api/received-rc/${username}`\n );\n\n if (!response.ok) {\n throw new Error(`Failed to fetch incoming RC: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import type { AccountDelegations } from \"../types/account-delegations\";\nimport type { ReceivedVestingShare } from \"../types/received-vesting-share\";\n\n/**\n * Raw vests from balance-api (\"903311000000\" = 903311.000000 VESTS) as the\n * legacy asset string. Takes the decimal string (or a bigint), never a number:\n * a float has already rounded anything above 2^53 raw units before it gets\n * here, and the string arithmetic below keeps every digit.\n */\nexport function rawVestsToAsset(amount: string | bigint): string {\n const digits = String(amount).replace(/\\D/g, \"\") || \"0\";\n const padded = digits.padStart(7, \"0\");\n const whole = padded.slice(0, -6).replace(/^0+(?=\\d)/, \"\");\n return `${whole}.${padded.slice(-6)} VESTS`;\n}\n\n/**\n * The incoming half of an account's balance-api delegations in the shape the\n * received-delegation queries have always returned, largest first.\n */\nexport function toReceivedVestingShares(\n delegatee: string,\n delegations: AccountDelegations | null | undefined,\n): ReceivedVestingShare[] {\n return (delegations?.incoming_delegations ?? [])\n .map((d) => ({\n delegator: d.delegator,\n raw: BigInt(String(d.amount).replace(/\\D/g, \"\") || \"0\"),\n }))\n .sort((a, b) => (a.raw === b.raw ? 0 : a.raw > b.raw ? -1 : 1))\n .map(({ delegator, raw }) => ({\n delegatee,\n delegator,\n vesting_shares: rawVestsToAsset(raw),\n }));\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { getAccountDelegationsQueryOptions } from \"./get-account-delegations-query-options\";\nimport { toReceivedVestingShares } from \"../utils/received-vesting-shares\";\n\n/**\n * Who delegates HP to `username`, largest first.\n *\n * Read from the HAF balance-api through {@link getAccountDelegationsQueryOptions}\n * (fetched via the shared query client, so a page showing the totals and the\n * list makes one request), not from the Ecency notification database any more.\n * The return shape is unchanged apart from `timestamp`, which balance-api does\n * not carry.\n */\nexport function getReceivedVestingSharesQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.wallet.receivedVestingShares(username),\n enabled: !!username,\n queryFn: async () =>\n toReceivedVestingShares(\n username,\n // A page that shows the totals and the list asks twice within seconds;\n // a minute of freshness makes that one balance-api request.\n await getQueryClient().fetchQuery({\n ...getAccountDelegationsQueryOptions(username),\n staleTime: 60_000,\n }),\n ),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { RecurrentTransfer } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get recurrent transfers for an account\n *\n * @param username - The account username\n */\nexport function getRecurrentTransfersQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"wallet\", \"recurrent-transfers\", username],\n queryFn: () =>\n callRPC(\"condenser_api.find_recurrent_transfers\", [\n username,\n ]) as Promise,\n enabled: !!username,\n });\n}\n","import { ConfigManager } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\n\ntype PortfolioLayer = \"points\" | \"hive\" | \"chain\" | \"engine\";\n\ninterface TokenAction {\n id: string;\n [key: string]: unknown;\n}\n\nexport interface PortfolioWalletItem {\n name: string;\n symbol: string;\n layer: PortfolioLayer;\n balance: number;\n fiatRate: number;\n currency: string;\n precision: number;\n address?: string;\n error?: string;\n pendingRewards?: number;\n pendingRewardsFiat?: number;\n liquid?: number;\n liquidFiat?: number;\n savings?: number;\n savingsFiat?: number;\n staked?: number;\n stakedFiat?: number;\n iconUrl?: string;\n actions?: TokenAction[];\n extraData?: Array<{ dataKey: string; value: any }>;\n apr?: number;\n}\n\nexport interface PortfolioResponse {\n username: string;\n currency?: string;\n wallets: PortfolioWalletItem[];\n}\n\nfunction normalizeString(value: unknown): string | undefined {\n if (typeof value === \"string\") {\n const trimmed = value.trim();\n return trimmed.length > 0 ? trimmed : undefined;\n }\n\n return undefined;\n}\n\nfunction normalizeNumber(value: unknown): number | undefined {\n if (typeof value === \"number\" && Number.isFinite(value)) {\n return value;\n }\n\n if (typeof value === \"string\") {\n const trimmed = value.trim();\n if (!trimmed) {\n return undefined;\n }\n\n const direct = Number.parseFloat(trimmed);\n if (Number.isFinite(direct)) {\n return direct;\n }\n\n const sanitized = trimmed.replace(/,/g, \"\");\n const match = sanitized.match(/[-+]?\\d+(?:\\.\\d+)?/);\n if (match) {\n const parsed = Number.parseFloat(match[0]);\n if (Number.isFinite(parsed)) {\n return parsed;\n }\n }\n }\n\n return undefined;\n}\n\nfunction parseToken(rawToken: unknown): PortfolioWalletItem | undefined {\n if (!rawToken || typeof rawToken !== \"object\") {\n return undefined;\n }\n\n const token = rawToken as Record;\n\n // Portfolio v2 returns well-defined PortfolioItem structure\n return {\n name: normalizeString(token.name) ?? \"\",\n symbol: normalizeString(token.symbol) ?? \"\",\n layer: (normalizeString(token.layer) ?? \"hive\") as PortfolioLayer,\n balance: normalizeNumber(token.balance) ?? 0,\n fiatRate: normalizeNumber(token.fiatRate) ?? 0,\n currency: normalizeString(token.currency) ?? \"usd\",\n precision: normalizeNumber(token.precision) ?? 3,\n address: normalizeString(token.address),\n error: normalizeString(token.error),\n pendingRewards: normalizeNumber(token.pendingRewards),\n pendingRewardsFiat: normalizeNumber(token.pendingRewardsFiat),\n liquid: normalizeNumber(token.liquid),\n liquidFiat: normalizeNumber(token.liquidFiat),\n savings: normalizeNumber(token.savings),\n savingsFiat: normalizeNumber(token.savingsFiat),\n staked: normalizeNumber(token.staked),\n stakedFiat: normalizeNumber(token.stakedFiat),\n iconUrl: normalizeString(token.iconUrl),\n actions: (token.actions ?? []) as TokenAction[],\n extraData: (token.extraData ?? []) as Array<{ dataKey: string; value: any }>,\n apr: normalizeNumber(token.apr),\n };\n}\n\nfunction extractTokens(payload: unknown): unknown[] {\n if (!payload || typeof payload !== \"object\") {\n return [];\n }\n\n const containers = [payload];\n const record = payload as Record;\n if (record.data && typeof record.data === \"object\") {\n containers.push(record.data as Record);\n }\n if (record.result && typeof record.result === \"object\") {\n containers.push(record.result as Record);\n }\n if (record.portfolio && typeof record.portfolio === \"object\") {\n containers.push(record.portfolio as Record);\n }\n\n for (const container of containers) {\n if (Array.isArray(container)) {\n return container;\n }\n\n if (container && typeof container === \"object\") {\n for (const key of [\n \"wallets\",\n \"tokens\",\n \"assets\",\n \"items\",\n \"portfolio\",\n \"balances\",\n ]) {\n const value = (container as Record)[key];\n if (Array.isArray(value)) {\n return value;\n }\n }\n }\n }\n\n return [];\n}\n\nfunction resolveUsername(payload: unknown): string | undefined {\n if (!payload || typeof payload !== \"object\") {\n return undefined;\n }\n\n const record = payload as Record;\n return (\n normalizeString(record.username) ??\n normalizeString(record.name) ??\n normalizeString(record.account)\n );\n}\n\n/**\n * Get portfolio query options for fetching user's wallet balances across all layers\n * @param username - Hive username\n * @param currency - Fiat currency code (default: \"usd\")\n * @param onlyEnabled - Only return enabled tokens (default: true)\n * @returns TanStack Query options for portfolio data\n */\nexport function getPortfolioQueryOptions(\n username: string,\n currency: string = \"usd\",\n onlyEnabled: boolean = true\n) {\n return queryOptions({\n queryKey: [\n \"wallet\",\n \"portfolio\",\n \"v2\",\n username,\n onlyEnabled ? \"only-enabled\" : \"all\",\n currency,\n ],\n enabled: Boolean(username),\n staleTime: 60000,\n refetchInterval: 120000,\n queryFn: async (): Promise => {\n if (!username) {\n throw new Error(\"[SDK][Wallet] – username is required\");\n }\n\n const endpoint = `${ConfigManager.getValidatedBaseUrl()}/wallet-api/portfolio-v2`;\n const response = await fetch(endpoint, {\n method: \"POST\",\n headers: {\n Accept: \"application/json\",\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username, onlyEnabled, currency }),\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][Wallet] – Portfolio request failed (${response.status})`\n );\n }\n\n const payload = (await response.json()) as unknown;\n const tokens = extractTokens(payload)\n .map((item) => parseToken(item))\n .filter((item): item is PortfolioWalletItem => Boolean(item))\n // Backend may still emit removed SPK-layer items; drop them defensively\n .filter((item) => (item.layer as string) !== \"spk\");\n\n if (!tokens.length) {\n throw new Error(\n \"[SDK][Wallet] – Portfolio payload contained no tokens\"\n );\n }\n\n return {\n username: resolveUsername(payload) ?? username,\n currency: normalizeString(\n (payload as Record | undefined)?.fiatCurrency ??\n (payload as Record | undefined)?.currency\n )?.toUpperCase(),\n wallets: tokens,\n };\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nexport function getHiveAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n\n const marketTicker = (await callRPC(\"condenser_api.get_ticker\", [])\n .catch(() => undefined)) as { latest?: string } | undefined;\n\n const marketPrice = Number.parseFloat(marketTicker?.latest ?? \"\");\n\n if (!accountData) {\n return {\n name: \"HIVE\",\n title: \"Hive\",\n price: Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0,\n accountBalance: 0,\n } satisfies GeneralAssetInfo;\n }\n\n const liquidBalance = parseAsset(accountData.balance).amount;\n const savingsBalance = parseAsset(accountData.savings_balance).amount;\n\n return {\n name: \"HIVE\",\n title: \"Hive\",\n price: Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0,\n accountBalance: liquidBalance + savingsBalance,\n parts: [\n {\n name: \"current\",\n balance: liquidBalance,\n },\n {\n name: \"savings\",\n balance: savingsBalance,\n },\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nexport function getHbdAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hbd\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n\n const price = 1;\n\n if (!accountData) {\n return {\n name: \"HBD\",\n title: \"Hive Dollar\",\n price,\n accountBalance: 0,\n };\n }\n\n return {\n name: \"HBD\",\n title: \"Hive Dollar\",\n price,\n accountBalance:\n parseAsset(accountData.hbd_balance).amount +\n parseAsset(accountData?.savings_hbd_balance).amount,\n apr: ((dynamicProps?.hbdInterestRate ?? 0) / 100).toFixed(3),\n parts: [\n {\n name: \"current\",\n balance: parseAsset(accountData.hbd_balance).amount,\n },\n {\n name: \"savings\",\n balance: parseAsset(accountData.savings_hbd_balance).amount,\n },\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import type { DynamicProps } from \"@/modules/core\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\nimport { getAccountFullQueryOptions } from \"@/modules/accounts\";\nimport { getDynamicPropsQueryOptions, getQueryClient } from \"@/modules/core\";\nimport type { FullAccount } from \"@/modules/accounts\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { isEmptyDate, parseAsset, vestsToHp } from \"@/modules/core/utils\";\n\nfunction getAPR(dynamicProps: DynamicProps) {\n const initialInflationRate = 9.5;\n const initialBlock = 7000000;\n const decreaseRate = 250000;\n const decreasePercentPerIncrement = 0.01;\n\n const headBlock = dynamicProps.headBlock;\n const deltaBlocks = headBlock - initialBlock;\n const decreaseIncrements = deltaBlocks / decreaseRate;\n\n let currentInflationRate =\n initialInflationRate - decreaseIncrements * decreasePercentPerIncrement;\n\n if (currentInflationRate < 0.95) {\n currentInflationRate = 0.95;\n }\n\n const vestingRewardPercent = dynamicProps.vestingRewardPercent / 10000;\n const virtualSupply = dynamicProps.virtualSupply;\n const totalVestingFunds = dynamicProps.totalVestingFund;\n\n return (\n (virtualSupply * currentInflationRate * vestingRewardPercent) /\n totalVestingFunds\n ).toFixed(3);\n}\n\nexport function getHivePowerAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-power\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getDynamicPropsQueryOptions());\n await getQueryClient().prefetchQuery(\n getAccountFullQueryOptions(username)\n );\n\n const dynamicProps = getQueryClient().getQueryData(\n getDynamicPropsQueryOptions().queryKey\n );\n const accountData = getQueryClient().getQueryData(\n getAccountFullQueryOptions(username).queryKey\n );\n\n if (!dynamicProps || !accountData) {\n return {\n name: \"HP\",\n title: \"Hive Power\",\n price: 0,\n accountBalance: 0,\n };\n }\n\n const marketTicker = (await callRPC(\"condenser_api.get_ticker\", [])\n .catch(() => undefined)) as { latest?: string } | undefined;\n\n const marketPrice = Number.parseFloat(marketTicker?.latest ?? \"\");\n const price = Number.isFinite(marketPrice)\n ? marketPrice\n : dynamicProps.base / dynamicProps.quote;\n\n const vestingShares = parseAsset(accountData.vesting_shares).amount;\n const delegatedVests = parseAsset(\n accountData.delegated_vesting_shares\n ).amount;\n const receivedVests = parseAsset(\n accountData.received_vesting_shares\n ).amount;\n const withdrawRateVests = parseAsset(\n accountData.vesting_withdraw_rate\n ).amount;\n const remainingToWithdrawVests = Math.max(\n (Number(accountData.to_withdraw) - Number(accountData.withdrawn)) /\n 1e6,\n 0\n );\n const nextWithdrawalVests = !isEmptyDate(\n accountData.next_vesting_withdrawal\n )\n ? Math.min(withdrawRateVests, remainingToWithdrawVests)\n : 0;\n\n const hpBalance = +vestsToHp(\n vestingShares,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const outgoingDelegationsHp = +vestsToHp(\n delegatedVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const incomingDelegationsHp = +vestsToHp(\n receivedVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const pendingPowerDownHp = +vestsToHp(\n remainingToWithdrawVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const nextPowerDownHp = +vestsToHp(\n nextWithdrawalVests,\n dynamicProps.hivePerMVests\n ).toFixed(3);\n const totalBalance = Math.max(hpBalance - pendingPowerDownHp, 0);\n const availableHp = Math.max(hpBalance - outgoingDelegationsHp, 0);\n\n return {\n name: \"HP\",\n title: \"Hive Power\",\n price,\n accountBalance: +totalBalance.toFixed(3),\n apr: getAPR(dynamicProps),\n parts: [\n {\n name: \"hp_balance\",\n balance: hpBalance,\n },\n {\n name: \"available\",\n balance: +availableHp.toFixed(3),\n },\n {\n name: \"outgoing_delegations\",\n balance: outgoingDelegationsHp,\n },\n {\n name: \"incoming_delegations\",\n balance: incomingDelegationsHp,\n },\n ...(pendingPowerDownHp > 0\n ? [\n {\n name: \"pending_power_down\",\n balance: +pendingPowerDownHp.toFixed(3),\n },\n ]\n : []),\n ...(nextPowerDownHp > 0 && nextPowerDownHp !== pendingPowerDownHp\n ? [\n {\n name: \"next_power_down\",\n balance: +nextPowerDownHp.toFixed(3),\n },\n ]\n : []),\n ],\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { utils } from \"../../../hive-tx\";\nimport { HiveOperationGroup } from \"../types\";\nconst ops = utils.operations;\n\nexport const HIVE_ACCOUNT_OPERATION_GROUPS: Record<\n HiveOperationGroup,\n number[]\n> = {\n transfers: [\n ops.transfer,\n ops.transfer_to_savings,\n ops.transfer_from_savings,\n ops.cancel_transfer_from_savings,\n ops.recurrent_transfer,\n ops.fill_recurrent_transfer,\n ops.escrow_transfer,\n ops.fill_recurrent_transfer,\n ],\n \"market-orders\": [\n ops.fill_convert_request,\n ops.fill_order,\n ops.fill_collateralized_convert_request,\n ops.limit_order_create2,\n ops.limit_order_create,\n ops.limit_order_cancel,\n ],\n interests: [ops.interest],\n \"stake-operations\": [\n ops.return_vesting_delegation,\n ops.withdraw_vesting,\n ops.transfer_to_vesting,\n ops.set_withdraw_vesting_route,\n ops.update_proposal_votes,\n ops.fill_vesting_withdraw,\n ops.account_witness_proxy,\n ops.delegate_vesting_shares,\n ],\n rewards: [\n ops.author_reward,\n ops.curation_reward,\n ops.producer_reward,\n ops.claim_reward_balance,\n ops.comment_benefactor_reward,\n ops.liquidity_reward,\n ops.proposal_pay,\n ],\n \"\": [],\n};\n","import { utils } from \"../../../hive-tx\";\nimport type { HiveOperationName } from \"../types\";\n\nexport const HIVE_OPERATION_LIST = Object.keys(\n utils.operations\n) as HiveOperationName[];\n","import { utils } from \"../../../hive-tx\";\nimport type { HiveOperationName } from \"../types\";\n\nconst operationOrders = utils.operations as Record<\n HiveOperationName,\n number\n>;\n\nexport const HIVE_OPERATION_ORDERS = operationOrders;\n\nexport const HIVE_OPERATION_NAME_BY_ID: Record =\n Object.entries(operationOrders).reduce((acc, [name, id]) => {\n acc[id] = name as HiveOperationName;\n return acc;\n }, {} as Record);\n","import { callRPC } from \"../../../hive-tx\";\nimport { utils } from \"../../../hive-tx\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { HIVE_ACCOUNT_OPERATION_GROUPS } from \"../consts\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n HiveOperationFilterKey,\n HiveOperationFilterValue,\n HiveOperationGroup,\n HiveOperationName,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport { parseAsset } from \"@/modules/core/utils\";\n\nconst operationOrders = utils.operations;\n\nfunction isHiveOperationName(value: string): value is HiveOperationName {\n return Object.prototype.hasOwnProperty.call(operationOrders, value);\n}\n\nexport function resolveHiveOperationFilters(filters: HiveOperationFilter): {\n filterKey: HiveOperationFilterKey;\n filterArgs: any[];\n} {\n const rawValues: HiveOperationFilterValue[] = Array.isArray(filters)\n ? filters\n : [filters];\n\n const hasAll = rawValues.includes(\"\" as HiveOperationGroup);\n\n const uniqueValues = Array.from(\n new Set(\n rawValues.filter(\n (value): value is HiveOperationFilterValue =>\n value !== undefined &&\n value !== null &&\n value !== (\"\" as HiveOperationGroup)\n )\n )\n );\n\n const filterKey: HiveOperationFilterKey =\n hasAll || uniqueValues.length === 0\n ? \"all\"\n : uniqueValues\n .map((value) => value.toString())\n .sort()\n .join(\"|\");\n\n const operationIds = new Set();\n\n if (!hasAll) {\n uniqueValues.forEach((value) => {\n if (value in HIVE_ACCOUNT_OPERATION_GROUPS) {\n HIVE_ACCOUNT_OPERATION_GROUPS[value as HiveOperationGroup].forEach(\n (id) => operationIds.add(id)\n );\n return;\n }\n\n if (isHiveOperationName(value)) {\n operationIds.add(operationOrders[value]);\n }\n });\n }\n\n const filterArgs = makeBitMaskFilter(Array.from(operationIds));\n\n return {\n filterKey,\n filterArgs,\n };\n}\n\n/**\n * The filter values the caller passed, minus the \"all\" sentinel. Group aliases are\n * kept as-is: they never equal an operation name, so they simply never match.\n *\n * Used by the per-asset `select` filters so an operation a caller deliberately\n * requested is never silently dropped just because the asset filter has no opinion\n * about it. Passing no filter at all keeps the historical behaviour: the asset's own\n * allow-list decides, and nothing extra leaks in.\n */\nexport function collectRequestedOperations(\n filters: HiveOperationFilter\n): Set {\n const rawValues = Array.isArray(filters) ? filters : [filters];\n return new Set(\n rawValues.filter(\n (value): value is HiveOperationFilterValue =>\n value !== undefined && value !== null && value !== (\"\" as HiveOperationGroup)\n )\n );\n}\n\n/**\n * Cursor for `condenser_api.get_account_history`.\n *\n * A page comes back in ASCENDING `num` order, so the OLDEST entry is at index 0 and\n * walking backwards means `page[0].num - 1`. Reading the LAST entry instead takes the\n * NEWEST row, which advances the window by a single operation per page (a page of 1000\n * overlaps its predecessor by 999) and, once `num` reaches 0, yields -1 — the \"newest\"\n * sentinel `initialPageParam` uses — so the walk restarts at the head of the history and\n * never terminates.\n */\nexport function getNextAccountHistoryPageParam(\n lastPage: HiveTransaction[] | undefined\n): number | undefined {\n if (!lastPage?.length) {\n return undefined;\n }\n\n const oldest = Number(lastPage[0]?.num ?? 0);\n return Number.isFinite(oldest) && oldest > 0 ? oldest - 1 : undefined;\n}\n\n/**\n * The `limit` to request for a given cursor.\n *\n * `condenser_api.get_account_history` asserts `start >= limit - 1`, because `start` is a\n * 0-based index into the account's operation list and the node walks `limit` entries back\n * from it. The cursor above is derived from `num` alone, so the last window before the\n * start of history is necessarily shorter than `limit`, and asking for the full `limit`\n * there fails the assert instead of returning the remaining rows.\n *\n * Narrowing the window to `pageParam + 1` asks for exactly what is left. The `-1`\n * sentinel (\"give me the newest\") is not an index and passes through untouched.\n */\nexport function resolveAccountHistoryLimit(\n pageParam: number,\n limit: number\n): number {\n if (!Number.isFinite(pageParam) || pageParam < 0) {\n return limit;\n }\n\n return Math.min(limit, pageParam + 1);\n}\n\nfunction makeBitMaskFilter(allowedOperations: number[]) {\n let low = 0n;\n let high = 0n;\n\n allowedOperations.forEach((operation) => {\n if (operation < 64) {\n low |= 1n << BigInt(operation);\n } else {\n high |= 1n << BigInt(operation - 64);\n }\n });\n\n return [\n low !== 0n ? low.toString() : null,\n high !== 0n ? high.toString() : null,\n ];\n}\n\nexport function getHiveAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterArgs, filterKey } = resolveHiveOperationFilters(filters);\n const requestedOperations = collectRequestedOperations(filters);\n\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive\", \"transactions\", username, limit, filterKey],\n initialPageParam: -1,\n getNextPageParam: getNextAccountHistoryPageParam,\n\n queryFn: async ({ pageParam }) => {\n const response = await callRPC(\n \"condenser_api.get_account_history\",\n [\n username,\n pageParam,\n resolveAccountHistoryLimit(Number(pageParam), limit),\n ...filterArgs,\n ]\n );\n\n return response.map(\n (x: any) =>\n ({\n num: x[0],\n type: x[1].op[0],\n timestamp: x[1].timestamp,\n trx_id: x[1].trx_id,\n ...x[1].op[1],\n }) satisfies HiveTransaction\n );\n },\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const hivePayout = parseAsset(\n (item as AuthorReward).hive_payout\n );\n return hivePayout.amount > 0;\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"transfer_to_vesting\":\n case \"recurrent_transfer\":\n return parseAsset(item.amount).symbol === \"HIVE\";\n\n case \"transfer_from_savings\" as HiveOperationName:\n // The completed withdrawal carries the same asset as the request that\n // opened it, so it needs the same guard. Without a case of its own it\n // falls to the default below, which has no symbol check.\n case \"fill_transfer_from_savings\" as HiveOperationName:\n return parseAsset((item as any).amount).symbol === \"HIVE\";\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"HIVE\"].includes(asset.symbol);\n\n case \"claim_reward_balance\":\n const rewardHive = parseAsset(\n (item as ClaimRewardBalance).reward_hive\n );\n return rewardHive.amount > 0;\n\n case \"curation_reward\":\n case \"cancel_transfer_from_savings\":\n case \"fill_order\":\n case \"limit_order_create\":\n case \"limit_order_cancel\":\n case \"fill_convert_request\":\n case \"fill_collateralized_convert_request\":\n return true;\n\n case \"limit_order_create2\" as HiveOperationName:\n return true;\n default:\n // Keep an operation the caller asked for by name. Without this the\n // filter UI advertises every operation while this switch silently\n // discards the ones it has no opinion about, so picking e.g.\n // `fill_transfer_from_savings` returns an empty list. Requests that\n // pass no filter still fall through to `false`, so the unfiltered\n // HIVE view is unchanged.\n return requestedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { parseAsset } from \"@/modules/core/utils\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n HiveOperationName,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport {\n collectRequestedOperations,\n getHiveAssetTransactionsQueryOptions,\n resolveHiveOperationFilters,\n} from \"./get-hive-asset-transactions-query-options\";\n\nexport function getHbdAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterKey } = resolveHiveOperationFilters(filters);\n const requestedOperations = collectRequestedOperations(filters);\n\n return infiniteQueryOptions({\n ...getHiveAssetTransactionsQueryOptions(username, limit, filters),\n queryKey: [\"assets\", \"hbd\", \"transactions\", username, limit, filterKey],\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const hbdPayout = parseAsset(\n (item as AuthorReward).hbd_payout\n );\n return hbdPayout.amount > 0;\n\n case \"claim_reward_balance\":\n const rewardHbd = parseAsset(\n (item as ClaimRewardBalance).reward_hbd\n );\n return rewardHbd.amount > 0;\n\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"transfer_to_vesting\":\n case \"recurrent_transfer\":\n return parseAsset(item.amount).symbol === \"HBD\";\n\n case \"transfer_from_savings\" as HiveOperationName:\n // The completed withdrawal carries the same asset as the request that\n // opened it, so it needs the same guard. Without a case of its own it\n // falls to the default below, which has no symbol check.\n case \"fill_transfer_from_savings\" as HiveOperationName:\n return parseAsset((item as any).amount).symbol === \"HBD\";\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"HBD\"].includes(asset.symbol);\n\n case \"cancel_transfer_from_savings\":\n case \"fill_order\":\n case \"limit_order_create\":\n case \"limit_order_cancel\":\n case \"fill_convert_request\":\n case \"fill_collateralized_convert_request\":\n case \"proposal_pay\":\n case \"interest\":\n return true;\n\n case \"limit_order_create2\" as HiveOperationName:\n return true;\n default:\n // See the HIVE options: keep an operation the caller named explicitly,\n // otherwise the filter UI offers operations this switch throws away.\n // Unfiltered requests still fall through to `false`.\n return requestedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { parseAsset } from \"@/modules/core/utils\";\nimport type {\n AuthorReward,\n ClaimRewardBalance,\n HiveOperationFilter,\n} from \"../types\";\nimport type { HiveTransaction } from \"../types\";\nimport {\n getHiveAssetTransactionsQueryOptions,\n resolveHiveOperationFilters,\n} from \"./get-hive-asset-transactions-query-options\";\n\nexport function getHivePowerAssetTransactionsQueryOptions(\n username: string | undefined,\n limit = 20,\n filters: HiveOperationFilter = []\n) {\n const { filterKey } = resolveHiveOperationFilters(filters);\n\n const userSelectedOperations = new Set(\n Array.isArray(filters) ? filters : [filters]\n );\n const hasAllFilter =\n userSelectedOperations.has(\"\" as any) || userSelectedOperations.size === 0;\n\n return infiniteQueryOptions({\n ...getHiveAssetTransactionsQueryOptions(username, limit, filters),\n queryKey: [\n \"assets\",\n \"hive-power\",\n \"transactions\",\n username,\n limit,\n filterKey,\n ],\n select: ({ pages, pageParams }) => ({\n pageParams,\n pages: pages.map((page) =>\n page.filter((item) => {\n switch (item.type) {\n case \"author_reward\":\n case \"comment_benefactor_reward\":\n const vestingPayout = parseAsset(\n (item as AuthorReward).vesting_payout\n );\n return vestingPayout.amount > 0;\n\n case \"claim_reward_balance\":\n const rewardVests = parseAsset(\n (item as ClaimRewardBalance).reward_vests\n );\n return rewardVests.amount > 0;\n\n case \"transfer_to_vesting\":\n return true;\n case \"transfer\":\n case \"transfer_to_savings\":\n case \"recurrent_transfer\":\n return [\"VESTS\", \"HP\"].includes(parseAsset(item.amount).symbol);\n\n case \"fill_recurrent_transfer\":\n const asset = parseAsset(item.amount);\n return [\"VESTS\", \"HP\"].includes(asset.symbol);\n\n case \"curation_reward\":\n case \"withdraw_vesting\":\n case \"delegate_vesting_shares\":\n case \"fill_vesting_withdraw\":\n case \"return_vesting_delegation\":\n case \"producer_reward\":\n case \"set_withdraw_vesting_route\":\n return true;\n default:\n return hasAllFilter || userSelectedOperations.has(item.type);\n }\n })\n ),\n }),\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport type { HiveMarketMetric } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nfunction formatDate(date: Date): string {\n const pad = (n: number) => n.toString().padStart(2, \"0\");\n return `${date.getFullYear()}-${pad(date.getMonth() + 1)}-${pad(date.getDate())}T${pad(date.getHours())}:${pad(date.getMinutes())}:${pad(date.getSeconds())}`;\n}\n\nfunction subtractSeconds(date: Date, seconds: number): Date {\n return new Date(date.getTime() - seconds * 1000);\n}\n\nexport function getHiveAssetMetricQueryOptions(bucketSeconds = 86_400) {\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive\", \"metrics\", bucketSeconds],\n queryFn: async ({ pageParam: [startDate, endDate] }) => {\n const apiData: HiveMarketMetric[] = await callRPC(\"condenser_api.get_market_history\", [bucketSeconds, formatDate(startDate), formatDate(endDate)]\n );\n\n return apiData.map(({ hive, non_hive, open }) => ({\n close: non_hive.close / hive.close,\n open: non_hive.open / hive.open,\n low: non_hive.low / hive.low,\n high: non_hive.high / hive.high,\n volume: hive.volume,\n time: new Date(open),\n }));\n },\n initialPageParam: [\n subtractSeconds(new Date(), Math.max(100 * bucketSeconds, 28_800)),\n new Date(),\n ],\n getNextPageParam: (_, __, [prevStartDate]) => [\n subtractSeconds(prevStartDate, Math.max(100 * bucketSeconds, 28_800)),\n subtractSeconds(prevStartDate, bucketSeconds),\n ],\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { WithdrawRoute } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getHiveAssetWithdrawalRoutesQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive\", \"withdrawal-routes\", username],\n queryFn: () =>\n callRPC(\"condenser_api.get_withdraw_routes\", [\n username,\n \"outgoing\",\n ]) as Promise,\n enabled: !!username,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { DelegatedVestingShare } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getHivePowerDelegatesInfiniteQueryOptions(\n username: string,\n limit = 50\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-power\", \"delegates\", username],\n enabled: !!username,\n queryFn: () =>\n callRPC(\"condenser_api.get_vesting_delegations\", [\n username,\n \"\",\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient, QueryKeys } from \"@/modules/core\";\nimport { getAccountDelegationsQueryOptions } from \"./get-account-delegations-query-options\";\nimport { toReceivedVestingShares } from \"../utils/received-vesting-shares\";\n\n/**\n * The same list as {@link getReceivedVestingSharesQueryOptions} under the key\n * the wallet's HP asset views use. Both read the HAF balance-api through the\n * shared account-delegations query, so neither depends on the Ecency\n * notification database.\n */\nexport function getHivePowerDelegatingsQueryOptions(username: string) {\n return queryOptions({\n queryKey: QueryKeys.assets.hivePowerDelegatings(username),\n enabled: !!username,\n queryFn: async () =>\n toReceivedVestingShares(\n username,\n // A page that shows the totals and the list asks twice within seconds;\n // a minute of freshness makes that one balance-api request.\n await getQueryClient().fetchQuery({\n ...getAccountDelegationsQueryOptions(username),\n staleTime: 60_000,\n }),\n ),\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OrdersData } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get the internal HIVE/HBD market order book\n *\n * @param limit - Maximum number of orders to fetch (default: 500)\n */\nexport function getOrderBookQueryOptions(limit = 500) {\n return queryOptions({\n queryKey: [\"market\", \"order-book\", limit],\n queryFn: () =>\n callRPC(\"condenser_api.get_order_book\", [\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketStatistics } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HIVE/HBD market statistics from the blockchain\n */\nexport function getMarketStatisticsQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"statistics\"],\n queryFn: () =>\n callRPC(\"condenser_api.get_ticker\", []) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketCandlestickDataItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get HIVE/HBD market history (candlestick data)\n *\n * @param seconds - Bucket size in seconds\n * @param startDate - Start date for the data\n * @param endDate - End date for the data\n */\nexport function getMarketHistoryQueryOptions(\n seconds: number,\n startDate: Date,\n endDate: Date\n) {\n const formatDate = (date: Date) => {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n };\n\n return queryOptions({\n queryKey: [\"market\", \"history\", seconds, startDate.getTime(), endDate.getTime()],\n queryFn: () =>\n callRPC(\"condenser_api.get_market_history\", [\n seconds,\n formatDate(startDate),\n formatDate(endDate),\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { HiveHbdStats, MarketCandlestickDataItem, MarketStatistics } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\n/**\n * Get combined HIVE/HBD statistics including price, 24h change, and volume\n */\nexport function getHiveHbdStatsQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"hive-hbd-stats\"],\n queryFn: async () => {\n // Get current market statistics\n const stats = (await callRPC(\"condenser_api.get_ticker\", [])) as MarketStatistics;\n\n // Get 24h market history\n const now = new Date();\n const oneDayAgo = new Date(now.getTime() - 86400000); // 24 hours ago\n\n const formatDate = (date: Date) => {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n };\n\n const dayChange = (await callRPC(\"condenser_api.get_market_history\", [86400, formatDate(oneDayAgo), formatDate(now)]\n )) as MarketCandlestickDataItem[];\n\n // Calculate stats\n const result: HiveHbdStats = {\n price: +stats.latest,\n close: dayChange[0] ? dayChange[0].non_hive.open / dayChange[0].hive.open : 0,\n high: dayChange[0] ? dayChange[0].non_hive.high / dayChange[0].hive.high : 0,\n low: dayChange[0] ? dayChange[0].non_hive.low / dayChange[0].hive.low : 0,\n percent: dayChange[0]\n ? 100 - ((dayChange[0].non_hive.open / dayChange[0].hive.open) * 100) / +stats.latest\n : 0,\n totalFromAsset: stats.hive_volume.split(\" \")[0],\n totalToAsset: stats.hbd_volume.split(\" \")[0],\n };\n\n return result;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { MarketData } from \"../types\";\nimport { getBoundFetch } from \"@/modules/core\";\n\n/**\n * Get market chart data from CoinGecko API\n *\n * @param coin - Coin ID (e.g., \"hive\", \"bitcoin\")\n * @param vsCurrency - Currency to compare against (e.g., \"usd\", \"eur\")\n * @param fromTs - From timestamp (Unix timestamp in seconds)\n * @param toTs - To timestamp (Unix timestamp in seconds)\n */\nexport function getMarketDataQueryOptions(\n coin: string,\n vsCurrency: string,\n fromTs: string,\n toTs: string\n) {\n return queryOptions({\n queryKey: [\"market\", \"data\", coin, vsCurrency, fromTs, toTs],\n queryFn: async ({ signal }) => {\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/coins/${coin}/market_chart/range?vs_currency=${vsCurrency}&from=${fromTs}&to=${toTs}`;\n\n const response = await fetchApi(url, { signal });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch market data: ${response.status}`);\n }\n\n return response.json() as Promise;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { OrdersDataItem } from \"../types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nfunction formatDate(date: Date) {\n return date.toISOString().replace(/\\.\\d{3}Z$/, \"\");\n}\n\nexport function getTradeHistoryQueryOptions(\n limit = 1000,\n startDate?: Date,\n endDate?: Date\n) {\n const end = endDate ?? new Date();\n const start =\n startDate ?? new Date(end.getTime() - 10 * 60 * 60 * 1000);\n\n return queryOptions({\n queryKey: [\"market\", \"trade-history\", limit, start.getTime(), end.getTime()],\n queryFn: () =>\n callRPC(\"condenser_api.get_trade_history\", [\n formatDate(start),\n formatDate(end),\n limit,\n ]) as Promise,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface FeedHistoryItem {\n id: number;\n current_median_history: {\n base: string;\n quote: string;\n };\n market_median_history: {\n base: string;\n quote: string;\n };\n current_min_history: {\n base: string;\n quote: string;\n };\n current_max_history: {\n base: string;\n quote: string;\n };\n price_history: Array<{\n base: string;\n quote: string;\n }>;\n}\n\n/**\n * Get feed history from the blockchain\n * Returns price feed history including median prices\n */\nexport function getFeedHistoryQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"feed-history\"],\n queryFn: async () => {\n try {\n const feedHistory = await callRPC(\"condenser_api.get_feed_history\", []);\n return feedHistory as FeedHistoryItem;\n } catch (error) {\n throw error;\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport interface MedianHistoryPrice {\n base: string;\n quote: string;\n}\n\n/**\n * Get current median history price from the blockchain\n * Returns the current median price for HIVE/HBD conversion\n */\nexport function getCurrentMedianHistoryPriceQueryOptions() {\n return queryOptions({\n queryKey: [\"market\", \"current-median-history-price\"],\n queryFn: async () => {\n try {\n const price = await callRPC(\"condenser_api.get_current_median_history_price\", []);\n return price as MedianHistoryPrice;\n } catch (error) {\n throw error;\n }\n },\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildLimitOrderCreateOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface LimitOrderCreatePayload {\n amountToSell: string;\n minToReceive: string;\n fillOrKill: boolean;\n expiration: string;\n orderId: number;\n}\n\nexport function useLimitOrderCreate(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"market\", \"limit-order-create\"],\n username,\n (payload) => [\n buildLimitOrderCreateOp(\n username!,\n payload.amountToSell,\n payload.minToReceive,\n payload.fillOrKill,\n payload.expiration,\n payload.orderId\n )\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.wallet.openOrders(username!),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildLimitOrderCancelOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface LimitOrderCancelPayload {\n orderId: number;\n}\n\nexport function useLimitOrderCancel(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"market\", \"limit-order-cancel\"],\n username,\n ({ orderId }) => [\n buildLimitOrderCancelOp(username!, orderId)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.wallet.openOrders(username!),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { MarketData } from \"./types\";\nimport { CurrencyRates } from \"@/modules/private-api/types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nasync function parseJsonResponse(response: Response): Promise {\n const data = (await response.json()) as T;\n if (!response.ok) {\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n return data;\n}\n\nexport async function getMarketData(\n coin: string,\n vsCurrency: string,\n fromTs: string,\n toTs: string\n): Promise {\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/coins/${coin}/market_chart/range?vs_currency=${vsCurrency}&from=${fromTs}&to=${toTs}`;\n const response = await fetchApi(url);\n return parseJsonResponse(response);\n}\n\nexport async function getCurrencyRate(cur: string): Promise {\n if (cur === \"hbd\") {\n return 1;\n }\n\n const fetchApi = getBoundFetch();\n const url = `https://api.coingecko.com/api/v3/simple/price?ids=hive_dollar&vs_currencies=${cur}`;\n const response = await fetchApi(url);\n const data = await parseJsonResponse<{ hive_dollar: Record }>(response);\n return data.hive_dollar[cur];\n}\n\nexport async function getCurrencyTokenRate(currency: string, token: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost +\n `/private-api/market-data/${currency === \"hbd\" ? \"usd\" : currency}/${token}`\n );\n\n return parseJsonResponse(response);\n}\n\nexport async function getCurrencyRates(): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/market-data/latest\");\n return parseJsonResponse(response);\n}\n\nexport async function getHivePrice(): Promise<{ hive: { usd: number } }> {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n \"https://api.coingecko.com/api/v3/simple/price?ids=hive&vs_currencies=usd\"\n );\n return parseJsonResponse<{ hive: { usd: number } }>(response);\n}\n","import { ConfigManager, getBoundFetch } from \"@/modules/core\";\nimport type { HiveEngineOpenOrder } from \"./types\";\n\ntype EngineOrderBookEntry = {\n txId: string;\n timestamp: number;\n account: string;\n symbol: string;\n quantity: string;\n price: string;\n tokensLocked?: string;\n};\n\nconst ENGINE_RPC_HEADERS = { \"Content-type\": \"application/json\" };\n\nasync function engineRpc(payload: Record): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const response = await fetchApi(`${baseUrl}/private-api/engine-api`, {\n method: \"POST\",\n body: JSON.stringify(payload),\n headers: ENGINE_RPC_HEADERS,\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – request failed with ${response.status}`\n );\n }\n\n const data = (await response.json()) as { result: T };\n return data.result;\n}\n\nasync function engineRpcSafe(\n payload: Record,\n fallback: T\n): Promise {\n try {\n return await engineRpc(payload);\n } catch (e) {\n return fallback;\n }\n}\n\nexport async function getHiveEngineOrderBook(\n symbol: string,\n limit: number = 50\n): Promise<{ buy: T[]; sell: T[] }> {\n const baseParams = {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n query: { symbol },\n limit,\n offset: 0,\n },\n id: 1,\n };\n\n const [buy, sell] = await Promise.all([\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"buyBook\",\n indexes: [{ index: \"price\", descending: true }],\n },\n },\n []\n ),\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"sellBook\",\n indexes: [{ index: \"price\", descending: false }],\n },\n },\n []\n ),\n ]);\n\n const sortByPriceDesc = (items: T[]) =>\n items.sort((a, b) => {\n const left = Number((a as EngineOrderBookEntry).price ?? 0);\n const right = Number((b as EngineOrderBookEntry).price ?? 0);\n return right - left;\n });\n const sortByPriceAsc = (items: T[]) =>\n items.sort((a, b) => {\n const left = Number((a as EngineOrderBookEntry).price ?? 0);\n const right = Number((b as EngineOrderBookEntry).price ?? 0);\n return left - right;\n });\n\n return {\n buy: sortByPriceDesc(buy),\n sell: sortByPriceAsc(sell),\n };\n}\n\nexport async function getHiveEngineTradeHistory>(\n symbol: string,\n limit: number = 50\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n table: \"tradesHistory\",\n query: { symbol },\n limit,\n offset: 0,\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineOpenOrders(\n account: string,\n symbol: string,\n limit: number = 100\n): Promise {\n const baseParams = {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n query: { symbol, account },\n limit,\n offset: 0,\n },\n id: 1,\n };\n\n const [buyRaw, sellRaw] = await Promise.all([\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"buyBook\",\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n },\n []\n ),\n engineRpcSafe(\n {\n ...baseParams,\n params: {\n ...baseParams.params,\n table: \"sellBook\",\n indexes: [{ index: \"timestamp\", descending: true }],\n },\n },\n []\n ),\n ]);\n\n const formatTotal = (quantity: string, price: string) =>\n (Number(quantity || 0) * Number(price || 0)).toFixed(8);\n\n const buy: HiveEngineOpenOrder[] = buyRaw.map((order) => ({\n id: order.txId,\n type: \"buy\",\n account: order.account,\n symbol: order.symbol,\n quantity: order.quantity,\n price: order.price,\n total: order.tokensLocked ?? formatTotal(order.quantity, order.price),\n timestamp: Number(order.timestamp ?? 0),\n }));\n\n const sell: HiveEngineOpenOrder[] = sellRaw.map((order) => ({\n id: order.txId,\n type: \"sell\",\n account: order.account,\n symbol: order.symbol,\n quantity: order.quantity,\n price: order.price,\n total: formatTotal(order.quantity, order.price),\n timestamp: Number(order.timestamp ?? 0),\n }));\n\n return [...buy, ...sell].sort((a, b) => b.timestamp - a.timestamp) as T[];\n}\n\n/**\n * Market metrics, optionally narrowed to one symbol or to a list of them.\n *\n * An unfiltered call is served from a single page – the node caps `find` at 1000 rows\n * while Hive engine has far more traded tokens than that – so callers that only care\n * about specific symbols must pass them. Scanning the unfiltered page for a symbol\n * silently reports \"no market\" for everything outside it.\n */\nexport async function getHiveEngineMetrics>(\n symbol?: string | string[],\n account?: string\n): Promise {\n if (Array.isArray(symbol) && symbol.length === 0) {\n return [];\n }\n\n const symbolQuery = Array.isArray(symbol)\n ? { symbol: { $in: symbol } }\n : symbol\n ? { symbol }\n : {};\n\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"market\",\n table: \"metrics\",\n query: {\n ...symbolQuery,\n ...(account ? { account } : {}),\n },\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokensMarket>(\n account?: string,\n symbol?: string | string[]\n): Promise {\n return getHiveEngineMetrics(symbol, account);\n}\n\nexport async function getHiveEngineTokensBalances>(\n username: string\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"tokens\",\n table: \"balances\",\n query: {\n account: username,\n },\n },\n id: 1,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokensMetadata>(\n tokens: string[]\n): Promise {\n return engineRpcSafe(\n {\n jsonrpc: \"2.0\",\n method: \"find\",\n params: {\n contract: \"tokens\",\n table: \"tokens\",\n query: {\n symbol: { $in: tokens },\n },\n },\n id: 2,\n },\n []\n );\n}\n\nexport async function getHiveEngineTokenTransactions>(\n username: string,\n symbol: string,\n limit: number,\n offset: number\n): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/engine-account-history\", baseUrl);\n url.searchParams.set(\"account\", username);\n url.searchParams.set(\"symbol\", symbol);\n url.searchParams.set(\"limit\", limit.toString());\n url.searchParams.set(\"offset\", offset.toString());\n\n const response = await fetchApi(url.toString(), {\n method: \"GET\",\n headers: { \"Content-type\": \"application/json\" },\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – account history failed with ${response.status}`\n );\n }\n\n return (await response.json()) as T[];\n}\n\nexport async function getHiveEngineTokenMetrics>(\n symbol: string,\n interval = \"daily\"\n): Promise {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const url = new URL(\"/private-api/engine-chart-api\", baseUrl);\n url.searchParams.set(\"symbol\", symbol);\n url.searchParams.set(\"interval\", interval);\n\n const response = await fetchApi(url.toString(), {\n headers: { \"Content-type\": \"application/json\" },\n });\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – chart failed with ${response.status}`\n );\n }\n\n return (await response.json()) as T[];\n}\n\nexport async function getHiveEngineUnclaimedRewards>(\n username: string\n): Promise> {\n const fetchApi = getBoundFetch();\n const baseUrl = ConfigManager.getValidatedBaseUrl();\n const response = await fetchApi(\n `${baseUrl}/private-api/engine-reward-api/${username}?hive=1`\n );\n\n if (!response.ok) {\n throw new Error(\n `[SDK][HiveEngine] – rewards failed with ${response.status}`\n );\n }\n\n return (await response.json()) as Record;\n}\n","import { getHiveEngineTokensBalances } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenBalance } from \"../types\";\n\nexport function getHiveEngineTokensBalancesQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"balances\", username] as const,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensBalances(username);\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineMarketResponse } from \"../types\";\nimport { getHiveEngineTokensMarket } from \"../requests\";\n\nexport function getHiveEngineTokensMarketQueryOptions() {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"markets\"],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensMarket();\n },\n });\n}\n","import { getHiveEngineTokensMetadata } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenMetadataResponse } from \"../types\";\n\nexport function getHiveEngineTokensMetadataQueryOptions(tokens: string[]) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"metadata-list\", tokens] as const,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokensMetadata(tokens);\n },\n });\n}\n","import { getHiveEngineTokenTransactions } from \"../requests\";\nimport { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTransaction } from \"../types\";\n\nexport function getHiveEngineTokenTransactionsQueryOptions(\n username: string | undefined,\n symbol: string,\n limit = 20\n) {\n return infiniteQueryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol, \"transactions\", username],\n enabled: !!symbol && !!username,\n initialPageParam: 0,\n queryFn: async ({ pageParam }) => {\n if (!symbol || !username) {\n throw new Error(\n \"[SDK][HiveEngine] – token or username missed\"\n );\n }\n return getHiveEngineTokenTransactions(\n username,\n symbol,\n limit,\n pageParam as number\n );\n },\n getNextPageParam: (lastPage, _allPages, lastPageParam) =>\n (lastPage?.length ?? 0) === limit ? (lastPageParam as number) + limit : undefined,\n getPreviousPageParam: (_firstPage, _allPages, firstPageParam) =>\n (firstPageParam as number) > 0 ? (firstPageParam as number) - limit : undefined,\n });\n}\n","import { getHiveEngineTokenMetrics } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineMetric } from \"../types\";\n\nexport function getHiveEngineTokensMetricsQueryOptions(\n symbol: string,\n interval = \"daily\"\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n return getHiveEngineTokenMetrics(symbol, interval);\n },\n });\n}\n","import { getHiveEngineUnclaimedRewards } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenStatus } from \"../types\";\n\nexport function getHiveEngineUnclaimedRewardsQueryOptions(\n username: string | undefined\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"unclaimed\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n enabled: !!username,\n queryFn: async () => {\n try {\n const data = await getHiveEngineUnclaimedRewards(\n username as string\n );\n return Object.values(data).filter(\n ({ pending_token }) => pending_token > 0\n );\n } catch (e) {\n return [];\n }\n },\n });\n}\n","import { getHiveEngineTokensMarket } from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { HiveEngineTokenInfo } from \"../types\";\n\nexport function getAllHiveEngineTokensQueryOptions(\n account?: string,\n symbol?: string | string[]\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", \"all-tokens\", account, symbol] as const,\n queryFn: async () => {\n return getHiveEngineTokensMarket(account, symbol);\n },\n });\n}\n","interface Options {\n fractionDigits?: number;\n prefix?: string;\n suffix?: string;\n}\n\nexport function formattedNumber(\n value: number | string,\n options: Options | undefined = undefined\n) {\n let opts: Options = {\n fractionDigits: 3,\n prefix: \"\",\n suffix: \"\",\n };\n\n if (options) {\n opts = { ...opts, ...options };\n }\n\n const { fractionDigits, prefix, suffix } = opts;\n\n let out = \"\";\n\n if (prefix) out += prefix + \" \";\n // turn too small values to zero. Bug: https://github.com/adamwdraper/Numeral-js/issues/563\n const av = Math.abs(parseFloat(value.toString())) < 0.0001 ? 0 : value;\n const num = typeof av === \"string\" ? parseFloat(av) : av;\n out += num.toLocaleString(\"en-US\", {\n minimumFractionDigits: fractionDigits,\n maximumFractionDigits: fractionDigits,\n useGrouping: true,\n });\n if (suffix) out += \" \" + suffix;\n\n return out;\n}\n","import { formattedNumber } from \"./formatted-number\";\n\ninterface HiveEngineTokenProps {\n symbol: string;\n name: string;\n icon: string;\n precision: number;\n stakingEnabled: boolean;\n delegationEnabled: boolean;\n balance: string;\n stake: string;\n delegationsIn: string;\n delegationsOut: string;\n usdValue: number;\n}\n\nexport class HiveEngineToken {\n symbol: string;\n name?: string;\n icon?: string;\n\n precision?: number;\n stakingEnabled?: boolean;\n delegationEnabled?: boolean;\n balance: number;\n stake: number;\n stakedBalance: number;\n delegationsIn: number;\n delegationsOut: number;\n usdValue: number;\n\n constructor(props: HiveEngineTokenProps) {\n this.symbol = props.symbol;\n this.name = props.name || \"\";\n this.icon = props.icon || \"\";\n\n this.precision = props.precision || 0;\n this.stakingEnabled = props.stakingEnabled || false;\n this.delegationEnabled = props.delegationEnabled || false;\n this.balance = parseFloat(props.balance) || 0;\n this.stake = parseFloat(props.stake) || 0;\n this.delegationsIn = parseFloat(props.delegationsIn) || 0;\n this.delegationsOut = parseFloat(props.delegationsOut) || 0;\n this.stakedBalance =\n this.stake + this.delegationsIn - this.delegationsOut;\n this.usdValue = props.usdValue;\n }\n\n hasDelegations = (): boolean => {\n if (!this.delegationEnabled) {\n return false;\n }\n\n return this.delegationsIn > 0 && this.delegationsOut > 0;\n };\n\n delegations = (): string => {\n if (!this.hasDelegations()) {\n return \"\";\n }\n\n return `(${formattedNumber(this.stake, {\n fractionDigits: this.precision,\n })} + ${formattedNumber(this.delegationsIn, {\n fractionDigits: this.precision,\n })} - ${formattedNumber(this.delegationsOut, {\n fractionDigits: this.precision,\n })})`;\n };\n\n staked = (): string => {\n if (!this.stakingEnabled) {\n return \"-\";\n }\n\n if (this.stakedBalance < 0.0001) {\n return this.stakedBalance.toString();\n }\n\n return formattedNumber(this.stakedBalance, {\n fractionDigits: this.precision,\n });\n };\n\n balanced = (): string => {\n if (this.balance < 0.0001) {\n return this.balance.toString();\n }\n\n return formattedNumber(this.balance, { fractionDigits: this.precision });\n };\n}\n","import {\n getHiveEngineTokensBalances,\n getHiveEngineTokensMarket,\n getHiveEngineTokensMetadata,\n} from \"../requests\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type {\n HiveEngineTokenBalance,\n Token,\n TokenMetadata,\n HiveEngineTokenInfo,\n} from \"../types\";\nimport { HiveEngineToken } from \"../utils\";\n\ninterface DynamicProps {\n base: number;\n quote: number;\n}\n\nexport function getHiveEngineBalancesWithUsdQueryOptions(\n account: string,\n dynamicProps?: DynamicProps,\n allTokens?: HiveEngineTokenInfo[]\n) {\n return queryOptions({\n queryKey: [\n \"assets\",\n \"hive-engine\",\n \"balances-with-usd\",\n account,\n dynamicProps,\n allTokens,\n ] as const,\n queryFn: async () => {\n if (!account) {\n throw new Error(\"[HiveEngine] No account in a balances query\");\n }\n\n const balances = await getHiveEngineTokensBalances(account);\n\n const tokens = await getHiveEngineTokensMetadata(\n balances.map((t) => t.symbol)\n );\n\n const pricePerHive = dynamicProps\n ? dynamicProps.base / dynamicProps.quote\n : 0;\n const providedMetrics: ReadonlyArray = Array.isArray(\n allTokens\n )\n ? allTokens\n : [];\n\n // Whatever the caller passed comes from an unfiltered metrics call, which the node\n // caps at 1000 rows – held tokens outside that page have no price and used to be\n // valued at zero, understating the wallet. Ask for the missing ones by symbol.\n const unpricedSymbols = balances\n .map((balance) => balance.symbol)\n .filter(\n (symbol) =>\n symbol !== \"SWAP.HIVE\" &&\n !providedMetrics.some((metric) => metric.symbol === symbol)\n );\n\n const metrics: ReadonlyArray = [\n ...providedMetrics,\n ...(unpricedSymbols.length\n ? await getHiveEngineTokensMarket(\n undefined,\n unpricedSymbols\n )\n : []),\n ];\n\n return balances.map((balance) => {\n const token = tokens.find((t) => t.symbol === balance.symbol);\n let tokenMetadata: TokenMetadata | undefined;\n\n if (token?.metadata) {\n try {\n tokenMetadata = JSON.parse(token.metadata) as TokenMetadata;\n } catch {\n tokenMetadata = undefined;\n }\n }\n\n const metric = metrics.find((m) => m.symbol === balance.symbol);\n const lastPrice = Number(metric?.lastPrice ?? \"0\");\n const balanceAmount = Number(balance.balance);\n\n const usdValue =\n balance.symbol === \"SWAP.HIVE\"\n ? pricePerHive * balanceAmount\n : lastPrice === 0\n ? 0\n : Number(\n (lastPrice * pricePerHive * balanceAmount).toFixed(10)\n );\n\n return new HiveEngineToken({\n symbol: balance.symbol,\n name: token?.name ?? balance.symbol,\n icon: tokenMetadata?.icon ?? \"\",\n precision: token?.precision ?? 0,\n stakingEnabled: token?.stakingEnabled ?? false,\n delegationEnabled: token?.delegationEnabled ?? false,\n balance: balance.balance,\n stake: balance.stake,\n delegationsIn: balance.delegationsIn,\n delegationsOut: balance.delegationsOut,\n usdValue,\n });\n });\n },\n enabled: !!account,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { getQueryClient } from \"@/modules/core\";\nimport type { GeneralAssetInfo } from \"@/modules/wallet/types\";\nimport { getHiveEngineTokensMetadataQueryOptions } from \"./get-hive-engine-tokens-metadata-query-options\";\nimport { getHiveEngineTokensBalancesQueryOptions } from \"./get-hive-engine-tokens-balances-query-options\";\nimport { getAllHiveEngineTokensQueryOptions } from \"./get-all-hive-engine-tokens-query-options\";\nimport { getHiveAssetGeneralInfoQueryOptions } from \"@/modules/wallet/queries/get-hive-asset-general-info-query-options\";\n\nexport function getHiveEngineTokenGeneralInfoQueryOptions(\n username?: string,\n symbol?: string\n) {\n return queryOptions({\n queryKey: [\"assets\", \"hive-engine\", symbol, \"general-info\", username],\n enabled: !!symbol && !!username,\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n if (!symbol || !username) {\n throw new Error(\n \"[SDK][HiveEngine] – token or username missed\"\n );\n }\n const queryClient = getQueryClient();\n const hiveQuery = getHiveAssetGeneralInfoQueryOptions(username);\n await queryClient.prefetchQuery(hiveQuery);\n const hiveData = queryClient.getQueryData(\n hiveQuery.queryKey\n );\n\n const metadataList = await queryClient.ensureQueryData(\n getHiveEngineTokensMetadataQueryOptions([symbol])\n );\n\n const balanceList = await queryClient.ensureQueryData(\n getHiveEngineTokensBalancesQueryOptions(username)\n );\n\n // Scoped to this symbol: the unfiltered metrics call is capped at 1000 rows, so a\n // token outside that page reported no market and rendered a zero price.\n const marketList = await queryClient.ensureQueryData(\n getAllHiveEngineTokensQueryOptions(undefined, symbol)\n );\n\n const metadata = metadataList?.find((i) => i.symbol === symbol);\n const balance = balanceList?.find((i) => i.symbol === symbol);\n const market = marketList?.find((i) => i.symbol === symbol);\n\n const lastPrice = +(market?.lastPrice ?? \"0\");\n\n const liquidBalance = parseFloat(balance?.balance ?? \"0\");\n const stakedBalance = parseFloat(balance?.stake ?? \"0\");\n const unstakingBalance = parseFloat(balance?.pendingUnstake ?? \"0\");\n\n const parts: GeneralAssetInfo[\"parts\"] = [\n { name: \"liquid\", balance: liquidBalance },\n { name: \"staked\", balance: stakedBalance },\n ];\n\n if (unstakingBalance > 0) {\n parts.push({ name: \"unstaking\", balance: unstakingBalance });\n }\n\n return {\n name: symbol,\n title: metadata?.name ?? \"\",\n price: lastPrice === 0 ? 0 : Number(lastPrice * (hiveData?.price ?? 0)),\n accountBalance: liquidBalance + stakedBalance,\n layer: \"ENGINE\",\n parts,\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\nimport { PointTransaction } from \"../types/point-transaction\";\n\ninterface PointsResponse {\n points: string;\n unclaimed_points: string;\n}\n\nexport function getPointsQueryOptions(username?: string, filter = 0) {\n return queryOptions({\n queryKey: [\"points\", username, filter],\n queryFn: async () => {\n if (!username) {\n throw new Error(\"Get points query – username wasn't provided\");\n }\n\n const name = username.replace(\"@\", \"\");\n\n // Get points\n const pointsResponse = await fetch(CONFIG.privateApiHost + \"/private-api/points\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username: name }),\n });\n\n if (!pointsResponse.ok) {\n throw new Error(`Failed to fetch points: ${pointsResponse.status}`);\n }\n\n const points = (await pointsResponse.json()) as PointsResponse;\n\n // Get transactions\n const transactionsResponse = await fetch(\n CONFIG.privateApiHost + \"/private-api/point-list\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ username: name, type: filter }),\n }\n );\n\n if (!transactionsResponse.ok) {\n throw new Error(`Failed to fetch point transactions: ${transactionsResponse.status}`);\n }\n\n const transactions = (await transactionsResponse.json()) as PointTransaction[];\n\n return {\n points: points.points,\n uPoints: points.unclaimed_points,\n transactions,\n } as const;\n },\n staleTime: 30000,\n refetchOnMount: true,\n enabled: !!username,\n });\n}\n","import { getQueryClient } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"@/modules/wallet/types\";\nimport { getPointsQueryOptions } from \"./get-points-query-options\";\n\nexport function getPointsAssetGeneralInfoQueryOptions(username: string) {\n return queryOptions({\n queryKey: [\"assets\", \"points\", \"general-info\", username],\n staleTime: 60000,\n refetchInterval: 90000,\n queryFn: async () => {\n await getQueryClient().prefetchQuery(getPointsQueryOptions(username));\n const data = getQueryClient().getQueryData(\n getPointsQueryOptions(username).queryKey\n );\n return {\n name: \"POINTS\",\n title: \"Ecency Points\",\n price: 0.002,\n accountBalance: +(data?.points ?? 0),\n } satisfies GeneralAssetInfo;\n },\n });\n}\n","import { CONFIG } from \"@/modules/core/config\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { PointTransaction } from \"../types\";\nimport { PointTransactionType } from \"../types\";\nimport type { GeneralAssetTransaction } from \"@/modules/wallet/types\";\n\nexport function getPointsAssetTransactionsQueryOptions(\n username: string | undefined,\n type?: PointTransactionType\n) {\n return queryOptions({\n queryKey: [\"assets\", \"points\", \"transactions\", username, type],\n queryFn: async () => {\n const response = await fetch(\n `${CONFIG.privateApiHost}/private-api/point-list`,\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({\n username,\n type: type ?? 0,\n }),\n }\n );\n const data = (await response.json()) as PointTransaction[];\n return data.map(({ created, type, amount, id, sender, receiver, memo }) => ({\n created: new Date(created),\n type,\n results: [\n {\n amount: parseFloat(amount),\n asset: \"POINTS\",\n },\n ],\n id,\n from: sender ?? undefined,\n to: receiver ?? undefined,\n memo: memo ?? undefined,\n })) satisfies GeneralAssetTransaction[];\n },\n });\n}\n","import { getQueryClient } from \"@/modules/core\";\nimport { getCurrencyRate } from \"@/modules/market\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport type { GeneralAssetInfo } from \"../types\";\nimport { getHiveAssetGeneralInfoQueryOptions } from \"./get-hive-asset-general-info-query-options\";\nimport { getHbdAssetGeneralInfoQueryOptions } from \"./get-hbd-asset-general-info-query-options\";\nimport { getHivePowerAssetGeneralInfoQueryOptions } from \"./get-hive-power-asset-general-info-query-options\";\nimport { getHiveEngineTokensBalancesQueryOptions } from \"@/modules/hive-engine/queries\";\nimport { getHiveEngineTokenGeneralInfoQueryOptions } from \"@/modules/hive-engine/queries\";\nimport { getPointsAssetGeneralInfoQueryOptions } from \"@/modules/points/queries\";\nimport {\n getPortfolioQueryOptions,\n type PortfolioResponse,\n type PortfolioWalletItem,\n} from \"./get-portfolio-query-options\";\n\ninterface Options {\n refetch?: boolean;\n currency?: string;\n}\n\nexport function getAccountWalletAssetInfoQueryOptions(\n username: string,\n asset: string,\n options: Options = { refetch: false }\n) {\n const queryClient = getQueryClient();\n const currency = options.currency ?? \"usd\";\n\n const fetchQuery = async (qo: any) => {\n if (options.refetch) {\n await queryClient.fetchQuery(qo);\n } else {\n await queryClient.prefetchQuery(qo);\n }\n return queryClient.getQueryData(qo.queryKey);\n };\n\n const convertPriceToUserCurrency = async (\n assetInfo: GeneralAssetInfo | undefined\n ): Promise => {\n if (!assetInfo || currency === \"usd\") {\n return assetInfo;\n }\n\n try {\n const conversionRate = await getCurrencyRate(currency);\n return {\n ...assetInfo,\n price: assetInfo.price * conversionRate,\n };\n } catch (error) {\n console.warn(`Failed to convert price from USD to ${currency}:`, error);\n return assetInfo;\n }\n };\n\n const portfolioQuery = getPortfolioQueryOptions(username, currency, true);\n\n const getPortfolioAssetInfo = async () => {\n try {\n const portfolio: PortfolioResponse = await queryClient.fetchQuery(portfolioQuery);\n const assetItem = portfolio.wallets.find(\n (item: PortfolioWalletItem) =>\n item.symbol.toUpperCase() === asset.toUpperCase()\n );\n\n if (!assetItem) return undefined;\n\n const parts: Array<{ name: string; balance: number }> = [];\n\n if (assetItem.liquid !== undefined && assetItem.liquid !== null) {\n parts.push({ name: \"liquid\", balance: assetItem.liquid });\n }\n\n if (assetItem.staked !== undefined && assetItem.staked !== null && assetItem.staked > 0) {\n parts.push({ name: \"staked\", balance: assetItem.staked });\n }\n\n if (assetItem.savings !== undefined && assetItem.savings !== null && assetItem.savings > 0) {\n parts.push({ name: \"savings\", balance: assetItem.savings });\n }\n\n if (assetItem.extraData && Array.isArray(assetItem.extraData)) {\n for (const extraItem of assetItem.extraData) {\n if (!extraItem || typeof extraItem !== \"object\") continue;\n\n const dataKey = extraItem.dataKey;\n const value = extraItem.value;\n\n if (typeof value === \"string\") {\n const cleanValue = value.replace(/,/g, \"\");\n const match = cleanValue.match(/[+-]?\\s*(\\d+(?:\\.\\d+)?)/);\n if (match) {\n const numValue = Math.abs(Number.parseFloat(match[1]));\n\n if (dataKey === \"delegated_hive_power\") {\n parts.push({ name: \"outgoing_delegations\", balance: numValue });\n } else if (dataKey === \"received_hive_power\") {\n parts.push({ name: \"incoming_delegations\", balance: numValue });\n } else if (dataKey === \"powering_down_hive_power\") {\n parts.push({ name: \"pending_power_down\", balance: numValue });\n }\n }\n }\n }\n }\n\n return {\n name: assetItem.symbol,\n title: assetItem.name,\n price: assetItem.fiatRate,\n accountBalance: assetItem.balance,\n apr: assetItem.apr?.toString(),\n layer: assetItem.layer,\n pendingRewards: assetItem.pendingRewards,\n parts,\n } as GeneralAssetInfo;\n } catch {\n return undefined;\n }\n };\n\n return queryOptions({\n queryKey: [\"ecency-wallets\", \"asset-info\", username, asset, currency],\n queryFn: async () => {\n const portfolioAssetInfo = await getPortfolioAssetInfo();\n\n if (portfolioAssetInfo && portfolioAssetInfo.price > 0) {\n return portfolioAssetInfo;\n }\n\n let assetInfo: GeneralAssetInfo | undefined;\n\n if (asset === \"HIVE\") {\n assetInfo = await fetchQuery(getHiveAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"HP\") {\n assetInfo = await fetchQuery(getHivePowerAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"HBD\") {\n assetInfo = await fetchQuery(getHbdAssetGeneralInfoQueryOptions(username));\n } else if (asset === \"POINTS\") {\n assetInfo = await fetchQuery(getPointsAssetGeneralInfoQueryOptions(username));\n } else {\n // Check if it's a Hive Engine token\n const balances = await queryClient.ensureQueryData(\n getHiveEngineTokensBalancesQueryOptions(username)\n );\n\n if (balances.some((balance) => balance.symbol === asset)) {\n assetInfo = await fetchQuery(\n getHiveEngineTokenGeneralInfoQueryOptions(username, asset)\n );\n } else if (portfolioAssetInfo) {\n // Unknown asset but portfolio has data — use it as-is\n return portfolioAssetInfo;\n } else {\n throw new Error(\n `[SDK][Wallet] – unrecognized asset \"${asset}\"`\n );\n }\n }\n\n // If portfolio had rich data (parts, balance) but zero price,\n // merge the fallback price into the portfolio data\n if (portfolioAssetInfo && assetInfo && assetInfo.price > 0) {\n const converted = await convertPriceToUserCurrency(assetInfo);\n return {\n ...portfolioAssetInfo,\n price: converted!.price,\n };\n }\n\n return await convertPriceToUserCurrency(assetInfo);\n },\n });\n}\n","export enum AssetOperation {\n // Common\n Transfer = \"transfer\",\n\n // APR\n TransferToSavings = \"transfer-saving\",\n WithdrawFromSavings = \"withdraw-saving\",\n Delegate = \"delegate\",\n PowerUp = \"power-up\",\n PowerDown = \"power-down\",\n WithdrawRoutes = \"withdraw-routes\",\n ClaimInterest = \"claim-interest\",\n Swap = \"swap\",\n Convert = \"convert\",\n\n // Points\n Gift = \"gift\",\n Promote = \"promote\",\n Claim = \"claim\",\n Buy = \"buy\",\n\n // Layer 2\n Stake = \"stake\",\n Unstake = \"unstake\",\n Undelegate = \"undelegate\",\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for transferring tokens.\n */\nexport interface TransferPayload {\n /** Recipient account */\n to: string;\n /** Amount with asset symbol (e.g., \"1.000 HIVE\", \"5.000 HBD\") */\n amount: string;\n /** Transfer memo */\n memo: string;\n}\n\n/**\n * React Query mutation hook for transferring tokens.\n *\n * This mutation broadcasts a transfer operation to send HIVE or HBD\n * to another account. **Requires ACTIVE authority**.\n *\n * Uses `useBroadcastMutation` with the smart auth strategy:\n * - Adapter determines login type and dispatches to appropriate method\n * - If active key not available (common on web), triggers `showAuthUpgradeUI`\n * - Supports keychain, hivesigner, hiveauth, and direct key signing\n *\n * @param username - The username sending the transfer (required for broadcast)\n * @param auth - Authentication context with platform adapter\n *\n * @returns React Query mutation result\n */\nexport function useTransfer(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer\"],\n username,\n (payload) => [\n buildTransferOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildPointTransferOp } from \"@/modules/operations/builders\";\n\nexport interface TransferPointPayload {\n to: string;\n amount: string;\n memo: string;\n}\n\n/**\n * React Query mutation hook for transferring Ecency points.\n *\n * Uses `ecency_point_transfer` custom_json operation with ACTIVE authority.\n */\nexport function useTransferPoint(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-point\"],\n username,\n (payload) => [\n buildPointTransferOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildDelegateVestingSharesOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for delegating Hive Power (vesting shares).\n */\nexport interface DelegateVestingSharesPayload {\n /** Account receiving HP delegation */\n delegatee: string;\n /** Amount of VESTS to delegate (e.g., \"1000.000000 VESTS\"). Use \"0.000000 VESTS\" to remove delegation. */\n vestingShares: string;\n}\n\n/**\n * React Query mutation hook for delegating Hive Power (HP).\n *\n * This mutation broadcasts a delegate_vesting_shares operation to delegate HP\n * to another account. **Requires ACTIVE authority**, not posting.\n *\n * @param username - The username delegating HP (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **IMPORTANT: Active Authority Required**\n * - Delegation operations require ACTIVE key, not posting key\n * - Make sure your auth adapter provides getActiveKey() method\n * - Keychain/HiveAuth will prompt for Active authority\n *\n * **Delegation Mechanics:**\n * - Delegated HP can be used by the delegatee for resource credits\n * - Delegatee CANNOT power down or transfer the delegated HP\n * - Delegation can be removed by setting vestingShares to \"0.000000 VESTS\"\n * - Removing delegation has a 5-day cooldown before HP returns to delegator\n *\n * **Post-Broadcast Actions:**\n * - Invalidates delegations list cache to show updated delegation\n * - Invalidates account data for both delegator and delegatee\n *\n * @example\n * ```typescript\n * const delegateMutation = useDelegateVestingShares(username, {\n * adapter: {\n * ...myAdapter,\n * getActiveKey: async (username) => getActiveKeyFromStorage(username)\n * },\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Delegate HP\n * delegateMutation.mutate({\n * delegatee: 'alice',\n * vestingShares: '1000.000000 VESTS'\n * });\n *\n * // Remove delegation\n * delegateMutation.mutate({\n * delegatee: 'alice',\n * vestingShares: '0.000000 VESTS'\n * });\n * ```\n */\nexport function useDelegateVestingShares(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-vesting-shares\"],\n username,\n (payload) => [\n buildDelegateVestingSharesOp(\n username!,\n payload.delegatee,\n payload.vestingShares\n )\n ],\n async (_result, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.delegatee),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active', // IMPORTANT: Active authority required\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildSetWithdrawVestingRouteOp } from \"@/modules/operations/builders\";\n\n/**\n * Payload for setting withdraw vesting route.\n */\nexport interface SetWithdrawVestingRoutePayload {\n /** Account receiving withdrawn vesting */\n toAccount: string;\n /** Percentage to route (0-10000, where 10000 = 100%). Already scaled. */\n percent: number;\n /** Auto convert to vesting (power up) */\n autoVest: boolean;\n}\n\n/**\n * React Query mutation hook for setting withdraw vesting route.\n *\n * This mutation broadcasts a set_withdraw_vesting_route operation to configure\n * where withdrawn VESTS (power down) are sent. **Requires ACTIVE authority**, not posting.\n *\n * @param username - The username setting withdraw route (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **IMPORTANT: Active Authority Required**\n * - Withdraw route operations require ACTIVE key, not posting key\n * - Make sure your auth adapter provides getActiveKey() method\n * - Keychain/HiveAuth will prompt for Active authority\n *\n * **Withdraw Route Mechanics:**\n * - Routes a percentage of power down (withdraw_vesting) to another account\n * - Percent must be between 0-10000 (where 10000 = 100%)\n * - Multiple routes can be set, total cannot exceed 100%\n * - autoVest=true converts withdrawn VESTS to HP in destination account\n * - autoVest=false converts withdrawn VESTS to liquid HIVE\n *\n * **Post-Broadcast Actions:**\n * - Invalidates withdraw routes cache to show updated routes\n * - Invalidates account data for both accounts\n *\n * @example\n * ```typescript\n * const setRouteMutation = useSetWithdrawVestingRoute(username, {\n * adapter: {\n * ...myAdapter,\n * getActiveKey: async (username) => getActiveKeyFromStorage(username)\n * },\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Route 50% of power down to another account (auto vest)\n * setRouteMutation.mutate({\n * toAccount: 'alice',\n * percent: 5000, // 50% (already scaled)\n * autoVest: true\n * });\n *\n * // Route 100% of power down to another account (liquid HIVE)\n * setRouteMutation.mutate({\n * toAccount: 'bob',\n * percent: 10000, // 100% (already scaled)\n * autoVest: false\n * });\n * ```\n */\nexport function useSetWithdrawVestingRoute(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"set-withdraw-vesting-route\"],\n username,\n (payload) => [\n buildSetWithdrawVestingRouteOp(\n username!,\n payload.toAccount,\n payload.percent,\n payload.autoVest\n )\n ],\n async (_result, variables) => {\n // Cache invalidation\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.wallet.withdrawRoutes(username!),\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.toAccount)\n ]);\n },\n auth,\n 'active', // IMPORTANT: Active authority required\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface TransferEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n memo: string;\n}\n\nexport function useTransferEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"transfer\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n memo: payload.memo\n }\n });\n return [[\"custom_json\", {\n required_auths: [username!],\n required_posting_auths: [],\n id: \"ssc-mainnet-hive\",\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferToSavingsOp } from \"@/modules/operations/builders\";\n\nexport interface TransferToSavingsPayload {\n to: string;\n amount: string;\n memo: string;\n}\n\nexport function useTransferToSavings(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-to-savings\"],\n username,\n (payload) => [\n buildTransferToSavingsOp(username!, payload.to, payload.amount, payload.memo)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferFromSavingsOp } from \"@/modules/operations/builders\";\n\nexport interface TransferFromSavingsPayload {\n to: string;\n amount: string;\n memo: string;\n requestId: number;\n}\n\nexport function useTransferFromSavings(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-from-savings\"],\n username,\n (payload) => [\n buildTransferFromSavingsOp(username!, payload.to, payload.amount, payload.memo, payload.requestId)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildTransferToVestingOp } from \"@/modules/operations/builders\";\n\nexport interface TransferToVestingPayload {\n to: string;\n amount: string;\n}\n\nexport function useTransferToVesting(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"transfer-to-vesting\"],\n username,\n (payload) => [\n buildTransferToVestingOp(username!, payload.to, payload.amount)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildWithdrawVestingOp } from \"@/modules/operations/builders\";\n\nexport interface WithdrawVestingPayload {\n vestingShares: string;\n}\n\nexport function useWithdrawVesting(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"withdraw-vesting\"],\n username,\n (payload) => [\n buildWithdrawVestingOp(username!, payload.vestingShares)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildConvertOp, buildCollateralizedConvertOp } from \"@/modules/operations/builders\";\n\nexport interface ConvertPayload {\n amount: string;\n requestId: number;\n collateralized?: boolean;\n}\n\nexport function useConvert(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"convert\"],\n username,\n (payload) => [\n payload.collateralized\n ? buildCollateralizedConvertOp(username!, payload.amount, payload.requestId)\n : buildConvertOp(username!, payload.amount, payload.requestId)\n ],\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildClaimInterestOps } from \"@/modules/operations/builders\";\n\nexport interface ClaimInterestPayload {\n to: string;\n amount: string;\n memo: string;\n requestId: number;\n}\n\nexport function useClaimInterest(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-interest\"],\n username,\n (payload) => buildClaimInterestOps(username!, payload.to, payload.amount, payload.memo, payload.requestId),\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys, getQueryClient } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { buildClaimRewardBalanceOp } from \"@/modules/operations/builders\";\n\nexport interface ClaimRewardsPayload {\n rewardHive: string;\n rewardHbd: string;\n rewardVests: string;\n}\n\nconst CLAIM_REWARDS_INVALIDATION_DELAY_MS = 5000;\nconst pendingInvalidationTimers = new Map>();\n\nexport function useClaimRewards(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-rewards\"],\n username,\n (payload) => [\n buildClaimRewardBalanceOp(username!, payload.rewardHive, payload.rewardHbd, payload.rewardVests)\n ],\n () => {\n const timerKey = username ?? \"__anonymous__\";\n const keysToInvalidate = [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username],\n QueryKeys.assets.hiveGeneralInfo(username!),\n QueryKeys.assets.hbdGeneralInfo(username!),\n QueryKeys.assets.hivePowerGeneralInfo(username!),\n ];\n\n // Delay invalidation to allow blockchain to propagate the transaction.\n // Immediate invalidation would fetch stale (pre-confirmation) data.\n const existingTimer = pendingInvalidationTimers.get(timerKey);\n if (existingTimer) {\n clearTimeout(existingTimer);\n pendingInvalidationTimers.delete(timerKey);\n }\n\n const timer = setTimeout(async () => {\n try {\n const qc = getQueryClient();\n const results = await Promise.allSettled(\n keysToInvalidate.map((key) => qc.invalidateQueries({ queryKey: key }))\n );\n const rejected = results.filter((result) => result.status === \"rejected\");\n if (rejected.length > 0) {\n console.error(\"[SDK][Wallet][useClaimRewards] delayed invalidation rejected\", {\n username,\n rejectedCount: rejected.length,\n rejected\n });\n }\n } catch (error) {\n console.error(\"[SDK][Wallet][useClaimRewards] delayed invalidation failed\", {\n username,\n error\n });\n } finally {\n pendingInvalidationTimers.delete(timerKey);\n }\n }, CLAIM_REWARDS_INVALIDATION_DELAY_MS);\n\n pendingInvalidationTimers.set(timerKey, timer);\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface DelegateEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useDelegateEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"delegate\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface UndelegateEngineTokenPayload {\n from: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useUndelegateEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"undelegate-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"undelegate\",\n contractPayload: {\n symbol: payload.symbol,\n from: payload.from,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface StakeEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useStakeEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"stake-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"stake\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface UnstakeEngineTokenPayload {\n to: string;\n symbol: string;\n quantity: string;\n}\n\nexport function useUnstakeEngineToken(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"unstake-engine-token\"],\n username,\n (payload) => {\n const json = JSON.stringify({\n contractName: \"tokens\",\n contractAction: \"unstake\",\n contractPayload: {\n symbol: payload.symbol,\n to: payload.to,\n quantity: payload.quantity,\n }\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface ClaimEngineRewardsPayload {\n tokens: string[];\n}\n\nexport function useClaimEngineRewards(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"claim-engine-rewards\"],\n username,\n (payload) => {\n const json = JSON.stringify(payload.tokens.map((symbol) => ({ symbol })));\n return [[\"custom_json\", {\n id: \"scot_claim_token\",\n required_auths: [],\n required_posting_auths: [username!],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'posting',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface EngineMarketOrderPayload {\n action: \"buy\" | \"sell\" | \"cancel\";\n symbol: string;\n quantity?: string;\n price?: string;\n orderId?: string;\n orderType?: \"buy\" | \"sell\";\n}\n\nexport function useEngineMarketOrder(username: string | undefined, auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"engine-market-order\"],\n username,\n (payload) => {\n let contractPayload: Record;\n let contractAction: string;\n\n if (payload.action === \"cancel\") {\n contractAction = \"cancel\";\n contractPayload = {\n type: payload.orderType!,\n id: payload.orderId!,\n };\n } else {\n contractAction = payload.action;\n contractPayload = {\n symbol: payload.symbol,\n quantity: payload.quantity!,\n price: payload.price!,\n };\n }\n\n const json = JSON.stringify({\n contractName: \"market\",\n contractAction,\n contractPayload,\n });\n return [[\"custom_json\", {\n id: \"ssc-mainnet-hive\",\n required_auths: [username!],\n required_posting_auths: [],\n json,\n }] as Operation];\n },\n async () => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n [\"ecency-wallets\", \"asset-info\", username],\n [\"wallet\", \"portfolio\", \"v2\", username]\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport { EcencyAnalytics } from \"@/modules/analytics\";\nimport { getQueryClient } from \"@/modules/core\";\nimport type { AuthorityLevel } from \"@/modules/operations/authority-map\";\nimport { AssetOperation } from \"../types\";\nimport {\n buildTransferOp,\n buildTransferToSavingsOp,\n buildTransferFromSavingsOp,\n buildTransferToVestingOp,\n buildWithdrawVestingOp,\n buildDelegateVestingSharesOp,\n buildSetWithdrawVestingRouteOp,\n buildConvertOp,\n buildClaimInterestOps,\n buildPointTransferOp,\n buildEngineOp,\n buildEngineClaimOp,\n} from \"@/modules/operations/builders\";\nimport type { Operation } from \"../../../hive-tx\";\n\nexport interface WalletOperationPayload {\n from: string;\n to?: string;\n amount?: string;\n memo?: string;\n request_id?: number;\n from_account?: string;\n to_account?: string;\n percent?: number;\n auto_vest?: boolean;\n mode?: string;\n [key: string]: unknown;\n}\n\nfunction buildHiveOperations(\n asset: string,\n operation: AssetOperation,\n payload: WalletOperationPayload\n): Operation[] | null {\n const { from, to = \"\", amount = \"\", memo = \"\" } = payload;\n const requestId = payload.request_id ?? (Date.now() >>> 0);\n\n switch (asset) {\n case \"HIVE\":\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildTransferOp(from, to, amount, memo)];\n case AssetOperation.TransferToSavings:\n return [buildTransferToSavingsOp(from, to, amount, memo)];\n case AssetOperation.WithdrawFromSavings:\n return [buildTransferFromSavingsOp(from, to, amount, memo, requestId)];\n case AssetOperation.PowerUp:\n return [buildTransferToVestingOp(from, to, amount)];\n }\n break;\n\n case \"HBD\":\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildTransferOp(from, to, amount, memo)];\n case AssetOperation.TransferToSavings:\n return [buildTransferToSavingsOp(from, to, amount, memo)];\n case AssetOperation.WithdrawFromSavings:\n return [buildTransferFromSavingsOp(from, to, amount, memo, requestId)];\n case AssetOperation.ClaimInterest:\n return buildClaimInterestOps(from, to, amount, memo, requestId);\n case AssetOperation.Convert:\n return [buildConvertOp(from, amount, Math.floor(Date.now() / 1000))];\n }\n break;\n\n case \"HP\":\n switch (operation) {\n case AssetOperation.PowerDown:\n return [buildWithdrawVestingOp(from, amount)];\n case AssetOperation.Delegate:\n return [buildDelegateVestingSharesOp(from, to, amount)];\n case AssetOperation.WithdrawRoutes:\n return [buildSetWithdrawVestingRouteOp(\n payload.from_account ?? from,\n payload.to_account ?? to,\n payload.percent ?? 0,\n payload.auto_vest ?? false\n )];\n }\n break;\n\n case \"POINTS\":\n if (operation === AssetOperation.Transfer || operation === AssetOperation.Gift) {\n return [buildPointTransferOp(from, to, amount, memo)];\n }\n break;\n }\n\n return null;\n}\n\nfunction buildEngineOperations(\n asset: string,\n operation: AssetOperation,\n payload: WalletOperationPayload\n): Operation[] | null {\n const { from, to = \"\", amount = \"\" } = payload;\n const quantity = typeof amount === \"string\" && amount.includes(\" \")\n ? amount.split(\" \")[0]\n : String(amount);\n\n switch (operation) {\n case AssetOperation.Transfer:\n return [buildEngineOp(from, \"transfer\", {\n symbol: asset, to, quantity, memo: payload.memo ?? \"\"\n })];\n case AssetOperation.Stake:\n return [buildEngineOp(from, \"stake\", { symbol: asset, to, quantity })];\n case AssetOperation.Unstake:\n return [buildEngineOp(from, \"unstake\", { symbol: asset, to, quantity })];\n case AssetOperation.Delegate:\n return [buildEngineOp(from, \"delegate\", { symbol: asset, to, quantity })];\n case AssetOperation.Undelegate:\n return [buildEngineOp(from, \"undelegate\", { symbol: asset, from: to, quantity })];\n case AssetOperation.Claim:\n return [buildEngineClaimOp(from, [asset])];\n }\n\n return null;\n}\n\n/**\n * Determines authority level for a wallet operation.\n * Engine token claims use posting authority; everything else uses active.\n */\nfunction getWalletOperationAuthority(operation: AssetOperation): AuthorityLevel {\n if (operation === AssetOperation.Claim) {\n return 'posting';\n }\n return 'active';\n}\n\n/**\n * Meta-mutation hook that dispatches wallet operations based on asset and operation type.\n *\n * Supports HIVE, HBD, HP, POINTS, and Hive Engine tokens.\n * Uses `useBroadcastMutation` for unified auth handling via `AuthContextV2`.\n *\n * @param username - The Hive account performing the operation\n * @param asset - The asset symbol (e.g., \"HIVE\", \"HBD\", \"HP\", \"POINTS\", or engine token)\n * @param operation - The operation type from AssetOperation enum\n * @param auth - Auth context for broadcasting\n */\nexport function useWalletOperation(\n username: string | undefined,\n asset: string,\n operation: AssetOperation,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n const { mutateAsync: recordActivity } = EcencyAnalytics.useRecordActivity(\n username,\n operation as any\n );\n\n return useBroadcastMutation(\n [\"ecency-wallets\", asset, operation],\n username,\n (payload) => {\n // Try native Hive + POINTS operations\n const hiveOps = buildHiveOperations(asset, operation, payload);\n if (hiveOps) return hiveOps;\n\n // Try engine token operations\n const engineOps = buildEngineOperations(asset, operation, payload);\n if (engineOps) return engineOps;\n\n throw new Error(`[SDK][Wallet] – no operation builder for asset=\"${asset}\" operation=\"${operation}\"`);\n },\n () => {\n recordActivity();\n\n const keysToInvalidate: (string | undefined)[][] = [];\n\n // Invalidate asset-specific queries (prefix-matches all currency variants)\n keysToInvalidate.push([\"ecency-wallets\", \"asset-info\", username, asset]);\n\n if (asset === \"HIVE\") {\n keysToInvalidate.push([\"ecency-wallets\", \"asset-info\", username, \"HP\"]);\n }\n\n // Invalidate portfolio (prefix-matches all currency/filter variants)\n keysToInvalidate.push([\"wallet\", \"portfolio\", \"v2\", username]);\n\n // Delay invalidation to allow blockchain to process\n setTimeout(() => {\n keysToInvalidate.forEach((key) => {\n getQueryClient().invalidateQueries({ queryKey: key });\n });\n }, 5000);\n },\n auth,\n getWalletOperationAuthority(operation),\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildDelegateRcOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface DelegateRcPayload {\n to: string;\n maxRc: string | number;\n}\n\nexport function useDelegateRc(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"wallet\", \"delegate-rc\"],\n username,\n ({ to, maxRc }) => [\n buildDelegateRcOp(username!, to, maxRc)\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.accounts.full(username),\n QueryKeys.accounts.full(variables.to),\n QueryKeys.resourceCredits.account(username!),\n QueryKeys.resourceCredits.account(variables.to),\n ]);\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildWitnessVoteOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\n/**\n * Payload for voting for a witness.\n */\nexport interface WitnessVotePayload {\n /** Witness account name to vote for/against */\n witness: string;\n /** True to approve, false to disapprove */\n approve: boolean;\n}\n\n/**\n * React Query mutation hook for voting for a Hive witness.\n *\n * This mutation broadcasts an account_witness_vote operation to vote for\n * or remove a vote from a witness.\n *\n * @param username - The username voting for the witness (required for broadcast)\n * @param auth - Authentication context with platform adapter and fallback configuration\n *\n * @returns React Query mutation result\n *\n * @remarks\n * **Post-Broadcast Actions:**\n * - Invalidates account data cache to show updated witness votes\n * - Invalidates witness votes cache\n *\n * **Vote Types:**\n * - approve: true - Vote for the witness\n * - approve: false - Remove your vote from the witness\n *\n * **Authority Required:**\n * - Active authority is required for witness voting\n *\n * @example\n * ```typescript\n * const witnessVoteMutation = useWitnessVote(username, {\n * adapter: myAdapter,\n * enableFallback: true,\n * fallbackChain: ['keychain', 'key', 'hivesigner']\n * });\n *\n * // Vote for a witness\n * witnessVoteMutation.mutate({\n * witness: 'good-karma',\n * approve: true\n * });\n *\n * // Remove vote from a witness\n * witnessVoteMutation.mutate({\n * witness: 'good-karma',\n * approve: false\n * });\n * ```\n */\nexport function useWitnessVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"witnesses\", \"vote\"],\n username,\n ({ witness, approve }) => [\n buildWitnessVoteOp(username!, witness, approve)\n ],\n async () => {\n // Wrap post-broadcast side-effects in try-catch to prevent propagating errors\n try {\n // Cache invalidation\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.witnesses.votes(username)\n ]);\n }\n } catch (error) {\n // Log but don't rethrow - don't fail mutation due to side-effect errors\n console.warn('[useWitnessVote] Post-broadcast side-effect failed:', error);\n }\n },\n auth,\n 'active', // Use active authority for witness votes (required by blockchain)\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildWitnessProxyOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface WitnessProxyPayload {\n proxy: string;\n}\n\nexport function useWitnessProxy(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"witnesses\", \"proxy\"],\n username,\n ({ proxy }) => [\n buildWitnessProxyOp(username!, proxy)\n ],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.witnesses.proxy(),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { Witness, WitnessVotersResponse } from \"../types\";\nimport { callREST } from \"@/modules/core/hive-tx\";\nimport { QueryKeys } from \"@/modules/core\";\n\ntype WitnessPage = Witness[];\ntype WitnessCursor = number;\n\ninterface HafbeWitness {\n witness_name: string;\n rank: number;\n url: string;\n vests: string;\n votes_daily_change: string;\n voters_num: number;\n voters_num_daily_change: number;\n price_feed: number;\n bias: number;\n feed_updated_at: string;\n block_size: number;\n signing_key: string;\n version: string;\n missed_blocks: number;\n hbd_interest_rate: number;\n last_confirmed_block_num: number;\n account_creation_fee: number;\n}\n\ninterface HafbeWitnessesResponse {\n total_witnesses: number;\n total_pages: number;\n witnesses: HafbeWitness[];\n}\n\n/**\n * Map a hafbe-api witness to the SDK Witness shape so existing consumers\n * (e.g. the web app's transform()) keep working unchanged.\n */\nfunction mapRestWitness(w: HafbeWitness): Witness {\n return {\n owner: w.witness_name,\n total_missed: w.missed_blocks,\n url: w.url,\n props: {\n account_creation_fee: `${(w.account_creation_fee / 1000).toFixed(3)} HIVE`,\n account_subsidy_budget: 0,\n maximum_block_size: w.block_size,\n },\n hbd_exchange_rate: {\n base: `${w.price_feed.toFixed(3)} HBD`,\n },\n available_witness_account_subsidies: 0,\n running_version: w.version,\n signing_key: w.signing_key,\n last_hbd_exchange_update: w.feed_updated_at,\n rank: w.rank,\n vests: w.vests,\n voters_num: w.voters_num,\n voters_num_daily_change: w.voters_num_daily_change,\n price_feed: w.price_feed,\n hbd_interest_rate: w.hbd_interest_rate,\n last_confirmed_block_num: w.last_confirmed_block_num,\n };\n}\n\n/**\n * Get witnesses ordered by vote count (infinite scroll).\n * Uses the hafbe-api REST endpoint - replaces multi-call RPC assembly\n * with a single paginated call. Includes voter count, rank, and other\n * data that was previously unavailable.\n *\n * @param limit - Number of witnesses per page\n */\nexport function getWitnessesInfiniteQueryOptions(limit: number) {\n return infiniteQueryOptions<\n WitnessPage,\n Error,\n InfiniteData,\n (string | number)[],\n WitnessCursor\n >({\n queryKey: QueryKeys.witnesses.list(limit),\n initialPageParam: 1 as WitnessCursor,\n\n queryFn: async ({ pageParam }: { pageParam: WitnessCursor }) => {\n const response = (await callREST(\n \"hafbe\",\n \"/witnesses\",\n {\n \"page-size\": limit,\n page: pageParam,\n }\n )) as HafbeWitnessesResponse;\n\n return response.witnesses.map(mapRestWitness);\n },\n\n getNextPageParam: (lastPage, _allPages, lastPageParam) =>\n lastPage.length === limit ? lastPageParam + 1 : undefined,\n });\n}\n\nexport type WitnessVoterSortField =\n | \"vests\"\n | \"account_vests\"\n | \"proxied_vests\"\n | \"account_name\"\n | \"timestamp\";\n\nexport type WitnessVoterSortDirection = \"asc\" | \"desc\";\n\n/**\n * Get a single page of voters for a specific witness.\n *\n * Server-side pagination + sort: each page click fetches that page directly\n * from hafbe rather than scrolling through accumulated pages on the client.\n *\n * @param witness - Witness account name\n * @param page - 1-based page index\n * @param pageSize - Number of voters per page\n * @param sort - Field to sort by\n * @param direction - asc or desc\n */\nexport function getWitnessVotersPageQueryOptions(\n witness: string,\n page: number,\n pageSize: number,\n sort: WitnessVoterSortField = \"vests\",\n direction: WitnessVoterSortDirection = \"desc\"\n) {\n return queryOptions({\n queryKey: QueryKeys.witnesses.voters(witness, page, pageSize, sort, direction),\n queryFn: async ({ signal }) => {\n return (await callREST(\n \"hafbe\",\n \"/witnesses/{witness-name}/voters\",\n {\n \"witness-name\": witness,\n \"page-size\": pageSize,\n page,\n sort,\n direction,\n },\n undefined,\n undefined,\n signal\n )) as WitnessVotersResponse;\n },\n enabled: !!witness,\n staleTime: 60_000,\n });\n}\n\n/**\n * Get total voter count for a witness.\n *\n * @param witness - Witness account name\n */\nexport function getWitnessVoterCountQueryOptions(witness: string) {\n return queryOptions({\n queryKey: QueryKeys.witnesses.voterCount(witness),\n queryFn: async () => {\n return (await callREST(\n \"hafbe\",\n \"/witnesses/{witness-name}/voters/count\",\n { \"witness-name\": witness }\n )) as number;\n },\n enabled: !!witness,\n staleTime: 60_000,\n });\n}\n","export enum PointTransactionType {\n CHECKIN = 10,\n LOGIN = 20,\n CHECKIN_EXTRA = 30,\n POST = 100,\n COMMENT = 110,\n VOTE = 120,\n REBLOG = 130,\n DELEGATION = 150,\n REFERRAL = 160,\n COMMUNITY = 170,\n TRANSFER_SENT = 998,\n TRANSFER_INCOMING = 999,\n MINTED = 991,\n /**\n * Points burned out of supply rather than moved to the treasury. Written by the\n * AI surfaces (assist, image, transcribe), which pay a real per-request vendor\n * bill, so the Points are consumed rather than parked.\n *\n * The row carries no counterparty at all, which is what distinguishes it from\n * TRANSFER_SENT: `sender` and `receiver` are both null. A refund of a burn comes\n * back as this same type with a positive amount, so read the sign rather than\n * assuming a burn is always a debit.\n */\n BURNED = 997,\n}\n","import { CONFIG, getBoundFetch, getQueryClient } from \"@/modules/core\";\nimport { EcencyAnalytics } from \"@/modules/analytics\";\nimport { useMutation } from \"@tanstack/react-query\";\nimport { getPointsQueryOptions } from \"../queries\";\nimport type { Points } from \"../types\";\n\n/**\n * POST a points claim and return the parsed JSON body.\n *\n * The endpoint normally answers with JSON, but an edge/proxy layer can\n * occasionally return a 2xx whose body is an HTML interstitial or plain text\n * (ECENCY-NEXT-1FCJ). Calling `response.json()` on that throws a bare\n * `SyntaxError` that names neither the endpoint nor the cause. Instead we check\n * the content type first and fail with a STABLE, low-cardinality message\n * (content type + status) — never the raw body — so these group as a single\n * Sentry issue instead of fragmenting on every distinct HTML page.\n */\nexport async function claimPointsRequest(\n username: string | undefined,\n accessToken: string | undefined\n) {\n if (!username) {\n throw new Error(\"[SDK][Points][Claim] – username wasn't provided\");\n }\n\n if (!accessToken) {\n throw new Error(\"[SDK][Points][Claim] – access token wasn't found\");\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n CONFIG.privateApiHost + \"/private-api/points-claim\",\n {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n }\n );\n\n // Media types are case-insensitive; normalise once and reuse in every branch.\n const contentType = (response.headers.get(\"content-type\") ?? \"\")\n .split(\";\")[0]\n .trim()\n .toLowerCase();\n const body = await response.text();\n\n if (!response.ok) {\n if (response.status === 406) {\n try {\n return JSON.parse(body);\n } catch {\n return { message: body, code: response.status };\n }\n }\n // Only fold a short JSON error body into the message; an HTML gateway page\n // (e.g. 502/503) would otherwise fragment the Sentry group per distinct\n // page — the same problem the non-JSON guard below avoids for a 2xx body.\n const detail =\n body && contentType.includes(\"json\") ? `: ${body.slice(0, 200)}` : \"\";\n throw new Error(\n `[SDK][Points][Claim] – failed with status ${response.status}${detail}`\n );\n }\n\n if (!contentType.includes(\"json\")) {\n throw new Error(\n `[SDK][Points][Claim] – expected JSON but received \"${contentType || \"empty\"}\" response (status ${response.status})`\n );\n }\n\n try {\n return JSON.parse(body);\n } catch {\n throw new Error(\n `[SDK][Points][Claim] – malformed JSON response (status ${response.status})`\n );\n }\n}\n\nexport function useClaimPoints(\n username: string | undefined,\n accessToken: string | undefined,\n onSuccess?: () => void,\n onError?: Parameters[\"0\"][\"onError\"]\n) {\n const { mutateAsync: recordActivity } = EcencyAnalytics.useRecordActivity(\n username,\n \"points-claimed\"\n );\n\n return useMutation({\n mutationFn: () => claimPointsRequest(username, accessToken),\n onError,\n onSuccess: () => {\n recordActivity();\n\n getQueryClient().setQueryData(\n getPointsQueryOptions(username).queryKey,\n (data) => {\n if (!data) {\n return data;\n }\n\n return {\n ...data,\n points: (\n parseFloat(data.points) + parseFloat(data.uPoints)\n ).toFixed(3),\n uPoints: \"0\",\n };\n }\n );\n\n onSuccess?.();\n },\n });\n}\n","// A token only counts at the start of the query or after whitespace, matching\n// the search API's parser. Unanchored, these matched inside ordinary words:\n// \"prototype:v2\" read as type=v2 and the API rejected it as an invalid type,\n// \"subcategory:hive-1\" filtered on category=hive-1 with a stray \"sub\" left as\n// required text. The boundary is captured rather than looked behind so it can\n// be put back when the token is stripped, keeping the neighbouring words apart\n// (a lookbehind would also be fine here, but this stays portable).\nconst author_re = /(^|\\s)author:([^\\s]+)/g;\nconst type_re = /(^|\\s)type:([^\\s]+)/g;\nconst category_re = /(^|\\s)category:([^\\s]+)/g;\nconst tag_re = /(^|\\s)tag:([^\\s]+)/g;\n\n// Index of the token value in a match; group 1 is the boundary.\nconst VALUE = 2;\n\nexport enum SearchType {\n ALL = \"\",\n POST = \"post\",\n COMMENT = \"comment\"\n}\n\nexport const MAX_SEARCH_TAGS = 5;\n\n// The search API applies both caps itself (see query_validator); mirrored here\n// so the client can refuse instead of turning a 400 into an empty result list.\nexport const MAX_SEARCH_QUERY_LENGTH = 100;\n\n/**\n * Both parsers match a token with /author:([^\\s]+)/, so a value containing a\n * space stops filtering at the space and the remainder silently becomes\n * required free text. Keep the first word only, which is what the API would\n * have filtered on anyway.\n */\nfunction firstToken(value: string): string {\n return value.trim().split(/\\s+/)[0] ?? \"\";\n}\n\n/**\n * Hive account names are lowercase and the API filters authors with an exact\n * term query, so \"@Demo\" has to become \"demo\" or it matches nothing.\n */\nexport function normalizeSearchAuthor(value: string): string {\n return firstToken(value).replace(/^@+/, \"\").toLowerCase();\n}\n\nexport function normalizeSearchCategory(value: string): string {\n // Leading \"#\" goes for the same reason it goes on tags: a category is matched\n // by an exact term query, and users write categories the way they write tags.\n return firstToken(value).replace(/^#+/, \"\").toLowerCase();\n}\n\n/**\n * Accepts what a user actually types (\"travel, photography\", \"#travel travel\")\n * and returns exact-match ready tags, deduped in first-seen order.\n */\nexport function normalizeSearchTags(value: string): string[] {\n const seen = new Set();\n\n return value\n .split(/[\\s,]+/)\n .map((tag) => tag.replace(/^#+/, \"\").toLowerCase())\n .filter((tag) => {\n if (tag === \"\" || seen.has(tag)) {\n return false;\n }\n\n seen.add(tag);\n return true;\n });\n}\n\nexport interface SearchQueryParts {\n search?: string;\n author?: string;\n type?: SearchType;\n category?: string;\n /** Raw user input (\"a, b\") or an already split list. */\n tags?: string | string[];\n}\n\nexport interface BuiltSearchQuery {\n /** The `q` value to put in the URL. Round-trips through `SearchQuery`. */\n q: string;\n search: string;\n author: string;\n type: SearchType;\n category: string;\n tags: string[];\n}\n\n/**\n * Assembles the single `q` string that both this app and the search API parse\n * back into filters. Returns the normalized parts too, because the caller has\n * to validate the tag count and the total length before navigating.\n */\nexport function buildSearchQuery({\n search = \"\",\n author = \"\",\n type = SearchType.ALL,\n category = \"\",\n tags = []\n}: SearchQueryParts): BuiltSearchQuery {\n const normalizedSearch = search.trim().replace(/\\s+/g, \" \");\n const normalizedAuthor = normalizeSearchAuthor(author);\n const normalizedCategory = normalizeSearchCategory(category);\n const normalizedTags = normalizeSearchTags(Array.isArray(tags) ? tags.join(\",\") : tags);\n\n const parts = [normalizedSearch];\n\n if (normalizedAuthor) {\n parts.push(`author:${normalizedAuthor}`);\n }\n\n if (type) {\n parts.push(`type:${type}`);\n }\n\n if (normalizedCategory) {\n parts.push(`category:${normalizedCategory}`);\n }\n\n if (normalizedTags.length > 0) {\n // No space after the commas: a tag token ends at the first space, so\n // anything past one stops filtering and becomes required free text.\n parts.push(`tag:${normalizedTags.join(\",\")}`);\n }\n\n return {\n // Dropping the empty free text here is what keeps a filter-only query from\n // starting with a space.\n q: parts.filter((part) => part !== \"\").join(\" \"),\n search: normalizedSearch,\n author: normalizedAuthor,\n type,\n category: normalizedCategory,\n tags: normalizedTags\n };\n}\n\nexport class SearchQuery {\n public query: string = \"\";\n public search: string = \"\";\n public author: string = \"\";\n public type: SearchType = SearchType.ALL;\n public category: string = \"\";\n public tags: string[] = [];\n\n constructor(_query: string) {\n this.query = _query;\n this.search = _query;\n\n this.grabAuthor();\n this.grabType();\n this.grabCategory();\n this.grabTags();\n this.grabSearch();\n }\n\n private grab = (re: RegExp): string => {\n // @ts-ignore\n const matches = [...this.query.matchAll(re)];\n if (matches.length > 0) {\n return matches[0][VALUE].trim();\n }\n\n return \"\";\n };\n\n private grabAuthor = () => {\n this.author = this.grab(author_re);\n };\n\n private grabType = () => {\n const type = this.grab(type_re) as SearchType;\n if (Object.values(SearchType).includes(type)) {\n this.type = type as SearchType;\n }\n };\n\n private grabCategory = () => {\n this.category = this.grab(category_re);\n };\n\n private grabTags = () => {\n // Every tag: token counts, not just the first one. The API joins all of its\n // own tag: matches before splitting on commas, so reading only the first\n // token here under-reports the tags a query really applies and let a query\n // past the MAX_SEARCH_TAGS guard that the API then rejects with a 400.\n // A trailing comma (\"tag:a,\") must not yield an empty tag either - it would\n // be shown back as a phantom tag and counted against the same cap.\n const seen = new Set();\n\n this.tags = [...this.query.matchAll(tag_re)]\n .flatMap((match) => match[VALUE].split(\",\"))\n .map((tag) => tag.trim())\n .filter((tag) => {\n if (tag === \"\" || seen.has(tag)) {\n return false;\n }\n\n seen.add(tag);\n return true;\n });\n };\n\n private grabSearch = () => {\n [author_re, type_re, category_re, tag_re].forEach((r) => {\n // Put the captured boundary back, or removing a mid-query token would\n // run the words either side of it together.\n this.search = this.search.replace(r, \"$1\");\n });\n\n while (this.search.indexOf(\" \") !== -1) {\n this.search = this.search.replace(\" \", \" \");\n }\n\n this.search = this.search.trim();\n };\n}\n","export type RequestError = Error & { status?: number; data?: unknown };\n\n/**\n * Reads a response body and, when the status is not OK, throws an error that\n * keeps both the status and the parsed body.\n *\n * The search backend answers a malformed query with an explanation the user can\n * act on (\"Maximum 5 tags!\", \"Query string too long! ...\", \"Parsed query is\n * empty!\"). Dropping the body leaves callers with a bare status: they can\n * neither tell the user what to change nor tell a deterministic rejection from\n * a transient failure worth retrying.\n *\n * Module-internal on purpose - it is not part of the published SDK surface.\n */\nexport async function parseJsonResponse(\n response: Response,\n /**\n * Shape guard for a SUCCESSFUL body. JSON.parse happily accepts `null`,\n * `\"maintenance\"` and `{\"error\": \"...\"}`, none of which are the payload the\n * caller asked for, and all of which would otherwise be returned as `T` and\n * cached as valid data. Callers that have a known shape pass a guard so an\n * unexpected 200 fails here instead of at the first property access.\n */\n isValid?: (data: unknown) => boolean\n): Promise {\n const parseBody = async (): Promise => {\n // Read the body ONCE. Calling json() and then falling back to text() on the\n // same response cannot work: json() consumes the stream, so the fallback\n // always threw and the raw body of a non-JSON failure (an HTML error page\n // from a proxy) was silently lost.\n let raw: string;\n try {\n raw = await response.text();\n } catch {\n return undefined;\n }\n\n if (raw === \"\") {\n return undefined;\n }\n\n try {\n return JSON.parse(raw) as unknown;\n } catch {\n // Raw text is a diagnostic, not a payload. On a failed response it is\n // what the caller shows or logs, but on a 2xx returning it would hand\n // back a string typed as the parsed body: callers reading `.results`\n // would see undefined and report an empty result set, and the\n // controversial/rising pager would throw on `resp.results.length`. An\n // unparseable success is a failure, so let it fall through to the throw\n // below rather than caching a string as a SearchResponse.\n return response.ok ? undefined : raw;\n }\n };\n\n const data = await parseBody();\n if (!response.ok) {\n const error = new Error(`Request failed with status ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n if (data === undefined || (isValid !== undefined && !isValid(data))) {\n throw new Error(\"Response body was empty, invalid JSON, or not the expected shape\");\n }\n\n return data as T;\n}\n\n/**\n * The contract every /search-api consumer relies on: an object carrying a\n * `results` array. Enough to keep a stray 200 from reaching `resp.results.length`.\n */\nexport function isSearchResponse(data: unknown): boolean {\n return (\n typeof data === \"object\" &&\n data !== null &&\n Array.isArray((data as { results?: unknown }).results)\n );\n}\n","import { isServer } from \"@tanstack/react-query\";\nimport type { RequestError } from \"./parse-json-response\";\n\n/**\n * The app-wide default the browser QueryClient uses. Restated because supplying\n * a `retry` callback replaces React Query's own budget rather than adding to it.\n *\n * The 0 on the server is load-bearing: server QueryClients set `retry: false`\n * globally, and these queries are prefetched during SSR, so a flat 3 would\n * resurrect SSR retries against a single-region backend.\n */\nconst MAX_RETRIES = isServer ? 0 : 3;\n\n/**\n * Shared retry rule for every /search-api call.\n *\n * A 4xx is the backend rejecting the query itself (too many tags, over the\n * length cap, nothing left to search once the filters are parsed out).\n * Repeating it repeats the same answer, so the only effect is four requests\n * over several seconds before the UI can say what to change.\n *\n * 408 and 429 are the exceptions: they describe when the request arrived rather\n * than what it contained, and backing off is what resolves them. A client-side\n * timeout aborts the fetch and carries no status at all, so it falls through to\n * the normal budget like any other transport failure.\n */\nexport function searchRetryPolicy(failureCount: number, error: Error): boolean {\n const { status } = error as RequestError;\n const isTransient = status === 408 || status === 429;\n\n if (status !== undefined && status >= 400 && status < 500 && !isTransient) {\n return false;\n }\n\n return failureCount < MAX_RETRIES;\n}\n","import { InfiniteData, infiniteQueryOptions, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, INTERNAL_API_TIMEOUT_MS, withTimeoutSignal, QueryKeys } from \"@/modules/core\";\nimport { SearchResponse } from \"../types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"../parse-json-response\";\nimport { searchRetryPolicy } from \"../retry-policy\";\n\nexport function searchQueryOptions(\n q: string,\n sort: string,\n hideLow: string,\n since?: string,\n scroll_id?: string,\n votes?: number\n) {\n return queryOptions({\n queryKey: QueryKeys.search.results(q, sort, hideLow, since, scroll_id, votes),\n queryFn: async ({ signal }) => {\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) data.since = since;\n if (scroll_id) data.scroll_id = scroll_id;\n if (votes) data.votes = votes;\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body) instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n retry: searchRetryPolicy,\n });\n}\n\ntype PageParam = {\n sid: string | undefined;\n hasNextPage: boolean;\n};\n\nexport function getControversialRisingInfiniteQueryOptions(\n what: string,\n tag: string,\n enabled = true\n) {\n return infiniteQueryOptions<\n SearchResponse,\n Error,\n InfiniteData,\n (string | number)[],\n PageParam\n >({\n queryKey: QueryKeys.search.controversialRising(what, tag),\n initialPageParam: { sid: undefined, hasNextPage: true } as PageParam,\n\n queryFn: async ({ pageParam, signal }: { pageParam: PageParam; signal: AbortSignal }) => {\n if (!pageParam.hasNextPage) {\n return {\n hits: 0,\n took: 0,\n results: [],\n };\n }\n\n let sinceDate: Date | undefined;\n const now = new Date();\n\n switch (tag) {\n case \"today\":\n sinceDate = new Date(now.getTime() - 24 * 60 * 60 * 1000);\n break;\n case \"week\":\n sinceDate = new Date(now.getTime() - 7 * 24 * 60 * 60 * 1000);\n break;\n case \"month\":\n sinceDate = new Date(now.getTime() - 30 * 24 * 60 * 60 * 1000);\n break;\n case \"year\":\n sinceDate = new Date(now.getTime() - 365 * 24 * 60 * 60 * 1000);\n break;\n default:\n sinceDate = undefined;\n }\n\n const q = \"* type:post\";\n const sort = what === \"rising\" ? \"children\" : what;\n const since = sinceDate ? sinceDate.toISOString().split(\".\")[0] : undefined;\n const hideLow = \"0\";\n const votes = tag === \"today\" ? 50 : 200;\n\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) data.since = since;\n if (pageParam.sid) data.scroll_id = pageParam.sid;\n if (votes) data.votes = votes;\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body) instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n\n getNextPageParam: (resp: SearchResponse): PageParam => {\n return {\n sid: resp?.scroll_id,\n hasNextPage: resp.results.length > 0,\n };\n },\n\n enabled,\n retry: searchRetryPolicy,\n });\n}\n","import { CONFIG, INTERNAL_API_TIMEOUT_MS, getBoundFetch, withTimeoutSignal } from \"@/modules/core\";\nimport { SearchResponse } from \"./types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"./parse-json-response\";\n\nexport async function search(\n q: string,\n sort: string,\n hideLow: string,\n since?: string,\n scroll_id?: string,\n votes?: number,\n signal?: AbortSignal\n): Promise {\n const data: {\n q: string;\n sort: string;\n hide_low: string;\n since?: string;\n scroll_id?: string;\n votes?: number;\n } = { q, sort, hide_low: hideLow };\n\n if (since) {\n data.since = since;\n }\n if (scroll_id) {\n data.scroll_id = scroll_id;\n }\n if (votes) {\n data.votes = votes;\n }\n\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(data),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n return parseJsonResponse(response, isSearchResponse);\n}\n\nexport async function similar(\n params: {\n author: string;\n permlink: string;\n title?: string;\n body?: string;\n tags?: string[];\n since?: string;\n },\n signal?: AbortSignal,\n timeoutMs: number = INTERNAL_API_TIMEOUT_MS\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/similar\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(params),\n signal: withTimeoutSignal(timeoutMs, signal),\n });\n\n return parseJsonResponse(response, isSearchResponse);\n}\n\nexport async function searchPath(q: string, signal?: AbortSignal): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/search-api/search-path\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify({ q }),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n const data = await parseJsonResponse(response, Array.isArray);\n return data?.length > 0 ? data : [q];\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { similar } from \"../requests\";\nimport { SearchResult } from \"../types/search-response\";\n\n// Without a recency window the backend ranks across the entire historical\n// index and surfaces years-old posts. Constrain suggestions to the last\n// ~6 months so related posts stay fresh (it also bounds the backend's\n// more_like_this candidate set, which is what keeps it fast).\nconst SIMILAR_ENTRIES_SINCE_MS = 182 * 24 * 60 * 60 * 1000;\n\n// How many results the suggestions strip renders at most.\nconst SIMILAR_ENTRIES_TARGET = 4;\n\n// more_like_this only extracts a handful of significant terms, so an excerpt is\n// enough signal and keeps the request payload small.\nconst SIMILAR_ENTRIES_BODY_LIMIT = 3000;\n\n// On the server the prefetch sits on the entry-page render path, and the search\n// backend is single-region (EU) — so anything slower than this stalls SSR for a\n// non-essential \"related posts\" strip. Keep the SSR cap short and let the strip\n// fall back to a client fetch (only that render misses the in-HTML strip; it's\n// ISR-cached anyway). Do NOT raise this — 2s is the SSR budget.\nconst SIMILAR_ENTRIES_SSR_TIMEOUT_MS = 2000;\n\n// The client fetch doesn't block paint, so it previously had no cap and fell\n// through to the SDK's generic INTERNAL_API_TIMEOUT_MS (10s; CF's worker further\n// truncates at ~8s). Combined with React Query's default client retry (3×), a\n// /search-api/similar outage turned this best-effort strip into a multi-second\n// post-onload tail (observed as a ~29s \"fully loaded\" in GTmetrix). Cap the\n// client call short and disable retry (below) so a degraded backend just hides\n// the strip quickly instead of churning.\nconst SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS = 4000;\n\n// The strip is hidden below this many results. A lone suggestion looks\n// sparse. Exported so the web component shares one threshold (filter == render).\nexport const SIMILAR_ENTRIES_MIN_RENDER = 2;\n\n// Strip markdown image/link/URL noise before truncating, so more_like_this\n// keys on prose terms instead of image-CDN domains and file hashes (which\n// rarely match the index's sanitized body and just waste the term budget).\nfunction toMltExcerpt(body: string, limit: number): string {\n return body\n .replace(/!\\[[^\\]]*\\]\\([^)]*\\)/g, \" \") // markdown images\n .replace(/\\[([^\\]]*)\\]\\([^)]*\\)/g, \"$1\") // markdown links -> keep link text\n .replace(/<[^>]+>/g, \" \") // html tags\n .replace(/https?:\\/\\/\\S+/g, \" \") // bare URLs\n .replace(/\\s+/g, \" \")\n .trim()\n .slice(0, limit);\n}\n\n// Compact deterministic fingerprint (djb2) of the MLT inputs. Folded into the\n// cache key so an edited post (title/tags/body changed) refetches instead of\n// serving stale recommendations under the same author/permlink. Deterministic\n// so the SSR prefetch and the client compute the same key from the same entry.\nfunction fingerprint(s: string): string {\n let h = 5381;\n for (let i = 0; i < s.length; i++) {\n h = ((h << 5) + h + s.charCodeAt(i)) | 0;\n }\n return (h >>> 0).toString(36);\n}\n\ninterface Entry {\n author: string;\n permlink: string;\n title?: string;\n body?: string;\n json_metadata?: {\n // Hive's json_metadata is user-controlled and untyped on-chain: `tags` is\n // usually a string[] but some posts store it as a bare string (or other\n // junk). Typed as unknown on purpose so callers can't assume an array —\n // it's narrowed with a runtime guard below.\n tags?: unknown;\n };\n}\n\nexport function getSimilarEntriesQueryOptions(entry: Entry) {\n const title = entry.title ?? \"\";\n // `?? []` only guards null/undefined; a non-array tags value (e.g. a bare\n // string from json_metadata) slips through and crashes `.filter` — which\n // took down the entry-page SSR prefetch (Sentry ECENCY-NEXT-1FMA). Guard on\n // Array.isArray so only real arrays reach the filter.\n const rawTags = entry.json_metadata?.tags;\n const tags = (Array.isArray(rawTags) ? rawTags : []).filter(\n (tag): tag is string => typeof tag === \"string\" && tag !== \"\"\n );\n const body = toMltExcerpt(entry.body ?? \"\", SIMILAR_ENTRIES_BODY_LIMIT);\n const contentKey = fingerprint(`${title}|${tags.join(\",\")}|${body}`);\n\n return queryOptions({\n queryKey: QueryKeys.search.similarEntries(entry.author, entry.permlink, contentKey),\n queryFn: async ({ signal }) => {\n // Naive `YYYY-MM-DDTHH:mm:ss` (no `Z`) matches the search-api date\n // contract used elsewhere; a <14h skew on a 182-day boundary is immaterial.\n const since = new Date(Date.now() - SIMILAR_ENTRIES_SINCE_MS).toISOString().slice(0, 19);\n\n // Elasticsearch more_like_this recommendations: content-based \"related\n // posts\" ranked by shared significant terms in title/body/tags, scoped\n // to the recency window. The backend already excludes the source author,\n // spam and nsfw.\n const response = await similar(\n {\n author: entry.author,\n permlink: entry.permlink,\n title,\n body,\n tags,\n since\n },\n signal,\n // Short cap server-side so a slow cross-region call can't stall SSR;\n // a slightly longer (but still bounded) cap client-side so a degraded\n // backend can't hang the request on the SDK's generic 8s timeout.\n typeof window === \"undefined\"\n ? SIMILAR_ENTRIES_SSR_TIMEOUT_MS\n : SIMILAR_ENTRIES_CLIENT_TIMEOUT_MS\n );\n\n // Light client guard mirroring the render contract: never the source\n // post, never nsfw, one per author, capped at the render target.\n const collected: SearchResult[] = [];\n const seenAuthors = new Set();\n for (const r of response.results) {\n if (collected.length >= SIMILAR_ENTRIES_TARGET) break;\n if (r.permlink === entry.permlink) continue;\n if ((r.tags ?? []).indexOf(\"nsfw\") !== -1) continue;\n if (seenAuthors.has(r.author)) continue;\n seenAuthors.add(r.author);\n collected.push(r);\n }\n\n return collected;\n },\n // The entry page server-prefetches this query and dehydrates it. Without a\n // staleTime, React Query treats the hydrated data as stale and refetches on\n // mount — issuing a *redundant* /search-api/similar XHR right after\n // hydration even though SSR already provided the data. That refetch was the\n // long post-onload tail in the waterfall (held open to the client timeout),\n // inflating GTmetrix \"Fully Loaded\" while the visible strip was already\n // populated from SSR. A staleTime makes the hydrated data fresh so the\n // client skips that refetch; if SSR delivered nothing (empty cache), the\n // client still fetches. Recommendations are stable per post (and the cache\n // key is content-fingerprinted), so 5 min matches the page's ISR cadence.\n staleTime: 5 * 60 * 1000,\n // Best-effort suggestions strip — never retry-storm a degraded backend.\n // The web QueryClient only disables retries on the server; the browser\n // client keeps React Query's default retry (3×) — and other SDK consumers\n // (e.g. mobile) may too — so pin retry:false here to cover every caller.\n retry: false\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { getProfiles } from \"@/modules/bridge\";\nimport { Profile } from \"@/modules/accounts/types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchAccountQueryOptions(q: string, limit = 5) {\n const normalized = q.trim();\n\n return queryOptions({\n queryKey: QueryKeys.search.account(normalized, limit),\n queryFn: async (): Promise => {\n const usernames = (await callRPC(\"condenser_api.lookup_accounts\", [\n normalized,\n limit,\n ])) as string[];\n\n if (usernames.length === 0) {\n return [];\n }\n\n return getProfiles(usernames);\n },\n enabled: !!normalized,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { TrendingTag } from \"@/modules/posts/types\";\nimport { callRPC } from \"@/modules/core/hive-tx\";\n\nexport function getSearchTopicsQueryOptions(q: string, limit = 10) {\n const normalized = q.trim();\n\n return queryOptions({\n queryKey: QueryKeys.search.topics(normalized, limit),\n queryFn: async (): Promise => {\n const tags = (await callRPC(\"condenser_api.get_trending_tags\", [\n normalized,\n limit + 1,\n ])) as TrendingTag[];\n\n return tags\n .map((t) => t.name)\n .filter((name) => name !== \"\" && !name.startsWith(\"hive-\"))\n .slice(0, limit);\n },\n enabled: !!normalized,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, INTERNAL_API_TIMEOUT_MS, withTimeoutSignal, QueryKeys } from \"@/modules/core\";\nimport { SearchResponse } from \"../types/search-response\";\nimport { isSearchResponse, parseJsonResponse } from \"../parse-json-response\";\nimport { searchRetryPolicy } from \"../retry-policy\";\n\nexport function getSearchApiInfiniteQueryOptions(\n q: string,\n sort: string,\n hideLow: boolean,\n since?: string,\n votes?: number,\n includeNsfw?: boolean\n) {\n return infiniteQueryOptions({\n queryKey: QueryKeys.search.api(q, sort, hideLow, since, votes, includeNsfw),\n queryFn: async ({ pageParam, signal }: { pageParam: string | undefined; signal: AbortSignal }) => {\n interface SearchApiPayload {\n q: string;\n sort: string;\n hide_low: boolean;\n since?: string;\n scroll_id?: string;\n votes?: number;\n include_nsfw?: number;\n }\n\n const payload: SearchApiPayload = { q, sort, hide_low: hideLow };\n\n if (since) {\n payload.since = since;\n }\n if (pageParam) {\n payload.scroll_id = pageParam;\n }\n if (votes !== undefined) {\n payload.votes = votes;\n }\n if (includeNsfw) {\n payload.include_nsfw = 1;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify(payload),\n signal: withTimeoutSignal(INTERNAL_API_TIMEOUT_MS, signal),\n });\n\n // Keeps the backend's own explanation of a rejected query on the error\n // (status + body), instead of collapsing it to a status code.\n return parseJsonResponse(response, isSearchResponse);\n },\n initialPageParam: undefined as string | undefined,\n getNextPageParam: (lastPage: SearchResponse) => lastPage?.scroll_id,\n enabled: !!q,\n retry: searchRetryPolicy,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\n\nexport function getSearchPathQueryOptions(q: string) {\n return queryOptions({\n queryKey: [\"search\", \"path\", q],\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/search-api/search-path\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n \"X-Ecency-Client\": CONFIG.clientId,\n },\n body: JSON.stringify({ q }),\n });\n\n if (!response.ok) {\n throw new Error(`Search path failed: ${response.status}`);\n }\n\n const data = await response.json();\n\n if (data?.length > 0) {\n return data as string[];\n }\n\n return [q];\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { SupportSettings } from \"../types\";\n\n/**\n * Fetch the active user's Support Ecency settings. The username is resolved\n * server-side from the validated `code`, so only the code is sent. Throws on a\n * non-2xx with the server's `.status` + parsed `.data` attached. Exported for\n * unit testing; the query options below wrap it.\n */\nexport async function getSupportSettingsRequest(code: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/support-settings\", {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ code }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to fetch support settings: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as SupportSettings;\n}\n\n/**\n * Query options for the active user's Support Ecency settings\n * (beneficiary percent + curation holdback percent). Zeros mean both\n * opt-ins are off; the backend returns zeros when no row exists.\n */\nexport function getSupportSettingsQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n const name = username?.replace(\"@\", \"\");\n\n return queryOptions({\n queryKey: QueryKeys.support.settings(name),\n queryFn: () => {\n if (!code) {\n throw new Error(\"[SDK][Support] missing auth\");\n }\n return getSupportSettingsRequest(code);\n },\n enabled: !!name && !!code,\n });\n}\n","import { CONFIG, getBoundFetch, QueryKeys } from \"@/modules/core\";\nimport { QueryClient, useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { SupportSettings, UpdateSupportSettingsPayload } from \"../types\";\n\n/**\n * POST a Support Ecency settings update. Both percents are integers within\n * 0..100 (0 = off); the gateway rejects anything else with a 400. Throws on a\n * non-2xx with the server's `.status` + parsed `.data` attached so the caller\n * can surface the plain validation message. Exported for unit testing; the\n * hook below wraps it.\n */\nexport async function updateSupportSettingsRequest(\n code: string,\n payload: UpdateSupportSettingsPayload\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/private-api/support-settings-update\", {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({\n code,\n beneficiary_percent: payload.beneficiary_percent,\n curation_percent: payload.curation_percent,\n }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n // non-JSON error body; fall through with status only\n }\n const message =\n (data as { message?: string })?.message ??\n `Failed to update support settings: ${response.status}`;\n const err = new Error(message) as Error & { status?: number; data?: unknown };\n err.status = response.status;\n err.data = data;\n throw err;\n }\n\n return (await response.json()) as SupportSettings;\n}\n\n/**\n * Sync the settings cache after a successful update: seed the fresh server\n * response and invalidate so any active observers refetch. Exported for unit\n * testing; `useUpdateSupportSettings` calls it from `onSuccess`.\n */\nexport function applySupportSettingsUpdate(\n queryClient: QueryClient,\n username: string,\n data: SupportSettings\n) {\n queryClient.setQueryData(QueryKeys.support.settings(username), data);\n return queryClient.invalidateQueries({ queryKey: QueryKeys.support.settings(username) });\n}\n\n/**\n * Update the user's voluntary Support Ecency opt-ins (post beneficiary percent\n * and curation holdback percent). On success the settings query is refreshed\n * so every surface (publish dialog, settings card, injection hooks) sees the\n * new preference.\n */\nexport function useUpdateSupportSettings(\n username: string | undefined,\n code: string | undefined\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"support\", \"settings-update\", name],\n mutationFn: async (payload: UpdateSupportSettingsPayload) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Support] missing auth\");\n }\n return updateSupportSettingsRequest(code, payload);\n },\n onSuccess(data) {\n if (name) {\n applySupportSettingsUpdate(queryClient, name, data);\n }\n },\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\nexport function getBoostPlusPricesQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"boost-plus-prices\"],\n queryFn: async () => {\n if (!accessToken) {\n return [];\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/boost-plus-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch boost plus prices: ${response.status}`);\n }\n\n return await response.json() as PromotePrice[];\n },\n staleTime: Infinity,\n enabled: !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\n/**\n * RC top-up pricing: duration -> Points cost tiers, served by the ePoints\n * backend via the private API. Reuses the {@link PromotePrice} shape\n * ({ duration, price }).\n */\nexport function getRcDelegationPricesQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"rc-delegation-prices\"],\n queryFn: async () => {\n if (!accessToken) {\n return [];\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/rc-delegation-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch RC delegation prices: ${response.status}`);\n }\n\n return (await response.json()) as PromotePrice[];\n },\n staleTime: Infinity,\n enabled: !!accessToken,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\n\nexport interface RcDelegationActive {\n user: string;\n expires: Date;\n}\n\n/**\n * The active (ON) RC top-up for a user, if any. Lets the UI block a duplicate\n * purchase up front (only one RC top-up is allowed at a time). Returns null\n * when the user has no active top-up.\n */\nexport function getRcDelegationActiveQueryOptions(username: string, accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"rc-delegation-active\", username],\n queryFn: async (): Promise => {\n if (!accessToken || !username) {\n return null;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/rc-delegation-active\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\"\n },\n body: JSON.stringify({ code: accessToken, username })\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch RC delegation active: ${response.status}`);\n }\n\n const responseData = (await response.json()) as { user?: string; expires?: string };\n\n return responseData && responseData.expires && responseData.user\n ? { user: responseData.user, expires: new Date(responseData.expires) }\n : null;\n },\n enabled: !!username && !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\nimport type { PromotePrice } from \"../types\";\n\nexport function getPromotePriceQueryOptions(accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"promote-price\"],\n queryFn: async () => {\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/promote-price\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch promote prices: ${response.status}`);\n }\n\n return await response.json() as PromotePrice[];\n },\n enabled: !!accessToken\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG } from \"../../core\";\n\nexport interface BoostPlusAccountPrice {\n account: string;\n expires: Date;\n}\n\nexport function getBoostPlusAccountPricesQueryOptions(account: string, accessToken: string) {\n return queryOptions({\n queryKey: [\"promotions\", \"boost-plus-accounts\", account],\n queryFn: async (): Promise => {\n if (!accessToken || !account) {\n return null;\n }\n\n const response = await fetch(CONFIG.privateApiHost + \"/private-api/boosted-plus-account\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code: accessToken, account }),\n });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch boost plus account prices: ${response.status}`);\n }\n\n const responseData = await response.json() as {\n expires: string;\n account: string;\n };\n\n return responseData\n ? {\n account: responseData.account,\n expires: new Date(responseData.expires)\n }\n : null;\n },\n enabled: !!account && !!accessToken\n });\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildBoostPlusOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface BoostPlusPayload {\n account: string;\n duration: number;\n}\n\nexport function useBoostPlus(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"promotions\", \"boost-plus\"],\n username,\n ({ account, duration }) => [\n buildBoostPlusOp(username!, account, duration)\n ],\n async (_data, { account }) => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.promotions.boostPlusAccounts(account),\n ]);\n }\n },\n auth,\n 'active',\n { broadcastMode }\n );\n}\n","import { useBroadcastMutation, QueryKeys } from \"@/modules/core\";\nimport type { BroadcastMode } from \"@/modules/core\";\nimport { buildRcDelegationOp } from \"@/modules/operations/builders\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\n\nexport interface RcDelegationPayload {\n duration: number;\n}\n\n/**\n * Buys a short-term, RC-only delegation (RC top-up) for the active user, paid\n * with Ecency Points. Mirrors {@link useBoostPlus} but is RC-only (no Hive\n * Power / voting power transferred). Invalidates the user's account + RC caches\n * so the new RC shows up once the relay delegation lands.\n */\nexport function useRcDelegation(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n [\"promotions\", \"rc-delegation\"],\n username,\n ({ duration }) => [buildRcDelegationOp(username!, duration)],\n async () => {\n if (auth?.adapter?.invalidateQueries) {\n await auth.adapter.invalidateQueries([\n QueryKeys.accounts.full(username),\n QueryKeys.resourceCredits.account(username!),\n [\"promotions\", \"rc-delegation-active\", username]\n ]);\n }\n },\n auth,\n \"active\",\n { broadcastMode }\n );\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { HsTokenRenewResponse } from \"./types\";\n\ntype RequestError = Error & { status?: number; data?: unknown };\n\nexport async function hsTokenRenew(code: string): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(CONFIG.privateApiHost + \"/auth-api/hs-token-refresh\", {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify({ code }),\n });\n\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n data = undefined;\n }\n const error = new Error(`Failed to refresh token: ${response.status}`) as RequestError;\n error.status = response.status;\n error.data = data;\n throw error;\n }\n\n const data = (await response.json()) as HsTokenRenewResponse;\n return data;\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"../../core\";\n\nconst BAD_ACTORS_URL =\n \"https://raw.githubusercontent.com/openhive-network/watchmen/main/output/flat/badactors.txt\";\n\nexport function getBadActorsQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.badActors.list(),\n queryFn: async ({ signal }) => {\n const response = await fetch(BAD_ACTORS_URL, { signal });\n\n if (!response.ok) {\n throw new Error(`Failed to fetch bad actors list: ${response.status}`);\n }\n\n const text = await response.text();\n return new Set(text.split(\"\\n\").filter(Boolean));\n },\n staleTime: 24 * 60 * 60 * 1000,\n /**\n * Deliberately left unbounded, including under SSR.\n *\n * `Infinity` is the one value that schedules no gc timer at all —\n * `isValidTimeout` in query-core rejects non-finite timeouts, so\n * `scheduleGc` is a no-op. With no timer there is no GC root, and on a\n * per-request client the entry dies with the request that made it.\n * Replacing it with a finite window would *create* a timer that retains the\n * Query and, through it, that request's whole QueryCache — strictly worse\n * here than leaving it alone.\n */\n gcTime: Infinity\n });\n}\n","export const POLLS_PROTOCOL_VERSION = 1.1;\n\nexport enum PollPreferredInterpretation {\n NUMBER_OF_VOTES = \"number_of_votes\",\n TOKENS = \"tokens\",\n}\n\nexport interface PollChoiceVotes {\n total_votes: number;\n hive_hp?: number;\n hive_proxied_hp?: number;\n hive_hp_incl_proxied: number | null;\n}\n\nexport interface PollChoice {\n choice_num: number;\n choice_text: string;\n votes?: PollChoiceVotes;\n}\n\nexport interface PollVoter {\n name: string;\n choices: number[];\n hive_hp?: number;\n hive_proxied_hp?: number;\n hive_hp_incl_proxied?: number;\n}\n\nexport interface PollStats {\n total_voting_accounts_num: number;\n total_hive_hp?: number;\n total_hive_proxied_hp?: number;\n total_hive_hp_incl_proxied: number | null;\n}\n\nexport interface Poll {\n author: string;\n permlink: string;\n question: string;\n poll_choices: PollChoice[];\n poll_voters?: PollVoter[];\n poll_stats?: PollStats;\n poll_trx_id: string;\n status: string;\n end_time: string;\n preferred_interpretation: PollPreferredInterpretation | string;\n max_choices_voted: number;\n filter_account_age_days: number;\n protocol_version: number;\n created: string;\n post_title: string;\n post_body: string;\n parent_permlink: string;\n tags: string[];\n image: unknown[];\n token?: string | null;\n community_membership?: string[];\n allow_vote_changes?: boolean;\n ui_hide_res_until_voted?: boolean;\n platform?: string;\n}\n\nexport function mapMetaChoicesToPollChoices(metaChoices: string[]): PollChoice[] {\n if (!metaChoices) {\n return [];\n }\n\n return metaChoices.map((choice, index) => ({\n choice_num: index + 1,\n choice_text: choice,\n votes: {\n total_votes: 0,\n hive_hp: 0,\n hive_proxied_hp: 0,\n hive_hp_incl_proxied: 0,\n },\n }));\n}\n","import { isServer, queryOptions } from \"@tanstack/react-query\";\nimport { CONFIG, QueryKeys, SERVER_GC_TIME_MS } from \"@/modules/core\";\nimport { getBoundFetch } from \"@/modules/core/utils\";\nimport type { Poll, PollChoice, PollVoter, PollStats } from \"../types\";\n\nfunction normalizePoll(raw: Record): Poll {\n const pollChoices = (raw.poll_choices as Record[] | undefined) ?? [];\n const pollVoters = (raw.poll_voters as Record[] | undefined) ?? [];\n const rawStats = raw.poll_stats as Record | undefined;\n\n const choices: PollChoice[] = pollChoices.map((c) => {\n const votes = c.votes as Record | undefined;\n return {\n choice_num: (c.choice_num as number) ?? 0,\n choice_text: (c.choice_text as string) ?? \"\",\n votes: votes\n ? {\n total_votes: (votes.total_votes as number) ?? 0,\n hive_hp: votes.hive_hp as number | undefined,\n hive_proxied_hp: votes.hive_proxied_hp as number | undefined,\n hive_hp_incl_proxied: (votes.hive_hp_incl_proxied as number | null) ?? null,\n }\n : undefined,\n };\n });\n\n const voters: PollVoter[] = pollVoters.map((v) => ({\n name: (v.name as string) ?? \"\",\n choices: (v.choices as number[]) ?? [],\n hive_hp: v.hive_hp as number | undefined,\n hive_proxied_hp: v.hive_proxied_hp as number | undefined,\n hive_hp_incl_proxied: v.hive_hp_incl_proxied as number | undefined,\n }));\n\n const stats: PollStats | undefined = rawStats\n ? {\n total_voting_accounts_num: (rawStats.total_voting_accounts_num as number) ?? 0,\n total_hive_hp: rawStats.total_hive_hp as number | undefined,\n total_hive_proxied_hp: rawStats.total_hive_proxied_hp as number | undefined,\n total_hive_hp_incl_proxied: (rawStats.total_hive_hp_incl_proxied as number | null) ?? null,\n }\n : undefined;\n\n return {\n author: (raw.author as string) ?? \"\",\n permlink: (raw.permlink as string) ?? \"\",\n question: (raw.question as string) ?? \"\",\n poll_choices: choices,\n poll_voters: voters,\n poll_stats: stats,\n poll_trx_id: (raw.poll_trx_id as string) ?? \"\",\n status: (raw.status as string) ?? \"\",\n end_time: (raw.end_time as string) ?? \"\",\n preferred_interpretation: (raw.preferred_interpretation as string) ?? \"number_of_votes\",\n max_choices_voted: (raw.max_choices_voted as number) ?? 1,\n filter_account_age_days: (raw.filter_account_age_days as number) ?? 0,\n protocol_version: (raw.protocol_version as number) ?? 0,\n created: (raw.created as string) ?? \"\",\n post_title: (raw.post_title as string) ?? \"\",\n post_body: (raw.post_body as string) ?? \"\",\n parent_permlink: (raw.parent_permlink as string) ?? \"\",\n tags: (raw.tags as string[]) ?? [],\n image: (raw.image as unknown[]) ?? [],\n token: raw.token as string | null | undefined,\n community_membership: raw.community_membership as string[] | undefined,\n allow_vote_changes: raw.allow_vote_changes as boolean | undefined,\n ui_hide_res_until_voted: (raw.ui_hide_res_until_voted as boolean | undefined) ?? false,\n platform: raw.platform as string | undefined,\n };\n}\n\nexport function getPollQueryOptions(\n author: string | undefined,\n permlink: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.polls.details(author ?? \"\", permlink ?? \"\"),\n enabled: !!author && !!permlink,\n // Long in a browser, where a poll is cheap to keep and often revisited;\n // bounded during SSR, where holding it also holds that request's whole\n // cache. See SERVER_GC_TIME_MS.\n gcTime: isServer ? SERVER_GC_TIME_MS : 30 * 60 * 1000,\n queryFn: async (): Promise => {\n if (!author || !permlink) {\n throw new Error(\"[SDK][Polls] – missing author or permlink\");\n }\n\n const fetchApi = getBoundFetch();\n const url = `${CONFIG.pollsApiHost}/rpc/poll?author=eq.${encodeURIComponent(author)}&permlink=eq.${encodeURIComponent(permlink)}`;\n const response = await fetchApi(url);\n\n if (!response.ok) {\n throw new Error(`[SDK][Polls] – fetch failed: ${response.status}`);\n }\n\n const data = await response.json();\n\n if (!Array.isArray(data) || !data[0]) {\n throw new Error(\"[SDK][Polls] – no poll data found\");\n }\n\n return normalizePoll(data[0]);\n },\n });\n}\n","import { QueryKeys, useBroadcastMutation } from \"@/modules/core\";\nimport type { BroadcastMode, AuthContextV2 } from \"@/modules/core\";\n\nexport interface PollVotePayload {\n pollTrxId: string;\n choices: number[];\n}\n\nexport function usePollVote(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n QueryKeys.polls.vote(),\n username ?? \"\",\n ({ pollTrxId, choices }) => {\n if (!username) {\n throw new Error(\"[SDK][Polls] Cannot vote without an authenticated username\");\n }\n return [\n [\n \"custom_json\",\n {\n id: \"polls\",\n required_auths: [],\n required_posting_auths: [username],\n json: JSON.stringify({\n poll: pollTrxId,\n action: \"vote\",\n choices,\n }),\n },\n ],\n ];\n },\n undefined,\n auth,\n \"posting\",\n { broadcastMode: broadcastMode ?? \"async\" }\n );\n}\n","/**\n * Thresholds behind the content moderation treatment. Single source of truth for\n * every client: web and mobile previously carried their own copies, which drifted\n * (mobile flagged downvoted content at -7B rshares and 4 voters where web used\n * -10B and 5), so the same post read differently depending on the app.\n */\n\n/** Sum of rshares below which a post counts as heavily downvoted. */\nexport const HIDDEN_POST_RSHARES_THRESHOLD = -10000000000;\n\n/** Downvoting is only conclusive once enough accounts have voted. */\nexport const HIDDEN_POST_MIN_VOTES = 5;\n\n/**\n * Reputation (human-readable 0-100 scale) below which an author counts as\n * low-trust. New Hive accounts start around 25.\n *\n * NOTE: reputation is the only input. Account age is NOT part of the check, so a\n * years-old account that never earned reputation trips it exactly like a fresh\n * one. User-facing copy must say \"low reputation\", never \"new account\".\n */\nexport const LOW_TRUST_REPUTATION_THRESHOLD = 30;\n","/**\n * Converts Hive's raw reputation to the human-readable 0-100 scale, passing\n * through values that are already on it (the bridge returns both shapes\n * depending on the endpoint).\n */\nconst isHumanReadable = (input: number): boolean =>\n Math.abs(input) > 0 && Math.abs(input) <= 100;\n\nexport function accountReputation(input: string | number): number {\n if (typeof input === \"number\" && isHumanReadable(input)) {\n return Math.floor(input);\n }\n\n if (typeof input === \"string\") {\n input = Number(input);\n\n if (isHumanReadable(input)) {\n return Math.floor(input);\n }\n }\n\n if (input === 0) {\n return 25;\n }\n\n let neg = false;\n\n if (input < 0) {\n neg = true;\n }\n\n let reputationLevel = Math.log10(Math.abs(input as number));\n reputationLevel = Math.max(reputationLevel - 9, 0);\n\n if (reputationLevel < 0) {\n reputationLevel = 0;\n }\n\n if (neg) {\n reputationLevel *= -1;\n }\n\n reputationLevel = reputationLevel * 9 + 25;\n\n return Math.floor(reputationLevel);\n}\n","/**\n * Outbound-link detection for the SEO/backlink-farm signal.\n *\n * A link only counts as outbound promotion when it leaves the Hive/Ecency\n * ecosystem and is not an embedded image, so ordinary on-platform references and\n * post illustrations never trip the check.\n */\n\n// Hosts that are part of the Hive/Ecency ecosystem.\nconst INTERNAL_HOSTS = [\n \"ecency.com\",\n \"ecency.app\",\n \"hive.blog\",\n \"hive.io\",\n \"hiveblocks.com\",\n \"peakd.com\",\n \"snapie.io\",\n \"hivesuite.app\",\n \"leofinance.io\",\n \"inleo.io\",\n \"3speak.tv\",\n \"d.buzz\",\n \"waivio.com\"\n];\n\n// Image/media hosts: an embedded image is content, not a backlink.\nconst IMAGE_HOSTS = [\n \"imgur.com\",\n \"images.hive.blog\",\n \"files.peakd.com\",\n \"i.ecency.com\",\n \"images.ecency.com\",\n \"steemitimages.com\",\n \"cdn.steemitimages.com\",\n \"media.giphy.com\"\n];\n\nconst IMAGE_EXT_RE = /\\.(jpe?g|png|gif|webp|svg|bmp|avif)(\\?|#|$)/i;\n// Match absolute AND protocol-relative URLs (\"//host/...\"), so the check can't be\n// evaded with `[promo](//shop.example)` (the renderer allows protocol-relative hrefs).\nconst URL_RE = /(?:https?:)?\\/\\/[^\\s)<>\"'\\]]+/gi;\n// URLs in prose are commonly followed by punctuation (\"https://ecency.com, and...\");\n// strip it so the host parses correctly and internal links do not false-positive.\nconst TRAILING_PUNCT_RE = /[.,;:!?'\"]+$/;\n\nfunction hostOf(url: string): string {\n const m = /^(?:https?:)?\\/\\/([^/?#]+)/i.exec(url);\n return m ? m[1].toLowerCase().replace(/^www\\./, \"\") : \"\";\n}\n\nfunction isExternalPromoLink(rawUrl: string): boolean {\n const url = rawUrl.replace(TRAILING_PUNCT_RE, \"\");\n if (IMAGE_EXT_RE.test(url)) {\n return false; // embedded image, not a backlink\n }\n const host = hostOf(url);\n if (!host.includes(\".\")) {\n return false; // not a real domain (e.g. a stray \"//something\")\n }\n const matches = (h: string) => host === h || host.endsWith(\".\" + h);\n if (INTERNAL_HOSTS.some(matches) || IMAGE_HOSTS.some(matches)) {\n return false; // Hive/Ecency or image host\n }\n return true;\n}\n\n/** True if the post body contains an outbound (non-Hive, non-image) link. */\nexport function hasExternalLink(body: string | undefined | null): boolean {\n if (!body) {\n return false;\n }\n const matches = body.match(URL_RE);\n if (!matches) {\n return false;\n }\n return matches.some(isExternalPromoLink);\n}\n","import { accountReputation } from \"./account-reputation\";\nimport {\n HIDDEN_POST_MIN_VOTES,\n HIDDEN_POST_RSHARES_THRESHOLD,\n LOW_TRUST_REPUTATION_THRESHOLD\n} from \"./constants\";\nimport { hasExternalLink } from \"./external-links\";\n\n/**\n * Why a piece of content gets the moderation treatment. Clients render their own\n * copy per reason; the rules that pick the reason live here so web and mobile\n * always agree on which one fired.\n */\nexport enum ContentModerationReason {\n /**\n * `stats.gray` / `stats.hide` from hivemind: community moderator mutes, mutes\n * applied by the observer account, and authors hivemind itself grays out.\n */\n MOD_MUTED = \"mod_muted\",\n /** Heavily downvoted by enough distinct accounts to be conclusive. */\n DOWNVOTED = \"downvoted\",\n /** Low-reputation author whose post carries an outbound promotional link. */\n LOW_TRUST = \"low_trust\"\n}\n\n/**\n * The fields of a post or comment the rules read. Deliberately structural: web\n * passes an `Entry`, mobile passes a raw bridge post, and neither has to convert.\n */\nexport interface ModerationCandidate {\n author?: string;\n author_reputation?: string | number;\n body?: string | null;\n net_rshares?: number;\n active_votes?: unknown[] | null;\n stats?: {\n gray?: boolean;\n hide?: boolean;\n total_votes?: number;\n } | null;\n}\n\n/**\n * hivemind's `total_votes` is the authoritative count when present; `active_votes`\n * is the fallback for the feeds that omit stats.\n */\nfunction countVotes(content: ModerationCandidate): number {\n return content?.stats?.total_votes ?? content?.active_votes?.length ?? 0;\n}\n\n/** Heavily downvoted: strongly negative rshares from more than a handful of voters. */\nexport function isHiddenPost(\n netRshares: number | undefined,\n activeVotesLength: number\n): boolean {\n return (\n (netRshares ?? 0) < HIDDEN_POST_RSHARES_THRESHOLD &&\n activeVotesLength >= HIDDEN_POST_MIN_VOTES\n );\n}\n\n/**\n * Content-moderation signal for SEO/backlink-farm abuse: low-reputation accounts\n * publishing an outbound link are the signature of free-faucet SEO spam.\n *\n * Such posts are not blocked, they are de-emphasized and their outbound link is\n * flagged as unverified, so the promotional payoff drops to zero. Low reputation\n * on its own is NOT a moderation signal: plenty of small accounts post ordinary\n * content, and dimming all of them punishes newcomers for existing.\n */\nexport function isLowTrustSeoPost(\n content: Pick\n): boolean {\n const reputation = content?.author_reputation;\n // Some feeds omit reputation entirely. An unknown value is not evidence of\n // anything, so it must not be read as \"brand new account\" (raw 0 scales to 25,\n // which is below the threshold and would flag every post carrying a link).\n if (reputation === undefined || reputation === null) {\n return false;\n }\n return (\n accountReputation(reputation) < LOW_TRUST_REPUTATION_THRESHOLD &&\n hasExternalLink(content?.body)\n );\n}\n\n/** True when the viewer has personally muted this author. */\nexport function isAuthorMuted(\n author: string | undefined,\n mutedAuthors: string[] | undefined | null\n): boolean {\n return !!author && !!mutedAuthors?.includes(author);\n}\n\n/**\n * The reason a post or comment should be de-emphasized, or null when it is fine.\n *\n * Precedence, most authoritative first: an explicit moderation action outranks\n * the vote heuristic, which outranks the spam heuristic. Order matters because a\n * heavily downvoted post usually also has a battered reputation, and labelling\n * that \"low trust\" would hide why the content was actually flagged.\n *\n * A viewer's personal mute list is NOT an input here. Muting an author removes\n * their content from the viewer's lists entirely (see `isAuthorMuted`), rather\n * than labelling it.\n */\nexport function getContentModerationReason(\n content: ModerationCandidate | undefined | null\n): ContentModerationReason | null {\n if (!content) {\n return null;\n }\n if (content.stats?.gray || content.stats?.hide) {\n return ContentModerationReason.MOD_MUTED;\n }\n if (isHiddenPost(content.net_rshares, countVotes(content))) {\n return ContentModerationReason.DOWNVOTED;\n }\n if (isLowTrustSeoPost(content)) {\n return ContentModerationReason.LOW_TRUST;\n }\n return null;\n}\n","/**\n * Error types for the newsletter client, in their own dependency-free file so\n * test setups can hand out the REAL classes (instanceof must hold across the\n * app) without pulling the SDK config chain along.\n */\nexport class NewsletterApiError extends Error {\n constructor(\n message: string,\n public readonly status: number,\n public readonly data?: unknown,\n ) {\n super(message);\n }\n}\n\n/** A refused send, carrying the relay's routing `code` (already_sent, suspended, ...). */\nexport class NewsletterSendRefusedError extends NewsletterApiError {\n constructor(\n message: string,\n status: number,\n public readonly code?: string,\n public readonly taken?: Array<{ cadence: string; period: string; kind: string }>,\n data?: unknown,\n ) {\n super(message, status, data);\n }\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport { NewsletterApiError, NewsletterSendRefusedError } from \"./errors\";\nimport type {\n DigestSubscribeInput,\n DigestSubscribeResult,\n DigestSubscription,\n NewsletterCandidatePost,\n NewsletterListType,\n NewsletterSendPreview,\n NewsletterSendRequest,\n NewsletterSendResult,\n NewsletterSenderStanding,\n NewsletterSentIssue,\n} from \"./types\";\n\n/**\n * Client for the newsletter relay at {privateApiHost}/api/newsletter/*\n * (Next.js route handlers on ecency.com, which alone hold the news-service\n * credentials — clients never talk to the service directly).\n *\n * Identity is the HiveSigner access token, passed here as the explicit `code`\n * argument. Transport mirrors the deployed web client per route: subscribe and\n * unsubscribe-all carry it in the POST body as `code` (the subscribe route\n * authenticates ONLY from the body — a header alone is treated as anonymous);\n * every other call, the send/preview POSTs included, uses the `X-HS-Token`\n * header. The relay verifies it upstream and derives the account from it, so\n * a stale token 401s — callers are responsible for supplying a fresh one\n * (web: ensureValidToken; mobile: the token-refresh wrapper).\n *\n * The email-token confirm/unsubscribe flows are deliberately absent: those\n * links land on web pages.\n */\nfunction newsletterUrl(path: string): string {\n // The relay lives on the WEB origin; newsletterHost overrides where that is\n // (\"\" = same-origin, the web client's case). Nullish on purpose: only an\n // unset override falls back, an empty string is a meaningful host.\n return `${CONFIG.newsletterHost ?? CONFIG.privateApiHost}/api/newsletter${path}`;\n}\n\nasync function parse(response: Response): Promise {\n const data = (await response.json().catch(() => undefined)) as\n | (T & { error?: string })\n | undefined;\n if (!response.ok) {\n throw new NewsletterApiError(\n data?.error || `Request failed (${response.status})`,\n response.status,\n data,\n );\n }\n // A 2xx without a JSON body is not a result; saying so beats returning blanks.\n if (!data || typeof data !== \"object\") {\n throw new NewsletterApiError(\n `Unexpected response (${response.status})`,\n response.status,\n );\n }\n return data;\n}\n\n/**\n * Subscribe an address to a digest. Authenticated callers (code given) skip\n * the captcha; anonymous callers must supply `captchaToken` in the input and\n * get double opt-in. The `own` digest type is always authenticated.\n */\nexport async function subscribeDigestRequest(\n input: DigestSubscribeInput,\n code?: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/subscribe\"), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ ...input, ...(code ? { code } : {}) }),\n });\n return parse(response);\n}\n\n/** Every live digest subscription attributed to the token's account. */\nexport async function getDigestSubscriptionsRequest(\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/subscriptions\"), {\n headers: { \"X-HS-Token\": code },\n });\n const data = await parse<{ subscriptions?: DigestSubscription[] }>(response);\n return data.subscriptions ?? [];\n}\n\n/** Leave one digest by subscription id. */\nexport async function leaveDigestRequest(\n id: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/subscriptions/${encodeURIComponent(id)}`),\n { method: \"DELETE\", headers: { \"X-HS-Token\": code } },\n );\n await parse<{ left: boolean }>(response);\n}\n\n/**\n * Suppress ONE address entirely (no Ecency bulk mail to it again). Only that\n * address stops: an account can hold subscriptions under several addresses.\n */\nexport async function unsubscribeAllDigestsRequest(\n email: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(\"/unsubscribe-all\"), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ email, code }),\n });\n await parse<{ suppressed: boolean }>(response);\n}\n\n/** Sender standing (status, complaint/bounce stats, subscriber counts) for a list. */\nexport async function getNewsletterSenderRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/sender?type=${type}&target=${encodeURIComponent(target)}`),\n { headers: { \"X-HS-Token\": code } },\n );\n return parse(response);\n}\n\n/** Already-sent issues for a list, newest first. */\nexport async function getNewsletterIssuesRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(`/issues?type=${type}&target=${encodeURIComponent(target)}`),\n { headers: { \"X-HS-Token\": code } },\n );\n const data = await parse<{ issues?: NewsletterSentIssue[] }>(response);\n return data.issues ?? [];\n}\n\n/** Candidate posts for composing a digest issue. */\nexport async function getNewsletterPostsRequest(\n type: NewsletterListType,\n target: string,\n code: string,\n limit = 20,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(\n newsletterUrl(\n `/posts?type=${type}&target=${encodeURIComponent(target)}&limit=${limit}`,\n ),\n { headers: { \"X-HS-Token\": code } },\n );\n const data = await parse<{ posts?: NewsletterCandidatePost[] }>(response);\n return data.posts ?? [];\n}\n\nasync function postSend(\n path: string,\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(newsletterUrl(path), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\", \"X-HS-Token\": code },\n body: JSON.stringify(request),\n });\n const data = (await response.json().catch(() => undefined)) as\n | (T & {\n error?: string;\n code?: string;\n taken?: NewsletterSendRefusedError[\"taken\"];\n })\n | undefined;\n if (!response.ok) {\n throw new NewsletterSendRefusedError(\n data?.error || `Request failed (${response.status})`,\n response.status,\n data?.code,\n data?.taken,\n data,\n );\n }\n if (!data || typeof data !== \"object\") {\n throw new NewsletterSendRefusedError(\n `Unexpected response (${response.status})`,\n response.status,\n );\n }\n return data;\n}\n\n/** Render the would-be issue (subject/html/text, counts, taken periods) without sending. */\nexport function previewNewsletterSendRequest(\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n return postSend(\"/send/preview\", request, code);\n}\n\n/** Send a post or composed digest to the list's subscribers. Pro/team gated by the relay. */\nexport function sendNewsletterIssueRequest(\n request: NewsletterSendRequest,\n code: string,\n): Promise {\n return postSend(\"/send\", request, code);\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getDigestSubscriptionsRequest } from \"../api\";\n\n/**\n * The signed-in account's live digest subscriptions. Disabled without a\n * username + token: callers render nothing then, and a request that\n * predictably 401s is noise. `retry: false` because the common failure is a\n * stale token, which a retry with the same token cannot fix.\n */\nexport function getDigestSubscriptionsQueryOptions(\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.subscriptions(name),\n enabled: !!name && !!code,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getDigestSubscriptionsRequest(code);\n },\n staleTime: 60_000,\n retry: false,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterSenderRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/**\n * Sender standing for a creator/community list. View access is the list's\n * owner (creator) or the community team, decided by the relay — enable this\n * only for callers already known to be the sender.\n */\nexport function getNewsletterSenderQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.sender(type, target, name),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterSenderRequest(type, target, code);\n },\n staleTime: 5 * 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterIssuesRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/** Already-sent issues for a creator/community list (sender-only view). */\nexport function getNewsletterIssuesQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.issues(type, target, name),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterIssuesRequest(type, target, code);\n },\n staleTime: 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { queryOptions } from \"@tanstack/react-query\";\nimport { getNewsletterPostsRequest } from \"../api\";\nimport type { NewsletterListType } from \"../types\";\n\n/** Candidate posts for composing a digest issue (send-gated by the relay). */\nexport function getNewsletterPostsQueryOptions(\n type: NewsletterListType,\n target: string,\n username: string | undefined,\n code: string | undefined,\n limit = 20,\n) {\n const name = username?.replace(\"@\", \"\");\n return queryOptions({\n queryKey: QueryKeys.newsletter.posts(type, target, name, limit),\n enabled: !!name && !!code && !!target,\n queryFn: async () => {\n if (!code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return getNewsletterPostsRequest(type, target, code, limit);\n },\n staleTime: 60_000,\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { subscribeDigestRequest } from \"../api\";\nimport type { DigestSubscribeInput } from \"../types\";\n\n/**\n * Subscribe to a digest (also re-used to change cadence: same list + address\n * with a new cadence updates the row). Works signed-in (code) and anonymous\n * (input.captchaToken); the signed-in path refreshes the account's\n * subscriptions list on success.\n */\nexport function useSubscribeDigest(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"subscribe\", name],\n mutationFn: (input: DigestSubscribeInput) =>\n subscribeDigestRequest(input, code),\n onSuccess() {\n if (name) {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.subscriptions(name),\n });\n }\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { leaveDigestRequest } from \"../api\";\nimport type { DigestSubscription } from \"../types\";\n\n/** Leave one digest by subscription id; drops the row from the cached list. */\nexport function useLeaveDigest(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"leave\", name],\n mutationFn: async (id: string) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return leaveDigestRequest(id, code);\n },\n onSuccess(_result, id) {\n queryClient.setQueryData(\n QueryKeys.newsletter.subscriptions(name),\n (prev) => (prev ?? []).filter((s) => s.id !== id),\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport { unsubscribeAllDigestsRequest } from \"../api\";\nimport type { DigestSubscription } from \"../types\";\n\n/**\n * Stop all Ecency mail to ONE address. Only that address's rows leave the\n * cached list: an account can hold subscriptions under more than one address,\n * and those stay visible.\n */\nexport function useUnsubscribeAllDigests(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"unsubscribe-all\", name],\n mutationFn: async (email: string) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return unsubscribeAllDigestsRequest(email, code);\n },\n onSuccess(_result, email) {\n queryClient.setQueryData(\n QueryKeys.newsletter.subscriptions(name),\n (prev) =>\n (prev ?? []).filter(\n (s) => s.email.toLowerCase() !== email.toLowerCase(),\n ),\n );\n },\n });\n}\n","import { QueryKeys } from \"@/modules/core\";\nimport { useMutation, useQueryClient } from \"@tanstack/react-query\";\nimport {\n previewNewsletterSendRequest,\n sendNewsletterIssueRequest,\n} from \"../api\";\nimport type { NewsletterSendRequest } from \"../types\";\n\n/**\n * Preview the would-be issue. No cache side effects: a preview changes\n * nothing server-side.\n */\nexport function usePreviewNewsletterIssue(\n username: string | undefined,\n code: string | undefined,\n) {\n const name = username?.replace(\"@\", \"\");\n return useMutation({\n mutationKey: [\"newsletter\", \"send-preview\", name],\n mutationFn: async (request: NewsletterSendRequest) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return previewNewsletterSendRequest(request, code);\n },\n });\n}\n\n/**\n * Send a post or composed digest to a list. Errors are\n * NewsletterSendRefusedError with the relay's routing `code`\n * (already_sent + taken periods, suspended, post_refused, ...). On success the\n * list's issues + sender standing refresh.\n */\nexport function useSendNewsletterIssue(\n username: string | undefined,\n code: string | undefined,\n) {\n const queryClient = useQueryClient();\n const name = username?.replace(\"@\", \"\");\n\n return useMutation({\n mutationKey: [\"newsletter\", \"send\", name],\n mutationFn: async (request: NewsletterSendRequest) => {\n if (!name || !code) {\n throw new Error(\"[SDK][Newsletter] – missing auth\");\n }\n return sendNewsletterIssueRequest(request, code);\n },\n onSuccess(_result, request) {\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.issues(request.type, request.target, name),\n });\n queryClient.invalidateQueries({\n queryKey: QueryKeys.newsletter.sender(request.type, request.target, name),\n });\n },\n });\n}\n","/**\n * Curation desk types.\n *\n * Shapes mirror the desk routes behind `/private-api/curation-desk/*`. Public\n * rows carry no curator identity; the roster feed and the tick add an `overlay`\n * with marks, signals and flags. The window state (full, half, eighth, locked,\n * paid) is never in a payload: clients derive it from `created` and `payout_at`.\n */\n\nexport const CURATION_REASONS = [\"quality\", \"underrated\", \"newcomer\", \"other\"] as const;\nexport type CurationReason = (typeof CURATION_REASONS)[number];\n\nexport const CURATION_SORTS = [\"queue\", \"newest\", \"unique\", \"random\"] as const;\nexport type CurationSort = (typeof CURATION_SORTS)[number];\n\nexport const CURATION_VIEWS = [\n \"queue\",\n \"latest\",\n \"new-authors\",\n \"recommended\",\n \"curated\",\n \"all\",\n \"excluded\",\n] as const;\nexport type CurationView = (typeof CURATION_VIEWS)[number];\n\nexport const CURATION_APPS = [\"all\", \"ecency\", \"peakd\", \"other\"] as const;\nexport type CurationApp = (typeof CURATION_APPS)[number];\n\nexport const CURATION_WINDOWS = [\"12h\", \"full\", \"half\", \"eighth\", \"locked\", \"all\"] as const;\nexport type CurationWindow = (typeof CURATION_WINDOWS)[number];\n\nexport const CURATION_MARK_STATES = [\"reviewed\", \"snoozed\", \"flagged\", \"noted\"] as const;\nexport type CurationMarkState = (typeof CURATION_MARK_STATES)[number];\n\nexport const CURATION_FLAG_REASONS = [\n \"plagiarism\",\n \"ai_slop\",\n \"recycled\",\n \"image_only\",\n \"tag_abuse\",\n \"farming\",\n \"nsfw_untagged\",\n \"other\",\n] as const;\nexport type CurationFlagReason = (typeof CURATION_FLAG_REASONS)[number];\n\nexport type CurationRole = \"admin\" | \"mod\" | \"curator\" | \"trial\";\n\n/** Filters shared by the public feed (query params) and the roster feed (body). */\nexport interface CurationFeedParams {\n sort?: CurationSort;\n view?: CurationView;\n app?: CurationApp;\n community?: string;\n window?: CurationWindow;\n rep_min?: number;\n rep_max?: number;\n min_words?: number;\n max_words?: number;\n has_images?: boolean;\n new_authors?: boolean;\n recommended?: boolean;\n hide_curated?: boolean;\n limit?: number;\n}\n\n/** Roster-only additions: the random seed and the team-mark predicates. */\nexport interface CurationRosterFeedParams extends CurationFeedParams {\n seed?: string;\n flagged?: boolean;\n hide_reviewed?: boolean;\n hide_snoozed?: boolean;\n}\n\nexport interface CurationTrailedBy {\n curator: string;\n at: string;\n weight: number;\n source: \"erobot_push\" | \"history\" | \"inferred\" | string;\n confirmed: boolean;\n}\n\nexport interface CurationVotedBy {\n voter: string;\n weight: number;\n at: string;\n}\n\n/** Public row (route 1, 4 rows are narrower, route 5 adds recommenders). */\nexport interface CurationRow {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n created: string;\n app: string | null;\n is_ecency: boolean;\n community: string | null;\n community_title: string | null;\n tags: string[];\n rep: number | null;\n is_new_author: boolean;\n author_post_count: number | null;\n author_created?: string | null;\n word_count: number | null;\n image_count: number;\n first_image: string | null;\n summary: string | null;\n edited_at: string | null;\n edit_count: number;\n votes: number | null;\n pending_payout: number | null;\n pending_payout_est?: number | null;\n payout_at: string | null;\n is_declined?: boolean | null;\n is_gray?: boolean | null;\n rshares_total?: number | null;\n rshares_after_24h?: number | null;\n /** 0 open, 1 curated, 2 dropped */\n state: number;\n trailed_by: CurationTrailedBy | null;\n voted_by: CurationVotedBy[];\n author_trailed_at: string | null;\n /** Set on the hivewatchers unvote path. */\n unvoted_at?: string | null;\n /** Materialization time; with `created` it tells a late row. */\n inserted_at?: string | null;\n recommend_count: number;\n unique_recommenders: number;\n reco_no_meta_count: number;\n /** Opaque keyset cursor for the page that follows this row. */\n _cursor?: string;\n}\n\nexport interface CurationMark {\n curator: string;\n state: CurationMarkState;\n reason?: string | null;\n note?: string | null;\n /**\n * Whether a note body exists. Tick deltas carry this instead of the body,\n * so a delta must never overwrite a note the client already holds.\n */\n has_note?: boolean;\n snooze_until?: string | null;\n updated_at: string;\n}\n\nexport interface CurationSignals {\n formulaic?: number | null;\n images?: { on_hive?: number; total?: number } | null;\n engagement?: { replies_per_day?: number | null } | null;\n style?: { alert?: boolean; sigma?: number; feature?: string; sample?: number } | null;\n /**\n * The detector's read of the post's FIRST image, which is the one rendered as the\n * thumbnail. `over` is the only field to act on; `score` and `classes` are for tuning.\n * A null score means unknown (no image, or the check could not run), never \"clean\".\n */\n nsfw?: {\n score?: number | null;\n class?: string | null;\n over?: boolean;\n classes?: string[];\n note?: string;\n } | null;\n [key: string]: unknown;\n}\n\nexport interface CurationFlags {\n low_rep?: boolean;\n /** The author's reputation has gone negative, which is not the same line as low_rep. */\n negative_rep?: boolean;\n ignorelist?: boolean;\n abuser?: boolean;\n spaminator?: boolean;\n blocked_tag?: boolean;\n /** The post carries Hive's own `nsfw` tag. */\n nsfw?: boolean;\n patch_body?: boolean;\n deleted?: boolean;\n hivewatchers_downvote?: boolean;\n [key: string]: unknown;\n}\n\n/** Roster-only overlay shipped inline with the roster feed and in tick deltas. */\nexport interface CurationOverlay {\n signals: CurationSignals | null;\n flags: CurationFlags;\n excluded_reason: string | null;\n team_mark: CurationMarkState | null;\n team_mark_by: string | null;\n team_snooze_until?: string | null;\n resurfaced_at: string | null;\n /** Set when the roster dismissed the recommendations of this post. */\n reco_dismissed_at?: string | null;\n marks: CurationMark[];\n notes_count: number;\n}\n\nexport type CurationRosterRow = CurationRow & { overlay: CurationOverlay | null };\n\nexport interface CurationTeamCursor {\n post_id: number | null;\n created: string | null;\n set_by?: string;\n set_at?: string;\n}\n\nexport interface CurationActiveCurator {\n username: string;\n last_action_at: string;\n}\n\n/**\n * The narrowing facets a curator was working when they made a mark. Empty means\n * the whole queue. The keys are the roster feed's own params, so a value here has\n * already been through the allow lists the query runs on.\n */\nexport type CurationLane = Partial<{\n /** Present only when it is not the queue order, under which alone a position is a watermark. */\n sort: CurationSort;\n view: string;\n app: CurationApp;\n community: string;\n window: CurationWindow;\n rep_min: number;\n rep_max: number;\n min_words: number;\n max_words: number;\n has_images: boolean;\n new_authors: boolean;\n recommended: boolean;\n flagged: boolean;\n hide_curated: boolean;\n hide_reviewed: boolean;\n hide_snoozed: boolean;\n}>;\n\n/**\n * How far one curator has got, derived from their marks so nobody types it. This\n * is the hand-off curators used to post in Discord.\n *\n * `reviewed_to` is a progress claim rather than a contiguous reviewed prefix: a\n * mark is any of the four states and marks are not made in queue order. It is\n * read, never used to aim anything. `lane` travels with the mark that set the\n * position, so the two always describe the same moment. Roster-only: the public\n * payloads carry no per-curator activity at all.\n */\nexport interface CurationHandoffEntry {\n username: string;\n reviewed_to: string | null;\n reviewed_to_post_id: number | null;\n last_mark_at: string;\n /** Absent for a trial viewer looking at somebody else. */\n marks_24h?: number;\n /**\n * Null is UNKNOWN: a mark from before the desk sent lanes, or one that said\n * nothing. It is never the whole queue, which is `{}`. Absent until the\n * backend that records it is deployed.\n */\n lane?: CurationLane | null;\n}\n\nexport interface CurationFeedPage {\n items: CurationRow[];\n next_cursor: string | null;\n team_cursor: CurationTeamCursor;\n head_lag_seconds: number;\n feed_version: string | null;\n generated_at: string;\n}\n\nexport interface CurationRosterFeedPage {\n items: CurationRosterRow[];\n next_cursor: string | null;\n team_cursor: CurationTeamCursor;\n active_curators: CurationActiveCurator[];\n /** Roster only, and absent until the backend that derives it is deployed. */\n handoff?: CurationHandoffEntry[];\n facets: { communities: Array<{ community: string; title?: string | null; count?: number }> };\n total_estimate: number | null;\n head_lag_seconds: number;\n generated_at: string;\n}\n\nexport interface CurationManaSpent {\n equiv: number;\n trail: number;\n other: number;\n crosscheck: number | null;\n since: string;\n}\n\nexport interface CurationVp {\n account: string;\n percent: number;\n live_percent: number;\n implied_weight: number;\n at: string;\n sustainable_votes_per_day: number;\n regen_votes_per_hour: number;\n reward_fund?: {\n recent_claims: string | number;\n reward_balance: number;\n median_price: number;\n at: string;\n } | null;\n}\n\nexport interface CurationStatus {\n team_cursor: CurationTeamCursor;\n behind_seconds: number | null;\n counts: {\n unreviewed: number;\n curated_24h: number;\n trail_votes_today: { posts: number; comments: number };\n recommended_posts: number;\n };\n mana_spent_today: CurationManaSpent | null;\n vp: CurationVp | null;\n head_lag_seconds: number;\n reco_lag_blocks: number | null;\n feed_version: string | null;\n latest_post_id: number | null;\n worker_tick_age_seconds: number | null;\n}\n\n/**\n * The per-curator conditions erobot applies before trailing a vote. The three\n * weights are Hive vote weights (100 = 1%); `trail` overrides the per-role\n * default, and is what `config.followAccounts` used to be.\n */\nexport interface CurationRosterRules {\n min_weight?: number;\n max_weight?: number;\n waves_only_below?: number;\n trail?: boolean;\n}\n\nexport interface CurationRosterEntry {\n username: string;\n role: CurationRole;\n active: boolean;\n rules?: CurationRosterRules | null;\n /** Resolved by the backend, so no client re-implements the per-role default. */\n trail?: boolean;\n}\n\n/**\n * The admin view of a row. These fields are private, so they arrive from the\n * roster-list POST and never from the edge-cached roster GET.\n */\nexport interface CurationRosterAdminEntry extends CurationRosterEntry {\n added_by: string | null;\n added_at: string | null;\n removed_at: string | null;\n note: string | null;\n}\n\nexport interface CurationRoster {\n curators: CurationRosterEntry[];\n updated_at: string;\n}\n\nexport interface CurationRosterAdminList {\n curators: CurationRosterAdminEntry[];\n}\n\nexport interface CurationRosterSetInput {\n curator: string;\n role: CurationRole;\n rules?: CurationRosterRules;\n note?: string;\n}\n\nexport interface CurationRecommender {\n username: string;\n rep: number | null;\n reason: CurationReason | null;\n at: string;\n has_meta: boolean;\n is_self?: boolean;\n /**\n * Ordering weight of this recommender, 0.5 to 1.5 with 1.0 neutral. Above\n * 1.0 means curators curated their picks more often than they dismissed\n * them over the window. It changes ordering only, never what is shown.\n */\n precision?: number;\n /** At least 10 recommendations and a precision of 1.2 or more. */\n trusted?: boolean;\n}\n\n/**\n * Route 14: one recommender's 90-day scorecard. An unknown username answers\n * zeros with a neutral precision and `trusted: false`, never a 404, so a name\n * that never recommended anything is not an error state.\n */\nexport interface CurationRecommenderStats {\n username: string;\n window_days: number;\n recommended: number;\n curated: number;\n dismissed: number;\n withdrawn: number;\n precision: number;\n trusted: boolean;\n computed_at: string | null;\n}\n\nexport type CurationReasonsHistogram = Partial>;\n\nexport interface CurationRecommendationItem {\n author: string;\n permlink: string;\n title: string;\n created: string;\n /**\n * The post's cover, the same column the feed row carries. Optional because a\n * desk older than the field answers without it; absent and null both mean no\n * cover, and the caller proxifies before rendering.\n */\n first_image?: string | null;\n recommend_count: number;\n unique_recommenders: number;\n no_meta_count: number;\n reasons: CurationReasonsHistogram;\n recommenders: CurationRecommender[];\n _cursor?: string;\n}\n\nexport interface CurationRecommendationsPage {\n items: CurationRecommendationItem[];\n next_cursor: string | null;\n}\n\nexport type CurationRecommendationsSort = \"unique\" | \"newest\";\n\nexport interface CurationRecommendationsParams {\n sort?: CurationRecommendationsSort;\n limit?: number;\n}\n\n/** Route 5: the public row plus the recommender list, self row included. */\nexport interface CurationPost extends CurationRow {\n recommenders: CurationRecommender[];\n no_meta_count: number;\n reasons: CurationReasonsHistogram;\n}\n\nexport interface CurationTickRequest {\n /** `generated_at` echoed verbatim from the previous response. */\n since: string | null;\n /** Loaded rows that have no overlay yet (at most 100). */\n need: number[];\n /** Visible rows (at most 100). */\n visible: number[];\n}\n\n/**\n * Tick answer. `truncated` says the delta window was too wide to answer in\n * full; it only means something when the request carried a `since`, since a\n * first tick with `since: null` asks for a snapshot, not a window.\n */\nexport interface CurationTickResponse {\n overlay: Array<{ post_id: number } & CurationOverlay>;\n deltas: {\n marks: Array<{ post_id: number } & CurationMark>;\n flags: Array<{ post_id: number; flags: CurationFlags; excluded_reason: string | null }>;\n signals: Array<{ post_id: number; signals: CurationSignals | null }>;\n /**\n * Rows whose curation state moved since the client's own `generated_at`.\n * The overlay carries no state, so without these a page the client keeps\n * holding would render a curated post as open and votable. Optional: a\n * backend that predates it simply sends nothing.\n */\n rows?: Array<\n Pick\n >;\n };\n team_cursor: CurationTeamCursor;\n active_curators: CurationActiveCurator[];\n /** Roster only, and absent until the backend that derives it is deployed. */\n handoff?: CurationHandoffEntry[];\n trail_alerts: unknown[];\n generated_at: string;\n truncated: boolean;\n}\n\nexport interface CurationMarkInput {\n author: string;\n permlink: string;\n state: CurationMarkState;\n reason?: string;\n note?: string;\n snooze_until?: string;\n /**\n * The feed params the desk was showing when it made this mark. The hand-off\n * reads a position and its lane off the same mark, so a desk with two tabs on\n * different filters stamps each mark with its own. Paging keys are dropped by\n * the gateway; absent means the lane is unknown, never the whole queue.\n */\n lane?: CurationRosterFeedParams;\n}\n\nexport interface CurationMarkResponse {\n mark: CurationMark | null;\n row: CurationRosterRow;\n}\n\nexport interface CurationMarkClearResponse {\n ok: boolean;\n row: CurationRosterRow;\n}\n\nexport interface CurationMyMarksParams {\n state?: CurationMarkState;\n cursor?: string;\n limit?: number;\n}\n\nexport interface CurationMyMark extends CurationMark {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n created: string;\n row?: CurationRosterRow | null;\n}\n\nexport interface CurationMyMarksResponse {\n items: CurationMyMark[];\n next_cursor: string | null;\n}\n\nexport type CurationCursorAction = \"advance\" | \"rewind\";\n\nexport interface CurationCursorInput {\n post_id: number;\n action: CurationCursorAction;\n reason?: string;\n}\n\nexport interface CurationCursorResponse {\n team_cursor: CurationTeamCursor;\n moved: boolean;\n swept_count: number | null;\n}\n\nexport type CurationUaClass = \"web\" | \"mobile\";\n\nexport interface CurationRecommendMetaInput {\n author: string;\n permlink: string;\n /** 40 hex chars when the broadcast path returned one; omitted otherwise. */\n trx_id?: string | null;\n ua_class: CurationUaClass;\n}\n\nexport type CurationDismissAction = \"dismiss\" | \"restore\";\n\nexport interface CurationDismissRecoInput {\n author: string;\n permlink: string;\n action: CurationDismissAction;\n}\n\nexport interface CurationDismissRecoResponse {\n row: CurationRosterRow;\n}\n","import type { CurationFlags } from \"./types\";\n\n/**\n * The desk shows the moderation flags the backend materialized from the bot's\n * config and from external abuse lists. The web reads them through this helper\n * so the list's name stays a wire detail of the payload: it is a warning the\n * desk displays, never a verdict and never an input to indexability.\n */\nexport function isOnAbuseList(flags: CurationFlags | null | undefined): boolean {\n return !!flags?.spaminator || !!flags?.abuser;\n}\n\n/**\n * Any flag that keeps a row out of the public queue. `low_rep` is deliberately\n * absent: it is the one excluded reason every view still lists with a chip,\n * because 25 is the reputation a brand new account has. `negative_rep` is the\n * separate line for a reputation that has gone negative, and that one does\n * remove the row.\n */\nexport function isExcludedByFlags(flags: CurationFlags | null | undefined): boolean {\n return (\n !!flags?.ignorelist ||\n !!flags?.abuser ||\n !!flags?.blocked_tag ||\n !!flags?.nsfw ||\n !!flags?.patch_body ||\n !!flags?.negative_rep ||\n !!flags?.deleted\n );\n}\n","import type { InfiniteData } from \"@tanstack/react-query\";\nimport { CONFIG } from \"@/modules/core\";\n\n/**\n * Takedown masking for desk payloads.\n *\n * The desk serves rows the bridge never touched, so they never pass through\n * `filterDmcaEntry`. The test is the same one that file runs (`CONFIG`\n * patterns plus regexes against `@author/permlink`); what a row can leak is\n * its title, its summary and its thumbnail, so those are what the mask blanks.\n */\n\ninterface MaskableCurationRow {\n author: string;\n permlink: string;\n title: string;\n summary?: string | null;\n first_image?: string | null;\n}\n\nexport function isDmcaCurationPath(author: string, permlink: string): boolean {\n const path = `@${author}/${permlink}`;\n return (\n CONFIG.dmcaPatterns.includes(path) || CONFIG.dmcaPatternRegexes.some((regex) => regex.test(path))\n );\n}\n\n/** Returns the SAME object when nothing matches, so memoized rows keep identity. */\nexport function maskDmcaCurationRow(row: T): T {\n if (!row || !isDmcaCurationPath(row.author, row.permlink)) {\n return row;\n }\n const masked = { ...row, title: \"\" } as MaskableCurationRow & Record;\n if (\"summary\" in masked) masked.summary = null;\n if (\"first_image\" in masked) masked.first_image = null;\n return masked as T;\n}\n\n/** Masks every page item; untouched pages keep their identity. */\nexport function maskDmcaCurationPages(\n data: InfiniteData\n): InfiniteData {\n let changed = false;\n const pages = data.pages.map((page) => {\n let pageChanged = false;\n const items = page.items.map((item) => {\n const masked = maskDmcaCurationRow(item);\n if (masked !== item) pageChanged = true;\n return masked;\n });\n if (!pageChanged) return page;\n changed = true;\n return { ...page, items };\n });\n return changed ? { ...data, pages } : data;\n}\n","import { CONFIG, getBoundFetch } from \"@/modules/core\";\nimport type {\n CurationCursorInput,\n CurationCursorResponse,\n CurationDismissRecoInput,\n CurationDismissRecoResponse,\n CurationFeedPage,\n CurationFeedParams,\n CurationMarkClearResponse,\n CurationMarkInput,\n CurationMarkResponse,\n CurationMyMarksParams,\n CurationMyMarksResponse,\n CurationPost,\n CurationRecommendMetaInput,\n CurationRecommendationsPage,\n CurationRecommendationsParams,\n CurationRecommenderStats,\n CurationRoster,\n CurationRosterAdminEntry,\n CurationRosterAdminList,\n CurationRosterFeedPage,\n CurationRosterFeedParams,\n CurationRosterSetInput,\n CurationStatus,\n CurationTickRequest,\n CurationTickResponse,\n} from \"./types\";\n\n/**\n * Curation desk transport. Public GETs carry no identity; authed POSTs take the\n * HiveSigner access `code` as an explicit argument and send it in the body.\n * Token freshness is the caller's job (web: ensureValidToken; mobile: its token\n * wrapper), so a builder never captures a code that can expire.\n */\n\nconst ROUTE = \"/private-api/curation-desk\";\n\nexport class CurationApiError extends Error {\n readonly status: number;\n readonly data: unknown;\n\n constructor(message: string, status: number, data?: unknown) {\n super(message);\n this.name = \"CurationApiError\";\n this.status = status;\n this.data = data;\n }\n}\n\n/**\n * A light shape check per response family, not a schema validator: it answers\n * \"is this the kind of body the consumers dereference\", so a 200 that carries\n * something else (an error envelope, another route's body) fails here instead\n * of inside a query builder reading `.items.length`.\n */\ntype ShapeCheck = (data: unknown) => boolean;\n\nfunction isRecord(data: unknown): data is Record {\n return typeof data === \"object\" && data !== null && !Array.isArray(data);\n}\n\n/** Every paged family: the list is what the consumers page over. */\nconst hasItems: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.items);\nconst hasCurators: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.curators);\n/** Route 5: the viewer finds their own recommendation by name in this list. */\nconst hasRecommenders: ShapeCheck = (data) => isRecord(data) && Array.isArray(data.recommenders);\n/** `vp` is nullable, so the field has to be present rather than truthy. */\nconst isStatus: ShapeCheck = (data) => isRecord(data) && \"vp\" in data;\n/**\n * A scorecard is counted, never absent: an unknown recommender answers zeros\n * rather than a 404, so a body without a numeric `recommended` is another\n * route's answer and not an empty scorecard.\n */\n/** Every number the scorecard prints, the window it prints them for included. */\nconst SCORECARD_COUNTS = [\"window_days\", \"recommended\", \"curated\", \"dismissed\", \"withdrawn\", \"precision\"] as const;\nconst isRecommenderStats: ShapeCheck = (data) =>\n isRecord(data) &&\n SCORECARD_COUNTS.every((key) => typeof data[key] === \"number\") &&\n typeof data.trusted === \"boolean\";\n\nasync function parse(response: Response, what: string, check?: ShapeCheck): Promise {\n if (!response.ok) {\n let data: unknown = undefined;\n try {\n data = await response.json();\n } catch {\n data = undefined;\n }\n throw new CurationApiError(`Failed to ${what}: ${response.status}`, response.status, data);\n }\n // The gateway answers an unknown GET with a 200 HTML page. That is never an\n // empty queue, so a non-JSON body is an error too. A body that only claims\n // to be JSON gets the same treatment: parsing it must not reach the caller\n // as a SyntaxError with no status on it.\n const contentType = response.headers?.get?.(\"content-type\") ?? \"\";\n if (contentType && !contentType.includes(\"json\")) {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n let data: unknown;\n try {\n data = await response.json();\n } catch {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n if (check && !check(data)) {\n throw new CurationApiError(`Unexpected response for ${what}`, response.status);\n }\n return data as T;\n}\n\nconst COMMUNITY_RE = /^hive-\\d{5,6}$/;\nconst SEED_RE = /^[a-z0-9]{8,16}$/;\n\n/**\n * Booleans the desk already defaults to true, so only an explicit false says\n * anything. Sending the \"1\" would split memo and cache keys against a gateway\n * that drops it.\n */\nconst DEFAULT_TRUE = new Set([\"hide_curated\", \"hide_reviewed\", \"hide_snoozed\"]);\n\n/** Fixed emission order: keeps memo and shared-cache keys stable across clients. */\nconst PARAM_ORDER = [\n \"sort\",\n \"seed\",\n \"view\",\n \"app\",\n \"community\",\n \"window\",\n \"rep_min\",\n \"rep_max\",\n \"min_words\",\n \"max_words\",\n \"has_images\",\n \"new_authors\",\n \"recommended\",\n \"flagged\",\n \"hide_curated\",\n \"hide_reviewed\",\n \"hide_snoozed\",\n \"limit\",\n] as const;\n\nexport type NormalizedCurationParams = Record;\n\n/**\n * Drops defaults and unknown values, emits fixed-order string params. Used for\n * the query string, the roster body and the React Query key, so all three agree.\n */\nexport function normalizeCurationParams(\n params: CurationRosterFeedParams | CurationFeedParams = {}\n): NormalizedCurationParams {\n const source = params as Record;\n const out: NormalizedCurationParams = {};\n for (const name of PARAM_ORDER) {\n const value = source[name];\n if (value === undefined || value === null || value === \"\") continue;\n if (typeof value === \"boolean\") {\n if (DEFAULT_TRUE.has(name)) {\n if (!value) out[name] = \"0\";\n } else if (value) {\n out[name] = \"1\";\n }\n continue;\n }\n if (typeof value === \"number\") {\n if (!Number.isFinite(value)) continue;\n out[name] = String(Math.trunc(value));\n continue;\n }\n const text = String(value);\n if ((name === \"app\" || name === \"window\") && text === \"all\") continue;\n if (name === \"community\" && !COMMUNITY_RE.test(text)) continue;\n if (name === \"seed\" && !SEED_RE.test(text)) continue;\n out[name] = text;\n }\n // The seed only means something for the random order.\n if (out.sort !== \"random\") delete out.seed;\n return out;\n}\n\nfunction toQuery(normalized: NormalizedCurationParams, cursor?: string): string {\n const search = new URLSearchParams();\n for (const name of PARAM_ORDER) {\n if (normalized[name] !== undefined) search.set(name, normalized[name]);\n }\n if (cursor) search.set(\"cursor\", cursor);\n const text = search.toString();\n return text ? `?${text}` : \"\";\n}\n\nfunction url(path: string): string {\n return `${CONFIG.privateApiHost}${ROUTE}${path}`;\n}\n\n/** Hosts a credential may reach without TLS: a local gateway has no certificate. */\nconst LOOPBACK_HOSTS = new Set([\"localhost\", \"127.0.0.1\", \"::1\", \"[::1]\"]);\n\n/**\n * The authed routes put the HiveSigner code in the body, so the transport is\n * the only thing keeping a replayable credential private. A relative host\n * (empty for same-origin, `//gateway`, `/api`) takes the page's own transport,\n * so it is resolved against the page before the scheme is read.\n */\nfunction assertCredentialTransport(what: string) {\n const host = CONFIG.privateApiHost || \"\";\n const page = typeof window !== \"undefined\" ? window.location?.href : undefined;\n let parsed: URL;\n try {\n parsed = page ? new URL(host, page) : new URL(host);\n } catch {\n // Relative with no page to resolve against: outside a browser nothing can\n // be fetched from a relative URL either.\n return;\n }\n if (parsed.protocol === \"https:\") return;\n if (parsed.protocol === \"http:\" && LOOPBACK_HOSTS.has(parsed.hostname)) return;\n throw new CurationApiError(`Refusing to ${what} over an insecure connection`, 0);\n}\n\nasync function getJson(\n path: string,\n what: string,\n signal?: AbortSignal,\n check?: ShapeCheck\n): Promise {\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url(path), { method: \"GET\", signal });\n return parse(response, what, check);\n}\n\nasync function postJson(\n path: string,\n code: string | undefined,\n body: Record,\n what: string,\n signal?: AbortSignal,\n check?: ShapeCheck\n): Promise {\n if (!code) {\n throw new Error(\"[SDK][Curation] missing auth\");\n }\n assertCredentialTransport(what);\n const fetchApi = getBoundFetch();\n const response = await fetchApi(url(path), {\n method: \"POST\",\n headers: { \"Content-Type\": \"application/json\" },\n body: JSON.stringify({ ...body, code }),\n // A 307 or 308 would resend this body, code included, to wherever the\n // redirect points.\n redirect: \"error\",\n signal,\n });\n return parse(response, what, check);\n}\n\n// ---------------------------------------------------------------------------\n// Public reads (used by the query builders)\n// ---------------------------------------------------------------------------\n\nexport function fetchCurationFeedPage(\n params: CurationFeedParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/feed${toQuery(normalizeCurationParams(params), cursor)}`,\n \"fetch curation feed\",\n signal,\n hasItems\n );\n}\n\nexport function fetchCurationStatus(signal?: AbortSignal): Promise {\n return getJson(\"/status\", \"fetch curation status\", signal, isStatus);\n}\n\nexport function fetchCurationRoster(signal?: AbortSignal): Promise {\n return getJson(\"/roster\", \"fetch curation roster\", signal, hasCurators);\n}\n\nexport function fetchCurationRecommendationsPage(\n params: CurationRecommendationsParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n const search = new URLSearchParams();\n if (params.sort) search.set(\"sort\", params.sort);\n if (params.limit) search.set(\"limit\", String(params.limit));\n if (cursor) search.set(\"cursor\", cursor);\n const text = search.toString();\n return getJson(\n `/recommendations${text ? `?${text}` : \"\"}`,\n \"fetch curation recommendations\",\n signal,\n hasItems\n );\n}\n\nexport function fetchCurationRecommenderStats(\n username: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/recommender/${encodeURIComponent(username)}`,\n \"fetch recommender stats\",\n signal,\n isRecommenderStats\n );\n}\n\nexport function fetchCurationPost(\n author: string,\n permlink: string,\n signal?: AbortSignal\n): Promise {\n return getJson(\n `/post/${encodeURIComponent(author)}/${encodeURIComponent(permlink)}`,\n \"fetch curation post\",\n signal,\n hasRecommenders\n );\n}\n\n// ---------------------------------------------------------------------------\n// Authed writes and reads (code in the body)\n// ---------------------------------------------------------------------------\n\nexport function curationRosterFeedRequest(\n code: string | undefined,\n params: CurationRosterFeedParams,\n cursor?: string,\n signal?: AbortSignal\n): Promise {\n const body: Record = { ...normalizeCurationParams(params) };\n if (cursor) body.cursor = cursor;\n return postJson(\n \"/roster-feed\",\n code,\n body,\n \"fetch roster feed\",\n signal,\n hasItems\n );\n}\n\nexport function curationTickRequest(\n code: string | undefined,\n body: CurationTickRequest,\n signal?: AbortSignal\n): Promise {\n return postJson(\n \"/tick\",\n code,\n {\n since: body.since,\n need: body.need.slice(0, 100),\n visible: body.visible.slice(0, 100),\n },\n \"tick\",\n signal\n );\n}\n\n/**\n * The roster admin routes. All three are admin-only upstream, and all three are\n * POSTs: the private view carries notes and retired rows, which must never enter\n * the edge-cached roster GET.\n */\nexport function curationRosterListRequest(\n code: string | undefined,\n signal?: AbortSignal\n): Promise {\n // Same shape check as the public roster: a 200 carrying an error envelope, or any\n // body without `curators`, must reach the query's error path. Without it the panel\n // renders `data?.curators ?? []` and an outage looks like an empty roster.\n return postJson(\"/roster-list\", code, {}, \"list roster\", signal, hasCurators);\n}\n\nexport function curationRosterSetRequest(\n code: string | undefined,\n input: CurationRosterSetInput\n): Promise<{ curator: CurationRosterAdminEntry }> {\n const { curator, role, rules, note } = input;\n if (!curator || !role) {\n throw new Error(\"[SDK][Curation] roster set needs a curator and a role\");\n }\n const body: Record = { curator, role };\n // Sent whole or not at all: the backend replaces the stored rules with what\n // arrives, so a partial object would silently drop the rules left out.\n if (rules) body.rules = rules;\n if (note !== undefined) body.note = note;\n return postJson<{ curator: CurationRosterAdminEntry }>(\"/roster-set\", code, body, \"set curator\");\n}\n\nexport function curationRosterRetireRequest(\n code: string | undefined,\n curator: string\n): Promise<{ ok: boolean; curator: string }> {\n if (!curator) {\n throw new Error(\"[SDK][Curation] roster retire needs a curator\");\n }\n return postJson<{ ok: boolean; curator: string }>(\n \"/roster-retire\",\n code,\n { curator },\n \"retire curator\"\n );\n}\n\nexport function curationMarkRequest(\n code: string | undefined,\n input: CurationMarkInput\n): Promise {\n const { author, permlink, state, reason, note, snooze_until, lane } = input;\n if (!author || !permlink || !state) {\n throw new Error(\"[SDK][Curation] mark needs author, permlink and state\");\n }\n const body: Record = { author, permlink, state };\n if (reason) body.reason = reason;\n if (note) body.note = note;\n if (snooze_until) body.snooze_until = snooze_until;\n if (lane) body.lane = lane;\n return postJson(\"/mark\", code, body, \"set mark\");\n}\n\nexport function curationMarkClearRequest(\n code: string | undefined,\n input: { author: string; permlink: string }\n): Promise {\n if (!input.author || !input.permlink) {\n throw new Error(\"[SDK][Curation] mark-clear needs author and permlink\");\n }\n return postJson(\n \"/mark-clear\",\n code,\n { author: input.author, permlink: input.permlink },\n \"clear mark\"\n );\n}\n\nexport function curationMyMarksRequest(\n code: string | undefined,\n params: CurationMyMarksParams = {},\n signal?: AbortSignal\n): Promise {\n const body: Record = {};\n if (params.state) body.state = params.state;\n if (params.cursor) body.cursor = params.cursor;\n if (params.limit) body.limit = params.limit;\n return postJson(\"/marks\", code, body, \"fetch my marks\", signal, hasItems);\n}\n\nexport function curationCursorRequest(\n code: string | undefined,\n input: CurationCursorInput\n): Promise {\n if (!Number.isFinite(input.post_id) || !input.action) {\n throw new Error(\"[SDK][Curation] cursor needs post_id and action\");\n }\n const body: Record = { post_id: input.post_id, action: input.action };\n if (input.reason) body.reason = input.reason;\n return postJson(\"/cursor\", code, body, \"move cursor\");\n}\n\nconst TRX_ID_RE = /^[0-9a-f]{40}$/;\n\nexport function curationRecommendMetaRequest(\n code: string | undefined,\n input: CurationRecommendMetaInput\n): Promise<{ ok: boolean }> {\n const { author, permlink, trx_id, ua_class } = input;\n if (!author || !permlink || !ua_class) {\n throw new Error(\"[SDK][Curation] recommend-meta needs author, permlink and ua_class\");\n }\n const body: Record = { author, permlink, ua_class };\n // Optional and informational: only a well-formed id travels, so a path that\n // returned an odd shape never turns the ping into a 400.\n if (typeof trx_id === \"string\" && TRX_ID_RE.test(trx_id)) body.trx_id = trx_id;\n return postJson<{ ok: boolean }>(\"/recommend-meta\", code, body, \"send recommendation meta\");\n}\n\nexport function curationDismissRecoRequest(\n code: string | undefined,\n input: CurationDismissRecoInput\n): Promise {\n if (!input.author || !input.permlink || !input.action) {\n throw new Error(\"[SDK][Curation] recommendation-dismiss needs author, permlink and action\");\n }\n return postJson(\n \"/recommendation-dismiss\",\n code,\n { author: input.author, permlink: input.permlink, action: input.action },\n \"dismiss recommendation\"\n );\n}\n","import { infiniteQueryOptions, type InfiniteData } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { maskDmcaCurationPages } from \"../dmca\";\nimport { fetchCurationFeedPage, normalizeCurationParams } from \"../requests\";\nimport type { CurationFeedPage, CurationFeedParams, CurationRow } from \"../types\";\n\nexport const CURATION_FEED_PAGE_SIZE = 25;\nexport const CURATION_FEED_STALE_MS = 10_000;\n\n/**\n * Drops rows whose key already appeared on an earlier page. Needed for the\n * live-keyset `unique` order (a row whose count rose between two pages repeats),\n * harmless for the immutable chronological orders. Untouched pages keep their\n * identity so memoized rows do not re-render.\n */\nexport function dedupePagesBy(\n data: InfiniteData,\n keyOf: (item: TPage[\"items\"][number]) => string | number\n): InfiniteData {\n const seen = new Set();\n let changed = false;\n const pages = data.pages.map((page) => {\n const items = page.items.filter((row) => {\n const key = keyOf(row);\n if (seen.has(key)) {\n changed = true;\n return false;\n }\n seen.add(key);\n return true;\n });\n return items.length === page.items.length ? page : { ...page, items };\n });\n return changed ? { ...data, pages } : data;\n}\n\n/** Feed pages dedupe by `post_id`. */\nexport function dedupeCurationPages }>(\n data: InfiniteData\n): InfiniteData {\n return dedupePagesBy(data, (row) => row.post_id);\n}\n\ninterface SelectableFeedRow {\n post_id: number;\n author: string;\n permlink: string;\n title: string;\n summary?: string | null;\n first_image?: string | null;\n}\n\n/**\n * The select every desk feed shares: dedupe by `post_id`, then blank the rows\n * on the takedown list. The roster feed (web owned, because its queryFn needs\n * a fresh token) uses it too, so both feeds hide the same rows.\n */\nexport function selectCurationFeedPages(\n data: InfiniteData\n): InfiniteData {\n return maskDmcaCurationPages(dedupeCurationPages(data));\n}\n\n/**\n * Public curation feed (route 1), keyset paginated.\n *\n * `_cursor` on the last row is opaque: it encodes the order's key (`created`\n * and `post_id` for the chronological sorts, the recommender pair for `unique`,\n * the hash pair for `random`). A short page ends the list. No `refetchInterval`\n * (React Query would refetch every loaded page) and no `initialData` (the web\n * client's `refetchOnMount: false` would then never fetch page 1): the web polls\n * `status` and refetches page 1 only when `feed_version` changes.\n */\nexport function getCurationFeedInfiniteQueryOptions(params: CurationFeedParams = {}) {\n const limit = params.limit ?? CURATION_FEED_PAGE_SIZE;\n const normalized = normalizeCurationParams({ ...params, limit });\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.curation.feed(normalized),\n initialPageParam: undefined as string | undefined,\n queryFn: ({ pageParam, signal }) => fetchCurationFeedPage({ ...params, limit }, pageParam, signal),\n getNextPageParam: (lastPage: CurationFeedPage): string | undefined => {\n if (!lastPage || lastPage.items.length < limit) {\n return undefined;\n }\n const last: CurationRow | undefined = lastPage.items[lastPage.items.length - 1];\n return last?._cursor ?? lastPage.next_cursor ?? undefined;\n },\n select: selectCurationFeedPages,\n staleTime: CURATION_FEED_STALE_MS,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationStatus } from \"../requests\";\n\n/**\n * Desk status (route 2): team cursor, counts, @ecency VP and the mana budget.\n * Public, memoized 15 s at the gateway. The web polls it every 60 s while\n * visible and uses `feed_version` to decide whether page 1 needs a refetch.\n */\nexport function getCurationStatusQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.curation.status(),\n queryFn: ({ signal }) => fetchCurationStatus(signal),\n staleTime: 15_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRoster } from \"../requests\";\n\n/** Curator roster (route 3): usernames and roles. Changes rarely; 10 minutes shared. */\nexport function getCurationRosterQueryOptions() {\n return queryOptions({\n queryKey: QueryKeys.curation.roster(),\n queryFn: ({ signal }) => fetchCurationRoster(signal),\n staleTime: 600_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { curationRosterListRequest } from \"../requests\";\n\n/**\n * The admin view of the roster: notes, who added whom, and the retired rows the\n * public roster hides. Admin only upstream, so it is keyed by the viewer and\n * never shares a cache entry with the public roster query.\n */\nexport function getCurationRosterAdminQueryOptions(\n username: string | undefined,\n code: string | undefined\n) {\n return queryOptions({\n queryKey: QueryKeys.curation.rosterAdmin(username),\n queryFn: ({ signal }) => curationRosterListRequest(code, signal),\n enabled: !!username && !!code,\n staleTime: 60_000,\n });\n}\n","import { infiniteQueryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRecommendationsPage } from \"../requests\";\nimport { maskDmcaCurationPages } from \"../dmca\";\nimport type { CurationRecommendationsPage, CurationRecommendationsParams } from \"../types\";\nimport { dedupePagesBy } from \"./get-curation-feed-infinite-query-options\";\n\nexport const CURATION_RECOMMENDATIONS_PAGE_SIZE = 25;\n\n/**\n * Open posts with at least one active recommendation (route 4), ordered by\n * unique recommenders (networks) or by first recommendation time.\n */\nexport function getCurationRecommendationsInfiniteQueryOptions(\n params: CurationRecommendationsParams = {}\n) {\n const sort = params.sort ?? \"unique\";\n const limit = params.limit ?? CURATION_RECOMMENDATIONS_PAGE_SIZE;\n const normalized: Record = { sort, limit: String(limit) };\n\n return infiniteQueryOptions({\n queryKey: QueryKeys.curation.recommendations(normalized),\n initialPageParam: undefined as string | undefined,\n queryFn: ({ pageParam, signal }) =>\n fetchCurationRecommendationsPage({ sort, limit }, pageParam, signal),\n getNextPageParam: (lastPage: CurationRecommendationsPage): string | undefined => {\n if (!lastPage || lastPage.items.length < limit) {\n return undefined;\n }\n const last = lastPage.items[lastPage.items.length - 1];\n return last?._cursor ?? lastPage.next_cursor ?? undefined;\n },\n // Route 4 items carry no post_id; the author/permlink pair is the identity.\n select: (data) =>\n maskDmcaCurationPages(dedupePagesBy(data, (item) => `${item.author}/${item.permlink}`)),\n staleTime: 10_000,\n });\n}\n\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationPost } from \"../requests\";\n\nconst ACCOUNT_RE = /^[a-z0-9.-]{3,16}$/;\nconst PERMLINK_RE = /^[a-z0-9-]{1,255}$/;\n\n/**\n * One post's public desk row plus its recommenders (route 5). A viewer finds\n * their own recommendation state by their username in `recommenders`, so no\n * authed read exists. Memoized 15 s at the gateway, which is why a recommender's\n * own row is optimistic and polls this with backoff.\n */\nexport function getCurationPostQueryOptions(author: string, permlink: string) {\n const valid = ACCOUNT_RE.test(author) && PERMLINK_RE.test(permlink);\n\n return queryOptions({\n queryKey: QueryKeys.curation.post(author, permlink),\n queryFn: ({ signal }) => {\n // Guarded twice: `enabled` only gates automatic fetching, a prefetch\n // still runs the queryFn.\n if (!valid) {\n throw new Error(\"[SDK][Curation] invalid author or permlink\");\n }\n return fetchCurationPost(author, permlink, signal);\n },\n enabled: valid,\n staleTime: 15_000,\n });\n}\n","import { queryOptions } from \"@tanstack/react-query\";\nimport { QueryKeys } from \"@/modules/core\";\nimport { fetchCurationRecommenderStats } from \"../requests\";\n\nconst ACCOUNT_RE = /^[a-z0-9.-]{3,16}$/;\n\n/**\n * One recommender's 90-day scorecard (route 14): how many recommendations they\n * made, how many were curated, dismissed or withdrawn, the resulting precision\n * and whether they count as trusted. Public and memoized 60 s at the gateway,\n * so a popover that opens twice costs one request.\n *\n * The route answers zeros with a neutral precision for a name it has never\n * seen, so a missing scorecard is data rather than an error.\n */\nexport function getCurationRecommenderQueryOptions(username: string) {\n const valid = ACCOUNT_RE.test(username ?? \"\");\n\n return queryOptions({\n queryKey: QueryKeys.curation.recommender(username),\n queryFn: ({ signal }) => {\n // Guarded twice: `enabled` gates automatic fetching only, a prefetch\n // still runs this.\n if (!valid) {\n throw new Error(\"[SDK][Curation] invalid recommender username\");\n }\n return fetchCurationRecommenderStats(username, signal);\n },\n enabled: valid,\n staleTime: 60_000,\n });\n}\n","import { useBroadcastMutation, invalidateAfterBroadcast } from \"@/modules/core/mutations\";\nimport type { BroadcastMode } from \"@/modules/core/mutations\";\nimport { QueryKeys } from \"@/modules/core\";\nimport type { AuthContextV2 } from \"@/modules/core/types\";\nimport {\n buildCurationRecommendOp,\n buildCurationUnrecommendOp,\n} from \"@/modules/operations/builders\";\nimport type { CurationReason } from \"../types\";\n\nexport interface CurationRecommendPayload {\n author: string;\n permlink: string;\n /** Defaults to \"quality\" on recommend; ignored on withdraw. */\n reason?: CurationReason;\n /** Broadcast the `unrecommend` op instead. */\n withdraw?: boolean;\n}\n\n/**\n * The broadcast result is not uniform across auth paths: the key path returns\n * `{tx_id, status}`, the HiveSigner token and Keychain extension paths return\n * `{id, block_num, ...}`; the redirect flows never resolve at all. This\n * gives the one shape the desk needs (a 40 hex char id) or null.\n */\nexport function normalizeBroadcastTrxId(result: unknown): string | null {\n if (!result || typeof result !== \"object\") return null;\n const r = result as { tx_id?: unknown; id?: unknown };\n const id = typeof r.tx_id === \"string\" ? r.tx_id : typeof r.id === \"string\" ? r.id : null;\n return id && /^[0-9a-f]{40}$/.test(id) ? id : null;\n}\n\n/**\n * Recommend a post to the curators (or withdraw a recommendation) with one\n * `custom_json` under posting authority. The desk indexes the op from the\n * chain; nothing is written to a desk route here. Platform wrappers send the\n * optional meta ping after success.\n */\nexport function useCurationRecommend(\n username: string | undefined,\n auth?: AuthContextV2,\n broadcastMode?: BroadcastMode\n) {\n return useBroadcastMutation(\n QueryKeys.curation.recommend(),\n username,\n (payload) => [\n payload.withdraw\n ? buildCurationUnrecommendOp(username!, payload.author, payload.permlink)\n : buildCurationRecommendOp(username!, payload.author, payload.permlink, payload.reason),\n ],\n async (_result, variables) => {\n await invalidateAfterBroadcast(auth?.adapter, broadcastMode, [\n QueryKeys.curation.post(variables.author, variables.permlink),\n [...QueryKeys.curation._recommendationsPrefix],\n ]);\n },\n auth,\n \"posting\",\n { broadcastMode }\n );\n}\n"]} \ No newline at end of file diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 30d608e4fa..cffad86459 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,7 +1,7 @@ { "name": "@ecency/sdk", "private": false, - "version": "2.4.10", + "version": "2.4.11", "description": "Ecency SDK", "repository": { "type": "git", diff --git a/packages/sdk/src/modules/notifications/queries/get-notifications-unread-count-query-options.spec.ts b/packages/sdk/src/modules/notifications/queries/get-notifications-unread-count-query-options.spec.ts new file mode 100644 index 0000000000..c9534e95ce --- /dev/null +++ b/packages/sdk/src/modules/notifications/queries/get-notifications-unread-count-query-options.spec.ts @@ -0,0 +1,84 @@ +import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; +import { QueryClient, QueryObserver, dehydrate, hydrate } from "@tanstack/react-query"; +import { getNotificationsUnreadCountQueryOptions } from "./get-notifications-unread-count-query-options"; + +// Both apps run their clients with a 60s default staleTime. +const makeClient = () => + new QueryClient({ defaultOptions: { queries: { staleTime: 60_000, retry: false } } }); + +describe("getNotificationsUnreadCountQueryOptions", () => { + let client: QueryClient; + const fetchMock = vi.fn(); + + beforeEach(() => { + client = makeClient(); + fetchMock.mockReset(); + fetchMock.mockResolvedValue({ json: async () => ({ count: 7 }) }); + vi.stubGlobal("fetch", fetchMock); + }); + + afterEach(() => { + client.clear(); + vi.unstubAllGlobals(); + }); + + it("carries no initialData seed", () => { + // A seed is stamped as fetched at creation, so it counts as a fresh 0. + expect(getNotificationsUnreadCountQueryOptions("alice", "code")).not.toHaveProperty( + "initialData" + ); + }); + + it("fetches on a cold cache instead of returning a cached 0", async () => { + await expect( + client.fetchQuery(getNotificationsUnreadCountQueryOptions("alice", "code")) + ).resolves.toBe(7); + expect(fetchMock).toHaveBeenCalledTimes(1); + }); + + it("caches nothing when called without an access code", async () => { + const options = getNotificationsUnreadCountQueryOptions("alice", undefined); + + await expect(client.fetchQuery(options)).rejects.toThrow("Missing access token"); + expect(fetchMock).not.toHaveBeenCalled(); + expect(client.getQueryData(options.queryKey)).toBeUndefined(); + + // Once the code is there, the real count comes back at once. + await expect( + client.fetchQuery(getNotificationsUnreadCountQueryOptions("alice", "code")) + ).resolves.toBe(7); + }); + + it("fetches when an observer mounts, showing 0 until the count arrives", async () => { + const observer = new QueryObserver( + client, + getNotificationsUnreadCountQueryOptions("alice", "code") + ); + const seen: (number | undefined)[] = []; + const unsubscribe = observer.subscribe((result) => seen.push(result.data)); + + expect(observer.getCurrentResult().data).toBe(0); + await vi.waitFor(() => expect(observer.getCurrentResult().data).toBe(7)); + expect(fetchMock).toHaveBeenCalledTimes(1); + expect(seen).not.toContain(undefined); + unsubscribe(); + }); + + it("lets a count restored from a persisted cache stand", () => { + const previous = makeClient(); + previous.setQueryData(getNotificationsUnreadCountQueryOptions("alice", "code").queryKey, 3); + const persisted = dehydrate(previous); + previous.clear(); + + // The query exists (an observer mounted) before the cache is restored. + const observer = new QueryObserver( + client, + getNotificationsUnreadCountQueryOptions("alice", undefined) + ); + const unsubscribe = observer.subscribe(() => undefined); + hydrate(client, persisted); + + expect(observer.getCurrentResult().data).toBe(3); + unsubscribe(); + }); +}); diff --git a/packages/sdk/src/modules/notifications/queries/get-notifications-unread-count-query-options.ts b/packages/sdk/src/modules/notifications/queries/get-notifications-unread-count-query-options.ts index 26cb75ecc1..3b9ffb71e0 100644 --- a/packages/sdk/src/modules/notifications/queries/get-notifications-unread-count-query-options.ts +++ b/packages/sdk/src/modules/notifications/queries/get-notifications-unread-count-query-options.ts @@ -8,8 +8,10 @@ export function getNotificationsUnreadCountQueryOptions( return queryOptions({ queryKey: QueryKeys.notifications.unreadCount(activeUsername), queryFn: async () => { + // fetchQuery and refetch() ignore `enabled`, so a synthetic 0 returned here would be + // cached as a real count. Same as the settings query: no code, no result. if (!code) { - return 0; + throw new Error("Missing access token"); } const response = await fetch( `${CONFIG.privateApiHost}/private-api/notifications/unread`, @@ -25,7 +27,11 @@ export function getNotificationsUnreadCountQueryOptions( return data.count; }, enabled: !!activeUsername && !!code, - initialData: 0, + // Placeholder, not initialData: initial data is stamped as fetched at creation, + // so under a non-zero staleTime it counted as a fresh 0. fetchQuery returned it + // without a request and observers skipped the fetch on mount until the next + // refetchInterval. A placeholder still gives observers a number while loading. + placeholderData: 0, refetchInterval: 60000, }); } diff --git a/packages/wallets/CHANGELOG.md b/packages/wallets/CHANGELOG.md index 052162b857..29023315f5 100644 --- a/packages/wallets/CHANGELOG.md +++ b/packages/wallets/CHANGELOG.md @@ -1,5 +1,12 @@ # @ecency/wallets +## 6.0.11 + +### Patch Changes + +- Updated dependencies []: + - @ecency/sdk@2.4.11 + ## 6.0.10 ### Patch Changes diff --git a/packages/wallets/package.json b/packages/wallets/package.json index 8fe530ed56..c37013cc08 100644 --- a/packages/wallets/package.json +++ b/packages/wallets/package.json @@ -1,7 +1,7 @@ { "name": "@ecency/wallets", "private": false, - "version": "6.0.10", + "version": "6.0.11", "description": "Ecency wallets", "repository": { "type": "git",