@ecency/sdk 2.1.10 → 2.2.0

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.
@@ -1,7 +1,5 @@
1
1
  import * as _tanstack_react_query from '@tanstack/react-query';
2
2
  import { InfiniteData, UseMutationOptions, MutationKey, QueryClient, QueryKey, UseQueryOptions, UseInfiniteQueryOptions, useMutation } from '@tanstack/react-query';
3
- import { Operation, PrivateKey, Authority as Authority$1, PublicKey, OperationName, utils } from '@ecency/hive-tx';
4
- export { AccountCreateOperation, AssetSymbol, BroadcastResult, CustomJsonOperation, Memo, Operation, OperationName, PrivateKey, PublicKey, Signature, callREST, callRPC, callRPCBroadcast, callWithQuorum, config as hiveTxConfig, utils as hiveTxUtils } from '@ecency/hive-tx';
5
3
 
6
4
  interface AiGenerationPrice {
7
5
  aspect_ratio: string;
@@ -96,11 +94,937 @@ interface DynamicProps$1 {
96
94
  };
97
95
  }
98
96
 
97
+ declare class Signature {
98
+ data: Uint8Array;
99
+ recovery: number;
100
+ private compressed;
101
+ /**
102
+ * Creates a new Signature instance.
103
+ * @param data Raw signature data (64 bytes)
104
+ * @param recovery Recovery byte (0-3)
105
+ * @param compressed Whether signature is compressed (default: true)
106
+ */
107
+ constructor(data: Uint8Array, recovery: number, compressed?: boolean);
108
+ /**
109
+ * Creates a Signature from a hex string.
110
+ * @param string 130-character hex string containing signature and recovery data
111
+ * @returns New Signature instance
112
+ * @throws Error if input is not a string
113
+ */
114
+ static from(string: string): Signature;
115
+ /**
116
+ * Converts signature to 65-byte buffer format.
117
+ * @returns 65-byte buffer containing recovery byte + signature data
118
+ */
119
+ toBuffer(): Uint8Array<ArrayBuffer>;
120
+ /**
121
+ * Returns signature as 130-character hex string.
122
+ * @returns Hex string representation of signature
123
+ */
124
+ customToString(): string;
125
+ /**
126
+ * Returns signature as 130-character hex string.
127
+ * Overrides Object.prototype.toString() so that String(sig) and
128
+ * template literals produce the hex representation instead of "[object Object]".
129
+ * @returns Hex string representation of signature
130
+ */
131
+ toString(): string;
132
+ /**
133
+ * Recovers the public key from this signature and message.
134
+ * @param message 32-byte message hash (Uint8Array) or 64-character hex string
135
+ * @returns PublicKey that created this signature
136
+ * @throws Error if message is not a valid 32-byte SHA256 hash
137
+ */
138
+ getPublicKey(message: Uint8Array | string): PublicKey;
139
+ }
140
+
141
+ declare class PublicKey {
142
+ key: Uint8Array;
143
+ prefix: string;
144
+ /**
145
+ * Creates a new PublicKey instance from raw bytes.
146
+ * @param key Raw public key bytes (33 bytes, compressed format)
147
+ * @param prefix Optional address prefix (defaults to config.address_prefix)
148
+ */
149
+ constructor(key: Uint8Array, prefix?: string);
150
+ /**
151
+ * Creates a PublicKey from a string representation.
152
+ * @param wif Public key string (e.g., "STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA")
153
+ * @returns New PublicKey instance
154
+ * @throws Error if the key format is invalid
155
+ */
156
+ static fromString(wif: string): PublicKey;
157
+ /**
158
+ * Creates a PublicKey from a string or returns the instance if already a PublicKey.
159
+ * @param value Public key string or PublicKey instance
160
+ * @returns New or existing PublicKey instance
161
+ */
162
+ static from(value: string | PublicKey): PublicKey;
163
+ /**
164
+ * Verifies a signature against a message hash.
165
+ * @param message 32-byte message hash to verify
166
+ * @param signature Signature to verify
167
+ * @returns True if signature is valid, false otherwise
168
+ */
169
+ verify(message: Uint8Array, signature: Signature | string): boolean;
170
+ /**
171
+ * Returns the public key as a string for storage or transmission.
172
+ * @returns Public key string with prefix (e.g., "STM8m5UgaFAAYQRuaNejYdS8FVLVp9Ss3K1qAVk5de6F8s3HnVbvA")
173
+ */
174
+ toString(): string;
175
+ /**
176
+ * Returns JSON representation (same as toString()).
177
+ * @returns Public key string
178
+ */
179
+ toJSON(): string;
180
+ /**
181
+ * Returns a string representation for debugging.
182
+ * @returns Formatted public key string
183
+ */
184
+ inspect(): string;
185
+ }
186
+
187
+ type KeyRole = 'owner' | 'active' | 'posting' | 'memo';
99
188
  /**
100
- * Compatibility layer for migrating from @hiveio/dhive to @ecency/hive-tx.
189
+ * ECDSA (secp256k1) private key for signing and encryption operations.
190
+ * Handles key generation, derivation from seeds/passwords, and cryptographic operations.
191
+ *
192
+ * All private keys are stored internally as Uint8Array and can be converted to/from
193
+ * Wallet Import Format (WIF) strings for storage and transmission.
101
194
  *
102
- * Re-exports hive-tx APIs and provides helper functions that bridge the
103
- * API differences between dhive and hive-tx.
195
+ * @example
196
+ * ```typescript
197
+ * // From WIF string
198
+ * const key = PrivateKey.from('5JdeC9P7Pbd1uGdFVEsJ41EkEnADbbHGq6p1BwFxm6txNBsQnsw')
199
+ *
200
+ * // Generate random key
201
+ * const randomKey = PrivateKey.randomKey()
202
+ *
203
+ * // From username and password
204
+ * const loginKey = PrivateKey.fromLogin('username', 'password')
205
+ *
206
+ * // Sign a message
207
+ * const signature = key.sign(someHash)
208
+ *
209
+ * // Get public key
210
+ * const pubKey = key.createPublic()
211
+ * ```
212
+ */
213
+ declare class PrivateKey {
214
+ key: Uint8Array;
215
+ constructor(key: Uint8Array);
216
+ /**
217
+ * Creates a PrivateKey instance from a WIF string or raw Uint8Array.
218
+ * Automatically detects the input type and uses the appropriate method.
219
+ *
220
+ * @param value - WIF formatted string or raw 32-byte key as Uint8Array
221
+ * @returns New PrivateKey instance
222
+ * @throws Error if the key format is invalid
223
+ */
224
+ static from(value: string | Uint8Array): PrivateKey;
225
+ /**
226
+ * Creates a PrivateKey from a Wallet Import Format (WIF) encoded string.
227
+ *
228
+ * @param wif - WIF encoded private key string
229
+ * @returns New PrivateKey instance
230
+ * @throws Error if WIF format is invalid or checksum fails
231
+ */
232
+ static fromString(wif: string): PrivateKey;
233
+ /**
234
+ * Creates a PrivateKey from a seed string or Uint8Array.
235
+ * The seed is hashed with SHA256 to produce the private key.
236
+ *
237
+ * @param seed - Seed string (converted to bytes) or raw byte array
238
+ * @returns New PrivateKey instance derived from seed
239
+ */
240
+ static fromSeed(seed: string | Uint8Array): PrivateKey;
241
+ /**
242
+ * Derives a PrivateKey from username, password, and role using Hive's key derivation scheme.
243
+ * This generates the same keys that the Hive wallet uses for login-based keys.
244
+ *
245
+ * @param username - Hive username
246
+ * @param password - Master password (or seed phrase)
247
+ * @param role - Key role ('owner', 'active', 'posting', 'memo')
248
+ * @returns New PrivateKey instance for the specified role
249
+ */
250
+ static fromLogin(username: string, password: string, role?: KeyRole): PrivateKey;
251
+ /**
252
+ * Signs a 32-byte message hash using ECDSA and returns a recoverable signature.
253
+ * The signature includes recovery information to allow public key recovery.
254
+ *
255
+ * @param message - 32-byte message hash to sign (Uint8Array)
256
+ * @returns Signature object containing the signature data
257
+ */
258
+ sign(message: Uint8Array): Signature;
259
+ /**
260
+ * Derives the corresponding public key for this private key.
261
+ *
262
+ * @param prefix - Optional address prefix (defaults to config.address_prefix)
263
+ * @returns PublicKey instance derived from this private key
264
+ */
265
+ createPublic(prefix?: string): PublicKey;
266
+ /**
267
+ * Returns the private key as a Wallet Import Format (WIF) encoded string.
268
+ * This includes network ID and checksum for safe storage/transmission.
269
+ *
270
+ * @returns WIF encoded private key string
271
+ */
272
+ toString(): string;
273
+ /**
274
+ * Returns a masked representation of the private key for debugging/logging.
275
+ * Shows only the first and last 6 characters to avoid accidental exposure.
276
+ * Use toString() to get the full key for export/serialization.
277
+ *
278
+ * @returns Masked key representation for safe logging
279
+ */
280
+ inspect(): string;
281
+ /**
282
+ * Computes a shared secret using ECDH key exchange for memo encryption.
283
+ * The shared secret is used as a key for AES encryption/decryption.
284
+ *
285
+ * @param publicKey - Other party's public key
286
+ * @returns 64-byte shared secret as Uint8Array
287
+ */
288
+ getSharedSecret(publicKey: PublicKey): Uint8Array;
289
+ /**
290
+ * Generates a new cryptographically secure random private key.
291
+ * Uses the secp256k1 key generation algorithm for security.
292
+ * This method may take up to 250ms due to entropy collection.
293
+ *
294
+ * @returns New randomly generated PrivateKey instance
295
+ */
296
+ static randomKey(): PrivateKey;
297
+ }
298
+
299
+ /** Class representing a hive asset,
300
+ * e.g. `1.000 HIVE` or `12.112233 VESTS`. */
301
+ declare class Asset$1 {
302
+ amount: number;
303
+ symbol: string;
304
+ constructor(amount: number, symbol: string);
305
+ /** Create a new Asset instance from a string, e.g. `42.000 HIVE`. */
306
+ static fromString(string: string, expectedSymbol?: string | null): Asset$1;
307
+ /**
308
+ * Convenience to create new Asset.
309
+ * @param symbol Symbol to use when created from number. Will also be used to validate
310
+ * the asset, throws if the passed value has a different symbol than this.
311
+ */
312
+ static from(value: number | string | Asset$1, symbol?: string | null): Asset$1;
313
+ /** Return asset precision. */
314
+ getPrecision(): 3 | 6;
315
+ /** Return a string representation of this asset, e.g. `42.000 HIVE`. */
316
+ toString(): string;
317
+ toJSON(): string;
318
+ }
319
+
320
+ type AssetSymbol = 'HIVE' | 'HBD' | 'VESTS' | 'STEEM' | 'SBD' | 'TESTS' | 'TBD';
321
+ interface Authority {
322
+ weight_threshold: number;
323
+ account_auths: Array<[string, number]>;
324
+ key_auths: Array<[string | PublicKey, number]>;
325
+ }
326
+ interface Beneficiary$1 {
327
+ account: string;
328
+ weight: number;
329
+ }
330
+ interface Price {
331
+ base: Asset$1 | string;
332
+ quote: Asset$1 | string;
333
+ }
334
+ interface ChainProperties {
335
+ account_creation_fee: Asset$1 | string;
336
+ maximum_block_size: number;
337
+ hbd_interest_rate: number;
338
+ }
339
+ interface VoteOperation {
340
+ voter: string;
341
+ author: string;
342
+ permlink: string;
343
+ weight: number;
344
+ }
345
+ interface CommentOperation {
346
+ parent_author: string;
347
+ parent_permlink: string;
348
+ author: string;
349
+ permlink: string;
350
+ title: string;
351
+ body: string;
352
+ json_metadata: string;
353
+ }
354
+ interface TransferOperation {
355
+ from: string;
356
+ to: string;
357
+ amount: Asset$1 | string;
358
+ memo: string;
359
+ }
360
+ interface TransferToVestingOperation {
361
+ from: string;
362
+ to: string;
363
+ amount: Asset$1 | string;
364
+ }
365
+ interface WithdrawVestingOperation {
366
+ account: string;
367
+ vesting_shares: Asset$1 | string;
368
+ }
369
+ interface AccountCreateOperation {
370
+ fee: Asset$1 | string;
371
+ creator: string;
372
+ new_account_name: string;
373
+ owner: Authority;
374
+ active: Authority;
375
+ posting: Authority;
376
+ memo_key: string | PublicKey;
377
+ json_metadata: string;
378
+ }
379
+ interface AccountCreateWithDelegationOperation {
380
+ fee: Asset$1 | string;
381
+ delegation: Asset$1 | string;
382
+ creator: string;
383
+ new_account_name: string;
384
+ owner: Authority;
385
+ active: Authority;
386
+ posting: Authority;
387
+ memo_key: string | PublicKey;
388
+ json_metadata: string;
389
+ extensions: [];
390
+ }
391
+ interface AccountUpdateOperation {
392
+ account: string;
393
+ owner?: Authority;
394
+ active?: Authority;
395
+ posting?: Authority;
396
+ memo_key: string | PublicKey;
397
+ json_metadata: string;
398
+ }
399
+ interface AccountUpdate2Operation {
400
+ account: string;
401
+ owner?: Authority;
402
+ active?: Authority;
403
+ posting?: Authority;
404
+ memo_key?: string | PublicKey;
405
+ json_metadata: string;
406
+ posting_json_metadata: string;
407
+ extensions: [];
408
+ }
409
+ interface AccountWitnessVoteOperation {
410
+ account: string;
411
+ witness: string;
412
+ approve: boolean;
413
+ }
414
+ interface AccountWitnessProxyOperation {
415
+ account: string;
416
+ proxy: string;
417
+ }
418
+ interface ConvertOperation {
419
+ owner: string;
420
+ requestid: number;
421
+ amount: Asset$1 | string;
422
+ }
423
+ interface CollateralizedConvertOperation {
424
+ owner: string;
425
+ requestid: number;
426
+ amount: Asset$1 | string;
427
+ }
428
+ interface CustomOperation {
429
+ required_auths: string[];
430
+ id: number;
431
+ data: Uint8Array | string;
432
+ }
433
+ interface CustomJsonOperation {
434
+ required_auths: string[];
435
+ required_posting_auths: string[];
436
+ id: string;
437
+ json: string;
438
+ }
439
+ interface ClaimAccountOperation {
440
+ creator: string;
441
+ fee: Asset$1 | string;
442
+ extensions: [];
443
+ }
444
+ interface CreateClaimedAccountOperation {
445
+ creator: string;
446
+ new_account_name: string;
447
+ owner: Authority;
448
+ active: Authority;
449
+ posting: Authority;
450
+ memo_key: string | PublicKey;
451
+ json_metadata: string;
452
+ extensions: [];
453
+ }
454
+ interface ClaimRewardBalanceOperation {
455
+ account: string;
456
+ reward_hive: Asset$1 | string;
457
+ reward_hbd: Asset$1 | string;
458
+ reward_vests: Asset$1 | string;
459
+ }
460
+ interface DelegateVestingSharesOperation {
461
+ delegator: string;
462
+ delegatee: string;
463
+ vesting_shares: Asset$1 | string;
464
+ }
465
+ interface DeleteCommentOperation {
466
+ author: string;
467
+ permlink: string;
468
+ }
469
+ interface CommentOptionsOperation {
470
+ author: string;
471
+ permlink: string;
472
+ max_accepted_payout: Asset$1 | string;
473
+ percent_hbd: number;
474
+ allow_votes: boolean;
475
+ allow_curation_rewards: boolean;
476
+ extensions: [number, {
477
+ beneficiaries: Beneficiary$1[];
478
+ }][];
479
+ }
480
+ interface SetWithdrawVestingRouteOperation {
481
+ from_account: string;
482
+ to_account: string;
483
+ percent: number;
484
+ auto_vest: boolean;
485
+ }
486
+ interface WitnessUpdateOperation {
487
+ owner: string;
488
+ url: string;
489
+ block_signing_key: string | PublicKey;
490
+ props: ChainProperties;
491
+ fee: Asset$1 | string;
492
+ }
493
+ interface WitnessSetPropertiesOperation {
494
+ owner: string;
495
+ props: Array<[string, string]>;
496
+ extensions: [];
497
+ }
498
+ interface DeclineVotingRightsOperation {
499
+ account: string;
500
+ decline: boolean;
501
+ }
502
+ interface ResetAccountOperation {
503
+ reset_account: string;
504
+ account_to_reset: string;
505
+ new_owner_authority: Authority;
506
+ }
507
+ interface SetResetAccountOperation {
508
+ account: string;
509
+ current_reset_account: string;
510
+ reset_account: string;
511
+ }
512
+ interface TransferToSavingsOperation {
513
+ from: string;
514
+ to: string;
515
+ amount: Asset$1 | string;
516
+ memo: string;
517
+ }
518
+ interface TransferFromSavingsOperation {
519
+ from: string;
520
+ request_id: number;
521
+ to: string;
522
+ amount: Asset$1 | string;
523
+ memo: string;
524
+ }
525
+ interface CancelTransferFromSavingsOperation {
526
+ from: string;
527
+ request_id: number;
528
+ }
529
+ interface LimitOrderCreateOperation {
530
+ owner: string;
531
+ orderid: number;
532
+ amount_to_sell: Asset$1 | string;
533
+ min_to_receive: Asset$1 | string;
534
+ fill_or_kill: boolean;
535
+ expiration: string | Date;
536
+ }
537
+ interface LimitOrderCreate2Operation {
538
+ owner: string;
539
+ orderid: number;
540
+ amount_to_sell: Asset$1 | string;
541
+ fill_or_kill: boolean;
542
+ exchange_rate: Price;
543
+ expiration: string | Date;
544
+ }
545
+ interface LimitOrderCancelOperation {
546
+ owner: string;
547
+ orderid: number;
548
+ }
549
+ interface FeedPublishOperation {
550
+ publisher: string;
551
+ exchange_rate: Price;
552
+ }
553
+ interface EscrowTransferOperation {
554
+ from: string;
555
+ to: string;
556
+ hbd_amount: Asset$1 | string;
557
+ hive_amount: Asset$1 | string;
558
+ escrow_id: number;
559
+ agent: string;
560
+ fee: Asset$1 | string;
561
+ json_meta: string;
562
+ ratification_deadline: string | Date;
563
+ escrow_expiration: string | Date;
564
+ }
565
+ interface EscrowDisputeOperation {
566
+ from: string;
567
+ to: string;
568
+ agent: string;
569
+ who: string;
570
+ escrow_id: number;
571
+ }
572
+ interface EscrowReleaseOperation {
573
+ from: string;
574
+ to: string;
575
+ agent: string;
576
+ who: string;
577
+ receiver: string;
578
+ escrow_id: number;
579
+ hbd_amount: Asset$1 | string;
580
+ hive_amount: Asset$1 | string;
581
+ }
582
+ interface EscrowApproveOperation {
583
+ from: string;
584
+ to: string;
585
+ agent: string;
586
+ who: string;
587
+ escrow_id: number;
588
+ approve: boolean;
589
+ }
590
+ interface RecoverAccountOperation {
591
+ account_to_recover: string;
592
+ new_owner_authority: Authority;
593
+ recent_owner_authority: Authority;
594
+ extensions: [];
595
+ }
596
+ interface RequestAccountRecoveryOperation {
597
+ recovery_account: string;
598
+ account_to_recover: string;
599
+ new_owner_authority: Authority;
600
+ extensions: [];
601
+ }
602
+ interface ChangeRecoveryAccountOperation {
603
+ account_to_recover: string;
604
+ new_recovery_account: string;
605
+ extensions: [];
606
+ }
607
+ interface RecurrentTransferOperation {
608
+ from: string;
609
+ to: string;
610
+ amount: Asset$1 | string;
611
+ memo: string;
612
+ recurrence: number;
613
+ executions: number;
614
+ extensions: Array<{
615
+ type: number;
616
+ value: {
617
+ pair_id: number;
618
+ };
619
+ }>;
620
+ }
621
+ interface CreateProposalOperation {
622
+ creator: string;
623
+ receiver: string;
624
+ start_date: string | Date;
625
+ end_date: string | Date;
626
+ daily_pay: Asset$1 | string;
627
+ subject: string;
628
+ permlink: string;
629
+ extensions: [];
630
+ }
631
+ interface UpdateProposalOperation {
632
+ proposal_id: number;
633
+ creator: string;
634
+ daily_pay: Asset$1 | string;
635
+ subject: string;
636
+ permlink: string;
637
+ extensions: [number, {
638
+ end_date: string;
639
+ }][];
640
+ }
641
+ interface UpdateProposalVotesOperation {
642
+ voter: string;
643
+ proposal_ids: number[];
644
+ approve: boolean;
645
+ extensions: [];
646
+ }
647
+ interface RemoveProposalOperation {
648
+ proposal_owner: string;
649
+ proposal_ids: number[];
650
+ extensions: [];
651
+ }
652
+ type Operation = ['vote', VoteOperation] | ['comment', CommentOperation] | ['transfer', TransferOperation] | ['transfer_to_vesting', TransferToVestingOperation] | ['withdraw_vesting', WithdrawVestingOperation] | ['account_create', AccountCreateOperation] | ['account_create_with_delegation', AccountCreateWithDelegationOperation] | ['account_update', AccountUpdateOperation] | ['account_update2', AccountUpdate2Operation] | ['account_witness_vote', AccountWitnessVoteOperation] | ['account_witness_proxy', AccountWitnessProxyOperation] | ['convert', ConvertOperation] | ['collateralized_convert', CollateralizedConvertOperation] | ['custom', CustomOperation] | ['custom_json', CustomJsonOperation] | ['claim_account', ClaimAccountOperation] | ['create_claimed_account', CreateClaimedAccountOperation] | ['claim_reward_balance', ClaimRewardBalanceOperation] | ['delegate_vesting_shares', DelegateVestingSharesOperation] | ['delete_comment', DeleteCommentOperation] | ['comment_options', CommentOptionsOperation] | ['set_withdraw_vesting_route', SetWithdrawVestingRouteOperation] | ['witness_update', WitnessUpdateOperation] | ['witness_set_properties', WitnessSetPropertiesOperation] | ['decline_voting_rights', DeclineVotingRightsOperation] | ['reset_account', ResetAccountOperation] | ['set_reset_account', SetResetAccountOperation] | ['transfer_to_savings', TransferToSavingsOperation] | ['transfer_from_savings', TransferFromSavingsOperation] | ['cancel_transfer_from_savings', CancelTransferFromSavingsOperation] | ['limit_order_create', LimitOrderCreateOperation] | ['limit_order_create2', LimitOrderCreate2Operation] | ['limit_order_cancel', LimitOrderCancelOperation] | ['feed_publish', FeedPublishOperation] | ['escrow_transfer', EscrowTransferOperation] | ['escrow_dispute', EscrowDisputeOperation] | ['escrow_release', EscrowReleaseOperation] | ['escrow_approve', EscrowApproveOperation] | ['recover_account', RecoverAccountOperation] | ['request_account_recovery', RequestAccountRecoveryOperation] | ['change_recovery_account', ChangeRecoveryAccountOperation] | ['recurrent_transfer', RecurrentTransferOperation] | ['create_proposal', CreateProposalOperation] | ['update_proposal', UpdateProposalOperation] | ['update_proposal_votes', UpdateProposalVotesOperation] | ['remove_proposal', RemoveProposalOperation];
653
+ type OperationName = Operation[0];
654
+ type OperationBody<O extends OperationName> = Extract<Operation, [O, any]>[1];
655
+ type Extension = [] | [string, unknown] | [number, unknown];
656
+ interface TransactionType {
657
+ expiration: string;
658
+ extensions: Extension[];
659
+ operations: [OperationName, OperationBody<OperationName>][];
660
+ ref_block_num: number;
661
+ ref_block_prefix: number;
662
+ signatures: string[];
663
+ }
664
+ interface BroadcastResult {
665
+ tx_id: string;
666
+ status: 'unknown' | 'within_irreversible_block' | 'expired_irreversible' | 'too_old';
667
+ }
668
+ interface DigestData {
669
+ digest: Uint8Array;
670
+ txId: string;
671
+ }
672
+ interface TransactionStatus {
673
+ status: 'unknown' | 'within_mempool' | 'within_reversible_block' | 'within_irreversible_block' | 'expired_reversible' | 'expired_irreversible' | 'too_old';
674
+ }
675
+
676
+ interface TransactionOptions {
677
+ transaction?: TransactionType | Transaction$1;
678
+ /**
679
+ * Transaction expiration in milliseconds (ms) - max 86400000 (24 hours)
680
+ * @default 60_000
681
+ */
682
+ expiration?: number;
683
+ }
684
+ declare class Transaction$1 {
685
+ transaction?: TransactionType;
686
+ expiration: number;
687
+ private txId?;
688
+ constructor(options?: TransactionOptions);
689
+ /**
690
+ * Adds an operation to the transaction. If no transaction exists, creates one first.
691
+ * @template O Operation name type for type safety
692
+ * @param operationName The name/type of the operation to add (e.g., 'transfer', 'vote', 'comment')
693
+ * @param operationBody The operation data/body for the specified operation type
694
+ * @returns Promise that resolves when the operation is added
695
+ * @throws Error if transaction creation fails or global properties cannot be retrieved
696
+ */
697
+ addOperation<O extends OperationName>(operationName: O, operationBody: OperationBody<O>): Promise<void>;
698
+ /**
699
+ * Signs the transaction with the provided key(s), supporting both single and multi-signature transactions.
700
+ * For multi-signature, you can sign with all keys at once or sign individually by calling this method multiple times.
701
+ * @param keys Single PrivateKey or array of PrivateKeys to sign the transaction with
702
+ * @returns The signed transaction
703
+ * @throws Error if no transaction exists to sign
704
+ */
705
+ sign(keys: PrivateKey | PrivateKey[]): TransactionType;
706
+ /**
707
+ * Broadcasts the signed transaction to the Hive network.
708
+ * Automatically handles retries and duplicate transaction detection.
709
+ * @param checkStatus By default (false) the transaction is not guaranteed to be included in a block.
710
+ * For example the transaction can expire while waiting in mempool.
711
+ * If you pass true here, the function will wait for the transaction to be either included or dropped
712
+ * before returning a result.
713
+ * @returns Promise resolving to broadcast result
714
+ * @throws Error if no transaction exists or transaction is not signed or transaction got rejected
715
+ */
716
+ broadcast(checkStatus?: boolean): Promise<BroadcastResult>;
717
+ /**
718
+ * Returns the transaction digest containing the transaction ID and hash.
719
+ * The digest can be used to verify signatures and for transaction identification.
720
+ * @returns DigestData containing transaction ID and hash
721
+ * @throws Error if no transaction exists
722
+ */
723
+ digest(): DigestData;
724
+ /**
725
+ * Adds a signature to an already created transaction. Useful when signing with external tools.
726
+ * Multiple signatures can be added one at a time for multi-signature transactions.
727
+ * @param signature The signature string in hex format (must be exactly 130 characters)
728
+ * @returns The transaction with the added signature
729
+ * @throws Error if no transaction exists or signature format is invalid
730
+ */
731
+ addSignature(signature: string): TransactionType;
732
+ /** Get status of this transaction. Usually called internally after broadcasting. */
733
+ checkStatus(): Promise<TransactionStatus>;
734
+ /**
735
+ * Creates the transaction structure and initializes it with blockchain data.
736
+ * Retrieves current head block information and sets up reference block data.
737
+ * @private
738
+ * @param expiration Transaction expiration in milliseconds
739
+ */
740
+ private createTransaction;
741
+ }
742
+
743
+ /**
744
+ * REST API method identifiers for Hive blockchain APIs.
745
+ * Used by callREST() to route requests to the correct API path prefix.
746
+ */
747
+ type APIMethods = 'balance' | 'hafah' | 'hafbe' | 'hivemind' | 'hivesense' | 'reputation' | 'nft-tracker' | 'hafsql' | 'status';
748
+
749
+ /**
750
+ * Makes API calls to Hive blockchain nodes with automatic retry and failover support.
751
+ * Uses per-request retry counters, node health tracking, jitter between retries,
752
+ * and HTTP status awareness (429 rate limiting, 503).
753
+ *
754
+ * If the current node fails, it will automatically try the next healthy node.
755
+ * When all nodes have been tried, wraps around to give earlier nodes another chance
756
+ * until the full retry budget (config.retry) is exhausted.
757
+ * RPCErrors (valid blockchain rejections) are never retried.
758
+ *
759
+ * @param method - The API method name (e.g., 'condenser_api.get_accounts')
760
+ * @param params - Parameters for the API method as array or object
761
+ * @param timeout - Request timeout in milliseconds (default: config.timeout)
762
+ * @param retry - Maximum number of retry attempts (default: config.retry)
763
+ * @returns Promise resolving to the API response
764
+ * @throws {RPCError} On blockchain-level errors (bad params, missing authority, etc.)
765
+ * @throws {Error} If all retry attempts fail
766
+ *
767
+ * @example
768
+ * ```typescript
769
+ * import { callRPC } from 'hive-tx'
770
+ *
771
+ * // Get account information
772
+ * const accounts = await callRPC('condenser_api.get_accounts', [['alice']])
773
+ *
774
+ * // Custom timeout and retry settings
775
+ * const data = await callRPC('condenser_api.get_content', ['alice', 'test-post'], 10_000, 5)
776
+ * ```
777
+ */
778
+ declare const callRPC: <T = any>(method: string, params?: any[] | object, timeout?: number, retry?: number, signal?: AbortSignal) => Promise<T>;
779
+ /**
780
+ * Broadcast-safe RPC call. Only retries on pre-connection errors where the
781
+ * request definitively never reached the server (ECONNREFUSED, ENOTFOUND, etc.).
782
+ * On timeouts, HTTP errors, or any ambiguous failure, throws immediately to
783
+ * prevent double-broadcasting transactions.
784
+ *
785
+ * Tries each node once (no wrap-around) since broadcast retries are dangerous.
786
+ *
787
+ * @internal Used by Transaction.broadcast()
788
+ */
789
+ declare const callRPCBroadcast: <T = any>(method: string, params?: any[] | object, timeout?: number, signal?: AbortSignal) => Promise<T>;
790
+ /**
791
+ * Makes REST API calls to Hive blockchain REST endpoints with automatic retry and failover support.
792
+ * Uses per-request retry counters, node health tracking, and timeout support.
793
+ * Wraps around the node list to honor the full retry budget.
794
+ *
795
+ * @template Api - The REST API method type (e.g., 'balance', 'hafah', 'hivemind', etc.)
796
+ * @template P - The endpoint path type for the specified API
797
+ *
798
+ * @param api - The REST API method name to call
799
+ * @param endpoint - The specific endpoint path within the API
800
+ * @param params - Optional parameters for path and query string replacement
801
+ * @param timeout - Request timeout in milliseconds (default: config.timeout)
802
+ * @param retry - Number of retry attempts before throwing an error (default: config.retry)
803
+ *
804
+ * @returns Promise resolving to the API response data with proper typing
805
+ * @throws Error if all retry attempts fail
806
+ *
807
+ * @example
808
+ * ```typescript
809
+ * import { callREST } from 'hive-tx'
810
+ *
811
+ * // Get account balance
812
+ * const balance = await callREST('balance', '/accounts/{account-name}/balances', { "account-name": 'alice' })
813
+ *
814
+ * // Custom timeout and retry settings
815
+ * const data = await callREST('status', '/status', undefined, 10_000, 3)
816
+ * ```
817
+ */
818
+ declare function callREST(api: APIMethods, endpoint: string, params?: Record<string, any>, timeout?: number, retry?: number, signal?: AbortSignal): Promise<any>;
819
+ /**
820
+ * Make a JSONRPC call with quorum. The method will cross-check the result
821
+ * with `quorum` number of nodes before returning the result.
822
+ * @param method - The API method name (e.g., 'condenser_api.get_accounts')
823
+ * @param params - Parameters for the API method as array or object
824
+ * @param quorum - Default: 2 (recommended)
825
+ */
826
+ declare const callWithQuorum: <T = any>(method: string, params?: any[] | object, quorum?: number, signal?: AbortSignal) => Promise<T>;
827
+
828
+ /**
829
+ * Unified configuration for Hive blockchain connectivity.
830
+ * This is the single source of truth for node endpoints, timeouts, and chain settings.
831
+ * Mutate this object directly or use ConfigManager.setHiveNodes() for validated updates.
832
+ */
833
+ declare const config: {
834
+ /**
835
+ * Array of Hive API node endpoints for load balancing and failover.
836
+ */
837
+ nodes: string[];
838
+ /**
839
+ * Array of Hive API node endpoints that support REST APIs.
840
+ * Note: Without the trailing /
841
+ */
842
+ restNodes: string[];
843
+ /**
844
+ * The Hive blockchain chain ID for transaction signing and verification.
845
+ */
846
+ chain_id: string;
847
+ /**
848
+ * Address prefix used for public key formatting (STM for mainnet).
849
+ */
850
+ address_prefix: string;
851
+ /**
852
+ * Timeout in milliseconds for individual API calls.
853
+ */
854
+ timeout: number;
855
+ /**
856
+ * Number of retry attempts for failed API calls before throwing an error.
857
+ */
858
+ retry: number;
859
+ };
860
+
861
+ type Memo = {
862
+ /**
863
+ * Encrypts a memo for secure private messaging
864
+ */
865
+ encode(privateKey: string | PrivateKey, publicKey: string | PublicKey, memo: string, testNonce?: any): string;
866
+ /**
867
+ * Decrypts a memo message
868
+ */
869
+ decode(privateKey: string | PrivateKey, memo: string): string;
870
+ };
871
+ /**
872
+ * Memo utilities for encrypting and decrypting private messages between Hive users.
873
+ * Uses AES encryption with ECDH key exchange for secure communication.
874
+ *
875
+ * Messages must start with '#' to be encrypted/decrypted.
876
+ * Plain text messages (without '#') are returned unchanged.
877
+ *
878
+ * @example
879
+ * ```typescript
880
+ * import { Memo, PrivateKey, PublicKey } from 'hive-tx'
881
+ *
882
+ * // Encrypt a message
883
+ * const encrypted = Memo.encode(senderPrivateKey, recipientPublicKey, '#Hello World')
884
+ *
885
+ * // Decrypt a message
886
+ * const decrypted = Memo.decode(recipientPrivateKey, encrypted)
887
+ * console.log(decrypted) // '#Hello World'
888
+ * ```
889
+ */
890
+ declare const Memo: {
891
+ decode: (privateKey: string | PrivateKey, memo: string) => string;
892
+ encode: (privateKey: string | PrivateKey, publicKey: string | PublicKey, memo: string, testNonce?: any) => string;
893
+ };
894
+
895
+ interface WitnessProps {
896
+ account_creation_fee?: string;
897
+ account_subsidy_budget?: number;
898
+ account_subsidy_decay?: number;
899
+ key: PublicKey | string;
900
+ maximum_block_size?: number;
901
+ new_signing_key?: PublicKey | string | null;
902
+ hbd_exchange_rate?: {
903
+ base: string;
904
+ quote: string;
905
+ };
906
+ hbd_interest_rate?: number;
907
+ url?: string;
908
+ }
909
+ /** Return null for a valid username */
910
+ declare const validateUsername: (username: string) => null | string;
911
+ declare const operations: {
912
+ vote: number;
913
+ comment: number;
914
+ transfer: number;
915
+ transfer_to_vesting: number;
916
+ withdraw_vesting: number;
917
+ limit_order_create: number;
918
+ limit_order_cancel: number;
919
+ feed_publish: number;
920
+ convert: number;
921
+ account_create: number;
922
+ account_update: number;
923
+ witness_update: number;
924
+ account_witness_vote: number;
925
+ account_witness_proxy: number;
926
+ pow: number;
927
+ custom: number;
928
+ report_over_production: number;
929
+ delete_comment: number;
930
+ custom_json: number;
931
+ comment_options: number;
932
+ set_withdraw_vesting_route: number;
933
+ limit_order_create2: number;
934
+ claim_account: number;
935
+ create_claimed_account: number;
936
+ request_account_recovery: number;
937
+ recover_account: number;
938
+ change_recovery_account: number;
939
+ escrow_transfer: number;
940
+ escrow_dispute: number;
941
+ escrow_release: number;
942
+ pow2: number;
943
+ escrow_approve: number;
944
+ transfer_to_savings: number;
945
+ transfer_from_savings: number;
946
+ cancel_transfer_from_savings: number;
947
+ custom_binary: number;
948
+ decline_voting_rights: number;
949
+ reset_account: number;
950
+ set_reset_account: number;
951
+ claim_reward_balance: number;
952
+ delegate_vesting_shares: number;
953
+ account_create_with_delegation: number;
954
+ witness_set_properties: number;
955
+ account_update2: number;
956
+ create_proposal: number;
957
+ update_proposal_votes: number;
958
+ remove_proposal: number;
959
+ update_proposal: number;
960
+ collateralized_convert: number;
961
+ recurrent_transfer: number;
962
+ fill_convert_request: number;
963
+ author_reward: number;
964
+ curation_reward: number;
965
+ comment_reward: number;
966
+ liquidity_reward: number;
967
+ interest: number;
968
+ fill_vesting_withdraw: number;
969
+ fill_order: number;
970
+ shutdown_witness: number;
971
+ fill_transfer_from_savings: number;
972
+ hardfork: number;
973
+ comment_payout_update: number;
974
+ return_vesting_delegation: number;
975
+ comment_benefactor_reward: number;
976
+ producer_reward: number;
977
+ clear_null_account_balance: number;
978
+ proposal_pay: number;
979
+ sps_fund: number;
980
+ hardfork_hive: number;
981
+ hardfork_hive_restore: number;
982
+ delayed_voting: number;
983
+ consolidate_treasury_balance: number;
984
+ effective_comment_vote: number;
985
+ ineffective_delete_comment: number;
986
+ sps_convert: number;
987
+ expired_account_notification: number;
988
+ changed_recovery_account: number;
989
+ transfer_to_vesting_completed: number;
990
+ pow_reward: number;
991
+ vesting_shares_split: number;
992
+ account_created: number;
993
+ fill_collateralized_convert_request: number;
994
+ system_warning: number;
995
+ fill_recurrent_transfer: number;
996
+ failed_recurrent_transfer: number;
997
+ limit_order_cancelled: number;
998
+ producer_missed: number;
999
+ proposal_fee: number;
1000
+ collateralized_convert_immediate_conversion: number;
1001
+ escrow_approved: number;
1002
+ escrow_rejected: number;
1003
+ proxy_cleared: number;
1004
+ declined_voting_rights: number;
1005
+ };
1006
+ /**
1007
+ * Make bitmask filter to be used with get_account_history call
1008
+ */
1009
+ declare const makeBitMaskFilter: (allowedOperations: number[]) => [string | null, string | null];
1010
+ declare const buildWitnessSetProperties: (owner: string, props: WitnessProps) => ["witness_set_properties", {
1011
+ extensions: never[];
1012
+ owner: string;
1013
+ props: any;
1014
+ }];
1015
+
1016
+ type utils_WitnessProps = WitnessProps;
1017
+ declare const utils_buildWitnessSetProperties: typeof buildWitnessSetProperties;
1018
+ declare const utils_makeBitMaskFilter: typeof makeBitMaskFilter;
1019
+ declare const utils_operations: typeof operations;
1020
+ declare const utils_validateUsername: typeof validateUsername;
1021
+ declare namespace utils {
1022
+ export { type utils_WitnessProps as WitnessProps, utils_buildWitnessSetProperties as buildWitnessSetProperties, utils_makeBitMaskFilter as makeBitMaskFilter, utils_operations as operations, utils_validateUsername as validateUsername };
1023
+ }
1024
+
1025
+ /**
1026
+ * Re-exports hive-tx APIs and provides helper functions that bridge
1027
+ * API differences from the legacy dhive library.
104
1028
  */
