@ecency/wallets 1.5.2 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.d.ts +68 -28
- package/dist/browser/index.js +313 -389
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +330 -387
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +313 -389
- package/dist/node/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
2
|
import { UseMutationOptions, useMutation } from '@tanstack/react-query';
|
|
3
|
+
import { AuthContext, useBroadcastMutation } from '@ecency/sdk';
|
|
4
|
+
export { getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTradeHistory } from '@ecency/sdk';
|
|
3
5
|
import { BaseWallet, SignTxParams } from '@okxweb3/coin-base';
|
|
4
6
|
import { OperationName, VirtualOperationName, SMTAsset, PrivateKey, Operation, TransactionConfirmation, Client } from '@hiveio/dhive';
|
|
5
7
|
import { Transaction, SignedTransaction, TransactionConfirmation as TransactionConfirmation$1 } from '@hiveio/dhive/lib/chain/transaction';
|
|
@@ -10,7 +12,6 @@ import { SolSignParam } from '@okxweb3/coin-solana/dist/SolWallet';
|
|
|
10
12
|
import { TrxSignParam } from '@okxweb3/coin-tron/dist/TrxWallet';
|
|
11
13
|
import { TxData } from '@okxweb3/coin-ton/dist/api/types';
|
|
12
14
|
import { AptosParam } from '@okxweb3/coin-aptos/dist/AptosWallet';
|
|
13
|
-
import { useBroadcastMutation } from '@ecency/sdk';
|
|
14
15
|
|
|
15
16
|
declare enum EcencyWalletCurrency {
|
|
16
17
|
BTC = "BTC",
|
|
@@ -92,7 +93,7 @@ interface Payload$6 {
|
|
|
92
93
|
memoPublicKey: string;
|
|
93
94
|
};
|
|
94
95
|
}
|
|
95
|
-
declare function useUpdateAccountWithWallets(username: string): _tanstack_react_query.UseMutationResult<Response, Error, Payload$6, unknown>;
|
|
96
|
+
declare function useUpdateAccountWithWallets(username: string, accessToken: string | undefined): _tanstack_react_query.UseMutationResult<Response, Error, Payload$6, unknown>;
|
|
96
97
|
|
|
97
98
|
declare const index_useCheckWalletExistence: typeof useCheckWalletExistence;
|
|
98
99
|
declare const index_useCreateAccountWithWallets: typeof useCreateAccountWithWallets;
|
|
@@ -122,10 +123,7 @@ declare function useImportWallet(username: string, currency: EcencyWalletCurrenc
|
|
|
122
123
|
* Basically, this mutation is a convenient wrapper for update profile operation
|
|
123
124
|
*/
|
|
124
125
|
type SaveWalletInformationOptions = Pick<UseMutationOptions<unknown, Error, EcencyTokenMetadata[]>, "onSuccess" | "onError">;
|
|
125
|
-
declare function useSaveWalletInformationToMetadata(username: string,
|
|
126
|
-
postingKey?: string | null;
|
|
127
|
-
loginType?: string | null;
|
|
128
|
-
}, options?: SaveWalletInformationOptions): _tanstack_react_query.UseMutationResult<unknown, Error, EcencyTokenMetadata[], unknown>;
|
|
126
|
+
declare function useSaveWalletInformationToMetadata(username: string, auth?: AuthContext, options?: SaveWalletInformationOptions): _tanstack_react_query.UseMutationResult<unknown, Error, EcencyTokenMetadata[], unknown>;
|
|
129
127
|
|
|
130
128
|
declare function getHiveAssetGeneralInfoQueryOptions(username: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
131
129
|
name: string;
|
|
@@ -810,7 +808,7 @@ interface TransferPayload<T extends HiveBasedAssetSignType> {
|
|
|
810
808
|
}
|
|
811
809
|
declare function transferHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? TransferPayload<T> & {
|
|
812
810
|
key: PrivateKey;
|
|
813
|
-
} : TransferPayload<T
|
|
811
|
+
} : TransferPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
814
812
|
|
|
815
813
|
interface Payload$4<T extends HiveBasedAssetSignType> {
|
|
816
814
|
from: string;
|
|
@@ -821,7 +819,7 @@ interface Payload$4<T extends HiveBasedAssetSignType> {
|
|
|
821
819
|
}
|
|
822
820
|
declare function transferToSavingsHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$4<T> & {
|
|
823
821
|
key: PrivateKey;
|
|
824
|
-
} : Payload$4<T
|
|
822
|
+
} : Payload$4<T>, auth?: AuthContext): Promise<unknown>;
|
|
825
823
|
|
|
826
824
|
interface PayloadBase$1 {
|
|
827
825
|
from: string;
|
|
@@ -835,7 +833,7 @@ interface PayloadWithKey$1<T extends HiveBasedAssetSignType> extends PayloadBase
|
|
|
835
833
|
}
|
|
836
834
|
declare function transferFromSavingsHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? PayloadWithKey$1<T> & {
|
|
837
835
|
key: PrivateKey;
|
|
838
|
-
} : PayloadWithKey$1<T
|
|
836
|
+
} : PayloadWithKey$1<T>, auth?: AuthContext): Promise<unknown>;
|
|
839
837
|
|
|
840
838
|
interface Payload$3<T extends HiveBasedAssetSignType> {
|
|
841
839
|
from: string;
|
|
@@ -846,7 +844,7 @@ interface Payload$3<T extends HiveBasedAssetSignType> {
|
|
|
846
844
|
}
|
|
847
845
|
declare function powerUpHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$3<T> & {
|
|
848
846
|
key: PrivateKey;
|
|
849
|
-
} : Payload$3<T
|
|
847
|
+
} : Payload$3<T>, auth?: AuthContext): Promise<unknown>;
|
|
850
848
|
|
|
851
849
|
interface Payload$2<T extends HiveBasedAssetSignType> {
|
|
852
850
|
from: string;
|
|
@@ -857,7 +855,7 @@ interface Payload$2<T extends HiveBasedAssetSignType> {
|
|
|
857
855
|
}
|
|
858
856
|
declare function delegateHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$2<T> & {
|
|
859
857
|
key: PrivateKey;
|
|
860
|
-
} : Payload$2<T
|
|
858
|
+
} : Payload$2<T>, auth?: AuthContext): Promise<unknown>;
|
|
861
859
|
|
|
862
860
|
interface Payload$1<T extends HiveBasedAssetSignType> {
|
|
863
861
|
from: string;
|
|
@@ -866,7 +864,7 @@ interface Payload$1<T extends HiveBasedAssetSignType> {
|
|
|
866
864
|
}
|
|
867
865
|
declare function powerDownHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$1<T> & {
|
|
868
866
|
key: PrivateKey;
|
|
869
|
-
} : Payload$1<T
|
|
867
|
+
} : Payload$1<T>, auth?: AuthContext): Promise<unknown>;
|
|
870
868
|
|
|
871
869
|
interface Payload<T extends HiveBasedAssetSignType> {
|
|
872
870
|
from_account: string;
|
|
@@ -877,9 +875,9 @@ interface Payload<T extends HiveBasedAssetSignType> {
|
|
|
877
875
|
}
|
|
878
876
|
declare function withdrawVestingRouteHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload<T> & {
|
|
879
877
|
key: PrivateKey;
|
|
880
|
-
} : Payload<T
|
|
878
|
+
} : Payload<T>, auth?: AuthContext): Promise<unknown>;
|
|
881
879
|
|
|
882
|
-
declare function useClaimRewards(username: string,
|
|
880
|
+
declare function useClaimRewards(username: string, auth: AuthContext | undefined, onSuccess: () => void): ReturnType<typeof useBroadcastMutation<void>>;
|
|
883
881
|
|
|
884
882
|
interface PayloadBase {
|
|
885
883
|
from: string;
|
|
@@ -893,7 +891,7 @@ interface PayloadWithKey<T extends HiveBasedAssetSignType> extends PayloadBase {
|
|
|
893
891
|
}
|
|
894
892
|
declare function claimInterestHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? PayloadWithKey<T> & {
|
|
895
893
|
key: PrivateKey;
|
|
896
|
-
} : PayloadWithKey<T
|
|
894
|
+
} : PayloadWithKey<T>, auth?: AuthContext): Promise<unknown>;
|
|
897
895
|
|
|
898
896
|
declare const HIVE_ACCOUNT_OPERATION_GROUPS: Record<HiveOperationGroup, number[]>;
|
|
899
897
|
|
|
@@ -942,7 +940,7 @@ interface SpkTransferPayload<T extends HiveBasedAssetSignType> {
|
|
|
942
940
|
}
|
|
943
941
|
declare function transferSpk<T extends HiveBasedAssetSignType>(payload: T extends "key" ? SpkTransferPayload<T> & {
|
|
944
942
|
key: PrivateKey;
|
|
945
|
-
} : SpkTransferPayload<T
|
|
943
|
+
} : SpkTransferPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
946
944
|
|
|
947
945
|
interface SpkLockPayload<T extends HiveBasedAssetSignType> {
|
|
948
946
|
mode: "lock" | "unlock";
|
|
@@ -952,7 +950,7 @@ interface SpkLockPayload<T extends HiveBasedAssetSignType> {
|
|
|
952
950
|
}
|
|
953
951
|
declare const lockLarynx: <T extends HiveBasedAssetSignType>(payload: T extends "key" ? SpkLockPayload<T> & {
|
|
954
952
|
key: PrivateKey;
|
|
955
|
-
} : SpkLockPayload<T
|
|
953
|
+
} : SpkLockPayload<T>, auth?: AuthContext) => Promise<unknown>;
|
|
956
954
|
|
|
957
955
|
interface SpkPowerPayload<T extends HiveBasedAssetSignType> {
|
|
958
956
|
mode: "up" | "down";
|
|
@@ -962,7 +960,7 @@ interface SpkPowerPayload<T extends HiveBasedAssetSignType> {
|
|
|
962
960
|
}
|
|
963
961
|
declare function powerUpLarynx<T extends HiveBasedAssetSignType>(payload: T extends "key" ? SpkPowerPayload<T> & {
|
|
964
962
|
key: PrivateKey;
|
|
965
|
-
} : SpkPowerPayload<T
|
|
963
|
+
} : SpkPowerPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
966
964
|
|
|
967
965
|
interface LarynxTransferPayload<T extends HiveBasedAssetSignType> {
|
|
968
966
|
from: string;
|
|
@@ -973,7 +971,7 @@ interface LarynxTransferPayload<T extends HiveBasedAssetSignType> {
|
|
|
973
971
|
}
|
|
974
972
|
declare function transferLarynx<T extends HiveBasedAssetSignType>(payload: T extends "key" ? LarynxTransferPayload<T> & {
|
|
975
973
|
key: PrivateKey;
|
|
976
|
-
} : LarynxTransferPayload<T
|
|
974
|
+
} : LarynxTransferPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
977
975
|
|
|
978
976
|
declare function getLarynxAssetGeneralInfoQueryOptions(username: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
979
977
|
name: string;
|
|
@@ -1270,6 +1268,29 @@ interface HiveEngineTokenInfo {
|
|
|
1270
1268
|
volumeExpiration: number;
|
|
1271
1269
|
}
|
|
1272
1270
|
|
|
1271
|
+
interface HiveEngineOrderBookEntry {
|
|
1272
|
+
_id: number;
|
|
1273
|
+
txId: string;
|
|
1274
|
+
timestamp: number;
|
|
1275
|
+
account: string;
|
|
1276
|
+
symbol: string;
|
|
1277
|
+
quantity: string;
|
|
1278
|
+
price: string;
|
|
1279
|
+
expiration: number;
|
|
1280
|
+
tokensLocked?: string;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
interface HiveEngineOpenOrder {
|
|
1284
|
+
id: string;
|
|
1285
|
+
type: "buy" | "sell";
|
|
1286
|
+
account: string;
|
|
1287
|
+
symbol: string;
|
|
1288
|
+
quantity: string;
|
|
1289
|
+
price: string;
|
|
1290
|
+
total: string;
|
|
1291
|
+
timestamp: number;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1273
1294
|
interface Token {
|
|
1274
1295
|
issuer: string;
|
|
1275
1296
|
symbol: string;
|
|
@@ -1478,7 +1499,7 @@ interface DelegateEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1478
1499
|
}
|
|
1479
1500
|
declare function delegateEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? DelegateEnginePayload<T> & {
|
|
1480
1501
|
key: PrivateKey;
|
|
1481
|
-
} : DelegateEnginePayload<T
|
|
1502
|
+
} : DelegateEnginePayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1482
1503
|
|
|
1483
1504
|
interface UndelegateEnginePayload<T extends HiveBasedAssetSignType> {
|
|
1484
1505
|
from: string;
|
|
@@ -1489,7 +1510,7 @@ interface UndelegateEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1489
1510
|
}
|
|
1490
1511
|
declare function undelegateEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? UndelegateEnginePayload<T> & {
|
|
1491
1512
|
key: PrivateKey;
|
|
1492
|
-
} : UndelegateEnginePayload<T
|
|
1513
|
+
} : UndelegateEnginePayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1493
1514
|
|
|
1494
1515
|
interface StakeEnginePayload<T extends HiveBasedAssetSignType> {
|
|
1495
1516
|
from: string;
|
|
@@ -1500,7 +1521,7 @@ interface StakeEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1500
1521
|
}
|
|
1501
1522
|
declare function stakeEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? StakeEnginePayload<T> & {
|
|
1502
1523
|
key: PrivateKey;
|
|
1503
|
-
} : StakeEnginePayload<T
|
|
1524
|
+
} : StakeEnginePayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1504
1525
|
|
|
1505
1526
|
interface UnstakeEnginePayload<T extends HiveBasedAssetSignType> {
|
|
1506
1527
|
from: string;
|
|
@@ -1511,7 +1532,7 @@ interface UnstakeEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1511
1532
|
}
|
|
1512
1533
|
declare function unstakeEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? UnstakeEnginePayload<T> & {
|
|
1513
1534
|
key: PrivateKey;
|
|
1514
|
-
} : UnstakeEnginePayload<T
|
|
1535
|
+
} : UnstakeEnginePayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1515
1536
|
|
|
1516
1537
|
interface TransferEnginePayload<T extends HiveBasedAssetSignType> {
|
|
1517
1538
|
from: string;
|
|
@@ -1523,9 +1544,28 @@ interface TransferEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1523
1544
|
}
|
|
1524
1545
|
declare function transferEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? TransferEnginePayload<T> & {
|
|
1525
1546
|
key: PrivateKey;
|
|
1526
|
-
} : TransferEnginePayload<T
|
|
1547
|
+
} : TransferEnginePayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1548
|
+
|
|
1549
|
+
type EngineOrderSignMethod = "key" | "keychain" | "hivesigner" | "hiveauth";
|
|
1550
|
+
interface EngineOrderBroadcastOptions {
|
|
1551
|
+
method?: EngineOrderSignMethod;
|
|
1552
|
+
key?: PrivateKey;
|
|
1553
|
+
auth?: AuthContext;
|
|
1554
|
+
}
|
|
1555
|
+
declare const placeHiveEngineBuyOrder: (account: string, symbol: string, quantity: string, price: string, options?: EngineOrderBroadcastOptions) => Promise<unknown>;
|
|
1556
|
+
declare const placeHiveEngineSellOrder: (account: string, symbol: string, quantity: string, price: string, options?: EngineOrderBroadcastOptions) => Promise<unknown>;
|
|
1557
|
+
declare const cancelHiveEngineOrder: (account: string, type: "buy" | "sell", orderId: string, options?: EngineOrderBroadcastOptions) => Promise<unknown>;
|
|
1558
|
+
|
|
1559
|
+
interface ClaimRewardsPayload<T extends HiveBasedAssetSignType> {
|
|
1560
|
+
account: string;
|
|
1561
|
+
tokens: string[];
|
|
1562
|
+
type: T;
|
|
1563
|
+
}
|
|
1564
|
+
declare function claimHiveEngineRewards<T extends HiveBasedAssetSignType>(payload: T extends "key" ? ClaimRewardsPayload<T> & {
|
|
1565
|
+
key: PrivateKey;
|
|
1566
|
+
} : ClaimRewardsPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1527
1567
|
|
|
1528
|
-
declare function useClaimPoints(username: string | undefined, onSuccess?: () => void, onError?: Parameters<typeof useMutation>["0"]["onError"]): _tanstack_react_query.UseMutationResult<
|
|
1568
|
+
declare function useClaimPoints(username: string | undefined, accessToken: string | undefined, onSuccess?: () => void, onError?: Parameters<typeof useMutation>["0"]["onError"]): _tanstack_react_query.UseMutationResult<any, unknown, unknown, unknown>;
|
|
1529
1569
|
|
|
1530
1570
|
type PointsSignType = "key" | "keychain" | "hivesigner" | "hiveauth";
|
|
1531
1571
|
interface PointsTransferPayloadBase {
|
|
@@ -1538,7 +1578,7 @@ interface PointsTransferPayloadBase {
|
|
|
1538
1578
|
type PointsTransferPayload<T extends PointsSignType> = T extends "key" ? PointsTransferPayloadBase & {
|
|
1539
1579
|
key: PrivateKey;
|
|
1540
1580
|
} : PointsTransferPayloadBase;
|
|
1541
|
-
declare function transferPoint<T extends PointsSignType>({ from, to, amount, memo, type, ...payload }: PointsTransferPayload<T
|
|
1581
|
+
declare function transferPoint<T extends PointsSignType>({ from, to, amount, memo, type, ...payload }: PointsTransferPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1542
1582
|
|
|
1543
1583
|
declare function getPointsQueryOptions(username?: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
1544
1584
|
readonly points: any;
|
|
@@ -1679,7 +1719,7 @@ declare function getPointsAssetTransactionsQueryOptions(username: string | undef
|
|
|
1679
1719
|
};
|
|
1680
1720
|
};
|
|
1681
1721
|
|
|
1682
|
-
declare function useWalletOperation(username: string, asset: string, operation: AssetOperation): _tanstack_react_query.UseMutationResult<any, Error, Record<string, unknown>, unknown>;
|
|
1722
|
+
declare function useWalletOperation(username: string, asset: string, operation: AssetOperation, auth?: AuthContext): _tanstack_react_query.UseMutationResult<any, Error, Record<string, unknown>, unknown>;
|
|
1683
1723
|
|
|
1684
1724
|
interface ExternalWalletBalance {
|
|
1685
1725
|
chain: string;
|
|
@@ -1950,4 +1990,4 @@ declare function buildExternalTx(currency: EcencyWalletCurrency, tx: ExternalTxP
|
|
|
1950
1990
|
|
|
1951
1991
|
declare function getBoundFetch(): typeof fetch;
|
|
1952
1992
|
|
|
1953
|
-
export { type AccountPointsResponse, type Asset, AssetOperation, type AuthorReward, type CancelTransferFromSavings, type ClaimRewardBalance, type CollateralizedConvert, type CommentBenefactor, type CommentPayoutUpdate, type CommentReward, type CurationReward, type DelegateEnginePayload, type DelegateVestingShares, type DelegatedVestingShare, type EcencyHiveKeys, type EcencyTokenMetadata, EcencyWalletBasicTokens, EcencyWalletCurrency, index as EcencyWalletsPrivateApi, type EffectiveCommentVote, type ExternalTxParams, type ExternalWalletBalance, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type GeneralAssetInfo, type GeneralAssetTransaction, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveAuthBroadcastHandler, type HiveAuthKeyType, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveKeyDerivation, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, type HiveRole, type HiveTransaction, type HiveWithdrawRoute, type Interest, type LimitOrderCancel, type LimitOrderCreate, NaiMap, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type ProducerReward, type ProposalPay, type ReceivedVestingShare, type RecurrentTransfers, type ReturnVestingDelegation, type SetWithdrawRoute, type SpkApiWallet, type SpkMarkets, type StakeEnginePayload, Symbol, type Token, type TokenMetadata, type Transfer, type TransferEnginePayload, type TransferPayload, type TransferToSavings, type TransferToVesting, type TransformedSpkMarkets, type UndelegateEnginePayload, type UnstakeEnginePayload, type UpdateProposalVotes, type VisionPortfolioResponse, type VisionPortfolioWalletItem, type VoteProxy, type WithdrawVesting, broadcastWithWalletHiveAuth, buildAptTx, buildEthTx, buildExternalTx, buildPsbt, buildSolTx, buildTonTx, buildTronTx, claimInterestHive, decryptMemoWithAccounts, decryptMemoWithKeys, delay, delegateEngineToken, delegateHive, deriveHiveKey, deriveHiveKeys, deriveHiveMasterPasswordKey, deriveHiveMasterPasswordKeys, detectHiveKeyDerivation, encryptMemoWithAccounts, encryptMemoWithKeys, formattedNumber, getAccountWalletAssetInfoQueryOptions, getAccountWalletListQueryOptions, getAllHiveEngineTokensQueryOptions, getAllTokensListQueryOptions, getBoundFetch, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineUnclaimedRewardsQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarketsQueryOptions, getSpkWalletQueryOptions, getTokenOperationsQueryOptions, getTokenPriceQueryOptions, getVisionPortfolioQueryOptions, getWallet, hasWalletHiveAuthBroadcast, isEmptyDate, lockLarynx, mnemonicToSeedBip39, parseAsset, powerDownHive, powerUpHive, powerUpLarynx, registerWalletHiveAuthBroadcast, resolveHiveOperationFilters, rewardSpk, signDigest, signExternalTx, signExternalTxAndBroadcast, signTx, signTxAndBroadcast, stakeEngineToken, transferEngineToken, transferFromSavingsHive, transferHive, transferLarynx, transferPoint, transferSpk, transferToSavingsHive, undelegateEngineToken, unstakeEngineToken, useClaimPoints, useClaimRewards, useGetExternalWalletBalanceQuery, useHiveKeysQuery, useImportWallet, useSaveWalletInformationToMetadata, useSeedPhrase, useWalletCreate, useWalletOperation, useWalletsCacheQuery, vestsToHp, withdrawVestingRouteHive };
|
|
1993
|
+
export { type AccountPointsResponse, type Asset, AssetOperation, type AuthorReward, type CancelTransferFromSavings, type ClaimRewardBalance, type CollateralizedConvert, type CommentBenefactor, type CommentPayoutUpdate, type CommentReward, type CurationReward, type DelegateEnginePayload, type DelegateVestingShares, type DelegatedVestingShare, type EcencyHiveKeys, type EcencyTokenMetadata, EcencyWalletBasicTokens, EcencyWalletCurrency, index as EcencyWalletsPrivateApi, type EffectiveCommentVote, type EngineOrderBroadcastOptions, type EngineOrderSignMethod, type ExternalTxParams, type ExternalWalletBalance, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type GeneralAssetInfo, type GeneralAssetTransaction, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveAuthBroadcastHandler, type HiveAuthKeyType, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveKeyDerivation, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, type HiveRole, type HiveTransaction, type HiveWithdrawRoute, type Interest, type LimitOrderCancel, type LimitOrderCreate, NaiMap, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type ProducerReward, type ProposalPay, type ReceivedVestingShare, type RecurrentTransfers, type ReturnVestingDelegation, type SetWithdrawRoute, type SpkApiWallet, type SpkMarkets, type StakeEnginePayload, Symbol, type Token, type TokenMetadata, type Transfer, type TransferEnginePayload, type TransferPayload, type TransferToSavings, type TransferToVesting, type TransformedSpkMarkets, type UndelegateEnginePayload, type UnstakeEnginePayload, type UpdateProposalVotes, type VisionPortfolioResponse, type VisionPortfolioWalletItem, type VoteProxy, type WithdrawVesting, broadcastWithWalletHiveAuth, buildAptTx, buildEthTx, buildExternalTx, buildPsbt, buildSolTx, buildTonTx, buildTronTx, cancelHiveEngineOrder, claimHiveEngineRewards, claimInterestHive, decryptMemoWithAccounts, decryptMemoWithKeys, delay, delegateEngineToken, delegateHive, deriveHiveKey, deriveHiveKeys, deriveHiveMasterPasswordKey, deriveHiveMasterPasswordKeys, detectHiveKeyDerivation, encryptMemoWithAccounts, encryptMemoWithKeys, formattedNumber, getAccountWalletAssetInfoQueryOptions, getAccountWalletListQueryOptions, getAllHiveEngineTokensQueryOptions, getAllTokensListQueryOptions, getBoundFetch, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineUnclaimedRewardsQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarketsQueryOptions, getSpkWalletQueryOptions, getTokenOperationsQueryOptions, getTokenPriceQueryOptions, getVisionPortfolioQueryOptions, getWallet, hasWalletHiveAuthBroadcast, isEmptyDate, lockLarynx, mnemonicToSeedBip39, parseAsset, placeHiveEngineBuyOrder, placeHiveEngineSellOrder, powerDownHive, powerUpHive, powerUpLarynx, registerWalletHiveAuthBroadcast, resolveHiveOperationFilters, rewardSpk, signDigest, signExternalTx, signExternalTxAndBroadcast, signTx, signTxAndBroadcast, stakeEngineToken, transferEngineToken, transferFromSavingsHive, transferHive, transferLarynx, transferPoint, transferSpk, transferToSavingsHive, undelegateEngineToken, unstakeEngineToken, useClaimPoints, useClaimRewards, useGetExternalWalletBalanceQuery, useHiveKeysQuery, useImportWallet, useSaveWalletInformationToMetadata, useSeedPhrase, useWalletCreate, useWalletOperation, useWalletsCacheQuery, vestsToHp, withdrawVestingRouteHive };
|