@ecency/sdk 2.3.30 → 2.3.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/browser/hive.js +1 -1
- package/dist/browser/hive.js.map +1 -1
- package/dist/browser/index.d.ts +12 -324
- package/dist/browser/index.js +3 -3
- package/dist/browser/index.js.map +1 -1
- package/dist/node/hive.cjs +1 -1
- package/dist/node/hive.cjs.map +1 -1
- package/dist/node/hive.mjs +1 -1
- package/dist/node/hive.mjs.map +1 -1
- package/dist/node/index.cjs +3 -3
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +3 -3
- package/dist/node/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/browser/index.d.ts
CHANGED
|
@@ -964,7 +964,6 @@ declare const CONFIG: {
|
|
|
964
964
|
queryClient: QueryClient;
|
|
965
965
|
pollsApiHost: string;
|
|
966
966
|
plausibleHost: string;
|
|
967
|
-
spkNode: string;
|
|
968
967
|
dmcaAccounts: string[];
|
|
969
968
|
dmcaTags: string[];
|
|
970
969
|
dmcaPatterns: string[];
|
|
@@ -1440,8 +1439,7 @@ declare function decodeObj(o: any): any;
|
|
|
1440
1439
|
declare enum Symbol {
|
|
1441
1440
|
HIVE = "HIVE",
|
|
1442
1441
|
HBD = "HBD",
|
|
1443
|
-
VESTS = "VESTS"
|
|
1444
|
-
SPK = "SPK"
|
|
1442
|
+
VESTS = "VESTS"
|
|
1445
1443
|
}
|
|
1446
1444
|
declare enum NaiMap {
|
|
1447
1445
|
"@@000000021" = "HIVE",
|
|
@@ -2366,21 +2364,6 @@ declare function buildConvertOp(owner: string, amount: string, requestId: number
|
|
|
2366
2364
|
* @returns Collateralized convert operation
|
|
2367
2365
|
*/
|
|
2368
2366
|
declare function buildCollateralizedConvertOp(owner: string, amount: string, requestId: number): Operation;
|
|
2369
|
-
/**
|
|
2370
|
-
* Builds a delegate RC operation (custom_json).
|
|
2371
|
-
* @param from - Account delegating RC
|
|
2372
|
-
* @param delegatees - Single delegatee or comma-separated list
|
|
2373
|
-
* @param maxRc - Maximum RC to delegate (in mana units)
|
|
2374
|
-
* @returns Custom JSON operation for RC delegation
|
|
2375
|
-
*/
|
|
2376
|
-
/**
|
|
2377
|
-
* Builds a SPK Network custom_json operation.
|
|
2378
|
-
* @param from - Account performing the operation
|
|
2379
|
-
* @param id - SPK operation ID (e.g., "spkcc_spk_send", "spkcc_gov_up")
|
|
2380
|
-
* @param amount - Amount (multiplied by 1000 internally)
|
|
2381
|
-
* @returns Custom JSON operation
|
|
2382
|
-
*/
|
|
2383
|
-
declare function buildSpkCustomJsonOp(from: string, id: string, amount: number): Operation;
|
|
2384
2367
|
/**
|
|
2385
2368
|
* Builds a Hive Engine custom_json operation.
|
|
2386
2369
|
* @param from - Account performing the operation
|
|
@@ -2397,6 +2380,13 @@ declare function buildEngineOp(from: string, contractAction: string, contractPay
|
|
|
2397
2380
|
* @returns Custom JSON operation
|
|
2398
2381
|
*/
|
|
2399
2382
|
declare function buildEngineClaimOp(account: string, tokens: string[]): Operation;
|
|
2383
|
+
/**
|
|
2384
|
+
* Builds a delegate RC operation (custom_json).
|
|
2385
|
+
* @param from - Account delegating RC
|
|
2386
|
+
* @param delegatees - Single delegatee or comma-separated list
|
|
2387
|
+
* @param maxRc - Maximum RC to delegate (in mana units)
|
|
2388
|
+
* @returns Custom JSON operation for RC delegation
|
|
2389
|
+
*/
|
|
2400
2390
|
declare function buildDelegateRcOp(from: string, delegatees: string, maxRc: string | number): Operation;
|
|
2401
2391
|
|
|
2402
2392
|
/**
|
|
@@ -6518,7 +6508,6 @@ declare enum AssetOperation {
|
|
|
6518
6508
|
Promote = "promote",
|
|
6519
6509
|
Claim = "claim",
|
|
6520
6510
|
Buy = "buy",
|
|
6521
|
-
LockLiquidity = "lock",
|
|
6522
6511
|
Stake = "stake",
|
|
6523
6512
|
Unstake = "unstake",
|
|
6524
6513
|
Undelegate = "undelegate"
|
|
@@ -6760,7 +6749,7 @@ declare function getRecurrentTransfersQueryOptions(username: string): _tanstack_
|
|
|
6760
6749
|
};
|
|
6761
6750
|
};
|
|
6762
6751
|
|
|
6763
|
-
type PortfolioLayer = "points" | "hive" | "chain" | "
|
|
6752
|
+
type PortfolioLayer = "points" | "hive" | "chain" | "engine";
|
|
6764
6753
|
interface TokenAction {
|
|
6765
6754
|
id: string;
|
|
6766
6755
|
[key: string]: unknown;
|
|
@@ -7313,20 +7302,6 @@ interface SetWithdrawVestingRoutePayload {
|
|
|
7313
7302
|
*/
|
|
7314
7303
|
declare function useSetWithdrawVestingRoute(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, SetWithdrawVestingRoutePayload, unknown>;
|
|
7315
7304
|
|
|
7316
|
-
interface TransferSpkPayload {
|
|
7317
|
-
to: string;
|
|
7318
|
-
amount: number;
|
|
7319
|
-
memo?: string;
|
|
7320
|
-
}
|
|
7321
|
-
declare function useTransferSpk(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, TransferSpkPayload, unknown>;
|
|
7322
|
-
|
|
7323
|
-
interface TransferLarynxPayload {
|
|
7324
|
-
to: string;
|
|
7325
|
-
amount: number;
|
|
7326
|
-
memo?: string;
|
|
7327
|
-
}
|
|
7328
|
-
declare function useTransferLarynx(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, TransferLarynxPayload, unknown>;
|
|
7329
|
-
|
|
7330
7305
|
interface TransferEngineTokenPayload {
|
|
7331
7306
|
to: string;
|
|
7332
7307
|
symbol: string;
|
|
@@ -7383,18 +7358,6 @@ interface ClaimRewardsPayload {
|
|
|
7383
7358
|
}
|
|
7384
7359
|
declare function useClaimRewards(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, ClaimRewardsPayload, unknown>;
|
|
7385
7360
|
|
|
7386
|
-
interface LockLarynxPayload {
|
|
7387
|
-
mode: "lock" | "unlock";
|
|
7388
|
-
amount: number;
|
|
7389
|
-
}
|
|
7390
|
-
declare function useLockLarynx(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, LockLarynxPayload, unknown>;
|
|
7391
|
-
|
|
7392
|
-
interface PowerLarynxPayload {
|
|
7393
|
-
mode: "up" | "down";
|
|
7394
|
-
amount: number;
|
|
7395
|
-
}
|
|
7396
|
-
declare function usePowerLarynx(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, PowerLarynxPayload, unknown>;
|
|
7397
|
-
|
|
7398
7361
|
interface DelegateEngineTokenPayload {
|
|
7399
7362
|
to: string;
|
|
7400
7363
|
symbol: string;
|
|
@@ -7454,11 +7417,11 @@ interface WalletOperationPayload {
|
|
|
7454
7417
|
/**
|
|
7455
7418
|
* Meta-mutation hook that dispatches wallet operations based on asset and operation type.
|
|
7456
7419
|
*
|
|
7457
|
-
* Supports HIVE, HBD, HP, POINTS,
|
|
7420
|
+
* Supports HIVE, HBD, HP, POINTS, and Hive Engine tokens.
|
|
7458
7421
|
* Uses `useBroadcastMutation` for unified auth handling via `AuthContextV2`.
|
|
7459
7422
|
*
|
|
7460
7423
|
* @param username - The Hive account performing the operation
|
|
7461
|
-
* @param asset - The asset symbol (e.g., "HIVE", "HBD", "HP", "POINTS",
|
|
7424
|
+
* @param asset - The asset symbol (e.g., "HIVE", "HBD", "HP", "POINTS", or engine token)
|
|
7462
7425
|
* @param operation - The operation type from AssetOperation enum
|
|
7463
7426
|
* @param auth - Auth context for broadcasting
|
|
7464
7427
|
*/
|
|
@@ -8599,281 +8562,6 @@ declare function getHiveEngineTokenGeneralInfoQueryOptions(username?: string, sy
|
|
|
8599
8562
|
};
|
|
8600
8563
|
};
|
|
8601
8564
|
|
|
8602
|
-
declare function getSpkWallet<T = Record<string, unknown>>(username: string): Promise<T>;
|
|
8603
|
-
declare function getSpkMarkets<T = Record<string, unknown>>(): Promise<T>;
|
|
8604
|
-
|
|
8605
|
-
interface SpkApiWallet {
|
|
8606
|
-
balance: number;
|
|
8607
|
-
claim: number;
|
|
8608
|
-
drop: {
|
|
8609
|
-
availible: {
|
|
8610
|
-
amount: number;
|
|
8611
|
-
precision: number;
|
|
8612
|
-
token: string;
|
|
8613
|
-
};
|
|
8614
|
-
last_claim: number;
|
|
8615
|
-
total_claims: number;
|
|
8616
|
-
};
|
|
8617
|
-
poweredUp: number;
|
|
8618
|
-
granted: {
|
|
8619
|
-
t: number;
|
|
8620
|
-
[key: string]: number;
|
|
8621
|
-
};
|
|
8622
|
-
granting: {
|
|
8623
|
-
t: number;
|
|
8624
|
-
[key: string]: number;
|
|
8625
|
-
};
|
|
8626
|
-
heldCollateral: number;
|
|
8627
|
-
contracts: unknown[];
|
|
8628
|
-
up: unknown;
|
|
8629
|
-
down: unknown;
|
|
8630
|
-
power_downs: {
|
|
8631
|
-
[key: string]: string;
|
|
8632
|
-
};
|
|
8633
|
-
gov_downs: unknown;
|
|
8634
|
-
gov: number;
|
|
8635
|
-
spk: number;
|
|
8636
|
-
spk_block: number;
|
|
8637
|
-
tick: string;
|
|
8638
|
-
node: string;
|
|
8639
|
-
head_block: number;
|
|
8640
|
-
behind: number;
|
|
8641
|
-
VERSION: string;
|
|
8642
|
-
pow: number;
|
|
8643
|
-
}
|
|
8644
|
-
interface SpkMarkets {
|
|
8645
|
-
head_block: number;
|
|
8646
|
-
markets: {
|
|
8647
|
-
node: {
|
|
8648
|
-
[key: string]: {
|
|
8649
|
-
lastGood: number;
|
|
8650
|
-
report: {
|
|
8651
|
-
block: number;
|
|
8652
|
-
};
|
|
8653
|
-
};
|
|
8654
|
-
};
|
|
8655
|
-
};
|
|
8656
|
-
stats: any;
|
|
8657
|
-
}
|
|
8658
|
-
interface TransformedSpkMarkets {
|
|
8659
|
-
list: {
|
|
8660
|
-
name: string;
|
|
8661
|
-
status: string;
|
|
8662
|
-
}[];
|
|
8663
|
-
raw: SpkMarkets;
|
|
8664
|
-
}
|
|
8665
|
-
|
|
8666
|
-
declare function rewardSpk(data: SpkApiWallet, sstats: any): number;
|
|
8667
|
-
|
|
8668
|
-
declare function getSpkWalletQueryOptions(username?: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<SpkApiWallet, Error, SpkApiWallet, (string | undefined)[]>, "queryFn"> & {
|
|
8669
|
-
queryFn?: _tanstack_react_query.QueryFunction<SpkApiWallet, (string | undefined)[], never> | undefined;
|
|
8670
|
-
} & {
|
|
8671
|
-
queryKey: (string | undefined)[] & {
|
|
8672
|
-
[dataTagSymbol]: SpkApiWallet;
|
|
8673
|
-
[dataTagErrorSymbol]: Error;
|
|
8674
|
-
};
|
|
8675
|
-
};
|
|
8676
|
-
|
|
8677
|
-
declare function getSpkMarketsQueryOptions(): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
8678
|
-
list: {
|
|
8679
|
-
name: string;
|
|
8680
|
-
status: string;
|
|
8681
|
-
}[];
|
|
8682
|
-
raw: SpkMarkets;
|
|
8683
|
-
}, Error, {
|
|
8684
|
-
list: {
|
|
8685
|
-
name: string;
|
|
8686
|
-
status: string;
|
|
8687
|
-
}[];
|
|
8688
|
-
raw: SpkMarkets;
|
|
8689
|
-
}, string[]>, "queryFn"> & {
|
|
8690
|
-
queryFn?: _tanstack_react_query.QueryFunction<{
|
|
8691
|
-
list: {
|
|
8692
|
-
name: string;
|
|
8693
|
-
status: string;
|
|
8694
|
-
}[];
|
|
8695
|
-
raw: SpkMarkets;
|
|
8696
|
-
}, string[], never> | undefined;
|
|
8697
|
-
} & {
|
|
8698
|
-
queryKey: string[] & {
|
|
8699
|
-
[dataTagSymbol]: {
|
|
8700
|
-
list: {
|
|
8701
|
-
name: string;
|
|
8702
|
-
status: string;
|
|
8703
|
-
}[];
|
|
8704
|
-
raw: SpkMarkets;
|
|
8705
|
-
};
|
|
8706
|
-
[dataTagErrorSymbol]: Error;
|
|
8707
|
-
};
|
|
8708
|
-
};
|
|
8709
|
-
|
|
8710
|
-
declare function getSpkAssetGeneralInfoQueryOptions(username: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
8711
|
-
name: string;
|
|
8712
|
-
layer: string;
|
|
8713
|
-
title: string;
|
|
8714
|
-
price: number;
|
|
8715
|
-
accountBalance: number;
|
|
8716
|
-
}, Error, {
|
|
8717
|
-
name: string;
|
|
8718
|
-
layer: string;
|
|
8719
|
-
title: string;
|
|
8720
|
-
price: number;
|
|
8721
|
-
accountBalance: number;
|
|
8722
|
-
}, string[]>, "queryFn"> & {
|
|
8723
|
-
queryFn?: _tanstack_react_query.QueryFunction<{
|
|
8724
|
-
name: string;
|
|
8725
|
-
layer: string;
|
|
8726
|
-
title: string;
|
|
8727
|
-
price: number;
|
|
8728
|
-
accountBalance: number;
|
|
8729
|
-
}, string[], never> | undefined;
|
|
8730
|
-
} & {
|
|
8731
|
-
queryKey: string[] & {
|
|
8732
|
-
[dataTagSymbol]: {
|
|
8733
|
-
name: string;
|
|
8734
|
-
layer: string;
|
|
8735
|
-
title: string;
|
|
8736
|
-
price: number;
|
|
8737
|
-
accountBalance: number;
|
|
8738
|
-
};
|
|
8739
|
-
[dataTagErrorSymbol]: Error;
|
|
8740
|
-
};
|
|
8741
|
-
};
|
|
8742
|
-
|
|
8743
|
-
declare function getLarynxAssetGeneralInfoQueryOptions(username: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
8744
|
-
name: string;
|
|
8745
|
-
title: string;
|
|
8746
|
-
price: number;
|
|
8747
|
-
accountBalance: number;
|
|
8748
|
-
layer?: undefined;
|
|
8749
|
-
} | {
|
|
8750
|
-
name: string;
|
|
8751
|
-
layer: string;
|
|
8752
|
-
title: string;
|
|
8753
|
-
price: number;
|
|
8754
|
-
accountBalance: number;
|
|
8755
|
-
}, Error, {
|
|
8756
|
-
name: string;
|
|
8757
|
-
title: string;
|
|
8758
|
-
price: number;
|
|
8759
|
-
accountBalance: number;
|
|
8760
|
-
layer?: undefined;
|
|
8761
|
-
} | {
|
|
8762
|
-
name: string;
|
|
8763
|
-
layer: string;
|
|
8764
|
-
title: string;
|
|
8765
|
-
price: number;
|
|
8766
|
-
accountBalance: number;
|
|
8767
|
-
}, string[]>, "queryFn"> & {
|
|
8768
|
-
queryFn?: _tanstack_react_query.QueryFunction<{
|
|
8769
|
-
name: string;
|
|
8770
|
-
title: string;
|
|
8771
|
-
price: number;
|
|
8772
|
-
accountBalance: number;
|
|
8773
|
-
layer?: undefined;
|
|
8774
|
-
} | {
|
|
8775
|
-
name: string;
|
|
8776
|
-
layer: string;
|
|
8777
|
-
title: string;
|
|
8778
|
-
price: number;
|
|
8779
|
-
accountBalance: number;
|
|
8780
|
-
}, string[], never> | undefined;
|
|
8781
|
-
} & {
|
|
8782
|
-
queryKey: string[] & {
|
|
8783
|
-
[dataTagSymbol]: {
|
|
8784
|
-
name: string;
|
|
8785
|
-
title: string;
|
|
8786
|
-
price: number;
|
|
8787
|
-
accountBalance: number;
|
|
8788
|
-
layer?: undefined;
|
|
8789
|
-
} | {
|
|
8790
|
-
name: string;
|
|
8791
|
-
layer: string;
|
|
8792
|
-
title: string;
|
|
8793
|
-
price: number;
|
|
8794
|
-
accountBalance: number;
|
|
8795
|
-
};
|
|
8796
|
-
[dataTagErrorSymbol]: Error;
|
|
8797
|
-
};
|
|
8798
|
-
};
|
|
8799
|
-
|
|
8800
|
-
declare function getLarynxPowerAssetGeneralInfoQueryOptions(username: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
8801
|
-
name: string;
|
|
8802
|
-
title: string;
|
|
8803
|
-
price: number;
|
|
8804
|
-
accountBalance: number;
|
|
8805
|
-
layer?: undefined;
|
|
8806
|
-
parts?: undefined;
|
|
8807
|
-
} | {
|
|
8808
|
-
name: string;
|
|
8809
|
-
title: string;
|
|
8810
|
-
layer: string;
|
|
8811
|
-
price: number;
|
|
8812
|
-
accountBalance: number;
|
|
8813
|
-
parts: {
|
|
8814
|
-
name: string;
|
|
8815
|
-
balance: number;
|
|
8816
|
-
}[];
|
|
8817
|
-
}, Error, {
|
|
8818
|
-
name: string;
|
|
8819
|
-
title: string;
|
|
8820
|
-
price: number;
|
|
8821
|
-
accountBalance: number;
|
|
8822
|
-
layer?: undefined;
|
|
8823
|
-
parts?: undefined;
|
|
8824
|
-
} | {
|
|
8825
|
-
name: string;
|
|
8826
|
-
title: string;
|
|
8827
|
-
layer: string;
|
|
8828
|
-
price: number;
|
|
8829
|
-
accountBalance: number;
|
|
8830
|
-
parts: {
|
|
8831
|
-
name: string;
|
|
8832
|
-
balance: number;
|
|
8833
|
-
}[];
|
|
8834
|
-
}, string[]>, "queryFn"> & {
|
|
8835
|
-
queryFn?: _tanstack_react_query.QueryFunction<{
|
|
8836
|
-
name: string;
|
|
8837
|
-
title: string;
|
|
8838
|
-
price: number;
|
|
8839
|
-
accountBalance: number;
|
|
8840
|
-
layer?: undefined;
|
|
8841
|
-
parts?: undefined;
|
|
8842
|
-
} | {
|
|
8843
|
-
name: string;
|
|
8844
|
-
title: string;
|
|
8845
|
-
layer: string;
|
|
8846
|
-
price: number;
|
|
8847
|
-
accountBalance: number;
|
|
8848
|
-
parts: {
|
|
8849
|
-
name: string;
|
|
8850
|
-
balance: number;
|
|
8851
|
-
}[];
|
|
8852
|
-
}, string[], never> | undefined;
|
|
8853
|
-
} & {
|
|
8854
|
-
queryKey: string[] & {
|
|
8855
|
-
[dataTagSymbol]: {
|
|
8856
|
-
name: string;
|
|
8857
|
-
title: string;
|
|
8858
|
-
price: number;
|
|
8859
|
-
accountBalance: number;
|
|
8860
|
-
layer?: undefined;
|
|
8861
|
-
parts?: undefined;
|
|
8862
|
-
} | {
|
|
8863
|
-
name: string;
|
|
8864
|
-
title: string;
|
|
8865
|
-
layer: string;
|
|
8866
|
-
price: number;
|
|
8867
|
-
accountBalance: number;
|
|
8868
|
-
parts: {
|
|
8869
|
-
name: string;
|
|
8870
|
-
balance: number;
|
|
8871
|
-
}[];
|
|
8872
|
-
};
|
|
8873
|
-
[dataTagErrorSymbol]: Error;
|
|
8874
|
-
};
|
|
8875
|
-
};
|
|
8876
|
-
|
|
8877
8565
|
declare function getBadActorsQueryOptions(): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Set<string>, Error, Set<string>, string[]>, "queryFn"> & {
|
|
8878
8566
|
queryFn?: _tanstack_react_query.QueryFunction<Set<string>, string[], never> | undefined;
|
|
8879
8567
|
} & {
|
|
@@ -8955,4 +8643,4 @@ interface PollVotePayload {
|
|
|
8955
8643
|
}
|
|
8956
8644
|
declare function usePollVote(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, PollVotePayload, unknown>;
|
|
8957
8645
|
|
|
8958
|
-
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountDelegations, type AccountFavorite, type AccountFollowStats, type AccountKeys, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AggregatedBalanceEntry, type AiAssistParams, type AiAssistPrice, type AiAssistResponse, type AiGenerationPrice, type AiGenerationRequest, type AiGenerationResponse, type AiImagePowerTier, type AiImagePriceResponse, type Announcement, type ApiBookmarkNotification, type ApiDelegationsNotification, type ApiFavoriteNotification, type ApiFollowNotification, type ApiInactiveNotification, type ApiMentionNotification, type ApiNotification, type ApiNotificationSetting, type ApiReblogNotification, type ApiReferralNotification, type ApiReplyNotification, type ApiResponse, type ApiSpinNotification, type ApiTransferNotification, type ApiVoteNotification, type ApiWeeklyEarningsNotification, type Asset, AssetOperation, type AuthContext, type AuthContextV2, type AuthMethod, type AuthorReward, Authority, type AuthorityLevel, type AuthorityType, BROADCAST_INCLUSION_DELAY_MS, type BalanceAggregationGranularity, type BalanceCoinType, type BalanceHistoryEntry, type BalanceHistoryResponse, type Beneficiary, type BlogEntry, type BoostPlusAccountPrice, type BoostPlusPayload, type BroadcastMode, BroadcastResult, type BuildProfileMetadataArgs, BuySellTransactionType, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimAccountPayload, type ClaimEngineRewardsPayload, type ClaimInterestPayload, type ClaimRewardBalance, type ClaimRewardsPayload, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayload, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityProps, type CommunityRewardsRegisterPayload, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type ConvertPayload, type CreateAccountPayload, type CrossPostPayload, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DailyCheckinQuest, type DailyContentQuest, type DailyQuest, type DelegateEngineTokenPayload, type DelegateRcPayload, type DelegateVestingShares, type DelegateVestingSharesPayload, type DelegatedVestingShare, type DeleteCommentPayload, type DeletedEntry, type Draft, type DraftMetadata, type DraftsWrappedResponse, type DynamicProps$1 as DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type EngineMarketOrderPayload, EntriesCacheManagement, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, ErrorType, type FeedHistoryItem, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type FollowPayload, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GeneralAssetInfo, type GeneralAssetTransaction, type GenerateImageParams, type GetGameStatus, type GetRecoveriesEmailResponse, type GrantPostingPermissionPayload, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveHbdStats, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, HiveSignerIntegration, type HiveTransaction, type HsTokenRenewResponse, INTERNAL_API_TIMEOUT_MS, type IncomingDelegation, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCancelPayload, type LimitOrderCreate, type LimitOrderCreatePayload, type LockLarynxPayload, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, type MedianHistoryPrice, type MutePostPayload, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, OPERATION_AUTHORITY_MAP, type OpenOrdersData, Operation, type OperationGroup, OperationName, OrderIdPrefix, type OrdersData, type OrdersDataItem, type OutgoingDelegation, POLLS_PROTOCOL_VERSION, type PageStatsResponse, type PaginationMeta, type ParsedChainError, type Payer, type PeriodQuest, type PinPostPayload, type PlatformAdapter, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type Poll, type PollChoice, type PollChoiceVotes, PollPreferredInterpretation, type PollStats, type PollVotePayload, type PollVoter, type PortfolioResponse, type PortfolioWalletItem, type PostTip, type PostTipsResponse, type PowerLarynxPayload, PrivateKey, type ProducerReward, type Profile, type ProfileTokens, type PromotePayload, type PromotePrice, type Proposal, type ProposalCreatePayload, type ProposalPay, type ProposalVote, type ProposalVotePayload, type ProposalVoteRow, PublicKey, QUEST_CATALOG, QueryKeys, type QuestCatalogEntry, type QuestMilestone, type QuestPeriod, type QuestStreak, type QuestTier, type QuestsResponse, type RCAccount, ROLES, type RcDelegationActive, type RcDelegationPayload, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcPrecheckInput, type RcPrecheckOperation, type RcPrecheckResult, type RcStats, type Reblog, type ReblogPayload, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardFund, type RewardedCommunity, SIMILAR_ENTRIES_MIN_RENDER, type SMTAsset, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetCommunityRolePayload, type SetLastReadPayload, type SetWithdrawRoute, type SetWithdrawVestingRoutePayload, type ShortVideo, type ShortsFeedEntry, type ShortsFeedParams, SortOrder, type SpkApiWallet, type SpkMarkets, type Spotlight, type StakeEngineTokenPayload, type StatsResponse, type SubscribeCommunityPayload, type Subscription, Symbol, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Token, type TokenMetadata, type Transaction, type TransactionConfirmation, type Transfer, type TransferEngineTokenPayload, type TransferFromSavingsPayload, type TransferLarynxPayload, type TransferPayload, type TransferPointPayload, type TransferSpkPayload, type TransferToSavings, type TransferToSavingsPayload, type TransferToVesting, type TransferToVestingPayload, type TransformedSpkMarkets, type TrendingTag, type UndelegateEngineTokenPayload, type UnfollowPayload, type UnstakeEngineTokenPayload, type UnsubscribeCommunityPayload, type UpdateCommunityPayload, type UpdateProposalVotes, type UpdateReplyPayload, type User, type UserImage, type ValidatePostCreatingOptions, type VestingDelegationExpiration, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VotePayload, type VoteProxy, type WalletMetadataCandidate, type WalletOperationPayload, type WaveEntry, type WaveTrendingAuthor, type WaveTrendingTag, type WavesFeedEntry, type WavesFeedParams, type WithdrawRoute, type WithdrawVesting, type WithdrawVestingPayload, type Witness, type WitnessProxyPayload, type WitnessVotePayload, type WitnessVoter, type WitnessVoterSortDirection, type WitnessVoterSortField, type WitnessVotersResponse, type WrappedResponse, type WsBookmarkNotification, type WsDelegationsNotification, type WsFavoriteNotification, type WsFollowNotification, type WsInactiveNotification, type WsMentionNotification, type WsNotification, type WsReblogNotification, type WsReferralNotification, type WsReplyNotification, type WsSpinNotification, type WsTransferNotification, type WsVoteNotification, addDraft, addImage, addOptimisticDiscussionEntry, addSchedule, bridgeApiCall, broadcastJson, broadcastOperations, broadcastOperationsAsync, buildAccountCreateOp, buildAccountUpdate2Op, buildAccountUpdateOp, buildActiveCustomJsonOp, buildBoostPlusOp, buildCancelTransferFromSavingsOp, buildChangeRecoveryAccountOp, buildClaimAccountOp, buildClaimInterestOps, buildClaimRewardBalanceOp, buildCollateralizedConvertOp, buildCommentOp, buildCommentOptionsOp, buildCommunityRegistrationOp, buildConvertOp, buildCreateClaimedAccountOp, buildDelegateRcOp, buildDelegateVestingSharesOp, buildDeleteCommentOp, buildEngineClaimOp, buildEngineOp, buildFlagPostOp, buildFollowOp, buildGrantPostingPermissionOp, buildIgnoreOp, buildLimitOrderCancelOp, buildLimitOrderCreateOp, buildLimitOrderCreateOpWithType, buildMultiPointTransferOps, buildMultiTransferOps, buildMutePostOp, buildMuteUserOp, buildPinPostOp, buildPointTransferOp, buildPostingCustomJsonOp, buildPostingJsonMetadata, buildProfileMetadata, buildPromoteOp, buildProposalCreateOp, buildProposalVoteOp, buildRcDelegationOp, buildReblogOp, buildRecoverAccountOp, buildRecurrentTransferOp, buildRemoveProposalOp, buildRequestAccountRecoveryOp, buildRevokeKeysOp, buildRevokePostingPermissionOp, buildSetLastReadOps, buildSetRoleOp, buildSetWithdrawVestingRouteOp, buildSpkCustomJsonOp, buildSubscribeOp, buildTransferFromSavingsOp, buildTransferOp, buildTransferToSavingsOp, buildTransferToVestingOp, buildUnfollowOp, buildUnignoreOp, buildUnsubscribeOp, buildUpdateCommunityOp, buildUpdateProposalOp, buildVoteOp, buildWithdrawVestingOp, buildWitnessProxyOp, buildWitnessVoteOp, calculateRCMana, calculateVPMana, canRevokeFromAuthority, checkFavoriteQueryOptions, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, estimateRcPrecheck, extractAccountProfile, formatError, formattedNumber, getAccountDelegationsQueryOptions, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountWalletAssetInfoQueryOptions, getAccountsQueryOptions, getAggregatedBalanceQueryOptions, getAiAssistPriceQueryOptions, getAiGeneratePriceQueryOptions, getAllHiveEngineTokensQueryOptions, getAnnouncementsQueryOptions, getBadActorsQueryOptions, getBalanceHistoryInfiniteQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getCurrentMedianHistoryPriceQueryOptions, getCustomJsonAuthority, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavoritesInfiniteQueryOptions, getFavoritesQueryOptions, getFeedHistoryQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalances, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarket, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadata, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveEngineUnclaimedRewardsQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOperationAuthority, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getPollQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalAuthority, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getQuestCatalogEntry, getQuestsQueryOptions, getRcDelegationActiveQueryOptions, getRcDelegationPricesQueryOptions, getRcStatsQueryOptions, getRebloggedByQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRequiredAuthority, getRewardFundQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getShortsFeedQueryOptions, getSimilarEntriesQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarkets, getSpkMarketsQueryOptions, getSpkWallet, getSpkWalletQueryOptions, getSpotlightsQueryOptions, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationExpirationsQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByAccountQueryOptions, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFeedQueryOptions, getWavesFollowingQueryOptions, getWavesLatestFeedQueryOptions, getWavesTrendingAuthorsQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessVoterCountQueryOptions, getWitnessVotersPageQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, invalidateAfterBroadcast, isCommunity, isEmptyDate, isInfoError, isNetworkError, isResourceCreditsError, isWif, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapMetaChoicesToPollChoices, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseChainError, parsePostingMetadataRoot, parseProfileMetadata, powerRechargeTime, rcPower, removeOptimisticDiscussionEntry, resolveHiveOperationFilters, resolvePost, restoreDiscussionSnapshots, restoreEntryInCache, rewardSpk, roleMap, saveNotificationSetting, search, searchPath, searchQueryOptions, sha256, shouldTriggerAuthFallback, signUp, similar, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, updateEntryInCache, uploadImage, uploadImageWithSignature, useAccountFavoriteAdd, useAccountFavoriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useAiAssist, useBookmarkAdd, useBookmarkDelete, useBoostPlus, useBroadcastMutation, useClaimAccount, useClaimEngineRewards, useClaimInterest, useClaimPoints, useClaimRewards, useComment, useConvert, useCreateAccount, useCrossPost, useDelegateEngineToken, useDelegateRc, useDelegateVestingShares, useDeleteComment, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useEngineMarketOrder, useFollow, useGameClaim, useGenerateImage, useGrantPostingPermission, useLimitOrderCancel, useLimitOrderCreate, useLockLarynx, useMarkNotificationsRead, useMoveSchedule, useMutePost, usePinPost, usePollVote, usePowerLarynx, usePromote, useProposalCreate, useProposalVote, useRcDelegation, useReblog, useRecordActivity, useRegisterCommunityRewards, useRemoveFragment, useSetCommunityRole, useSetLastRead, useSetWithdrawVestingRoute, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useStakeEngineToken, useSubscribeCommunity, useTransfer, useTransferEngineToken, useTransferFromSavings, useTransferLarynx, useTransferPoint, useTransferSpk, useTransferToSavings, useTransferToVesting, useUndelegateEngineToken, useUnfollow, useUnstakeEngineToken, useUnsubscribeCommunity, useUpdateCommunity, useUpdateDraft, useUpdateReply, useUploadImage, useVote, useWalletOperation, useWithdrawVesting, useWitnessProxy, useWitnessVote, usrActivity, validatePostCreating, verifyPostOnAlternateNode, vestsToHp, votingPower, votingRshares, votingValue, withTimeoutSignal };
|
|
8646
|
+
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountDelegations, type AccountFavorite, type AccountFollowStats, type AccountKeys, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AggregatedBalanceEntry, type AiAssistParams, type AiAssistPrice, type AiAssistResponse, type AiGenerationPrice, type AiGenerationRequest, type AiGenerationResponse, type AiImagePowerTier, type AiImagePriceResponse, type Announcement, type ApiBookmarkNotification, type ApiDelegationsNotification, type ApiFavoriteNotification, type ApiFollowNotification, type ApiInactiveNotification, type ApiMentionNotification, type ApiNotification, type ApiNotificationSetting, type ApiReblogNotification, type ApiReferralNotification, type ApiReplyNotification, type ApiResponse, type ApiSpinNotification, type ApiTransferNotification, type ApiVoteNotification, type ApiWeeklyEarningsNotification, type Asset, AssetOperation, type AuthContext, type AuthContextV2, type AuthMethod, type AuthorReward, Authority, type AuthorityLevel, type AuthorityType, BROADCAST_INCLUSION_DELAY_MS, type BalanceAggregationGranularity, type BalanceCoinType, type BalanceHistoryEntry, type BalanceHistoryResponse, type Beneficiary, type BlogEntry, type BoostPlusAccountPrice, type BoostPlusPayload, type BroadcastMode, BroadcastResult, type BuildProfileMetadataArgs, BuySellTransactionType, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimAccountPayload, type ClaimEngineRewardsPayload, type ClaimInterestPayload, type ClaimRewardBalance, type ClaimRewardsPayload, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayload, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityProps, type CommunityRewardsRegisterPayload, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type ConvertPayload, type CreateAccountPayload, type CrossPostPayload, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DailyCheckinQuest, type DailyContentQuest, type DailyQuest, type DelegateEngineTokenPayload, type DelegateRcPayload, type DelegateVestingShares, type DelegateVestingSharesPayload, type DelegatedVestingShare, type DeleteCommentPayload, type DeletedEntry, type Draft, type DraftMetadata, type DraftsWrappedResponse, type DynamicProps$1 as DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type EngineMarketOrderPayload, EntriesCacheManagement, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, ErrorType, type FeedHistoryItem, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type FollowPayload, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GeneralAssetInfo, type GeneralAssetTransaction, type GenerateImageParams, type GetGameStatus, type GetRecoveriesEmailResponse, type GrantPostingPermissionPayload, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveHbdStats, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, HiveSignerIntegration, type HiveTransaction, type HsTokenRenewResponse, INTERNAL_API_TIMEOUT_MS, type IncomingDelegation, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCancelPayload, type LimitOrderCreate, type LimitOrderCreatePayload, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, type MedianHistoryPrice, type MutePostPayload, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, OPERATION_AUTHORITY_MAP, type OpenOrdersData, Operation, type OperationGroup, OperationName, OrderIdPrefix, type OrdersData, type OrdersDataItem, type OutgoingDelegation, POLLS_PROTOCOL_VERSION, type PageStatsResponse, type PaginationMeta, type ParsedChainError, type Payer, type PeriodQuest, type PinPostPayload, type PlatformAdapter, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type Poll, type PollChoice, type PollChoiceVotes, PollPreferredInterpretation, type PollStats, type PollVotePayload, type PollVoter, type PortfolioResponse, type PortfolioWalletItem, type PostTip, type PostTipsResponse, PrivateKey, type ProducerReward, type Profile, type ProfileTokens, type PromotePayload, type PromotePrice, type Proposal, type ProposalCreatePayload, type ProposalPay, type ProposalVote, type ProposalVotePayload, type ProposalVoteRow, PublicKey, QUEST_CATALOG, QueryKeys, type QuestCatalogEntry, type QuestMilestone, type QuestPeriod, type QuestStreak, type QuestTier, type QuestsResponse, type RCAccount, ROLES, type RcDelegationActive, type RcDelegationPayload, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcPrecheckInput, type RcPrecheckOperation, type RcPrecheckResult, type RcStats, type Reblog, type ReblogPayload, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardFund, type RewardedCommunity, SIMILAR_ENTRIES_MIN_RENDER, type SMTAsset, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetCommunityRolePayload, type SetLastReadPayload, type SetWithdrawRoute, type SetWithdrawVestingRoutePayload, type ShortVideo, type ShortsFeedEntry, type ShortsFeedParams, SortOrder, type Spotlight, type StakeEngineTokenPayload, type StatsResponse, type SubscribeCommunityPayload, type Subscription, Symbol, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Token, type TokenMetadata, type Transaction, type TransactionConfirmation, type Transfer, type TransferEngineTokenPayload, type TransferFromSavingsPayload, type TransferPayload, type TransferPointPayload, type TransferToSavings, type TransferToSavingsPayload, type TransferToVesting, type TransferToVestingPayload, type TrendingTag, type UndelegateEngineTokenPayload, type UnfollowPayload, type UnstakeEngineTokenPayload, type UnsubscribeCommunityPayload, type UpdateCommunityPayload, type UpdateProposalVotes, type UpdateReplyPayload, type User, type UserImage, type ValidatePostCreatingOptions, type VestingDelegationExpiration, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VotePayload, type VoteProxy, type WalletMetadataCandidate, type WalletOperationPayload, type WaveEntry, type WaveTrendingAuthor, type WaveTrendingTag, type WavesFeedEntry, type WavesFeedParams, type WithdrawRoute, type WithdrawVesting, type WithdrawVestingPayload, type Witness, type WitnessProxyPayload, type WitnessVotePayload, type WitnessVoter, type WitnessVoterSortDirection, type WitnessVoterSortField, type WitnessVotersResponse, type WrappedResponse, type WsBookmarkNotification, type WsDelegationsNotification, type WsFavoriteNotification, type WsFollowNotification, type WsInactiveNotification, type WsMentionNotification, type WsNotification, type WsReblogNotification, type WsReferralNotification, type WsReplyNotification, type WsSpinNotification, type WsTransferNotification, type WsVoteNotification, addDraft, addImage, addOptimisticDiscussionEntry, addSchedule, bridgeApiCall, broadcastJson, broadcastOperations, broadcastOperationsAsync, buildAccountCreateOp, buildAccountUpdate2Op, buildAccountUpdateOp, buildActiveCustomJsonOp, buildBoostPlusOp, buildCancelTransferFromSavingsOp, buildChangeRecoveryAccountOp, buildClaimAccountOp, buildClaimInterestOps, buildClaimRewardBalanceOp, buildCollateralizedConvertOp, buildCommentOp, buildCommentOptionsOp, buildCommunityRegistrationOp, buildConvertOp, buildCreateClaimedAccountOp, buildDelegateRcOp, buildDelegateVestingSharesOp, buildDeleteCommentOp, buildEngineClaimOp, buildEngineOp, buildFlagPostOp, buildFollowOp, buildGrantPostingPermissionOp, buildIgnoreOp, buildLimitOrderCancelOp, buildLimitOrderCreateOp, buildLimitOrderCreateOpWithType, buildMultiPointTransferOps, buildMultiTransferOps, buildMutePostOp, buildMuteUserOp, buildPinPostOp, buildPointTransferOp, buildPostingCustomJsonOp, buildPostingJsonMetadata, buildProfileMetadata, buildPromoteOp, buildProposalCreateOp, buildProposalVoteOp, buildRcDelegationOp, buildReblogOp, buildRecoverAccountOp, buildRecurrentTransferOp, buildRemoveProposalOp, buildRequestAccountRecoveryOp, buildRevokeKeysOp, buildRevokePostingPermissionOp, buildSetLastReadOps, buildSetRoleOp, buildSetWithdrawVestingRouteOp, buildSubscribeOp, buildTransferFromSavingsOp, buildTransferOp, buildTransferToSavingsOp, buildTransferToVestingOp, buildUnfollowOp, buildUnignoreOp, buildUnsubscribeOp, buildUpdateCommunityOp, buildUpdateProposalOp, buildVoteOp, buildWithdrawVestingOp, buildWitnessProxyOp, buildWitnessVoteOp, calculateRCMana, calculateVPMana, canRevokeFromAuthority, checkFavoriteQueryOptions, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, estimateRcPrecheck, extractAccountProfile, formatError, formattedNumber, getAccountDelegationsQueryOptions, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountWalletAssetInfoQueryOptions, getAccountsQueryOptions, getAggregatedBalanceQueryOptions, getAiAssistPriceQueryOptions, getAiGeneratePriceQueryOptions, getAllHiveEngineTokensQueryOptions, getAnnouncementsQueryOptions, getBadActorsQueryOptions, getBalanceHistoryInfiniteQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getCurrentMedianHistoryPriceQueryOptions, getCustomJsonAuthority, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavoritesInfiniteQueryOptions, getFavoritesQueryOptions, getFeedHistoryQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalances, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarket, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadata, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveEngineUnclaimedRewardsQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOperationAuthority, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getPollQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalAuthority, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getQuestCatalogEntry, getQuestsQueryOptions, getRcDelegationActiveQueryOptions, getRcDelegationPricesQueryOptions, getRcStatsQueryOptions, getRebloggedByQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRequiredAuthority, getRewardFundQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getShortsFeedQueryOptions, getSimilarEntriesQueryOptions, getSpotlightsQueryOptions, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationExpirationsQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByAccountQueryOptions, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFeedQueryOptions, getWavesFollowingQueryOptions, getWavesLatestFeedQueryOptions, getWavesTrendingAuthorsQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessVoterCountQueryOptions, getWitnessVotersPageQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, invalidateAfterBroadcast, isCommunity, isEmptyDate, isInfoError, isNetworkError, isResourceCreditsError, isWif, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapMetaChoicesToPollChoices, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseChainError, parsePostingMetadataRoot, parseProfileMetadata, powerRechargeTime, rcPower, removeOptimisticDiscussionEntry, resolveHiveOperationFilters, resolvePost, restoreDiscussionSnapshots, restoreEntryInCache, roleMap, saveNotificationSetting, search, searchPath, searchQueryOptions, sha256, shouldTriggerAuthFallback, signUp, similar, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, updateEntryInCache, uploadImage, uploadImageWithSignature, useAccountFavoriteAdd, useAccountFavoriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useAiAssist, useBookmarkAdd, useBookmarkDelete, useBoostPlus, useBroadcastMutation, useClaimAccount, useClaimEngineRewards, useClaimInterest, useClaimPoints, useClaimRewards, useComment, useConvert, useCreateAccount, useCrossPost, useDelegateEngineToken, useDelegateRc, useDelegateVestingShares, useDeleteComment, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useEngineMarketOrder, useFollow, useGameClaim, useGenerateImage, useGrantPostingPermission, useLimitOrderCancel, useLimitOrderCreate, useMarkNotificationsRead, useMoveSchedule, useMutePost, usePinPost, usePollVote, usePromote, useProposalCreate, useProposalVote, useRcDelegation, useReblog, useRecordActivity, useRegisterCommunityRewards, useRemoveFragment, useSetCommunityRole, useSetLastRead, useSetWithdrawVestingRoute, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useStakeEngineToken, useSubscribeCommunity, useTransfer, useTransferEngineToken, useTransferFromSavings, useTransferPoint, useTransferToSavings, useTransferToVesting, useUndelegateEngineToken, useUnfollow, useUnstakeEngineToken, useUnsubscribeCommunity, useUpdateCommunity, useUpdateDraft, useUpdateReply, useUploadImage, useVote, useWalletOperation, useWithdrawVesting, useWitnessProxy, useWitnessVote, usrActivity, validatePostCreating, verifyPostOnAlternateNode, vestsToHp, votingPower, votingRshares, votingValue, withTimeoutSignal };
|