@ecency/wallets 1.5.1 → 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 -25
- package/dist/browser/index.js +313 -384
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +330 -382
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +313 -384
- 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,7 +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, 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>;
|
|
126
127
|
|
|
127
128
|
declare function getHiveAssetGeneralInfoQueryOptions(username: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
128
129
|
name: string;
|
|
@@ -807,7 +808,7 @@ interface TransferPayload<T extends HiveBasedAssetSignType> {
|
|
|
807
808
|
}
|
|
808
809
|
declare function transferHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? TransferPayload<T> & {
|
|
809
810
|
key: PrivateKey;
|
|
810
|
-
} : TransferPayload<T
|
|
811
|
+
} : TransferPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
811
812
|
|
|
812
813
|
interface Payload$4<T extends HiveBasedAssetSignType> {
|
|
813
814
|
from: string;
|
|
@@ -818,7 +819,7 @@ interface Payload$4<T extends HiveBasedAssetSignType> {
|
|
|
818
819
|
}
|
|
819
820
|
declare function transferToSavingsHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$4<T> & {
|
|
820
821
|
key: PrivateKey;
|
|
821
|
-
} : Payload$4<T
|
|
822
|
+
} : Payload$4<T>, auth?: AuthContext): Promise<unknown>;
|
|
822
823
|
|
|
823
824
|
interface PayloadBase$1 {
|
|
824
825
|
from: string;
|
|
@@ -832,7 +833,7 @@ interface PayloadWithKey$1<T extends HiveBasedAssetSignType> extends PayloadBase
|
|
|
832
833
|
}
|
|
833
834
|
declare function transferFromSavingsHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? PayloadWithKey$1<T> & {
|
|
834
835
|
key: PrivateKey;
|
|
835
|
-
} : PayloadWithKey$1<T
|
|
836
|
+
} : PayloadWithKey$1<T>, auth?: AuthContext): Promise<unknown>;
|
|
836
837
|
|
|
837
838
|
interface Payload$3<T extends HiveBasedAssetSignType> {
|
|
838
839
|
from: string;
|
|
@@ -843,7 +844,7 @@ interface Payload$3<T extends HiveBasedAssetSignType> {
|
|
|
843
844
|
}
|
|
844
845
|
declare function powerUpHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$3<T> & {
|
|
845
846
|
key: PrivateKey;
|
|
846
|
-
} : Payload$3<T
|
|
847
|
+
} : Payload$3<T>, auth?: AuthContext): Promise<unknown>;
|
|
847
848
|
|
|
848
849
|
interface Payload$2<T extends HiveBasedAssetSignType> {
|
|
849
850
|
from: string;
|
|
@@ -854,7 +855,7 @@ interface Payload$2<T extends HiveBasedAssetSignType> {
|
|
|
854
855
|
}
|
|
855
856
|
declare function delegateHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$2<T> & {
|
|
856
857
|
key: PrivateKey;
|
|
857
|
-
} : Payload$2<T
|
|
858
|
+
} : Payload$2<T>, auth?: AuthContext): Promise<unknown>;
|
|
858
859
|
|
|
859
860
|
interface Payload$1<T extends HiveBasedAssetSignType> {
|
|
860
861
|
from: string;
|
|
@@ -863,7 +864,7 @@ interface Payload$1<T extends HiveBasedAssetSignType> {
|
|
|
863
864
|
}
|
|
864
865
|
declare function powerDownHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$1<T> & {
|
|
865
866
|
key: PrivateKey;
|
|
866
|
-
} : Payload$1<T
|
|
867
|
+
} : Payload$1<T>, auth?: AuthContext): Promise<unknown>;
|
|
867
868
|
|
|
868
869
|
interface Payload<T extends HiveBasedAssetSignType> {
|
|
869
870
|
from_account: string;
|
|
@@ -874,9 +875,9 @@ interface Payload<T extends HiveBasedAssetSignType> {
|
|
|
874
875
|
}
|
|
875
876
|
declare function withdrawVestingRouteHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload<T> & {
|
|
876
877
|
key: PrivateKey;
|
|
877
|
-
} : Payload<T
|
|
878
|
+
} : Payload<T>, auth?: AuthContext): Promise<unknown>;
|
|
878
879
|
|
|
879
|
-
declare function useClaimRewards(username: string, onSuccess: () => void): ReturnType<typeof useBroadcastMutation<void>>;
|
|
880
|
+
declare function useClaimRewards(username: string, auth: AuthContext | undefined, onSuccess: () => void): ReturnType<typeof useBroadcastMutation<void>>;
|
|
880
881
|
|
|
881
882
|
interface PayloadBase {
|
|
882
883
|
from: string;
|
|
@@ -890,7 +891,7 @@ interface PayloadWithKey<T extends HiveBasedAssetSignType> extends PayloadBase {
|
|
|
890
891
|
}
|
|
891
892
|
declare function claimInterestHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? PayloadWithKey<T> & {
|
|
892
893
|
key: PrivateKey;
|
|
893
|
-
} : PayloadWithKey<T
|
|
894
|
+
} : PayloadWithKey<T>, auth?: AuthContext): Promise<unknown>;
|
|
894
895
|
|
|
895
896
|
declare const HIVE_ACCOUNT_OPERATION_GROUPS: Record<HiveOperationGroup, number[]>;
|
|
896
897
|
|
|
@@ -939,7 +940,7 @@ interface SpkTransferPayload<T extends HiveBasedAssetSignType> {
|
|
|
939
940
|
}
|
|
940
941
|
declare function transferSpk<T extends HiveBasedAssetSignType>(payload: T extends "key" ? SpkTransferPayload<T> & {
|
|
941
942
|
key: PrivateKey;
|
|
942
|
-
} : SpkTransferPayload<T
|
|
943
|
+
} : SpkTransferPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
943
944
|
|
|
944
945
|
interface SpkLockPayload<T extends HiveBasedAssetSignType> {
|
|
945
946
|
mode: "lock" | "unlock";
|
|
@@ -949,7 +950,7 @@ interface SpkLockPayload<T extends HiveBasedAssetSignType> {
|
|
|
949
950
|
}
|
|
950
951
|
declare const lockLarynx: <T extends HiveBasedAssetSignType>(payload: T extends "key" ? SpkLockPayload<T> & {
|
|
951
952
|
key: PrivateKey;
|
|
952
|
-
} : SpkLockPayload<T
|
|
953
|
+
} : SpkLockPayload<T>, auth?: AuthContext) => Promise<unknown>;
|
|
953
954
|
|
|
954
955
|
interface SpkPowerPayload<T extends HiveBasedAssetSignType> {
|
|
955
956
|
mode: "up" | "down";
|
|
@@ -959,7 +960,7 @@ interface SpkPowerPayload<T extends HiveBasedAssetSignType> {
|
|
|
959
960
|
}
|
|
960
961
|
declare function powerUpLarynx<T extends HiveBasedAssetSignType>(payload: T extends "key" ? SpkPowerPayload<T> & {
|
|
961
962
|
key: PrivateKey;
|
|
962
|
-
} : SpkPowerPayload<T
|
|
963
|
+
} : SpkPowerPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
963
964
|
|
|
964
965
|
interface LarynxTransferPayload<T extends HiveBasedAssetSignType> {
|
|
965
966
|
from: string;
|
|
@@ -970,7 +971,7 @@ interface LarynxTransferPayload<T extends HiveBasedAssetSignType> {
|
|
|
970
971
|
}
|
|
971
972
|
declare function transferLarynx<T extends HiveBasedAssetSignType>(payload: T extends "key" ? LarynxTransferPayload<T> & {
|
|
972
973
|
key: PrivateKey;
|
|
973
|
-
} : LarynxTransferPayload<T
|
|
974
|
+
} : LarynxTransferPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
974
975
|
|
|
975
976
|
declare function getLarynxAssetGeneralInfoQueryOptions(username: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
976
977
|
name: string;
|
|
@@ -1267,6 +1268,29 @@ interface HiveEngineTokenInfo {
|
|
|
1267
1268
|
volumeExpiration: number;
|
|
1268
1269
|
}
|
|
1269
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
|
+
|
|
1270
1294
|
interface Token {
|
|
1271
1295
|
issuer: string;
|
|
1272
1296
|
symbol: string;
|
|
@@ -1475,7 +1499,7 @@ interface DelegateEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1475
1499
|
}
|
|
1476
1500
|
declare function delegateEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? DelegateEnginePayload<T> & {
|
|
1477
1501
|
key: PrivateKey;
|
|
1478
|
-
} : DelegateEnginePayload<T
|
|
1502
|
+
} : DelegateEnginePayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1479
1503
|
|
|
1480
1504
|
interface UndelegateEnginePayload<T extends HiveBasedAssetSignType> {
|
|
1481
1505
|
from: string;
|
|
@@ -1486,7 +1510,7 @@ interface UndelegateEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1486
1510
|
}
|
|
1487
1511
|
declare function undelegateEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? UndelegateEnginePayload<T> & {
|
|
1488
1512
|
key: PrivateKey;
|
|
1489
|
-
} : UndelegateEnginePayload<T
|
|
1513
|
+
} : UndelegateEnginePayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1490
1514
|
|
|
1491
1515
|
interface StakeEnginePayload<T extends HiveBasedAssetSignType> {
|
|
1492
1516
|
from: string;
|
|
@@ -1497,7 +1521,7 @@ interface StakeEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1497
1521
|
}
|
|
1498
1522
|
declare function stakeEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? StakeEnginePayload<T> & {
|
|
1499
1523
|
key: PrivateKey;
|
|
1500
|
-
} : StakeEnginePayload<T
|
|
1524
|
+
} : StakeEnginePayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1501
1525
|
|
|
1502
1526
|
interface UnstakeEnginePayload<T extends HiveBasedAssetSignType> {
|
|
1503
1527
|
from: string;
|
|
@@ -1508,7 +1532,7 @@ interface UnstakeEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1508
1532
|
}
|
|
1509
1533
|
declare function unstakeEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? UnstakeEnginePayload<T> & {
|
|
1510
1534
|
key: PrivateKey;
|
|
1511
|
-
} : UnstakeEnginePayload<T
|
|
1535
|
+
} : UnstakeEnginePayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
1512
1536
|
|
|
1513
1537
|
interface TransferEnginePayload<T extends HiveBasedAssetSignType> {
|
|
1514
1538
|
from: string;
|
|
@@ -1520,9 +1544,28 @@ interface TransferEnginePayload<T extends HiveBasedAssetSignType> {
|
|
|
1520
1544
|
}
|
|
1521
1545
|
declare function transferEngineToken<T extends HiveBasedAssetSignType>(payload: T extends "key" ? TransferEnginePayload<T> & {
|
|
1522
1546
|
key: PrivateKey;
|
|
1523
|
-
} : 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>;
|
|
1524
1567
|
|
|
1525
|
-
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>;
|
|
1526
1569
|
|
|
1527
1570
|
type PointsSignType = "key" | "keychain" | "hivesigner" | "hiveauth";
|
|
1528
1571
|
interface PointsTransferPayloadBase {
|
|
@@ -1535,7 +1578,7 @@ interface PointsTransferPayloadBase {
|
|
|
1535
1578
|
type PointsTransferPayload<T extends PointsSignType> = T extends "key" ? PointsTransferPayloadBase & {
|
|
1536
1579
|
key: PrivateKey;
|
|
1537
1580
|
} : PointsTransferPayloadBase;
|
|
1538
|
-
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>;
|
|
1539
1582
|
|
|
1540
1583
|
declare function getPointsQueryOptions(username?: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
1541
1584
|
readonly points: any;
|
|
@@ -1676,7 +1719,7 @@ declare function getPointsAssetTransactionsQueryOptions(username: string | undef
|
|
|
1676
1719
|
};
|
|
1677
1720
|
};
|
|
1678
1721
|
|
|
1679
|
-
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>;
|
|
1680
1723
|
|
|
1681
1724
|
interface ExternalWalletBalance {
|
|
1682
1725
|
chain: string;
|
|
@@ -1947,4 +1990,4 @@ declare function buildExternalTx(currency: EcencyWalletCurrency, tx: ExternalTxP
|
|
|
1947
1990
|
|
|
1948
1991
|
declare function getBoundFetch(): typeof fetch;
|
|
1949
1992
|
|
|
1950
|
-
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 };
|