105
1029
 
106
1030
  /** Compatible with dhive's TransactionConfirmation from broadcast_transaction_synchronous */
@@ -158,16 +1082,6 @@ interface ManaResult {
158
1082
  declare function calculateVPMana(account: any): ManaResult;
159
1083
  /** Calculate RC mana (equivalent to dhive client.rc.calculateRCMana) */
160
1084
  declare function calculateRCMana(rcAccount: RCAccount): ManaResult;
161
- /**
162
- * Configure hive-tx nodes. Call this from ConfigManager.setHiveNodes().
163
- * Replaces dhive's `new Client(nodes, options)`.
164
- */
165
- declare function setHiveTxNodes(nodes: string[], timeout?: number): void;
166
- /**
167
- * Initialize hive-tx with default node configuration.
168
- * Called once during SDK init.
169
- */
170
- declare function initHiveTx(nodes: string[], timeout?: number): void;
171
1085
 
172
1086
  /**
173
1087
  * Platform-specific adapter for SDK mutations.
@@ -722,9 +1636,9 @@ interface AccountProfile {
722
1636
 
723
1637
  interface FullAccount {
724
1638
  name: string;
725
- owner: Authority$1;
726
- active: Authority$1;
727
- posting: Authority$1;
1639
+ owner: Authority;
1640
+ active: Authority;
1641
+ posting: Authority;
728
1642
  memo_key: string;
729
1643
  post_count: number;
730
1644
  created: string;
@@ -1237,7 +2151,7 @@ interface Payload$2 {
1237
2151
  keysToRevoke?: string[];
1238
2152
  keysToRevokeByAuthority?: Partial<Record<keyof Keys, string[]>>;
1239
2153
  }
1240
- declare function dedupeAndSortKeyAuths(existing: Authority$1["key_auths"], additions: [string, number][]): Authority$1["key_auths"];
2154
+ declare function dedupeAndSortKeyAuths(existing: Authority["key_auths"], additions: [string, number][]): Authority["key_auths"];
1241
2155
  type UpdateKeyAuthsOptions = Pick<UseMutationOptions<unknown, Error, Payload$2>, "onSuccess" | "onError">;
1242
2156
  declare function useAccountUpdateKeyAuths(username: string, options?: UpdateKeyAuthsOptions): _tanstack_react_query.UseMutationResult<TransactionConfirmation, Error, Payload$2, unknown>;
1243
2157
 
@@ -1453,7 +2367,8 @@ declare const INTERNAL_API_TIMEOUT_MS = 10000;
1453
2367
  declare const CONFIG: {
1454
2368
  privateApiHost: string;
1455
2369
  imageHost: string;
1456
- hiveNodes: string[];
2370
+ /** Current Hive RPC nodes. Reads from the unified hive-tx config. */
2371
+ readonly hiveNodes: string[];
1457
2372
  heliusApiKey: string | undefined;
1458
2373
  queryClient: QueryClient;
1459
2374
  plausibleHost: string;
@@ -1496,7 +2411,8 @@ declare namespace ConfigManager {
1496
2411
  */
1497
2412
  function setImageHost(host: string): void;
1498
2413
  /**
1499
- * Set Hive RPC nodes, replacing the default list and updating hive-tx config.
2414
+ * Set Hive RPC nodes, replacing the default list.
2415
+ * Directly updates the unified hive-tx config object.
1500
2416
  * @param nodes - Array of Hive RPC node URLs
1501
2417
  */
1502
2418
  function setHiveNodes(nodes: string[]): void;
@@ -1959,7 +2875,7 @@ declare function useAccountRevokeKey(username: string | undefined, options?: Rev
1959
2875
  * after removing the given keys. This prevents revoking keys that
1960
2876
  * would leave an authority unable to sign (especially for multisig).
1961
2877
  */
1962
- declare function canRevokeFromAuthority(auth: Authority$1, revokingKeyStrs: Set<string>): boolean;
2878
+ declare function canRevokeFromAuthority(auth: Authority, revokingKeyStrs: Set<string>): boolean;
1963
2879
  /**
1964
2880
  * Build an account_update operation that removes the given public keys
1965
2881
  * from the relevant authorities.
@@ -1973,9 +2889,9 @@ declare function canRevokeFromAuthority(auth: Authority$1, revokingKeyStrs: Set<
1973
2889
  declare function buildRevokeKeysOp(accountData: FullAccount, revokingKeys: PublicKey[]): {
1974
2890
  account: string;
1975
2891
  json_metadata: string;
1976
- owner: Authority$1 | undefined;
1977
- active: Authority$1;
1978
- posting: Authority$1;
2892
+ owner: Authority | undefined;
2893
+ active: Authority;
2894
+ posting: Authority;
1979
2895
  memo_key: string;
1980
2896
  };
1981
2897
 
@@ -2504,14 +3420,6 @@ declare function buildClaimRewardBalanceOp(account: string, rewardHive: string,
2504
3420
  * Account Operations
2505
3421
  * Operations for managing accounts, keys, and permissions
2506
3422
  */
2507
- /**
2508
- * Authority structure for account operations
2509
- */
2510
- interface Authority {
2511
- weight_threshold: number;
2512
- account_auths: [string, number][];
2513
- key_auths: [string, number][];
2514
- }
2515
3423
  /**
2516
3424
  * Builds an account update operation.
2517
3425
  * @param account - Account name
@@ -6002,7 +6910,7 @@ type HiveOperationGroup = "" | "transfers" | "market-orders" | "interests" | "st
6002
6910
  * In hive-tx, utils.operations includes both real and virtual operations,
6003
6911
  * so there is no separate VirtualOperationName type.
6004
6912
  */
6005
- type HiveOperationName = keyof typeof utils.operations;
6913
+ type HiveOperationName = keyof typeof operations;
6006
6914
  type HiveOperationFilterValue = HiveOperationGroup | HiveOperationName;
6007
6915
  type HiveOperationFilter = HiveOperationFilterValue | HiveOperationFilterValue[];
6008
6916
  type HiveOperationFilterKey = string;
@@ -8187,4 +9095,4 @@ declare function getBadActorsQueryOptions(): _tanstack_react_query.OmitKeyof<_ta
8187
9095
  };
8188
9096
  };
8189
9097
 
8190
- export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountFavorite, type AccountFollowStats, type AccountKeys, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AiAssistParams, type AiAssistPrice, type AiAssistResponse, type AiGenerationPrice, type AiGenerationRequest, type AiGenerationResponse, type AiImagePowerTier, type AiImagePriceResponse, type Announcement, type ApiBookmarkNotification, type ApiDelegationsNotification, type ApiFavoriteNotification, type ApiFollowNotification, type ApiInactiveNotification, type ApiMentionNotification, type ApiNotification, type ApiNotificationSetting, type ApiReblogNotification, type ApiReferralNotification, type ApiReplyNotification, type ApiResponse, type ApiSpinNotification, type ApiTransferNotification, type ApiVoteNotification, type ApiWeeklyEarningsNotification, type Asset, AssetOperation, type AuthContext, type AuthContextV2, type AuthMethod, type AuthorReward, type Authority, type AuthorityLevel, type AuthorityType, type Beneficiary, type BlogEntry, type BoostPlusAccountPrice, type BoostPlusPayload, type BuildProfileMetadataArgs, BuySellTransactionType, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimAccountPayload, type ClaimEngineRewardsPayload, type ClaimInterestPayload, type ClaimRewardBalance, type ClaimRewardsPayload, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayload, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityProps, type CommunityRewardsRegisterPayload, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type ConvertPayload, type CreateAccountPayload, type CrossPostPayload, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DelegateEngineTokenPayload, type DelegateRcPayload, type DelegateVestingShares, type DelegateVestingSharesPayload, type DelegatedVestingShare, type DeleteCommentPayload, type DeletedEntry, type Draft, type DraftMetadata, type DraftsWrappedResponse, type DynamicProps$1 as DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type EngineMarketOrderPayload, EntriesCacheManagement, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, ErrorType, type FeedHistoryItem, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type FollowPayload, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GeneralAssetInfo, type GeneralAssetTransaction, type GenerateImageParams, type GetGameStatus, type GetRecoveriesEmailResponse, type GrantPostingPermissionPayload, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveHbdStats, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, HiveSignerIntegration, type HiveTransaction, type HsTokenRenewResponse, INTERNAL_API_TIMEOUT_MS, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCancelPayload, type LimitOrderCreate, type LimitOrderCreatePayload, type LockLarynxPayload, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, type MedianHistoryPrice, type MutePostPayload, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, OPERATION_AUTHORITY_MAP, type OpenOrdersData, type OperationGroup, OrderIdPrefix, type OrdersData, type OrdersDataItem, type PageStatsResponse, type PaginationMeta, type ParsedChainError, type Payer, type PinPostPayload, type PlatformAdapter, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type PortfolioResponse, type PortfolioWalletItem, type PostTip, type PostTipsResponse, type PowerLarynxPayload, type ProducerReward, type Profile, type ProfileTokens, type PromotePayload, type PromotePrice, type Proposal, type ProposalCreatePayload, type ProposalPay, type ProposalVote, type ProposalVotePayload, type ProposalVoteRow, QueryKeys, type RCAccount, ROLES, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcStats, type Reblog, type ReblogPayload, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardFund, type RewardedCommunity, type SMTAsset, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetCommunityRolePayload, type SetLastReadPayload, type SetWithdrawRoute, type SetWithdrawVestingRoutePayload, SortOrder, type SpkApiWallet, type SpkMarkets, type StakeEngineTokenPayload, type StatsResponse, type SubscribeCommunityPayload, type Subscription, Symbol, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Token, type TokenMetadata, type Transaction, type TransactionConfirmation, type Transfer, type TransferEngineTokenPayload, type TransferFromSavingsPayload, type TransferLarynxPayload, type TransferPayload, type TransferPointPayload, type TransferSpkPayload, type TransferToSavings, type TransferToSavingsPayload, type TransferToVesting, type TransferToVestingPayload, type TransformedSpkMarkets, type TrendingTag, type UndelegateEngineTokenPayload, type UnfollowPayload, type UnstakeEngineTokenPayload, type UnsubscribeCommunityPayload, type UpdateCommunityPayload, type UpdateProposalVotes, type UpdateReplyPayload, type User, type UserImage, type ValidatePostCreatingOptions, type VestingDelegationExpiration, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VotePayload, type VoteProxy, type WalletMetadataCandidate, type WalletOperationPayload, type WaveEntry, type WaveTrendingAuthor, type WaveTrendingTag, type WithdrawRoute, type WithdrawVesting, type WithdrawVestingPayload, type Witness, type WitnessProxyPayload, type WitnessVotePayload, type WrappedResponse, type WsBookmarkNotification, type WsDelegationsNotification, type WsFavoriteNotification, type WsFollowNotification, type WsInactiveNotification, type WsMentionNotification, type WsNotification, type WsReblogNotification, type WsReferralNotification, type WsReplyNotification, type WsSpinNotification, type WsTransferNotification, type WsVoteNotification, addDraft, addImage, addOptimisticDiscussionEntry, addSchedule, bridgeApiCall, broadcastJson, broadcastOperations, buildAccountCreateOp, buildAccountUpdate2Op, buildAccountUpdateOp, buildActiveCustomJsonOp, buildBoostOp, buildBoostOpWithPoints, buildBoostPlusOp, buildCancelTransferFromSavingsOp, buildChangeRecoveryAccountOp, buildClaimAccountOp, buildClaimInterestOps, buildClaimRewardBalanceOp, buildCollateralizedConvertOp, buildCommentOp, buildCommentOptionsOp, buildCommunityRegistrationOp, buildConvertOp, buildCreateClaimedAccountOp, buildDelegateRcOp, buildDelegateVestingSharesOp, buildDeleteCommentOp, buildEngineClaimOp, buildEngineOp, buildFlagPostOp, buildFollowOp, buildGrantPostingPermissionOp, buildIgnoreOp, buildLimitOrderCancelOp, buildLimitOrderCreateOp, buildLimitOrderCreateOpWithType, buildMultiPointTransferOps, buildMultiTransferOps, buildMutePostOp, buildMuteUserOp, buildPinPostOp, buildPointTransferOp, buildPostingCustomJsonOp, buildProfileMetadata, buildPromoteOp, buildProposalCreateOp, buildProposalVoteOp, buildReblogOp, buildRecoverAccountOp, buildRecurrentTransferOp, buildRemoveProposalOp, buildRequestAccountRecoveryOp, buildRevokeKeysOp, buildRevokePostingPermissionOp, buildSetLastReadOps, buildSetRoleOp, buildSetWithdrawVestingRouteOp, buildSpkCustomJsonOp, buildSubscribeOp, buildTransferFromSavingsOp, buildTransferOp, buildTransferToSavingsOp, buildTransferToVestingOp, buildUnfollowOp, buildUnignoreOp, buildUnsubscribeOp, buildUpdateCommunityOp, buildUpdateProposalOp, buildVoteOp, buildWithdrawVestingOp, buildWitnessProxyOp, buildWitnessVoteOp, calculateRCMana, calculateVPMana, canRevokeFromAuthority, checkFavoriteQueryOptions, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, formatError, formattedNumber, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountWalletAssetInfoQueryOptions, getAccountsQueryOptions, getAiAssistPriceQueryOptions, getAiGeneratePriceQueryOptions, getAllHiveEngineTokensQueryOptions, getAnnouncementsQueryOptions, getBadActorsQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getCurrentMedianHistoryPriceQueryOptions, getCustomJsonAuthority, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavoritesInfiniteQueryOptions, getFavoritesQueryOptions, getFeedHistoryQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalances, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarket, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadata, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveEngineUnclaimedRewardsQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOperationAuthority, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalAuthority, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getRebloggedByQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRequiredAuthority, getRewardFundQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarkets, getSpkMarketsQueryOptions, getSpkWallet, getSpkWalletQueryOptions, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationExpirationsQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByAccountQueryOptions, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingAuthorsQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, initHiveTx, isCommunity, isEmptyDate, isInfoError, isNetworkError, isResourceCreditsError, isWif, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseChainError, parseProfileMetadata, powerRechargeTime, rcPower, removeOptimisticDiscussionEntry, resolveHiveOperationFilters, resolvePost, restoreDiscussionSnapshots, restoreEntryInCache, rewardSpk, roleMap, saveNotificationSetting, search, searchPath, searchQueryOptions, setHiveTxNodes, sha256, shouldTriggerAuthFallback, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, updateEntryInCache, uploadImage, uploadImageWithSignature, useAccountFavoriteAdd, useAccountFavoriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useAiAssist, useBookmarkAdd, useBookmarkDelete, useBoostPlus, useBroadcastMutation, useClaimAccount, useClaimEngineRewards, useClaimInterest, useClaimPoints, useClaimRewards, useComment, useConvert, useCreateAccount, useCrossPost, useDelegateEngineToken, useDelegateRc, useDelegateVestingShares, useDeleteComment, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useEngineMarketOrder, useFollow, useGameClaim, useGenerateImage, useGrantPostingPermission, useLimitOrderCancel, useLimitOrderCreate, useLockLarynx, useMarkNotificationsRead, useMoveSchedule, useMutePost, usePinPost, usePowerLarynx, usePromote, useProposalCreate, useProposalVote, useReblog, useRecordActivity, useRegisterCommunityRewards, useRemoveFragment, useSetCommunityRole, useSetLastRead, useSetWithdrawVestingRoute, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useStakeEngineToken, useSubscribeCommunity, useTransfer, useTransferEngineToken, useTransferFromSavings, useTransferLarynx, useTransferPoint, useTransferSpk, useTransferToSavings, useTransferToVesting, useUndelegateEngineToken, useUnfollow, useUnstakeEngineToken, useUnsubscribeCommunity, useUpdateCommunity, useUpdateDraft, useUpdateReply, useUploadImage, useVote, useWalletOperation, useWithdrawVesting, useWitnessProxy, useWitnessVote, usrActivity, validatePostCreating, verifyPostOnAlternateNode, vestsToHp, votingPower, votingValue, withTimeoutSignal };
9098
+ export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountCreateOperation, type AccountFavorite, type AccountFollowStats, type AccountKeys, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AiAssistParams, type AiAssistPrice, type AiAssistResponse, type AiGenerationPrice, type AiGenerationRequest, type AiGenerationResponse, type AiImagePowerTier, type AiImagePriceResponse, type Announcement, type ApiBookmarkNotification, type ApiDelegationsNotification, type ApiFavoriteNotification, type ApiFollowNotification, type ApiInactiveNotification, type ApiMentionNotification, type ApiNotification, type ApiNotificationSetting, type ApiReblogNotification, type ApiReferralNotification, type ApiReplyNotification, type ApiResponse, type ApiSpinNotification, type ApiTransferNotification, type ApiVoteNotification, type ApiWeeklyEarningsNotification, type Asset, AssetOperation, type AssetSymbol, type AuthContext, type AuthContextV2, type AuthMethod, type AuthorReward, type Authority, type AuthorityLevel, type AuthorityType, type Beneficiary, type BlogEntry, type BoostPlusAccountPrice, type BoostPlusPayload, type 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 CustomJsonOperation, 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, Transaction$1 as HiveTxTransaction, type HsTokenRenewResponse, INTERNAL_API_TIMEOUT_MS, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCancelPayload, type LimitOrderCreate, type LimitOrderCreatePayload, type LockLarynxPayload, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, type MedianHistoryPrice, Memo, type MutePostPayload, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, OPERATION_AUTHORITY_MAP, type OpenOrdersData, type Operation, type OperationBody, type OperationGroup, type OperationName, OrderIdPrefix, type OrdersData, type OrdersDataItem, type PageStatsResponse, type PaginationMeta, type ParsedChainError, type Payer, type PinPostPayload, type PlatformAdapter, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type PortfolioResponse, type PortfolioWalletItem, type PostTip, type PostTipsResponse, type PowerLarynxPayload, PrivateKey, type ProducerReward, type Profile, type ProfileTokens, type PromotePayload, type PromotePrice, type Proposal, type ProposalCreatePayload, type ProposalPay, type ProposalVote, type ProposalVotePayload, type ProposalVoteRow, PublicKey, QueryKeys, type RCAccount, ROLES, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcStats, type Reblog, type ReblogPayload, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardFund, type RewardedCommunity, type SMTAsset, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetCommunityRolePayload, type SetLastReadPayload, type SetWithdrawRoute, type SetWithdrawVestingRoutePayload, Signature, SortOrder, type SpkApiWallet, type SpkMarkets, type StakeEngineTokenPayload, type StatsResponse, type SubscribeCommunityPayload, type Subscription, Symbol, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Token, type TokenMetadata, type Transaction, type TransactionConfirmation, type Transfer, type TransferEngineTokenPayload, type TransferFromSavingsPayload, type TransferLarynxPayload, type TransferPayload, type TransferPointPayload, type TransferSpkPayload, type TransferToSavings, type TransferToSavingsPayload, type TransferToVesting, type TransferToVestingPayload, type TransformedSpkMarkets, type TrendingTag, type UndelegateEngineTokenPayload, type UnfollowPayload, type UnstakeEngineTokenPayload, type UnsubscribeCommunityPayload, type UpdateCommunityPayload, type UpdateProposalVotes, type UpdateReplyPayload, type User, type UserImage, type ValidatePostCreatingOptions, type VestingDelegationExpiration, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VotePayload, type VoteProxy, type WalletMetadataCandidate, type WalletOperationPayload, type WaveEntry, type WaveTrendingAuthor, type WaveTrendingTag, type WithdrawRoute, type WithdrawVesting, type WithdrawVestingPayload, type Witness, type WitnessProxyPayload, type WitnessVotePayload, type WrappedResponse, type WsBookmarkNotification, type WsDelegationsNotification, type WsFavoriteNotification, type WsFollowNotification, type WsInactiveNotification, type WsMentionNotification, type WsNotification, type WsReblogNotification, type WsReferralNotification, type WsReplyNotification, type WsSpinNotification, type WsTransferNotification, type WsVoteNotification, addDraft, addImage, addOptimisticDiscussionEntry, addSchedule, bridgeApiCall, broadcastJson, broadcastOperations, buildAccountCreateOp, buildAccountUpdate2Op, buildAccountUpdateOp, buildActiveCustomJsonOp, buildBoostOp, buildBoostOpWithPoints, buildBoostPlusOp, buildCancelTransferFromSavingsOp, buildChangeRecoveryAccountOp, buildClaimAccountOp, buildClaimInterestOps, buildClaimRewardBalanceOp, buildCollateralizedConvertOp, buildCommentOp, buildCommentOptionsOp, buildCommunityRegistrationOp, buildConvertOp, buildCreateClaimedAccountOp, buildDelegateRcOp, buildDelegateVestingSharesOp, buildDeleteCommentOp, buildEngineClaimOp, buildEngineOp, buildFlagPostOp, buildFollowOp, buildGrantPostingPermissionOp, buildIgnoreOp, buildLimitOrderCancelOp, buildLimitOrderCreateOp, buildLimitOrderCreateOpWithType, buildMultiPointTransferOps, buildMultiTransferOps, buildMutePostOp, buildMuteUserOp, buildPinPostOp, buildPointTransferOp, buildPostingCustomJsonOp, buildProfileMetadata, buildPromoteOp, buildProposalCreateOp, buildProposalVoteOp, buildReblogOp, buildRecoverAccountOp, buildRecurrentTransferOp, buildRemoveProposalOp, buildRequestAccountRecoveryOp, buildRevokeKeysOp, buildRevokePostingPermissionOp, buildSetLastReadOps, buildSetRoleOp, buildSetWithdrawVestingRouteOp, buildSpkCustomJsonOp, buildSubscribeOp, buildTransferFromSavingsOp, buildTransferOp, buildTransferToSavingsOp, buildTransferToVestingOp, buildUnfollowOp, buildUnignoreOp, buildUnsubscribeOp, buildUpdateCommunityOp, buildUpdateProposalOp, buildVoteOp, buildWithdrawVestingOp, buildWitnessProxyOp, buildWitnessVoteOp, calculateRCMana, calculateVPMana, callREST, callRPC, callRPCBroadcast, callWithQuorum, canRevokeFromAuthority, checkFavoriteQueryOptions, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, formatError, formattedNumber, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountWalletAssetInfoQueryOptions, getAccountsQueryOptions, getAiAssistPriceQueryOptions, getAiGeneratePriceQueryOptions, getAllHiveEngineTokensQueryOptions, getAnnouncementsQueryOptions, getBadActorsQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getCurrentMedianHistoryPriceQueryOptions, getCustomJsonAuthority, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavoritesInfiniteQueryOptions, getFavoritesQueryOptions, getFeedHistoryQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalances, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarket, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadata, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveEngineUnclaimedRewardsQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOperationAuthority, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalAuthority, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getRebloggedByQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRequiredAuthority, getRewardFundQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarkets, getSpkMarketsQueryOptions, getSpkWallet, getSpkWalletQueryOptions, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationExpirationsQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByAccountQueryOptions, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingAuthorsQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessesInfiniteQueryOptions, config as hiveTxConfig, utils as hiveTxUtils, hsTokenRenew, isCommunity, isEmptyDate, isInfoError, isNetworkError, isResourceCreditsError, isWif, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseChainError, parseProfileMetadata, powerRechargeTime, rcPower, removeOptimisticDiscussionEntry, resolveHiveOperationFilters, resolvePost, restoreDiscussionSnapshots, restoreEntryInCache, rewardSpk, roleMap, saveNotificationSetting, search, searchPath, searchQueryOptions, sha256, shouldTriggerAuthFallback, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, updateEntryInCache, uploadImage, uploadImageWithSignature, useAccountFavoriteAdd, useAccountFavoriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useAiAssist, useBookmarkAdd, useBookmarkDelete, useBoostPlus, useBroadcastMutation, useClaimAccount, useClaimEngineRewards, useClaimInterest, useClaimPoints, useClaimRewards, useComment, useConvert, useCreateAccount, useCrossPost, useDelegateEngineToken, useDelegateRc, useDelegateVestingShares, useDeleteComment, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useEngineMarketOrder, useFollow, useGameClaim, useGenerateImage, useGrantPostingPermission, useLimitOrderCancel, useLimitOrderCreate, useLockLarynx, useMarkNotificationsRead, useMoveSchedule, useMutePost, usePinPost, usePowerLarynx, usePromote, useProposalCreate, useProposalVote, useReblog, useRecordActivity, useRegisterCommunityRewards, useRemoveFragment, useSetCommunityRole, useSetLastRead, useSetWithdrawVestingRoute, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useStakeEngineToken, useSubscribeCommunity, useTransfer, useTransferEngineToken, useTransferFromSavings, useTransferLarynx, useTransferPoint, useTransferSpk, useTransferToSavings, useTransferToVesting, useUndelegateEngineToken, useUnfollow, useUnstakeEngineToken, useUnsubscribeCommunity, useUpdateCommunity, useUpdateDraft, useUpdateReply, useUploadImage, useVote, useWalletOperation, useWithdrawVesting, useWitnessProxy, useWitnessVote, usrActivity, validatePostCreating, verifyPostOnAlternateNode, vestsToHp, votingPower, votingValue, withTimeoutSignal };